components/tft/minya24.c

changeset 0
b74b0e4902c3
equal deleted inserted replaced
-1:000000000000 0:b74b0e4902c3
1 // This comes with no warranty, implied or otherwise
2
3 // This data structure was designed to support Proportional fonts
4 // on Arduinos. It can however handle any ttf font that has been converted
5 // using the conversion program. These could be fixed width or proportional
6 // fonts. Individual characters do not have to be multiples of 8 bits wide.
7 // Any width is fine and does not need to be fixed.
8
9 // The data bits are packed to minimize data requirements, but the tradeoff
10 // is that a header is required per character.
11
12 // minya24.c
13 // Point Size : 24
14 // Memory usage : 2807 bytes
15 // # characters : 95
16
17 // Header Format (to make Arduino UTFT Compatible):
18 // ------------------------------------------------
19 // Character Width (Used as a marker to indicate use this format. i.e.: = 0x00)
20 // Character Height
21 // First Character (Reserved. 0x00)
22 // Number Of Characters (Reserved. 0x00)
23
24 unsigned char tft_minya24[] =
25 {
26 0x00, 0x15, 0x00, 0x00,
27
28 // Individual Character Format:
29 // ----------------------------
30 // Character Code
31 // Adjusted Y Offset
32 // Width
33 // Height
34 // xOffset
35 // xDelta (the distance to move the cursor. Effective width of the character.)
36 // Data[n]
37
38 // NOTE: You can remove any of these characters if they are not needed in
39 // your application. The first character number in each Glyph indicates
40 // the ASCII character code. Therefore, these do not have to be sequential.
41 // Just remove all the content for a particular character to save space.
42
43 // ' '
44 0x20,0x13,0x00,0x00,0x00,0x07,
45
46 // '!'
47 0x21,0x02,0x05,0x12,0x00,0x05,
48 0x11,0x8C,0x63,0x18,0xC6,0x31,0x8C,0x42,0x01,0xCE,0x73,0x80,
49 // '"'
50 0x22,0x01,0x06,0x08,0x00,0x06,
51 0x01,0xA6,0xDB,0x6D,0xB6,0xC0,
52 // '#'
53 0x23,0x04,0x0C,0x0E,0x00,0x0B,
54 0x04,0x80,0x6C,0x0C,0x80,0xD8,0x7F,0xE7,0xFE,0x1B,0x01,0xB0,0x7F,0xE7,0xFC,0x12,0x03,0x20,0x32,0x00,0x00,
55 // '$'
56 0x24,0x02,0x0A,0x11,0x00,0x0B,
57 0x04,0x01,0x61,0xF8,0xFE,0x65,0x19,0x06,0x40,0xF0,0x1F,0x01,0xE0,0x4C,0x93,0x7C,0xCF,0xE0,0x60,0x10,0x04,0x00,
58 // '%'
59 0x25,0x01,0x0D,0x14,0x01,0x0F,
60 0x00,0x01,0xC1,0x1F,0x19,0x8C,0xCC,0x6C,0x63,0x61,0x36,0x0F,0xB0,0x1B,0x00,0x18,0x01,0x80,0x0C,0x00,0xCE,0x06,0xF8,0x6C,0x66,0x63,0x33,0x13,0x0F,0x98,0x38,0x00,0x00,
61 // '&'
62 0x26,0x02,0x0E,0x11,0x00,0x0D,
63 0x0E,0x00,0x7C,0x01,0xB0,0x06,0xC0,0x1E,0x00,0x38,0x00,0xC3,0x07,0x8C,0x37,0x60,0xCD,0x86,0x1E,0x18,0x70,0x41,0xE1,0x07,0xC6,0x33,0x9F,0x86,0x38,0x00,
64 // '''
65 0x27,0x02,0x03,0x08,0x00,0x03,
66 0x6D,0xB6,0xD8,
67 // '('
68 0x28,0x01,0x05,0x14,0x02,0x07,
69 0x00,0x8E,0x66,0x33,0x18,0xC6,0x31,0x8C,0x61,0x0C,0x63,0x8C,0x00,
70 // ')'
71 0x29,0x01,0x06,0x15,0x00,0x07,
72 0x01,0x86,0x0C,0x18,0x61,0x82,0x08,0x30,0xC2,0x08,0x61,0x86,0x30,0xC6,0x10,0x00,
73 // '*'
74 0x2A,0x04,0x0A,0x0D,0x01,0x0B,
75 0x08,0x03,0x04,0xC1,0xF6,0x7F,0x07,0x81,0xC0,0xF8,0x3F,0x1B,0xCC,0xD8,0x30,0x0C,0x00,
76 // '+'
77 0x2B,0x06,0x0A,0x0A,0x01,0x0B,
78 0x00,0x03,0x00,0xC0,0x30,0x7F,0xBF,0xE0,0xC0,0x30,0x0C,0x00,0x00,
79 // ','
80 0x2C,0x10,0x05,0x07,0x00,0x05,
81 0x33,0x9C,0x63,0x20,0x00,
82 // '-'
83 0x2D,0x09,0x07,0x02,0x00,0x07,
84 0x7D,0xF8,
85 // '.'
86 0x2E,0x10,0x04,0x04,0x01,0x05,
87 0x6E,0xE6,
88 // '/'
89 0x2F,0x01,0x0C,0x13,0x00,0x0B,
90 0x00,0x00,0x06,0x00,0x60,0x0C,0x00,0xC0,0x18,0x01,0x80,0x30,0x03,0x00,0x60,0x06,0x00,0xC0,0x0C,0x01,0x80,0x18,0x03,0x00,0x30,0x06,0x00,0x40,0x00,
91 // '0'
92 0x30,0x08,0x0B,0x0B,0x00,0x0B,
93 0x0E,0x03,0xE0,0xC6,0x30,0x66,0x0C,0xC0,0x98,0x33,0x06,0x61,0xC7,0xF0,0x7C,0x00,
94 // '1'
95 0x31,0x08,0x0A,0x0D,0x00,0x09,
96 0x04,0x1F,0x03,0xC0,0x30,0x0C,0x03,0x00,0xC0,0x30,0x0C,0x03,0x07,0xF9,0xFE,0x00,0x00,
97 // '2'
98 0x32,0x06,0x0A,0x0E,0x00,0x0A,
99 0x0E,0x07,0xC3,0x30,0xCC,0x03,0x01,0x80,0x60,0x30,0x18,0x0C,0x03,0x01,0xF8,0x7F,0xC0,0x20,
100 // '3'
101 0x33,0x08,0x09,0x10,0x00,0x08,
102 0x78,0x3F,0x81,0x81,0x81,0xC0,0xC0,0xE0,0x78,0x06,0x01,0x01,0x80,0xC0,0xE1,0xE0,0xC0,0x00,
103 // '4'
104 0x34,0x03,0x0B,0x13,0x00,0x0A,
105 0x00,0x00,0xC0,0x18,0x03,0x00,0x60,0x08,0x03,0x00,0x60,0x0D,0x83,0x20,0x64,0x18,0x83,0x10,0xC6,0x1F,0xF3,0xFE,0x03,0x00,0x60,0x0C,0x00,
106 // '5'
107 0x35,0x09,0x0A,0x0E,0x00,0x0A,
108 0x3F,0x8F,0xE3,0x00,0x80,0x60,0x1F,0x87,0xF0,0x06,0x01,0x80,0x60,0x19,0x86,0x7F,0x07,0x80,
109 // '6'
110 0x36,0x03,0x0A,0x12,0x00,0x0A,
111 0x00,0x01,0x80,0xE0,0x30,0x18,0x06,0x03,0x00,0xC0,0x60,0x1B,0x87,0xF1,0x86,0x61,0x90,0x66,0x19,0x86,0x3F,0x07,0x80,
112 // '7'
113 0x37,0x09,0x0A,0x0E,0x00,0x0A,
114 0x7F,0x9F,0xF0,0x18,0x0C,0x06,0x01,0x80,0xC0,0x30,0x18,0x06,0x01,0x80,0x40,0x10,0x0C,0x00,
115 // '8'
116 0x38,0x03,0x0B,0x11,0x00,0x0B,
117 0x0F,0x07,0xF0,0xC3,0x30,0x66,0x0C,0x63,0x87,0xE0,0xF8,0x39,0xCE,0x19,0x81,0x30,0x34,0x06,0xC1,0x98,0x71,0xFC,0x1F,0x00,
118 // '9'
119 0x39,0x07,0x0A,0x11,0x00,0x0A,
120 0x1E,0x0F,0xC6,0x19,0x86,0x41,0x98,0x66,0x18,0xFE,0x1D,0x80,0x40,0x30,0x0C,0x06,0x03,0x01,0xC0,0x20,0x00,0x00,
121 // ':'
122 0x3A,0x0A,0x05,0x0A,0x00,0x05,
123 0x33,0x9C,0x60,0x00,0xCE,0x71,0x80,
124 // ';'
125 0x3B,0x09,0x05,0x0D,0x00,0x06,
126 0x33,0xDE,0x60,0x00,0x0E,0x73,0x8C,0xC0,0x00,
127 // '<'
128 0x3C,0x06,0x0A,0x0C,0x00,0x09,
129 0x00,0x00,0xE0,0x70,0x38,0x1C,0x1C,0x03,0x00,0x70,0x0E,0x01,0xC0,0x10,0x00,
130 // '='
131 0x3D,0x09,0x08,0x06,0x01,0x0A,
132 0xFF,0xFE,0x00,0x00,0x7F,0xFF,
133 // '>'
134 0x3E,0x06,0x0A,0x0C,0x00,0x09,
135 0x00,0x18,0x03,0x80,0x70,0x0E,0x00,0xE0,0x30,0x38,0x1C,0x0E,0x02,0x00,0x00,
136 // '?'
137 0x3F,0x02,0x09,0x12,0x00,0x09,
138 0x1E,0x1F,0x98,0x6C,0x30,0x18,0x18,0x38,0x30,0x30,0x18,0x0C,0x02,0x01,0x00,0x00,0x60,0x78,0x3C,0x0C,0x00,
139 // '@'
140 0x40,0x02,0x11,0x11,0x00,0x11,
141 0x01,0xF0,0x03,0xFE,0x03,0x03,0x83,0x00,0xC3,0x04,0x31,0x1F,0x19,0x9F,0x0C,0xCC,0x86,0x4C,0x43,0x24,0x21,0x12,0x39,0x89,0xF7,0x84,0x71,0x83,0x00,0x00,0xC1,0x80,0x3F,0xC0,0x0F,0x80,0x00,
142 // 'A'
143 0x41,0x02,0x12,0x13,0x00,0x10,
144 0x00,0x00,0x01,0xF0,0x00,0x7E,0x00,0x03,0x80,0x01,0xA0,0x00,0x6C,0x00,0x1B,0x00,0x0C,0x40,0x03,0x18,0x01,0x86,0x00,0x61,0x80,0x1F,0xE0,0x0F,0xFC,0x03,0x03,0x01,0x80,0xC0,0x60,0x10,0x18,0x1F,0x9F,0xC7,0xEF,0xF8,0x00,
145 // 'B'
146 0x42,0x02,0x0E,0x13,0x00,0x0E,
147 0x7F,0x81,0xFF,0x81,0x86,0x06,0x18,0x18,0xC0,0x66,0x01,0xFC,0x07,0xFC,0x1C,0x30,0x60,0x61,0x81,0x86,0x06,0x18,0x18,0x60,0x61,0x81,0x06,0x0C,0x18,0xE0,0xFE,0x03,0xE0,0x00,
148 // 'C'
149 0x43,0x02,0x0F,0x12,0x00,0x0F,
150 0x03,0xF0,0x1F,0xE0,0x70,0xC1,0x80,0x83,0x00,0x04,0x00,0x18,0x00,0x30,0x00,0x60,0x00,0xC0,0x01,0x80,0x03,0x00,0x06,0x00,0x06,0x00,0x0E,0x01,0x0E,0x0E,0x0F,0xF8,0x07,0xE0,
151 // 'D'
152 0x44,0x02,0x0F,0x13,0x00,0x0F,
153 0x3F,0xC0,0x7F,0xE0,0x60,0xE0,0xC0,0xC1,0x80,0xC3,0x01,0x86,0x03,0x0C,0x02,0x18,0x04,0x30,0x08,0x60,0x30,0xC0,0x61,0x80,0x83,0x03,0x06,0x0C,0x0C,0x38,0x18,0xE0,0xFF,0x81,0xF8,0x00,
154 // 'E'
155 0x45,0x02,0x0D,0x13,0x00,0x0D,
156 0x3F,0xF1,0xFF,0x86,0x0C,0x30,0x61,0x80,0x0C,0x40,0x62,0x03,0xF0,0x1F,0x80,0xC4,0x06,0x20,0x30,0x01,0x80,0x0C,0x00,0x60,0xC3,0x06,0x7F,0xF3,0xFF,0x80,0x00,
157 // 'F'
158 0x46,0x01,0x0E,0x13,0x00,0x0E,
159 0x00,0x01,0xFF,0xE7,0xFF,0x86,0x06,0x18,0x18,0x63,0x01,0x8C,0x03,0xF0,0x0F,0xC0,0x63,0x01,0x8C,0x06,0x30,0x18,0x00,0x60,0x01,0x80,0x06,0x00,0x3F,0x81,0xFE,0x00,0x00,0x00,
160 // 'G'
161 0x47,0x01,0x11,0x14,0x00,0x11,
162 0x00,0x00,0x03,0xC8,0x03,0xFC,0x03,0x0E,0x03,0x03,0x01,0x00,0x01,0x80,0x00,0xC0,0x00,0x60,0x03,0x30,0x3F,0xD8,0x1F,0x0C,0x01,0x86,0x00,0xC3,0x80,0x60,0xC0,0x30,0x70,0x38,0x1C,0x3C,0x07,0xF6,0x01,0xF3,0x80,0x01,0xE0,
163 // 'H'
164 0x48,0x01,0x10,0x13,0x00,0x10,
165 0x00,0x00,0x7C,0x0F,0x1C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x08,0x0C,0x08,0x0F,0xF8,0x0F,0xF8,0x0C,0x18,0x0C,0x18,0x0C,0x18,0x0C,0x18,0x0C,0x18,0x0C,0x18,0x0C,0x18,0x0C,0x1A,0x7C,0x1F,0x7C,0x10,
166 // 'I'
167 0x49,0x02,0x08,0x13,0x00,0x08,
168 0x7E,0x7E,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x7E,0x7E,
169 // 'J'
170 0x4A,0x01,0x0C,0x14,0x00,0x0B,
171 0x00,0x00,0x7E,0x07,0xE0,0x18,0x01,0x80,0x18,0x01,0x80,0x18,0x00,0x80,0x08,0x00,0x80,0x18,0x61,0x84,0x18,0x41,0x8C,0x18,0xC3,0x06,0x70,0x7E,0x01,0x80,
172 // 'K'
173 0x4B,0x02,0x11,0x13,0x00,0x10,
174 0x7E,0x7E,0x3F,0x3E,0x06,0x06,0x03,0x06,0x01,0x86,0x00,0xC6,0x00,0x66,0x00,0x37,0x00,0x1F,0x80,0x0E,0x60,0x06,0x10,0x03,0x0C,0x01,0x06,0x00,0x81,0x00,0x60,0x80,0x30,0x66,0x7E,0x1B,0x3F,0x0F,0x80,0x01,0x80,
175 // 'L'
176 0x4C,0x02,0x0D,0x11,0x00,0x0D,
177 0x7E,0x03,0xF0,0x06,0x00,0x30,0x01,0x80,0x0C,0x00,0x60,0x03,0x00,0x18,0x00,0xC0,0x06,0x00,0x30,0x01,0x81,0x0C,0x08,0x60,0x4F,0xFF,0x7F,0xF8,
178 // 'M'
179 0x4D,0x02,0x14,0x12,0x00,0x13,
180 0x7C,0x07,0x87,0xC0,0x7C,0x0C,0x06,0x00,0xE0,0xE0,0x0E,0x0E,0x00,0xE0,0xE0,0x1B,0x1E,0x01,0xB1,0x60,0x0B,0x16,0x00,0x9B,0x60,0x09,0xA6,0x00,0x9E,0x60,0x08,0xE6,0x00,0x8C,0x60,0x08,0xC6,0x03,0x8C,0x7E,0x78,0x47,0xE0,0x00,0x00,
181 // 'N'
182 0x4E,0x01,0x12,0x13,0x00,0x12,
183 0x00,0x00,0x1F,0x03,0xF3,0xC0,0x7C,0x38,0x10,0x0E,0x04,0x03,0xC1,0x00,0xB0,0x40,0x26,0x10,0x09,0x84,0x02,0x31,0x00,0x8C,0x40,0x21,0x90,0x08,0x74,0x06,0x0F,0x01,0x81,0xC0,0x60,0x70,0x78,0x0C,0x3E,0x03,0x00,0x00,0x40,
184 // 'O'
185 0x4F,0x02,0x11,0x12,0x00,0x11,
186 0x03,0xE0,0x07,0xFC,0x07,0x07,0x06,0x01,0x82,0x00,0x63,0x00,0x11,0x80,0x0C,0x80,0x06,0x40,0x03,0x20,0x01,0x98,0x00,0xCC,0x00,0x66,0x00,0x31,0x80,0x30,0xE0,0x18,0x38,0x18,0x0F,0xF8,0x01,0xF0,0x00,
187 // 'P'
188 0x50,0x02,0x0C,0x12,0x00,0x0C,
189 0x7F,0x07,0xFC,0x10,0x61,0x03,0x10,0x31,0x03,0x10,0x31,0x06,0x10,0xE1,0xFC,0x1E,0x01,0x00,0x18,0x01,0x80,0x18,0x01,0x80,0x7E,0x07,0xF0,
190 // 'Q'
191 0x51,0x02,0x13,0x15,0x00,0x11,
192 0x07,0xE0,0x01,0xFE,0x00,0x60,0x70,0x18,0x06,0x06,0x00,0x60,0xC0,0x0C,0x18,0x00,0xC2,0x00,0x18,0x40,0x03,0x08,0x0C,0x61,0x83,0xCC,0x30,0xCD,0x83,0x09,0xE0,0x60,0x3C,0x06,0x07,0x00,0x7F,0xE3,0x07,0xEC,0x40,0x01,0x98,0x00,0x33,0x00,0x03,0xC0,0x00,0x30,
193 // 'R'
194 0x52,0x02,0x0F,0x13,0x00,0x0F,
195 0x7F,0x80,0xFF,0xE0,0x60,0xE0,0xC0,0x61,0x80,0xC3,0x01,0x86,0x07,0x0C,0x1C,0x1F,0xF0,0x3F,0x80,0x66,0x00,0xC4,0x01,0x8C,0x63,0x18,0xC6,0x11,0x8C,0x33,0x7E,0x7C,0xFC,0x70,0x00,0x00,
196 // 'S'
197 0x53,0x01,0x0D,0x13,0x00,0x0D,
198 0x00,0x60,0x7B,0x07,0xF8,0x71,0xC3,0x06,0x18,0x00,0xC0,0x03,0x80,0x0E,0x00,0x1C,0x00,0x78,0x00,0xC0,0x03,0x30,0x19,0x80,0xCC,0x06,0x30,0x70,0xFF,0x03,0xE0,
199 // 'T'
200 0x54,0x01,0x0F,0x12,0x00,0x0F,
201 0x00,0x00,0xFF,0xF9,0xFF,0xF3,0x18,0x66,0x30,0xCC,0x61,0x90,0xC3,0x01,0x80,0x03,0x00,0x06,0x00,0x0C,0x00,0x18,0x00,0x30,0x00,0x60,0x00,0xC0,0x01,0x80,0x0F,0xE0,0x1F,0xC0,
202 // 'U'
203 0x55,0x02,0x10,0x11,0x00,0x0F,
204 0x7C,0x7E,0x7C,0x7E,0x30,0x08,0x30,0x08,0x30,0x08,0x30,0x0C,0x30,0x0C,0x30,0x0C,0x30,0x0C,0x30,0x0C,0x30,0x0C,0x10,0x08,0x18,0x18,0x18,0x18,0x0C,0x30,0x0F,0xF0,0x03,0xC0,
205 // 'V'
206 0x56,0x01,0x10,0x12,0x00,0x10,
207 0x00,0x7E,0xFE,0x7E,0x7E,0x18,0x18,0x30,0x18,0x30,0x18,0x20,0x08,0x60,0x0C,0x60,0x0C,0x60,0x0C,0x40,0x0C,0xC0,0x04,0xC0,0x04,0xC0,0x06,0x80,0x07,0x80,0x07,0x80,0x03,0x00,0x03,0x00,
208 // 'W'
209 0x57,0x01,0x14,0x13,0x00,0x14,
210 0x00,0x00,0x0F,0xC4,0xFF,0xF0,0x4F,0xE3,0x06,0x10,0x30,0xE3,0x01,0x8E,0x30,0x18,0xE3,0x01,0x8E,0x30,0x19,0xA3,0x01,0x9A,0x20,0x09,0xA6,0x00,0xD2,0x60,0x0D,0x36,0x00,0xF3,0x40,0x0F,0x34,0x00,0x63,0xC0,0x06,0x1C,0x00,0x61,0x80,0x00,0x18,0x00,
211 // 'X'
212 0x58,0x01,0x10,0x13,0x00,0x10,
213 0x00,0x00,0x7F,0x7F,0x7E,0x7E,0x0C,0x30,0x06,0x20,0x06,0x60,0x03,0xC0,0x01,0x80,0x01,0x80,0x03,0x80,0x02,0xC0,0x06,0x40,0x04,0x60,0x0C,0x60,0x18,0x30,0x18,0x30,0x7C,0x30,0xFC,0xFE,0x00,0xFF,
214 // 'Y'
215 0x59,0x01,0x11,0x13,0x00,0x10,
216 0x00,0x00,0x7F,0x3F,0xBF,0x07,0x03,0x03,0x00,0xC1,0x00,0x31,0x80,0x18,0x80,0x06,0xC0,0x01,0xC0,0x00,0xE0,0x00,0x30,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0x06,0x00,0x03,0x00,0x07,0x80,0x03,0xF8,0x00,0x7C,0x00,
217 // 'Z'
218 0x5A,0x02,0x0E,0x12,0x00,0x0D,
219 0x7F,0xF9,0xFF,0xE6,0x03,0x18,0x18,0x60,0xC1,0x07,0x00,0x18,0x00,0xC0,0x06,0x00,0x18,0x00,0xC0,0x06,0x00,0x18,0x30,0xC0,0xC3,0x03,0x1F,0xFE,0x7F,0xF8,0x00,0x60,
220 // '['
221 0x5B,0x01,0x08,0x14,0x01,0x08,
222 0x00,0x7C,0x7C,0x40,0x40,0x40,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x7E,0x7E,0x00,
223 // '\'
224 0x5C,0x01,0x0A,0x13,0x00,0x0A,
225 0x00,0x10,0x06,0x01,0x80,0x30,0x0C,0x01,0x80,0x60,0x0C,0x03,0x00,0x60,0x18,0x06,0x00,0xC0,0x30,0x06,0x01,0x80,0x60,0x08,
226 // ']'
227 0x5D,0x01,0x08,0x14,0x00,0x08,
228 0x00,0x7C,0x7E,0x04,0x04,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x7C,0xFC,
229 // '^'
230 0x5E,0x03,0x0B,0x0B,0x00,0x0B,
231 0x00,0x00,0x40,0x18,0x03,0x00,0xF0,0x32,0x0C,0x63,0x86,0x60,0xC0,0x0C,0x00,0x00,
232 // '_'
233 0x5F,0x15,0x11,0x02,0xFF,0x0F,
234 0x7F,0xFF,0x3F,0xFF,0x80,
235 // '`'
236 0x60,0x00,0x06,0x07,0x00,0x06,
237 0x01,0x87,0x0C,0x18,0x20,0x00,
238 // 'a'
239 0x61,0x06,0x0C,0x0D,0x00,0x0B,
240 0x0E,0x03,0xF0,0x31,0x06,0x10,0x23,0x80,0xF8,0x3D,0x87,0x10,0x61,0x0C,0x18,0x63,0xA7,0xFE,0x1C,0xC0,
241 // 'b'
242 0x62,0x01,0x0C,0x14,0x00,0x0C,
243 0x00,0x07,0xC0,0x3C,0x01,0x80,0x18,0x01,0x80,0x18,0x01,0x98,0x1F,0xC1,0xC6,0x18,0x21,0x83,0x10,0x31,0x03,0x18,0x31,0x83,0x18,0x6F,0xC6,0xF7,0xC0,0x30,
244 // 'c'
245 0x63,0x06,0x0B,0x0D,0x00,0x0B,
246 0x06,0x03,0xF0,0xC7,0x31,0xE4,0x1C,0x80,0x30,0x06,0x00,0x60,0x0C,0x01,0xC3,0x1F,0xC0,0xF0,
247 // 'd'
248 0x64,0x01,0x0D,0x13,0x00,0x0D,
249 0x00,0x00,0x1E,0x00,0xF0,0x01,0x80,0x0C,0x00,0x60,0x03,0x01,0x98,0x3E,0x81,0x9C,0x18,0x60,0xC3,0x04,0x08,0x60,0x41,0x02,0x0C,0x30,0x71,0x91,0xFF,0x87,0x1C,
250 // 'e'
251 0x65,0x07,0x0B,0x0C,0x00,0x0B,
252 0x0F,0x03,0xF0,0xC3,0x30,0x66,0x1C,0xDE,0x1E,0x03,0x00,0x60,0x06,0x18,0x7E,0x07,0x80,
253 // 'f'
254 0x66,0x02,0x0A,0x12,0x00,0x08,
255 0x07,0x07,0xE1,0xB8,0x4E,0x10,0x04,0x07,0xE1,0xF8,0x18,0x06,0x01,0x80,0x60,0x18,0x06,0x01,0x81,0xF8,0x7E,0x00,0x00,
256 // 'g'
257 0x67,0x05,0x0A,0x12,0x00,0x0A,
258 0x00,0x00,0x20,0x18,0x7E,0x3F,0x18,0x64,0x09,0x02,0x61,0x9F,0xC1,0xE0,0x0C,0x01,0x84,0x67,0x19,0x8C,0x7E,0x0F,0x00,
259 // 'h'
260 0x68,0x02,0x0E,0x12,0x00,0x0D,
261 0x78,0x01,0xE0,0x01,0x80,0x06,0x00,0x19,0xC0,0x2F,0x80,0xE6,0x07,0x08,0x18,0x20,0x60,0x81,0x82,0x06,0x08,0x18,0x20,0x60,0x81,0x82,0x1F,0x9E,0x7E,0x78,0x00,0x00,
262 // 'i'
263 0x69,0x02,0x08,0x11,0x00,0x08,
264 0x30,0x78,0x78,0x30,0x00,0x78,0x78,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x7E,0x7F,
265 // 'j'
266 0x6A,0x02,0x09,0x15,0xFE,0x07,
267 0x06,0x07,0x03,0x81,0xC0,0x00,0xF8,0x7C,0x06,0x03,0x01,0x80,0xC0,0x60,0x30,0x18,0x0C,0x06,0x03,0x01,0x99,0x8F,0xC3,0xC0,
268 // 'k'
269 0x6B,0x02,0x0D,0x12,0x00,0x0D,
270 0x78,0x03,0xC0,0x06,0x00,0x37,0xC1,0xBC,0x0C,0xC0,0x6C,0x03,0xC0,0x1C,0x00,0xC0,0x07,0x00,0x3E,0x01,0xB8,0x08,0x61,0xC1,0xCF,0x07,0x00,0x10,0x00,0x00,
271 // 'l'
272 0x6C,0x02,0x08,0x12,0x00,0x08,
273 0x78,0x78,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x18,0x18,0x18,0x18,0x18,0x7E,0x7E,0x00,
274 // 'm'
275 0x6D,0x08,0x14,0x0D,0x00,0x14,
276 0x40,0xC3,0x0F,0xBE,0xF8,0x1E,0x78,0xC1,0xC7,0x0C,0x18,0x20,0xC1,0x82,0x0C,0x10,0x20,0xC1,0x82,0x08,0x18,0x60,0x81,0x84,0x18,0x7E,0x71,0xE7,0xE7,0x9E,0x00,0x00,0x00,
277 // 'n'
278 0x6E,0x06,0x0E,0x0E,0x00,0x0D,
279 0x79,0xC1,0xEF,0x81,0xE6,0x07,0x08,0x18,0x30,0x60,0xC1,0x82,0x06,0x08,0x18,0x20,0x60,0x81,0x82,0x1F,0x1E,0x7E,0x78,0x00,0x00,
280 // 'o'
281 0x6F,0x08,0x0B,0x0C,0x00,0x0C,
282 0x0F,0x03,0xF8,0xC3,0x30,0x36,0x06,0x80,0xD0,0x1B,0x03,0x60,0x66,0x18,0xFE,0x07,0x80,
283 // 'p'
284 0x70,0x07,0x0B,0x10,0x00,0x0B,
285 0x07,0x1F,0xF1,0xE3,0x18,0x23,0x06,0x60,0xCC,0x19,0x82,0x30,0xC6,0x18,0xFE,0x1B,0x83,0x00,0x60,0x1C,0x07,0x80,
286 // 'q'
287 0x71,0x06,0x0D,0x11,0x00,0x0B,
288 0x0C,0x01,0xF7,0x0C,0xF8,0xC3,0x04,0x18,0x20,0x41,0x02,0x08,0x10,0x60,0x83,0x04,0x0C,0x60,0x7F,0x01,0xE8,0x00,0xC0,0x06,0xC0,0x1E,0x00,0xE0,
289 // 'r'
290 0x72,0x08,0x0A,0x0D,0x00,0x09,
291 0x77,0x3F,0xE3,0xB8,0xCE,0x33,0x0C,0x03,0x00,0xC0,0x30,0x04,0x07,0xC1,0xF0,0x00,0x00,
292 // 's'
293 0x73,0x05,0x0A,0x0E,0x00,0x0A,
294 0x03,0x00,0xC1,0xF0,0xFC,0x63,0x18,0x47,0x00,0xF8,0x07,0x80,0x64,0x19,0x86,0x7F,0x07,0x80,
295 // 't'
296 0x74,0x02,0x09,0x13,0x00,0x09,
297 0x30,0x18,0x0C,0x06,0x02,0x07,0xE3,0xF8,0x40,0x20,0x10,0x08,0x04,0x02,0x11,0x18,0x84,0x62,0x33,0x0F,0x83,0x00,
298 // 'u'
299 0x75,0x06,0x0E,0x0E,0x00,0x0D,
300 0x00,0x03,0xE7,0xC7,0x9F,0x0C,0x30,0x30,0xC0,0xC3,0x03,0x0C,0x0C,0x30,0x30,0xC0,0xC3,0x03,0x0C,0x0E,0x7C,0x1F,0xF8,0x3C,0x00,
301 // 'v'
302 0x76,0x07,0x0E,0x0D,0x00,0x0D,
303 0x01,0xFB,0xF3,0xEF,0xC6,0x06,0x18,0x18,0x60,0x31,0x00,0xCC,0x01,0x30,0x06,0x80,0x0A,0x00,0x38,0x00,0xE0,0x01,0x00,
304 // 'w'
305 0x77,0x08,0x11,0x0D,0x00,0x11,
306 0x04,0x1F,0xFF,0x6F,0xBE,0x31,0x83,0x1C,0xC1,0x9E,0x40,0x4D,0x20,0x34,0xB0,0x1A,0x78,0x05,0x3C,0x03,0x8E,0x01,0x86,0x00,0x43,0x00,0x00,0x00,
307 // 'x'
308 0x78,0x08,0x0D,0x0D,0x00,0x0D,
309 0x0C,0xFB,0xE7,0xDE,0x18,0x31,0x80,0xD8,0x03,0x80,0x18,0x01,0xE0,0x19,0x81,0x8C,0x0E,0x7D,0xF3,0xE4,0x00,0x00,
310 // 'y'
311 0x79,0x06,0x0F,0x11,0x00,0x0D,
312 0x7C,0x01,0xF8,0x00,0xC3,0xF0,0xC7,0xE1,0x82,0x01,0x0C,0x03,0x18,0x06,0x20,0x06,0xC0,0x0D,0x00,0x0E,0x00,0x18,0x00,0x30,0x06,0xC0,0x1F,0x00,0x3E,0x00,0x30,0x00,
313 // 'z'
314 0x7A,0x08,0x0B,0x0B,0x00,0x0B,
315 0x7F,0xCF,0xF9,0x86,0x31,0x86,0x60,0x1C,0x07,0x00,0xC6,0x30,0xCF,0xF9,0xFF,0x00,
316 // '{'
317 0x7B,0x02,0x09,0x12,0x00,0x08,
318 0x07,0x07,0x83,0x01,0x01,0x80,0xC0,0x60,0xE0,0x70,0x0C,0x06,0x03,0x01,0x80,0xC0,0x60,0x30,0x1F,0x03,0x80,
319 // '|'
320 0x7C,0x02,0x03,0x12,0x01,0x05,
321 0x49,0x24,0x92,0x6D,0xB6,0xDB,0x6C,
322 // '}'
323 0x7D,0x02,0x07,0x11,0x00,0x07,
324 0x30,0xF0,0x20,0x41,0x83,0x02,0x06,0x0E,0x18,0x60,0xC0,0x81,0x83,0x3C,0x78,
325 // '~'
326 0x7E,0x09,0x0D,0x04,0x00,0x0D,
327 0x18,0x03,0xF1,0x98,0xFC,0x83,0xC0,
328
329 // Terminator
330 0xFF
331 };

mercurial