TFT

Dependencies:   mbed

Fork of Ovation_Controller_1 by Andrew R

Committer:
bf1891
Date:
Thu Aug 28 15:18:07 2014 +0000
Revision:
3:92845c139aca
Parent:
1:ecf8078bf531
publish;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewcrussell 1:ecf8078bf531 1 /*******************************************************************************************
andrewcrussell 1:ecf8078bf531 2 Font name: Calibri
andrewcrussell 1:ecf8078bf531 3 Font width: varialbe (proportional font)
andrewcrussell 1:ecf8078bf531 4 Font height: 45
andrewcrussell 1:ecf8078bf531 5 Data length: 8 bits
andrewcrussell 1:ecf8078bf531 6 Data format: Big Endian, Column based, Column preferred, Unpacked
andrewcrussell 1:ecf8078bf531 7
andrewcrussell 1:ecf8078bf531 8 Create time: 22:57 03-22-2011 by BitFontCreator (e-mail: support@iseatech.com)
andrewcrussell 1:ecf8078bf531 9 *******************************************************************************************/
andrewcrussell 1:ecf8078bf531 10
andrewcrussell 1:ecf8078bf531 11 /*******************************************************************************************
andrewcrussell 1:ecf8078bf531 12 Data table provides the bitmap data of each character.
andrewcrussell 1:ecf8078bf531 13
andrewcrussell 1:ecf8078bf531 14 To get the starting data offset of character 'A', you can use the following expression:
andrewcrussell 1:ecf8078bf531 15
andrewcrussell 1:ecf8078bf531 16 const unsigned char index = index_table['A'];
andrewcrussell 1:ecf8078bf531 17 const unsigned int offset = offset_table[index];
andrewcrussell 1:ecf8078bf531 18 const unsigned char *pData = data_table[offset];
andrewcrussell 1:ecf8078bf531 19
andrewcrussell 1:ecf8078bf531 20 *******************************************************************************************/
andrewcrussell 1:ecf8078bf531 21 #include "font_new.h"
andrewcrussell 1:ecf8078bf531 22 const unsigned char c28_data_table[] = {
andrewcrussell 1:ecf8078bf531 23
andrewcrussell 1:ecf8078bf531 24 /* character 0x2B ('+'): (width=18, offset=0) */
andrewcrussell 1:ecf8078bf531 25 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 26 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 27 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 28 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 29 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 30 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 31 0x00, 0x01, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 32 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x01, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 33 0x80, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 34 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 35 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 36 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 37 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 38 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 39
andrewcrussell 1:ecf8078bf531 40 /* character 0x2C (','): (width=10, offset=108) */
andrewcrussell 1:ecf8078bf531 41 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 42 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 43 0x0F, 0x80, 0x00, 0x00, 0x00, 0x03, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 44 0x00, 0x00, 0x00, 0x03, 0xFF, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 45 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 46 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 47 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 48 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 49
andrewcrussell 1:ecf8078bf531 50 /* character 0x2D ('-'): (width=11, offset=168) */
andrewcrussell 1:ecf8078bf531 51 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 52 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0,
andrewcrussell 1:ecf8078bf531 53 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 54 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 55 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0,
andrewcrussell 1:ecf8078bf531 56 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 57 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 58 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 59 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 60
andrewcrussell 1:ecf8078bf531 61 /* character 0x2E ('.'): (width=10, offset=234) */
andrewcrussell 1:ecf8078bf531 62 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 63 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 64 0xC0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 65 0x00, 0x00, 0x00, 0x07, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 66 0x00, 0x07, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 67 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 68 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 69 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 70
andrewcrussell 1:ecf8078bf531 71 /* character 0x2F ('/'): (width=16, offset=294) */
andrewcrussell 1:ecf8078bf531 72 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 73 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 74 0xFF, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 75 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 76 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 77 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 78 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 79 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 80 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 81 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0xFF,
andrewcrussell 1:ecf8078bf531 82 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 83 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 84
andrewcrussell 1:ecf8078bf531 85 /* character 0x30 ('0'): (width=19, offset=390) */
andrewcrussell 1:ecf8078bf531 86 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 87 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 88 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 89 0x00, 0x03, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 90 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0xC0, 0x07,
andrewcrussell 1:ecf8078bf531 91 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 92 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 93 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 94 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 95 0x00, 0x0F, 0xC0, 0x07, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 96 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 97 0x80, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 98 0x00, 0x01, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 99 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 100 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 101
andrewcrussell 1:ecf8078bf531 102 /* character 0x31 ('1'): (width=19, offset=504) */
andrewcrussell 1:ecf8078bf531 103 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 104 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 105 0x00, 0x00, 0x00, 0x01, 0xC0, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 106 0x00, 0x01, 0xC0, 0x01, 0xE0, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 107 0x80, 0x01, 0xE0, 0x00, 0x00, 0x07, 0x80, 0x01,
andrewcrussell 1:ecf8078bf531 108 0xE0, 0x00, 0x00, 0x07, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 109 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 110 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 111 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 112 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 113 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 114 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 115 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 116 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 117 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 118
andrewcrussell 1:ecf8078bf531 119 /* character 0x32 ('2'): (width=19, offset=618) */
andrewcrussell 1:ecf8078bf531 120 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 121 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x01,
andrewcrussell 1:ecf8078bf531 122 0xE0, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 123 0x00, 0x07, 0x80, 0x07, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 124 0x80, 0x0F, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 125 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x3F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 126 0x00, 0x0F, 0x00, 0x7D, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 127 0x00, 0xF9, 0xE0, 0x00, 0x00, 0x0F, 0x01, 0xF1,
andrewcrussell 1:ecf8078bf531 128 0xE0, 0x00, 0x00, 0x0F, 0x87, 0xE1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 129 0x00, 0x0F, 0xFF, 0xC1, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 130 0xFF, 0x81, 0xE0, 0x00, 0x00, 0x07, 0xFF, 0x01,
andrewcrussell 1:ecf8078bf531 131 0xE0, 0x00, 0x00, 0x03, 0xFE, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 132 0x00, 0x01, 0xF8, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 133 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 134 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 135
andrewcrussell 1:ecf8078bf531 136 /* character 0x33 ('3'): (width=19, offset=732) */
andrewcrussell 1:ecf8078bf531 137 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 138 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 139 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 140 0x00, 0x07, 0xC7, 0x83, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 141 0x87, 0x81, 0xE0, 0x00, 0x00, 0x07, 0x07, 0x81,
andrewcrussell 1:ecf8078bf531 142 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 143 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 144 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F, 0x0F, 0x81,
andrewcrussell 1:ecf8078bf531 145 0xE0, 0x00, 0x00, 0x0F, 0x8F, 0xC3, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 146 0x00, 0x0F, 0xFF, 0xE3, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 147 0xFD, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xFD, 0xFF,
andrewcrussell 1:ecf8078bf531 148 0xC0, 0x00, 0x00, 0x03, 0xF8, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 149 0x00, 0x01, 0xF0, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 150 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 151 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 152
andrewcrussell 1:ecf8078bf531 153 /* character 0x34 ('4'): (width=19, offset=846) */
andrewcrussell 1:ecf8078bf531 154 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 155 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFC,
andrewcrussell 1:ecf8078bf531 156 0x00, 0x00, 0x00, 0x00, 0x07, 0xFC, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 157 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 158 0x7F, 0xBC, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x3C,
andrewcrussell 1:ecf8078bf531 159 0x00, 0x00, 0x00, 0x03, 0xF8, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 160 0x00, 0x0F, 0xE0, 0x3C, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 161 0x80, 0x3C, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 162 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 163 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 164 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 165 0xE0, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 166 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 167 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 168 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 169
andrewcrussell 1:ecf8078bf531 170 /* character 0x35 ('5'): (width=19, offset=960) */
andrewcrussell 1:ecf8078bf531 171 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 172 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 173 0xC0, 0x00, 0x00, 0x0F, 0xFF, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 174 0x00, 0x0F, 0xFF, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 175 0xFF, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0x01,
andrewcrussell 1:ecf8078bf531 176 0xE0, 0x00, 0x00, 0x0F, 0x0F, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 177 0x00, 0x0F, 0x0F, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 178 0x0F, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x0F, 0x83,
andrewcrussell 1:ecf8078bf531 179 0xE0, 0x00, 0x00, 0x0F, 0x0F, 0x87, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 180 0x00, 0x0F, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 181 0x07, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 182 0x80, 0x00, 0x00, 0x0F, 0x03, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 183 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 184 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 185 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 186
andrewcrussell 1:ecf8078bf531 187 /* character 0x36 ('6'): (width=19, offset=1074) */
andrewcrussell 1:ecf8078bf531 188 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 189 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFC,
andrewcrussell 1:ecf8078bf531 190 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 191 0x00, 0x01, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 192 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 193 0xC0, 0x00, 0x00, 0x07, 0xE3, 0xC7, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 194 0x00, 0x07, 0x83, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 195 0x87, 0x81, 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81,
andrewcrussell 1:ecf8078bf531 196 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 197 0x00, 0x0F, 0x07, 0xC3, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 198 0x07, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 199 0xC0, 0x00, 0x00, 0x0F, 0x83, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 200 0x00, 0x07, 0x81, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 201 0x00, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 202 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 203
andrewcrussell 1:ecf8078bf531 204 /* character 0x37 ('7'): (width=19, offset=1188) */
andrewcrussell 1:ecf8078bf531 205 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 206 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 207 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 208 0x00, 0x0F, 0x00, 0x00, 0x60, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 209 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 210 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x3F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 211 0x00, 0x0F, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 212 0x03, 0xFF, 0x80, 0x00, 0x00, 0x0F, 0x1F, 0xFE,
andrewcrussell 1:ecf8078bf531 213 0x00, 0x00, 0x00, 0x0F, 0x7F, 0xF0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 214 0x00, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 215 0xFF, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x00,
andrewcrussell 1:ecf8078bf531 216 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 217 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 218 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 219 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 220
andrewcrussell 1:ecf8078bf531 221 /* character 0x38 ('8'): (width=19, offset=1302) */
andrewcrussell 1:ecf8078bf531 222 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 223 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3F,
andrewcrussell 1:ecf8078bf531 224 0x80, 0x00, 0x00, 0x03, 0xFC, 0x7F, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 225 0x00, 0x07, 0xFE, 0xFF, 0xC0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 226 0xFE, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xE3,
andrewcrussell 1:ecf8078bf531 227 0xE0, 0x00, 0x00, 0x0F, 0x8F, 0xC1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 228 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 229 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F, 0x07, 0xC1,
andrewcrussell 1:ecf8078bf531 230 0xE0, 0x00, 0x00, 0x0F, 0x8F, 0xC1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 231 0x00, 0x0F, 0xFF, 0xE3, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 232 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xFC, 0xFF,
andrewcrussell 1:ecf8078bf531 233 0xC0, 0x00, 0x00, 0x03, 0xF8, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 234 0x00, 0x01, 0xF0, 0x7F, 0x80, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 235 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 236 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 237
andrewcrussell 1:ecf8078bf531 238 /* character 0x39 ('9'): (width=19, offset=1416) */
andrewcrussell 1:ecf8078bf531 239 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 240 0x7E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x03,
andrewcrussell 1:ecf8078bf531 241 0xC0, 0x00, 0x00, 0x03, 0xFF, 0x83, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 242 0x00, 0x07, 0xFF, 0xC1, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 243 0xFF, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0x87, 0xC1,
andrewcrussell 1:ecf8078bf531 244 0xE0, 0x00, 0x00, 0x0F, 0x03, 0xC1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 245 0x00, 0x0F, 0x03, 0xC1, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 246 0x03, 0xC3, 0xE0, 0x00, 0x00, 0x0F, 0x03, 0x83,
andrewcrussell 1:ecf8078bf531 247 0xE0, 0x00, 0x00, 0x0F, 0xC7, 0x8F, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 248 0x00, 0x07, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 249 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 250 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 251 0x00, 0x00, 0x7F, 0xE0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 252 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 253 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 254
andrewcrussell 1:ecf8078bf531 255 /* character 0x3A (':'): (width=10, offset=1530) */
andrewcrussell 1:ecf8078bf531 256 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 257 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 258 0x00, 0x00, 0x00, 0x00, 0x1C, 0x01, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 259 0x00, 0x00, 0x3E, 0x03, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 260 0x3E, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x03,
andrewcrussell 1:ecf8078bf531 261 0xE0, 0x00, 0x00, 0x00, 0x1C, 0x01, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 262 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 263 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 264
andrewcrussell 1:ecf8078bf531 265 /* character 0x3B (';'): (width=10, offset=1590) */
andrewcrussell 1:ecf8078bf531 266 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 267 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 268 0x0F, 0x00, 0x00, 0x00, 0x1C, 0x03, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 269 0x00, 0x00, 0x3E, 0x03, 0xFE, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 270 0x3E, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x3E, 0x03,
andrewcrussell 1:ecf8078bf531 271 0xF0, 0x00, 0x00, 0x00, 0x1C, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 272 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 273 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 274
andrewcrussell 1:ecf8078bf531 275 /* character 0x3C ('<'): (width=18, offset=1650) */
andrewcrussell 1:ecf8078bf531 276 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 277 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xE0,
andrewcrussell 1:ecf8078bf531 278 0x00, 0x00, 0x00, 0x00, 0x07, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 279 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 280 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x78,
andrewcrussell 1:ecf8078bf531 281 0x00, 0x00, 0x00, 0x00, 0x1E, 0x78, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 282 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 283 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x78, 0x1E,
andrewcrussell 1:ecf8078bf531 284 0x00, 0x00, 0x00, 0x00, 0x78, 0x1E, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 285 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 286 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x07,
andrewcrussell 1:ecf8078bf531 287 0x80, 0x00, 0x00, 0x01, 0xE0, 0x07, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 288 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 289 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 290
andrewcrussell 1:ecf8078bf531 291 /* character 0x3D ('='): (width=18, offset=1758) */
andrewcrussell 1:ecf8078bf531 292 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 293 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C,
andrewcrussell 1:ecf8078bf531 294 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 295 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 296 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C,
andrewcrussell 1:ecf8078bf531 297 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 298 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 299 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C,
andrewcrussell 1:ecf8078bf531 300 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 301 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 302 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C,
andrewcrussell 1:ecf8078bf531 303 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 304 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 305 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 306
andrewcrussell 1:ecf8078bf531 307 /* character 0x3E ('>'): (width=18, offset=1866) */
andrewcrussell 1:ecf8078bf531 308 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 309 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x07,
andrewcrussell 1:ecf8078bf531 310 0x80, 0x00, 0x00, 0x01, 0xE0, 0x07, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 311 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 312 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x78, 0x1E,
andrewcrussell 1:ecf8078bf531 313 0x00, 0x00, 0x00, 0x00, 0x78, 0x1E, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 314 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 315 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x78,
andrewcrussell 1:ecf8078bf531 316 0x00, 0x00, 0x00, 0x00, 0x1E, 0x78, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 317 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 318 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xE0,
andrewcrussell 1:ecf8078bf531 319 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 320 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 321 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 322
andrewcrussell 1:ecf8078bf531 323 /* character 0x3F ('?'): (width=17, offset=1974) */
andrewcrussell 1:ecf8078bf531 324 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 325 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 326 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 327 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C,
andrewcrussell 1:ecf8078bf531 328 0x07, 0xF1, 0xC0, 0x00, 0x00, 0x3C, 0x07, 0xF3,
andrewcrussell 1:ecf8078bf531 329 0xE0, 0x00, 0x00, 0x3C, 0x07, 0xF3, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 330 0x00, 0x3C, 0x07, 0xF3, 0xE0, 0x00, 0x00, 0x3E,
andrewcrussell 1:ecf8078bf531 331 0x0F, 0xF1, 0xC0, 0x00, 0x00, 0x3F, 0x1F, 0x00,
andrewcrussell 1:ecf8078bf531 332 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 333 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 334 0xFE, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFC, 0x00,
andrewcrussell 1:ecf8078bf531 335 0x00, 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 336 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 337
andrewcrussell 1:ecf8078bf531 338 /* character 0x40 ('@'): (width=33, offset=2076) */
andrewcrussell 1:ecf8078bf531 339 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 340 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF,
andrewcrussell 1:ecf8078bf531 341 0x80, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 342 0x00, 0x00, 0x1F, 0xFF, 0xF0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 343 0x7F, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 344 0xFC, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x7E, 0x00,
andrewcrussell 1:ecf8078bf531 345 0x00, 0x03, 0xE0, 0x00, 0x3E, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 346 0xC0, 0xFE, 0x1E, 0x00, 0x00, 0x07, 0x83, 0xFF,
andrewcrussell 1:ecf8078bf531 347 0x1F, 0x00, 0x00, 0x0F, 0x8F, 0xFF, 0x8F, 0x00,
andrewcrussell 1:ecf8078bf531 348 0x00, 0x0F, 0x1F, 0xFF, 0x8F, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 349 0x1F, 0x87, 0x8F, 0x00, 0x00, 0x1E, 0x3E, 0x07,
andrewcrussell 1:ecf8078bf531 350 0x8F, 0x00, 0x00, 0x1E, 0x3C, 0x07, 0x8F, 0x00,
andrewcrussell 1:ecf8078bf531 351 0x00, 0x1E, 0x3C, 0x07, 0x0F, 0x00, 0x00, 0x1E,
andrewcrussell 1:ecf8078bf531 352 0x3C, 0x0F, 0x0F, 0x00, 0x00, 0x1E, 0x3E, 0x0E,
andrewcrussell 1:ecf8078bf531 353 0x0F, 0x00, 0x00, 0x1E, 0x1F, 0xFF, 0x0F, 0x00,
andrewcrussell 1:ecf8078bf531 354 0x00, 0x1E, 0x0F, 0xFF, 0x1F, 0x00, 0x00, 0x1E,
andrewcrussell 1:ecf8078bf531 355 0x3F, 0xFF, 0x9E, 0x00, 0x00, 0x1F, 0x3F, 0xE7,
andrewcrussell 1:ecf8078bf531 356 0x9E, 0x00, 0x00, 0x0F, 0x38, 0x07, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 357 0x00, 0x0F, 0x00, 0x07, 0x80, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 358 0x80, 0x0F, 0x80, 0x00, 0x00, 0x07, 0xE0, 0x3F,
andrewcrussell 1:ecf8078bf531 359 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 360 0x00, 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 361 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC0,
andrewcrussell 1:ecf8078bf531 362 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 363 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 364
andrewcrussell 1:ecf8078bf531 365 /* character 0x41 ('A'): (width=22, offset=2274) */
andrewcrussell 1:ecf8078bf531 366 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 367 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 368 0xE0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 369 0x00, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 370 0x1F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFC,
andrewcrussell 1:ecf8078bf531 371 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFC, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 372 0x00, 0x0F, 0xFE, 0x3C, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 373 0xE0, 0x3C, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x3C,
andrewcrussell 1:ecf8078bf531 374 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x3C, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 375 0x00, 0x0F, 0xFC, 0x3C, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 376 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFC,
andrewcrussell 1:ecf8078bf531 377 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 378 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 379 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x7F,
andrewcrussell 1:ecf8078bf531 380 0xE0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 381 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 382 0x00, 0x00, 0x60, 0x00,
andrewcrussell 1:ecf8078bf531 383
andrewcrussell 1:ecf8078bf531 384 /* character 0x42 ('B'): (width=21, offset=2406) */
andrewcrussell 1:ecf8078bf531 385 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 386 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 387 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 388 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 389 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 390 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 391 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 392 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81,
andrewcrussell 1:ecf8078bf531 393 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 394 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 395 0x8F, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xC3,
andrewcrussell 1:ecf8078bf531 396 0xE0, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 397 0x00, 0x07, 0xFD, 0xFF, 0xC0, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 398 0xF9, 0xFF, 0x80, 0x00, 0x00, 0x01, 0xF0, 0xFF,
andrewcrussell 1:ecf8078bf531 399 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 400 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 401
andrewcrussell 1:ecf8078bf531 402 /* character 0x43 ('C'): (width=20, offset=2532) */
andrewcrussell 1:ecf8078bf531 403 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 404 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC,
andrewcrussell 1:ecf8078bf531 405 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 406 0x00, 0x01, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 407 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xF0, 0x1F,
andrewcrussell 1:ecf8078bf531 408 0xC0, 0x00, 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 409 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 410 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 411 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 412 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 413 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 414 0xE0, 0x00, 0x00, 0x07, 0x80, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 415 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 416 0xC0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 417 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 418
andrewcrussell 1:ecf8078bf531 419 /* character 0x44 ('D'): (width=23, offset=2652) */
andrewcrussell 1:ecf8078bf531 420 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 421 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 422 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 423 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 424 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 425 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 426 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 427 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 428 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 429 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 430 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x03,
andrewcrussell 1:ecf8078bf531 431 0xC0, 0x00, 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 432 0x00, 0x07, 0xF0, 0x1F, 0xC0, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 433 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 434 0x80, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 435 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 436 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 437 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 438
andrewcrussell 1:ecf8078bf531 439 /* character 0x45 ('E'): (width=18, offset=2790) */
andrewcrussell 1:ecf8078bf531 440 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 441 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 442 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 443 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 444 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 445 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 446 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 447 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81,
andrewcrussell 1:ecf8078bf531 448 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 449 0x00, 0x0F, 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 450 0x07, 0x81, 0xE0, 0x00, 0x00, 0x0F, 0x07, 0x81,
andrewcrussell 1:ecf8078bf531 451 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 452 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 453 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 454
andrewcrussell 1:ecf8078bf531 455 /* character 0x46 ('F'): (width=17, offset=2898) */
andrewcrussell 1:ecf8078bf531 456 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 457 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 458 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 459 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 460 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 461 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 462 0x00, 0x0F, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 463 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0F, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 464 0x00, 0x00, 0x00, 0x0F, 0x03, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 465 0x00, 0x0F, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 466 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0F, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 467 0x00, 0x00, 0x00, 0x0F, 0x01, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 468 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 469
andrewcrussell 1:ecf8078bf531 470 /* character 0x47 ('G'): (width=24, offset=3000) */
andrewcrussell 1:ecf8078bf531 471 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 472 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC,
andrewcrussell 1:ecf8078bf531 473 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 474 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 475 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03, 0xF8, 0x1F,
andrewcrussell 1:ecf8078bf531 476 0xC0, 0x00, 0x00, 0x07, 0xE0, 0x07, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 477 0x00, 0x07, 0xC0, 0x03, 0xC0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 478 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 479 0xE0, 0x00, 0x00, 0x0F, 0x03, 0xC1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 480 0x00, 0x0F, 0x03, 0xC1, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 481 0x03, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0x03, 0xC1,
andrewcrussell 1:ecf8078bf531 482 0xE0, 0x00, 0x00, 0x0F, 0x03, 0xC1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 483 0x00, 0x0F, 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 484 0x83, 0xFF, 0xE0, 0x00, 0x00, 0x07, 0x83, 0xFF,
andrewcrussell 1:ecf8078bf531 485 0xC0, 0x00, 0x00, 0x07, 0xC3, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 486 0x00, 0x03, 0xC3, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 487 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 488 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 489
andrewcrussell 1:ecf8078bf531 490 /* character 0x48 ('H'): (width=23, offset=3144) */
andrewcrussell 1:ecf8078bf531 491 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 492 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 493 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 494 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 495 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 496 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 497 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 498 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 499 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 500 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 501 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 502 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 503 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 504 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 505 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 506 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 507 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 508 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 509
andrewcrussell 1:ecf8078bf531 510 /* character 0x49 ('I'): (width=10, offset=3282) */
andrewcrussell 1:ecf8078bf531 511 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 512 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 513 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 514 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 515 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 516 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 517 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 518 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 519
andrewcrussell 1:ecf8078bf531 520 /* character 0x4A ('J'): (width=12, offset=3342) */
andrewcrussell 1:ecf8078bf531 521 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 522 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 523 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 524 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 525 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 526 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 527 0x00, 0x0F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 528 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 529 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 530
andrewcrussell 1:ecf8078bf531 531 /* character 0x4B ('K'): (width=20, offset=3414) */
andrewcrussell 1:ecf8078bf531 532 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 533 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 534 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 535 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 536 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 537 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 538 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 539 0x0F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0,
andrewcrussell 1:ecf8078bf531 540 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 541 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 542 0xFD, 0xFF, 0x00, 0x00, 0x00, 0x07, 0xF8, 0x7F,
andrewcrussell 1:ecf8078bf531 543 0x80, 0x00, 0x00, 0x0F, 0xE0, 0x1F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 544 0x00, 0x0F, 0xC0, 0x0F, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 545 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0E, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 546 0xE0, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x60, 0x00,
andrewcrussell 1:ecf8078bf531 547
andrewcrussell 1:ecf8078bf531 548 /* character 0x4C ('L'): (width=16, offset=3534) */
andrewcrussell 1:ecf8078bf531 549 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 550 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 551 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 552 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 553 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 554 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 555 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 556 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 557 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 558 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 559 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 560 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 561
andrewcrussell 1:ecf8078bf531 562 /* character 0x4D ('M'): (width=32, offset=3630) */
andrewcrussell 1:ecf8078bf531 563 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 564 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 565 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 566 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 567 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 568 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 569 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 570 0xF8, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 571 0x00, 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 572 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 573 0x1F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x03, 0xFF,
andrewcrussell 1:ecf8078bf531 574 0xE0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 575 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 576 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x00, 0x01, 0xFF,
andrewcrussell 1:ecf8078bf531 577 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 578 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 579 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x07, 0xFE, 0x00,
andrewcrussell 1:ecf8078bf531 580 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 581 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 582 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 583 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 584 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 585 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 586 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 587
andrewcrussell 1:ecf8078bf531 588 /* character 0x4E ('N'): (width=24, offset=3822) */
andrewcrussell 1:ecf8078bf531 589 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 590 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 591 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 592 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 593 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 594 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 595 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 596 0xF8, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFE, 0x00,
andrewcrussell 1:ecf8078bf531 597 0x00, 0x00, 0x00, 0x00, 0x7F, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 598 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 599 0x07, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFE,
andrewcrussell 1:ecf8078bf531 600 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 601 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 602 0x00, 0x03, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 603 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 604 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 605 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 606 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 607
andrewcrussell 1:ecf8078bf531 608 /* character 0x4F ('O'): (width=25, offset=3966) */
andrewcrussell 1:ecf8078bf531 609 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 610 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE,
andrewcrussell 1:ecf8078bf531 611 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 612 0x00, 0x01, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 613 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xF0, 0x1F,
andrewcrussell 1:ecf8078bf531 614 0xC0, 0x00, 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 615 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 616 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 617 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 618 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 619 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 620 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 621 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 622 0xF0, 0x1F, 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 623 0x80, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 624 0x00, 0x01, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 625 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0,
andrewcrussell 1:ecf8078bf531 626 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 627 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 628
andrewcrussell 1:ecf8078bf531 629 /* character 0x50 ('P'): (width=20, offset=4116) */
andrewcrussell 1:ecf8078bf531 630 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 631 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 632 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 633 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 634 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 635 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 636 0x00, 0x0F, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 637 0x01, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0x01, 0xE0,
andrewcrussell 1:ecf8078bf531 638 0x00, 0x00, 0x00, 0x0F, 0x01, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 639 0x00, 0x0F, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 640 0x87, 0xE0, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xC0,
andrewcrussell 1:ecf8078bf531 641 0x00, 0x00, 0x00, 0x07, 0xFF, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 642 0x00, 0x03, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 643 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC, 0x00,
andrewcrussell 1:ecf8078bf531 644 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 645
andrewcrussell 1:ecf8078bf531 646 /* character 0x51 ('Q'): (width=26, offset=4236) */
andrewcrussell 1:ecf8078bf531 647 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 648 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE,
andrewcrussell 1:ecf8078bf531 649 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 650 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 651 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xF0, 0x1F,
andrewcrussell 1:ecf8078bf531 652 0xC0, 0x00, 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 653 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 654 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 655 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 656 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 657 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 658 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 659 0x00, 0x07, 0xC0, 0x07, 0xC0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 660 0xF0, 0x1F, 0xE0, 0x00, 0x00, 0x07, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 661 0xF0, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xF8, 0x00,
andrewcrussell 1:ecf8078bf531 662 0x00, 0x01, 0xFF, 0xFE, 0x7C, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 663 0xFF, 0xFC, 0x7C, 0x00, 0x00, 0x00, 0x1F, 0xE0,
andrewcrussell 1:ecf8078bf531 664 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00,
andrewcrussell 1:ecf8078bf531 665 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 666 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 667
andrewcrussell 1:ecf8078bf531 668 /* character 0x52 ('R'): (width=21, offset=4392) */
andrewcrussell 1:ecf8078bf531 669 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 670 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 671 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 672 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 673 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 674 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 675 0x00, 0x0F, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 676 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0F, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 677 0x00, 0x00, 0x00, 0x0F, 0x03, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 678 0x00, 0x0F, 0x03, 0xF0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 679 0x87, 0xFC, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 680 0x80, 0x00, 0x00, 0x07, 0xFF, 0x7F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 681 0x00, 0x07, 0xFF, 0x3F, 0xE0, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 682 0xFE, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0xF8, 0x03,
andrewcrussell 1:ecf8078bf531 683 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00,
andrewcrussell 1:ecf8078bf531 684 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 685
andrewcrussell 1:ecf8078bf531 686 /* character 0x53 ('S'): (width=17, offset=4518) */
andrewcrussell 1:ecf8078bf531 687 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 688 0xF8, 0x07, 0x80, 0x00, 0x00, 0x03, 0xFC, 0x07,
andrewcrussell 1:ecf8078bf531 689 0xC0, 0x00, 0x00, 0x03, 0xFE, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 690 0x00, 0x07, 0xFF, 0x03, 0xE0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 691 0xFF, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x9F, 0x81,
andrewcrussell 1:ecf8078bf531 692 0xE0, 0x00, 0x00, 0x0F, 0x0F, 0x81, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 693 0x00, 0x0F, 0x07, 0xC1, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 694 0x07, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0x07, 0xE3,
andrewcrussell 1:ecf8078bf531 695 0xE0, 0x00, 0x00, 0x0F, 0x03, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 696 0x00, 0x0F, 0x03, 0xFF, 0xC0, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 697 0x81, 0xFF, 0x80, 0x00, 0x00, 0x07, 0x80, 0xFF,
andrewcrussell 1:ecf8078bf531 698 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 699 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 700
andrewcrussell 1:ecf8078bf531 701 /* character 0x54 ('T'): (width=18, offset=4620) */
andrewcrussell 1:ecf8078bf531 702 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 703 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 704 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 705 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 706 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 707 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 708 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 709 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 710 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 711 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 712 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 713 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 714 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 715 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 716
andrewcrussell 1:ecf8078bf531 717 /* character 0x55 ('U'): (width=24, offset=4728) */
andrewcrussell 1:ecf8078bf531 718 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 719 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 720 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 721 0x00, 0x0F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 722 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 723 0xC0, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 724 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 725 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 726 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 727 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 728 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 729 0xE0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 730 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 731 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 732 0x80, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 733 0x00, 0x0F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 734 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 735 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 736
andrewcrussell 1:ecf8078bf531 737 /* character 0x56 ('V'): (width=22, offset=4872) */
andrewcrussell 1:ecf8078bf531 738 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C,
andrewcrussell 1:ecf8078bf531 739 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 740 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 741 0x00, 0x0F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 742 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xF8,
andrewcrussell 1:ecf8078bf531 743 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 744 0x00, 0x00, 0x0F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 745 0x01, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 746 0xE0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 747 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 748 0x01, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 749 0xC0, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 750 0x00, 0x07, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 751 0xFF, 0x80, 0x00, 0x00, 0x00, 0x0F, 0xFE, 0x00,
andrewcrussell 1:ecf8078bf531 752 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 753 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0C,
andrewcrussell 1:ecf8078bf531 754 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 755
andrewcrussell 1:ecf8078bf531 756 /* character 0x57 ('W'): (width=34, offset=5004) */
andrewcrussell 1:ecf8078bf531 757 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 758 0xC0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x00,
andrewcrussell 1:ecf8078bf531 759 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 760 0x00, 0x0F, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 761 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF,
andrewcrussell 1:ecf8078bf531 762 0xE0, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 763 0x00, 0x00, 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 764 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 765 0xE0, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 766 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 767 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xE0,
andrewcrussell 1:ecf8078bf531 768 0x00, 0x00, 0x00, 0x0F, 0xFE, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 769 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 770 0xFE, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xE0,
andrewcrussell 1:ecf8078bf531 771 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 772 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 773 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 774 0xE0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 775 0x00, 0x00, 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 776 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x7F, 0xFF,
andrewcrussell 1:ecf8078bf531 777 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 778 0x00, 0x0F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 779 0xFF, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x00,
andrewcrussell 1:ecf8078bf531 780 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 781 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 782 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 783
andrewcrussell 1:ecf8078bf531 784 /* character 0x58 ('X'): (width=20, offset=5208) */
andrewcrussell 1:ecf8078bf531 785 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 786 0x00, 0x00, 0x60, 0x00, 0x00, 0x0E, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 787 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 788 0x00, 0x0F, 0xC0, 0x0F, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 789 0xF0, 0x3F, 0xE0, 0x00, 0x00, 0x0F, 0xFC, 0xFF,
andrewcrussell 1:ecf8078bf531 790 0xC0, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 791 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 792 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xC0,
andrewcrussell 1:ecf8078bf531 793 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 794 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 795 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x0F, 0xFC, 0xFF,
andrewcrussell 1:ecf8078bf531 796 0xC0, 0x00, 0x00, 0x0F, 0xF0, 0x3F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 797 0x00, 0x0F, 0xC0, 0x0F, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 798 0x80, 0x03, 0xE0, 0x00, 0x00, 0x0E, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 799 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00,
andrewcrussell 1:ecf8078bf531 800
andrewcrussell 1:ecf8078bf531 801 /* character 0x59 ('Y'): (width=19, offset=5328) */
andrewcrussell 1:ecf8078bf531 802 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E,
andrewcrussell 1:ecf8078bf531 803 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 804 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 805 0x00, 0x0F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 806 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 807 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 808 0x00, 0x00, 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 809 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 810 0xE0, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 811 0x00, 0x03, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 812 0xFE, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x00,
andrewcrussell 1:ecf8078bf531 813 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 814 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0E,
andrewcrussell 1:ecf8078bf531 815 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 816 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 817
andrewcrussell 1:ecf8078bf531 818 /* character 0x5A ('Z'): (width=18, offset=5442) */
andrewcrussell 1:ecf8078bf531 819 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 820 0x00, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x07,
andrewcrussell 1:ecf8078bf531 821 0xE0, 0x00, 0x00, 0x0F, 0x00, 0x1F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 822 0x00, 0x0F, 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 823 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0x01, 0xFD,
andrewcrussell 1:ecf8078bf531 824 0xE0, 0x00, 0x00, 0x0F, 0x07, 0xF9, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 825 0x00, 0x0F, 0x0F, 0xE1, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 826 0x3F, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0x7F, 0x01,
andrewcrussell 1:ecf8078bf531 827 0xE0, 0x00, 0x00, 0x0F, 0xFE, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 828 0x00, 0x0F, 0xF8, 0x01, 0xE0, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 829 0xF0, 0x01, 0xE0, 0x00, 0x00, 0x0F, 0xC0, 0x01,
andrewcrussell 1:ecf8078bf531 830 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 831 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 832 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 833
andrewcrussell 1:ecf8078bf531 834 /* character 0x5B ('['): (width=12, offset=5550) */
andrewcrussell 1:ecf8078bf531 835 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 836 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 837 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 838 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x7F,
andrewcrussell 1:ecf8078bf531 839 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x7F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 840 0xFF, 0x80, 0x00, 0x78, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 841 0x00, 0x78, 0x00, 0x00, 0x07, 0x80, 0x00, 0x78,
andrewcrussell 1:ecf8078bf531 842 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 843 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 844
andrewcrussell 1:ecf8078bf531 845 /* character 0x5C ('\'): (width=16, offset=5622) */
andrewcrussell 1:ecf8078bf531 846 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0,
andrewcrussell 1:ecf8078bf531 847 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 848 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 849 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0xFF,
andrewcrussell 1:ecf8078bf531 850 0xFC, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 851 0x00, 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 852 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 853 0x3F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 854 0xE0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00,
andrewcrussell 1:ecf8078bf531 855 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 856 0x00, 0x07, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 857 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00,
andrewcrussell 1:ecf8078bf531 858
andrewcrussell 1:ecf8078bf531 859 /* character 0x5D (']'): (width=12, offset=5718) */
andrewcrussell 1:ecf8078bf531 860 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 861 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 862 0x07, 0x80, 0x00, 0x78, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 863 0x00, 0x78, 0x00, 0x00, 0x07, 0x80, 0x00, 0x7F,
andrewcrussell 1:ecf8078bf531 864 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x7F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 865 0xFF, 0x80, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 866 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 867 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 868 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 869
andrewcrussell 1:ecf8078bf531 870 /* character 0x5E ('^'): (width=18, offset=5790) */
andrewcrussell 1:ecf8078bf531 871 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 872 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0,
andrewcrussell 1:ecf8078bf531 873 0x00, 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 874 0x00, 0x00, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 875 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 876 0x00, 0x00, 0x00, 0x0F, 0xFC, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 877 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x0F,
andrewcrussell 1:ecf8078bf531 878 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 879 0x00, 0x00, 0x00, 0x0F, 0xFC, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 880 0x00, 0x07, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 881 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC0,
andrewcrussell 1:ecf8078bf531 882 0x00, 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 883 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 884 0x00, 0xC0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 885
andrewcrussell 1:ecf8078bf531 886 /* character 0x5F ('_'): (width=21, offset=5898) */
andrewcrussell 1:ecf8078bf531 887 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 888 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 889 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 890 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 891 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 892 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 893 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 894 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 895 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 896 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 897 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 898 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 899 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 900 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 901 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 902 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 903
andrewcrussell 1:ecf8078bf531 904 /* character 0x60 ('`'): (width=11, offset=6024) */
andrewcrussell 1:ecf8078bf531 905 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 906 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 907 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 908 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E,
andrewcrussell 1:ecf8078bf531 909 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 910 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 911 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 912 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 913 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 914
andrewcrussell 1:ecf8078bf531 915 /* character 0x61 ('a'): (width=18, offset=6090) */
andrewcrussell 1:ecf8078bf531 916 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 917 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x1F,
andrewcrussell 1:ecf8078bf531 918 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x3F, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 919 0x00, 0x00, 0x3E, 0x3F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 920 0x3C, 0x7F, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x79,
andrewcrussell 1:ecf8078bf531 921 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x71, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 922 0x00, 0x00, 0x3C, 0x71, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 923 0x3C, 0x71, 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x73,
andrewcrussell 1:ecf8078bf531 924 0xC0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 925 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 926 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 927 0xE0, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 928 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 929 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 930
andrewcrussell 1:ecf8078bf531 931 /* character 0x62 ('b'): (width=20, offset=6198) */
andrewcrussell 1:ecf8078bf531 932 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 933 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 934 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 935 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 936 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 937 0x80, 0x00, 0x00, 0x00, 0x0E, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 938 0x00, 0x00, 0x1E, 0x03, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 939 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01,
andrewcrussell 1:ecf8078bf531 940 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 941 0x00, 0x00, 0x3F, 0x07, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 942 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 943 0xC0, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 944 0x00, 0x00, 0x0F, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 945 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 946 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 947
andrewcrussell 1:ecf8078bf531 948 /* character 0x63 ('c'): (width=15, offset=6318) */
andrewcrussell 1:ecf8078bf531 949 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 950 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 951 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 952 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 953 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0x07,
andrewcrussell 1:ecf8078bf531 954 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 955 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 956 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01,
andrewcrussell 1:ecf8078bf531 957 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 958 0x00, 0x00, 0x1E, 0x03, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 959 0x0F, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 960 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 961
andrewcrussell 1:ecf8078bf531 962 /* character 0x64 ('d'): (width=20, offset=6408) */
andrewcrussell 1:ecf8078bf531 963 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 964 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 965 0x80, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 966 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 967 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0x07,
andrewcrussell 1:ecf8078bf531 968 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 969 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 970 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x1E, 0x03,
andrewcrussell 1:ecf8078bf531 971 0xC0, 0x00, 0x00, 0x00, 0x0E, 0x03, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 972 0x00, 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 973 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 974 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 975 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 976 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 977 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 978
andrewcrussell 1:ecf8078bf531 979 /* character 0x65 ('e'): (width=19, offset=6528) */
andrewcrussell 1:ecf8078bf531 980 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 981 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 982 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 983 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 984 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x3E, 0x73,
andrewcrussell 1:ecf8078bf531 985 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x71, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 986 0x00, 0x00, 0x3C, 0x71, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 987 0x3C, 0x71, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x71,
andrewcrussell 1:ecf8078bf531 988 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x71, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 989 0x00, 0x00, 0x3F, 0xF1, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 990 0x1F, 0xF1, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xF3,
andrewcrussell 1:ecf8078bf531 991 0xC0, 0x00, 0x00, 0x00, 0x07, 0xF3, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 992 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 993 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 994 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 995
andrewcrussell 1:ecf8078bf531 996 /* character 0x66 ('f'): (width=13, offset=6642) */
andrewcrussell 1:ecf8078bf531 997 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 998 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 999 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1000 0x00, 0x0F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 1001 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1002 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1003 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x3C,
andrewcrussell 1:ecf8078bf531 1004 0x3C, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 1005 0x00, 0x00, 0x00, 0x1C, 0x3C, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1006 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1007
andrewcrussell 1:ecf8078bf531 1008 /* character 0x67 ('g'): (width=18, offset=6720) */
andrewcrussell 1:ecf8078bf531 1009 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1010 0x00, 0x07, 0x3E, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1011 0xFF, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 1012 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1013 0x3F, 0xF9, 0xF3, 0x80, 0x00, 0x00, 0x38, 0x39,
andrewcrussell 1:ecf8078bf531 1014 0xE3, 0x80, 0x00, 0x00, 0x38, 0x39, 0xE3, 0x80,
andrewcrussell 1:ecf8078bf531 1015 0x00, 0x00, 0x38, 0x39, 0xE3, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1016 0x38, 0x39, 0xE3, 0x80, 0x00, 0x00, 0x3C, 0x79,
andrewcrussell 1:ecf8078bf531 1017 0xE3, 0x80, 0x00, 0x00, 0x3F, 0xF1, 0xE7, 0x80,
andrewcrussell 1:ecf8078bf531 1018 0x00, 0x00, 0x3F, 0xF1, 0xFF, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1019 0x3F, 0xE0, 0xFF, 0x00, 0x00, 0x00, 0x3F, 0xC0,
andrewcrussell 1:ecf8078bf531 1020 0xFE, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x7E, 0x00,
andrewcrussell 1:ecf8078bf531 1021 0x00, 0x00, 0x3C, 0x00, 0x10, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1022 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1023
andrewcrussell 1:ecf8078bf531 1024 /* character 0x68 ('h'): (width=20, offset=6828) */
andrewcrussell 1:ecf8078bf531 1025 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1026 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1027 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1028 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 1029 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1030 0xE0, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1031 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1032 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 1033 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1034 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1035 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1036 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1037 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1038 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1039 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1040
andrewcrussell 1:ecf8078bf531 1041 /* character 0x69 ('i'): (width=9, offset=6948) */
andrewcrussell 1:ecf8078bf531 1042 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1043 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1044 0xE0, 0x00, 0x00, 0x1F, 0x3F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1045 0x00, 0x1F, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 1046 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x0E, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1047 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1048 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1049
andrewcrussell 1:ecf8078bf531 1050 /* character 0x6A ('j'): (width=11, offset=7002) */
andrewcrussell 1:ecf8078bf531 1051 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1052 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1053 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80,
andrewcrussell 1:ecf8078bf531 1054 0x00, 0x0E, 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 1055 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x1F, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1056 0xFF, 0x00, 0x00, 0x1F, 0x3F, 0xFF, 0xFF, 0x00,
andrewcrussell 1:ecf8078bf531 1057 0x00, 0x0E, 0x3F, 0xFF, 0xFC, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1058 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1059 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1060
andrewcrussell 1:ecf8078bf531 1061 /* character 0x6B ('k'): (width=18, offset=7068) */
andrewcrussell 1:ecf8078bf531 1062 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1063 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1064 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1065 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 1066 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1067 0xE0, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1068 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1069 0x07, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1070 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1071 0x00, 0x00, 0x3F, 0x3F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1072 0x3E, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x38, 0x07,
andrewcrussell 1:ecf8078bf531 1073 0xE0, 0x00, 0x00, 0x00, 0x30, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1074 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1075 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1076
andrewcrussell 1:ecf8078bf531 1077 /* character 0x6C ('l'): (width=9, offset=7176) */
andrewcrussell 1:ecf8078bf531 1078 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1079 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1080 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1081 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 1082 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1083 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1084 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1085
andrewcrussell 1:ecf8078bf531 1086 /* character 0x6D ('m'): (width=30, offset=7230) */
andrewcrussell 1:ecf8078bf531 1087 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1088 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1089 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1090 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1091 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1092 0xE0, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1093 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1094 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 1095 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1096 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1097 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1098 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1099 0x00, 0x00, 0x0F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1100 0x0F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0x00,
andrewcrussell 1:ecf8078bf531 1101 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1102 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1103 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00,
andrewcrussell 1:ecf8078bf531 1104 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1105 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1106 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1107 0xE0, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1108 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1109 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1110
andrewcrussell 1:ecf8078bf531 1111 /* character 0x6E ('n'): (width=20, offset=7410) */
andrewcrussell 1:ecf8078bf531 1112 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1113 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1114 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1115 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1116 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1117 0xE0, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1118 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1119 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 1120 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1121 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1122 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1123 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1124 0x00, 0x00, 0x07, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1125 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1126 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1127
andrewcrussell 1:ecf8078bf531 1128 /* character 0x6F ('o'): (width=20, offset=7530) */
andrewcrussell 1:ecf8078bf531 1129 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1130 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 1131 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1132 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1133 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x3F, 0x07,
andrewcrussell 1:ecf8078bf531 1134 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1135 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1136 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01,
andrewcrussell 1:ecf8078bf531 1137 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1138 0x00, 0x00, 0x3F, 0x07, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1139 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1140 0xC0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1141 0x00, 0x00, 0x07, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1142 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1143 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1144
andrewcrussell 1:ecf8078bf531 1145 /* character 0x70 ('p'): (width=20, offset=7650) */
andrewcrussell 1:ecf8078bf531 1146 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1147 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1148 0xFF, 0x80, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 1149 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1150 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1151 0xFF, 0x80, 0x00, 0x00, 0x0E, 0x03, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1152 0x00, 0x00, 0x1E, 0x03, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1153 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01,
andrewcrussell 1:ecf8078bf531 1154 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1155 0x00, 0x00, 0x3F, 0x07, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1156 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1157 0xC0, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 1158 0x00, 0x00, 0x0F, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1159 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1160 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1161
andrewcrussell 1:ecf8078bf531 1162 /* character 0x71 ('q'): (width=20, offset=7770) */
andrewcrussell 1:ecf8078bf531 1163 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1164 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF,
andrewcrussell 1:ecf8078bf531 1165 0x80, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 1166 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1167 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0x07,
andrewcrussell 1:ecf8078bf531 1168 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1169 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1170 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x1E, 0x03,
andrewcrussell 1:ecf8078bf531 1171 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x03, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1172 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1173 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1174 0xFF, 0x80, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 1175 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1176 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1177 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1178
andrewcrussell 1:ecf8078bf531 1179 /* character 0x72 ('r'): (width=13, offset=7890) */
andrewcrussell 1:ecf8078bf531 1180 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1181 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1182 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1183 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1184 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF,
andrewcrussell 1:ecf8078bf531 1185 0xE0, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1186 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1187 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 1188 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1189 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1190
andrewcrussell 1:ecf8078bf531 1191 /* character 0x73 ('s'): (width=15, offset=7968) */
andrewcrussell 1:ecf8078bf531 1192 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1193 0x07, 0x83, 0xC0, 0x00, 0x00, 0x00, 0x0F, 0xC3,
andrewcrussell 1:ecf8078bf531 1194 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xE1, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1195 0x00, 0x00, 0x3F, 0xF1, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1196 0x3C, 0xF1, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0xF1,
andrewcrussell 1:ecf8078bf531 1197 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x79, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1198 0x00, 0x00, 0x3C, 0x7F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1199 0x3C, 0x7F, 0xC0, 0x00, 0x00, 0x00, 0x3E, 0x3F,
andrewcrussell 1:ecf8078bf531 1200 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x3F, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1201 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1202 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1203 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1204
andrewcrussell 1:ecf8078bf531 1205 /* character 0x74 ('t'): (width=13, offset=8058) */
andrewcrussell 1:ecf8078bf531 1206 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1207 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00,
andrewcrussell 1:ecf8078bf531 1208 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1209 0x00, 0x03, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x03,
andrewcrussell 1:ecf8078bf531 1210 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xFF, 0xFF,
andrewcrussell 1:ecf8078bf531 1211 0xE0, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1212 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1213 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01,
andrewcrussell 1:ecf8078bf531 1214 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 1215 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1216
andrewcrussell 1:ecf8078bf531 1217 /* character 0x75 ('u'): (width=20, offset=8136) */
andrewcrussell 1:ecf8078bf531 1218 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1219 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1220 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00,
andrewcrussell 1:ecf8078bf531 1221 0x00, 0x00, 0x3F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1222 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1223 0xE0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1224 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1225 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01,
andrewcrussell 1:ecf8078bf531 1226 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 1227 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1228 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF,
andrewcrussell 1:ecf8078bf531 1229 0xE0, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1230 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1231 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1232 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1233
andrewcrussell 1:ecf8078bf531 1234 /* character 0x76 ('v'): (width=18, offset=8256) */
andrewcrussell 1:ecf8078bf531 1235 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1236 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x80,
andrewcrussell 1:ecf8078bf531 1237 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1238 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1239 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x01, 0xFF,
andrewcrussell 1:ecf8078bf531 1240 0xE0, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1241 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1242 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x01, 0xFF,
andrewcrussell 1:ecf8078bf531 1243 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 1244 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1245 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x80,
andrewcrussell 1:ecf8078bf531 1246 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1247 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1248 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1249
andrewcrussell 1:ecf8078bf531 1250 /* character 0x77 ('w'): (width=28, offset=8364) */
andrewcrussell 1:ecf8078bf531 1251 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1252 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC0,
andrewcrussell 1:ecf8078bf531 1253 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1254 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1255 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x01, 0xFF,
andrewcrussell 1:ecf8078bf531 1256 0xE0, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1257 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1258 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x00, 0x03, 0xFF,
andrewcrussell 1:ecf8078bf531 1259 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1260 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1261 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0,
andrewcrussell 1:ecf8078bf531 1262 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1263 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1264 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x1F,
andrewcrussell 1:ecf8078bf531 1265 0xE0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1266 0x00, 0x00, 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1267 0x01, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1268 0xC0, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1269 0x00, 0x00, 0x3F, 0xE0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1270 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00,
andrewcrussell 1:ecf8078bf531 1271 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1272
andrewcrussell 1:ecf8078bf531 1273 /* character 0x78 ('x'): (width=17, offset=8532) */
andrewcrussell 1:ecf8078bf531 1274 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1275 0x30, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x01,
andrewcrussell 1:ecf8078bf531 1276 0xE0, 0x00, 0x00, 0x00, 0x3E, 0x07, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1277 0x00, 0x00, 0x3F, 0x8F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1278 0x3F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1279 0x80, 0x00, 0x00, 0x00, 0x07, 0xFE, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1280 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1281 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF,
andrewcrussell 1:ecf8078bf531 1282 0x80, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00,
andrewcrussell 1:ecf8078bf531 1283 0x00, 0x00, 0x3F, 0xFF, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1284 0x3F, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x03,
andrewcrussell 1:ecf8078bf531 1285 0xE0, 0x00, 0x00, 0x00, 0x30, 0x00, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1286 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
andrewcrussell 1:ecf8078bf531 1287
andrewcrussell 1:ecf8078bf531 1288 /* character 0x79 ('y'): (width=18, offset=8634) */
andrewcrussell 1:ecf8078bf531 1289 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1290 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00,
andrewcrussell 1:ecf8078bf531 1291 0x00, 0x00, 0x00, 0x00, 0x3F, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1292 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1293 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF,
andrewcrussell 1:ecf8078bf531 1294 0xC3, 0x80, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0x80,
andrewcrussell 1:ecf8078bf531 1295 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1296 0x00, 0x03, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 1297 0xFF, 0x80, 0x00, 0x00, 0x03, 0xFF, 0xFC, 0x00,
andrewcrussell 1:ecf8078bf531 1298 0x00, 0x00, 0x1F, 0xFF, 0xC0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1299 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0,
andrewcrussell 1:ecf8078bf531 1300 0x00, 0x00, 0x00, 0x00, 0x3F, 0x80, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1301 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1302 0x30, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1303
andrewcrussell 1:ecf8078bf531 1304 /* character 0x7A ('z'): (width=15, offset=8742) */
andrewcrussell 1:ecf8078bf531 1305 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1306 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x07,
andrewcrussell 1:ecf8078bf531 1307 0xE0, 0x00, 0x00, 0x00, 0x3C, 0x0F, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1308 0x00, 0x00, 0x3C, 0x1F, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1309 0x3C, 0x7F, 0xE0, 0x00, 0x00, 0x00, 0x3C, 0xFD,
andrewcrussell 1:ecf8078bf531 1310 0xE0, 0x00, 0x00, 0x00, 0x3D, 0xF9, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1311 0x00, 0x00, 0x3F, 0xF1, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1312 0x3F, 0xC1, 0xE0, 0x00, 0x00, 0x00, 0x3F, 0x81,
andrewcrussell 1:ecf8078bf531 1313 0xE0, 0x00, 0x00, 0x00, 0x3F, 0x01, 0xE0, 0x00,
andrewcrussell 1:ecf8078bf531 1314 0x00, 0x00, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1315 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1316 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 1317
andrewcrussell 1:ecf8078bf531 1318 };
andrewcrussell 1:ecf8078bf531 1319
andrewcrussell 1:ecf8078bf531 1320 /*******************************************************************************************
andrewcrussell 1:ecf8078bf531 1321 Offset table provides the starting offset of each character in the data table.
andrewcrussell 1:ecf8078bf531 1322
andrewcrussell 1:ecf8078bf531 1323 To get the starting offset of character 'A', you can use the following expression:
andrewcrussell 1:ecf8078bf531 1324
andrewcrussell 1:ecf8078bf531 1325 const unsigned char index = index_table['A'];
andrewcrussell 1:ecf8078bf531 1326 const unsigned int offset = offset_table[index]
andrewcrussell 1:ecf8078bf531 1327
andrewcrussell 1:ecf8078bf531 1328 *******************************************************************************************/
andrewcrussell 1:ecf8078bf531 1329 const unsigned int c28_offset_table[] = {
andrewcrussell 1:ecf8078bf531 1330 /* offset char hexcode */
andrewcrussell 1:ecf8078bf531 1331 /* ====== ==== ======= */
andrewcrussell 1:ecf8078bf531 1332 0, /* + 2B */
andrewcrussell 1:ecf8078bf531 1333 108, /* , 2C */
andrewcrussell 1:ecf8078bf531 1334 168, /* - 2D */
andrewcrussell 1:ecf8078bf531 1335 234, /* . 2E */
andrewcrussell 1:ecf8078bf531 1336 294, /* / 2F */
andrewcrussell 1:ecf8078bf531 1337 390, /* 0 30 */
andrewcrussell 1:ecf8078bf531 1338 504, /* 1 31 */
andrewcrussell 1:ecf8078bf531 1339 618, /* 2 32 */
andrewcrussell 1:ecf8078bf531 1340 732, /* 3 33 */
andrewcrussell 1:ecf8078bf531 1341 846, /* 4 34 */
andrewcrussell 1:ecf8078bf531 1342 960, /* 5 35 */
andrewcrussell 1:ecf8078bf531 1343 1074, /* 6 36 */
andrewcrussell 1:ecf8078bf531 1344 1188, /* 7 37 */
andrewcrussell 1:ecf8078bf531 1345 1302, /* 8 38 */
andrewcrussell 1:ecf8078bf531 1346 1416, /* 9 39 */
andrewcrussell 1:ecf8078bf531 1347 1530, /* : 3A */
andrewcrussell 1:ecf8078bf531 1348 1590, /* ; 3B */
andrewcrussell 1:ecf8078bf531 1349 1650, /* < 3C */
andrewcrussell 1:ecf8078bf531 1350 1758, /* = 3D */
andrewcrussell 1:ecf8078bf531 1351 1866, /* > 3E */
andrewcrussell 1:ecf8078bf531 1352 1974, /* ? 3F */
andrewcrussell 1:ecf8078bf531 1353 2076, /* @ 40 */
andrewcrussell 1:ecf8078bf531 1354 2274, /* A 41 */
andrewcrussell 1:ecf8078bf531 1355 2406, /* B 42 */
andrewcrussell 1:ecf8078bf531 1356 2532, /* C 43 */
andrewcrussell 1:ecf8078bf531 1357 2652, /* D 44 */
andrewcrussell 1:ecf8078bf531 1358 2790, /* E 45 */
andrewcrussell 1:ecf8078bf531 1359 2898, /* F 46 */
andrewcrussell 1:ecf8078bf531 1360 3000, /* G 47 */
andrewcrussell 1:ecf8078bf531 1361 3144, /* H 48 */
andrewcrussell 1:ecf8078bf531 1362 3282, /* I 49 */
andrewcrussell 1:ecf8078bf531 1363 3342, /* J 4A */
andrewcrussell 1:ecf8078bf531 1364 3414, /* K 4B */
andrewcrussell 1:ecf8078bf531 1365 3534, /* L 4C */
andrewcrussell 1:ecf8078bf531 1366 3630, /* M 4D */
andrewcrussell 1:ecf8078bf531 1367 3822, /* N 4E */
andrewcrussell 1:ecf8078bf531 1368 3966, /* O 4F */
andrewcrussell 1:ecf8078bf531 1369 4116, /* P 50 */
andrewcrussell 1:ecf8078bf531 1370 4236, /* Q 51 */
andrewcrussell 1:ecf8078bf531 1371 4392, /* R 52 */
andrewcrussell 1:ecf8078bf531 1372 4518, /* S 53 */
andrewcrussell 1:ecf8078bf531 1373 4620, /* T 54 */
andrewcrussell 1:ecf8078bf531 1374 4728, /* U 55 */
andrewcrussell 1:ecf8078bf531 1375 4872, /* V 56 */
andrewcrussell 1:ecf8078bf531 1376 5004, /* W 57 */
andrewcrussell 1:ecf8078bf531 1377 5208, /* X 58 */
andrewcrussell 1:ecf8078bf531 1378 5328, /* Y 59 */
andrewcrussell 1:ecf8078bf531 1379 5442, /* Z 5A */
andrewcrussell 1:ecf8078bf531 1380 5550, /* [ 5B */
andrewcrussell 1:ecf8078bf531 1381 5622, /* \ 5C */
andrewcrussell 1:ecf8078bf531 1382 5718, /* ] 5D */
andrewcrussell 1:ecf8078bf531 1383 5790, /* ^ 5E */
andrewcrussell 1:ecf8078bf531 1384 5898, /* _ 5F */
andrewcrussell 1:ecf8078bf531 1385 6024, /* ` 60 */
andrewcrussell 1:ecf8078bf531 1386 6090, /* a 61 */
andrewcrussell 1:ecf8078bf531 1387 6198, /* b 62 */
andrewcrussell 1:ecf8078bf531 1388 6318, /* c 63 */
andrewcrussell 1:ecf8078bf531 1389 6408, /* d 64 */
andrewcrussell 1:ecf8078bf531 1390 6528, /* e 65 */
andrewcrussell 1:ecf8078bf531 1391 6642, /* f 66 */
andrewcrussell 1:ecf8078bf531 1392 6720, /* g 67 */
andrewcrussell 1:ecf8078bf531 1393 6828, /* h 68 */
andrewcrussell 1:ecf8078bf531 1394 6948, /* i 69 */
andrewcrussell 1:ecf8078bf531 1395 7002, /* j 6A */
andrewcrussell 1:ecf8078bf531 1396 7068, /* k 6B */
andrewcrussell 1:ecf8078bf531 1397 7176, /* l 6C */
andrewcrussell 1:ecf8078bf531 1398 7230, /* m 6D */
andrewcrussell 1:ecf8078bf531 1399 7410, /* n 6E */
andrewcrussell 1:ecf8078bf531 1400 7530, /* o 6F */
andrewcrussell 1:ecf8078bf531 1401 7650, /* p 70 */
andrewcrussell 1:ecf8078bf531 1402 7770, /* q 71 */
andrewcrussell 1:ecf8078bf531 1403 7890, /* r 72 */
andrewcrussell 1:ecf8078bf531 1404 7968, /* s 73 */
andrewcrussell 1:ecf8078bf531 1405 8058, /* t 74 */
andrewcrussell 1:ecf8078bf531 1406 8136, /* u 75 */
andrewcrussell 1:ecf8078bf531 1407 8256, /* v 76 */
andrewcrussell 1:ecf8078bf531 1408 8364, /* w 77 */
andrewcrussell 1:ecf8078bf531 1409 8532, /* x 78 */
andrewcrussell 1:ecf8078bf531 1410 8634, /* y 79 */
andrewcrussell 1:ecf8078bf531 1411 8742, /* z 7A */
andrewcrussell 1:ecf8078bf531 1412 };
andrewcrussell 1:ecf8078bf531 1413
andrewcrussell 1:ecf8078bf531 1414 /*******************************************************************************************
andrewcrussell 1:ecf8078bf531 1415 Index table is used to find the mapping index of a character.
andrewcrussell 1:ecf8078bf531 1416
andrewcrussell 1:ecf8078bf531 1417 If you can find a simple mathematical expression for index mapping, you can use that.
andrewcrussell 1:ecf8078bf531 1418 If you do not have such a mathematical expression, this index table is just for you.
andrewcrussell 1:ecf8078bf531 1419
andrewcrussell 1:ecf8078bf531 1420 To get the index of character 'A', you can use the following expression:
andrewcrussell 1:ecf8078bf531 1421
andrewcrussell 1:ecf8078bf531 1422 const unsigned char index = index_table['A'];
andrewcrussell 1:ecf8078bf531 1423
andrewcrussell 1:ecf8078bf531 1424 *******************************************************************************************/
andrewcrussell 1:ecf8078bf531 1425 const unsigned char c28_index_table[] = {
andrewcrussell 1:ecf8078bf531 1426 /* index hexcode decimal char */
andrewcrussell 1:ecf8078bf531 1427 /* ===== ======= ======= ==== */
andrewcrussell 1:ecf8078bf531 1428 0, /* 00 0 . */
andrewcrussell 1:ecf8078bf531 1429 0, /* 01 1 . */
andrewcrussell 1:ecf8078bf531 1430 0, /* 02 2 . */
andrewcrussell 1:ecf8078bf531 1431 0, /* 03 3 . */
andrewcrussell 1:ecf8078bf531 1432 0, /* 04 4 . */
andrewcrussell 1:ecf8078bf531 1433 0, /* 05 5 . */
andrewcrussell 1:ecf8078bf531 1434 0, /* 06 6 . */
andrewcrussell 1:ecf8078bf531 1435 0, /* 07 7 . */
andrewcrussell 1:ecf8078bf531 1436 0, /* 08 8 . */
andrewcrussell 1:ecf8078bf531 1437 0, /* 09 9 . */
andrewcrussell 1:ecf8078bf531 1438 0, /* 0A 10 . */
andrewcrussell 1:ecf8078bf531 1439 0, /* 0B 11 . */
andrewcrussell 1:ecf8078bf531 1440 0, /* 0C 12 . */
andrewcrussell 1:ecf8078bf531 1441 0, /* 0D 13 . */
andrewcrussell 1:ecf8078bf531 1442 0, /* 0E 14 . */
andrewcrussell 1:ecf8078bf531 1443 0, /* 0F 15 . */
andrewcrussell 1:ecf8078bf531 1444 0, /* 10 16 . */
andrewcrussell 1:ecf8078bf531 1445 0, /* 11 17 . */
andrewcrussell 1:ecf8078bf531 1446 0, /* 12 18 . */
andrewcrussell 1:ecf8078bf531 1447 0, /* 13 19 . */
andrewcrussell 1:ecf8078bf531 1448 0, /* 14 20 . */
andrewcrussell 1:ecf8078bf531 1449 0, /* 15 21 . */
andrewcrussell 1:ecf8078bf531 1450 0, /* 16 22 . */
andrewcrussell 1:ecf8078bf531 1451 0, /* 17 23 . */
andrewcrussell 1:ecf8078bf531 1452 0, /* 18 24 . */
andrewcrussell 1:ecf8078bf531 1453 0, /* 19 25 . */
andrewcrussell 1:ecf8078bf531 1454 0, /* 1A 26 . */
andrewcrussell 1:ecf8078bf531 1455 0, /* 1B 27 . */
andrewcrussell 1:ecf8078bf531 1456 0, /* 1C 28 . */
andrewcrussell 1:ecf8078bf531 1457 0, /* 1D 29 . */
andrewcrussell 1:ecf8078bf531 1458 0, /* 1E 30 . */
andrewcrussell 1:ecf8078bf531 1459 0, /* 1F 31 . */
andrewcrussell 1:ecf8078bf531 1460 0, /* 20 32 */
andrewcrussell 1:ecf8078bf531 1461 0, /* 21 33 ! */
andrewcrussell 1:ecf8078bf531 1462 0, /* 22 34 " */
andrewcrussell 1:ecf8078bf531 1463 0, /* 23 35 # */
andrewcrussell 1:ecf8078bf531 1464 0, /* 24 36 $ */
andrewcrussell 1:ecf8078bf531 1465 0, /* 25 37 % */
andrewcrussell 1:ecf8078bf531 1466 0, /* 26 38 & */
andrewcrussell 1:ecf8078bf531 1467 0, /* 27 39 ' */
andrewcrussell 1:ecf8078bf531 1468 0, /* 28 40 ( */
andrewcrussell 1:ecf8078bf531 1469 0, /* 29 41 ) */
andrewcrussell 1:ecf8078bf531 1470 0, /* 2A 42 * */
andrewcrussell 1:ecf8078bf531 1471 0, /* 2B 43 + */
andrewcrussell 1:ecf8078bf531 1472 1, /* 2C 44 , */
andrewcrussell 1:ecf8078bf531 1473 2, /* 2D 45 - */
andrewcrussell 1:ecf8078bf531 1474 3, /* 2E 46 . */
andrewcrussell 1:ecf8078bf531 1475 4, /* 2F 47 / */
andrewcrussell 1:ecf8078bf531 1476 5, /* 30 48 0 */
andrewcrussell 1:ecf8078bf531 1477 6, /* 31 49 1 */
andrewcrussell 1:ecf8078bf531 1478 7, /* 32 50 2 */
andrewcrussell 1:ecf8078bf531 1479 8, /* 33 51 3 */
andrewcrussell 1:ecf8078bf531 1480 9, /* 34 52 4 */
andrewcrussell 1:ecf8078bf531 1481 10, /* 35 53 5 */
andrewcrussell 1:ecf8078bf531 1482 11, /* 36 54 6 */
andrewcrussell 1:ecf8078bf531 1483 12, /* 37 55 7 */
andrewcrussell 1:ecf8078bf531 1484 13, /* 38 56 8 */
andrewcrussell 1:ecf8078bf531 1485 14, /* 39 57 9 */
andrewcrussell 1:ecf8078bf531 1486 15, /* 3A 58 : */
andrewcrussell 1:ecf8078bf531 1487 16, /* 3B 59 ; */
andrewcrussell 1:ecf8078bf531 1488 17, /* 3C 60 < */
andrewcrussell 1:ecf8078bf531 1489 18, /* 3D 61 = */
andrewcrussell 1:ecf8078bf531 1490 19, /* 3E 62 > */
andrewcrussell 1:ecf8078bf531 1491 20, /* 3F 63 ? */
andrewcrussell 1:ecf8078bf531 1492 21, /* 40 64 @ */
andrewcrussell 1:ecf8078bf531 1493 22, /* 41 65 A */
andrewcrussell 1:ecf8078bf531 1494 23, /* 42 66 B */
andrewcrussell 1:ecf8078bf531 1495 24, /* 43 67 C */
andrewcrussell 1:ecf8078bf531 1496 25, /* 44 68 D */
andrewcrussell 1:ecf8078bf531 1497 26, /* 45 69 E */
andrewcrussell 1:ecf8078bf531 1498 27, /* 46 70 F */
andrewcrussell 1:ecf8078bf531 1499 28, /* 47 71 G */
andrewcrussell 1:ecf8078bf531 1500 29, /* 48 72 H */
andrewcrussell 1:ecf8078bf531 1501 30, /* 49 73 I */
andrewcrussell 1:ecf8078bf531 1502 31, /* 4A 74 J */
andrewcrussell 1:ecf8078bf531 1503 32, /* 4B 75 K */
andrewcrussell 1:ecf8078bf531 1504 33, /* 4C 76 L */
andrewcrussell 1:ecf8078bf531 1505 34, /* 4D 77 M */
andrewcrussell 1:ecf8078bf531 1506 35, /* 4E 78 N */
andrewcrussell 1:ecf8078bf531 1507 36, /* 4F 79 O */
andrewcrussell 1:ecf8078bf531 1508 37, /* 50 80 P */
andrewcrussell 1:ecf8078bf531 1509 38, /* 51 81 Q */
andrewcrussell 1:ecf8078bf531 1510 39, /* 52 82 R */
andrewcrussell 1:ecf8078bf531 1511 40, /* 53 83 S */
andrewcrussell 1:ecf8078bf531 1512 41, /* 54 84 T */
andrewcrussell 1:ecf8078bf531 1513 42, /* 55 85 U */
andrewcrussell 1:ecf8078bf531 1514 43, /* 56 86 V */
andrewcrussell 1:ecf8078bf531 1515 44, /* 57 87 W */
andrewcrussell 1:ecf8078bf531 1516 45, /* 58 88 X */
andrewcrussell 1:ecf8078bf531 1517 46, /* 59 89 Y */
andrewcrussell 1:ecf8078bf531 1518 47, /* 5A 90 Z */
andrewcrussell 1:ecf8078bf531 1519 48, /* 5B 91 [ */
andrewcrussell 1:ecf8078bf531 1520 49, /* 5C 92 \ */
andrewcrussell 1:ecf8078bf531 1521 50, /* 5D 93 ] */
andrewcrussell 1:ecf8078bf531 1522 51, /* 5E 94 ^ */
andrewcrussell 1:ecf8078bf531 1523 52, /* 5F 95 _ */
andrewcrussell 1:ecf8078bf531 1524 53, /* 60 96 ` */
andrewcrussell 1:ecf8078bf531 1525 54, /* 61 97 a */
andrewcrussell 1:ecf8078bf531 1526 55, /* 62 98 b */
andrewcrussell 1:ecf8078bf531 1527 56, /* 63 99 c */
andrewcrussell 1:ecf8078bf531 1528 57, /* 64 100 d */
andrewcrussell 1:ecf8078bf531 1529 58, /* 65 101 e */
andrewcrussell 1:ecf8078bf531 1530 59, /* 66 102 f */
andrewcrussell 1:ecf8078bf531 1531 60, /* 67 103 g */
andrewcrussell 1:ecf8078bf531 1532 61, /* 68 104 h */
andrewcrussell 1:ecf8078bf531 1533 62, /* 69 105 i */
andrewcrussell 1:ecf8078bf531 1534 63, /* 6A 106 j */
andrewcrussell 1:ecf8078bf531 1535 64, /* 6B 107 k */
andrewcrussell 1:ecf8078bf531 1536 65, /* 6C 108 l */
andrewcrussell 1:ecf8078bf531 1537 66, /* 6D 109 m */
andrewcrussell 1:ecf8078bf531 1538 67, /* 6E 110 n */
andrewcrussell 1:ecf8078bf531 1539 68, /* 6F 111 o */
andrewcrussell 1:ecf8078bf531 1540 69, /* 70 112 p */
andrewcrussell 1:ecf8078bf531 1541 70, /* 71 113 q */
andrewcrussell 1:ecf8078bf531 1542 71, /* 72 114 r */
andrewcrussell 1:ecf8078bf531 1543 72, /* 73 115 s */
andrewcrussell 1:ecf8078bf531 1544 73, /* 74 116 t */
andrewcrussell 1:ecf8078bf531 1545 74, /* 75 117 u */
andrewcrussell 1:ecf8078bf531 1546 75, /* 76 118 v */
andrewcrussell 1:ecf8078bf531 1547 76, /* 77 119 w */
andrewcrussell 1:ecf8078bf531 1548 77, /* 78 120 x */
andrewcrussell 1:ecf8078bf531 1549 78, /* 79 121 y */
andrewcrussell 1:ecf8078bf531 1550 79, /* 7A 122 z */
andrewcrussell 1:ecf8078bf531 1551 0, /* 7B 123 { */
andrewcrussell 1:ecf8078bf531 1552 0, /* 7C 124 | */
andrewcrussell 1:ecf8078bf531 1553 0, /* 7D 125 } */
andrewcrussell 1:ecf8078bf531 1554 0, /* 7E 126 ~ */
andrewcrussell 1:ecf8078bf531 1555 0, /* 7F 127  */
andrewcrussell 1:ecf8078bf531 1556 0, /* 80 128 ? */
andrewcrussell 1:ecf8078bf531 1557 0, /* 81 129 &#65533; */
andrewcrussell 1:ecf8078bf531 1558 0, /* 82 130 ? */
andrewcrussell 1:ecf8078bf531 1559 0, /* 83 131 ? */
andrewcrussell 1:ecf8078bf531 1560 0, /* 84 132 ? */
andrewcrussell 1:ecf8078bf531 1561 0, /* 85 133 ? */
andrewcrussell 1:ecf8078bf531 1562 0, /* 86 134 ? */
andrewcrussell 1:ecf8078bf531 1563 0, /* 87 135 ? */
andrewcrussell 1:ecf8078bf531 1564 0, /* 88 136 ? */
andrewcrussell 1:ecf8078bf531 1565 0, /* 89 137 ? */
andrewcrussell 1:ecf8078bf531 1566 0, /* 8A 138 ? */
andrewcrussell 1:ecf8078bf531 1567 0, /* 8B 139 ? */
andrewcrussell 1:ecf8078bf531 1568 0, /* 8C 140 ? */
andrewcrussell 1:ecf8078bf531 1569 0, /* 8D 141 &#65533; */
andrewcrussell 1:ecf8078bf531 1570 0, /* 8E 142 ? */
andrewcrussell 1:ecf8078bf531 1571 0, /* 8F 143 &#65533; */
andrewcrussell 1:ecf8078bf531 1572 0, /* 90 144 &#65533; */
andrewcrussell 1:ecf8078bf531 1573 0, /* 91 145 ? */
andrewcrussell 1:ecf8078bf531 1574 0, /* 92 146 ? */
andrewcrussell 1:ecf8078bf531 1575 0, /* 93 147 ? */
andrewcrussell 1:ecf8078bf531 1576 0, /* 94 148 ? */
andrewcrussell 1:ecf8078bf531 1577 0, /* 95 149 ? */
andrewcrussell 1:ecf8078bf531 1578 0, /* 96 150 ? */
andrewcrussell 1:ecf8078bf531 1579 0, /* 97 151 ? */
andrewcrussell 1:ecf8078bf531 1580 0, /* 98 152 ? */
andrewcrussell 1:ecf8078bf531 1581 0, /* 99 153 ? */
andrewcrussell 1:ecf8078bf531 1582 0, /* 9A 154 ? */
andrewcrussell 1:ecf8078bf531 1583 0, /* 9B 155 ? */
andrewcrussell 1:ecf8078bf531 1584 0, /* 9C 156 ? */
andrewcrussell 1:ecf8078bf531 1585 0, /* 9D 157 &#65533; */
andrewcrussell 1:ecf8078bf531 1586 0, /* 9E 158 ? */
andrewcrussell 1:ecf8078bf531 1587 0, /* 9F 159 ? */
andrewcrussell 1:ecf8078bf531 1588 0, /* A0 160 &#65533; */
andrewcrussell 1:ecf8078bf531 1589 0, /* A1 161 &#65533; */
andrewcrussell 1:ecf8078bf531 1590 0, /* A2 162 &#65533; */
andrewcrussell 1:ecf8078bf531 1591 0, /* A3 163 &#65533; */
andrewcrussell 1:ecf8078bf531 1592 0, /* A4 164 &#65533; */
andrewcrussell 1:ecf8078bf531 1593 0, /* A5 165 &#65533; */
andrewcrussell 1:ecf8078bf531 1594 0, /* A6 166 &#65533; */
andrewcrussell 1:ecf8078bf531 1595 0, /* A7 167 &#65533; */
andrewcrussell 1:ecf8078bf531 1596 0, /* A8 168 &#65533; */
andrewcrussell 1:ecf8078bf531 1597 0, /* A9 169 &#65533; */
andrewcrussell 1:ecf8078bf531 1598 0, /* AA 170 &#65533; */
andrewcrussell 1:ecf8078bf531 1599 0, /* AB 171 &#65533; */
andrewcrussell 1:ecf8078bf531 1600 0, /* AC 172 &#65533; */
andrewcrussell 1:ecf8078bf531 1601 0, /* AD 173 &#65533; */
andrewcrussell 1:ecf8078bf531 1602 0, /* AE 174 &#65533; */
andrewcrussell 1:ecf8078bf531 1603 0, /* AF 175 &#65533; */
andrewcrussell 1:ecf8078bf531 1604 0, /* B0 176 &#65533; */
andrewcrussell 1:ecf8078bf531 1605 0, /* B1 177 &#65533; */
andrewcrussell 1:ecf8078bf531 1606 0, /* B2 178 &#65533; */
andrewcrussell 1:ecf8078bf531 1607 0, /* B3 179 &#65533; */
andrewcrussell 1:ecf8078bf531 1608 0, /* B4 180 &#65533; */
andrewcrussell 1:ecf8078bf531 1609 0, /* B5 181 &#65533; */
andrewcrussell 1:ecf8078bf531 1610 0, /* B6 182 &#65533; */
andrewcrussell 1:ecf8078bf531 1611 0, /* B7 183 &#65533; */
andrewcrussell 1:ecf8078bf531 1612 0, /* B8 184 &#65533; */
andrewcrussell 1:ecf8078bf531 1613 0, /* B9 185 &#65533; */
andrewcrussell 1:ecf8078bf531 1614 0, /* BA 186 &#65533; */
andrewcrussell 1:ecf8078bf531 1615 0, /* BB 187 &#65533; */
andrewcrussell 1:ecf8078bf531 1616 0, /* BC 188 &#65533; */
andrewcrussell 1:ecf8078bf531 1617 0, /* BD 189 &#65533; */
andrewcrussell 1:ecf8078bf531 1618 0, /* BE 190 &#65533; */
andrewcrussell 1:ecf8078bf531 1619 0, /* BF 191 &#65533; */
andrewcrussell 1:ecf8078bf531 1620 0, /* C0 192 &#65533; */
andrewcrussell 1:ecf8078bf531 1621 0, /* C1 193 &#65533; */
andrewcrussell 1:ecf8078bf531 1622 0, /* C2 194 &#65533; */
andrewcrussell 1:ecf8078bf531 1623 0, /* C3 195 &#65533; */
andrewcrussell 1:ecf8078bf531 1624 0, /* C4 196 &#65533; */
andrewcrussell 1:ecf8078bf531 1625 0, /* C5 197 &#65533; */
andrewcrussell 1:ecf8078bf531 1626 0, /* C6 198 &#65533; */
andrewcrussell 1:ecf8078bf531 1627 0, /* C7 199 &#65533; */
andrewcrussell 1:ecf8078bf531 1628 0, /* C8 200 &#65533; */
andrewcrussell 1:ecf8078bf531 1629 0, /* C9 201 &#65533; */
andrewcrussell 1:ecf8078bf531 1630 0, /* CA 202 &#65533; */
andrewcrussell 1:ecf8078bf531 1631 0, /* CB 203 &#65533; */
andrewcrussell 1:ecf8078bf531 1632 0, /* CC 204 &#65533; */
andrewcrussell 1:ecf8078bf531 1633 0, /* CD 205 &#65533; */
andrewcrussell 1:ecf8078bf531 1634 0, /* CE 206 &#65533; */
andrewcrussell 1:ecf8078bf531 1635 0, /* CF 207 &#65533; */
andrewcrussell 1:ecf8078bf531 1636 0, /* D0 208 &#65533; */
andrewcrussell 1:ecf8078bf531 1637 0, /* D1 209 &#65533; */
andrewcrussell 1:ecf8078bf531 1638 0, /* D2 210 &#65533; */
andrewcrussell 1:ecf8078bf531 1639 0, /* D3 211 &#65533; */
andrewcrussell 1:ecf8078bf531 1640 0, /* D4 212 &#65533; */
andrewcrussell 1:ecf8078bf531 1641 0, /* D5 213 &#65533; */
andrewcrussell 1:ecf8078bf531 1642 0, /* D6 214 &#65533; */
andrewcrussell 1:ecf8078bf531 1643 0, /* D7 215 &#65533; */
andrewcrussell 1:ecf8078bf531 1644 0, /* D8 216 &#65533; */
andrewcrussell 1:ecf8078bf531 1645 0, /* D9 217 &#65533; */
andrewcrussell 1:ecf8078bf531 1646 0, /* DA 218 &#65533; */
andrewcrussell 1:ecf8078bf531 1647 0, /* DB 219 &#65533; */
andrewcrussell 1:ecf8078bf531 1648 0, /* DC 220 &#65533; */
andrewcrussell 1:ecf8078bf531 1649 0, /* DD 221 &#65533; */
andrewcrussell 1:ecf8078bf531 1650 0, /* DE 222 &#65533; */
andrewcrussell 1:ecf8078bf531 1651 0, /* DF 223 &#65533; */
andrewcrussell 1:ecf8078bf531 1652 0, /* E0 224 &#65533; */
andrewcrussell 1:ecf8078bf531 1653 0, /* E1 225 &#65533; */
andrewcrussell 1:ecf8078bf531 1654 0, /* E2 226 &#65533; */
andrewcrussell 1:ecf8078bf531 1655 0, /* E3 227 &#65533; */
andrewcrussell 1:ecf8078bf531 1656 0, /* E4 228 &#65533; */
andrewcrussell 1:ecf8078bf531 1657 0, /* E5 229 &#65533; */
andrewcrussell 1:ecf8078bf531 1658 0, /* E6 230 &#65533; */
andrewcrussell 1:ecf8078bf531 1659 0, /* E7 231 &#65533; */
andrewcrussell 1:ecf8078bf531 1660 0, /* E8 232 &#65533; */
andrewcrussell 1:ecf8078bf531 1661 0, /* E9 233 &#65533; */
andrewcrussell 1:ecf8078bf531 1662 0, /* EA 234 &#65533; */
andrewcrussell 1:ecf8078bf531 1663 0, /* EB 235 &#65533; */
andrewcrussell 1:ecf8078bf531 1664 0, /* EC 236 &#65533; */
andrewcrussell 1:ecf8078bf531 1665 0, /* ED 237 &#65533; */
andrewcrussell 1:ecf8078bf531 1666 0, /* EE 238 &#65533; */
andrewcrussell 1:ecf8078bf531 1667 0, /* EF 239 &#65533; */
andrewcrussell 1:ecf8078bf531 1668 0, /* F0 240 &#65533; */
andrewcrussell 1:ecf8078bf531 1669 0, /* F1 241 &#65533; */
andrewcrussell 1:ecf8078bf531 1670 0, /* F2 242 &#65533; */
andrewcrussell 1:ecf8078bf531 1671 0, /* F3 243 &#65533; */
andrewcrussell 1:ecf8078bf531 1672 0, /* F4 244 &#65533; */
andrewcrussell 1:ecf8078bf531 1673 0, /* F5 245 &#65533; */
andrewcrussell 1:ecf8078bf531 1674 0, /* F6 246 &#65533; */
andrewcrussell 1:ecf8078bf531 1675 0, /* F7 247 &#65533; */
andrewcrussell 1:ecf8078bf531 1676 0, /* F8 248 &#65533; */
andrewcrussell 1:ecf8078bf531 1677 0, /* F9 249 &#65533; */
andrewcrussell 1:ecf8078bf531 1678 0, /* FA 250 &#65533; */
andrewcrussell 1:ecf8078bf531 1679 0, /* FB 251 &#65533; */
andrewcrussell 1:ecf8078bf531 1680 0, /* FC 252 &#65533; */
andrewcrussell 1:ecf8078bf531 1681 0, /* FD 253 &#65533; */
andrewcrussell 1:ecf8078bf531 1682 0, /* FE 254 &#65533; */
andrewcrussell 1:ecf8078bf531 1683 0, /* FF 255 &#65533; */
andrewcrussell 1:ecf8078bf531 1684 };
andrewcrussell 1:ecf8078bf531 1685
andrewcrussell 1:ecf8078bf531 1686 /*******************************************************************************************
andrewcrussell 1:ecf8078bf531 1687 Width table provides the width of each character. It's useful for proportional font only.
andrewcrussell 1:ecf8078bf531 1688 For monospaced font, the width of each character is the same.
andrewcrussell 1:ecf8078bf531 1689
andrewcrussell 1:ecf8078bf531 1690 To get the width of character 'A', you can use the following expression:
andrewcrussell 1:ecf8078bf531 1691
andrewcrussell 1:ecf8078bf531 1692 const unsigned char index = index_table['A'];
andrewcrussell 1:ecf8078bf531 1693 const unsigned char width = width_table[index];
andrewcrussell 1:ecf8078bf531 1694
andrewcrussell 1:ecf8078bf531 1695 *******************************************************************************************/
andrewcrussell 1:ecf8078bf531 1696 const unsigned char c28_width_table[] = {
andrewcrussell 1:ecf8078bf531 1697 /* width char hexcode */
andrewcrussell 1:ecf8078bf531 1698 /* ===== ==== ======= */
andrewcrussell 1:ecf8078bf531 1699 18, /* + 2B */
andrewcrussell 1:ecf8078bf531 1700 10, /* , 2C */
andrewcrussell 1:ecf8078bf531 1701 11, /* - 2D */
andrewcrussell 1:ecf8078bf531 1702 10, /* . 2E */
andrewcrussell 1:ecf8078bf531 1703 16, /* / 2F */
andrewcrussell 1:ecf8078bf531 1704 19, /* 0 30 */
andrewcrussell 1:ecf8078bf531 1705 19, /* 1 31 */
andrewcrussell 1:ecf8078bf531 1706 19, /* 2 32 */
andrewcrussell 1:ecf8078bf531 1707 19, /* 3 33 */
andrewcrussell 1:ecf8078bf531 1708 19, /* 4 34 */
andrewcrussell 1:ecf8078bf531 1709 19, /* 5 35 */
andrewcrussell 1:ecf8078bf531 1710 19, /* 6 36 */
andrewcrussell 1:ecf8078bf531 1711 19, /* 7 37 */
andrewcrussell 1:ecf8078bf531 1712 19, /* 8 38 */
andrewcrussell 1:ecf8078bf531 1713 19, /* 9 39 */
andrewcrussell 1:ecf8078bf531 1714 10, /* : 3A */
andrewcrussell 1:ecf8078bf531 1715 10, /* ; 3B */
andrewcrussell 1:ecf8078bf531 1716 18, /* < 3C */
andrewcrussell 1:ecf8078bf531 1717 18, /* = 3D */
andrewcrussell 1:ecf8078bf531 1718 18, /* > 3E */
andrewcrussell 1:ecf8078bf531 1719 17, /* ? 3F */
andrewcrussell 1:ecf8078bf531 1720 33, /* @ 40 */
andrewcrussell 1:ecf8078bf531 1721 22, /* A 41 */
andrewcrussell 1:ecf8078bf531 1722 21, /* B 42 */
andrewcrussell 1:ecf8078bf531 1723 20, /* C 43 */
andrewcrussell 1:ecf8078bf531 1724 23, /* D 44 */
andrewcrussell 1:ecf8078bf531 1725 18, /* E 45 */
andrewcrussell 1:ecf8078bf531 1726 17, /* F 46 */
andrewcrussell 1:ecf8078bf531 1727 24, /* G 47 */
andrewcrussell 1:ecf8078bf531 1728 23, /* H 48 */
andrewcrussell 1:ecf8078bf531 1729 10, /* I 49 */
andrewcrussell 1:ecf8078bf531 1730 12, /* J 4A */
andrewcrussell 1:ecf8078bf531 1731 20, /* K 4B */
andrewcrussell 1:ecf8078bf531 1732 16, /* L 4C */
andrewcrussell 1:ecf8078bf531 1733 32, /* M 4D */
andrewcrussell 1:ecf8078bf531 1734 24, /* N 4E */
andrewcrussell 1:ecf8078bf531 1735 25, /* O 4F */
andrewcrussell 1:ecf8078bf531 1736 20, /* P 50 */
andrewcrussell 1:ecf8078bf531 1737 26, /* Q 51 */
andrewcrussell 1:ecf8078bf531 1738 21, /* R 52 */
andrewcrussell 1:ecf8078bf531 1739 17, /* S 53 */
andrewcrussell 1:ecf8078bf531 1740 18, /* T 54 */
andrewcrussell 1:ecf8078bf531 1741 24, /* U 55 */
andrewcrussell 1:ecf8078bf531 1742 22, /* V 56 */
andrewcrussell 1:ecf8078bf531 1743 34, /* W 57 */
andrewcrussell 1:ecf8078bf531 1744 20, /* X 58 */
andrewcrussell 1:ecf8078bf531 1745 19, /* Y 59 */
andrewcrussell 1:ecf8078bf531 1746 18, /* Z 5A */
andrewcrussell 1:ecf8078bf531 1747 12, /* [ 5B */
andrewcrussell 1:ecf8078bf531 1748 16, /* \ 5C */
andrewcrussell 1:ecf8078bf531 1749 12, /* ] 5D */
andrewcrussell 1:ecf8078bf531 1750 18, /* ^ 5E */
andrewcrussell 1:ecf8078bf531 1751 21, /* _ 5F */
andrewcrussell 1:ecf8078bf531 1752 11, /* ` 60 */
andrewcrussell 1:ecf8078bf531 1753 18, /* a 61 */
andrewcrussell 1:ecf8078bf531 1754 20, /* b 62 */
andrewcrussell 1:ecf8078bf531 1755 15, /* c 63 */
andrewcrussell 1:ecf8078bf531 1756 20, /* d 64 */
andrewcrussell 1:ecf8078bf531 1757 19, /* e 65 */
andrewcrussell 1:ecf8078bf531 1758 13, /* f 66 */
andrewcrussell 1:ecf8078bf531 1759 18, /* g 67 */
andrewcrussell 1:ecf8078bf531 1760 20, /* h 68 */
andrewcrussell 1:ecf8078bf531 1761 9, /* i 69 */
andrewcrussell 1:ecf8078bf531 1762 11, /* j 6A */
andrewcrussell 1:ecf8078bf531 1763 18, /* k 6B */
andrewcrussell 1:ecf8078bf531 1764 9, /* l 6C */
andrewcrussell 1:ecf8078bf531 1765 30, /* m 6D */
andrewcrussell 1:ecf8078bf531 1766 20, /* n 6E */
andrewcrussell 1:ecf8078bf531 1767 20, /* o 6F */
andrewcrussell 1:ecf8078bf531 1768 20, /* p 70 */
andrewcrussell 1:ecf8078bf531 1769 20, /* q 71 */
andrewcrussell 1:ecf8078bf531 1770 13, /* r 72 */
andrewcrussell 1:ecf8078bf531 1771 15, /* s 73 */
andrewcrussell 1:ecf8078bf531 1772 13, /* t 74 */
andrewcrussell 1:ecf8078bf531 1773 20, /* u 75 */
andrewcrussell 1:ecf8078bf531 1774 18, /* v 76 */
andrewcrussell 1:ecf8078bf531 1775 28, /* w 77 */
andrewcrussell 1:ecf8078bf531 1776 17, /* x 78 */
andrewcrussell 1:ecf8078bf531 1777 18, /* y 79 */
andrewcrussell 1:ecf8078bf531 1778 15, /* z 7A */
andrewcrussell 1:ecf8078bf531 1779 };