├── fonts ├── tektite16x9.fon ├── tektite16x9oem.fon ├── tektite16x9.fd └── tektite16x9oem.fd ├── README.md └── python ├── dewinfont.py └── mkwinfont.py /fonts/tektite16x9.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/mkwinfont/HEAD/fonts/tektite16x9.fon -------------------------------------------------------------------------------- /fonts/tektite16x9oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/mkwinfont/HEAD/fonts/tektite16x9oem.fon -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mkwinfont/dewinfont 2 | 3 | This is an update to Simon Tatham's font utilities found here: 4 | * http://www.chiark.greenend.org.uk/~sgtatham/fonts/ 5 | 6 | Some additional information on his work can be found here: 7 | * http://michelbytes.blogspot.com/2012/08/how-to-make-fon-bitmap-font-files.html 8 | 9 | In brief, `mkwinfont` and `dewinfont` are Python scripts for working with Windows **bitmap** font file types: FNT and FON. These scripts read from and write to text files (*.fd) where the character bitmaps are defined with text characters such a `.` and `x`, or `0` and `1` (or any combination of those). 10 | 11 | For example, the letter "A": 12 | ``` 13 | char 65 14 | width 9 15 | ......... 16 | ......... 17 | ......... 18 | ...xx.... 19 | ...xx.... 20 | ..xxxx... 21 | ..x..x... 22 | .xx..xx.. 23 | .xx.xxx.. 24 | .xxxx.x.. 25 | xxx...xx. 26 | xx....xx. 27 | xx....xx. 28 | ......... 29 | ......... 30 | ......... 31 | ``` 32 | 33 | ### Syntax 34 | 35 | To make a FNT file from an FD source file: 36 | ``` 37 | python3 mkwinfont.py -fnt -o 38 | ``` 39 | 40 | To make a FON file from one or more FD source files: 41 | ``` 42 | python3 mkwinfont.py -fon -o [-facename ] [ ...] 43 | ``` 44 | * `-facename ` is required if the FD files have different facenames defined within them. Optional otherwise. 45 | 46 | To deconstruct either a FNT file or a single-font FON file to an FD source file: 47 | ``` 48 | python3 dewinfont.py -o 49 | ``` 50 | 51 | To deconstruct a multi-font FON file to multiple FD source files: 52 | ``` 53 | python3 dewinfont.py -p 54 | ``` 55 | * Files will be named like so: `00.fd` 56 | 57 | ## Other font tools 58 | 59 | ### Bitmap font tools 60 | 61 | [**FontForge**](https://fontforge.github.io/) - This is probably the most current editor. Weirdly, however, I haven't tested it much for FNT and FON work other than to open some multi-font FON files with it to see if it can handle them. It can. The interface, however, is so crazy complicated due to its vector features that it is hard to recommend it just for bitmap work. Use it if you already know it from vector work. Note that even though this is a vector-first editor, it only supports outline vectors and not single-line vectors (such as the "plotter" fonts found in some FON files). 62 | 63 | [**fony**](http://hukka.ncn.fi/?fony) - For most work, you'll probably want to use this editor. It is a fairly good editor with only a few UI annoyances. It has a few issues that forced me to revert to _mkwinfont_ here and there, but those are rare. I also had some trouble with saving multi-font FON files as FNT (the FNT file coming out identical to the FON file, which is wrong) and reducing multi-font FON files to a single-font FON file (the result not readable by Windows)... but I can't reliably reproduce those problems either so, go figure, maybe it was me. Considering that FNT files are resource files for programming and not installable in the OS, and that FNT files cannot contain more than one font like FON files can (which this editor favors features for), it would probably make more sense to handle FNT as another type of import/export instead of a load/save. The feature to export to grid images is broken (which is fairly disappointing to me)... or was never completed (the latest version I found being a "work in progress"). That's what [ImageMagick](https://imagemagick.org/)'s montage tool is for, I suppose. Hint: 64 | 65 | ```shell script 66 | montage \ 67 | t_?.png \ 68 | t_??.png \ 69 | t_???.png \ 70 | -tile 32x -geometry "9x16<+0+0" -background white \ 71 | - \ 72 | | magick - -bordercolor white -border 4x2 \ 73 | t_montage.png 74 | ``` 75 | 76 | [**VSoft's Fontedit**](http://www.vsoft.nl/software/utils/win/fontedit/) - This FNT-only editor still works on the latest Windows versions except for one very important feature: a bug prevents it from saving on the latest Windows. The source code is provided so it should be an easy fix. This is not as nice an editor as _fony_ but it has some features _fony_ should absorb, like: inserting and deleting of columns and rows, and selection editing. 77 | 78 | [**PSF Tools**](http://www.seasip.info/Unix/PSF/) - A collection of UNIX tools for converting many bitmap font types -- particularly, Linux's PSF console type (but not the PCF X11 type?). It installed fine in [Babun](http://babun.github.io/)/Cygwin for me. 79 | 80 | ### Single-line vector font tools 81 | 82 | It's been a long time since I've worked with these (some of which can also be contained in FON files), but here's a good reference: 83 | 84 | * http://imajeenyus.com/computer/20150110_single_line_fonts 85 | 86 | Also, this discussion about the unlikely possibility of supporting some of these formats in FontForge: 87 | 88 | * https://github.com/fontforge/fontforge/issues/3841 89 | 90 | ### Outline vector font tools 91 | 92 | See [my guide](https://namethattech.wordpress.com/2017/03/22/how-to-make-a-snap-to-grid-in-fontforge/) for creating pixelated TrueType fonts in [FontForge](https://fontforge.github.io/). 93 | 94 | ## See also 95 | 96 | This project was spawned by needs of this other one for creating fonts compatible with [PICO-8](http://www.lexaloffle.com/pico-8.php) programming: 97 | 98 | * https://github.com/juanitogan/p8-programming-fonts 99 | -------------------------------------------------------------------------------- /python/dewinfont.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | # dewinfont is copyright 2001 Simon Tatham. All rights reserved. 4 | # 5 | # Permission is hereby granted, free of charge, to any person 6 | # obtaining a copy of this software and associated documentation files 7 | # (the "Software"), to deal in the Software without restriction, 8 | # including without limitation the rights to use, copy, modify, merge, 9 | # publish, distribute, sublicense, and/or sell copies of the Software, 10 | # and to permit persons to whom the Software is furnished to do so, 11 | # subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be 14 | # included in all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 20 | # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 21 | # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 22 | # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | # SOFTWARE. 24 | ######################################################################## 25 | # 26 | # Feb 2017 - Updated to Python3. Added in/ex-leading. 27 | # ".x" instead of "01". Other minor changes. [mj.Jernigan] 28 | # Could rewrite all the byte handling in a Py3 way, 29 | # but why bother? 30 | # 31 | ######################################################################## 32 | 33 | import sys 34 | #import string 35 | 36 | # Extract bitmap font data from a Windows .FON or .FNT file. 37 | 38 | def frombyte(s): 39 | #return ord(s[0]) 40 | return s[0] 41 | def fromword(s): 42 | return frombyte(s[0:1]) + 256 * frombyte(s[1:2]) 43 | def fromdword(s): 44 | return fromword(s[0:2]) | (fromword(s[2:4]) << 16) 45 | 46 | def asciz(s): 47 | #i = string.find(s, "\0") 48 | i = s.find(b"\0") 49 | if i != -1: 50 | s = s[:i] 51 | return s 52 | 53 | def bool(n): 54 | if n: 55 | return "yes" 56 | else: 57 | return "no" 58 | 59 | class font: 60 | pass 61 | 62 | class char: 63 | pass 64 | 65 | def savefont(f, file): 66 | "Write out a .fd form of an internal font description." 67 | file.write("# .fd font description generated by dewinfont.\n\n") 68 | file.write("facename " + f.facename + "\n") 69 | file.write("copyright " + f.copyright + "\n\n") 70 | #if f.height == f.pointsize: file.write("# ") 71 | file.write("pointsize " + "%d"%f.pointsize + "\n\n") 72 | file.write("height " + "%d"%f.height + "\n") 73 | file.write("ascent " + "%d"%f.ascent + "\n") 74 | file.write("inleading " + "%d"%f.inleading + "\n") 75 | file.write("exleading " + "%d"%f.exleading + "\n\n") 76 | if not f.italic: file.write("# ") 77 | file.write("italic " + bool(f.italic) + "\n") 78 | if not f.underline: file.write("# ") 79 | file.write("underline " + bool(f.underline) + "\n") 80 | if not f.strikeout: file.write("# ") 81 | file.write("strikeout " + bool(f.strikeout) + "\n") 82 | if f.weight == 400: file.write("# ") 83 | file.write("weight " + "%d"%f.weight + "\n\n") 84 | if f.charset == 0: file.write("# ") 85 | file.write("charset " + "%d"%f.charset + "\n\n") 86 | for i in range(256): 87 | file.write("char " + "%d"%i + "\nwidth " + "%d"%f.chars[i].width+"\n") 88 | if f.chars[i].width != 0: 89 | for j in range(f.height): 90 | v = f.chars[i].data[j] 91 | m = 1 << (f.chars[i].width-1) 92 | for k in range(f.chars[i].width): 93 | if v & m: 94 | file.write("x") #"1") 95 | else: 96 | file.write(".") #"0") 97 | v = v << 1 98 | file.write("\n") 99 | file.write("\n") 100 | 101 | def dofnt(fnt): 102 | "Create an internal font description from a .FNT-shaped string." 103 | f = font() 104 | f.chars = [None] * 256 105 | version = fromword(fnt[0:]) 106 | ftype = fromword(fnt[0x42:]) 107 | if ftype & 1: 108 | sys.stderr.write("This font is a vector font\n") 109 | return None 110 | off_facename = fromdword(fnt[0x69:]) 111 | if off_facename < 0 or off_facename > len(fnt): 112 | sys.stderr.write("Face name not contained within font data") 113 | return None 114 | f.facename = str(asciz(fnt[off_facename:]), encoding="windows-1252") 115 | #print "Face name", f.facename 116 | f.copyright = str(asciz(fnt[6:66] + b"\0"), encoding="windows-1252") 117 | #print "Copyright", f.copyright 118 | f.pointsize = fromword(fnt[0x44:]) 119 | #print "Point size", f.pointsize 120 | f.ascent = fromword(fnt[0x4A:]) 121 | #print "Ascent", f.ascent 122 | f.inleading = fromword(fnt[0x4C:]) 123 | f.exleading = fromword(fnt[0x4E:]) 124 | f.height = fromword(fnt[0x58:]) 125 | #print "Height", f.height 126 | f.italic = frombyte(fnt[0x50:]) != 0 127 | f.underline = frombyte(fnt[0x51:]) != 0 128 | f.strikeout = frombyte(fnt[0x52:]) != 0 129 | f.weight = fromword(fnt[0x53:]) 130 | f.charset = frombyte(fnt[0x55:]) 131 | #print "Attrs", f.italic, f.underline, f.strikeout, f.weight 132 | #print "Charset", f.charset 133 | # Read the char table. 134 | if version == 0x200: 135 | ctstart = 0x76 136 | ctsize = 4 137 | else: 138 | ctstart = 0x94 139 | ctsize = 6 140 | maxwidth = 0 141 | for i in range(256): 142 | f.chars[i] = char() 143 | f.chars[i].width = 0 144 | f.chars[i].data = [0] * f.height 145 | firstchar = frombyte(fnt[0x5F:]) 146 | lastchar = frombyte(fnt[0x60:]) 147 | for i in range(firstchar,lastchar+1): 148 | entry = ctstart + ctsize * (i-firstchar) 149 | w = fromword(fnt[entry:]) 150 | f.chars[i].width = w 151 | if ctsize == 4: 152 | off = fromword(fnt[entry+2:]) 153 | else: 154 | off = fromdword(fnt[entry+2:]) 155 | #print "Char", i, "width", w, "offset", off, "filelen", len(fnt) 156 | #widthbytes = (w + 7) / 8 157 | widthbytes = (w + 7) // 8 158 | for j in range(f.height): 159 | for k in range(widthbytes): 160 | bytepos = off + k * f.height + j 161 | #print bytepos, "->", hex(frombyte(fnt[bytepos:])) 162 | f.chars[i].data[j] = f.chars[i].data[j] << 8 163 | f.chars[i].data[j] = f.chars[i].data[j] | frombyte(fnt[bytepos:]) 164 | f.chars[i].data[j] = f.chars[i].data[j] >> (8*widthbytes - w) 165 | return f 166 | 167 | def nefon(fon, neoff): 168 | "Finish splitting up a NE-format FON file." 169 | ret = [] 170 | # Find the resource table. 171 | rtable = fromword(fon[neoff + 0x24:]) 172 | rtable = rtable + neoff 173 | # Read the shift count out of the resource table. 174 | shift = fromword(fon[rtable:]) 175 | # Now loop over the rest of the resource table. 176 | p = rtable+2 177 | while 1: 178 | rtype = fromword(fon[p:]) 179 | if rtype == 0: 180 | break # end of resource table 181 | count = fromword(fon[p+2:]) 182 | p = p + 8 # type, count, 4 bytes reserved 183 | for i in range(count): 184 | start = fromword(fon[p:]) << shift 185 | size = fromword(fon[p+2:]) << shift 186 | if start < 0 or size < 0 or start+size > len(fon): 187 | sys.stderr.write("Resource overruns file boundaries\n") 188 | return None 189 | if rtype == 0x8008: # this is an actual font 190 | #print "Font at", start, "size", size 191 | font = dofnt(fon[start:start+size]) 192 | if font == None: 193 | sys.stderr.write("Failed to read font resource at %x" \ 194 | % start) 195 | return None 196 | ret = ret + [font] 197 | p = p + 12 # start, size, flags, name/id, 4 bytes reserved 198 | return ret 199 | 200 | def pefon(fon, peoff): 201 | "Finish splitting up a PE-format FON file." 202 | dirtables=[] 203 | dataentries=[] 204 | def gotoffset(off,dirtables=dirtables,dataentries=dataentries): 205 | if off & 0x80000000: 206 | off = off &~ 0x80000000 207 | dirtables.append(off) 208 | else: 209 | dataentries.append(off) 210 | def dodirtable(rsrc, off, rtype, gotoffset=gotoffset): 211 | number = fromword(rsrc[off+12:]) + fromword(rsrc[off+14:]) 212 | for i in range(number): 213 | entry = off + 16 + 8*i 214 | thetype = fromdword(rsrc[entry:]) 215 | theoff = fromdword(rsrc[entry+4:]) 216 | if rtype == -1 or rtype == thetype: 217 | gotoffset(theoff) 218 | 219 | # We could try finding the Resource Table entry in the Optional 220 | # Header, but it talks about RVAs instead of file offsets, so 221 | # it's probably easiest just to go straight to the section table. 222 | # So let's find the size of the Optional Header, which we can 223 | # then skip over to find the section table. 224 | secentries = fromword(fon[peoff+0x06:]) 225 | sectable = peoff + 0x18 + fromword(fon[peoff+0x14:]) 226 | for i in range(secentries): 227 | secentry = sectable + i * 0x28 228 | secname = asciz(fon[secentry:secentry+8]) 229 | secrva = fromdword(fon[secentry+0x0C:]) 230 | secsize = fromdword(fon[secentry+0x10:]) 231 | secptr = fromdword(fon[secentry+0x14:]) 232 | if secname == b".rsrc": 233 | break 234 | if secname != b".rsrc": 235 | sys.stderr.write("Unable to locate resource section\n") 236 | return None 237 | # Now we've found the resource section, let's throw away the rest. 238 | rsrc = fon[secptr:secptr+secsize] 239 | 240 | # Now the fun begins. To start with, we must find the initial 241 | # Resource Directory Table and look up type 0x08 (font) in it. 242 | # If it yields another Resource Directory Table, we stick the 243 | # address of that on a list. If it gives a Data Entry, we put 244 | # that in another list. 245 | dodirtable(rsrc, 0, 0x08) 246 | # Now process Resource Directory Tables until no more remain 247 | # in the list. For each of these tables, we accept _all_ entries 248 | # in it, and if they point to subtables we stick the subtables in 249 | # the list, and if they point to Data Entries we put those in 250 | # the other list. 251 | while len(dirtables) > 0: 252 | table = dirtables[0] 253 | del dirtables[0] 254 | dodirtable(rsrc, table, -1) # accept all entries 255 | # Now we should be left with Resource Data Entries. Each of these 256 | # describes a font. 257 | ret = [] 258 | for off in dataentries: 259 | rva = fromdword(rsrc[off:]) 260 | start = rva - secrva 261 | size = fromdword(rsrc[off+4:]) 262 | font = dofnt(rsrc[start:start+size]) 263 | if font == None: 264 | sys.stderr.write("Failed to read font resource at %x" % start) 265 | return None 266 | ret = ret + [font] 267 | return ret 268 | 269 | def dofon(fon): 270 | "Split a .FON up into .FNTs and pass each to dofnt." 271 | # Check the MZ header. 272 | if fon[0:2] != b"MZ": 273 | sys.stderr.write("MZ signature not found\n") 274 | return None 275 | # Find the NE header. 276 | neoff = fromdword(fon[0x3C:]) 277 | if fon[neoff:neoff+2] == b"NE": 278 | return nefon(fon, neoff) 279 | elif fon[neoff:neoff+4] == b"PE\0\0": 280 | return pefon(fon, neoff) 281 | else: 282 | sys.stderr.write("NE or PE signature not found\n") 283 | return None 284 | 285 | def isfon(data): 286 | "Determine if a file is a .FON or a .FNT format font." 287 | if data[0:2] == b"MZ": 288 | return 1 # FON 289 | else: 290 | return 0 # FNT 291 | 292 | if __name__ == "__main__": 293 | a = sys.argv[1:] 294 | options = 1 295 | outfile = None 296 | prefix = None 297 | infile = None 298 | if len(a) == 0: 299 | print("usage: dewinfont [-o outfile | -p prefix] file") 300 | sys.exit(0) 301 | while len(a) > 0: 302 | if a[0] == "--": 303 | options = 0 304 | a = a[1:] 305 | elif options and a[0][0:1] == "-": 306 | if a[0] == "-o": 307 | try: 308 | outfile = a[1] 309 | a = a[2:] 310 | except IndexError: 311 | sys.stderr.write("option -o requires an argument\n") 312 | sys.exit(1) 313 | elif a[0] == "-p": 314 | try: 315 | prefix = a[1] 316 | a = a[2:] 317 | except IndexError: 318 | sys.stderr.write("option -p requires an argument\n") 319 | sys.exit(1) 320 | else: 321 | sys.stderr.write("ignoring unrecognised option "+a[0]+"\n") 322 | a = a[1:] 323 | else: 324 | if infile != None: 325 | sys.stderr.write("one input file at once, please\n") 326 | sys.exit(1) 327 | infile = a[0] 328 | a = a[1:] 329 | 330 | fp = open(infile, "rb") 331 | data = fp.read() 332 | fp.close() 333 | 334 | if isfon(data): 335 | fonts = dofon(data) 336 | else: 337 | fonts = [dofnt(data)] 338 | 339 | if len(fonts) > 1 and prefix == None: 340 | sys.stderr.write("more than one font in file; use -p prefix\n") 341 | sys.exit(1) 342 | if outfile == None and prefix == None: 343 | sys.stderr.write("please specify -o outfile or -p prefix\n") 344 | sys.exit(1) 345 | 346 | for i in range(len(fonts)): 347 | if len(fonts) == 1 and outfile != None: 348 | fname = outfile 349 | else: 350 | fname = prefix + "%02d"%i + ".fd" 351 | fp = open(fname, "w") 352 | savefont(fonts[i], fp) 353 | fp.close() 354 | -------------------------------------------------------------------------------- /python/mkwinfont.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | # mkwinfont is copyright 2001 Simon Tatham. All rights reserved. 4 | # 5 | # Permission is hereby granted, free of charge, to any person 6 | # obtaining a copy of this software and associated documentation files 7 | # (the "Software"), to deal in the Software without restriction, 8 | # including without limitation the rights to use, copy, modify, merge, 9 | # publish, distribute, sublicense, and/or sell copies of the Software, 10 | # and to permit persons to whom the Software is furnished to do so, 11 | # subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be 14 | # included in all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 20 | # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 21 | # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 22 | # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | # SOFTWARE. 24 | ######################################################################## 25 | # 26 | # Feb 2017 - Updated to Python3. Added in/ex-leading. 27 | # ".x" as well as "01". Other minor changes. [mj.Jernigan] 28 | # Could rewrite all the byte handling in a Py3 way, 29 | # but why bother? 30 | # 31 | ######################################################################## 32 | 33 | import sys 34 | #import string 35 | 36 | # Generate Windows bitmap font files from a text description. 37 | 38 | def byte(i): 39 | #return chr(i & 0xFF) 40 | return bytes([i & 0xFF]) 41 | def word(i): 42 | return byte(i) + byte(i >> 8) 43 | def dword(i): 44 | return word(i) + word(i >> 16) 45 | 46 | def frombyte(s): 47 | return ord(s) 48 | def fromword(s): 49 | return frombyte(s[0:1]) + 256 * frombyte(s[1:2]) 50 | def fromdword(s): 51 | return fromword(s[0:2]) | (fromword(s[2:4]) << 16) 52 | 53 | def asciz(s): 54 | #i = string.find(s, "\0") 55 | i = s.find(b"\0") 56 | if i != -1: 57 | s = s[:i] 58 | return s 59 | 60 | class font: 61 | pass 62 | 63 | class char: 64 | pass 65 | 66 | def loadfont(file): 67 | "Load a font description from a text file." 68 | f = font() 69 | f.copyright = f.facename = f.height = f.ascent = None 70 | f.italic = f.underline = f.strikeout = 0 71 | f.weight = 400 72 | f.charset = 0 73 | f.inleading = f.exleading = 0 74 | f.pointsize = None 75 | f.chars = [None] * 256 76 | 77 | fp = open(file, "r") 78 | lineno = 0 79 | while 1: 80 | s = fp.readline() 81 | if s == "": 82 | break 83 | lineno = lineno + 1 84 | while s[-1:] == "\n" or s[-1:] == "\r": 85 | s = s[:-1] 86 | while s[0:1] == " ": 87 | s = s[1:] 88 | if s == "" or s[0:1] == "#": 89 | continue 90 | #space = string.find(s, " ") 91 | space = s.find(" ") 92 | if space == -1: 93 | space = len(s) 94 | w = s[:space] 95 | a = s[space+1:] 96 | if w == "copyright": 97 | if len(a) > 59: 98 | sys.stderr.write("Copyright too long\n") 99 | return None 100 | f.copyright = a 101 | continue 102 | if w == "height": 103 | #f.height = string.atoi(a) 104 | f.height = int(a) 105 | continue 106 | if w == "facename": 107 | f.facename = a 108 | continue 109 | if w == "ascent": 110 | #f.ascent = string.atoi(a) 111 | f.ascent = int(a) 112 | continue 113 | if w == "inleading": 114 | f.inleading = int(a) 115 | continue 116 | if w == "exleading": 117 | f.exleading = int(a) 118 | continue 119 | if w == "pointsize": 120 | #f.pointsize = string.atoi(a) 121 | f.pointsize = int(a) 122 | continue 123 | if w == "weight": 124 | #f.weight = string.atoi(a) 125 | f.weight = int(a) 126 | continue 127 | if w == "charset": 128 | #f.charset = string.atoi(a) 129 | f.charset = int(a) 130 | continue 131 | if w == "italic": 132 | f.italic = a == "yes" 133 | continue 134 | if w == "underline": 135 | f.underline = a == "yes" 136 | continue 137 | if w == "strikeout": 138 | f.strikeout = a == "yes" 139 | continue 140 | if w == "char": 141 | #c = string.atoi(a) 142 | c = int(a) 143 | y = 0 144 | f.chars[c] = char() 145 | f.chars[c].width = 0 146 | f.chars[c].data = [0] * f.height 147 | continue 148 | if w == "width": 149 | #f.chars[c].width = string.atoi(a) 150 | f.chars[c].width = int(a) 151 | continue 152 | try: 153 | #w = w.replace(".", "0").replace("x", "1") #mj.J 154 | w = w.translate({ord("."):"0", ord("-"):"0", ord("x"):"1", ord("#"):"1"}) 155 | #value = string.atol(w, 2) 156 | value = int(w, 2) 157 | bits = len(w) 158 | if bits < f.chars[c].width: 159 | value = value << (f.chars[c].width - bits) 160 | elif bits > f.chars[c].width: 161 | value = value >> (bits - f.chars[c].width) 162 | f.chars[c].data[y] = value 163 | y = y + 1 164 | except ValueError: 165 | sys.stderr.write("Unknown keyword "+w+" at line "+"%d"%lineno+"\n") 166 | return None 167 | 168 | if f.copyright == None: 169 | sys.stderr.write("No font copyright specified\n") 170 | return None 171 | if f.height == None: 172 | sys.stderr.write("No font height specified\n") 173 | return None 174 | if f.ascent == None: 175 | sys.stderr.write("No font ascent specified\n") 176 | return None 177 | if f.facename == None: 178 | sys.stderr.write("No font face name specified\n") 179 | return None 180 | for i in range(256): 181 | if f.chars[i] == None: 182 | sys.stderr.write("No character at position " + "%d"%i + "\n") 183 | return None 184 | if f.pointsize == None: 185 | #f.pointsize = f.height 186 | # hightish * 72 ppi / nominal vertical resolution dpi 187 | f.pointsize = round((f.height - f.inleading) * 72 / 96) 188 | return f 189 | 190 | def fnt(font): 191 | "Generate the contents of a .FNT file, given a font description." 192 | 193 | # Average width is defined by Windows to be the width of 'X'. 194 | avgwidth = font.chars[ord('X')].width 195 | # Max width we calculate from the font. During this loop we also 196 | # check if the font is fixed-pitch. 197 | maxwidth = 0 198 | fixed = 1 199 | for i in range(0,256): 200 | if avgwidth != font.chars[i].width: 201 | fixed = 0 202 | if maxwidth < font.chars[i].width: 203 | maxwidth = font.chars[i].width 204 | # Work out how many 8-pixel wide columns we need to represent a char. 205 | # widthbytes = 3 # FIXME! 206 | #widthbytes = (maxwidth+7)/8 207 | #widthbytes = (widthbytes+1) &~ 1 # round up to multiple of 2 208 | widthbytes = ((maxwidth - 1) // 16 + 1) * 2 209 | 210 | file = b"" 211 | file = file + word(0x0300) # file version 212 | file = file + dword(0) # file size (come back and fix later) 213 | copyright = font.copyright + ("\0" * 60) 214 | copyright = copyright[0:60] 215 | file = file + bytes(copyright, encoding="windows-1252") 216 | file = file + word(0) # font type (raster, bits in file) 217 | file = file + word(font.pointsize) # nominal point size 218 | file = file + word(96) # nominal vertical resolution (dpi) 219 | file = file + word(96) # nominal horizontal resolution (dpi) 220 | file = file + word(font.ascent) # top of font <--> baseline 221 | file = file + word(f.inleading) # internal leading 222 | file = file + word(f.exleading) # external leading 223 | file = file + byte(font.italic) 224 | file = file + byte(font.underline) 225 | file = file + byte(font.strikeout) 226 | file = file + word(font.weight) # 1 to 1000 (100-900); 400 is normal. 227 | file = file + byte(font.charset) 228 | if fixed: 229 | pixwidth = avgwidth 230 | else: 231 | pixwidth = 0 232 | file = file + word(pixwidth) # width, or 0 if var-width 233 | file = file + word(font.height) # height 234 | if fixed: 235 | pitchfamily = 0 236 | else: 237 | pitchfamily = 1 238 | file = file + byte(pitchfamily) # pitch and family 239 | file = file + word(avgwidth) 240 | file = file + word(maxwidth) 241 | file = file + byte(0) # first char 242 | file = file + byte(255) # last char 243 | file = file + byte(63) # default char "?" (relative to first char) 244 | file = file + byte(32) # break char (relative to first char) 245 | file = file + word(widthbytes) # dfWidthBytes 246 | file = file + dword(0) # device 247 | file = file + dword(0) # face name 248 | file = file + dword(0) # BitsPointer (used at load time) 249 | file = file + dword(0) # pointer to bitmap data 250 | file = file + byte(0) # reserved 251 | if fixed: 252 | dfFlags = 1 253 | else: 254 | dfFlags = 2 255 | file = file + dword(dfFlags) # dfFlags 256 | file = file + word(0) + word(0) + word(0) # Aspace, Bspace, Cspace 257 | file = file + dword(0) # colour pointer 258 | file = file + (b"\0" * 16) # dfReserved1 259 | 260 | # Now the char table. 261 | offset_chartbl = len(file) 262 | offset_bitmaps = offset_chartbl + 257 * 6 263 | # Fix up the offset-to-bitmaps at 0x71. 264 | file = file[:0x71] + dword(offset_bitmaps) + file[0x71+4:] 265 | bitmaps = b"" 266 | for i in range(0,257): 267 | if i < 256: 268 | width = font.chars[i].width 269 | else: 270 | width = avgwidth 271 | file = file + word(width) 272 | file = file + dword(offset_bitmaps + len(bitmaps)) 273 | for j in range(widthbytes): 274 | for k in range(font.height): 275 | if i < 256: 276 | chardata = font.chars[i].data[k] 277 | else: 278 | chardata = 0 279 | chardata = chardata << (8*widthbytes - width) 280 | bitmaps = bitmaps + byte(chardata >> (8*(widthbytes-j-1))) 281 | 282 | file = file + bitmaps 283 | # Now the face name. Fix up the face name offset at 0x69. 284 | file = file[:0x69] + dword(len(file)) + file[0x69+4:] 285 | file = file + bytes(font.facename, encoding="windows-1252") + b"\0" 286 | # And finally fix up the file size at 0x2. 287 | file = file[:0x2] + dword(len(file)) + file[0x2+4:] 288 | 289 | # Done. 290 | return file 291 | 292 | def direntry(f): 293 | "Return the FONTDIRENTRY, given the data in a .FNT file." 294 | device = fromdword(f[0x65:]) 295 | face = fromdword(f[0x69:]) 296 | if device == 0: 297 | devname = b"" 298 | else: 299 | devname = asciz(f[device:]) 300 | facename = asciz(f[face:]) 301 | return f[0:0x71] + devname + b"\0" + facename + b"\0" 302 | 303 | stubcode = [ 304 | 0xBA, 0x0E, 0x00, # mov dx,0xe 305 | 0x0E, # push cs 306 | 0x1F, # pop ds 307 | 0xB4, 0x09, # mov ah,0x9 308 | 0xCD, 0x21, # int 0x21 309 | 0xB8, 0x01, 0x4C, # mov ax,0x4c01 310 | 0xCD, 0x21 # int 0x21 311 | ] 312 | stubmsg = b"This is not a program!\r\nFont library created by mkwinfont.\r\n" 313 | 314 | def stub(): 315 | "Create a small MZ executable." 316 | file = b"" 317 | file = file + b"MZ" + word(0) + word(0) 318 | file = file + word(0) # no relocations 319 | file = file + word(4) # 4-para header 320 | file = file + word(0x10) # 16 extra para for stack 321 | file = file + word(0xFFFF) # maximum extra paras: LOTS 322 | file = file + word(0) + word(0x100) # SS:SP = 0000:0100 323 | file = file + word(0) # no checksum 324 | file = file + word(0) + word(0) # CS:IP = 0:0, start at beginning 325 | file = file + word(0x40) # reloc table beyond hdr 326 | file = file + word(0) # overlay number 327 | file = file + 4 * word(0) # reserved 328 | file = file + word(0) + word(0) # OEM id and OEM info 329 | file = file + 10 * word(0) # reserved 330 | file = file + dword(0) # offset to NE header 331 | assert len(file) == 0x40 332 | for i in stubcode: file = file + byte(i) 333 | file = file + stubmsg + b"$" 334 | n = len(file) 335 | #pages = (n+511) / 512 336 | pages = (n+511) // 512 337 | lastpage = n - (pages-1) * 512 338 | file = file[:2] + word(lastpage) + word(pages) + file[6:] 339 | # Now assume there will be a NE header. Create it and fix up the 340 | # offset to it. 341 | while len(file) % 16: file = file + b"\0" 342 | file = file[:0x3C] + dword(len(file)) + file[0x40:] 343 | return file 344 | 345 | def fon(name, fonts): 346 | "Create a .FON font library, given a bunch of .FNT file contents." 347 | 348 | name = bytes(name, encoding="windows-1252") 349 | 350 | # Construct the FONTDIR. 351 | fontdir = word(len(fonts)) 352 | for i in range(len(fonts)): 353 | fontdir = fontdir + word(i+1) 354 | fontdir = fontdir + direntry(fonts[i]) 355 | 356 | # The MZ stub. 357 | stubdata = stub() 358 | # Non-resident name table should contain a FONTRES line. 359 | nonres = b"FONTRES 100,96,96 : " + name 360 | nonres = byte(len(nonres)) + nonres + b"\0\0\0" 361 | # Resident name table should just contain a module name. 362 | mname = b"" 363 | for c in name: 364 | if c in b"0123546789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz": 365 | mname = mname + bytes([c]) 366 | res = byte(len(mname)) + mname + b"\0\0\0" 367 | # Entry table / imported names table should contain a zero word. 368 | entry = word(0) 369 | 370 | # Compute length of resource table. 371 | # 12 (2 for the shift count, plus 2 for end-of-table, plus 8 for the 372 | # "FONTDIR" resource name), plus 373 | # 20 for FONTDIR (TYPEINFO and NAMEINFO), plus 374 | # 8 for font entry TYPEINFO, plus 375 | # 12 for each font's NAMEINFO 376 | 377 | # Resources are currently one FONTDIR plus n fonts. 378 | # TODO: a VERSIONINFO resource would be nice too. 379 | resrcsize = 12 + 20 + 8 + 12 * len(fonts) 380 | resrcpad = ((resrcsize + 15) &~ 15) - resrcsize 381 | 382 | # Now position all of this after the NE header. 383 | p = 0x40 # NE header size 384 | off_segtable = off_restable = p 385 | p = p + resrcsize + resrcpad 386 | off_res = p 387 | p = p + len(res) 388 | off_modref = off_import = off_entry = p 389 | p = p + len(entry) 390 | off_nonres = p 391 | p = p + len(nonres) 392 | 393 | pad = ((p+15) &~ 15) - p 394 | p = p + pad 395 | q = p + len(stubdata) 396 | 397 | # Now q is file offset where the real resources begin. So we can 398 | # construct the actual resource table, and the resource data too. 399 | restable = word(4) # shift count 400 | resdata = b"" 401 | # The FONTDIR resource. 402 | restable = restable + word(0x8007) + word(1) + dword(0) 403 | restable = restable + word((q+len(resdata)) >> 4) 404 | start = len(resdata) 405 | resdata = resdata + fontdir 406 | while len(resdata) % 16: resdata = resdata + b"\0" 407 | restable = restable + word((len(resdata)-start) >> 4) 408 | restable = restable + word(0x0C50) + word(resrcsize-8) + dword(0) 409 | # The font resources. 410 | restable = restable + word(0x8008) + word(len(fonts)) + dword(0) 411 | for i in range(len(fonts)): 412 | restable = restable + word((q+len(resdata)) >> 4) 413 | start = len(resdata) 414 | resdata = resdata + fonts[i] 415 | while len(resdata) % 16: resdata = resdata + b"\0" 416 | restable = restable + word((len(resdata)-start) >> 4) 417 | restable = restable + word(0x1C30) + word(0x8001 + i) + dword(0) 418 | # The zero word. 419 | restable = restable + word(0) 420 | assert len(restable) == resrcsize - 8 421 | restable = restable + b"\007FONTDIR" 422 | restable = restable + b"\0" * resrcpad 423 | 424 | file = stubdata + b"NE" + byte(5) + byte(10) 425 | file = file + word(off_entry) + word(len(entry)) 426 | file = file + dword(0) # no CRC 427 | file = file + word(0x8308) # the Mysterious Flags 428 | file = file + word(0) + word(0) + word(0) # no autodata, no heap, no stk 429 | file = file + dword(0) + dword(0) # CS:IP == SS:SP == 0 430 | file = file + word(0) + word(0) # segment table len, modreftable len 431 | file = file + word(len(nonres)) 432 | file = file + word(off_segtable) + word(off_restable) 433 | file = file + word(off_res) + word(off_modref) + word(off_import) 434 | file = file + dword(len(stubdata) + off_nonres) 435 | file = file + word(0) # no movable entries 436 | file = file + word(4) # seg align shift count 437 | file = file + word(0) # no resource segments 438 | file = file + byte(2) + byte(8) # target OS and more Mysterious Flags 439 | file = file + word(0) + word(0) + word(0) + word(0x300) 440 | 441 | # Now add in all the other stuff. 442 | file = file + restable + res + entry + nonres + b"\0" * pad + resdata 443 | 444 | return file 445 | 446 | if __name__ == "__main__": 447 | outfile = None 448 | facename = None 449 | fonmode = 1 450 | infiles = [] 451 | a = sys.argv[1:] 452 | options = 1 453 | if len(a) == 0: 454 | print("usage: mkwinfont [-fnt | -fon] [-o outfile] [-facename name] files") 455 | sys.exit(0) 456 | while len(a) > 0: 457 | if a[0] == "--": 458 | options = 0 459 | a = a[1:] 460 | elif options and a[0][0:1] == "-": 461 | if a[0] == "-o": 462 | try: 463 | outfile = a[1] 464 | a = a[2:] 465 | except IndexError: 466 | sys.stderr.write("option -o requires an argument\n") 467 | sys.exit(1) 468 | elif a[0] == "-facename": 469 | try: 470 | facename = a[1] 471 | a = a[2:] 472 | except IndexError: 473 | sys.stderr.write("option -facename requires an argument\n") 474 | sys.exit(1) 475 | elif a[0] == "-fnt": 476 | fonmode = 0 477 | a = a[1:] 478 | elif a[0] == "-fon": 479 | fonmode = 1 480 | a = a[1:] 481 | else: 482 | sys.stderr.write("ignoring unrecognised option "+a[0]+"\n") 483 | a = a[1:] 484 | else: 485 | infiles = infiles + [a[0]] 486 | a = a[1:] 487 | 488 | if len(infiles) < 0: 489 | sys.stderr.write("no input files specified\n") 490 | sys.exit(1) 491 | 492 | if outfile == None: 493 | sys.stderr.write("no output file specified\n") 494 | sys.exit(1) 495 | 496 | if fonmode == 0 and len(infiles) > 1: 497 | sys.stderr.write("FNT mode can only process one font\n") 498 | sys.exit(1) 499 | 500 | fnts = [] 501 | fds = [] 502 | for fname in infiles: 503 | f = loadfont(fname) 504 | if f == None: 505 | sys.stderr.write("unable to load font description "+fname+"\n") 506 | sys.exit(1) 507 | if facename != None: 508 | f.facename = facename 509 | fds = fds + [f] 510 | fnts = fnts + [fnt(f)] 511 | 512 | if fonmode == 0: 513 | outfp = open(outfile, "wb") 514 | outfp.write(fnts[0]) 515 | outfp.close() 516 | else: 517 | # If all supplied fonts have the same face name, use that. 518 | # Otherwise, require that one be input. 519 | autoname = fds[0].facename 520 | for f in fds[1:]: 521 | if autoname != f.facename: 522 | autoname = None 523 | if facename == None: 524 | facename = autoname 525 | if facename == None: 526 | sys.stderr.write("fonts disagree on face name; "+\ 527 | "specify one with -facename\n") 528 | sys.exit(1) 529 | outfp = open(outfile, "wb") 530 | outfp.write(fon(facename, fnts)) 531 | outfp.close() 532 | -------------------------------------------------------------------------------- /fonts/tektite16x9.fd: -------------------------------------------------------------------------------- 1 | # This is the Tektite font, out of the VFONT utility by clySmic 2 | # Software. It's been heavily modified: the 0 and the * have been 3 | # altered, a load of new characters have been drawn to conform to 4 | # the Windows character set, and of course it's had a format 5 | # conversion done on it. 6 | # 7 | # All these modifications were done by Simon Tatham, who asserts 8 | # no copyright. 9 | # 10 | # The original VFONT copyright says: 11 | # 12 | # VFONT is copyright 1991, 1993, 1998 by clySmic software, and is 13 | # released as "Freeware". 14 | # 15 | # You may copy the program and distribute it without charge. You may 16 | # not sell or otherwise charge for VFONT. However, users' groups may 17 | # charge a small fee (not to exceed $10) for media and postage. 18 | ######################################################################## 19 | # Feb 2017 - mj.Jernigan 20 | # Reverted some of Simon's changes but added many of my own. 21 | # Improved spacing in both x and y. 22 | # Cleaned up the accented characters with more-readable but 23 | # less-stylized accents. 24 | # Stylized the many non-stylized characters. 25 | # Many smaller tweaks. 26 | # May 2020 - mj.Jernigan 27 | # Redid some glyphs in the DEC Special Graphics range. 28 | ######################################################################## 29 | 30 | facename Tektite 31 | copyright Portions copyright 1991,1993,1998 clySmic Software. 32 | 33 | pointsize 12 34 | 35 | height 16 36 | ascent 13 37 | inleading 1 38 | exleading 1 39 | 40 | char 0 41 | width 9 42 | ......... 43 | ......... 44 | ......... 45 | ......... 46 | ......... 47 | ......... 48 | ......... 49 | ......... 50 | ......... 51 | ......... 52 | ......... 53 | ......... 54 | ......... 55 | ......... 56 | ......... 57 | ......... 58 | 59 | char 1 60 | width 9 61 | ......... 62 | ......... 63 | ......... 64 | ......... 65 | ...xx.... 66 | ..xxxx... 67 | .xxxxxx.. 68 | xxxxxxxx. 69 | xxxxxxxx. 70 | .xxxxxx.. 71 | ..xxxx... 72 | ...xx.... 73 | ......... 74 | ......... 75 | ......... 76 | ......... 77 | 78 | char 2 79 | width 9 80 | ......... 81 | ......... 82 | ......... 83 | x..x..x.. 84 | .x..x..x. 85 | x..x..x.. 86 | .x..x..x. 87 | x..x..x.. 88 | .x..x..x. 89 | x..x..x.. 90 | .x..x..x. 91 | x..x..x.. 92 | .x..x..x. 93 | ......... 94 | ......... 95 | ......... 96 | 97 | char 3 98 | width 9 99 | ......... 100 | ......... 101 | ......... 102 | xx..xx... 103 | xx.xxx... 104 | xxxxxx... 105 | xx..xx... 106 | xx..xx... 107 | ......... 108 | .....xxx. 109 | ..xxxx... 110 | ....xx... 111 | ....xx... 112 | ....xx... 113 | ......... 114 | ......... 115 | 116 | char 4 117 | width 9 118 | ......... 119 | ......... 120 | ......... 121 | ...xxx... 122 | .xxx..... 123 | .xxxx.... 124 | .xx...... 125 | .xx...... 126 | ......... 127 | .....xxx. 128 | ...xxx... 129 | ...xxxx.. 130 | ...xx.... 131 | ...xx.... 132 | ......... 133 | ......... 134 | 135 | char 5 136 | width 9 137 | ......... 138 | ......... 139 | ......... 140 | ..xxx.... 141 | .xx.xx... 142 | xx....... 143 | xx....... 144 | .xxxxx... 145 | ......... 146 | ....xxx.. 147 | ...xx.xx. 148 | ..xxxxx.. 149 | ..xx.xx.. 150 | ..xx..xx. 151 | ......... 152 | ......... 153 | 154 | char 6 155 | width 9 156 | ......... 157 | ......... 158 | ......... 159 | .xx...... 160 | .xx...... 161 | .xx...... 162 | .xx.xx... 163 | .xxxx.... 164 | ......... 165 | .....xxx. 166 | ...xxx... 167 | ...xxxx.. 168 | ...xx.... 169 | ...xx.... 170 | ......... 171 | ......... 172 | 173 | char 7 174 | width 9 175 | ......... 176 | ......... 177 | ......... 178 | ..xxxx... 179 | .xx..xx.. 180 | .xx..xx.. 181 | ..xxxx... 182 | ......... 183 | ......... 184 | ......... 185 | ......... 186 | ......... 187 | ......... 188 | ......... 189 | ......... 190 | ......... 191 | 192 | char 8 193 | width 9 194 | ......... 195 | ......... 196 | ......... 197 | ......... 198 | ...xx.... 199 | ...xx.... 200 | .xxxxxx.. 201 | ...xx.... 202 | ...xx.... 203 | ......... 204 | ......... 205 | .xxxxxx.. 206 | ......... 207 | ......... 208 | ......... 209 | ......... 210 | 211 | char 9 212 | width 9 213 | ......... 214 | ......... 215 | ......... 216 | xx..xx... 217 | xxx.xx... 218 | xxx.xx... 219 | xx.xxx... 220 | xx..xx... 221 | ......... 222 | ...xx.... 223 | ...xx.... 224 | ...xx.... 225 | ...xx.xx. 226 | ...xxxx.. 227 | ......... 228 | ......... 229 | 230 | char 10 231 | width 9 232 | ......... 233 | ......... 234 | ......... 235 | xx..xx... 236 | xx..xx... 237 | .x.xx.... 238 | .xxx..... 239 | ..x...... 240 | ......... 241 | .....xxx. 242 | ..xxxx... 243 | ....xx... 244 | ....xx... 245 | ....xx... 246 | ......... 247 | ......... 248 | 249 | char 11 250 | width 9 251 | ...xx.... 252 | ...xx.... 253 | ...xx.... 254 | ...xx.... 255 | ...xx.... 256 | ...xx.... 257 | ...xx.... 258 | ...xx.... 259 | xxxxx.... 260 | ......... 261 | ......... 262 | ......... 263 | ......... 264 | ......... 265 | ......... 266 | ......... 267 | 268 | char 12 269 | width 9 270 | ......... 271 | ......... 272 | ......... 273 | ......... 274 | ......... 275 | ......... 276 | ......... 277 | ......... 278 | xxxxx.... 279 | ...xx.... 280 | ...xx.... 281 | ...xx.... 282 | ...xx.... 283 | ...xx.... 284 | ...xx.... 285 | ...xx.... 286 | 287 | char 13 288 | width 9 289 | ......... 290 | ......... 291 | ......... 292 | ......... 293 | ......... 294 | ......... 295 | ......... 296 | ......... 297 | ...xxxxxx 298 | ...xx.... 299 | ...xx.... 300 | ...xx.... 301 | ...xx.... 302 | ...xx.... 303 | ...xx.... 304 | ...xx.... 305 | 306 | char 14 307 | width 9 308 | ...xx.... 309 | ...xx.... 310 | ...xx.... 311 | ...xx.... 312 | ...xx.... 313 | ...xx.... 314 | ...xx.... 315 | ...xx.... 316 | ...xxxxxx 317 | ......... 318 | ......... 319 | ......... 320 | ......... 321 | ......... 322 | ......... 323 | ......... 324 | 325 | char 15 326 | width 9 327 | ...xx.... 328 | ...xx.... 329 | ...xx.... 330 | ...xx.... 331 | ...xx.... 332 | ...xx.... 333 | ...xx.... 334 | ...xx.... 335 | xxxxxxxxx 336 | ...xx.... 337 | ...xx.... 338 | ...xx.... 339 | ...xx.... 340 | ...xx.... 341 | ...xx.... 342 | ...xx.... 343 | 344 | char 16 345 | width 9 346 | ......... 347 | ......... 348 | xxxxxxxxx 349 | ......... 350 | ......... 351 | ......... 352 | ......... 353 | ......... 354 | ......... 355 | ......... 356 | ......... 357 | ......... 358 | ......... 359 | ......... 360 | ......... 361 | ......... 362 | 363 | char 17 364 | width 9 365 | ......... 366 | ......... 367 | ......... 368 | ......... 369 | ......... 370 | xxxxxxxxx 371 | ......... 372 | ......... 373 | ......... 374 | ......... 375 | ......... 376 | ......... 377 | ......... 378 | ......... 379 | ......... 380 | ......... 381 | 382 | char 18 383 | width 9 384 | ......... 385 | ......... 386 | ......... 387 | ......... 388 | ......... 389 | ......... 390 | ......... 391 | ......... 392 | xxxxxxxxx 393 | ......... 394 | ......... 395 | ......... 396 | ......... 397 | ......... 398 | ......... 399 | ......... 400 | 401 | char 19 402 | width 9 403 | ......... 404 | ......... 405 | ......... 406 | ......... 407 | ......... 408 | ......... 409 | ......... 410 | ......... 411 | ......... 412 | ......... 413 | ......... 414 | xxxxxxxxx 415 | ......... 416 | ......... 417 | ......... 418 | ......... 419 | 420 | char 20 421 | width 9 422 | ......... 423 | ......... 424 | ......... 425 | ......... 426 | ......... 427 | ......... 428 | ......... 429 | ......... 430 | ......... 431 | ......... 432 | ......... 433 | ......... 434 | ......... 435 | ......... 436 | xxxxxxxxx 437 | ......... 438 | 439 | char 21 440 | width 9 441 | ...xx.... 442 | ...xx.... 443 | ...xx.... 444 | ...xx.... 445 | ...xx.... 446 | ...xx.... 447 | ...xx.... 448 | ...xx.... 449 | ...xxxxxx 450 | ...xx.... 451 | ...xx.... 452 | ...xx.... 453 | ...xx.... 454 | ...xx.... 455 | ...xx.... 456 | ...xx.... 457 | 458 | char 22 459 | width 9 460 | ...xx.... 461 | ...xx.... 462 | ...xx.... 463 | ...xx.... 464 | ...xx.... 465 | ...xx.... 466 | ...xx.... 467 | ...xx.... 468 | xxxxx.... 469 | ...xx.... 470 | ...xx.... 471 | ...xx.... 472 | ...xx.... 473 | ...xx.... 474 | ...xx.... 475 | ...xx.... 476 | 477 | char 23 478 | width 9 479 | ...xx.... 480 | ...xx.... 481 | ...xx.... 482 | ...xx.... 483 | ...xx.... 484 | ...xx.... 485 | ...xx.... 486 | ...xx.... 487 | xxxxxxxxx 488 | ......... 489 | ......... 490 | ......... 491 | ......... 492 | ......... 493 | ......... 494 | ......... 495 | 496 | char 24 497 | width 9 498 | ......... 499 | ......... 500 | ......... 501 | ......... 502 | ......... 503 | ......... 504 | ......... 505 | ......... 506 | xxxxxxxxx 507 | ...xx.... 508 | ...xx.... 509 | ...xx.... 510 | ...xx.... 511 | ...xx.... 512 | ...xx.... 513 | ...xx.... 514 | 515 | char 25 516 | width 9 517 | ...xx.... 518 | ...xx.... 519 | ...xx.... 520 | ...xx.... 521 | ...xx.... 522 | ...xx.... 523 | ...xx.... 524 | ...xx.... 525 | ...xx.... 526 | ...xx.... 527 | ...xx.... 528 | ...xx.... 529 | ...xx.... 530 | ...xx.... 531 | ...xx.... 532 | ...xx.... 533 | 534 | char 26 535 | width 9 536 | ......... 537 | ......... 538 | ......... 539 | ....xx... 540 | ...xx.... 541 | ..xx..... 542 | .xx...... 543 | ..xx..... 544 | ...xx.... 545 | ....xx... 546 | ......... 547 | .xxxxxx.. 548 | ......... 549 | ......... 550 | ......... 551 | ......... 552 | 553 | char 27 554 | width 9 555 | ......... 556 | ......... 557 | ......... 558 | ..xx..... 559 | ...xx.... 560 | ....xx... 561 | .....xx.. 562 | ....xx... 563 | ...xx.... 564 | ..xx..... 565 | ......... 566 | .xxxxxx.. 567 | ......... 568 | ......... 569 | ......... 570 | ......... 571 | 572 | char 28 573 | width 9 574 | ......... 575 | ......... 576 | ......... 577 | ......... 578 | ......... 579 | ......... 580 | ....xxxx. 581 | xxxxxxx.. 582 | .xx..xx.. 583 | .xx..xx.. 584 | .xx..xx.. 585 | .xx..xx.. 586 | .xx..x... 587 | ......... 588 | ......... 589 | ......... 590 | 591 | char 29 592 | width 9 593 | ......... 594 | ......... 595 | ......... 596 | .....xx.. 597 | .....x... 598 | ....xx... 599 | xxxxxxxx. 600 | ...xx.... 601 | ...x..... 602 | xxxxxxxx. 603 | ..x...... 604 | .xx...... 605 | .x....... 606 | ......... 607 | ......... 608 | ......... 609 | 610 | char 30 611 | width 9 612 | ......... 613 | ......... 614 | ......... 615 | ...xxx... 616 | ..xx.xx.. 617 | .xx...... 618 | xxxxx.... 619 | .xx...... 620 | xxxxx.... 621 | .xx...... 622 | .xx...... 623 | .xxxx.xx. 624 | xx..xxx.. 625 | ......... 626 | ......... 627 | ......... 628 | 629 | char 31 630 | width 9 631 | ......... 632 | ......... 633 | ......... 634 | ......... 635 | ......... 636 | ......... 637 | ......... 638 | ...xx.... 639 | ...xx.... 640 | ......... 641 | ......... 642 | ......... 643 | ......... 644 | ......... 645 | ......... 646 | ......... 647 | 648 | char 32 649 | width 9 650 | ......... 651 | ......... 652 | ......... 653 | ......... 654 | ......... 655 | ......... 656 | ......... 657 | ......... 658 | ......... 659 | ......... 660 | ......... 661 | ......... 662 | ......... 663 | ......... 664 | ......... 665 | ......... 666 | 667 | char 33 668 | width 9 669 | ......... 670 | ......... 671 | ......... 672 | ...xx.... 673 | ...xx.... 674 | ...xx.... 675 | ...xx.... 676 | ...xx.... 677 | ...xx.... 678 | ...xx.... 679 | ......... 680 | ...xx.... 681 | ...xx.... 682 | ......... 683 | ......... 684 | ......... 685 | 686 | char 34 687 | width 9 688 | ......... 689 | ......... 690 | ......... 691 | ..xx..xx. 692 | .xx..xx.. 693 | xx..xx... 694 | ......... 695 | ......... 696 | ......... 697 | ......... 698 | ......... 699 | ......... 700 | ......... 701 | ......... 702 | ......... 703 | ......... 704 | 705 | char 35 706 | width 9 707 | ......... 708 | ......... 709 | ......... 710 | ..xx..xx. 711 | ..xx..xx. 712 | xxxxxxxx. 713 | .xx..xx.. 714 | .xx..xx.. 715 | .xx..xx.. 716 | .xx..xx.. 717 | xxxxxxxx. 718 | xx..xx... 719 | xx..xx... 720 | ......... 721 | ......... 722 | ......... 723 | 724 | char 36 725 | width 9 726 | ......... 727 | ......... 728 | ...xx.... 729 | .xxxxxx.. 730 | xx.xx.xx. 731 | xx.xx.... 732 | .xxxx.... 733 | ...xxx... 734 | ...xxxx.. 735 | ...xx.xx. 736 | xx.xx.xx. 737 | xx.xx.xx. 738 | .xxxxxx.. 739 | ...xx.... 740 | ......... 741 | ......... 742 | 743 | char 37 744 | width 9 745 | ......... 746 | ......... 747 | ......... 748 | ..xx..... 749 | .xx.x..x. 750 | .x.xx.xx. 751 | ..xx.xx.. 752 | ....xx... 753 | ...xx.... 754 | ..xx.xx.. 755 | .xx.xx.x. 756 | xx..x.xx. 757 | .....xx.. 758 | ......... 759 | ......... 760 | ......... 761 | 762 | char 38 763 | width 9 764 | ......... 765 | ......... 766 | ......... 767 | ...xxx... 768 | ..xx.xx.. 769 | .xx..xx.. 770 | ..xxxx... 771 | ..xxx.... 772 | .xx.xx... 773 | xx...xxx. 774 | xx...xx.. 775 | .xx.xxx.. 776 | ..xxx.xx. 777 | ......... 778 | ......... 779 | ......... 780 | 781 | char 39 782 | width 9 783 | ......... 784 | ......... 785 | ......... 786 | ....xx... 787 | ...xx.... 788 | ..xx..... 789 | ......... 790 | ......... 791 | ......... 792 | ......... 793 | ......... 794 | ......... 795 | ......... 796 | ......... 797 | ......... 798 | ......... 799 | 800 | char 40 801 | width 9 802 | ......... 803 | ......... 804 | ....xx... 805 | ...xx.... 806 | ..xx..... 807 | ..xx..... 808 | .xx...... 809 | .xx...... 810 | .xx...... 811 | .xx...... 812 | ..xx..... 813 | ..xx..... 814 | ...xx.... 815 | ....xx... 816 | ......... 817 | ......... 818 | 819 | char 41 820 | width 9 821 | ......... 822 | ......... 823 | ..xx..... 824 | ...xx.... 825 | ....xx... 826 | ....xx... 827 | .....xx.. 828 | .....xx.. 829 | .....xx.. 830 | .....xx.. 831 | ....xx... 832 | ....xx... 833 | ...xx.... 834 | ..xx..... 835 | ......... 836 | ......... 837 | 838 | char 42 839 | width 9 840 | ......... 841 | ......... 842 | ......... 843 | .xx..xx.. 844 | ..xxxx... 845 | xxxxxxxx. 846 | ..xxxx... 847 | .xx..xx.. 848 | ......... 849 | ......... 850 | ......... 851 | ......... 852 | ......... 853 | ......... 854 | ......... 855 | ......... 856 | 857 | char 43 858 | width 9 859 | ......... 860 | ......... 861 | ......... 862 | ......... 863 | ......... 864 | ......... 865 | ...xx.... 866 | ...xx.... 867 | .xxxxxx.. 868 | ...xx.... 869 | ...xx.... 870 | ......... 871 | ......... 872 | ......... 873 | ......... 874 | ......... 875 | 876 | char 44 877 | width 9 878 | ......... 879 | ......... 880 | ......... 881 | ......... 882 | ......... 883 | ......... 884 | ......... 885 | ......... 886 | ......... 887 | ......... 888 | ......... 889 | ....xx... 890 | ...xx.... 891 | ..xx..... 892 | ......... 893 | ......... 894 | 895 | char 45 896 | width 9 897 | ......... 898 | ......... 899 | ......... 900 | ......... 901 | ......... 902 | ......... 903 | ......... 904 | ......... 905 | .xxxxxx.. 906 | ......... 907 | ......... 908 | ......... 909 | ......... 910 | ......... 911 | ......... 912 | ......... 913 | 914 | char 46 915 | width 9 916 | ......... 917 | ......... 918 | ......... 919 | ......... 920 | ......... 921 | ......... 922 | ......... 923 | ......... 924 | ......... 925 | ......... 926 | ......... 927 | ...xx.... 928 | ...xx.... 929 | ......... 930 | ......... 931 | ......... 932 | 933 | char 47 934 | width 9 935 | ......... 936 | ......... 937 | ......... 938 | .....xx.. 939 | .....x... 940 | ....xx... 941 | ....x.... 942 | ...xx.... 943 | ...x..... 944 | ..xx..... 945 | ..x...... 946 | .xx...... 947 | .x....... 948 | xx....... 949 | ......... 950 | ......... 951 | 952 | char 48 953 | width 9 954 | ......... 955 | ......... 956 | ......... 957 | ..xxxxx.. 958 | .xx...xx. 959 | xx....xx. 960 | xx....xx. 961 | xx....xx. 962 | xx..xxxx. 963 | xx.xx.xx. 964 | xxxx..xx. 965 | xx...xx.. 966 | .xxxxx... 967 | ......... 968 | ......... 969 | ......... 970 | 971 | char 49 972 | width 9 973 | ......... 974 | ......... 975 | ......... 976 | ....xx... 977 | ...xxx... 978 | ..xxxx... 979 | .xx.xx... 980 | ....xx... 981 | ....xx... 982 | ....xx... 983 | ....xx... 984 | ....xx... 985 | ....xx... 986 | ......... 987 | ......... 988 | ......... 989 | 990 | char 50 991 | width 9 992 | ......... 993 | ......... 994 | ......... 995 | ..xxxxx.. 996 | .xx...xx. 997 | xx....xx. 998 | ......xx. 999 | .....xx.. 1000 | ....xx... 1001 | ...xx.... 1002 | ..xx..... 1003 | .xx...xx. 1004 | xxxxxxxx. 1005 | ......... 1006 | ......... 1007 | ......... 1008 | 1009 | char 51 1010 | width 9 1011 | ......... 1012 | ......... 1013 | ......... 1014 | xxxxxxxx. 1015 | xx...xx.. 1016 | ....xx... 1017 | ...xx.... 1018 | ..xxxxx.. 1019 | ......xx. 1020 | ......xx. 1021 | xx....xx. 1022 | xx...xx.. 1023 | .xxxxx... 1024 | ......... 1025 | ......... 1026 | ......... 1027 | 1028 | char 52 1029 | width 9 1030 | ......... 1031 | ......... 1032 | ......... 1033 | .....xx.. 1034 | ....xxx.. 1035 | ...xxxx.. 1036 | ..xx.xx.. 1037 | .xx..xx.. 1038 | xx...xxx. 1039 | xx.xxxx.. 1040 | xxxx.xx.. 1041 | .....xx.. 1042 | .....xx.. 1043 | ......... 1044 | ......... 1045 | ......... 1046 | 1047 | char 53 1048 | width 9 1049 | ......... 1050 | ......... 1051 | ......... 1052 | ...xxxxx. 1053 | xxxx..... 1054 | xx....... 1055 | xx.xxx... 1056 | xxxx.xx.. 1057 | ......xx. 1058 | ......xx. 1059 | xx....xx. 1060 | xx...xx.. 1061 | .xxxxx... 1062 | ......... 1063 | ......... 1064 | ......... 1065 | 1066 | char 54 1067 | width 9 1068 | ......... 1069 | ......... 1070 | ......... 1071 | ..xxxx... 1072 | .xx..xx.. 1073 | xx...xx.. 1074 | xx....... 1075 | xx.xxx... 1076 | xxxx.xx.. 1077 | xx...xx.. 1078 | xx...xx.. 1079 | xx..xx... 1080 | .xxxx.... 1081 | ......... 1082 | ......... 1083 | ......... 1084 | 1085 | char 55 1086 | width 9 1087 | ......... 1088 | ......... 1089 | ......... 1090 | xxxxxxxx. 1091 | xx....xx. 1092 | .....xx.. 1093 | ....xx... 1094 | ....xx... 1095 | ...xx.... 1096 | ...xx.... 1097 | ..xx..... 1098 | ..xx..... 1099 | ..xx..... 1100 | ......... 1101 | ......... 1102 | ......... 1103 | 1104 | char 56 1105 | width 9 1106 | ......... 1107 | ......... 1108 | ......... 1109 | ..xxxx... 1110 | .xx..xx.. 1111 | xx...xx.. 1112 | .xx.xx... 1113 | ..xxxxx.. 1114 | .xx...xx. 1115 | xx....xx. 1116 | xx....xx. 1117 | xx...xx.. 1118 | .xxxxx... 1119 | ......... 1120 | ......... 1121 | ......... 1122 | 1123 | char 57 1124 | width 9 1125 | ......... 1126 | ......... 1127 | ......... 1128 | ..xxxx... 1129 | .xx..xx.. 1130 | xx...xx.. 1131 | xx...xx.. 1132 | xx.xxxx.. 1133 | .xxx.xx.. 1134 | .....xx.. 1135 | xx...xx.. 1136 | xx..xx... 1137 | .xxxx.... 1138 | ......... 1139 | ......... 1140 | ......... 1141 | 1142 | char 58 1143 | width 9 1144 | ......... 1145 | ......... 1146 | ......... 1147 | ......... 1148 | ......... 1149 | ...xx.... 1150 | ...xx.... 1151 | ......... 1152 | ......... 1153 | ......... 1154 | ...xx.... 1155 | ...xx.... 1156 | ......... 1157 | ......... 1158 | ......... 1159 | ......... 1160 | 1161 | char 59 1162 | width 9 1163 | ......... 1164 | ......... 1165 | ......... 1166 | ......... 1167 | ......... 1168 | ...xx.... 1169 | ...xx.... 1170 | ......... 1171 | ......... 1172 | ......... 1173 | ...xx.... 1174 | ...xx.... 1175 | ..xx..... 1176 | ......... 1177 | ......... 1178 | ......... 1179 | 1180 | char 60 1181 | width 9 1182 | ......... 1183 | ......... 1184 | ......... 1185 | .....xx.. 1186 | ....xx... 1187 | ...xx.... 1188 | ..xx..... 1189 | .xx...... 1190 | .xx...... 1191 | ..xx..... 1192 | ...xx.... 1193 | ....xx... 1194 | .....xx.. 1195 | ......... 1196 | ......... 1197 | ......... 1198 | 1199 | char 61 1200 | width 9 1201 | ......... 1202 | ......... 1203 | ......... 1204 | ......... 1205 | ......... 1206 | ......... 1207 | xxxxxxxx. 1208 | ......... 1209 | ......... 1210 | xxxxxxxx. 1211 | ......... 1212 | ......... 1213 | ......... 1214 | ......... 1215 | ......... 1216 | ......... 1217 | 1218 | char 62 1219 | width 9 1220 | ......... 1221 | ......... 1222 | ......... 1223 | .xx...... 1224 | ..xx..... 1225 | ...xx.... 1226 | ....xx... 1227 | .....xx.. 1228 | .....xx.. 1229 | ....xx... 1230 | ...xx.... 1231 | ..xx..... 1232 | .xx...... 1233 | ......... 1234 | ......... 1235 | ......... 1236 | 1237 | char 63 1238 | width 9 1239 | ......... 1240 | ......... 1241 | ......... 1242 | ..xxxxx.. 1243 | .xx...xx. 1244 | xx...xx.. 1245 | ....xx... 1246 | ...xx.... 1247 | ..xx..... 1248 | ..xx..... 1249 | ......... 1250 | ..xx..... 1251 | ..xx..... 1252 | ......... 1253 | ......... 1254 | ......... 1255 | 1256 | char 64 1257 | width 9 1258 | ......... 1259 | ......... 1260 | ......... 1261 | ...xxxx.. 1262 | ..xx..xx. 1263 | .xx.xxxx. 1264 | xx.xx.xx. 1265 | xx.xx.xx. 1266 | xx.xx.xx. 1267 | xx.xxxx.. 1268 | xx.xx.... 1269 | xx...xx.. 1270 | xx.xxx... 1271 | .xxx..... 1272 | ......... 1273 | ......... 1274 | 1275 | char 65 1276 | width 9 1277 | ......... 1278 | ......... 1279 | ......... 1280 | ...xx.... 1281 | ...xx.... 1282 | ..xxxx... 1283 | ..x..x... 1284 | .xx..xx.. 1285 | .xx.xxx.. 1286 | .xxxx.x.. 1287 | xxx...xx. 1288 | xx....xx. 1289 | xx....xx. 1290 | ......... 1291 | ......... 1292 | ......... 1293 | 1294 | char 66 1295 | width 9 1296 | ......... 1297 | ......... 1298 | ......... 1299 | ...xxxx.. 1300 | ..xx..xx. 1301 | xxx...xx. 1302 | xx...xx.. 1303 | xx.xxx... 1304 | xxxx.xxx. 1305 | xx....xx. 1306 | xx...xx.. 1307 | xx.xxx... 1308 | xxxx..... 1309 | ......... 1310 | ......... 1311 | ......... 1312 | 1313 | char 67 1314 | width 9 1315 | ......... 1316 | ......... 1317 | ......... 1318 | ...xxxx.. 1319 | ..xx..xx. 1320 | .xx...... 1321 | xx....... 1322 | xx....... 1323 | xx....... 1324 | xx....... 1325 | xx....... 1326 | .xx...xx. 1327 | ..xxxxx.. 1328 | ......... 1329 | ......... 1330 | ......... 1331 | 1332 | char 68 1333 | width 9 1334 | ......... 1335 | ......... 1336 | ......... 1337 | xxxxxx... 1338 | xx...xx.. 1339 | xx....xx. 1340 | xx....xx. 1341 | xx....xx. 1342 | xx....xx. 1343 | xx....xx. 1344 | xx...xx.. 1345 | xx.xxx... 1346 | xxxx..... 1347 | ......... 1348 | ......... 1349 | ......... 1350 | 1351 | char 69 1352 | width 9 1353 | ......... 1354 | ......... 1355 | ......... 1356 | ....xxxx. 1357 | .xxxx.... 1358 | .xx...... 1359 | .xx...... 1360 | .xx.xxx.. 1361 | .xxxx.... 1362 | .xx...... 1363 | .xx...... 1364 | .xx.xxxx. 1365 | .xxxx.... 1366 | ......... 1367 | ......... 1368 | ......... 1369 | 1370 | char 70 1371 | width 9 1372 | ......... 1373 | ......... 1374 | ......... 1375 | ....xxxx. 1376 | .xxxx.... 1377 | .xx...... 1378 | .xx...... 1379 | .xx.xxx.. 1380 | .xxxx.... 1381 | .xx...... 1382 | .xx...... 1383 | .xx...... 1384 | .xx...... 1385 | ......... 1386 | ......... 1387 | ......... 1388 | 1389 | char 71 1390 | width 9 1391 | ......... 1392 | ......... 1393 | ......... 1394 | ..xxxxx.. 1395 | .xx...xx. 1396 | xx....... 1397 | xx....... 1398 | xx....... 1399 | xx..xxxx. 1400 | xx....xx. 1401 | xx....xx. 1402 | .xx..xx.. 1403 | ..xxxx... 1404 | ......... 1405 | ......... 1406 | ......... 1407 | 1408 | char 72 1409 | width 9 1410 | ......... 1411 | ......... 1412 | ......... 1413 | xx....xx. 1414 | xx....xx. 1415 | xx....xx. 1416 | xx....xx. 1417 | xx..xxxx. 1418 | xxxxx.xx. 1419 | xx....xx. 1420 | xx....xx. 1421 | xx....xx. 1422 | xx....xx. 1423 | ......... 1424 | ......... 1425 | ......... 1426 | 1427 | char 73 1428 | width 9 1429 | ......... 1430 | ......... 1431 | ......... 1432 | ...xxx... 1433 | ..xxx.... 1434 | ...xx.... 1435 | ...xx.... 1436 | ...xx.... 1437 | ...xx.... 1438 | ...xx.... 1439 | ...xx.... 1440 | ...xxx... 1441 | ..xxx.... 1442 | ......... 1443 | ......... 1444 | ......... 1445 | 1446 | char 74 1447 | width 9 1448 | ......... 1449 | ......... 1450 | ......... 1451 | ......xx. 1452 | ......xx. 1453 | ......xx. 1454 | ......xx. 1455 | ......xx. 1456 | ......xx. 1457 | xx....xx. 1458 | xx....xx. 1459 | .xx...xx. 1460 | ..xxxxx.. 1461 | ......... 1462 | ......... 1463 | ......... 1464 | 1465 | char 75 1466 | width 9 1467 | ......... 1468 | ......... 1469 | ......... 1470 | xx....xx. 1471 | xx...xx.. 1472 | xx.xxx... 1473 | xxxx..... 1474 | xxx...... 1475 | xxxx..... 1476 | xx.xx.... 1477 | xx..xx... 1478 | xx...xx.. 1479 | xx....xx. 1480 | ......... 1481 | ......... 1482 | ......... 1483 | 1484 | char 76 1485 | width 9 1486 | ......... 1487 | ......... 1488 | ......... 1489 | .xx...... 1490 | .xx...... 1491 | .xx...... 1492 | .xx...... 1493 | .xx...... 1494 | .xx...... 1495 | .xx...... 1496 | .xx...... 1497 | .xx.xxxx. 1498 | .xxxx.... 1499 | ......... 1500 | ......... 1501 | ......... 1502 | 1503 | char 77 1504 | width 9 1505 | ......... 1506 | ......... 1507 | ......... 1508 | xx....xx. 1509 | xx....xx. 1510 | xxx..xxx. 1511 | xxx.xxxx. 1512 | xxxxx.xx. 1513 | xx.x..xx. 1514 | xx....xx. 1515 | xx....xx. 1516 | xx....xx. 1517 | xx....xx. 1518 | ......... 1519 | ......... 1520 | ......... 1521 | 1522 | char 78 1523 | width 9 1524 | ......... 1525 | ......... 1526 | ......... 1527 | xx....xx. 1528 | xx....xx. 1529 | xxx...xx. 1530 | xxxx..xx. 1531 | xx.x..xx. 1532 | xx.xx.xx. 1533 | xx..xxxx. 1534 | xx...xxx. 1535 | xx....xx. 1536 | xx....xx. 1537 | ......... 1538 | ......... 1539 | ......... 1540 | 1541 | char 79 1542 | width 9 1543 | ......... 1544 | ......... 1545 | ......... 1546 | ..xxxxx.. 1547 | .xx...xx. 1548 | xx....xx. 1549 | xx....xx. 1550 | xx....xx. 1551 | xx....xx. 1552 | xx....xx. 1553 | xx....xx. 1554 | xx...xx.. 1555 | .xxxxx... 1556 | ......... 1557 | ......... 1558 | ......... 1559 | 1560 | char 80 1561 | width 9 1562 | ......... 1563 | ......... 1564 | ......... 1565 | ...xxxx.. 1566 | ..xx..xx. 1567 | xxx...xx. 1568 | xx....xx. 1569 | xx...xx.. 1570 | xx.xxx... 1571 | xxxx..... 1572 | xx....... 1573 | xx....... 1574 | xx....... 1575 | ......... 1576 | ......... 1577 | ......... 1578 | 1579 | char 81 1580 | width 9 1581 | ......... 1582 | ......... 1583 | ......... 1584 | ..xxxxx.. 1585 | .xx...xx. 1586 | xx....xx. 1587 | xx....xx. 1588 | xx....xx. 1589 | xx....xx. 1590 | xxxx..xx. 1591 | xx.xxxx.. 1592 | xx..xx... 1593 | .xxxxx... 1594 | .....xx.. 1595 | ......xx. 1596 | ......... 1597 | 1598 | char 82 1599 | width 9 1600 | ......... 1601 | ......... 1602 | ......... 1603 | ...xxxx.. 1604 | ..xx..xx. 1605 | xxx...xx. 1606 | xx....xx. 1607 | xx...xx.. 1608 | xxxxxx... 1609 | xx.xx.... 1610 | xx..xx... 1611 | xx...xx.. 1612 | xx....xx. 1613 | ......... 1614 | ......... 1615 | ......... 1616 | 1617 | char 83 1618 | width 9 1619 | ......... 1620 | ......... 1621 | ......... 1622 | .xxxxxx.. 1623 | xx....xx. 1624 | xx....... 1625 | .xxx..... 1626 | ...xxx... 1627 | .....xx.. 1628 | ......xx. 1629 | xx....xx. 1630 | xx....xx. 1631 | .xxxxxx.. 1632 | ......... 1633 | ......... 1634 | ......... 1635 | 1636 | char 84 1637 | width 9 1638 | ......... 1639 | ......... 1640 | ......... 1641 | ....xxxx. 1642 | xxxxx.... 1643 | ...xx.... 1644 | ...xx.... 1645 | ...xx.... 1646 | ...xx.... 1647 | ...xx.... 1648 | ...xx.... 1649 | ...xx.... 1650 | ...xx.... 1651 | ......... 1652 | ......... 1653 | ......... 1654 | 1655 | char 85 1656 | width 9 1657 | ......... 1658 | ......... 1659 | ......... 1660 | xx....xx. 1661 | xx....xx. 1662 | xx....xx. 1663 | xx....xx. 1664 | xx....xx. 1665 | xx....xx. 1666 | xx...xx.. 1667 | xx...xx.. 1668 | xx..xx... 1669 | .xxxx.... 1670 | ......... 1671 | ......... 1672 | ......... 1673 | 1674 | char 86 1675 | width 9 1676 | ......... 1677 | ......... 1678 | ......... 1679 | xx....xx. 1680 | xx....xx. 1681 | xx....xx. 1682 | xx....xx. 1683 | .xx..xx.. 1684 | .xx..xx.. 1685 | .xxxxx... 1686 | ..xxx.... 1687 | ..xx..... 1688 | ..xx..... 1689 | ......... 1690 | ......... 1691 | ......... 1692 | 1693 | char 87 1694 | width 9 1695 | ......... 1696 | ......... 1697 | ......... 1698 | xx....xx. 1699 | xx....xx. 1700 | xx....xx. 1701 | xx....xx. 1702 | xx.xx.xx. 1703 | xx.xx.xx. 1704 | xx.xx.xx. 1705 | xxxxxxxx. 1706 | xxx..xxx. 1707 | xx....xx. 1708 | ......... 1709 | ......... 1710 | ......... 1711 | 1712 | char 88 1713 | width 9 1714 | ......... 1715 | ......... 1716 | ......... 1717 | xx....xx. 1718 | xx....xx. 1719 | .xx..xx.. 1720 | .xx..xx.. 1721 | ..xxxx... 1722 | ..xxxx... 1723 | .xx..xx.. 1724 | .xx..xx.. 1725 | xx....xx. 1726 | xx....xx. 1727 | ......... 1728 | ......... 1729 | ......... 1730 | 1731 | char 89 1732 | width 9 1733 | ......... 1734 | ......... 1735 | ......... 1736 | xx....xx. 1737 | xx....xx. 1738 | .xx..xx.. 1739 | .xx..xx.. 1740 | ..xxxx... 1741 | ...xx.... 1742 | ...xx.... 1743 | ...xx.... 1744 | ...xx.... 1745 | ...xx.... 1746 | ......... 1747 | ......... 1748 | ......... 1749 | 1750 | char 90 1751 | width 9 1752 | ......... 1753 | ......... 1754 | ......... 1755 | ...xxxxx. 1756 | xxxx.xx.. 1757 | .....x... 1758 | ....xx... 1759 | ...xx.... 1760 | ...x..... 1761 | ..xx..... 1762 | ..x...... 1763 | .xx.xxxx. 1764 | xxxxx.... 1765 | ......... 1766 | ......... 1767 | ......... 1768 | 1769 | char 91 1770 | width 9 1771 | ......... 1772 | ......... 1773 | ..xxxxx.. 1774 | ..xx..... 1775 | ..xx..... 1776 | ..xx..... 1777 | ..xx..... 1778 | ..xx..... 1779 | ..xx..... 1780 | ..xx..... 1781 | ..xx..... 1782 | ..xx..... 1783 | ..xx..... 1784 | ..xxxxx.. 1785 | ......... 1786 | ......... 1787 | 1788 | char 92 1789 | width 9 1790 | ......... 1791 | ......... 1792 | ......... 1793 | xx....... 1794 | .x....... 1795 | .xx...... 1796 | ..x...... 1797 | ..xx..... 1798 | ...x..... 1799 | ...xx.... 1800 | ....x.... 1801 | ....xx... 1802 | .....x... 1803 | .....xx.. 1804 | ......... 1805 | ......... 1806 | 1807 | char 93 1808 | width 9 1809 | ......... 1810 | ......... 1811 | .xxxxx... 1812 | ....xx... 1813 | ....xx... 1814 | ....xx... 1815 | ....xx... 1816 | ....xx... 1817 | ....xx... 1818 | ....xx... 1819 | ....xx... 1820 | ....xx... 1821 | ....xx... 1822 | .xxxxx... 1823 | ......... 1824 | ......... 1825 | 1826 | char 94 1827 | width 9 1828 | ......... 1829 | ......... 1830 | ...xx.... 1831 | ..xxxx... 1832 | .xx..xx.. 1833 | xx....... 1834 | ......... 1835 | ......... 1836 | ......... 1837 | ......... 1838 | ......... 1839 | ......... 1840 | ......... 1841 | ......... 1842 | ......... 1843 | ......... 1844 | 1845 | char 95 1846 | width 9 1847 | ......... 1848 | ......... 1849 | ......... 1850 | ......... 1851 | ......... 1852 | ......... 1853 | ......... 1854 | ......... 1855 | ......... 1856 | ......... 1857 | ......... 1858 | ......... 1859 | ......... 1860 | ......... 1861 | xxxxxxxx. 1862 | ......... 1863 | 1864 | char 96 1865 | width 9 1866 | ......... 1867 | ......... 1868 | ......... 1869 | ..xx..... 1870 | ...xx.... 1871 | ....xx... 1872 | ......... 1873 | ......... 1874 | ......... 1875 | ......... 1876 | ......... 1877 | ......... 1878 | ......... 1879 | ......... 1880 | ......... 1881 | ......... 1882 | 1883 | char 97 1884 | width 9 1885 | ......... 1886 | ......... 1887 | ......... 1888 | ......... 1889 | ......... 1890 | ......... 1891 | ..xxxxx.. 1892 | .xx...xx. 1893 | ...xxxxx. 1894 | .xxx..xx. 1895 | xx....xx. 1896 | xx..xxxx. 1897 | .xxxx.xx. 1898 | ......... 1899 | ......... 1900 | ......... 1901 | 1902 | char 98 1903 | width 9 1904 | ......... 1905 | ......... 1906 | ......... 1907 | xx....... 1908 | xx....... 1909 | xx....... 1910 | xx.xxx... 1911 | xxxx.xx.. 1912 | xx....xx. 1913 | xx....xx. 1914 | xx...xx.. 1915 | xx.xxx... 1916 | xxxx..... 1917 | ......... 1918 | ......... 1919 | ......... 1920 | 1921 | char 99 1922 | width 9 1923 | ......... 1924 | ......... 1925 | ......... 1926 | ......... 1927 | ......... 1928 | ......... 1929 | ...xxxx.. 1930 | ..xx..xx. 1931 | .xx...... 1932 | xx....... 1933 | xx....... 1934 | xx....xx. 1935 | .xxxxxx.. 1936 | ......... 1937 | ......... 1938 | ......... 1939 | 1940 | char 100 1941 | width 9 1942 | ......... 1943 | ......... 1944 | ......... 1945 | ......xx. 1946 | ......xx. 1947 | ......xx. 1948 | ...xxxxx. 1949 | .xxx..xx. 1950 | xx....xx. 1951 | xx...xxx. 1952 | xx..xxxx. 1953 | xx.xx.xx. 1954 | .xxx..xx. 1955 | ......... 1956 | ......... 1957 | ......... 1958 | 1959 | char 101 1960 | width 9 1961 | ......... 1962 | ......... 1963 | ......... 1964 | ......... 1965 | ......... 1966 | ......... 1967 | ..xxxxx.. 1968 | .xx...xx. 1969 | xx..xxx.. 1970 | xxxxx.... 1971 | xx....... 1972 | xx....xx. 1973 | .xxxxxx.. 1974 | ......... 1975 | ......... 1976 | ......... 1977 | 1978 | char 102 1979 | width 9 1980 | ......... 1981 | ......... 1982 | ......... 1983 | ...xxxx.. 1984 | ..xx..xx. 1985 | ..xx..... 1986 | ..xx..... 1987 | ..xxxx... 1988 | xxxx..... 1989 | ..xx..... 1990 | ..xx..... 1991 | ..xx..... 1992 | ..xx..... 1993 | ......... 1994 | ......... 1995 | ......... 1996 | 1997 | char 103 1998 | width 9 1999 | ......... 2000 | ......... 2001 | ......... 2002 | ......... 2003 | ......... 2004 | ......... 2005 | ..xxxxxx. 2006 | .xx...xx. 2007 | xx....xx. 2008 | xx...xxx. 2009 | xx..xxxx. 2010 | xx.xx.xx. 2011 | .xxx..xx. 2012 | ......xx. 2013 | xx....xx. 2014 | .xxxxxx.. 2015 | 2016 | char 104 2017 | width 9 2018 | ......... 2019 | ......... 2020 | ......... 2021 | xx....... 2022 | xx....... 2023 | xx....... 2024 | xx..xxx.. 2025 | xx.xx.xx. 2026 | xxxx..xx. 2027 | xxx...xx. 2028 | xx....xx. 2029 | xx....xx. 2030 | xx....xx. 2031 | ......... 2032 | ......... 2033 | ......... 2034 | 2035 | char 105 2036 | width 9 2037 | ......... 2038 | ......... 2039 | ......... 2040 | ...xx.... 2041 | ...xx.... 2042 | ......... 2043 | ...xx.... 2044 | ...xx.... 2045 | ...xx.... 2046 | ...xx.... 2047 | ...xx.... 2048 | ...xx.... 2049 | ...xx.... 2050 | ......... 2051 | ......... 2052 | ......... 2053 | 2054 | char 106 2055 | width 9 2056 | ......... 2057 | ......... 2058 | ......... 2059 | ....xx... 2060 | ....xx... 2061 | ......... 2062 | ....xx... 2063 | ....xx... 2064 | ....xx... 2065 | ....xx... 2066 | ....xx... 2067 | ....xx... 2068 | ....xx... 2069 | xx..xx... 2070 | xx..xx... 2071 | .xxxx.... 2072 | 2073 | char 107 2074 | width 9 2075 | ......... 2076 | ......... 2077 | ......... 2078 | xx....... 2079 | xx....... 2080 | xx....... 2081 | xx...xx.. 2082 | xx..xx... 2083 | xx.xx.... 2084 | xxxxx.... 2085 | xxx.xx... 2086 | xx...xx.. 2087 | xx....xx. 2088 | ......... 2089 | ......... 2090 | ......... 2091 | 2092 | char 108 2093 | width 9 2094 | ......... 2095 | ......... 2096 | ......... 2097 | ..xxx.... 2098 | ...xx.... 2099 | ...xx.... 2100 | ...xx.... 2101 | ...xx.... 2102 | ...xx.... 2103 | ...xx.... 2104 | ...xx.... 2105 | ...xx.... 2106 | ...xx.... 2107 | ......... 2108 | ......... 2109 | ......... 2110 | 2111 | char 109 2112 | width 9 2113 | ......... 2114 | ......... 2115 | ......... 2116 | ......... 2117 | ......... 2118 | ......... 2119 | xxx..xx.. 2120 | xxxxxxxx. 2121 | xx.xx.xx. 2122 | xx.xx.xx. 2123 | xx....xx. 2124 | xx....xx. 2125 | xx....xx. 2126 | ......... 2127 | ......... 2128 | ......... 2129 | 2130 | char 110 2131 | width 9 2132 | ......... 2133 | ......... 2134 | ......... 2135 | ......... 2136 | ......... 2137 | ......... 2138 | xx..xxx.. 2139 | xx.xx.xx. 2140 | xxxx..xx. 2141 | xxx...xx. 2142 | xx....xx. 2143 | xx....xx. 2144 | xx....xx. 2145 | ......... 2146 | ......... 2147 | ......... 2148 | 2149 | char 111 2150 | width 9 2151 | ......... 2152 | ......... 2153 | ......... 2154 | ......... 2155 | ......... 2156 | ......... 2157 | ..xxxxx.. 2158 | .xx...xx. 2159 | xx....xx. 2160 | xx....xx. 2161 | xx....xx. 2162 | xx...xx.. 2163 | .xxxxx... 2164 | ......... 2165 | ......... 2166 | ......... 2167 | 2168 | char 112 2169 | width 9 2170 | ......... 2171 | ......... 2172 | ......... 2173 | ......... 2174 | ......... 2175 | ......... 2176 | xx..xxx.. 2177 | xx.xx.xx. 2178 | xxxx..xx. 2179 | xxx...xx. 2180 | xx....xx. 2181 | xx...xx.. 2182 | xxxxxx... 2183 | xx....... 2184 | xx....... 2185 | xx....... 2186 | 2187 | char 113 2188 | width 9 2189 | ......... 2190 | ......... 2191 | ......... 2192 | ......... 2193 | ......... 2194 | ......... 2195 | .xxx..xx. 2196 | xx.xx.xx. 2197 | xx..xxxx. 2198 | xx...xxx. 2199 | xx....xx. 2200 | .xx...xx. 2201 | ..xxxxxx. 2202 | ......xx. 2203 | ......xx. 2204 | ......xx. 2205 | 2206 | char 114 2207 | width 9 2208 | ......... 2209 | ......... 2210 | ......... 2211 | ......... 2212 | ......... 2213 | ......... 2214 | xx..xxx.. 2215 | xx.xx.xx. 2216 | xxxx..xx. 2217 | xxx...... 2218 | xx....... 2219 | xx....... 2220 | xx....... 2221 | ......... 2222 | ......... 2223 | ......... 2224 | 2225 | char 115 2226 | width 9 2227 | ......... 2228 | ......... 2229 | ......... 2230 | ......... 2231 | ......... 2232 | ......... 2233 | .xxxxxx.. 2234 | xx....xx. 2235 | .xxx..... 2236 | ...xxxx.. 2237 | ......xx. 2238 | xx....xx. 2239 | .xxxxxx.. 2240 | ......... 2241 | ......... 2242 | ......... 2243 | 2244 | char 116 2245 | width 9 2246 | ......... 2247 | ......... 2248 | ......... 2249 | ....x.... 2250 | ...xx.... 2251 | ...xx.... 2252 | ...xxxx.. 2253 | .xxxx.... 2254 | ...xx.... 2255 | ...xx.... 2256 | ...xx.xx. 2257 | ...xxxx.. 2258 | ....xx... 2259 | ......... 2260 | ......... 2261 | ......... 2262 | 2263 | char 117 2264 | width 9 2265 | ......... 2266 | ......... 2267 | ......... 2268 | ......... 2269 | ......... 2270 | ......... 2271 | xx....xx. 2272 | xx....xx. 2273 | xx....xx. 2274 | xx...xxx. 2275 | xx..xxxx. 2276 | xx.xx.xx. 2277 | .xxx..xx. 2278 | ......... 2279 | ......... 2280 | ......... 2281 | 2282 | char 118 2283 | width 9 2284 | ......... 2285 | ......... 2286 | ......... 2287 | ......... 2288 | ......... 2289 | ......... 2290 | xx....xx. 2291 | xx....xx. 2292 | xx....xx. 2293 | .xx..xx.. 2294 | .xx.xx... 2295 | ..xxx.... 2296 | ...xx.... 2297 | ......... 2298 | ......... 2299 | ......... 2300 | 2301 | char 119 2302 | width 9 2303 | ......... 2304 | ......... 2305 | ......... 2306 | ......... 2307 | ......... 2308 | ......... 2309 | xx....xx. 2310 | xx....xx. 2311 | xx....xx. 2312 | xx.xx.xx. 2313 | xx.xx.xx. 2314 | xxxxxxxx. 2315 | xx....xx. 2316 | ......... 2317 | ......... 2318 | ......... 2319 | 2320 | char 120 2321 | width 9 2322 | ......... 2323 | ......... 2324 | ......... 2325 | ......... 2326 | ......... 2327 | ......... 2328 | xx....xx. 2329 | .xx..xx.. 2330 | ..xxxx... 2331 | ...xx.... 2332 | ..xxxx... 2333 | .xx..xx.. 2334 | xx....xx. 2335 | ......... 2336 | ......... 2337 | ......... 2338 | 2339 | char 121 2340 | width 9 2341 | ......... 2342 | ......... 2343 | ......... 2344 | ......... 2345 | ......... 2346 | ......... 2347 | xx....xx. 2348 | xx....xx. 2349 | xx....xx. 2350 | xx....xx. 2351 | xx....xx. 2352 | .xx..xx.. 2353 | ..xxxxx.. 2354 | ....xx... 2355 | xx.xx.... 2356 | .xxx..... 2357 | 2358 | char 122 2359 | width 9 2360 | ......... 2361 | ......... 2362 | ......... 2363 | ......... 2364 | ......... 2365 | ......... 2366 | xxxxxxxx. 2367 | .....xx.. 2368 | ....xx... 2369 | ...xx.... 2370 | ..xx..... 2371 | .xx...... 2372 | xxxxxxxx. 2373 | ......... 2374 | ......... 2375 | ......... 2376 | 2377 | char 123 2378 | width 9 2379 | ......... 2380 | ......... 2381 | ....xxx.. 2382 | ...xx.... 2383 | ...xx.... 2384 | ...xx.... 2385 | ...xx.... 2386 | .xxx..... 2387 | .xxx..... 2388 | ...xx.... 2389 | ...xx.... 2390 | ...xx.... 2391 | ...xx.... 2392 | ....xxx.. 2393 | ......... 2394 | ......... 2395 | 2396 | char 124 2397 | width 9 2398 | ......... 2399 | ......... 2400 | ...xx.... 2401 | ...xx.... 2402 | ...xx.... 2403 | ...xx.... 2404 | ...xx.... 2405 | ...xx.... 2406 | ...xx.... 2407 | ...xx.... 2408 | ...xx.... 2409 | ...xx.... 2410 | ...xx.... 2411 | ...xx.... 2412 | ......... 2413 | ......... 2414 | 2415 | char 125 2416 | width 9 2417 | ......... 2418 | ......... 2419 | .xxx..... 2420 | ...xx.... 2421 | ...xx.... 2422 | ...xx.... 2423 | ...xx.... 2424 | ....xxx.. 2425 | ....xxx.. 2426 | ...xx.... 2427 | ...xx.... 2428 | ...xx.... 2429 | ...xx.... 2430 | .xxx..... 2431 | ......... 2432 | ......... 2433 | 2434 | char 126 2435 | width 9 2436 | ......... 2437 | ......... 2438 | ......... 2439 | ......... 2440 | ......... 2441 | ......... 2442 | ......... 2443 | .xxx.xx.. 2444 | xx.xxx... 2445 | ......... 2446 | ......... 2447 | ......... 2448 | ......... 2449 | ......... 2450 | ......... 2451 | ......... 2452 | 2453 | char 127 2454 | width 9 2455 | ......... 2456 | ......... 2457 | ......... 2458 | ......... 2459 | ......... 2460 | ......... 2461 | ......... 2462 | ......... 2463 | ......... 2464 | ......... 2465 | ......... 2466 | ......... 2467 | ......... 2468 | ......... 2469 | ......... 2470 | ......... 2471 | 2472 | char 128 2473 | width 9 2474 | ......... 2475 | ......... 2476 | ......... 2477 | ....xxx.. 2478 | ...xx.xx. 2479 | ..xx..... 2480 | .xx...... 2481 | xxxxxxx.. 2482 | .xx...... 2483 | xxxxxx... 2484 | .xx...... 2485 | ..xx..xx. 2486 | ...xxxx.. 2487 | ......... 2488 | ......... 2489 | ......... 2490 | 2491 | char 129 2492 | width 9 2493 | ......... 2494 | ......... 2495 | ......... 2496 | ......... 2497 | ......... 2498 | ......... 2499 | ......... 2500 | ......... 2501 | ......... 2502 | ......... 2503 | ......... 2504 | ......... 2505 | ......... 2506 | ......... 2507 | ......... 2508 | ......... 2509 | 2510 | char 130 2511 | width 9 2512 | ......... 2513 | ......... 2514 | ......... 2515 | ......... 2516 | ......... 2517 | ......... 2518 | ......... 2519 | ......... 2520 | ......... 2521 | ......... 2522 | ......... 2523 | ...xxx... 2524 | ...xx.... 2525 | ..xx..... 2526 | ......... 2527 | ......... 2528 | 2529 | char 131 2530 | width 9 2531 | ......... 2532 | ......... 2533 | ......... 2534 | ......xx. 2535 | .....xx.. 2536 | ....xx... 2537 | ....xx... 2538 | ..xxxxxx. 2539 | ...xx.... 2540 | ...xx.... 2541 | ...xx.... 2542 | ..xx..... 2543 | ..xx..... 2544 | ..xx..... 2545 | .xx...... 2546 | xx....... 2547 | 2548 | char 132 2549 | width 9 2550 | ......... 2551 | ......... 2552 | ......... 2553 | ......... 2554 | ......... 2555 | ......... 2556 | ......... 2557 | ......... 2558 | ......... 2559 | ......... 2560 | ......... 2561 | .xxx.xxx. 2562 | .xx..xx.. 2563 | xx..xx... 2564 | ......... 2565 | ......... 2566 | 2567 | char 133 2568 | width 9 2569 | ......... 2570 | ......... 2571 | ......... 2572 | ......... 2573 | ......... 2574 | ......... 2575 | ......... 2576 | ......... 2577 | ......... 2578 | ......... 2579 | ......... 2580 | xx.xx.xx. 2581 | xx.xx.xx. 2582 | ......... 2583 | ......... 2584 | ......... 2585 | 2586 | char 134 2587 | width 9 2588 | ......... 2589 | ......... 2590 | ......... 2591 | ...xx.... 2592 | ...xx.... 2593 | .x.xx.x.. 2594 | xxxxxxxx. 2595 | .x.xx.x.. 2596 | ...xx.... 2597 | ...xx.... 2598 | ...xx.... 2599 | ...xx.... 2600 | ...xx.... 2601 | ...xx.... 2602 | ...x..... 2603 | ......... 2604 | 2605 | char 135 2606 | width 9 2607 | ......... 2608 | ......... 2609 | ......... 2610 | ...xx.... 2611 | ...xx.... 2612 | .x.xx.x.. 2613 | xxxxxxxx. 2614 | .x.xx.x.. 2615 | ...xx.... 2616 | ...xx.... 2617 | .x.xx.x.. 2618 | xxxxxxxx. 2619 | .x.xx.x.. 2620 | ...xx.... 2621 | ...xx.... 2622 | ......... 2623 | 2624 | char 136 2625 | width 9 2626 | ......... 2627 | ...xx.... 2628 | ..xxxx... 2629 | ......... 2630 | ......... 2631 | ......... 2632 | ......... 2633 | ......... 2634 | ......... 2635 | ......... 2636 | ......... 2637 | ......... 2638 | ......... 2639 | ......... 2640 | ......... 2641 | ......... 2642 | 2643 | char 137 2644 | width 9 2645 | ......... 2646 | ......... 2647 | ......... 2648 | .xx..x... 2649 | x.x.x.... 2650 | x.x.x.... 2651 | xx.x..... 2652 | ...x..... 2653 | ..x...... 2654 | ..x.xxxx. 2655 | .x.x.x.x. 2656 | .x.x.x.x. 2657 | x..xxxx.. 2658 | ......... 2659 | ......... 2660 | ......... 2661 | 2662 | char 138 2663 | width 9 2664 | ......... 2665 | ..xxxx... 2666 | ...xx.... 2667 | ......... 2668 | .xxxxxx.. 2669 | xx....xx. 2670 | .xxx..... 2671 | ...xxx... 2672 | .....xx.. 2673 | ......xx. 2674 | xx....xx. 2675 | xx....xx. 2676 | .xxxxxx.. 2677 | ......... 2678 | ......... 2679 | ......... 2680 | 2681 | char 139 2682 | width 9 2683 | ......... 2684 | ......... 2685 | ......... 2686 | ......... 2687 | ......... 2688 | .....xx.. 2689 | ....xx... 2690 | ...xx.... 2691 | ..xx..... 2692 | ..xx..... 2693 | ...xx.... 2694 | ....xx... 2695 | ......... 2696 | ......... 2697 | ......... 2698 | ......... 2699 | 2700 | char 140 2701 | width 9 2702 | ......... 2703 | ......... 2704 | ......... 2705 | ..xxx.xx. 2706 | .xx.xxx.. 2707 | xx..xx... 2708 | xx..xx... 2709 | xx..xxxx. 2710 | xx..xxx.. 2711 | xx..xx... 2712 | xx..xx... 2713 | xx..xxxx. 2714 | .xxxxxx.. 2715 | ......... 2716 | ......... 2717 | ......... 2718 | 2719 | char 141 2720 | width 9 2721 | ......... 2722 | ......... 2723 | ......... 2724 | ......... 2725 | ......... 2726 | ......... 2727 | ......... 2728 | ......... 2729 | ......... 2730 | ......... 2731 | ......... 2732 | ......... 2733 | ......... 2734 | ......... 2735 | ......... 2736 | ......... 2737 | 2738 | char 142 2739 | width 9 2740 | ......... 2741 | ..xxxx... 2742 | ...xx.... 2743 | ......... 2744 | ...xxxxx. 2745 | xxxx.xx.. 2746 | .....x... 2747 | ...xxx... 2748 | ...x..... 2749 | ..xx..... 2750 | ..x...... 2751 | .xx.xxxx. 2752 | xxxxx.... 2753 | ......... 2754 | ......... 2755 | ......... 2756 | 2757 | char 143 2758 | width 9 2759 | ......... 2760 | ......... 2761 | ......... 2762 | ......... 2763 | ......... 2764 | ......... 2765 | ......... 2766 | ......... 2767 | ......... 2768 | ......... 2769 | ......... 2770 | ......... 2771 | ......... 2772 | ......... 2773 | ......... 2774 | ......... 2775 | 2776 | char 144 2777 | width 9 2778 | ......... 2779 | ......... 2780 | ......... 2781 | ......... 2782 | ......... 2783 | ......... 2784 | ......... 2785 | ......... 2786 | ......... 2787 | ......... 2788 | ......... 2789 | ......... 2790 | ......... 2791 | ......... 2792 | ......... 2793 | ......... 2794 | 2795 | char 145 2796 | width 9 2797 | ......... 2798 | ......... 2799 | ......... 2800 | ....xx... 2801 | ...xx.... 2802 | ..xxx.... 2803 | ......... 2804 | ......... 2805 | ......... 2806 | ......... 2807 | ......... 2808 | ......... 2809 | ......... 2810 | ......... 2811 | ......... 2812 | ......... 2813 | 2814 | char 146 2815 | width 9 2816 | ......... 2817 | ......... 2818 | ......... 2819 | ...xxx... 2820 | ...xx.... 2821 | ..xx..... 2822 | ......... 2823 | ......... 2824 | ......... 2825 | ......... 2826 | ......... 2827 | ......... 2828 | ......... 2829 | ......... 2830 | ......... 2831 | ......... 2832 | 2833 | char 147 2834 | width 9 2835 | ......... 2836 | ......... 2837 | ......... 2838 | ..xx..xx. 2839 | .xx..xx.. 2840 | xxx.xxx.. 2841 | ......... 2842 | ......... 2843 | ......... 2844 | ......... 2845 | ......... 2846 | ......... 2847 | ......... 2848 | ......... 2849 | ......... 2850 | ......... 2851 | 2852 | char 148 2853 | width 9 2854 | ......... 2855 | ......... 2856 | ......... 2857 | .xxx.xxx. 2858 | .xx..xx.. 2859 | xx..xx... 2860 | ......... 2861 | ......... 2862 | ......... 2863 | ......... 2864 | ......... 2865 | ......... 2866 | ......... 2867 | ......... 2868 | ......... 2869 | ......... 2870 | 2871 | char 149 2872 | width 9 2873 | ......... 2874 | ......... 2875 | ......... 2876 | ......... 2877 | ......... 2878 | ......... 2879 | ...xx.... 2880 | ..xxxx... 2881 | ..xxxx... 2882 | ..xxxx... 2883 | ...xx.... 2884 | ......... 2885 | ......... 2886 | ......... 2887 | ......... 2888 | ......... 2889 | 2890 | char 150 2891 | width 9 2892 | ......... 2893 | ......... 2894 | ......... 2895 | ......... 2896 | ......... 2897 | ......... 2898 | ......... 2899 | ......... 2900 | .xxxxxx.. 2901 | ......... 2902 | ......... 2903 | ......... 2904 | ......... 2905 | ......... 2906 | ......... 2907 | ......... 2908 | 2909 | char 151 2910 | width 9 2911 | ......... 2912 | ......... 2913 | ......... 2914 | ......... 2915 | ......... 2916 | ......... 2917 | ......... 2918 | ......... 2919 | xxxxxxxx. 2920 | ......... 2921 | ......... 2922 | ......... 2923 | ......... 2924 | ......... 2925 | ......... 2926 | ......... 2927 | 2928 | char 152 2929 | width 9 2930 | ......... 2931 | ..xxx.x.. 2932 | .x.xxx... 2933 | ......... 2934 | ......... 2935 | ......... 2936 | ......... 2937 | ......... 2938 | ......... 2939 | ......... 2940 | ......... 2941 | ......... 2942 | ......... 2943 | ......... 2944 | ......... 2945 | ......... 2946 | 2947 | char 153 2948 | width 9 2949 | ......... 2950 | ......... 2951 | ......... 2952 | ..xxx..x. 2953 | xxx.xxxx. 2954 | ..x.xx.x. 2955 | ..x.x..x. 2956 | ..x.x..x. 2957 | ......... 2958 | ......... 2959 | ......... 2960 | ......... 2961 | ......... 2962 | ......... 2963 | ......... 2964 | ......... 2965 | 2966 | char 154 2967 | width 9 2968 | ......... 2969 | ......... 2970 | ......... 2971 | ..xxxx... 2972 | ...xx.... 2973 | ......... 2974 | .xxxxxx.. 2975 | xx....xx. 2976 | .xxx..... 2977 | ...xxxx.. 2978 | ......xx. 2979 | xx....xx. 2980 | .xxxxxx.. 2981 | ......... 2982 | ......... 2983 | ......... 2984 | 2985 | char 155 2986 | width 9 2987 | ......... 2988 | ......... 2989 | ......... 2990 | ......... 2991 | ......... 2992 | ......... 2993 | ..xx..... 2994 | ...xx.... 2995 | ....xx... 2996 | ....xx... 2997 | ...xx.... 2998 | ..xx..... 2999 | .xx...... 3000 | ......... 3001 | ......... 3002 | ......... 3003 | 3004 | char 156 3005 | width 9 3006 | ......... 3007 | ......... 3008 | ......... 3009 | ......... 3010 | ......... 3011 | ......... 3012 | ..xxxxx.. 3013 | .xxxx.xx. 3014 | xx.xxxx.. 3015 | xx.xxx... 3016 | xx.xx.... 3017 | xx.xx.xx. 3018 | .xxxxxx.. 3019 | ......... 3020 | ......... 3021 | ......... 3022 | 3023 | char 157 3024 | width 9 3025 | ......... 3026 | ......... 3027 | ......... 3028 | ......... 3029 | ......... 3030 | ......... 3031 | ......... 3032 | ......... 3033 | ......... 3034 | ......... 3035 | ......... 3036 | ......... 3037 | ......... 3038 | ......... 3039 | ......... 3040 | ......... 3041 | 3042 | char 158 3043 | width 9 3044 | ......... 3045 | ......... 3046 | ......... 3047 | ..xxxx... 3048 | ...xx.... 3049 | ......... 3050 | xxxxxxxx. 3051 | .....xx.. 3052 | ....xx... 3053 | ...xx.... 3054 | ..xx..... 3055 | .xx...... 3056 | xxxxxxxx. 3057 | ......... 3058 | ......... 3059 | ......... 3060 | 3061 | char 159 3062 | width 9 3063 | ......... 3064 | .xx..xx.. 3065 | .xx..xx.. 3066 | ......... 3067 | xx....xx. 3068 | xx....xx. 3069 | .xx..xx.. 3070 | .xx..xx.. 3071 | ..xxxx... 3072 | ...xx.... 3073 | ...xx.... 3074 | ...xx.... 3075 | ...xx.... 3076 | ......... 3077 | ......... 3078 | ......... 3079 | 3080 | char 160 3081 | width 9 3082 | ......... 3083 | ......... 3084 | ......... 3085 | ......... 3086 | ......... 3087 | ......... 3088 | ......... 3089 | ......... 3090 | ......... 3091 | ......... 3092 | ......... 3093 | ......... 3094 | ......... 3095 | ......... 3096 | ......... 3097 | ......... 3098 | 3099 | char 161 3100 | width 9 3101 | ......... 3102 | ......... 3103 | ......... 3104 | ...xx.... 3105 | ...xx.... 3106 | ......... 3107 | ...xx.... 3108 | ...xx.... 3109 | ...xx.... 3110 | ...xx.... 3111 | ...xx.... 3112 | ...xx.... 3113 | ...xx.... 3114 | ......... 3115 | ......... 3116 | ......... 3117 | 3118 | char 162 3119 | width 9 3120 | ......... 3121 | ......... 3122 | ......... 3123 | ......... 3124 | ....x.... 3125 | ....x.... 3126 | ...xxxx.. 3127 | ..xxx.xx. 3128 | .xx.x.... 3129 | xx..x.... 3130 | xx..x.... 3131 | xx..x.xx. 3132 | .xxxxxx.. 3133 | ....x.... 3134 | ....x.... 3135 | ......... 3136 | 3137 | char 163 3138 | width 9 3139 | ......... 3140 | ......... 3141 | ......... 3142 | ...xxx... 3143 | ..xx.xx.. 3144 | .xx...... 3145 | .xx...... 3146 | xxxxx.... 3147 | .xx...... 3148 | .xx...... 3149 | .xx...... 3150 | xxxxx.xx. 3151 | xx..xxx.. 3152 | ......... 3153 | ......... 3154 | ......... 3155 | 3156 | char 164 3157 | width 9 3158 | ......... 3159 | ......... 3160 | ......... 3161 | ......... 3162 | xx.xx.xx. 3163 | xxxxxxxx. 3164 | .xx..xx.. 3165 | xx....xx. 3166 | xx....xx. 3167 | .xx..xx.. 3168 | xxxxxxxx. 3169 | xx.xx.xx. 3170 | ......... 3171 | ......... 3172 | ......... 3173 | ......... 3174 | 3175 | char 165 3176 | width 9 3177 | ......... 3178 | ......... 3179 | ......... 3180 | xx....xx. 3181 | xx....xx. 3182 | .xx..xx.. 3183 | .xx..xx.. 3184 | ..xxxx... 3185 | xxxxxxxx. 3186 | ...xx.... 3187 | xxxxxxxx. 3188 | ...xx.... 3189 | ...xx.... 3190 | ...xx.... 3191 | ......... 3192 | ......... 3193 | 3194 | char 166 3195 | width 9 3196 | ......... 3197 | ......... 3198 | ...xx.... 3199 | ...xx.... 3200 | ...xx.... 3201 | ...xx.... 3202 | ...xx.... 3203 | ......... 3204 | ......... 3205 | ...xx.... 3206 | ...xx.... 3207 | ...xx.... 3208 | ...xx.... 3209 | ...xx.... 3210 | ......... 3211 | ......... 3212 | 3213 | char 167 3214 | width 9 3215 | ......... 3216 | ......... 3217 | ......... 3218 | .xxxxxx.. 3219 | xx....xx. 3220 | xx....... 3221 | .xxx..... 3222 | .xxxxx... 3223 | xx...xx.. 3224 | xx....xx. 3225 | .xxx..xx. 3226 | ...xxxx.. 3227 | .....xx.. 3228 | ......xx. 3229 | xx....xx. 3230 | .xxxxxx.. 3231 | 3232 | char 168 3233 | width 9 3234 | ......... 3235 | .xx..xx.. 3236 | .xx..xx.. 3237 | ......... 3238 | ......... 3239 | ......... 3240 | ......... 3241 | ......... 3242 | ......... 3243 | ......... 3244 | ......... 3245 | ......... 3246 | ......... 3247 | ......... 3248 | ......... 3249 | ......... 3250 | 3251 | char 169 3252 | width 9 3253 | ......... 3254 | ......... 3255 | ......... 3256 | ..xxxxx.. 3257 | .xx...xx. 3258 | xx.....x. 3259 | x..xxx.x. 3260 | x.x....x. 3261 | x.x....x. 3262 | x.xxxx.x. 3263 | x.....xx. 3264 | xx...xx.. 3265 | .xxxxx... 3266 | ......... 3267 | ......... 3268 | ......... 3269 | 3270 | char 170 3271 | width 9 3272 | ......... 3273 | ......... 3274 | ......... 3275 | ..xxxx... 3276 | .....xx.. 3277 | ...xxxx.. 3278 | .xx..xx.. 3279 | .xx.xxx.. 3280 | ..xx.xx.. 3281 | ......... 3282 | .xxxxxx.. 3283 | ......... 3284 | ......... 3285 | ......... 3286 | ......... 3287 | ......... 3288 | 3289 | char 171 3290 | width 9 3291 | ......... 3292 | ......... 3293 | ......... 3294 | ......... 3295 | ......... 3296 | ......xx. 3297 | ..xx.xx.. 3298 | .xx.xx... 3299 | xx.xx.... 3300 | xx.xx.... 3301 | .xx.xx... 3302 | ..xx.xx.. 3303 | ......... 3304 | ......... 3305 | ......... 3306 | ......... 3307 | 3308 | char 172 3309 | width 9 3310 | ......... 3311 | ......... 3312 | ......... 3313 | ......... 3314 | ......... 3315 | ......... 3316 | ......... 3317 | .xxxxxx.. 3318 | .....xx.. 3319 | .....xx.. 3320 | ......... 3321 | ......... 3322 | ......... 3323 | ......... 3324 | ......... 3325 | ......... 3326 | 3327 | char 173 3328 | width 9 3329 | ......... 3330 | ......... 3331 | ......... 3332 | ......... 3333 | ......... 3334 | ......... 3335 | ......... 3336 | ......... 3337 | .xxxxxx.. 3338 | ......... 3339 | ......... 3340 | ......... 3341 | ......... 3342 | ......... 3343 | ......... 3344 | ......... 3345 | 3346 | char 174 3347 | width 9 3348 | ......... 3349 | ......... 3350 | ......... 3351 | ..xxxxx.. 3352 | .xx...xx. 3353 | xx.....x. 3354 | x..xxx.x. 3355 | x.x..x.x. 3356 | x.xxx..x. 3357 | x.x..x.x. 3358 | x.....xx. 3359 | xx...xx.. 3360 | .xxxxx... 3361 | ......... 3362 | ......... 3363 | ......... 3364 | 3365 | char 175 3366 | width 9 3367 | ......... 3368 | .xxxxxx.. 3369 | ......... 3370 | ......... 3371 | ......... 3372 | ......... 3373 | ......... 3374 | ......... 3375 | ......... 3376 | ......... 3377 | ......... 3378 | ......... 3379 | ......... 3380 | ......... 3381 | ......... 3382 | ......... 3383 | 3384 | char 176 3385 | width 9 3386 | ......... 3387 | ......... 3388 | ......... 3389 | ..xxxx... 3390 | .xx..xx.. 3391 | .xx..xx.. 3392 | ..xxxx... 3393 | ......... 3394 | ......... 3395 | ......... 3396 | ......... 3397 | ......... 3398 | ......... 3399 | ......... 3400 | ......... 3401 | ......... 3402 | 3403 | char 177 3404 | width 9 3405 | ......... 3406 | ......... 3407 | ......... 3408 | ......... 3409 | ...xx.... 3410 | ...xx.... 3411 | .xxxxxx.. 3412 | ...xx.... 3413 | ...xx.... 3414 | ......... 3415 | ......... 3416 | .xxxxxx.. 3417 | ......... 3418 | ......... 3419 | ......... 3420 | ......... 3421 | 3422 | char 178 3423 | width 9 3424 | ......... 3425 | ......... 3426 | ......... 3427 | ..xxxx... 3428 | .xx..xx.. 3429 | ....xx... 3430 | ...xx.... 3431 | ..xx..x.. 3432 | .xxxxxx.. 3433 | ......... 3434 | ......... 3435 | ......... 3436 | ......... 3437 | ......... 3438 | ......... 3439 | ......... 3440 | 3441 | char 179 3442 | width 9 3443 | ......... 3444 | ......... 3445 | ......... 3446 | .xxxxxx.. 3447 | .x..xx... 3448 | ...xxx... 3449 | .....xx.. 3450 | .xx..xx.. 3451 | ..xxxx... 3452 | ......... 3453 | ......... 3454 | ......... 3455 | ......... 3456 | ......... 3457 | ......... 3458 | ......... 3459 | 3460 | char 180 3461 | width 9 3462 | ......... 3463 | ....xx... 3464 | ...xx.... 3465 | ..xx..... 3466 | ......... 3467 | ......... 3468 | ......... 3469 | ......... 3470 | ......... 3471 | ......... 3472 | ......... 3473 | ......... 3474 | ......... 3475 | ......... 3476 | ......... 3477 | ......... 3478 | 3479 | char 181 3480 | width 9 3481 | ......... 3482 | ......... 3483 | ......... 3484 | ......... 3485 | ......... 3486 | ......... 3487 | .xx...xx. 3488 | .xx...xx. 3489 | .xx...xx. 3490 | .xx...xx. 3491 | .xx..xxx. 3492 | .xx.xxxx. 3493 | .xxxx.x.. 3494 | .xx...... 3495 | .xx...... 3496 | xxx...... 3497 | 3498 | char 182 3499 | width 9 3500 | ......... 3501 | ......... 3502 | ......... 3503 | .xxxx.... 3504 | xxxxxx... 3505 | xxxxxxxx. 3506 | xxxxx.xx. 3507 | .xxxx.xx. 3508 | ..xxx.xx. 3509 | ...xx.xx. 3510 | ...xx.xx. 3511 | ...xx.xx. 3512 | ...xx.xx. 3513 | ...xx.xx. 3514 | ...xx.xx. 3515 | ...xx.xx. 3516 | 3517 | char 183 3518 | width 9 3519 | ......... 3520 | ......... 3521 | ......... 3522 | ......... 3523 | ......... 3524 | ......... 3525 | ......... 3526 | ...xx.... 3527 | ...xx.... 3528 | ......... 3529 | ......... 3530 | ......... 3531 | ......... 3532 | ......... 3533 | ......... 3534 | ......... 3535 | 3536 | char 184 3537 | width 9 3538 | ......... 3539 | ......... 3540 | ......... 3541 | ......... 3542 | ......... 3543 | ......... 3544 | ......... 3545 | ......... 3546 | ......... 3547 | ......... 3548 | ......... 3549 | ......... 3550 | ......... 3551 | ...xx.... 3552 | ....xx... 3553 | ..xxx.... 3554 | 3555 | char 185 3556 | width 9 3557 | ......... 3558 | ......... 3559 | ......... 3560 | ...xx.... 3561 | ..xxx.... 3562 | .xxxx.... 3563 | ...xx.... 3564 | ...xx.... 3565 | ...xx.... 3566 | ......... 3567 | ......... 3568 | ......... 3569 | ......... 3570 | ......... 3571 | ......... 3572 | ......... 3573 | 3574 | char 186 3575 | width 9 3576 | ......... 3577 | ......... 3578 | ......... 3579 | ...xxx... 3580 | ..xx.xx.. 3581 | .xx..xx.. 3582 | .xx..xx.. 3583 | .xx.xx... 3584 | ..xxx.... 3585 | ......... 3586 | .xxxxxx.. 3587 | ......... 3588 | ......... 3589 | ......... 3590 | ......... 3591 | ......... 3592 | 3593 | char 187 3594 | width 9 3595 | ......... 3596 | ......... 3597 | ......... 3598 | ......... 3599 | ......... 3600 | ......... 3601 | .xx.xx... 3602 | ..xx.xx.. 3603 | ...xx.xx. 3604 | ...xx.xx. 3605 | ..xx.xx.. 3606 | .xx.xx... 3607 | xx....... 3608 | ......... 3609 | ......... 3610 | ......... 3611 | 3612 | char 188 3613 | width 9 3614 | ......... 3615 | .xx...... 3616 | xxx...... 3617 | .xx...... 3618 | .xx....x. 3619 | .xx...xx. 3620 | .xx..xx.. 3621 | ....xx... 3622 | ...xx.... 3623 | ..xx..... 3624 | .xx..xx.. 3625 | xx..xxx.. 3626 | ...x.xx.. 3627 | ...x.xxx. 3628 | ...xxxx.. 3629 | .....xx.. 3630 | 3631 | char 189 3632 | width 9 3633 | ......... 3634 | .xx...... 3635 | xxx...... 3636 | .xx...... 3637 | .xx....x. 3638 | .xx...xx. 3639 | .xx..xx.. 3640 | ....xx... 3641 | ...xx.... 3642 | ..xx..... 3643 | .xx.xxx.. 3644 | xx.xx.xx. 3645 | ......xx. 3646 | .....xx.. 3647 | ....xx.x. 3648 | ...xxxxx. 3649 | 3650 | char 190 3651 | width 9 3652 | ......... 3653 | xxxxx.... 3654 | x..x..... 3655 | ..xx..... 3656 | ...xx..x. 3657 | xx.xx.xx. 3658 | .xxx.xx.. 3659 | ....xx... 3660 | ...xx.... 3661 | ..xx..... 3662 | .xx..xx.. 3663 | xx..xxx.. 3664 | ...x.xx.. 3665 | ...x.xxx. 3666 | ...xxxx.. 3667 | .....xx.. 3668 | 3669 | char 191 3670 | width 9 3671 | ......... 3672 | ......... 3673 | ......... 3674 | ......... 3675 | ......... 3676 | ......... 3677 | ....xx... 3678 | ....xx... 3679 | ......... 3680 | ....xx... 3681 | ....xx... 3682 | ...xx.... 3683 | ..xx..... 3684 | .xx...xx. 3685 | xx...xx.. 3686 | .xxxxx... 3687 | 3688 | char 192 3689 | width 9 3690 | ......... 3691 | ..xx..... 3692 | ...xx.... 3693 | ......... 3694 | ...xx.... 3695 | ..xxxx... 3696 | ..x..x... 3697 | .xx..xx.. 3698 | .xx.xxx.. 3699 | .xxxx.x.. 3700 | xxx...xx. 3701 | xx....xx. 3702 | xx....xx. 3703 | ......... 3704 | ......... 3705 | ......... 3706 | 3707 | char 193 3708 | width 9 3709 | ......... 3710 | ....xx... 3711 | ...xx.... 3712 | ......... 3713 | ...xx.... 3714 | ..xxxx... 3715 | ..x..x... 3716 | .xx..xx.. 3717 | .xx.xxx.. 3718 | .xxxx.x.. 3719 | xxx...xx. 3720 | xx....xx. 3721 | xx....xx. 3722 | ......... 3723 | ......... 3724 | ......... 3725 | 3726 | char 194 3727 | width 9 3728 | ......... 3729 | ...xx.... 3730 | ..xxxx... 3731 | ......... 3732 | ...xx.... 3733 | ..xxxx... 3734 | ..x..x... 3735 | .xx..xx.. 3736 | .xx.xxx.. 3737 | .xxxx.x.. 3738 | xxx...xx. 3739 | xx....xx. 3740 | xx....xx. 3741 | ......... 3742 | ......... 3743 | ......... 3744 | 3745 | char 195 3746 | width 9 3747 | ......... 3748 | ..xxx.x.. 3749 | .x.xxx... 3750 | ......... 3751 | ...xx.... 3752 | ..xxxx... 3753 | ..x..x... 3754 | .xx..xx.. 3755 | .xx.xxx.. 3756 | .xxxx.x.. 3757 | xxx...xx. 3758 | xx....xx. 3759 | xx....xx. 3760 | ......... 3761 | ......... 3762 | ......... 3763 | 3764 | char 196 3765 | width 9 3766 | ......... 3767 | .xx..xx.. 3768 | .xx..xx.. 3769 | ......... 3770 | ...xx.... 3771 | ..xxxx... 3772 | ..x..x... 3773 | .xx..xx.. 3774 | .xx.xxx.. 3775 | .xxxx.x.. 3776 | xxx...xx. 3777 | xx....xx. 3778 | xx....xx. 3779 | ......... 3780 | ......... 3781 | ......... 3782 | 3783 | char 197 3784 | width 9 3785 | ......... 3786 | ...xx.... 3787 | ..x..x... 3788 | ..x..x... 3789 | ...xx.... 3790 | ..xxxx... 3791 | ..x..x... 3792 | .xx..xx.. 3793 | .xx.xxx.. 3794 | .xxxx.x.. 3795 | xxx...xx. 3796 | xx....xx. 3797 | xx....xx. 3798 | ......... 3799 | ......... 3800 | ......... 3801 | 3802 | char 198 3803 | width 9 3804 | ......... 3805 | ......... 3806 | ......... 3807 | ...xx.xx. 3808 | ...xxxx.. 3809 | ..xxxx... 3810 | ..x.xx... 3811 | .xx.xxxx. 3812 | .xx.xxx.. 3813 | .xxxxx... 3814 | xxx.xx... 3815 | xx..xxxx. 3816 | xx..xxx.. 3817 | ......... 3818 | ......... 3819 | ......... 3820 | 3821 | char 199 3822 | width 9 3823 | ......... 3824 | ......... 3825 | ......... 3826 | ...xxxx.. 3827 | ..xx..xx. 3828 | .xx...... 3829 | xx....... 3830 | xx....... 3831 | xx....... 3832 | xx....... 3833 | xx....... 3834 | .xx...xx. 3835 | ..xxxxx.. 3836 | ...xx.... 3837 | ....xx... 3838 | ..xxx.... 3839 | 3840 | char 200 3841 | width 9 3842 | ......... 3843 | ..xx..... 3844 | ...xx.... 3845 | ......... 3846 | ....xxxx. 3847 | .xxxx.... 3848 | .xx...... 3849 | .xx.xxxx. 3850 | .xxxx.... 3851 | .xx...... 3852 | .xx...... 3853 | .xx.xxxx. 3854 | .xxxx.... 3855 | ......... 3856 | ......... 3857 | ......... 3858 | 3859 | char 201 3860 | width 9 3861 | ......... 3862 | ....xx... 3863 | ...xx.... 3864 | ......... 3865 | ....xxxx. 3866 | .xxxx.... 3867 | .xx...... 3868 | .xx.xxxx. 3869 | .xxxx.... 3870 | .xx...... 3871 | .xx...... 3872 | .xx.xxxx. 3873 | .xxxx.... 3874 | ......... 3875 | ......... 3876 | ......... 3877 | 3878 | char 202 3879 | width 9 3880 | ......... 3881 | ...xx.... 3882 | ..xxxx... 3883 | ......... 3884 | ....xxxx. 3885 | .xxxx.... 3886 | .xx...... 3887 | .xx.xxxx. 3888 | .xxxx.... 3889 | .xx...... 3890 | .xx...... 3891 | .xx.xxxx. 3892 | .xxxx.... 3893 | ......... 3894 | ......... 3895 | ......... 3896 | 3897 | char 203 3898 | width 9 3899 | ......... 3900 | .xx..xx.. 3901 | .xx..xx.. 3902 | ......... 3903 | ....xxxx. 3904 | .xxxx.... 3905 | .xx...... 3906 | .xx.xxxx. 3907 | .xxxx.... 3908 | .xx...... 3909 | .xx...... 3910 | .xx.xxxx. 3911 | .xxxx.... 3912 | ......... 3913 | ......... 3914 | ......... 3915 | 3916 | char 204 3917 | width 9 3918 | ......... 3919 | ..xx..... 3920 | ...xx.... 3921 | ......... 3922 | ...xxx... 3923 | ..xxx.... 3924 | ...xx.... 3925 | ...xx.... 3926 | ...xx.... 3927 | ...xx.... 3928 | ...xx.... 3929 | ...xxx... 3930 | ..xxx.... 3931 | ......... 3932 | ......... 3933 | ......... 3934 | 3935 | char 205 3936 | width 9 3937 | ......... 3938 | ....xx... 3939 | ...xx.... 3940 | ......... 3941 | ...xxx... 3942 | ..xxx.... 3943 | ...xx.... 3944 | ...xx.... 3945 | ...xx.... 3946 | ...xx.... 3947 | ...xx.... 3948 | ...xxx... 3949 | ..xxx.... 3950 | ......... 3951 | ......... 3952 | ......... 3953 | 3954 | char 206 3955 | width 9 3956 | ......... 3957 | ...xx.... 3958 | ..xxxx... 3959 | ......... 3960 | ...xxx... 3961 | ..xxx.... 3962 | ...xx.... 3963 | ...xx.... 3964 | ...xx.... 3965 | ...xx.... 3966 | ...xx.... 3967 | ...xxx... 3968 | ..xxx.... 3969 | ......... 3970 | ......... 3971 | ......... 3972 | 3973 | char 207 3974 | width 9 3975 | ......... 3976 | .xx..xx.. 3977 | .xx..xx.. 3978 | ......... 3979 | ...xxx... 3980 | ..xxx.... 3981 | ...xx.... 3982 | ...xx.... 3983 | ...xx.... 3984 | ...xx.... 3985 | ...xx.... 3986 | ...xxx... 3987 | ..xxx.... 3988 | ......... 3989 | ......... 3990 | ......... 3991 | 3992 | char 208 3993 | width 9 3994 | ......... 3995 | ......... 3996 | ......... 3997 | .xxxxx... 3998 | .xx..xx.. 3999 | .xx...xx. 4000 | .xx...xx. 4001 | .xx...xx. 4002 | xxxxx.xx. 4003 | .xx...xx. 4004 | .xx..xx.. 4005 | .xx.xx... 4006 | .xxxx.... 4007 | ......... 4008 | ......... 4009 | ......... 4010 | 4011 | char 209 4012 | width 9 4013 | ......... 4014 | ..xxx.x.. 4015 | .x.xxx... 4016 | ......... 4017 | xx....xx. 4018 | xx....xx. 4019 | xxx...xx. 4020 | xxxx..xx. 4021 | xx.x..xx. 4022 | xx.xx.xx. 4023 | xx..xxxx. 4024 | xx...xxx. 4025 | xx....xx. 4026 | ......... 4027 | ......... 4028 | ......... 4029 | 4030 | char 210 4031 | width 9 4032 | ......... 4033 | ..xx..... 4034 | ...xx.... 4035 | ......... 4036 | ..xxxxx.. 4037 | .xx...xx. 4038 | xx....xx. 4039 | xx....xx. 4040 | xx....xx. 4041 | xx....xx. 4042 | xx....xx. 4043 | xx...xx.. 4044 | .xxxxx... 4045 | ......... 4046 | ......... 4047 | ......... 4048 | 4049 | char 211 4050 | width 9 4051 | ......... 4052 | ....xx... 4053 | ...xx.... 4054 | ......... 4055 | ..xxxxx.. 4056 | .xx...xx. 4057 | xx....xx. 4058 | xx....xx. 4059 | xx....xx. 4060 | xx....xx. 4061 | xx....xx. 4062 | xx...xx.. 4063 | .xxxxx... 4064 | ......... 4065 | ......... 4066 | ......... 4067 | 4068 | char 212 4069 | width 9 4070 | ......... 4071 | ...xx.... 4072 | ..xxxx... 4073 | ......... 4074 | ..xxxxx.. 4075 | .xx...xx. 4076 | xx....xx. 4077 | xx....xx. 4078 | xx....xx. 4079 | xx....xx. 4080 | xx....xx. 4081 | xx...xx.. 4082 | .xxxxx... 4083 | ......... 4084 | ......... 4085 | ......... 4086 | 4087 | char 213 4088 | width 9 4089 | ......... 4090 | ..xxx.x.. 4091 | .x.xxx... 4092 | ......... 4093 | ..xxxxx.. 4094 | .xx...xx. 4095 | xx....xx. 4096 | xx....xx. 4097 | xx....xx. 4098 | xx....xx. 4099 | xx....xx. 4100 | xx...xx.. 4101 | .xxxxx... 4102 | ......... 4103 | ......... 4104 | ......... 4105 | 4106 | char 214 4107 | width 9 4108 | ......... 4109 | .xx..xx.. 4110 | .xx..xx.. 4111 | ......... 4112 | ..xxxxx.. 4113 | .xx...xx. 4114 | xx....xx. 4115 | xx....xx. 4116 | xx....xx. 4117 | xx....xx. 4118 | xx....xx. 4119 | xx...xx.. 4120 | .xxxxx... 4121 | ......... 4122 | ......... 4123 | ......... 4124 | 4125 | char 215 4126 | width 9 4127 | ......... 4128 | ......... 4129 | ......... 4130 | ......... 4131 | ......... 4132 | ......... 4133 | .xx..xx.. 4134 | ..xxxx... 4135 | ...xx.... 4136 | ..xxxx... 4137 | .xx..xx.. 4138 | ......... 4139 | ......... 4140 | ......... 4141 | ......... 4142 | ......... 4143 | 4144 | char 216 4145 | width 9 4146 | ......... 4147 | ......... 4148 | .....xx.. 4149 | ..xxxxx.. 4150 | .xx..xxx. 4151 | xx..xxxx. 4152 | xx..x.xx. 4153 | xx.xx.xx. 4154 | xx.x..xx. 4155 | xx.x..xx. 4156 | xxxx..xx. 4157 | xxx..xx.. 4158 | .xxxxx... 4159 | .xx...... 4160 | ......... 4161 | ......... 4162 | 4163 | char 217 4164 | width 9 4165 | ......... 4166 | ..xx..... 4167 | ...xx.... 4168 | ......... 4169 | xx....xx. 4170 | xx....xx. 4171 | xx....xx. 4172 | xx....xx. 4173 | xx....xx. 4174 | xx...xx.. 4175 | xx...xx.. 4176 | xx..xx... 4177 | .xxxx.... 4178 | ......... 4179 | ......... 4180 | ......... 4181 | 4182 | char 218 4183 | width 9 4184 | ......... 4185 | ....xx... 4186 | ...xx.... 4187 | ......... 4188 | xx....xx. 4189 | xx....xx. 4190 | xx....xx. 4191 | xx....xx. 4192 | xx....xx. 4193 | xx...xx.. 4194 | xx...xx.. 4195 | xx..xx... 4196 | .xxxx.... 4197 | ......... 4198 | ......... 4199 | ......... 4200 | 4201 | char 219 4202 | width 9 4203 | ......... 4204 | ...xx.... 4205 | ..xxxx... 4206 | ......... 4207 | xx....xx. 4208 | xx....xx. 4209 | xx....xx. 4210 | xx....xx. 4211 | xx....xx. 4212 | xx...xx.. 4213 | xx...xx.. 4214 | xx..xx... 4215 | .xxxx.... 4216 | ......... 4217 | ......... 4218 | ......... 4219 | 4220 | char 220 4221 | width 9 4222 | ......... 4223 | .xx..xx.. 4224 | .xx..xx.. 4225 | ......... 4226 | xx....xx. 4227 | xx....xx. 4228 | xx....xx. 4229 | xx....xx. 4230 | xx....xx. 4231 | xx...xx.. 4232 | xx...xx.. 4233 | xx..xx... 4234 | .xxxx.... 4235 | ......... 4236 | ......... 4237 | ......... 4238 | 4239 | char 221 4240 | width 9 4241 | ......... 4242 | ....xx... 4243 | ...xx.... 4244 | ......... 4245 | xx....xx. 4246 | xx....xx. 4247 | .xx..xx.. 4248 | .xx..xx.. 4249 | ..xxxx... 4250 | ...xx.... 4251 | ...xx.... 4252 | ...xx.... 4253 | ...xx.... 4254 | ......... 4255 | ......... 4256 | ......... 4257 | 4258 | char 222 4259 | width 9 4260 | ......... 4261 | ......... 4262 | ......... 4263 | xx....... 4264 | xx.xxxx.. 4265 | xxxx..xx. 4266 | xxx...xx. 4267 | xx....xx. 4268 | xx...xx.. 4269 | xx.xxx... 4270 | xxxx..... 4271 | xx....... 4272 | xx....... 4273 | ......... 4274 | ......... 4275 | ......... 4276 | 4277 | char 223 4278 | width 9 4279 | ......... 4280 | ......... 4281 | ......... 4282 | ..xxxx... 4283 | .xx..xx.. 4284 | xx...xx.. 4285 | xx..xx... 4286 | xx.xx.... 4287 | xx.xx.... 4288 | xx..xxx.. 4289 | xx....xx. 4290 | xx.x..xx. 4291 | xx.xxxx.. 4292 | ......... 4293 | ......... 4294 | ......... 4295 | 4296 | char 224 4297 | width 9 4298 | ......... 4299 | ......... 4300 | ......... 4301 | ..xx..... 4302 | ...xx.... 4303 | ......... 4304 | ..xxxxx.. 4305 | .xx...xx. 4306 | ...xxxxx. 4307 | .xxx..xx. 4308 | xx....xx. 4309 | xx..xxxx. 4310 | .xxxx.xx. 4311 | ......... 4312 | ......... 4313 | ......... 4314 | 4315 | char 225 4316 | width 9 4317 | ......... 4318 | ......... 4319 | ......... 4320 | ....xx... 4321 | ...xx.... 4322 | ......... 4323 | ..xxxxx.. 4324 | .xx...xx. 4325 | ...xxxxx. 4326 | .xxx..xx. 4327 | xx....xx. 4328 | xx..xxxx. 4329 | .xxxx.xx. 4330 | ......... 4331 | ......... 4332 | ......... 4333 | 4334 | char 226 4335 | width 9 4336 | ......... 4337 | ......... 4338 | ......... 4339 | ...xx.... 4340 | ..xxxx... 4341 | ......... 4342 | ..xxxxx.. 4343 | .xx...xx. 4344 | ...xxxxx. 4345 | .xxx..xx. 4346 | xx....xx. 4347 | xx..xxxx. 4348 | .xxxx.xx. 4349 | ......... 4350 | ......... 4351 | ......... 4352 | 4353 | char 227 4354 | width 9 4355 | ......... 4356 | ......... 4357 | ......... 4358 | ..xxx.x.. 4359 | .x.xxx... 4360 | ......... 4361 | ..xxxxx.. 4362 | .xx...xx. 4363 | ...xxxxx. 4364 | .xxx..xx. 4365 | xx....xx. 4366 | xx..xxxx. 4367 | .xxxx.xx. 4368 | ......... 4369 | ......... 4370 | ......... 4371 | 4372 | char 228 4373 | width 9 4374 | ......... 4375 | ......... 4376 | ......... 4377 | ..xx.xx.. 4378 | ..xx.xx.. 4379 | ......... 4380 | ..xxxxx.. 4381 | .xx...xx. 4382 | ...xxxxx. 4383 | .xxx..xx. 4384 | xx....xx. 4385 | xx..xxxx. 4386 | .xxxx.xx. 4387 | ......... 4388 | ......... 4389 | ......... 4390 | 4391 | char 229 4392 | width 9 4393 | ......... 4394 | ......... 4395 | ...xx.... 4396 | ..x..x... 4397 | ..x..x... 4398 | ...xx.... 4399 | ..xxxxx.. 4400 | .xx...xx. 4401 | ...xxxxx. 4402 | .xxx..xx. 4403 | xx....xx. 4404 | xx..xxxx. 4405 | .xxxx.xx. 4406 | ......... 4407 | ......... 4408 | ......... 4409 | 4410 | char 230 4411 | width 9 4412 | ......... 4413 | ......... 4414 | ......... 4415 | ......... 4416 | ......... 4417 | ......... 4418 | .xxxxxx.. 4419 | xx.xx.xx. 4420 | ..xxxxx.. 4421 | .xxxxx... 4422 | xx.xx.... 4423 | xx.xx.xx. 4424 | .xxxxxx.. 4425 | ......... 4426 | ......... 4427 | ......... 4428 | 4429 | char 231 4430 | width 9 4431 | ......... 4432 | ......... 4433 | ......... 4434 | ......... 4435 | ......... 4436 | ......... 4437 | ...xxxx.. 4438 | ..xx..xx. 4439 | .xx...... 4440 | xx....... 4441 | xx....... 4442 | xx....xx. 4443 | .xxxxxx.. 4444 | ...xx.... 4445 | ....xx... 4446 | ..xxx.... 4447 | 4448 | char 232 4449 | width 9 4450 | ......... 4451 | ......... 4452 | ......... 4453 | ..xx..... 4454 | ...xx.... 4455 | ......... 4456 | ..xxxxx.. 4457 | .xx...xx. 4458 | xx..xxx.. 4459 | xxxxx.... 4460 | xx....... 4461 | xx....xx. 4462 | .xxxxxx.. 4463 | ......... 4464 | ......... 4465 | ......... 4466 | 4467 | char 233 4468 | width 9 4469 | ......... 4470 | ......... 4471 | ......... 4472 | ....xx... 4473 | ...xx.... 4474 | ......... 4475 | ..xxxxx.. 4476 | .xx...xx. 4477 | xx..xxx.. 4478 | xxxxx.... 4479 | xx....... 4480 | xx....xx. 4481 | .xxxxxx.. 4482 | ......... 4483 | ......... 4484 | ......... 4485 | 4486 | char 234 4487 | width 9 4488 | ......... 4489 | ......... 4490 | ......... 4491 | ...xx.... 4492 | ..xxxx... 4493 | ......... 4494 | ..xxxxx.. 4495 | .xx...xx. 4496 | xx..xxx.. 4497 | xxxxx.... 4498 | xx....... 4499 | xx....xx. 4500 | .xxxxxx.. 4501 | ......... 4502 | ......... 4503 | ......... 4504 | 4505 | char 235 4506 | width 9 4507 | ......... 4508 | ......... 4509 | ......... 4510 | .xx..xx.. 4511 | .xx..xx.. 4512 | ......... 4513 | ..xxxxx.. 4514 | .xx...xx. 4515 | xx..xxx.. 4516 | xxxxx.... 4517 | xx....... 4518 | xx....xx. 4519 | .xxxxxx.. 4520 | ......... 4521 | ......... 4522 | ......... 4523 | 4524 | char 236 4525 | width 9 4526 | ......... 4527 | ......... 4528 | ......... 4529 | ..xx..... 4530 | ...xx.... 4531 | ......... 4532 | ...xx.... 4533 | ...xx.... 4534 | ...xx.... 4535 | ...xx.... 4536 | ...xx.... 4537 | ...xx.... 4538 | ...xx.... 4539 | ......... 4540 | ......... 4541 | ......... 4542 | 4543 | char 237 4544 | width 9 4545 | ......... 4546 | ......... 4547 | ......... 4548 | ....xx... 4549 | ...xx.... 4550 | ......... 4551 | ...xx.... 4552 | ...xx.... 4553 | ...xx.... 4554 | ...xx.... 4555 | ...xx.... 4556 | ...xx.... 4557 | ...xx.... 4558 | ......... 4559 | ......... 4560 | ......... 4561 | 4562 | char 238 4563 | width 9 4564 | ......... 4565 | ......... 4566 | ......... 4567 | ...xx.... 4568 | ..xxxx... 4569 | ......... 4570 | ...xx.... 4571 | ...xx.... 4572 | ...xx.... 4573 | ...xx.... 4574 | ...xx.... 4575 | ...xx.... 4576 | ...xx.... 4577 | ......... 4578 | ......... 4579 | ......... 4580 | 4581 | char 239 4582 | width 9 4583 | ......... 4584 | ......... 4585 | ......... 4586 | .xx..xx.. 4587 | .xx..xx.. 4588 | ......... 4589 | ...xx.... 4590 | ...xx.... 4591 | ...xx.... 4592 | ...xx.... 4593 | ...xx.... 4594 | ...xx.... 4595 | ...xx.... 4596 | ......... 4597 | ......... 4598 | ......... 4599 | 4600 | char 240 4601 | width 9 4602 | ......... 4603 | ......... 4604 | .xx...... 4605 | ..xxxx... 4606 | .xxxx.... 4607 | ....xx... 4608 | ..xxxxx.. 4609 | .xx...xx. 4610 | xx....xx. 4611 | xx....xx. 4612 | xx....xx. 4613 | xx...xx.. 4614 | .xxxxx... 4615 | ......... 4616 | ......... 4617 | ......... 4618 | 4619 | char 241 4620 | width 9 4621 | ......... 4622 | ......... 4623 | ......... 4624 | ..xxx.x.. 4625 | .x.xxx... 4626 | ......... 4627 | xx..xxx.. 4628 | xx.xx.xx. 4629 | xxxx..xx. 4630 | xxx...xx. 4631 | xx....xx. 4632 | xx....xx. 4633 | xx....xx. 4634 | ......... 4635 | ......... 4636 | ......... 4637 | 4638 | char 242 4639 | width 9 4640 | ......... 4641 | ......... 4642 | ......... 4643 | ..xx..... 4644 | ...xx.... 4645 | ......... 4646 | ..xxxxx.. 4647 | .xx...xx. 4648 | xx....xx. 4649 | xx....xx. 4650 | xx....xx. 4651 | xx...xx.. 4652 | .xxxxx... 4653 | ......... 4654 | ......... 4655 | ......... 4656 | 4657 | char 243 4658 | width 9 4659 | ......... 4660 | ......... 4661 | ......... 4662 | ....xx... 4663 | ...xx.... 4664 | ......... 4665 | ..xxxxx.. 4666 | .xx...xx. 4667 | xx....xx. 4668 | xx....xx. 4669 | xx....xx. 4670 | xx...xx.. 4671 | .xxxxx... 4672 | ......... 4673 | ......... 4674 | ......... 4675 | 4676 | char 244 4677 | width 9 4678 | ......... 4679 | ......... 4680 | ......... 4681 | ...xx.... 4682 | ..xxxx... 4683 | ......... 4684 | ..xxxxx.. 4685 | .xx...xx. 4686 | xx....xx. 4687 | xx....xx. 4688 | xx....xx. 4689 | xx...xx.. 4690 | .xxxxx... 4691 | ......... 4692 | ......... 4693 | ......... 4694 | 4695 | char 245 4696 | width 9 4697 | ......... 4698 | ......... 4699 | ......... 4700 | ..xxx.x.. 4701 | .x.xxx... 4702 | ......... 4703 | ..xxxxx.. 4704 | .xx...xx. 4705 | xx....xx. 4706 | xx....xx. 4707 | xx....xx. 4708 | xx...xx.. 4709 | .xxxxx... 4710 | ......... 4711 | ......... 4712 | ......... 4713 | 4714 | char 246 4715 | width 9 4716 | ......... 4717 | ......... 4718 | ......... 4719 | .xx..xx.. 4720 | .xx..xx.. 4721 | ......... 4722 | ..xxxxx.. 4723 | .xx...xx. 4724 | xx....xx. 4725 | xx....xx. 4726 | xx....xx. 4727 | xx...xx.. 4728 | .xxxxx... 4729 | ......... 4730 | ......... 4731 | ......... 4732 | 4733 | char 247 4734 | width 9 4735 | ......... 4736 | ......... 4737 | ......... 4738 | ......... 4739 | ......... 4740 | ...xx.... 4741 | ...xx.... 4742 | ......... 4743 | .xxxxxx.. 4744 | ......... 4745 | ...xx.... 4746 | ...xx.... 4747 | ......... 4748 | ......... 4749 | ......... 4750 | ......... 4751 | 4752 | char 248 4753 | width 9 4754 | ......... 4755 | ......... 4756 | ......... 4757 | ......... 4758 | ......... 4759 | .....xx.. 4760 | ..xxxxx.. 4761 | .xx.xxxx. 4762 | xx..x.xx. 4763 | xx.xx.xx. 4764 | xx.x..xx. 4765 | xxxx.xx.. 4766 | .xxxxx... 4767 | .xx...... 4768 | ......... 4769 | ......... 4770 | 4771 | char 249 4772 | width 9 4773 | ......... 4774 | ......... 4775 | ......... 4776 | ..xx..... 4777 | ...xx.... 4778 | ......... 4779 | xx....xx. 4780 | xx....xx. 4781 | xx....xx. 4782 | xx...xxx. 4783 | xx..xxxx. 4784 | xx.xx.xx. 4785 | .xxx..xx. 4786 | ......... 4787 | ......... 4788 | ......... 4789 | 4790 | char 250 4791 | width 9 4792 | ......... 4793 | ......... 4794 | ......... 4795 | ....xx... 4796 | ...xx.... 4797 | ......... 4798 | xx....xx. 4799 | xx....xx. 4800 | xx....xx. 4801 | xx...xxx. 4802 | xx..xxxx. 4803 | xx.xx.xx. 4804 | .xxx..xx. 4805 | ......... 4806 | ......... 4807 | ......... 4808 | 4809 | char 251 4810 | width 9 4811 | ......... 4812 | ......... 4813 | ......... 4814 | ...xx.... 4815 | ..xxxx... 4816 | ......... 4817 | xx....xx. 4818 | xx....xx. 4819 | xx....xx. 4820 | xx...xxx. 4821 | xx..xxxx. 4822 | xx.xx.xx. 4823 | .xxx..xx. 4824 | ......... 4825 | ......... 4826 | ......... 4827 | 4828 | char 252 4829 | width 9 4830 | ......... 4831 | ......... 4832 | ......... 4833 | .xx..xx.. 4834 | .xx..xx.. 4835 | ......... 4836 | xx....xx. 4837 | xx....xx. 4838 | xx....xx. 4839 | xx...xxx. 4840 | xx..xxxx. 4841 | xx.xx.xx. 4842 | .xxx..xx. 4843 | ......... 4844 | ......... 4845 | ......... 4846 | 4847 | char 253 4848 | width 9 4849 | ......... 4850 | ......... 4851 | ......... 4852 | ....xx... 4853 | ...xx.... 4854 | ......... 4855 | xx....xx. 4856 | xx....xx. 4857 | xx....xx. 4858 | xx....xx. 4859 | xx....xx. 4860 | .xx..xx.. 4861 | ..xxxxx.. 4862 | ....xx... 4863 | xx.xx.... 4864 | .xxx..... 4865 | 4866 | char 254 4867 | width 9 4868 | ......... 4869 | ......... 4870 | ......... 4871 | xx....... 4872 | xx....... 4873 | xx....... 4874 | xx..xxx.. 4875 | xx.xx.xx. 4876 | xxxx..xx. 4877 | xxx...xx. 4878 | xx....xx. 4879 | xx...xx.. 4880 | xxxxxx... 4881 | xx....... 4882 | xx....... 4883 | xx....... 4884 | 4885 | char 255 4886 | width 9 4887 | ......... 4888 | ......... 4889 | ......... 4890 | .xx..xx.. 4891 | .xx..xx.. 4892 | ......... 4893 | xx....xx. 4894 | xx....xx. 4895 | xx....xx. 4896 | xx....xx. 4897 | xx....xx. 4898 | .xx..xx.. 4899 | ..xxxxx.. 4900 | ....xx... 4901 | xx.xx.... 4902 | .xxx..... 4903 | -------------------------------------------------------------------------------- /fonts/tektite16x9oem.fd: -------------------------------------------------------------------------------- 1 | # This is the Tektite font, out of the VFONT utility by clySmic 2 | # Software. It's had the 0 and the * altered and it's been converted 3 | # to Windows font format. 4 | # 5 | # These modifications were done by Simon Tatham, who asserts 6 | # no copyright. 7 | # 8 | # The original VFONT copyright says: 9 | # 10 | # VFONT is copyright 1991, 1993, 1998 by clySmic software, and is 11 | # released as "Freeware". 12 | # 13 | # You may copy the program and distribute it without charge. You may 14 | # not sell or otherwise charge for VFONT. However, users' groups may 15 | # charge a small fee (not to exceed $10) for media and postage. 16 | ######################################################################## 17 | # Feb 2017 - mj.Jernigan 18 | # Reverted some of Simon's changes but added many of my own. 19 | # Improved spacing in both x and y. 20 | # Cleaned up the accented characters with more-readable but 21 | # less-stylized accents. 22 | # Stylized the many non-stylized characters. 23 | # Adjusted the Greek/Sharp-S set to align with IBM description. 24 | # Many smaller tweaks. 25 | ######################################################################## 26 | 27 | # In order to use this as a font in DOS boxes, the facename is 28 | # required to be System, Terminal or Courier. Terminal seems most 29 | # appropriate because that's what it's for; it's not Courier and it's 30 | # certainly not part of the System! 31 | 32 | #facename Terminal 33 | facename Tektite OEM 34 | copyright Portions copyright 1991,1993,1998 clySmic Software. 35 | 36 | pointsize 12 37 | 38 | height 16 39 | ascent 13 40 | inleading 1 41 | exleading 1 42 | 43 | # DOS-box fonts are required to claim an OEM charset. 44 | charset 255 45 | 46 | char 0 47 | width 9 48 | ......... 49 | ......... 50 | ......... 51 | ......... 52 | ......... 53 | ......... 54 | ......... 55 | ......... 56 | ......... 57 | ......... 58 | ......... 59 | ......... 60 | ......... 61 | ......... 62 | ......... 63 | ......... 64 | 65 | char 1 66 | width 9 67 | ......... 68 | ......... 69 | ......... 70 | ..xxxx... 71 | .x....x.. 72 | x......x. 73 | xxx..xxx. 74 | x.x..x.x. 75 | x..xx..x. 76 | x......x. 77 | x..xx..x. 78 | .x....x.. 79 | ..xxxx... 80 | ......... 81 | ......... 82 | ......... 83 | 84 | char 2 85 | width 9 86 | ......... 87 | ......... 88 | ......... 89 | ..xxxx... 90 | .xxxxxx.. 91 | xxxxxxxx. 92 | x..xx..x. 93 | xx.xx.xx. 94 | xxx..xxx. 95 | xxxxxxxx. 96 | xxx..xxx. 97 | .xxxxxx.. 98 | ..xxxx... 99 | ......... 100 | ......... 101 | ......... 102 | 103 | char 3 104 | width 9 105 | ......... 106 | ......... 107 | ......... 108 | ......... 109 | ......... 110 | .xx..xx.. 111 | xxxxxxxx. 112 | xxxxxxxx. 113 | xxxxxxxx. 114 | xxxxxxxx. 115 | .xxxxxx.. 116 | ..xxxx... 117 | ...xx.... 118 | ......... 119 | ......... 120 | ......... 121 | 122 | char 4 123 | width 9 124 | ......... 125 | ......... 126 | ......... 127 | ......... 128 | ......... 129 | ...xx.... 130 | ..xxxx... 131 | .xxxxxx.. 132 | xxxxxxxx. 133 | .xxxxxx.. 134 | ..xxxx... 135 | ...xx.... 136 | ......... 137 | ......... 138 | ......... 139 | ......... 140 | 141 | char 5 142 | width 9 143 | ......... 144 | ......... 145 | ......... 146 | ......... 147 | ...xx.... 148 | ..xxxx... 149 | ..xxxx... 150 | .x.xx.x.. 151 | xxxxxxxx. 152 | xxxxxxxx. 153 | .x.xx.x.. 154 | ...xx.... 155 | ..xxxx... 156 | ......... 157 | ......... 158 | ......... 159 | 160 | char 6 161 | width 9 162 | ......... 163 | ......... 164 | ......... 165 | ......... 166 | ...xx.... 167 | ..xxxx... 168 | .xxxxxx.. 169 | xxxxxxxx. 170 | xxxxxxxx. 171 | xxxxxxxx. 172 | .x.xx.x.. 173 | ...xx.... 174 | ..xxxx... 175 | ......... 176 | ......... 177 | ......... 178 | 179 | char 7 180 | width 9 181 | ......... 182 | ......... 183 | ......... 184 | ......... 185 | ......... 186 | ......... 187 | ...xx.... 188 | ..xxxx... 189 | ..xxxx... 190 | ...xx.... 191 | ......... 192 | ......... 193 | ......... 194 | ......... 195 | ......... 196 | ......... 197 | 198 | char 8 199 | width 9 200 | ......... 201 | xxxxxxxx. 202 | xxxxxxxx. 203 | xxxxxxxx. 204 | xxxxxxxx. 205 | xxxxxxxx. 206 | xxx..xxx. 207 | xx....xx. 208 | xx....xx. 209 | xxx..xxx. 210 | xxxxxxxx. 211 | xxxxxxxx. 212 | xxxxxxxx. 213 | xxxxxxxx. 214 | xxxxxxxx. 215 | xxxxxxxx. 216 | 217 | char 9 218 | width 9 219 | ......... 220 | ......... 221 | ......... 222 | ......... 223 | ......... 224 | ..xxxx... 225 | .xx..xx.. 226 | .x....x.. 227 | .x....x.. 228 | .xx..xx.. 229 | ..xxxx... 230 | ......... 231 | ......... 232 | ......... 233 | ......... 234 | ......... 235 | 236 | char 10 237 | width 9 238 | ......... 239 | xxxxxxxx. 240 | xxxxxxxx. 241 | xxxxxxxx. 242 | xxxxxxxx. 243 | xx....xx. 244 | x..xx..x. 245 | x.xxxx.x. 246 | x.xxxx.x. 247 | x..xx..x. 248 | xx....xx. 249 | xxxxxxxx. 250 | xxxxxxxx. 251 | xxxxxxxx. 252 | xxxxxxxx. 253 | xxxxxxxx. 254 | 255 | char 11 256 | width 9 257 | ......... 258 | ......... 259 | ......... 260 | ....xxxx. 261 | .....xxx. 262 | ....xx.x. 263 | ...xx.... 264 | ..xxxxx.. 265 | .xx...xx. 266 | xx....xx. 267 | xx....xx. 268 | xx...xx.. 269 | .xxxxx... 270 | ......... 271 | ......... 272 | ......... 273 | 274 | char 12 275 | width 9 276 | ......... 277 | ......... 278 | ......... 279 | ..xxxxx.. 280 | .xx...xx. 281 | xx....xx. 282 | xx....xx. 283 | xx...xx.. 284 | .xxxxx... 285 | ...xx.... 286 | ...xxxx.. 287 | .xxxx.... 288 | ...xx.... 289 | ......... 290 | ......... 291 | ......... 292 | 293 | char 13 294 | width 9 295 | ......... 296 | ......... 297 | ......... 298 | ....x.... 299 | ....xx... 300 | ....xxx.. 301 | ....x.xx. 302 | ....x.... 303 | ....x.... 304 | ....x.... 305 | .xxxx.... 306 | xxxxx.... 307 | .xxx..... 308 | ......... 309 | ......... 310 | ......... 311 | 312 | char 14 313 | width 9 314 | ......... 315 | ......... 316 | ...x..... 317 | ...xx.... 318 | ...xxx... 319 | ...x.xx.. 320 | ...xx.x.. 321 | ...x.xx.. 322 | ...x..x.. 323 | .xxx..x.. 324 | xxxx..x.. 325 | .xx...x.. 326 | ....xxx.. 327 | ...xxxx.. 328 | ....xx... 329 | ......... 330 | 331 | char 15 332 | width 9 333 | ......... 334 | ......... 335 | ......... 336 | ...xx.... 337 | ...xx.... 338 | xx.xx.xx. 339 | .xxxxxx.. 340 | ..xxxx... 341 | xxxxxxxx. 342 | ..xxxx... 343 | .xxxxxx.. 344 | xx.xx.xx. 345 | ...xx.... 346 | ...xx.... 347 | ......... 348 | ......... 349 | 350 | char 16 351 | width 9 352 | ......... 353 | ......... 354 | ......... 355 | .xx...... 356 | .xxx..... 357 | .xxxx.... 358 | .xxxxx... 359 | .xxxxxx.. 360 | .xxxxxx.. 361 | .xxxxx... 362 | .xxxx.... 363 | .xxx..... 364 | .xx...... 365 | ......... 366 | ......... 367 | ......... 368 | 369 | char 17 370 | width 9 371 | ......... 372 | ......... 373 | ......... 374 | .....xx.. 375 | ....xxx.. 376 | ...xxxx.. 377 | ..xxxxx.. 378 | .xxxxxx.. 379 | .xxxxxx.. 380 | ..xxxxx.. 381 | ...xxxx.. 382 | ....xxx.. 383 | .....xx.. 384 | ......... 385 | ......... 386 | ......... 387 | 388 | char 18 389 | width 9 390 | ......... 391 | ......... 392 | ......... 393 | ...x..... 394 | ..xxx.... 395 | .xxxxx... 396 | xxxxxxx.. 397 | ..xxx.... 398 | ..xxx.... 399 | ..xxx.... 400 | ..xxx.... 401 | xxxxxxx.. 402 | .xxxxx... 403 | ..xxx.... 404 | ...x..... 405 | ......... 406 | 407 | char 19 408 | width 9 409 | ......... 410 | ......... 411 | ......... 412 | .xx..xx.. 413 | .xx..xx.. 414 | .xx..xx.. 415 | .xx..xx.. 416 | .xx..xx.. 417 | .xx..xx.. 418 | .xx..xx.. 419 | ......... 420 | .xx..xx.. 421 | .xx..xx.. 422 | ......... 423 | ......... 424 | ......... 425 | 426 | char 20 427 | width 9 428 | ......... 429 | ......... 430 | ......... 431 | .xxxx.... 432 | xxxxxx... 433 | xxxxxxxx. 434 | xxxxx.xx. 435 | .xxxx.xx. 436 | ..xxx.xx. 437 | ...xx.xx. 438 | ...xx.xx. 439 | ...xx.xx. 440 | ...xx.xx. 441 | ...xx.xx. 442 | ...xx.xx. 443 | ...xx.xx. 444 | 445 | char 21 446 | width 9 447 | ......... 448 | ......... 449 | ......... 450 | .xxxxxx.. 451 | xx....xx. 452 | xx....... 453 | .xxx..... 454 | .xxxxx... 455 | xx...xx.. 456 | xx....xx. 457 | .xxx..xx. 458 | ...xxxx.. 459 | .....xx.. 460 | ......xx. 461 | xx....xx. 462 | .xxxxxx.. 463 | 464 | char 22 465 | width 9 466 | ......... 467 | ......... 468 | ......... 469 | ......... 470 | ......... 471 | ......... 472 | ......... 473 | ......... 474 | ......... 475 | .xxxxxx.. 476 | .xxxxxx.. 477 | .xxxxxx.. 478 | .xxxxxx.. 479 | ......... 480 | ......... 481 | ......... 482 | 483 | char 23 484 | width 9 485 | ......... 486 | ......... 487 | ......... 488 | ...x..... 489 | ..xxx.... 490 | .xxxxx... 491 | xxxxxxx.. 492 | ..xxx.... 493 | ..xxx.... 494 | ..xxx.... 495 | xxxxxxx.. 496 | .xxxxx... 497 | ..xxx.... 498 | ...x..... 499 | ......... 500 | xxxxxxx.. 501 | 502 | char 24 503 | width 9 504 | ......... 505 | ......... 506 | ......... 507 | ...x..... 508 | ..xxx.... 509 | .xxxxx... 510 | xxxxxxx.. 511 | ..xxx.... 512 | ..xxx.... 513 | ..xxx.... 514 | ..xxx.... 515 | ..xxx.... 516 | ..xxx.... 517 | ..xxx.... 518 | ..xxx.... 519 | ......... 520 | 521 | char 25 522 | width 9 523 | ......... 524 | ......... 525 | ......... 526 | ..xxx.... 527 | ..xxx.... 528 | ..xxx.... 529 | ..xxx.... 530 | ..xxx.... 531 | ..xxx.... 532 | ..xxx.... 533 | ..xxx.... 534 | xxxxxxx.. 535 | .xxxxx... 536 | ..xxx.... 537 | ...x..... 538 | ......... 539 | 540 | char 26 541 | width 9 542 | ......... 543 | ......... 544 | ......... 545 | ......... 546 | ......... 547 | ......... 548 | ....x.... 549 | ....xx... 550 | xxxxxxx.. 551 | xxxxxxxx. 552 | xxxxxxx.. 553 | ....xx... 554 | ....x.... 555 | ......... 556 | ......... 557 | ......... 558 | 559 | char 27 560 | width 9 561 | ......... 562 | ......... 563 | ......... 564 | ......... 565 | ......... 566 | ......... 567 | ...x..... 568 | ..xx..... 569 | .xxxxxxx. 570 | xxxxxxxx. 571 | .xxxxxxx. 572 | ..xx..... 573 | ...x..... 574 | ......... 575 | ......... 576 | ......... 577 | 578 | char 28 579 | width 9 580 | ......... 581 | ......... 582 | ......... 583 | ......... 584 | x........ 585 | x........ 586 | x........ 587 | x........ 588 | x........ 589 | x........ 590 | x........ 591 | xxxxxxxx. 592 | ......... 593 | ......... 594 | ......... 595 | ......... 596 | 597 | char 29 598 | width 9 599 | ......... 600 | ......... 601 | ......... 602 | ......... 603 | ......... 604 | ......... 605 | ..x..x... 606 | .xx..xx.. 607 | xxxxxxxx. 608 | xxxxxxxx. 609 | .xx..xx.. 610 | ..x..x... 611 | ......... 612 | ......... 613 | ......... 614 | ......... 615 | 616 | char 30 617 | width 9 618 | ......... 619 | ......... 620 | ......... 621 | ......... 622 | ......... 623 | ...xx.... 624 | ..xxxx... 625 | ..xxxx... 626 | .xxxxxx.. 627 | .xxxxxx.. 628 | xxxxxxxx. 629 | xxxxxxxx. 630 | ......... 631 | ......... 632 | ......... 633 | ......... 634 | 635 | char 31 636 | width 9 637 | ......... 638 | ......... 639 | ......... 640 | ......... 641 | ......... 642 | xxxxxxxx. 643 | xxxxxxxx. 644 | .xxxxxx.. 645 | .xxxxxx.. 646 | ..xxxx... 647 | ..xxxx... 648 | ...xx.... 649 | ......... 650 | ......... 651 | ......... 652 | ......... 653 | 654 | char 32 655 | width 9 656 | ......... 657 | ......... 658 | ......... 659 | ......... 660 | ......... 661 | ......... 662 | ......... 663 | ......... 664 | ......... 665 | ......... 666 | ......... 667 | ......... 668 | ......... 669 | ......... 670 | ......... 671 | ......... 672 | 673 | char 33 674 | width 9 675 | ......... 676 | ......... 677 | ......... 678 | ...xx.... 679 | ...xx.... 680 | ...xx.... 681 | ...xx.... 682 | ...xx.... 683 | ...xx.... 684 | ...xx.... 685 | ......... 686 | ...xx.... 687 | ...xx.... 688 | ......... 689 | ......... 690 | ......... 691 | 692 | char 34 693 | width 9 694 | ......... 695 | ......... 696 | ......... 697 | ..xx..xx. 698 | .xx..xx.. 699 | xx..xx... 700 | ......... 701 | ......... 702 | ......... 703 | ......... 704 | ......... 705 | ......... 706 | ......... 707 | ......... 708 | ......... 709 | ......... 710 | 711 | char 35 712 | width 9 713 | ......... 714 | ......... 715 | ......... 716 | ..xx..xx. 717 | ..xx..xx. 718 | xxxxxxxx. 719 | .xx..xx.. 720 | .xx..xx.. 721 | .xx..xx.. 722 | .xx..xx.. 723 | xxxxxxxx. 724 | xx..xx... 725 | xx..xx... 726 | ......... 727 | ......... 728 | ......... 729 | 730 | char 36 731 | width 9 732 | ......... 733 | ......... 734 | ...xx.... 735 | .xxxxxx.. 736 | xx.xx.xx. 737 | xx.xx.... 738 | .xxxx.... 739 | ...xxx... 740 | ...xxxx.. 741 | ...xx.xx. 742 | xx.xx.xx. 743 | xx.xx.xx. 744 | .xxxxxx.. 745 | ...xx.... 746 | ......... 747 | ......... 748 | 749 | char 37 750 | width 9 751 | ......... 752 | ......... 753 | ......... 754 | ..xx..... 755 | .xx.x..x. 756 | .x.xx.xx. 757 | ..xx.xx.. 758 | ....xx... 759 | ...xx.... 760 | ..xx.xx.. 761 | .xx.xx.x. 762 | xx..x.xx. 763 | .....xx.. 764 | ......... 765 | ......... 766 | ......... 767 | 768 | char 38 769 | width 9 770 | ......... 771 | ......... 772 | ......... 773 | ...xxx... 774 | ..xx.xx.. 775 | .xx..xx.. 776 | ..xxxx... 777 | ..xxx.... 778 | .xx.xx... 779 | xx...xxx. 780 | xx...xx.. 781 | .xx.xxx.. 782 | ..xxx.xx. 783 | ......... 784 | ......... 785 | ......... 786 | 787 | char 39 788 | width 9 789 | ......... 790 | ......... 791 | ......... 792 | ....xx... 793 | ...xx.... 794 | ..xx..... 795 | ......... 796 | ......... 797 | ......... 798 | ......... 799 | ......... 800 | ......... 801 | ......... 802 | ......... 803 | ......... 804 | ......... 805 | 806 | char 40 807 | width 9 808 | ......... 809 | ......... 810 | ....xx... 811 | ...xx.... 812 | ..xx..... 813 | ..xx..... 814 | .xx...... 815 | .xx...... 816 | .xx...... 817 | .xx...... 818 | ..xx..... 819 | ..xx..... 820 | ...xx.... 821 | ....xx... 822 | ......... 823 | ......... 824 | 825 | char 41 826 | width 9 827 | ......... 828 | ......... 829 | ..xx..... 830 | ...xx.... 831 | ....xx... 832 | ....xx... 833 | .....xx.. 834 | .....xx.. 835 | .....xx.. 836 | .....xx.. 837 | ....xx... 838 | ....xx... 839 | ...xx.... 840 | ..xx..... 841 | ......... 842 | ......... 843 | 844 | char 42 845 | width 9 846 | ......... 847 | ......... 848 | ......... 849 | .xx..xx.. 850 | ..xxxx... 851 | xxxxxxxx. 852 | ..xxxx... 853 | .xx..xx.. 854 | ......... 855 | ......... 856 | ......... 857 | ......... 858 | ......... 859 | ......... 860 | ......... 861 | ......... 862 | 863 | char 43 864 | width 9 865 | ......... 866 | ......... 867 | ......... 868 | ......... 869 | ......... 870 | ......... 871 | ...xx.... 872 | ...xx.... 873 | .xxxxxx.. 874 | ...xx.... 875 | ...xx.... 876 | ......... 877 | ......... 878 | ......... 879 | ......... 880 | ......... 881 | 882 | char 44 883 | width 9 884 | ......... 885 | ......... 886 | ......... 887 | ......... 888 | ......... 889 | ......... 890 | ......... 891 | ......... 892 | ......... 893 | ......... 894 | ......... 895 | ....xx... 896 | ...xx.... 897 | ..xx..... 898 | ......... 899 | ......... 900 | 901 | char 45 902 | width 9 903 | ......... 904 | ......... 905 | ......... 906 | ......... 907 | ......... 908 | ......... 909 | ......... 910 | ......... 911 | .xxxxxx.. 912 | ......... 913 | ......... 914 | ......... 915 | ......... 916 | ......... 917 | ......... 918 | ......... 919 | 920 | char 46 921 | width 9 922 | ......... 923 | ......... 924 | ......... 925 | ......... 926 | ......... 927 | ......... 928 | ......... 929 | ......... 930 | ......... 931 | ......... 932 | ......... 933 | ...xx.... 934 | ...xx.... 935 | ......... 936 | ......... 937 | ......... 938 | 939 | char 47 940 | width 9 941 | ......... 942 | ......... 943 | ......... 944 | .....xx.. 945 | .....x... 946 | ....xx... 947 | ....x.... 948 | ...xx.... 949 | ...x..... 950 | ..xx..... 951 | ..x...... 952 | .xx...... 953 | .x....... 954 | xx....... 955 | ......... 956 | ......... 957 | 958 | char 48 959 | width 9 960 | ......... 961 | ......... 962 | ......... 963 | ..xxxxx.. 964 | .xx...xx. 965 | xx....xx. 966 | xx....xx. 967 | xx....xx. 968 | xx..xxxx. 969 | xx.xx.xx. 970 | xxxx..xx. 971 | xx...xx.. 972 | .xxxxx... 973 | ......... 974 | ......... 975 | ......... 976 | 977 | char 49 978 | width 9 979 | ......... 980 | ......... 981 | ......... 982 | ....xx... 983 | ...xxx... 984 | ..xxxx... 985 | .xx.xx... 986 | ....xx... 987 | ....xx... 988 | ....xx... 989 | ....xx... 990 | ....xx... 991 | ....xx... 992 | ......... 993 | ......... 994 | ......... 995 | 996 | char 50 997 | width 9 998 | ......... 999 | ......... 1000 | ......... 1001 | ..xxxxx.. 1002 | .xx...xx. 1003 | xx....xx. 1004 | ......xx. 1005 | .....xx.. 1006 | ....xx... 1007 | ...xx.... 1008 | ..xx..... 1009 | .xx...xx. 1010 | xxxxxxxx. 1011 | ......... 1012 | ......... 1013 | ......... 1014 | 1015 | char 51 1016 | width 9 1017 | ......... 1018 | ......... 1019 | ......... 1020 | xxxxxxxx. 1021 | xx...xx.. 1022 | ....xx... 1023 | ...xx.... 1024 | ..xxxxx.. 1025 | ......xx. 1026 | ......xx. 1027 | xx....xx. 1028 | xx...xx.. 1029 | .xxxxx... 1030 | ......... 1031 | ......... 1032 | ......... 1033 | 1034 | char 52 1035 | width 9 1036 | ......... 1037 | ......... 1038 | ......... 1039 | .....xx.. 1040 | ....xxx.. 1041 | ...xxxx.. 1042 | ..xx.xx.. 1043 | .xx..xx.. 1044 | xx...xxx. 1045 | xx.xxxx.. 1046 | xxxx.xx.. 1047 | .....xx.. 1048 | .....xx.. 1049 | ......... 1050 | ......... 1051 | ......... 1052 | 1053 | char 53 1054 | width 9 1055 | ......... 1056 | ......... 1057 | ......... 1058 | ...xxxxx. 1059 | xxxx..... 1060 | xx....... 1061 | xx.xxx... 1062 | xxxx.xx.. 1063 | ......xx. 1064 | ......xx. 1065 | xx....xx. 1066 | xx...xx.. 1067 | .xxxxx... 1068 | ......... 1069 | ......... 1070 | ......... 1071 | 1072 | char 54 1073 | width 9 1074 | ......... 1075 | ......... 1076 | ......... 1077 | ..xxxx... 1078 | .xx..xx.. 1079 | xx...xx.. 1080 | xx....... 1081 | xx.xxx... 1082 | xxxx.xx.. 1083 | xx...xx.. 1084 | xx...xx.. 1085 | xx..xx... 1086 | .xxxx.... 1087 | ......... 1088 | ......... 1089 | ......... 1090 | 1091 | char 55 1092 | width 9 1093 | ......... 1094 | ......... 1095 | ......... 1096 | xxxxxxxx. 1097 | xx....xx. 1098 | .....xx.. 1099 | ....xx... 1100 | ....xx... 1101 | ...xx.... 1102 | ...xx.... 1103 | ..xx..... 1104 | ..xx..... 1105 | ..xx..... 1106 | ......... 1107 | ......... 1108 | ......... 1109 | 1110 | char 56 1111 | width 9 1112 | ......... 1113 | ......... 1114 | ......... 1115 | ..xxxx... 1116 | .xx..xx.. 1117 | xx...xx.. 1118 | .xx.xx... 1119 | ..xxxxx.. 1120 | .xx...xx. 1121 | xx....xx. 1122 | xx....xx. 1123 | xx...xx.. 1124 | .xxxxx... 1125 | ......... 1126 | ......... 1127 | ......... 1128 | 1129 | char 57 1130 | width 9 1131 | ......... 1132 | ......... 1133 | ......... 1134 | ..xxxx... 1135 | .xx..xx.. 1136 | xx...xx.. 1137 | xx...xx.. 1138 | xx.xxxx.. 1139 | .xxx.xx.. 1140 | .....xx.. 1141 | xx...xx.. 1142 | xx..xx... 1143 | .xxxx.... 1144 | ......... 1145 | ......... 1146 | ......... 1147 | 1148 | char 58 1149 | width 9 1150 | ......... 1151 | ......... 1152 | ......... 1153 | ......... 1154 | ......... 1155 | ...xx.... 1156 | ...xx.... 1157 | ......... 1158 | ......... 1159 | ......... 1160 | ...xx.... 1161 | ...xx.... 1162 | ......... 1163 | ......... 1164 | ......... 1165 | ......... 1166 | 1167 | char 59 1168 | width 9 1169 | ......... 1170 | ......... 1171 | ......... 1172 | ......... 1173 | ......... 1174 | ...xx.... 1175 | ...xx.... 1176 | ......... 1177 | ......... 1178 | ......... 1179 | ...xx.... 1180 | ...xx.... 1181 | ..xx..... 1182 | ......... 1183 | ......... 1184 | ......... 1185 | 1186 | char 60 1187 | width 9 1188 | ......... 1189 | ......... 1190 | ......... 1191 | .....xx.. 1192 | ....xx... 1193 | ...xx.... 1194 | ..xx..... 1195 | .xx...... 1196 | .xx...... 1197 | ..xx..... 1198 | ...xx.... 1199 | ....xx... 1200 | .....xx.. 1201 | ......... 1202 | ......... 1203 | ......... 1204 | 1205 | char 61 1206 | width 9 1207 | ......... 1208 | ......... 1209 | ......... 1210 | ......... 1211 | ......... 1212 | ......... 1213 | xxxxxxxx. 1214 | ......... 1215 | ......... 1216 | xxxxxxxx. 1217 | ......... 1218 | ......... 1219 | ......... 1220 | ......... 1221 | ......... 1222 | ......... 1223 | 1224 | char 62 1225 | width 9 1226 | ......... 1227 | ......... 1228 | ......... 1229 | .xx...... 1230 | ..xx..... 1231 | ...xx.... 1232 | ....xx... 1233 | .....xx.. 1234 | .....xx.. 1235 | ....xx... 1236 | ...xx.... 1237 | ..xx..... 1238 | .xx...... 1239 | ......... 1240 | ......... 1241 | ......... 1242 | 1243 | char 63 1244 | width 9 1245 | ......... 1246 | ......... 1247 | ......... 1248 | ..xxxxx.. 1249 | .xx...xx. 1250 | xx...xx.. 1251 | ....xx... 1252 | ...xx.... 1253 | ..xx..... 1254 | ..xx..... 1255 | ......... 1256 | ..xx..... 1257 | ..xx..... 1258 | ......... 1259 | ......... 1260 | ......... 1261 | 1262 | char 64 1263 | width 9 1264 | ......... 1265 | ......... 1266 | ......... 1267 | ...xxxx.. 1268 | ..xx..xx. 1269 | .xx.xxxx. 1270 | xx.xx.xx. 1271 | xx.xx.xx. 1272 | xx.xx.xx. 1273 | xx.xxxx.. 1274 | xx.xx.... 1275 | xx...xx.. 1276 | xx.xxx... 1277 | .xxx..... 1278 | ......... 1279 | ......... 1280 | 1281 | char 65 1282 | width 9 1283 | ......... 1284 | ......... 1285 | ......... 1286 | ...xx.... 1287 | ...xx.... 1288 | ..xxxx... 1289 | ..x..x... 1290 | .xx..xx.. 1291 | .xx.xxx.. 1292 | .xxxx.x.. 1293 | xxx...xx. 1294 | xx....xx. 1295 | xx....xx. 1296 | ......... 1297 | ......... 1298 | ......... 1299 | 1300 | char 66 1301 | width 9 1302 | ......... 1303 | ......... 1304 | ......... 1305 | ...xxxx.. 1306 | ..xx..xx. 1307 | xxx...xx. 1308 | xx...xx.. 1309 | xx.xxx... 1310 | xxxx.xxx. 1311 | xx....xx. 1312 | xx...xx.. 1313 | xx.xxx... 1314 | xxxx..... 1315 | ......... 1316 | ......... 1317 | ......... 1318 | 1319 | char 67 1320 | width 9 1321 | ......... 1322 | ......... 1323 | ......... 1324 | ...xxxx.. 1325 | ..xx..xx. 1326 | .xx...... 1327 | xx....... 1328 | xx....... 1329 | xx....... 1330 | xx....... 1331 | xx....... 1332 | .xx...xx. 1333 | ..xxxxx.. 1334 | ......... 1335 | ......... 1336 | ......... 1337 | 1338 | char 68 1339 | width 9 1340 | ......... 1341 | ......... 1342 | ......... 1343 | xxxxxx... 1344 | xx...xx.. 1345 | xx....xx. 1346 | xx....xx. 1347 | xx....xx. 1348 | xx....xx. 1349 | xx....xx. 1350 | xx...xx.. 1351 | xx.xxx... 1352 | xxxx..... 1353 | ......... 1354 | ......... 1355 | ......... 1356 | 1357 | char 69 1358 | width 9 1359 | ......... 1360 | ......... 1361 | ......... 1362 | ....xxxx. 1363 | .xxxx.... 1364 | .xx...... 1365 | .xx...... 1366 | .xx.xxx.. 1367 | .xxxx.... 1368 | .xx...... 1369 | .xx...... 1370 | .xx.xxxx. 1371 | .xxxx.... 1372 | ......... 1373 | ......... 1374 | ......... 1375 | 1376 | char 70 1377 | width 9 1378 | ......... 1379 | ......... 1380 | ......... 1381 | ....xxxx. 1382 | .xxxx.... 1383 | .xx...... 1384 | .xx...... 1385 | .xx.xxx.. 1386 | .xxxx.... 1387 | .xx...... 1388 | .xx...... 1389 | .xx...... 1390 | .xx...... 1391 | ......... 1392 | ......... 1393 | ......... 1394 | 1395 | char 71 1396 | width 9 1397 | ......... 1398 | ......... 1399 | ......... 1400 | ..xxxxx.. 1401 | .xx...xx. 1402 | xx....... 1403 | xx....... 1404 | xx....... 1405 | xx..xxxx. 1406 | xx....xx. 1407 | xx....xx. 1408 | .xx..xx.. 1409 | ..xxxx... 1410 | ......... 1411 | ......... 1412 | ......... 1413 | 1414 | char 72 1415 | width 9 1416 | ......... 1417 | ......... 1418 | ......... 1419 | xx....xx. 1420 | xx....xx. 1421 | xx....xx. 1422 | xx....xx. 1423 | xx..xxxx. 1424 | xxxxx.xx. 1425 | xx....xx. 1426 | xx....xx. 1427 | xx....xx. 1428 | xx....xx. 1429 | ......... 1430 | ......... 1431 | ......... 1432 | 1433 | char 73 1434 | width 9 1435 | ......... 1436 | ......... 1437 | ......... 1438 | ...xxx... 1439 | ..xxx.... 1440 | ...xx.... 1441 | ...xx.... 1442 | ...xx.... 1443 | ...xx.... 1444 | ...xx.... 1445 | ...xx.... 1446 | ...xxx... 1447 | ..xxx.... 1448 | ......... 1449 | ......... 1450 | ......... 1451 | 1452 | char 74 1453 | width 9 1454 | ......... 1455 | ......... 1456 | ......... 1457 | ......xx. 1458 | ......xx. 1459 | ......xx. 1460 | ......xx. 1461 | ......xx. 1462 | ......xx. 1463 | xx....xx. 1464 | xx....xx. 1465 | .xx...xx. 1466 | ..xxxxx.. 1467 | ......... 1468 | ......... 1469 | ......... 1470 | 1471 | char 75 1472 | width 9 1473 | ......... 1474 | ......... 1475 | ......... 1476 | xx....xx. 1477 | xx...xx.. 1478 | xx.xxx... 1479 | xxxx..... 1480 | xxx...... 1481 | xxxx..... 1482 | xx.xx.... 1483 | xx..xx... 1484 | xx...xx.. 1485 | xx....xx. 1486 | ......... 1487 | ......... 1488 | ......... 1489 | 1490 | char 76 1491 | width 9 1492 | ......... 1493 | ......... 1494 | ......... 1495 | .xx...... 1496 | .xx...... 1497 | .xx...... 1498 | .xx...... 1499 | .xx...... 1500 | .xx...... 1501 | .xx...... 1502 | .xx...... 1503 | .xx.xxxx. 1504 | .xxxx.... 1505 | ......... 1506 | ......... 1507 | ......... 1508 | 1509 | char 77 1510 | width 9 1511 | ......... 1512 | ......... 1513 | ......... 1514 | xx....xx. 1515 | xx....xx. 1516 | xxx..xxx. 1517 | xxx.xxxx. 1518 | xxxxx.xx. 1519 | xx.x..xx. 1520 | xx....xx. 1521 | xx....xx. 1522 | xx....xx. 1523 | xx....xx. 1524 | ......... 1525 | ......... 1526 | ......... 1527 | 1528 | char 78 1529 | width 9 1530 | ......... 1531 | ......... 1532 | ......... 1533 | xx....xx. 1534 | xx....xx. 1535 | xxx...xx. 1536 | xxxx..xx. 1537 | xx.x..xx. 1538 | xx.xx.xx. 1539 | xx..xxxx. 1540 | xx...xxx. 1541 | xx....xx. 1542 | xx....xx. 1543 | ......... 1544 | ......... 1545 | ......... 1546 | 1547 | char 79 1548 | width 9 1549 | ......... 1550 | ......... 1551 | ......... 1552 | ..xxxxx.. 1553 | .xx...xx. 1554 | xx....xx. 1555 | xx....xx. 1556 | xx....xx. 1557 | xx....xx. 1558 | xx....xx. 1559 | xx....xx. 1560 | xx...xx.. 1561 | .xxxxx... 1562 | ......... 1563 | ......... 1564 | ......... 1565 | 1566 | char 80 1567 | width 9 1568 | ......... 1569 | ......... 1570 | ......... 1571 | ...xxxx.. 1572 | ..xx..xx. 1573 | xxx...xx. 1574 | xx....xx. 1575 | xx...xx.. 1576 | xx.xxx... 1577 | xxxx..... 1578 | xx....... 1579 | xx....... 1580 | xx....... 1581 | ......... 1582 | ......... 1583 | ......... 1584 | 1585 | char 81 1586 | width 9 1587 | ......... 1588 | ......... 1589 | ......... 1590 | ..xxxxx.. 1591 | .xx...xx. 1592 | xx....xx. 1593 | xx....xx. 1594 | xx....xx. 1595 | xx....xx. 1596 | xxxx..xx. 1597 | xx.xxxx.. 1598 | xx..xx... 1599 | .xxxxx... 1600 | .....xx.. 1601 | ......xx. 1602 | ......... 1603 | 1604 | char 82 1605 | width 9 1606 | ......... 1607 | ......... 1608 | ......... 1609 | ...xxxx.. 1610 | ..xx..xx. 1611 | xxx...xx. 1612 | xx....xx. 1613 | xx...xx.. 1614 | xxxxxx... 1615 | xx.xx.... 1616 | xx..xx... 1617 | xx...xx.. 1618 | xx....xx. 1619 | ......... 1620 | ......... 1621 | ......... 1622 | 1623 | char 83 1624 | width 9 1625 | ......... 1626 | ......... 1627 | ......... 1628 | .xxxxxx.. 1629 | xx....xx. 1630 | xx....... 1631 | .xxx..... 1632 | ...xxx... 1633 | .....xx.. 1634 | ......xx. 1635 | xx....xx. 1636 | xx....xx. 1637 | .xxxxxx.. 1638 | ......... 1639 | ......... 1640 | ......... 1641 | 1642 | char 84 1643 | width 9 1644 | ......... 1645 | ......... 1646 | ......... 1647 | ....xxxx. 1648 | xxxxx.... 1649 | ...xx.... 1650 | ...xx.... 1651 | ...xx.... 1652 | ...xx.... 1653 | ...xx.... 1654 | ...xx.... 1655 | ...xx.... 1656 | ...xx.... 1657 | ......... 1658 | ......... 1659 | ......... 1660 | 1661 | char 85 1662 | width 9 1663 | ......... 1664 | ......... 1665 | ......... 1666 | xx....xx. 1667 | xx....xx. 1668 | xx....xx. 1669 | xx....xx. 1670 | xx....xx. 1671 | xx....xx. 1672 | xx...xx.. 1673 | xx...xx.. 1674 | xx..xx... 1675 | .xxxx.... 1676 | ......... 1677 | ......... 1678 | ......... 1679 | 1680 | char 86 1681 | width 9 1682 | ......... 1683 | ......... 1684 | ......... 1685 | xx....xx. 1686 | xx....xx. 1687 | xx....xx. 1688 | xx....xx. 1689 | .xx..xx.. 1690 | .xx..xx.. 1691 | .xxxxx... 1692 | ..xxx.... 1693 | ..xx..... 1694 | ..xx..... 1695 | ......... 1696 | ......... 1697 | ......... 1698 | 1699 | char 87 1700 | width 9 1701 | ......... 1702 | ......... 1703 | ......... 1704 | xx....xx. 1705 | xx....xx. 1706 | xx....xx. 1707 | xx....xx. 1708 | xx.xx.xx. 1709 | xx.xx.xx. 1710 | xx.xx.xx. 1711 | xxxxxxxx. 1712 | xxx..xxx. 1713 | xx....xx. 1714 | ......... 1715 | ......... 1716 | ......... 1717 | 1718 | char 88 1719 | width 9 1720 | ......... 1721 | ......... 1722 | ......... 1723 | xx....xx. 1724 | xx....xx. 1725 | .xx..xx.. 1726 | .xx..xx.. 1727 | ..xxxx... 1728 | ..xxxx... 1729 | .xx..xx.. 1730 | .xx..xx.. 1731 | xx....xx. 1732 | xx....xx. 1733 | ......... 1734 | ......... 1735 | ......... 1736 | 1737 | char 89 1738 | width 9 1739 | ......... 1740 | ......... 1741 | ......... 1742 | xx....xx. 1743 | xx....xx. 1744 | .xx..xx.. 1745 | .xx..xx.. 1746 | ..xxxx... 1747 | ...xx.... 1748 | ...xx.... 1749 | ...xx.... 1750 | ...xx.... 1751 | ...xx.... 1752 | ......... 1753 | ......... 1754 | ......... 1755 | 1756 | char 90 1757 | width 9 1758 | ......... 1759 | ......... 1760 | ......... 1761 | ...xxxxx. 1762 | xxxx.xx.. 1763 | .....x... 1764 | ....xx... 1765 | ...xx.... 1766 | ...x..... 1767 | ..xx..... 1768 | ..x...... 1769 | .xx.xxxx. 1770 | xxxxx.... 1771 | ......... 1772 | ......... 1773 | ......... 1774 | 1775 | char 91 1776 | width 9 1777 | ......... 1778 | ......... 1779 | ..xxxxx.. 1780 | ..xx..... 1781 | ..xx..... 1782 | ..xx..... 1783 | ..xx..... 1784 | ..xx..... 1785 | ..xx..... 1786 | ..xx..... 1787 | ..xx..... 1788 | ..xx..... 1789 | ..xx..... 1790 | ..xxxxx.. 1791 | ......... 1792 | ......... 1793 | 1794 | char 92 1795 | width 9 1796 | ......... 1797 | ......... 1798 | ......... 1799 | xx....... 1800 | .x....... 1801 | .xx...... 1802 | ..x...... 1803 | ..xx..... 1804 | ...x..... 1805 | ...xx.... 1806 | ....x.... 1807 | ....xx... 1808 | .....x... 1809 | .....xx.. 1810 | ......... 1811 | ......... 1812 | 1813 | char 93 1814 | width 9 1815 | ......... 1816 | ......... 1817 | .xxxxx... 1818 | ....xx... 1819 | ....xx... 1820 | ....xx... 1821 | ....xx... 1822 | ....xx... 1823 | ....xx... 1824 | ....xx... 1825 | ....xx... 1826 | ....xx... 1827 | ....xx... 1828 | .xxxxx... 1829 | ......... 1830 | ......... 1831 | 1832 | char 94 1833 | width 9 1834 | ......... 1835 | ......... 1836 | ...xx.... 1837 | ..xxxx... 1838 | .xx..xx.. 1839 | xx....... 1840 | ......... 1841 | ......... 1842 | ......... 1843 | ......... 1844 | ......... 1845 | ......... 1846 | ......... 1847 | ......... 1848 | ......... 1849 | ......... 1850 | 1851 | char 95 1852 | width 9 1853 | ......... 1854 | ......... 1855 | ......... 1856 | ......... 1857 | ......... 1858 | ......... 1859 | ......... 1860 | ......... 1861 | ......... 1862 | ......... 1863 | ......... 1864 | ......... 1865 | ......... 1866 | ......... 1867 | xxxxxxxx. 1868 | ......... 1869 | 1870 | char 96 1871 | width 9 1872 | ......... 1873 | ......... 1874 | ......... 1875 | ..xx..... 1876 | ...xx.... 1877 | ....xx... 1878 | ......... 1879 | ......... 1880 | ......... 1881 | ......... 1882 | ......... 1883 | ......... 1884 | ......... 1885 | ......... 1886 | ......... 1887 | ......... 1888 | 1889 | char 97 1890 | width 9 1891 | ......... 1892 | ......... 1893 | ......... 1894 | ......... 1895 | ......... 1896 | ......... 1897 | ..xxxxx.. 1898 | .xx...xx. 1899 | ...xxxxx. 1900 | .xxx..xx. 1901 | xx....xx. 1902 | xx..xxxx. 1903 | .xxxx.xx. 1904 | ......... 1905 | ......... 1906 | ......... 1907 | 1908 | char 98 1909 | width 9 1910 | ......... 1911 | ......... 1912 | ......... 1913 | xx....... 1914 | xx....... 1915 | xx....... 1916 | xx.xxx... 1917 | xxxx.xx.. 1918 | xx....xx. 1919 | xx....xx. 1920 | xx...xx.. 1921 | xx.xxx... 1922 | xxxx..... 1923 | ......... 1924 | ......... 1925 | ......... 1926 | 1927 | char 99 1928 | width 9 1929 | ......... 1930 | ......... 1931 | ......... 1932 | ......... 1933 | ......... 1934 | ......... 1935 | ...xxxx.. 1936 | ..xx..xx. 1937 | .xx...... 1938 | xx....... 1939 | xx....... 1940 | xx....xx. 1941 | .xxxxxx.. 1942 | ......... 1943 | ......... 1944 | ......... 1945 | 1946 | char 100 1947 | width 9 1948 | ......... 1949 | ......... 1950 | ......... 1951 | ......xx. 1952 | ......xx. 1953 | ......xx. 1954 | ...xxxxx. 1955 | .xxx..xx. 1956 | xx....xx. 1957 | xx...xxx. 1958 | xx..xxxx. 1959 | xx.xx.xx. 1960 | .xxx..xx. 1961 | ......... 1962 | ......... 1963 | ......... 1964 | 1965 | char 101 1966 | width 9 1967 | ......... 1968 | ......... 1969 | ......... 1970 | ......... 1971 | ......... 1972 | ......... 1973 | ..xxxxx.. 1974 | .xx...xx. 1975 | xx..xxx.. 1976 | xxxxx.... 1977 | xx....... 1978 | xx....xx. 1979 | .xxxxxx.. 1980 | ......... 1981 | ......... 1982 | ......... 1983 | 1984 | char 102 1985 | width 9 1986 | ......... 1987 | ......... 1988 | ......... 1989 | ...xxxx.. 1990 | ..xx..xx. 1991 | ..xx..... 1992 | ..xx..... 1993 | ..xxxx... 1994 | xxxx..... 1995 | ..xx..... 1996 | ..xx..... 1997 | ..xx..... 1998 | ..xx..... 1999 | ......... 2000 | ......... 2001 | ......... 2002 | 2003 | char 103 2004 | width 9 2005 | ......... 2006 | ......... 2007 | ......... 2008 | ......... 2009 | ......... 2010 | ......... 2011 | ..xxxxxx. 2012 | .xx...xx. 2013 | xx....xx. 2014 | xx...xxx. 2015 | xx..xxxx. 2016 | xx.xx.xx. 2017 | .xxx..xx. 2018 | ......xx. 2019 | xx....xx. 2020 | .xxxxxx.. 2021 | 2022 | char 104 2023 | width 9 2024 | ......... 2025 | ......... 2026 | ......... 2027 | xx....... 2028 | xx....... 2029 | xx....... 2030 | xx..xxx.. 2031 | xx.xx.xx. 2032 | xxxx..xx. 2033 | xxx...xx. 2034 | xx....xx. 2035 | xx....xx. 2036 | xx....xx. 2037 | ......... 2038 | ......... 2039 | ......... 2040 | 2041 | char 105 2042 | width 9 2043 | ......... 2044 | ......... 2045 | ......... 2046 | ...xx.... 2047 | ...xx.... 2048 | ......... 2049 | ...xx.... 2050 | ...xx.... 2051 | ...xx.... 2052 | ...xx.... 2053 | ...xx.... 2054 | ...xx.... 2055 | ...xx.... 2056 | ......... 2057 | ......... 2058 | ......... 2059 | 2060 | char 106 2061 | width 9 2062 | ......... 2063 | ......... 2064 | ......... 2065 | ....xx... 2066 | ....xx... 2067 | ......... 2068 | ....xx... 2069 | ....xx... 2070 | ....xx... 2071 | ....xx... 2072 | ....xx... 2073 | ....xx... 2074 | ....xx... 2075 | xx..xx... 2076 | xx..xx... 2077 | .xxxx.... 2078 | 2079 | char 107 2080 | width 9 2081 | ......... 2082 | ......... 2083 | ......... 2084 | xx....... 2085 | xx....... 2086 | xx....... 2087 | xx...xx.. 2088 | xx..xx... 2089 | xx.xx.... 2090 | xxxxx.... 2091 | xxx.xx... 2092 | xx...xx.. 2093 | xx....xx. 2094 | ......... 2095 | ......... 2096 | ......... 2097 | 2098 | char 108 2099 | width 9 2100 | ......... 2101 | ......... 2102 | ......... 2103 | ..xxx.... 2104 | ...xx.... 2105 | ...xx.... 2106 | ...xx.... 2107 | ...xx.... 2108 | ...xx.... 2109 | ...xx.... 2110 | ...xx.... 2111 | ...xx.... 2112 | ...xx.... 2113 | ......... 2114 | ......... 2115 | ......... 2116 | 2117 | char 109 2118 | width 9 2119 | ......... 2120 | ......... 2121 | ......... 2122 | ......... 2123 | ......... 2124 | ......... 2125 | xxx..xx.. 2126 | xxxxxxxx. 2127 | xx.xx.xx. 2128 | xx.xx.xx. 2129 | xx....xx. 2130 | xx....xx. 2131 | xx....xx. 2132 | ......... 2133 | ......... 2134 | ......... 2135 | 2136 | char 110 2137 | width 9 2138 | ......... 2139 | ......... 2140 | ......... 2141 | ......... 2142 | ......... 2143 | ......... 2144 | xx..xxx.. 2145 | xx.xx.xx. 2146 | xxxx..xx. 2147 | xxx...xx. 2148 | xx....xx. 2149 | xx....xx. 2150 | xx....xx. 2151 | ......... 2152 | ......... 2153 | ......... 2154 | 2155 | char 111 2156 | width 9 2157 | ......... 2158 | ......... 2159 | ......... 2160 | ......... 2161 | ......... 2162 | ......... 2163 | ..xxxxx.. 2164 | .xx...xx. 2165 | xx....xx. 2166 | xx....xx. 2167 | xx....xx. 2168 | xx...xx.. 2169 | .xxxxx... 2170 | ......... 2171 | ......... 2172 | ......... 2173 | 2174 | char 112 2175 | width 9 2176 | ......... 2177 | ......... 2178 | ......... 2179 | ......... 2180 | ......... 2181 | ......... 2182 | xx..xxx.. 2183 | xx.xx.xx. 2184 | xxxx..xx. 2185 | xxx...xx. 2186 | xx....xx. 2187 | xx...xx.. 2188 | xxxxxx... 2189 | xx....... 2190 | xx....... 2191 | xx....... 2192 | 2193 | char 113 2194 | width 9 2195 | ......... 2196 | ......... 2197 | ......... 2198 | ......... 2199 | ......... 2200 | ......... 2201 | .xxx..xx. 2202 | xx.xx.xx. 2203 | xx..xxxx. 2204 | xx...xxx. 2205 | xx....xx. 2206 | .xx...xx. 2207 | ..xxxxxx. 2208 | ......xx. 2209 | ......xx. 2210 | ......xx. 2211 | 2212 | char 114 2213 | width 9 2214 | ......... 2215 | ......... 2216 | ......... 2217 | ......... 2218 | ......... 2219 | ......... 2220 | xx..xxx.. 2221 | xx.xx.xx. 2222 | xxxx..xx. 2223 | xxx...... 2224 | xx....... 2225 | xx....... 2226 | xx....... 2227 | ......... 2228 | ......... 2229 | ......... 2230 | 2231 | char 115 2232 | width 9 2233 | ......... 2234 | ......... 2235 | ......... 2236 | ......... 2237 | ......... 2238 | ......... 2239 | .xxxxxx.. 2240 | xx....xx. 2241 | .xxx..... 2242 | ...xxxx.. 2243 | ......xx. 2244 | xx....xx. 2245 | .xxxxxx.. 2246 | ......... 2247 | ......... 2248 | ......... 2249 | 2250 | char 116 2251 | width 9 2252 | ......... 2253 | ......... 2254 | ......... 2255 | ....x.... 2256 | ...xx.... 2257 | ...xx.... 2258 | ...xxxx.. 2259 | .xxxx.... 2260 | ...xx.... 2261 | ...xx.... 2262 | ...xx.xx. 2263 | ...xxxx.. 2264 | ....xx... 2265 | ......... 2266 | ......... 2267 | ......... 2268 | 2269 | char 117 2270 | width 9 2271 | ......... 2272 | ......... 2273 | ......... 2274 | ......... 2275 | ......... 2276 | ......... 2277 | xx....xx. 2278 | xx....xx. 2279 | xx....xx. 2280 | xx...xxx. 2281 | xx..xxxx. 2282 | xx.xx.xx. 2283 | .xxx..xx. 2284 | ......... 2285 | ......... 2286 | ......... 2287 | 2288 | char 118 2289 | width 9 2290 | ......... 2291 | ......... 2292 | ......... 2293 | ......... 2294 | ......... 2295 | ......... 2296 | xx....xx. 2297 | xx....xx. 2298 | xx....xx. 2299 | .xx..xx.. 2300 | .xx.xx... 2301 | ..xxx.... 2302 | ...xx.... 2303 | ......... 2304 | ......... 2305 | ......... 2306 | 2307 | char 119 2308 | width 9 2309 | ......... 2310 | ......... 2311 | ......... 2312 | ......... 2313 | ......... 2314 | ......... 2315 | xx....xx. 2316 | xx....xx. 2317 | xx....xx. 2318 | xx.xx.xx. 2319 | xx.xx.xx. 2320 | xxxxxxxx. 2321 | xx....xx. 2322 | ......... 2323 | ......... 2324 | ......... 2325 | 2326 | char 120 2327 | width 9 2328 | ......... 2329 | ......... 2330 | ......... 2331 | ......... 2332 | ......... 2333 | ......... 2334 | xx....xx. 2335 | .xx..xx.. 2336 | ..xxxx... 2337 | ...xx.... 2338 | ..xxxx... 2339 | .xx..xx.. 2340 | xx....xx. 2341 | ......... 2342 | ......... 2343 | ......... 2344 | 2345 | char 121 2346 | width 9 2347 | ......... 2348 | ......... 2349 | ......... 2350 | ......... 2351 | ......... 2352 | ......... 2353 | xx....xx. 2354 | xx....xx. 2355 | xx....xx. 2356 | xx....xx. 2357 | xx....xx. 2358 | .xx..xx.. 2359 | ..xxxxx.. 2360 | ....xx... 2361 | xx.xx.... 2362 | .xxx..... 2363 | 2364 | char 122 2365 | width 9 2366 | ......... 2367 | ......... 2368 | ......... 2369 | ......... 2370 | ......... 2371 | ......... 2372 | xxxxxxxx. 2373 | .....xx.. 2374 | ....xx... 2375 | ...xx.... 2376 | ..xx..... 2377 | .xx...... 2378 | xxxxxxxx. 2379 | ......... 2380 | ......... 2381 | ......... 2382 | 2383 | char 123 2384 | width 9 2385 | ......... 2386 | ......... 2387 | ....xxx.. 2388 | ...xx.... 2389 | ...xx.... 2390 | ...xx.... 2391 | ...xx.... 2392 | .xxx..... 2393 | .xxx..... 2394 | ...xx.... 2395 | ...xx.... 2396 | ...xx.... 2397 | ...xx.... 2398 | ....xxx.. 2399 | ......... 2400 | ......... 2401 | 2402 | char 124 2403 | width 9 2404 | ......... 2405 | ......... 2406 | ...xx.... 2407 | ...xx.... 2408 | ...xx.... 2409 | ...xx.... 2410 | ...xx.... 2411 | ...xx.... 2412 | ...xx.... 2413 | ...xx.... 2414 | ...xx.... 2415 | ...xx.... 2416 | ...xx.... 2417 | ...xx.... 2418 | ......... 2419 | ......... 2420 | 2421 | char 125 2422 | width 9 2423 | ......... 2424 | ......... 2425 | .xxx..... 2426 | ...xx.... 2427 | ...xx.... 2428 | ...xx.... 2429 | ...xx.... 2430 | ....xxx.. 2431 | ....xxx.. 2432 | ...xx.... 2433 | ...xx.... 2434 | ...xx.... 2435 | ...xx.... 2436 | .xxx..... 2437 | ......... 2438 | ......... 2439 | 2440 | char 126 2441 | width 9 2442 | ......... 2443 | ......... 2444 | ......... 2445 | ......... 2446 | ......... 2447 | ......... 2448 | ......... 2449 | .xxx.xx.. 2450 | xx.xxx... 2451 | ......... 2452 | ......... 2453 | ......... 2454 | ......... 2455 | ......... 2456 | ......... 2457 | ......... 2458 | 2459 | char 127 2460 | width 9 2461 | ......... 2462 | ......... 2463 | ......... 2464 | ......... 2465 | ......... 2466 | ...x..... 2467 | ..xxx.... 2468 | .xx.xx... 2469 | xx...xx.. 2470 | xx...xx.. 2471 | xx...xx.. 2472 | xxxxxxx.. 2473 | ......... 2474 | ......... 2475 | ......... 2476 | ......... 2477 | 2478 | char 128 2479 | width 9 2480 | ......... 2481 | ......... 2482 | ......... 2483 | ...xxxx.. 2484 | ..xx..xx. 2485 | .xx...... 2486 | xx....... 2487 | xx....... 2488 | xx....... 2489 | xx....... 2490 | xx....... 2491 | .xx...xx. 2492 | ..xxxxx.. 2493 | ...xx.... 2494 | ....xx... 2495 | ..xxx.... 2496 | 2497 | char 129 2498 | width 9 2499 | ......... 2500 | ......... 2501 | ......... 2502 | .xx..xx.. 2503 | .xx..xx.. 2504 | ......... 2505 | xx....xx. 2506 | xx....xx. 2507 | xx....xx. 2508 | xx...xxx. 2509 | xx..xxxx. 2510 | xx.xx.xx. 2511 | .xxx..xx. 2512 | ......... 2513 | ......... 2514 | ......... 2515 | 2516 | char 130 2517 | width 9 2518 | ......... 2519 | ......... 2520 | ......... 2521 | ....xx... 2522 | ...xx.... 2523 | ......... 2524 | ..xxxxx.. 2525 | .xx...xx. 2526 | xx..xxx.. 2527 | xxxxx.... 2528 | xx....... 2529 | xx....xx. 2530 | .xxxxxx.. 2531 | ......... 2532 | ......... 2533 | ......... 2534 | 2535 | char 131 2536 | width 9 2537 | ......... 2538 | ......... 2539 | ......... 2540 | ...xx.... 2541 | ..xxxx... 2542 | ......... 2543 | ..xxxxx.. 2544 | .xx...xx. 2545 | ...xxxxx. 2546 | .xxx..xx. 2547 | xx....xx. 2548 | xx..xxxx. 2549 | .xxxx.xx. 2550 | ......... 2551 | ......... 2552 | ......... 2553 | 2554 | char 132 2555 | width 9 2556 | ......... 2557 | ......... 2558 | ......... 2559 | ..xx.xx.. 2560 | ..xx.xx.. 2561 | ......... 2562 | ..xxxxx.. 2563 | .xx...xx. 2564 | ...xxxxx. 2565 | .xxx..xx. 2566 | xx....xx. 2567 | xx..xxxx. 2568 | .xxxx.xx. 2569 | ......... 2570 | ......... 2571 | ......... 2572 | 2573 | char 133 2574 | width 9 2575 | ......... 2576 | ......... 2577 | ......... 2578 | ..xx..... 2579 | ...xx.... 2580 | ......... 2581 | ..xxxxx.. 2582 | .xx...xx. 2583 | ...xxxxx. 2584 | .xxx..xx. 2585 | xx....xx. 2586 | xx..xxxx. 2587 | .xxxx.xx. 2588 | ......... 2589 | ......... 2590 | ......... 2591 | 2592 | char 134 2593 | width 9 2594 | ......... 2595 | ......... 2596 | ...xx.... 2597 | ..x..x... 2598 | ..x..x... 2599 | ...xx.... 2600 | ..xxxxx.. 2601 | .xx...xx. 2602 | ...xxxxx. 2603 | .xxx..xx. 2604 | xx....xx. 2605 | xx..xxxx. 2606 | .xxxx.xx. 2607 | ......... 2608 | ......... 2609 | ......... 2610 | 2611 | char 135 2612 | width 9 2613 | ......... 2614 | ......... 2615 | ......... 2616 | ......... 2617 | ......... 2618 | ......... 2619 | ...xxxx.. 2620 | ..xx..xx. 2621 | .xx...... 2622 | xx....... 2623 | xx....... 2624 | xx....xx. 2625 | .xxxxxx.. 2626 | ...xx.... 2627 | ....xx... 2628 | ..xxx.... 2629 | 2630 | char 136 2631 | width 9 2632 | ......... 2633 | ......... 2634 | ......... 2635 | ...xx.... 2636 | ..xxxx... 2637 | ......... 2638 | ..xxxxx.. 2639 | .xx...xx. 2640 | xx..xxx.. 2641 | xxxxx.... 2642 | xx....... 2643 | xx....xx. 2644 | .xxxxxx.. 2645 | ......... 2646 | ......... 2647 | ......... 2648 | 2649 | char 137 2650 | width 9 2651 | ......... 2652 | ......... 2653 | ......... 2654 | .xx..xx.. 2655 | .xx..xx.. 2656 | ......... 2657 | ..xxxxx.. 2658 | .xx...xx. 2659 | xx..xxx.. 2660 | xxxxx.... 2661 | xx....... 2662 | xx....xx. 2663 | .xxxxxx.. 2664 | ......... 2665 | ......... 2666 | ......... 2667 | 2668 | char 138 2669 | width 9 2670 | ......... 2671 | ......... 2672 | ......... 2673 | ..xx..... 2674 | ...xx.... 2675 | ......... 2676 | ..xxxxx.. 2677 | .xx...xx. 2678 | xx..xxx.. 2679 | xxxxx.... 2680 | xx....... 2681 | xx....xx. 2682 | .xxxxxx.. 2683 | ......... 2684 | ......... 2685 | ......... 2686 | 2687 | char 139 2688 | width 9 2689 | ......... 2690 | ......... 2691 | ......... 2692 | .xx..xx.. 2693 | .xx..xx.. 2694 | ......... 2695 | ...xx.... 2696 | ...xx.... 2697 | ...xx.... 2698 | ...xx.... 2699 | ...xx.... 2700 | ...xx.... 2701 | ...xx.... 2702 | ......... 2703 | ......... 2704 | ......... 2705 | 2706 | char 140 2707 | width 9 2708 | ......... 2709 | ......... 2710 | ......... 2711 | ...xx.... 2712 | ..xxxx... 2713 | ......... 2714 | ...xx.... 2715 | ...xx.... 2716 | ...xx.... 2717 | ...xx.... 2718 | ...xx.... 2719 | ...xx.... 2720 | ...xx.... 2721 | ......... 2722 | ......... 2723 | ......... 2724 | 2725 | char 141 2726 | width 9 2727 | ......... 2728 | ......... 2729 | ......... 2730 | ..xx..... 2731 | ...xx.... 2732 | ......... 2733 | ...xx.... 2734 | ...xx.... 2735 | ...xx.... 2736 | ...xx.... 2737 | ...xx.... 2738 | ...xx.... 2739 | ...xx.... 2740 | ......... 2741 | ......... 2742 | ......... 2743 | 2744 | char 142 2745 | width 9 2746 | ......... 2747 | .xx..xx.. 2748 | .xx..xx.. 2749 | ......... 2750 | ...xx.... 2751 | ..xxxx... 2752 | ..x..x... 2753 | .xx..xx.. 2754 | .xx.xxx.. 2755 | .xxxx.x.. 2756 | xxx...xx. 2757 | xx....xx. 2758 | xx....xx. 2759 | ......... 2760 | ......... 2761 | ......... 2762 | 2763 | char 143 2764 | width 9 2765 | ......... 2766 | ...xx.... 2767 | ..x..x... 2768 | ..x..x... 2769 | ...xx.... 2770 | ..xxxx... 2771 | ..x..x... 2772 | .xx..xx.. 2773 | .xx.xxx.. 2774 | .xxxx.x.. 2775 | xxx...xx. 2776 | xx....xx. 2777 | xx....xx. 2778 | ......... 2779 | ......... 2780 | ......... 2781 | 2782 | char 144 2783 | width 9 2784 | ......... 2785 | ....xx... 2786 | ...xx.... 2787 | ......... 2788 | ....xxxx. 2789 | .xxxx.... 2790 | .xx...... 2791 | .xx.xxxx. 2792 | .xxxx.... 2793 | .xx...... 2794 | .xx...... 2795 | .xx.xxxx. 2796 | .xxxx.... 2797 | ......... 2798 | ......... 2799 | ......... 2800 | 2801 | char 145 2802 | width 9 2803 | ......... 2804 | ......... 2805 | ......... 2806 | ......... 2807 | ......... 2808 | ......... 2809 | .xxxxxx.. 2810 | xx.xx.xx. 2811 | ..xxxxx.. 2812 | .xxxxx... 2813 | xx.xx.... 2814 | xx.xx.xx. 2815 | .xxxxxx.. 2816 | ......... 2817 | ......... 2818 | ......... 2819 | 2820 | char 146 2821 | width 9 2822 | ......... 2823 | ......... 2824 | ......... 2825 | ...xx.xx. 2826 | ...xxxx.. 2827 | ..xxxx... 2828 | ..x.xx... 2829 | .xx.xxxx. 2830 | .xx.xxx.. 2831 | .xxxxx... 2832 | xxx.xx... 2833 | xx..xxxx. 2834 | xx..xxx.. 2835 | ......... 2836 | ......... 2837 | ......... 2838 | 2839 | char 147 2840 | width 9 2841 | ......... 2842 | ......... 2843 | ......... 2844 | ...xx.... 2845 | ..xxxx... 2846 | ......... 2847 | ..xxxxx.. 2848 | .xx...xx. 2849 | xx....xx. 2850 | xx....xx. 2851 | xx....xx. 2852 | xx...xx.. 2853 | .xxxxx... 2854 | ......... 2855 | ......... 2856 | ......... 2857 | 2858 | char 148 2859 | width 9 2860 | ......... 2861 | ......... 2862 | ......... 2863 | .xx..xx.. 2864 | .xx..xx.. 2865 | ......... 2866 | ..xxxxx.. 2867 | .xx...xx. 2868 | xx....xx. 2869 | xx....xx. 2870 | xx....xx. 2871 | xx...xx.. 2872 | .xxxxx... 2873 | ......... 2874 | ......... 2875 | ......... 2876 | 2877 | char 149 2878 | width 9 2879 | ......... 2880 | ......... 2881 | ......... 2882 | ..xx..... 2883 | ...xx.... 2884 | ......... 2885 | ..xxxxx.. 2886 | .xx...xx. 2887 | xx....xx. 2888 | xx....xx. 2889 | xx....xx. 2890 | xx...xx.. 2891 | .xxxxx... 2892 | ......... 2893 | ......... 2894 | ......... 2895 | 2896 | char 150 2897 | width 9 2898 | ......... 2899 | ......... 2900 | ......... 2901 | ...xx.... 2902 | ..xxxx... 2903 | ......... 2904 | xx....xx. 2905 | xx....xx. 2906 | xx....xx. 2907 | xx...xxx. 2908 | xx..xxxx. 2909 | xx.xx.xx. 2910 | .xxx..xx. 2911 | ......... 2912 | ......... 2913 | ......... 2914 | 2915 | char 151 2916 | width 9 2917 | ......... 2918 | ......... 2919 | ......... 2920 | ..xx..... 2921 | ...xx.... 2922 | ......... 2923 | xx....xx. 2924 | xx....xx. 2925 | xx....xx. 2926 | xx...xxx. 2927 | xx..xxxx. 2928 | xx.xx.xx. 2929 | .xxx..xx. 2930 | ......... 2931 | ......... 2932 | ......... 2933 | 2934 | char 152 2935 | width 9 2936 | ......... 2937 | ......... 2938 | ......... 2939 | .xx..xx.. 2940 | .xx..xx.. 2941 | ......... 2942 | xx....xx. 2943 | xx....xx. 2944 | xx....xx. 2945 | xx....xx. 2946 | xx....xx. 2947 | .xx..xx.. 2948 | ..xxxxx.. 2949 | ....xx... 2950 | xx.xx.... 2951 | .xxx..... 2952 | 2953 | char 153 2954 | width 9 2955 | ......... 2956 | .xx..xx.. 2957 | .xx..xx.. 2958 | ......... 2959 | ..xxxxx.. 2960 | .xx...xx. 2961 | xx....xx. 2962 | xx....xx. 2963 | xx....xx. 2964 | xx....xx. 2965 | xx....xx. 2966 | xx...xx.. 2967 | .xxxxx... 2968 | ......... 2969 | ......... 2970 | ......... 2971 | 2972 | char 154 2973 | width 9 2974 | ......... 2975 | .xx..xx.. 2976 | .xx..xx.. 2977 | ......... 2978 | xx....xx. 2979 | xx....xx. 2980 | xx....xx. 2981 | xx....xx. 2982 | xx....xx. 2983 | xx...xx.. 2984 | xx...xx.. 2985 | xx..xx... 2986 | .xxxx.... 2987 | ......... 2988 | ......... 2989 | ......... 2990 | 2991 | char 155 2992 | width 9 2993 | ......... 2994 | ......... 2995 | ......... 2996 | ......... 2997 | ....x.... 2998 | ....x.... 2999 | ...xxxx.. 3000 | ..xxx.xx. 3001 | .xx.x.... 3002 | xx..x.... 3003 | xx..x.... 3004 | xx..x.xx. 3005 | .xxxxxx.. 3006 | ....x.... 3007 | ....x.... 3008 | ......... 3009 | 3010 | char 156 3011 | width 9 3012 | ......... 3013 | ......... 3014 | ......... 3015 | ...xxx... 3016 | ..xx.xx.. 3017 | .xx...... 3018 | .xx...... 3019 | xxxxx.... 3020 | .xx...... 3021 | .xx...... 3022 | .xx...... 3023 | xxxxx.xx. 3024 | xx..xxx.. 3025 | ......... 3026 | ......... 3027 | ......... 3028 | 3029 | char 157 3030 | width 9 3031 | ......... 3032 | ......... 3033 | ......... 3034 | xx....xx. 3035 | xx....xx. 3036 | .xx..xx.. 3037 | .xx..xx.. 3038 | ..xxxx... 3039 | xxxxxxxx. 3040 | ...xx.... 3041 | xxxxxxxx. 3042 | ...xx.... 3043 | ...xx.... 3044 | ...xx.... 3045 | ......... 3046 | ......... 3047 | 3048 | char 158 3049 | width 9 3050 | ......... 3051 | ......... 3052 | ......... 3053 | ...xxxx.. 3054 | ..xx..xx. 3055 | xxx...xx. 3056 | xx...xx.. 3057 | xx.xxx... 3058 | xxxx..... 3059 | xx.x..xx. 3060 | xxxxxxx.. 3061 | xx.x..xx. 3062 | xx.xxxx.. 3063 | ......... 3064 | ......... 3065 | ......... 3066 | 3067 | char 159 3068 | width 9 3069 | ......... 3070 | ......... 3071 | ......... 3072 | ......xx. 3073 | .....xx.. 3074 | ....xx... 3075 | ....xx... 3076 | ..xxxxxx. 3077 | ...xx.... 3078 | ...xx.... 3079 | ...xx.... 3080 | ..xx..... 3081 | ..xx..... 3082 | ..xx..... 3083 | .xx...... 3084 | xx....... 3085 | 3086 | char 160 3087 | width 9 3088 | ......... 3089 | ......... 3090 | ......... 3091 | ....xx... 3092 | ...xx.... 3093 | ......... 3094 | ..xxxxx.. 3095 | .xx...xx. 3096 | ...xxxxx. 3097 | .xxx..xx. 3098 | xx....xx. 3099 | xx..xxxx. 3100 | .xxxx.xx. 3101 | ......... 3102 | ......... 3103 | ......... 3104 | 3105 | char 161 3106 | width 9 3107 | ......... 3108 | ......... 3109 | ......... 3110 | ....xx... 3111 | ...xx.... 3112 | ......... 3113 | ...xx.... 3114 | ...xx.... 3115 | ...xx.... 3116 | ...xx.... 3117 | ...xx.... 3118 | ...xx.... 3119 | ...xx.... 3120 | ......... 3121 | ......... 3122 | ......... 3123 | 3124 | char 162 3125 | width 9 3126 | ......... 3127 | ......... 3128 | ......... 3129 | ....xx... 3130 | ...xx.... 3131 | ......... 3132 | ..xxxxx.. 3133 | .xx...xx. 3134 | xx....xx. 3135 | xx....xx. 3136 | xx....xx. 3137 | xx...xx.. 3138 | .xxxxx... 3139 | ......... 3140 | ......... 3141 | ......... 3142 | 3143 | char 163 3144 | width 9 3145 | ......... 3146 | ......... 3147 | ......... 3148 | ....xx... 3149 | ...xx.... 3150 | ......... 3151 | xx....xx. 3152 | xx....xx. 3153 | xx....xx. 3154 | xx...xxx. 3155 | xx..xxxx. 3156 | xx.xx.xx. 3157 | .xxx..xx. 3158 | ......... 3159 | ......... 3160 | ......... 3161 | 3162 | char 164 3163 | width 9 3164 | ......... 3165 | ......... 3166 | ......... 3167 | ..xxx.x.. 3168 | .x.xxx... 3169 | ......... 3170 | xx..xxx.. 3171 | xx.xx.xx. 3172 | xxxx..xx. 3173 | xxx...xx. 3174 | xx....xx. 3175 | xx....xx. 3176 | xx....xx. 3177 | ......... 3178 | ......... 3179 | ......... 3180 | 3181 | char 165 3182 | width 9 3183 | ......... 3184 | ..xxx.x.. 3185 | .x.xxx... 3186 | ......... 3187 | xx....xx. 3188 | xx....xx. 3189 | xxx...xx. 3190 | xxxx..xx. 3191 | xx.x..xx. 3192 | xx.xx.xx. 3193 | xx..xxxx. 3194 | xx...xxx. 3195 | xx....xx. 3196 | ......... 3197 | ......... 3198 | ......... 3199 | 3200 | char 166 3201 | width 9 3202 | ......... 3203 | ......... 3204 | ......... 3205 | ..xxxx... 3206 | .....xx.. 3207 | ...xxxx.. 3208 | .xx..xx.. 3209 | .xx.xxx.. 3210 | ..xx.xx.. 3211 | ......... 3212 | .xxxxxx.. 3213 | ......... 3214 | ......... 3215 | ......... 3216 | ......... 3217 | ......... 3218 | 3219 | char 167 3220 | width 9 3221 | ......... 3222 | ......... 3223 | ......... 3224 | ...xxx... 3225 | ..xx.xx.. 3226 | .xx..xx.. 3227 | .xx..xx.. 3228 | .xx.xx... 3229 | ..xxx.... 3230 | ......... 3231 | .xxxxxx.. 3232 | ......... 3233 | ......... 3234 | ......... 3235 | ......... 3236 | ......... 3237 | 3238 | char 168 3239 | width 9 3240 | ......... 3241 | ......... 3242 | ......... 3243 | ......... 3244 | ......... 3245 | ......... 3246 | ....xx... 3247 | ....xx... 3248 | ......... 3249 | ....xx... 3250 | ....xx... 3251 | ...xx.... 3252 | ..xx..... 3253 | .xx...xx. 3254 | xx...xx.. 3255 | .xxxxx... 3256 | 3257 | char 169 3258 | width 9 3259 | ......... 3260 | ......... 3261 | ......... 3262 | ......... 3263 | ......... 3264 | ......... 3265 | ......... 3266 | .xxxxxx.. 3267 | .xx...... 3268 | .xx...... 3269 | ......... 3270 | ......... 3271 | ......... 3272 | ......... 3273 | ......... 3274 | ......... 3275 | 3276 | char 170 3277 | width 9 3278 | ......... 3279 | ......... 3280 | ......... 3281 | ......... 3282 | ......... 3283 | ......... 3284 | ......... 3285 | .xxxxxx.. 3286 | .....xx.. 3287 | .....xx.. 3288 | ......... 3289 | ......... 3290 | ......... 3291 | ......... 3292 | ......... 3293 | ......... 3294 | 3295 | char 171 3296 | width 9 3297 | ......... 3298 | .xx...... 3299 | xxx...... 3300 | .xx...... 3301 | .xx....x. 3302 | .xx...xx. 3303 | .xx..xx.. 3304 | ....xx... 3305 | ...xx.... 3306 | ..xx..... 3307 | .xx.xxx.. 3308 | xx.xx.xx. 3309 | ......xx. 3310 | .....xx.. 3311 | ....xx.x. 3312 | ...xxxxx. 3313 | 3314 | char 172 3315 | width 9 3316 | ......... 3317 | .xx...... 3318 | xxx...... 3319 | .xx...... 3320 | .xx....x. 3321 | .xx...xx. 3322 | .xx..xx.. 3323 | ....xx... 3324 | ...xx.... 3325 | ..xx..... 3326 | .xx..xx.. 3327 | xx..xxx.. 3328 | ...x.xx.. 3329 | ...x.xxx. 3330 | ...xxxx.. 3331 | .....xx.. 3332 | 3333 | char 173 3334 | width 9 3335 | ......... 3336 | ......... 3337 | ......... 3338 | ...xx.... 3339 | ...xx.... 3340 | ......... 3341 | ...xx.... 3342 | ...xx.... 3343 | ...xx.... 3344 | ...xx.... 3345 | ...xx.... 3346 | ...xx.... 3347 | ...xx.... 3348 | ......... 3349 | ......... 3350 | ......... 3351 | 3352 | char 174 3353 | width 9 3354 | ......... 3355 | ......... 3356 | ......... 3357 | ......... 3358 | ......... 3359 | ......xx. 3360 | ..xx.xx.. 3361 | .xx.xx... 3362 | xx.xx.... 3363 | xx.xx.... 3364 | .xx.xx... 3365 | ..xx.xx.. 3366 | ......... 3367 | ......... 3368 | ......... 3369 | ......... 3370 | 3371 | char 175 3372 | width 9 3373 | ......... 3374 | ......... 3375 | ......... 3376 | ......... 3377 | ......... 3378 | ......... 3379 | .xx.xx... 3380 | ..xx.xx.. 3381 | ...xx.xx. 3382 | ...xx.xx. 3383 | ..xx.xx.. 3384 | .xx.xx... 3385 | xx....... 3386 | ......... 3387 | ......... 3388 | ......... 3389 | 3390 | char 176 3391 | width 9 3392 | x.....x.. 3393 | ...x..... 3394 | x.....x.. 3395 | ...x..... 3396 | x.....x.. 3397 | ...x..... 3398 | x.....x.. 3399 | ...x..... 3400 | x.....x.. 3401 | ...x..... 3402 | x.....x.. 3403 | ...x..... 3404 | x.....x.. 3405 | ...x..... 3406 | x.....x.. 3407 | ...x..... 3408 | 3409 | char 177 3410 | width 9 3411 | ......... 3412 | x..x.x.x. 3413 | ......... 3414 | x.x.x..x. 3415 | ......... 3416 | x..x.x.x. 3417 | ......... 3418 | x.x.x..x. 3419 | ......... 3420 | x..x.x.x. 3421 | ......... 3422 | x.x.x..x. 3423 | ......... 3424 | x..x.x.x. 3425 | ......... 3426 | x.x.x..x. 3427 | 3428 | char 178 3429 | width 9 3430 | x..x..x.. 3431 | .x..x..x. 3432 | x..x..x.. 3433 | .x..x..x. 3434 | x..x..x.. 3435 | .x..x..x. 3436 | x..x..x.. 3437 | .x..x..x. 3438 | x..x..x.. 3439 | .x..x..x. 3440 | x..x..x.. 3441 | .x..x..x. 3442 | x..x..x.. 3443 | .x..x..x. 3444 | x..x..x.. 3445 | .x..x..x. 3446 | 3447 | char 179 3448 | width 9 3449 | ...xx.... 3450 | ...xx.... 3451 | ...xx.... 3452 | ...xx.... 3453 | ...xx.... 3454 | ...xx.... 3455 | ...xx.... 3456 | ...xx.... 3457 | ...xx.... 3458 | ...xx.... 3459 | ...xx.... 3460 | ...xx.... 3461 | ...xx.... 3462 | ...xx.... 3463 | ...xx.... 3464 | ...xx.... 3465 | 3466 | char 180 3467 | width 9 3468 | ...xx.... 3469 | ...xx.... 3470 | ...xx.... 3471 | ...xx.... 3472 | ...xx.... 3473 | ...xx.... 3474 | ...xx.... 3475 | ...xx.... 3476 | xxxxx.... 3477 | ...xx.... 3478 | ...xx.... 3479 | ...xx.... 3480 | ...xx.... 3481 | ...xx.... 3482 | ...xx.... 3483 | ...xx.... 3484 | 3485 | char 181 3486 | width 9 3487 | ...xx.... 3488 | ...xx.... 3489 | ...xx.... 3490 | ...xx.... 3491 | ...xx.... 3492 | ...xx.... 3493 | xxxxx.... 3494 | xxxxx.... 3495 | xxxxx.... 3496 | ...xx.... 3497 | ...xx.... 3498 | ...xx.... 3499 | ...xx.... 3500 | ...xx.... 3501 | ...xx.... 3502 | ...xx.... 3503 | 3504 | char 182 3505 | width 9 3506 | ..xxxx... 3507 | ..xxxx... 3508 | ..xxxx... 3509 | ..xxxx... 3510 | ..xxxx... 3511 | ..xxxx... 3512 | ..xxxx... 3513 | ..xxxx... 3514 | xxxxxx... 3515 | ..xxxx... 3516 | ..xxxx... 3517 | ..xxxx... 3518 | ..xxxx... 3519 | ..xxxx... 3520 | ..xxxx... 3521 | ..xxxx... 3522 | 3523 | char 183 3524 | width 9 3525 | ......... 3526 | ......... 3527 | ......... 3528 | ......... 3529 | ......... 3530 | ......... 3531 | ......... 3532 | ......... 3533 | xxxxxx... 3534 | ..xxxx... 3535 | ..xxxx... 3536 | ..xxxx... 3537 | ..xxxx... 3538 | ..xxxx... 3539 | ..xxxx... 3540 | ..xxxx... 3541 | 3542 | char 184 3543 | width 9 3544 | ......... 3545 | ......... 3546 | ......... 3547 | ......... 3548 | ......... 3549 | ......... 3550 | xxxxx.... 3551 | xxxxx.... 3552 | xxxxx.... 3553 | ...xx.... 3554 | ...xx.... 3555 | ...xx.... 3556 | ...xx.... 3557 | ...xx.... 3558 | ...xx.... 3559 | ...xx.... 3560 | 3561 | char 185 3562 | width 9 3563 | ..xxxx... 3564 | ..xxxx... 3565 | ..xxxx... 3566 | ..xxxx... 3567 | ..xxxx... 3568 | ..xxxx... 3569 | xxxxxx... 3570 | xxxxxx... 3571 | xxxxxx... 3572 | ..xxxx... 3573 | ..xxxx... 3574 | ..xxxx... 3575 | ..xxxx... 3576 | ..xxxx... 3577 | ..xxxx... 3578 | ..xxxx... 3579 | 3580 | char 186 3581 | width 9 3582 | ..xxxx... 3583 | ..xxxx... 3584 | ..xxxx... 3585 | ..xxxx... 3586 | ..xxxx... 3587 | ..xxxx... 3588 | ..xxxx... 3589 | ..xxxx... 3590 | ..xxxx... 3591 | ..xxxx... 3592 | ..xxxx... 3593 | ..xxxx... 3594 | ..xxxx... 3595 | ..xxxx... 3596 | ..xxxx... 3597 | ..xxxx... 3598 | 3599 | char 187 3600 | width 9 3601 | ......... 3602 | ......... 3603 | ......... 3604 | ......... 3605 | ......... 3606 | ......... 3607 | xxxxxx... 3608 | xxxxxx... 3609 | xxxxxx... 3610 | ..xxxx... 3611 | ..xxxx... 3612 | ..xxxx... 3613 | ..xxxx... 3614 | ..xxxx... 3615 | ..xxxx... 3616 | ..xxxx... 3617 | 3618 | char 188 3619 | width 9 3620 | ..xxxx... 3621 | ..xxxx... 3622 | ..xxxx... 3623 | ..xxxx... 3624 | ..xxxx... 3625 | ..xxxx... 3626 | xxxxxx... 3627 | xxxxxx... 3628 | xxxxxx... 3629 | ......... 3630 | ......... 3631 | ......... 3632 | ......... 3633 | ......... 3634 | ......... 3635 | ......... 3636 | 3637 | char 189 3638 | width 9 3639 | ..xxxx... 3640 | ..xxxx... 3641 | ..xxxx... 3642 | ..xxxx... 3643 | ..xxxx... 3644 | ..xxxx... 3645 | ..xxxx... 3646 | ..xxxx... 3647 | xxxxxx... 3648 | ......... 3649 | ......... 3650 | ......... 3651 | ......... 3652 | ......... 3653 | ......... 3654 | ......... 3655 | 3656 | char 190 3657 | width 9 3658 | ...xx.... 3659 | ...xx.... 3660 | ...xx.... 3661 | ...xx.... 3662 | ...xx.... 3663 | ...xx.... 3664 | xxxxx.... 3665 | xxxxx.... 3666 | xxxxx.... 3667 | ......... 3668 | ......... 3669 | ......... 3670 | ......... 3671 | ......... 3672 | ......... 3673 | ......... 3674 | 3675 | char 191 3676 | width 9 3677 | ......... 3678 | ......... 3679 | ......... 3680 | ......... 3681 | ......... 3682 | ......... 3683 | ......... 3684 | ......... 3685 | xxxxx.... 3686 | ...xx.... 3687 | ...xx.... 3688 | ...xx.... 3689 | ...xx.... 3690 | ...xx.... 3691 | ...xx.... 3692 | ...xx.... 3693 | 3694 | char 192 3695 | width 9 3696 | ...xx.... 3697 | ...xx.... 3698 | ...xx.... 3699 | ...xx.... 3700 | ...xx.... 3701 | ...xx.... 3702 | ...xx.... 3703 | ...xx.... 3704 | ...xxxxxx 3705 | ......... 3706 | ......... 3707 | ......... 3708 | ......... 3709 | ......... 3710 | ......... 3711 | ......... 3712 | 3713 | char 193 3714 | width 9 3715 | ...xx.... 3716 | ...xx.... 3717 | ...xx.... 3718 | ...xx.... 3719 | ...xx.... 3720 | ...xx.... 3721 | ...xx.... 3722 | ...xx.... 3723 | xxxxxxxxx 3724 | ......... 3725 | ......... 3726 | ......... 3727 | ......... 3728 | ......... 3729 | ......... 3730 | ......... 3731 | 3732 | char 194 3733 | width 9 3734 | ......... 3735 | ......... 3736 | ......... 3737 | ......... 3738 | ......... 3739 | ......... 3740 | ......... 3741 | ......... 3742 | xxxxxxxxx 3743 | ...xx.... 3744 | ...xx.... 3745 | ...xx.... 3746 | ...xx.... 3747 | ...xx.... 3748 | ...xx.... 3749 | ...xx.... 3750 | 3751 | char 195 3752 | width 9 3753 | ...xx.... 3754 | ...xx.... 3755 | ...xx.... 3756 | ...xx.... 3757 | ...xx.... 3758 | ...xx.... 3759 | ...xx.... 3760 | ...xx.... 3761 | ...xxxxxx 3762 | ...xx.... 3763 | ...xx.... 3764 | ...xx.... 3765 | ...xx.... 3766 | ...xx.... 3767 | ...xx.... 3768 | ...xx.... 3769 | 3770 | char 196 3771 | width 9 3772 | ......... 3773 | ......... 3774 | ......... 3775 | ......... 3776 | ......... 3777 | ......... 3778 | ......... 3779 | ......... 3780 | xxxxxxxxx 3781 | ......... 3782 | ......... 3783 | ......... 3784 | ......... 3785 | ......... 3786 | ......... 3787 | ......... 3788 | 3789 | char 197 3790 | width 9 3791 | ...xx.... 3792 | ...xx.... 3793 | ...xx.... 3794 | ...xx.... 3795 | ...xx.... 3796 | ...xx.... 3797 | ...xx.... 3798 | ...xx.... 3799 | xxxxxxxxx 3800 | ...xx.... 3801 | ...xx.... 3802 | ...xx.... 3803 | ...xx.... 3804 | ...xx.... 3805 | ...xx.... 3806 | ...xx.... 3807 | 3808 | char 198 3809 | width 9 3810 | ...xx.... 3811 | ...xx.... 3812 | ...xx.... 3813 | ...xx.... 3814 | ...xx.... 3815 | ...xx.... 3816 | ...xxxxxx 3817 | ...xxxxxx 3818 | ...xxxxxx 3819 | ...xx.... 3820 | ...xx.... 3821 | ...xx.... 3822 | ...xx.... 3823 | ...xx.... 3824 | ...xx.... 3825 | ...xx.... 3826 | 3827 | char 199 3828 | width 9 3829 | ..xxxx... 3830 | ..xxxx... 3831 | ..xxxx... 3832 | ..xxxx... 3833 | ..xxxx... 3834 | ..xxxx... 3835 | ..xxxx... 3836 | ..xxxx... 3837 | ..xxxxxxx 3838 | ..xxxx... 3839 | ..xxxx... 3840 | ..xxxx... 3841 | ..xxxx... 3842 | ..xxxx... 3843 | ..xxxx... 3844 | ..xxxx... 3845 | 3846 | char 200 3847 | width 9 3848 | ..xxxx... 3849 | ..xxxx... 3850 | ..xxxx... 3851 | ..xxxx... 3852 | ..xxxx... 3853 | ..xxxx... 3854 | ..xxxxxxx 3855 | ..xxxxxxx 3856 | ..xxxxxxx 3857 | ......... 3858 | ......... 3859 | ......... 3860 | ......... 3861 | ......... 3862 | ......... 3863 | ......... 3864 | 3865 | char 201 3866 | width 9 3867 | ......... 3868 | ......... 3869 | ......... 3870 | ......... 3871 | ......... 3872 | ......... 3873 | ..xxxxxxx 3874 | ..xxxxxxx 3875 | ..xxxxxxx 3876 | ..xxxx... 3877 | ..xxxx... 3878 | ..xxxx... 3879 | ..xxxx... 3880 | ..xxxx... 3881 | ..xxxx... 3882 | ..xxxx... 3883 | 3884 | char 202 3885 | width 9 3886 | ..xxxx... 3887 | ..xxxx... 3888 | ..xxxx... 3889 | ..xxxx... 3890 | ..xxxx... 3891 | ..xxxx... 3892 | xxxxxxxxx 3893 | xxxxxxxxx 3894 | xxxxxxxxx 3895 | ......... 3896 | ......... 3897 | ......... 3898 | ......... 3899 | ......... 3900 | ......... 3901 | ......... 3902 | 3903 | char 203 3904 | width 9 3905 | ......... 3906 | ......... 3907 | ......... 3908 | ......... 3909 | ......... 3910 | ......... 3911 | xxxxxxxxx 3912 | xxxxxxxxx 3913 | xxxxxxxxx 3914 | ..xxxx... 3915 | ..xxxx... 3916 | ..xxxx... 3917 | ..xxxx... 3918 | ..xxxx... 3919 | ..xxxx... 3920 | ..xxxx... 3921 | 3922 | char 204 3923 | width 9 3924 | ..xxxx... 3925 | ..xxxx... 3926 | ..xxxx... 3927 | ..xxxx... 3928 | ..xxxx... 3929 | ..xxxx... 3930 | ..xxxxxxx 3931 | ..xxxxxxx 3932 | ..xxxxxxx 3933 | ..xxxx... 3934 | ..xxxx... 3935 | ..xxxx... 3936 | ..xxxx... 3937 | ..xxxx... 3938 | ..xxxx... 3939 | ..xxxx... 3940 | 3941 | char 205 3942 | width 9 3943 | ......... 3944 | ......... 3945 | ......... 3946 | ......... 3947 | ......... 3948 | ......... 3949 | xxxxxxxxx 3950 | xxxxxxxxx 3951 | xxxxxxxxx 3952 | ......... 3953 | ......... 3954 | ......... 3955 | ......... 3956 | ......... 3957 | ......... 3958 | ......... 3959 | 3960 | char 206 3961 | width 9 3962 | ..xxxx... 3963 | ..xxxx... 3964 | ..xxxx... 3965 | ..xxxx... 3966 | ..xxxx... 3967 | ..xxxx... 3968 | xxxxxxxxx 3969 | xxxxxxxxx 3970 | xxxxxxxxx 3971 | ..xxxx... 3972 | ..xxxx... 3973 | ..xxxx... 3974 | ..xxxx... 3975 | ..xxxx... 3976 | ..xxxx... 3977 | ..xxxx... 3978 | 3979 | char 207 3980 | width 9 3981 | ...xx.... 3982 | ...xx.... 3983 | ...xx.... 3984 | ...xx.... 3985 | ...xx.... 3986 | ...xx.... 3987 | xxxxxxxxx 3988 | xxxxxxxxx 3989 | xxxxxxxxx 3990 | ......... 3991 | ......... 3992 | ......... 3993 | ......... 3994 | ......... 3995 | ......... 3996 | ......... 3997 | 3998 | char 208 3999 | width 9 4000 | ..xxxx... 4001 | ..xxxx... 4002 | ..xxxx... 4003 | ..xxxx... 4004 | ..xxxx... 4005 | ..xxxx... 4006 | ..xxxx... 4007 | ..xxxx... 4008 | xxxxxxxxx 4009 | ......... 4010 | ......... 4011 | ......... 4012 | ......... 4013 | ......... 4014 | ......... 4015 | ......... 4016 | 4017 | char 209 4018 | width 9 4019 | ......... 4020 | ......... 4021 | ......... 4022 | ......... 4023 | ......... 4024 | ......... 4025 | xxxxxxxxx 4026 | xxxxxxxxx 4027 | xxxxxxxxx 4028 | ...xx.... 4029 | ...xx.... 4030 | ...xx.... 4031 | ...xx.... 4032 | ...xx.... 4033 | ...xx.... 4034 | ...xx.... 4035 | 4036 | char 210 4037 | width 9 4038 | ......... 4039 | ......... 4040 | ......... 4041 | ......... 4042 | ......... 4043 | ......... 4044 | ......... 4045 | ......... 4046 | xxxxxxxxx 4047 | ..xxxx... 4048 | ..xxxx... 4049 | ..xxxx... 4050 | ..xxxx... 4051 | ..xxxx... 4052 | ..xxxx... 4053 | ..xxxx... 4054 | 4055 | char 211 4056 | width 9 4057 | ..xxxx... 4058 | ..xxxx... 4059 | ..xxxx... 4060 | ..xxxx... 4061 | ..xxxx... 4062 | ..xxxx... 4063 | ..xxxx... 4064 | ..xxxx... 4065 | ..xxxxxxx 4066 | ......... 4067 | ......... 4068 | ......... 4069 | ......... 4070 | ......... 4071 | ......... 4072 | ......... 4073 | 4074 | char 212 4075 | width 9 4076 | ...xx.... 4077 | ...xx.... 4078 | ...xx.... 4079 | ...xx.... 4080 | ...xx.... 4081 | ...xx.... 4082 | ...xxxxxx 4083 | ...xxxxxx 4084 | ...xxxxxx 4085 | ......... 4086 | ......... 4087 | ......... 4088 | ......... 4089 | ......... 4090 | ......... 4091 | ......... 4092 | 4093 | char 213 4094 | width 9 4095 | ......... 4096 | ......... 4097 | ......... 4098 | ......... 4099 | ......... 4100 | ......... 4101 | ...xxxxxx 4102 | ...xxxxxx 4103 | ...xxxxxx 4104 | ...xx.... 4105 | ...xx.... 4106 | ...xx.... 4107 | ...xx.... 4108 | ...xx.... 4109 | ...xx.... 4110 | ...xx.... 4111 | 4112 | char 214 4113 | width 9 4114 | ......... 4115 | ......... 4116 | ......... 4117 | ......... 4118 | ......... 4119 | ......... 4120 | ......... 4121 | ......... 4122 | ..xxxxxxx 4123 | ..xxxx... 4124 | ..xxxx... 4125 | ..xxxx... 4126 | ..xxxx... 4127 | ..xxxx... 4128 | ..xxxx... 4129 | ..xxxx... 4130 | 4131 | char 215 4132 | width 9 4133 | ..xxxx... 4134 | ..xxxx... 4135 | ..xxxx... 4136 | ..xxxx... 4137 | ..xxxx... 4138 | ..xxxx... 4139 | ..xxxx... 4140 | ..xxxx... 4141 | xxxxxxxxx 4142 | ..xxxx... 4143 | ..xxxx... 4144 | ..xxxx... 4145 | ..xxxx... 4146 | ..xxxx... 4147 | ..xxxx... 4148 | ..xxxx... 4149 | 4150 | char 216 4151 | width 9 4152 | ...xx.... 4153 | ...xx.... 4154 | ...xx.... 4155 | ...xx.... 4156 | ...xx.... 4157 | ...xx.... 4158 | xxxxxxxxx 4159 | xxxxxxxxx 4160 | xxxxxxxxx 4161 | ...xx.... 4162 | ...xx.... 4163 | ...xx.... 4164 | ...xx.... 4165 | ...xx.... 4166 | ...xx.... 4167 | ...xx.... 4168 | 4169 | char 217 4170 | width 9 4171 | ...xx.... 4172 | ...xx.... 4173 | ...xx.... 4174 | ...xx.... 4175 | ...xx.... 4176 | ...xx.... 4177 | ...xx.... 4178 | ...xx.... 4179 | xxxxx.... 4180 | ......... 4181 | ......... 4182 | ......... 4183 | ......... 4184 | ......... 4185 | ......... 4186 | ......... 4187 | 4188 | char 218 4189 | width 9 4190 | ......... 4191 | ......... 4192 | ......... 4193 | ......... 4194 | ......... 4195 | ......... 4196 | ......... 4197 | ......... 4198 | ...xxxxxx 4199 | ...xx.... 4200 | ...xx.... 4201 | ...xx.... 4202 | ...xx.... 4203 | ...xx.... 4204 | ...xx.... 4205 | ...xx.... 4206 | 4207 | char 219 4208 | width 9 4209 | xxxxxxxxx 4210 | xxxxxxxxx 4211 | xxxxxxxxx 4212 | xxxxxxxxx 4213 | xxxxxxxxx 4214 | xxxxxxxxx 4215 | xxxxxxxxx 4216 | xxxxxxxxx 4217 | xxxxxxxxx 4218 | xxxxxxxxx 4219 | xxxxxxxxx 4220 | xxxxxxxxx 4221 | xxxxxxxxx 4222 | xxxxxxxxx 4223 | xxxxxxxxx 4224 | xxxxxxxxx 4225 | 4226 | char 220 4227 | width 9 4228 | ......... 4229 | ......... 4230 | ......... 4231 | ......... 4232 | ......... 4233 | ......... 4234 | ......... 4235 | ......... 4236 | xxxxxxxxx 4237 | xxxxxxxxx 4238 | xxxxxxxxx 4239 | xxxxxxxxx 4240 | xxxxxxxxx 4241 | xxxxxxxxx 4242 | xxxxxxxxx 4243 | xxxxxxxxx 4244 | 4245 | char 221 4246 | width 9 4247 | xxxx..... 4248 | xxxx..... 4249 | xxxx..... 4250 | xxxx..... 4251 | xxxx..... 4252 | xxxx..... 4253 | xxxx..... 4254 | xxxx..... 4255 | xxxx..... 4256 | xxxx..... 4257 | xxxx..... 4258 | xxxx..... 4259 | xxxx..... 4260 | xxxx..... 4261 | xxxx..... 4262 | xxxx..... 4263 | 4264 | char 222 4265 | width 9 4266 | ....xxxxx 4267 | ....xxxxx 4268 | ....xxxxx 4269 | ....xxxxx 4270 | ....xxxxx 4271 | ....xxxxx 4272 | ....xxxxx 4273 | ....xxxxx 4274 | ....xxxxx 4275 | ....xxxxx 4276 | ....xxxxx 4277 | ....xxxxx 4278 | ....xxxxx 4279 | ....xxxxx 4280 | ....xxxxx 4281 | ....xxxxx 4282 | 4283 | char 223 4284 | width 9 4285 | xxxxxxxxx 4286 | xxxxxxxxx 4287 | xxxxxxxxx 4288 | xxxxxxxxx 4289 | xxxxxxxxx 4290 | xxxxxxxxx 4291 | xxxxxxxxx 4292 | xxxxxxxxx 4293 | ......... 4294 | ......... 4295 | ......... 4296 | ......... 4297 | ......... 4298 | ......... 4299 | ......... 4300 | ......... 4301 | 4302 | char 224 4303 | width 9 4304 | ......... 4305 | ......... 4306 | ......... 4307 | ......... 4308 | ......... 4309 | ......... 4310 | ..xxx.xx. 4311 | .xx.xxxx. 4312 | xx...xx.. 4313 | xx...xx.. 4314 | xx...xx.. 4315 | xx..xxx.. 4316 | .xxxx.xx. 4317 | ......... 4318 | ......... 4319 | ......... 4320 | 4321 | char 225 4322 | width 9 4323 | ......... 4324 | ......... 4325 | ......... 4326 | ..xxxx... 4327 | .xx..xx.. 4328 | xx...xx.. 4329 | xx..xx... 4330 | xx.xx.... 4331 | xx.xx.... 4332 | xx..xxx.. 4333 | xx....xx. 4334 | xx.x..xx. 4335 | xx.xxxx.. 4336 | ......... 4337 | ......... 4338 | ......... 4339 | 4340 | char 226 4341 | width 9 4342 | ......... 4343 | ......... 4344 | ......... 4345 | ...xxxxx. 4346 | xxxx..xx. 4347 | xx....xx. 4348 | xx....... 4349 | xx....... 4350 | xx....... 4351 | xx....... 4352 | xx....... 4353 | xx....... 4354 | xx....... 4355 | ......... 4356 | ......... 4357 | ......... 4358 | 4359 | char 227 4360 | width 9 4361 | ......... 4362 | ......... 4363 | ......... 4364 | ......... 4365 | ......... 4366 | ......... 4367 | ....xxxx. 4368 | xxxxxxx.. 4369 | .xx..xx.. 4370 | .xx..xx.. 4371 | .xx..xx.. 4372 | .xx..xx.. 4373 | .xx..x... 4374 | ......... 4375 | ......... 4376 | ......... 4377 | 4378 | char 228 4379 | width 9 4380 | ......... 4381 | ......... 4382 | ......... 4383 | ...xxxxx. 4384 | xxxx..... 4385 | .xx...... 4386 | ..xx..... 4387 | ...xx.... 4388 | ..xx..... 4389 | .xx...... 4390 | xx....... 4391 | xx.xxxxx. 4392 | xxxx..... 4393 | ......... 4394 | ......... 4395 | ......... 4396 | 4397 | char 229 4398 | width 9 4399 | ......... 4400 | ......... 4401 | ......... 4402 | ......... 4403 | ......... 4404 | ......... 4405 | ..xxxxxx. 4406 | .xx..x... 4407 | xx...xx.. 4408 | xx...xx.. 4409 | xx...xx.. 4410 | xx..xx... 4411 | .xxxx.... 4412 | ......... 4413 | ......... 4414 | ......... 4415 | 4416 | char 230 4417 | width 9 4418 | ......... 4419 | ......... 4420 | ......... 4421 | ......... 4422 | ......... 4423 | ......... 4424 | .xx...xx. 4425 | .xx...xx. 4426 | .xx...xx. 4427 | .xx...xx. 4428 | .xx..xxx. 4429 | .xx.xxxx. 4430 | .xxxx.x.. 4431 | .xx...... 4432 | .xx...... 4433 | xxx...... 4434 | 4435 | char 231 4436 | width 9 4437 | ......... 4438 | ......... 4439 | ......... 4440 | ......... 4441 | ......... 4442 | ......... 4443 | ...xxxxx. 4444 | xxxxx.... 4445 | ...xx.... 4446 | ...xx.... 4447 | ...xx.... 4448 | ...xx.... 4449 | ...x..... 4450 | ......... 4451 | ......... 4452 | ......... 4453 | 4454 | char 232 4455 | width 9 4456 | ......... 4457 | ......... 4458 | ......... 4459 | ...xxx... 4460 | ..xxx.... 4461 | ...xxxx.. 4462 | .xxxx.xx. 4463 | xx.xx.xx. 4464 | xx.xx.xx. 4465 | xx.xxxx.. 4466 | .xxxx.... 4467 | ...xxx... 4468 | ..xxx.... 4469 | ......... 4470 | ......... 4471 | ......... 4472 | 4473 | char 233 4474 | width 9 4475 | ......... 4476 | ......... 4477 | ......... 4478 | ..xxxxx.. 4479 | .xx...xx. 4480 | xx....xx. 4481 | xx..x.xx. 4482 | xx.xx.xx. 4483 | xx.xx.xx. 4484 | xx.x..xx. 4485 | xx....xx. 4486 | xx...xx.. 4487 | .xxxxx... 4488 | ......... 4489 | ......... 4490 | ......... 4491 | 4492 | char 234 4493 | width 9 4494 | ......... 4495 | ......... 4496 | ......... 4497 | ..xxxxx.. 4498 | .xx...xx. 4499 | xx....xx. 4500 | xx....xx. 4501 | xx....xx. 4502 | xx....xx. 4503 | xx...xx.. 4504 | .xx..x... 4505 | ..x..xxx. 4506 | xxx...... 4507 | ......... 4508 | ......... 4509 | ......... 4510 | 4511 | char 235 4512 | width 9 4513 | ......... 4514 | ......... 4515 | ......... 4516 | ..xxxxx.. 4517 | .xx...... 4518 | ..xxx.... 4519 | ..xxxx... 4520 | .xx..xx.. 4521 | xx...xx.. 4522 | xx...xx.. 4523 | xx...xx.. 4524 | xx..xx... 4525 | .xxxx.... 4526 | ......... 4527 | ......... 4528 | ......... 4529 | 4530 | char 236 4531 | width 9 4532 | ......... 4533 | ......... 4534 | ......... 4535 | ......... 4536 | ......... 4537 | ......... 4538 | .xx..xxx. 4539 | x..xxx..x 4540 | x..xxx..x 4541 | .xxx..xx. 4542 | ......... 4543 | ......... 4544 | ......... 4545 | ......... 4546 | ......... 4547 | ......... 4548 | 4549 | char 237 4550 | width 9 4551 | ......... 4552 | ......... 4553 | ......... 4554 | .....x... 4555 | ....xx... 4556 | ....xx... 4557 | ..xxxxx.. 4558 | .xx.x.xx. 4559 | xx.xx.xx. 4560 | xx.xx.xx. 4561 | xx.xx.xx. 4562 | xxxx.xx.. 4563 | .xxxxx... 4564 | ..xx..... 4565 | ..xx..... 4566 | ..x...... 4567 | 4568 | char 238 4569 | width 9 4570 | ......... 4571 | ......... 4572 | ......... 4573 | ......... 4574 | ......... 4575 | ......... 4576 | ..xxxxx.. 4577 | .xxx..xx. 4578 | xxx...... 4579 | .xxxx.... 4580 | .xx...xx. 4581 | xxx..xx.. 4582 | .xxxxx... 4583 | ......... 4584 | ......... 4585 | ......... 4586 | 4587 | char 239 4588 | width 9 4589 | ......... 4590 | ......... 4591 | ......... 4592 | ......... 4593 | ..xxxx... 4594 | .xx..xx.. 4595 | xx....xx. 4596 | xx....xx. 4597 | xx....xx. 4598 | xx....xx. 4599 | xx....xx. 4600 | xx....xx. 4601 | xx....xx. 4602 | ......... 4603 | ......... 4604 | ......... 4605 | 4606 | char 240 4607 | width 9 4608 | ......... 4609 | ......... 4610 | ......... 4611 | ......... 4612 | ......... 4613 | xxxxxxxx. 4614 | ......... 4615 | ......... 4616 | xxxxxxxx. 4617 | ......... 4618 | ......... 4619 | xxxxxxxx. 4620 | ......... 4621 | ......... 4622 | ......... 4623 | ......... 4624 | 4625 | char 241 4626 | width 9 4627 | ......... 4628 | ......... 4629 | ......... 4630 | ......... 4631 | ...xx.... 4632 | ...xx.... 4633 | .xxxxxx.. 4634 | ...xx.... 4635 | ...xx.... 4636 | ......... 4637 | ......... 4638 | .xxxxxx.. 4639 | ......... 4640 | ......... 4641 | ......... 4642 | ......... 4643 | 4644 | char 242 4645 | width 9 4646 | ......... 4647 | ......... 4648 | ......... 4649 | ..xx..... 4650 | ...xx.... 4651 | ....xx... 4652 | .....xx.. 4653 | ....xx... 4654 | ...xx.... 4655 | ..xx..... 4656 | ......... 4657 | .xxxxxx.. 4658 | ......... 4659 | ......... 4660 | ......... 4661 | ......... 4662 | 4663 | char 243 4664 | width 9 4665 | ......... 4666 | ......... 4667 | ......... 4668 | ....xx... 4669 | ...xx.... 4670 | ..xx..... 4671 | .xx...... 4672 | ..xx..... 4673 | ...xx.... 4674 | ....xx... 4675 | ......... 4676 | .xxxxxx.. 4677 | ......... 4678 | ......... 4679 | ......... 4680 | ......... 4681 | 4682 | char 244 4683 | width 9 4684 | ......... 4685 | ....xxx.. 4686 | ...xx.xx. 4687 | ...xx.xx. 4688 | ...xx.... 4689 | ...xx.... 4690 | ...xx.... 4691 | ...xx.... 4692 | ...xx.... 4693 | ...xx.... 4694 | ...xx.... 4695 | ...xx.... 4696 | ...xx.... 4697 | ...xx.... 4698 | ...xx.... 4699 | ...xx.... 4700 | 4701 | char 245 4702 | width 9 4703 | ...xx.... 4704 | ...xx.... 4705 | ...xx.... 4706 | ...xx.... 4707 | ...xx.... 4708 | ...xx.... 4709 | ...xx.... 4710 | ...xx.... 4711 | ...xx.... 4712 | ...xx.... 4713 | ...xx.... 4714 | ...xx.... 4715 | ...xx.... 4716 | xx.xx.... 4717 | xx.xx.... 4718 | .xxx..... 4719 | 4720 | char 246 4721 | width 9 4722 | ......... 4723 | ......... 4724 | ......... 4725 | ......... 4726 | ......... 4727 | ...xx.... 4728 | ...xx.... 4729 | ......... 4730 | .xxxxxx.. 4731 | ......... 4732 | ...xx.... 4733 | ...xx.... 4734 | ......... 4735 | ......... 4736 | ......... 4737 | ......... 4738 | 4739 | char 247 4740 | width 9 4741 | ......... 4742 | ......... 4743 | ......... 4744 | ......... 4745 | ......... 4746 | ......... 4747 | .xxx.xx.. 4748 | xx.xxx... 4749 | ......... 4750 | .xxx.xx.. 4751 | xx.xxx... 4752 | ......... 4753 | ......... 4754 | ......... 4755 | ......... 4756 | ......... 4757 | 4758 | char 248 4759 | width 9 4760 | ......... 4761 | ......... 4762 | ......... 4763 | ..xxxx... 4764 | .xx..xx.. 4765 | .xx..xx.. 4766 | ..xxxx... 4767 | ......... 4768 | ......... 4769 | ......... 4770 | ......... 4771 | ......... 4772 | ......... 4773 | ......... 4774 | ......... 4775 | ......... 4776 | 4777 | char 249 4778 | width 9 4779 | ......... 4780 | ......... 4781 | ......... 4782 | ......... 4783 | ......... 4784 | ......... 4785 | ......... 4786 | ...xx.... 4787 | ...xx.... 4788 | ......... 4789 | ......... 4790 | ......... 4791 | ......... 4792 | ......... 4793 | ......... 4794 | ......... 4795 | 4796 | char 250 4797 | width 9 4798 | ......... 4799 | ......... 4800 | ......... 4801 | ......... 4802 | ......... 4803 | ......... 4804 | ......... 4805 | ......... 4806 | ...xx.... 4807 | ......... 4808 | ......... 4809 | ......... 4810 | ......... 4811 | ......... 4812 | ......... 4813 | ......... 4814 | 4815 | char 251 4816 | width 9 4817 | ......... 4818 | .......xx 4819 | .......x. 4820 | ......xx. 4821 | ......x.. 4822 | .....xx.. 4823 | .....x... 4824 | ....xx... 4825 | ....x.... 4826 | xx.xx.... 4827 | .x.x..... 4828 | .xxx..... 4829 | ..x...... 4830 | ......... 4831 | ......... 4832 | ......... 4833 | 4834 | char 252 4835 | width 9 4836 | ......... 4837 | ......... 4838 | ......... 4839 | .xx.xx... 4840 | .xxxxxx.. 4841 | .xxx.xx.. 4842 | .xx..xx.. 4843 | .xx..xx.. 4844 | .xx..xx.. 4845 | ......... 4846 | ......... 4847 | ......... 4848 | ......... 4849 | ......... 4850 | ......... 4851 | ......... 4852 | 4853 | char 253 4854 | width 9 4855 | ......... 4856 | ......... 4857 | ......... 4858 | ..xxxx... 4859 | .xx..xx.. 4860 | ....xx... 4861 | ...xx.... 4862 | ..xx..x.. 4863 | .xxxxxx.. 4864 | ......... 4865 | ......... 4866 | ......... 4867 | ......... 4868 | ......... 4869 | ......... 4870 | ......... 4871 | 4872 | char 254 4873 | width 9 4874 | ......... 4875 | ......... 4876 | ......... 4877 | ......... 4878 | ......... 4879 | .xxxxxx.. 4880 | .xxxxxx.. 4881 | .xxxxxx.. 4882 | .xxxxxx.. 4883 | .xxxxxx.. 4884 | .xxxxxx.. 4885 | ......... 4886 | ......... 4887 | ......... 4888 | ......... 4889 | ......... 4890 | 4891 | char 255 4892 | width 9 4893 | ......... 4894 | ......... 4895 | ......... 4896 | ......... 4897 | ......... 4898 | ......... 4899 | ......... 4900 | ......... 4901 | ......... 4902 | ......... 4903 | ......... 4904 | ......... 4905 | ......... 4906 | ......... 4907 | ......... 4908 | ......... 4909 | --------------------------------------------------------------------------------