blob: 1b8c02510b6b070dadf9ae0ffae6b9bb5c537f7e [file] [log] [blame]
Heinrich Schuchardt5fba5322018-03-02 20:50:17 +01001/* Hand composed "Minuscule" 4x6 font for code page 437, with binary data
2 * generated using Perl stub.
Marek Vasut78556632013-07-30 23:37:58 +02003 *
4 * Use 'perl -x mini_4x6.c < mini_4x6.c > new_version.c' to regenerate
5 * binary data.
6 *
7 * Created by Kenneth Albanowski.
8 * No rights reserved, released to the public domain.
9 *
10 * Version 1.0
11 */
12
13/*
14
15#!/usr/bin/perl -pn
16
17s{((0x)?[0-9a-fA-F]+)(.*\[([\*\ ]{4})\])}{
18
19 ($num,$pat,$bits) = ($1,$3,$4);
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020020
Marek Vasut78556632013-07-30 23:37:58 +020021 $bits =~ s/([^\s0])|(.)/ defined($1) + 0 /ge;
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020022
Marek Vasut78556632013-07-30 23:37:58 +020023 $num = ord(pack("B8", $bits));
24 $num |= $num >> 4;
25 $num = sprintf("0x%.2x", $num);
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020026
Marek Vasut78556632013-07-30 23:37:58 +020027 #print "$num,$pat,$bits\n";
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020028
Marek Vasut78556632013-07-30 23:37:58 +020029 $num . $pat;
30}ge;
31
32__END__;
33*/
34
35/* Note: binary data consists of one byte for each row of each character top
36 to bottom, character 0 to character 255, six bytes per character. Each
37 byte contains the same four character bits in both nybbles.
38 MSBit to LSBit = left to right.
39 */
40
Dzmitry Sankouski39c1fa22023-03-07 13:21:14 +030041#ifndef _VIDEO_FONT_4X6_
42#define _VIDEO_FONT_4X6_
Marek Vasut78556632013-07-30 23:37:58 +020043
Dzmitry Sankouski39c1fa22023-03-07 13:21:14 +030044#include <video_font_data.h>
Marek Vasut78556632013-07-30 23:37:58 +020045
Dzmitry Sankouski39c1fa22023-03-07 13:21:14 +030046static unsigned char video_fontdata_4x6[VIDEO_FONT_SIZE(256, 4, 6)] = {
Marek Vasut78556632013-07-30 23:37:58 +020047
48 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020049 /* Char 0: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +020050 0xee, /*= [*** ] */
51 0xee, /*= [*** ] */
52 0xee, /*= [*** ] */
53 0xee, /*= [*** ] */
54 0xee, /*= [*** ] */
55 0x00, /*= [ ] */
56 /*}*/
57 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020058 /* Char 1: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +020059 0xee, /*= [*** ] */
60 0xee, /*= [*** ] */
61 0xee, /*= [*** ] */
62 0xee, /*= [*** ] */
63 0xee, /*= [*** ] */
64 0x00, /*= [ ] */
65 /*}*/
66 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020067 /* Char 2: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +020068 0xee, /*= [*** ] */
69 0xee, /*= [*** ] */
70 0xee, /*= [*** ] */
71 0xee, /*= [*** ] */
72 0xee, /*= [*** ] */
73 0x00, /*= [ ] */
74 /*}*/
75 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020076 /* Char 3: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +020077 0xee, /*= [*** ] */
78 0xee, /*= [*** ] */
79 0xee, /*= [*** ] */
80 0xee, /*= [*** ] */
81 0xee, /*= [*** ] */
82 0x00, /*= [ ] */
83 /*}*/
84 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020085 /* Char 4: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +020086 0xee, /*= [*** ] */
87 0xee, /*= [*** ] */
88 0xee, /*= [*** ] */
89 0xee, /*= [*** ] */
90 0xee, /*= [*** ] */
91 0x00, /*= [ ] */
92 /*}*/
93 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020094 /* Char 5: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +020095 0xee, /*= [*** ] */
96 0xee, /*= [*** ] */
97 0xee, /*= [*** ] */
98 0xee, /*= [*** ] */
99 0xee, /*= [*** ] */
100 0x00, /*= [ ] */
101 /*}*/
102 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200103 /* Char 6: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200104 0xee, /*= [*** ] */
105 0xee, /*= [*** ] */
106 0xee, /*= [*** ] */
107 0xee, /*= [*** ] */
108 0xee, /*= [*** ] */
109 0x00, /*= [ ] */
110 /*}*/
111 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200112 /* Char 7: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200113 0xee, /*= [*** ] */
114 0xee, /*= [*** ] */
115 0xee, /*= [*** ] */
116 0xee, /*= [*** ] */
117 0xee, /*= [*** ] */
118 0x00, /*= [ ] */
119 /*}*/
120 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200121 /* Char 8: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200122 0xee, /*= [*** ] */
123 0xee, /*= [*** ] */
124 0xee, /*= [*** ] */
125 0xee, /*= [*** ] */
126 0xee, /*= [*** ] */
127 0x00, /*= [ ] */
128 /*}*/
129 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200130 /* Char 9: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200131 0xee, /*= [*** ] */
132 0xee, /*= [*** ] */
133 0xee, /*= [*** ] */
134 0xee, /*= [*** ] */
135 0xee, /*= [*** ] */
136 0x00, /*= [ ] */
137 /*}*/
138 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200139 /* Char 10: '' */
Marek Vasut78556632013-07-30 23:37:58 +0200140 0xee, /*= [*** ] */
141 0xee, /*= [*** ] */
142 0xee, /*= [*** ] */
143 0xee, /*= [*** ] */
144 0xee, /*= [*** ] */
145 0x00, /*= [ ] */
146 /*}*/
147 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200148 /* Char 11: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200149 0xee, /*= [*** ] */
150 0xee, /*= [*** ] */
151 0xee, /*= [*** ] */
152 0xee, /*= [*** ] */
153 0xee, /*= [*** ] */
154 0x00, /*= [ ] */
155 /*}*/
156 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200157 /* Char 12: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200158 0xee, /*= [*** ] */
159 0xee, /*= [*** ] */
160 0xee, /*= [*** ] */
161 0xee, /*= [*** ] */
162 0xee, /*= [*** ] */
163 0x00, /*= [ ] */
164 /*}*/
165 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200166 /* Char 13: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200167 0xee, /*= [*** ] */
168 0xee, /*= [*** ] */
169 0xee, /*= [*** ] */
170 0xee, /*= [*** ] */
171 0xee, /*= [*** ] */
172 0x00, /*= [ ] */
173 /*}*/
174 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200175 /* Char 14: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200176 0xee, /*= [*** ] */
177 0xee, /*= [*** ] */
178 0xee, /*= [*** ] */
179 0xee, /*= [*** ] */
180 0xee, /*= [*** ] */
181 0x00, /*= [ ] */
182 /*}*/
183 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200184 /* Char 15: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200185 0xee, /*= [*** ] */
186 0xee, /*= [*** ] */
187 0xee, /*= [*** ] */
188 0xee, /*= [*** ] */
189 0xee, /*= [*** ] */
190 0x00, /*= [ ] */
191 /*}*/
192 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200193 /* Char 16: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200194 0xee, /*= [*** ] */
195 0xee, /*= [*** ] */
196 0xee, /*= [*** ] */
197 0xee, /*= [*** ] */
198 0xee, /*= [*** ] */
199 0x00, /*= [ ] */
200 /*}*/
201 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200202 /* Char 17: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200203 0xee, /*= [*** ] */
204 0xee, /*= [*** ] */
205 0xee, /*= [*** ] */
206 0xee, /*= [*** ] */
207 0xee, /*= [*** ] */
208 0x00, /*= [ ] */
209 /*}*/
210 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200211 /* Char 18: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200212 0xee, /*= [*** ] */
213 0xee, /*= [*** ] */
214 0xee, /*= [*** ] */
215 0xee, /*= [*** ] */
216 0xee, /*= [*** ] */
217 0x00, /*= [ ] */
218 /*}*/
219 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200220 /* Char 19: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200221 0xee, /*= [*** ] */
222 0xee, /*= [*** ] */
223 0xee, /*= [*** ] */
224 0xee, /*= [*** ] */
225 0xee, /*= [*** ] */
226 0x00, /*= [ ] */
227 /*}*/
228 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200229 /* Char 20: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200230 0xee, /*= [*** ] */
231 0xee, /*= [*** ] */
232 0xee, /*= [*** ] */
233 0xee, /*= [*** ] */
234 0xee, /*= [*** ] */
235 0x00, /*= [ ] */
236 /*}*/
237 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200238 /* Char 21: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200239 0xee, /*= [*** ] */
240 0xee, /*= [*** ] */
241 0xee, /*= [*** ] */
242 0xee, /*= [*** ] */
243 0xee, /*= [*** ] */
244 0x00, /*= [ ] */
245 /*}*/
246 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200247 /* Char 22: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200248 0xee, /*= [*** ] */
249 0xee, /*= [*** ] */
250 0xee, /*= [*** ] */
251 0xee, /*= [*** ] */
252 0xee, /*= [*** ] */
253 0x00, /*= [ ] */
254 /*}*/
255 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200256 /* Char 23: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200257 0xee, /*= [*** ] */
258 0xee, /*= [*** ] */
259 0xee, /*= [*** ] */
260 0xee, /*= [*** ] */
261 0xee, /*= [*** ] */
262 0x00, /*= [ ] */
263 /*}*/
264 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200265 /* Char 24: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200266 0xee, /*= [*** ] */
267 0xee, /*= [*** ] */
268 0xee, /*= [*** ] */
269 0xee, /*= [*** ] */
270 0xee, /*= [*** ] */
271 0x00, /*= [ ] */
272 /*}*/
273 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200274 /* Char 25: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200275 0xee, /*= [*** ] */
276 0xee, /*= [*** ] */
277 0xee, /*= [*** ] */
278 0xee, /*= [*** ] */
279 0xee, /*= [*** ] */
280 0x00, /*= [ ] */
281 /*}*/
282 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200283 /* Char 26: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200284 0xee, /*= [*** ] */
285 0xee, /*= [*** ] */
286 0xee, /*= [*** ] */
287 0xee, /*= [*** ] */
288 0xee, /*= [*** ] */
289 0x00, /*= [ ] */
290 /*}*/
291 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200292 /* Char 27: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200293 0xee, /*= [*** ] */
294 0xee, /*= [*** ] */
295 0xee, /*= [*** ] */
296 0xee, /*= [*** ] */
297 0xee, /*= [*** ] */
298 0x00, /*= [ ] */
299 /*}*/
300 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200301 /* Char 28: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200302 0xee, /*= [*** ] */
303 0xee, /*= [*** ] */
304 0xee, /*= [*** ] */
305 0xee, /*= [*** ] */
306 0xee, /*= [*** ] */
307 0x00, /*= [ ] */
308 /*}*/
309 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200310 /* Char 29: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200311 0xee, /*= [*** ] */
312 0xee, /*= [*** ] */
313 0xee, /*= [*** ] */
314 0xee, /*= [*** ] */
315 0xee, /*= [*** ] */
316 0x00, /*= [ ] */
317 /*}*/
318 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200319 /* Char 30: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200320 0xee, /*= [*** ] */
321 0xee, /*= [*** ] */
322 0xee, /*= [*** ] */
323 0xee, /*= [*** ] */
324 0xee, /*= [*** ] */
325 0x00, /*= [ ] */
326 /*}*/
327 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200328 /* Char 31: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200329 0xee, /*= [*** ] */
330 0xee, /*= [*** ] */
331 0xee, /*= [*** ] */
332 0xee, /*= [*** ] */
333 0xee, /*= [*** ] */
334 0x00, /*= [ ] */
335 /*}*/
336 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200337 /* Char 32: ' ' */
Marek Vasut78556632013-07-30 23:37:58 +0200338 0x00, /*= [ ] */
339 0x00, /*= [ ] */
340 0x00, /*= [ ] */
341 0x00, /*= [ ] */
342 0x00, /*= [ ] */
343 0x00, /*= [ ] */
344 /*}*/
345 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200346 /* Char 33: '!' */
Marek Vasut78556632013-07-30 23:37:58 +0200347 0x44, /*= [ * ] */
348 0x44, /*= [ * ] */
349 0x44, /*= [ * ] */
350 0x00, /*= [ ] */
351 0x44, /*= [ * ] */
352 0x00, /*= [ ] */
353 /*}*/
354 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200355 /* Char 34: '"' */
Marek Vasut78556632013-07-30 23:37:58 +0200356 0xaa, /*= [* * ] */
357 0xaa, /*= [* * ] */
358 0x00, /*= [ ] */
359 0x00, /*= [ ] */
360 0x00, /*= [ ] */
361 0x00, /*= [ ] */
362 /*}*/
363 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200364 /* Char 35: '#' */
Marek Vasut78556632013-07-30 23:37:58 +0200365 0xaa, /*= [* * ] */
366 0xff, /*= [****] */
367 0xff, /*= [****] */
368 0xaa, /*= [* * ] */
369 0x00, /*= [ ] */
370 0x00, /*= [ ] */
371 /*}*/
372 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200373 /* Char 36: '$' */
Marek Vasut78556632013-07-30 23:37:58 +0200374 0x44, /*= [ * ] */
375 0x66, /*= [ ** ] */
376 0xee, /*= [*** ] */
377 0xcc, /*= [** ] */
378 0x44, /*= [ * ] */
379 0x00, /*= [ ] */
380 /*}*/
381 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200382 /* Char 37: '%' */
Marek Vasut78556632013-07-30 23:37:58 +0200383 0xaa, /*= [* * ] */
384 0x22, /*= [ * ] */
385 0x44, /*= [ * ] */
386 0x88, /*= [* ] */
387 0xaa, /*= [* * ] */
388 0x00, /*= [ ] */
389 /*}*/
390 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200391 /* Char 38: '&' */
Marek Vasut78556632013-07-30 23:37:58 +0200392 0x66, /*= [ ** ] */
393 0x99, /*= [* *] */
394 0x66, /*= [ ** ] */
395 0xaa, /*= [* * ] */
396 0xdd, /*= [** *] */
397 0x00, /*= [ ] */
398 /*}*/
399 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200400 /* Char 39: ''' */
Marek Vasut78556632013-07-30 23:37:58 +0200401 0x22, /*= [ * ] */
402 0x44, /*= [ * ] */
403 0x00, /*= [ ] */
404 0x00, /*= [ ] */
405 0x00, /*= [ ] */
406 0x00, /*= [ ] */
407 /*}*/
408 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200409 /* Char 40: '(' */
Marek Vasut78556632013-07-30 23:37:58 +0200410 0x22, /*= [ * ] */
411 0x44, /*= [ * ] */
412 0x44, /*= [ * ] */
413 0x44, /*= [ * ] */
414 0x22, /*= [ * ] */
415 0x00, /*= [ ] */
416 /*}*/
417 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200418 /* Char 41: ')' */
Marek Vasut78556632013-07-30 23:37:58 +0200419 0x44, /*= [ * ] */
420 0x22, /*= [ * ] */
421 0x22, /*= [ * ] */
422 0x22, /*= [ * ] */
423 0x44, /*= [ * ] */
424 0x00, /*= [ ] */
425 /*}*/
426 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200427 /* Char 42: '*' */
Marek Vasut78556632013-07-30 23:37:58 +0200428 0x00, /*= [ ] */
429 0xee, /*= [*** ] */
430 0xee, /*= [*** ] */
431 0xee, /*= [*** ] */
432 0x00, /*= [ ] */
433 0x00, /*= [ ] */
434 /*}*/
435 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200436 /* Char 43: '+' */
Marek Vasut78556632013-07-30 23:37:58 +0200437 0x00, /*= [ ] */
438 0x44, /*= [ * ] */
439 0xee, /*= [*** ] */
440 0x44, /*= [ * ] */
441 0x00, /*= [ ] */
442 0x00, /*= [ ] */
443 /*}*/
444 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200445 /* Char 44: ',' */
Marek Vasut78556632013-07-30 23:37:58 +0200446 0x00, /*= [ ] */
447 0x00, /*= [ ] */
448 0x00, /*= [ ] */
449 0x44, /*= [ * ] */
450 0x88, /*= [* ] */
451 0x00, /*= [ ] */
452 /*}*/
453 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200454 /* Char 45: '-' */
Marek Vasut78556632013-07-30 23:37:58 +0200455 0x00, /*= [ ] */
456 0x00, /*= [ ] */
457 0xee, /*= [*** ] */
458 0x00, /*= [ ] */
459 0x00, /*= [ ] */
460 0x00, /*= [ ] */
461 /*}*/
462 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200463 /* Char 46: '.' */
Marek Vasut78556632013-07-30 23:37:58 +0200464 0x00, /*= [ ] */
465 0x00, /*= [ ] */
466 0x00, /*= [ ] */
467 0x00, /*= [ ] */
468 0x44, /*= [ * ] */
469 0x00, /*= [ ] */
470 /*}*/
471 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200472 /* Char 47: '/' */
Marek Vasut78556632013-07-30 23:37:58 +0200473 0x00, /*= [ ] */
474 0x22, /*= [ * ] */
475 0x44, /*= [ * ] */
476 0x88, /*= [* ] */
477 0x00, /*= [ ] */
478 0x00, /*= [ ] */
479 /*}*/
480 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200481 /* Char 48: '0' */
Marek Vasut78556632013-07-30 23:37:58 +0200482 0x44, /*= [ * ] */
483 0xaa, /*= [* * ] */
484 0xaa, /*= [* * ] */
485 0xaa, /*= [* * ] */
486 0x44, /*= [ * ] */
487 0x00, /*= [ ] */
488 /*}*/
489 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200490 /* Char 49: '1' */
Marek Vasut78556632013-07-30 23:37:58 +0200491 0x44, /*= [ * ] */
492 0xcc, /*= [** ] */
493 0x44, /*= [ * ] */
494 0x44, /*= [ * ] */
495 0xee, /*= [*** ] */
496 0x00, /*= [ ] */
497 /*}*/
498 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200499 /* Char 50: '2' */
Marek Vasut78556632013-07-30 23:37:58 +0200500 0xcc, /*= [** ] */
501 0x22, /*= [ * ] */
502 0x44, /*= [ * ] */
503 0x88, /*= [* ] */
504 0xee, /*= [*** ] */
505 0x00, /*= [ ] */
506 /*}*/
507 /*{*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200508 /* Char 51: '3' */
Marek Vasut78556632013-07-30 23:37:58 +0200509 0xee, /*= [*** ] */
510 0x22, /*= [ * ] */
511 0x66, /*= [ ** ] */
512 0x22, /*= [ * ] */
513 0xee, /*= [*** ] */
514 0x00, /*= [ ] */
515 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200516 /*{*/ /* Char 52: '4' */
Marek Vasut78556632013-07-30 23:37:58 +0200517 0xaa, /*= [* * ] */
518 0xaa, /*= [* * ] */
519 0xee, /*= [*** ] */
520 0x22, /*= [ * ] */
521 0x22, /*= [ * ] */
522 0x00, /*= [ ] */
523 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200524 /*{*/ /* Char 53: '5' */
Marek Vasut78556632013-07-30 23:37:58 +0200525 0xee, /*= [*** ] */
526 0x88, /*= [* ] */
527 0xee, /*= [*** ] */
528 0x22, /*= [ * ] */
529 0xee, /*= [*** ] */
530 0x00, /*= [ ] */
531 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200532 /*{*/ /* Char 54: '6' */
Marek Vasut78556632013-07-30 23:37:58 +0200533 0xee, /*= [*** ] */
534 0x88, /*= [* ] */
535 0xee, /*= [*** ] */
536 0xaa, /*= [* * ] */
537 0xee, /*= [*** ] */
538 0x00, /*= [ ] */
539 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200540 /*{*/ /* Char 55: '7' */
Marek Vasut78556632013-07-30 23:37:58 +0200541 0xee, /*= [*** ] */
542 0x22, /*= [ * ] */
543 0x22, /*= [ * ] */
544 0x22, /*= [ * ] */
545 0x22, /*= [ * ] */
546 0x00, /*= [ ] */
547 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200548 /*{*/ /* Char 56: '8' */
Marek Vasut78556632013-07-30 23:37:58 +0200549 0xee, /*= [*** ] */
550 0xaa, /*= [* * ] */
551 0xee, /*= [*** ] */
552 0xaa, /*= [* * ] */
553 0xee, /*= [*** ] */
554 0x00, /*= [ ] */
555 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200556 /*{*/ /* Char 57: '9' */
Marek Vasut78556632013-07-30 23:37:58 +0200557 0xee, /*= [*** ] */
558 0xaa, /*= [* * ] */
559 0xee, /*= [*** ] */
560 0x22, /*= [ * ] */
561 0x22, /*= [ * ] */
562 0x00, /*= [ ] */
563 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200564 /*{*/ /* Char 58: ':' */
Marek Vasut78556632013-07-30 23:37:58 +0200565 0x00, /*= [ ] */
566 0x00, /*= [ ] */
567 0x44, /*= [ * ] */
568 0x00, /*= [ ] */
569 0x44, /*= [ * ] */
570 0x00, /*= [ ] */
571 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200572 /*{*/ /* Char 59: ';' */
Marek Vasut78556632013-07-30 23:37:58 +0200573 0x00, /*= [ ] */
574 0x00, /*= [ ] */
575 0x44, /*= [ * ] */
576 0x00, /*= [ ] */
577 0x44, /*= [ * ] */
578 0x88, /*= [* ] */
579 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200580 /*{*/ /* Char 60: '<' */
Marek Vasut78556632013-07-30 23:37:58 +0200581 0x22, /*= [ * ] */
582 0x44, /*= [ * ] */
583 0x88, /*= [* ] */
584 0x44, /*= [ * ] */
585 0x22, /*= [ * ] */
586 0x00, /*= [ ] */
587 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200588 /*{*/ /* Char 61: '=' */
Marek Vasut78556632013-07-30 23:37:58 +0200589 0x00, /*= [ ] */
590 0xee, /*= [*** ] */
591 0x00, /*= [ ] */
592 0xee, /*= [*** ] */
593 0x00, /*= [ ] */
594 0x00, /*= [ ] */
595 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200596 /*{*/ /* Char 62: '>' */
Marek Vasut78556632013-07-30 23:37:58 +0200597 0x88, /*= [* ] */
598 0x44, /*= [ * ] */
599 0x22, /*= [ * ] */
600 0x44, /*= [ * ] */
601 0x88, /*= [* ] */
602 0x00, /*= [ ] */
603 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200604 /*{*/ /* Char 63: '?' */
Marek Vasut78556632013-07-30 23:37:58 +0200605 0xee, /*= [*** ] */
606 0x22, /*= [ * ] */
607 0x66, /*= [ ** ] */
608 0x00, /*= [ ] */
609 0x44, /*= [ * ] */
610 0x00, /*= [ ] */
611 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200612 /*{*/ /* Char 64: '@' */
Marek Vasut78556632013-07-30 23:37:58 +0200613 0x44, /*= [ * ] */
614 0xee, /*= [*** ] */
615 0xee, /*= [*** ] */
616 0x88, /*= [* ] */
617 0x44, /*= [ * ] */
618 0x00, /*= [ ] */
619 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200620 /*{*/ /* Char 65: 'A' */
Marek Vasut78556632013-07-30 23:37:58 +0200621 0x44, /*= [ * ] */
622 0xaa, /*= [* * ] */
623 0xee, /*= [*** ] */
624 0xaa, /*= [* * ] */
625 0xaa, /*= [* * ] */
626 0x00, /*= [ ] */
627 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200628 /*{*/ /* Char 66: 'B' */
Marek Vasut78556632013-07-30 23:37:58 +0200629 0xcc, /*= [** ] */
630 0xaa, /*= [* * ] */
631 0xcc, /*= [** ] */
632 0xaa, /*= [* * ] */
633 0xcc, /*= [** ] */
634 0x00, /*= [ ] */
635 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200636 /*{*/ /* Char 67: 'C' */
Marek Vasut78556632013-07-30 23:37:58 +0200637 0x66, /*= [ ** ] */
638 0x88, /*= [* ] */
639 0x88, /*= [* ] */
640 0x88, /*= [* ] */
641 0x66, /*= [ ** ] */
642 0x00, /*= [ ] */
643 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200644 /*{*/ /* Char 68: 'D' */
Marek Vasut78556632013-07-30 23:37:58 +0200645 0xcc, /*= [** ] */
646 0xaa, /*= [* * ] */
647 0xaa, /*= [* * ] */
648 0xaa, /*= [* * ] */
649 0xcc, /*= [** ] */
650 0x00, /*= [ ] */
651 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200652 /*{*/ /* Char 69: 'E' */
Marek Vasut78556632013-07-30 23:37:58 +0200653 0xee, /*= [*** ] */
654 0x88, /*= [* ] */
655 0xee, /*= [*** ] */
656 0x88, /*= [* ] */
657 0xee, /*= [*** ] */
658 0x00, /*= [ ] */
659 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200660 /*{*/ /* Char 70: 'F' */
Marek Vasut78556632013-07-30 23:37:58 +0200661 0xee, /*= [*** ] */
662 0x88, /*= [* ] */
663 0xee, /*= [*** ] */
664 0x88, /*= [* ] */
665 0x88, /*= [* ] */
666 0x00, /*= [ ] */
667 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200668 /*{*/ /* Char 71: 'G' */
Marek Vasut78556632013-07-30 23:37:58 +0200669 0x66, /*= [ ** ] */
670 0x88, /*= [* ] */
671 0xee, /*= [*** ] */
672 0xaa, /*= [* * ] */
673 0x66, /*= [ ** ] */
674 0x00, /*= [ ] */
675 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200676 /*{*/ /* Char 72: 'H' */
Marek Vasut78556632013-07-30 23:37:58 +0200677 0xaa, /*= [* * ] */
678 0xaa, /*= [* * ] */
679 0xee, /*= [*** ] */
680 0xaa, /*= [* * ] */
681 0xaa, /*= [* * ] */
682 0x00, /*= [ ] */
683 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200684 /*{*/ /* Char 73: 'I' */
Marek Vasut78556632013-07-30 23:37:58 +0200685 0xee, /*= [*** ] */
686 0x44, /*= [ * ] */
687 0x44, /*= [ * ] */
688 0x44, /*= [ * ] */
689 0xee, /*= [*** ] */
690 0x00, /*= [ ] */
691 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200692 /*{*/ /* Char 74: 'J' */
Marek Vasut78556632013-07-30 23:37:58 +0200693 0x22, /*= [ * ] */
694 0x22, /*= [ * ] */
695 0x22, /*= [ * ] */
696 0xaa, /*= [* * ] */
697 0x44, /*= [ * ] */
698 0x00, /*= [ ] */
699 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200700 /*{*/ /* Char 75: 'K' */
Marek Vasut78556632013-07-30 23:37:58 +0200701 0xaa, /*= [* * ] */
702 0xaa, /*= [* * ] */
703 0xcc, /*= [** ] */
704 0xaa, /*= [* * ] */
705 0xaa, /*= [* * ] */
706 0x00, /*= [ ] */
707 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200708 /*{*/ /* Char 76: 'L' */
Marek Vasut78556632013-07-30 23:37:58 +0200709 0x88, /*= [* ] */
710 0x88, /*= [* ] */
711 0x88, /*= [* ] */
712 0x88, /*= [* ] */
713 0xee, /*= [*** ] */
714 0x00, /*= [ ] */
715 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200716 /*{*/ /* Char 77: 'M' */
Marek Vasut78556632013-07-30 23:37:58 +0200717 0xaa, /*= [* * ] */
718 0xee, /*= [*** ] */
719 0xee, /*= [*** ] */
720 0xaa, /*= [* * ] */
721 0xaa, /*= [* * ] */
722 0x00, /*= [ ] */
723 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200724 /*{*/ /* Char 78: 'N' */
Marek Vasut78556632013-07-30 23:37:58 +0200725 0xaa, /*= [* * ] */
726 0xee, /*= [*** ] */
727 0xee, /*= [*** ] */
728 0xee, /*= [*** ] */
729 0xaa, /*= [* * ] */
730 0x00, /*= [ ] */
731 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200732 /*{*/ /* Char 79: 'O' */
Marek Vasut78556632013-07-30 23:37:58 +0200733 0x44, /*= [ * ] */
734 0xaa, /*= [* * ] */
735 0xaa, /*= [* * ] */
736 0xaa, /*= [* * ] */
737 0x44, /*= [ * ] */
738 0x00, /*= [ ] */
739 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200740 /*{*/ /* Char 80: 'P' */
Marek Vasut78556632013-07-30 23:37:58 +0200741 0xcc, /*= [** ] */
742 0xaa, /*= [* * ] */
743 0xcc, /*= [** ] */
744 0x88, /*= [* ] */
745 0x88, /*= [* ] */
746 0x00, /*= [ ] */
747 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200748 /*{*/ /* Char 81: 'Q' */
Marek Vasut78556632013-07-30 23:37:58 +0200749 0x44, /*= [ * ] */
750 0xaa, /*= [* * ] */
751 0xaa, /*= [* * ] */
752 0xee, /*= [*** ] */
753 0x66, /*= [ ** ] */
754 0x00, /*= [ ] */
755 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200756 /*{*/ /* Char 82: 'R' */
Marek Vasut78556632013-07-30 23:37:58 +0200757 0xcc, /*= [** ] */
758 0xaa, /*= [* * ] */
759 0xee, /*= [*** ] */
760 0xcc, /*= [** ] */
761 0xaa, /*= [* * ] */
762 0x00, /*= [ ] */
763 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200764 /*{*/ /* Char 83: 'S' */
Marek Vasut78556632013-07-30 23:37:58 +0200765 0x66, /*= [ ** ] */
766 0x88, /*= [* ] */
767 0x44, /*= [ * ] */
768 0x22, /*= [ * ] */
769 0xcc, /*= [** ] */
770 0x00, /*= [ ] */
771 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200772 /*{*/ /* Char 84: 'T' */
Marek Vasut78556632013-07-30 23:37:58 +0200773 0xee, /*= [*** ] */
774 0x44, /*= [ * ] */
775 0x44, /*= [ * ] */
776 0x44, /*= [ * ] */
777 0x44, /*= [ * ] */
778 0x00, /*= [ ] */
779 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200780 /*{*/ /* Char 85: 'U' */
Marek Vasut78556632013-07-30 23:37:58 +0200781 0xaa, /*= [* * ] */
782 0xaa, /*= [* * ] */
783 0xaa, /*= [* * ] */
784 0xaa, /*= [* * ] */
785 0x66, /*= [ ** ] */
786 0x00, /*= [ ] */
787 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200788 /*{*/ /* Char 86: 'V' */
Marek Vasut78556632013-07-30 23:37:58 +0200789 0xaa, /*= [* * ] */
790 0xaa, /*= [* * ] */
791 0xaa, /*= [* * ] */
792 0x44, /*= [ * ] */
793 0x44, /*= [ * ] */
794 0x00, /*= [ ] */
795 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200796 /*{*/ /* Char 87: 'W' */
Marek Vasut78556632013-07-30 23:37:58 +0200797 0xaa, /*= [* * ] */
798 0xaa, /*= [* * ] */
799 0xee, /*= [*** ] */
800 0xee, /*= [*** ] */
801 0xaa, /*= [* * ] */
802 0x00, /*= [ ] */
803 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200804 /*{*/ /* Char 88: 'X' */
Marek Vasut78556632013-07-30 23:37:58 +0200805 0xaa, /*= [* * ] */
806 0xaa, /*= [* * ] */
807 0x44, /*= [ * ] */
808 0xaa, /*= [* * ] */
809 0xaa, /*= [* * ] */
810 0x00, /*= [ ] */
811 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200812 /*{*/ /* Char 89: 'Y' */
Marek Vasut78556632013-07-30 23:37:58 +0200813 0xaa, /*= [* * ] */
814 0xaa, /*= [* * ] */
815 0x44, /*= [ * ] */
816 0x44, /*= [ * ] */
817 0x44, /*= [ * ] */
818 0x00, /*= [ ] */
819 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200820 /*{*/ /* Char 90: 'Z' */
Marek Vasut78556632013-07-30 23:37:58 +0200821 0xee, /*= [*** ] */
822 0x22, /*= [ * ] */
823 0x44, /*= [ * ] */
824 0x88, /*= [* ] */
825 0xee, /*= [*** ] */
826 0x00, /*= [ ] */
827 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200828 /*{*/ /* Char 91: '[' */
Marek Vasut78556632013-07-30 23:37:58 +0200829 0x66, /*= [ ** ] */
830 0x44, /*= [ * ] */
831 0x44, /*= [ * ] */
832 0x44, /*= [ * ] */
833 0x66, /*= [ ** ] */
834 0x00, /*= [ ] */
835 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200836 /*{*/ /* Char 92: '\' */
Marek Vasut78556632013-07-30 23:37:58 +0200837 0x00, /*= [ ] */
838 0x88, /*= [* ] */
839 0x44, /*= [ * ] */
840 0x22, /*= [ * ] */
841 0x00, /*= [ ] */
842 0x00, /*= [ ] */
843 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200844 /*{*/ /* Char 93: ']' */
Marek Vasut78556632013-07-30 23:37:58 +0200845 0x66, /*= [ ** ] */
846 0x22, /*= [ * ] */
847 0x22, /*= [ * ] */
848 0x22, /*= [ * ] */
849 0x66, /*= [ ** ] */
850 0x00, /*= [ ] */
851 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200852 /*{*/ /* Char 94: '^' */
Marek Vasut78556632013-07-30 23:37:58 +0200853 0x44, /*= [ * ] */
854 0xaa, /*= [* * ] */
855 0x00, /*= [ ] */
856 0x00, /*= [ ] */
857 0x00, /*= [ ] */
858 0x00, /*= [ ] */
859 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200860 /*{*/ /* Char 95: '_' */
Marek Vasut78556632013-07-30 23:37:58 +0200861 0x00, /*= [ ] */
862 0x00, /*= [ ] */
863 0x00, /*= [ ] */
864 0x00, /*= [ ] */
865 0x00, /*= [ ] */
866 0xff, /*= [****] */
867 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200868 /*{*/ /* Char 96: '`' */
Marek Vasut78556632013-07-30 23:37:58 +0200869 0x88, /*= [* ] */
870 0x44, /*= [ * ] */
871 0x00, /*= [ ] */
872 0x00, /*= [ ] */
873 0x00, /*= [ ] */
874 0x00, /*= [ ] */
875 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200876 /*{*/ /* Char 97: 'a' */
Marek Vasut78556632013-07-30 23:37:58 +0200877 0x00, /*= [ ] */
878 0x00, /*= [ ] */
879 0x66, /*= [ ** ] */
880 0xaa, /*= [* * ] */
881 0xee, /*= [*** ] */
882 0x00, /*= [ ] */
883 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200884 /*{*/ /* Char 98: 'b' */
Marek Vasut78556632013-07-30 23:37:58 +0200885 0x88, /*= [* ] */
886 0x88, /*= [* ] */
887 0xcc, /*= [** ] */
888 0xaa, /*= [* * ] */
889 0xcc, /*= [** ] */
890 0x00, /*= [ ] */
891 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200892 /*{*/ /* Char 99: 'c' */
Marek Vasut78556632013-07-30 23:37:58 +0200893 0x00, /*= [ ] */
894 0x00, /*= [ ] */
895 0x66, /*= [ ** ] */
896 0x88, /*= [* ] */
897 0x66, /*= [ ** ] */
898 0x00, /*= [ ] */
899 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200900 /*{*/ /* Char 100: 'd' */
Marek Vasut78556632013-07-30 23:37:58 +0200901 0x22, /*= [ * ] */
902 0x22, /*= [ * ] */
903 0x66, /*= [ ** ] */
904 0xaa, /*= [* * ] */
905 0x66, /*= [ ** ] */
906 0x00, /*= [ ] */
907 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200908 /*{*/ /* Char 101: 'e' */
Marek Vasut78556632013-07-30 23:37:58 +0200909 0x00, /*= [ ] */
910 0xee, /*= [*** ] */
911 0xee, /*= [*** ] */
912 0x88, /*= [* ] */
913 0x66, /*= [ ** ] */
914 0x00, /*= [ ] */
915 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200916 /*{*/ /* Char 102: 'f' */
Marek Vasut78556632013-07-30 23:37:58 +0200917 0x22, /*= [ * ] */
918 0x44, /*= [ * ] */
919 0xee, /*= [*** ] */
920 0x44, /*= [ * ] */
921 0x44, /*= [ * ] */
922 0x00, /*= [ ] */
923 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200924 /*{*/ /* Char 103: 'g' */
Marek Vasut78556632013-07-30 23:37:58 +0200925 0x00, /*= [ ] */
926 0x66, /*= [ ** ] */
927 0xaa, /*= [* * ] */
928 0x66, /*= [ ** ] */
929 0xee, /*= [*** ] */
930 0x00, /*= [ ] */
931 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200932 /*{*/ /* Char 104: 'h' */
Marek Vasut78556632013-07-30 23:37:58 +0200933 0x88, /*= [* ] */
934 0x88, /*= [* ] */
935 0xcc, /*= [** ] */
936 0xaa, /*= [* * ] */
937 0xaa, /*= [* * ] */
938 0x00, /*= [ ] */
939 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200940 /*{*/ /* Char 105: 'i' */
Marek Vasut78556632013-07-30 23:37:58 +0200941 0x44, /*= [ * ] */
942 0x00, /*= [ ] */
943 0x44, /*= [ * ] */
944 0x44, /*= [ * ] */
945 0x44, /*= [ * ] */
946 0x00, /*= [ ] */
947 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200948 /*{*/ /* Char 106: 'j' */
Marek Vasut78556632013-07-30 23:37:58 +0200949 0x44, /*= [ * ] */
950 0x00, /*= [ ] */
951 0x44, /*= [ * ] */
952 0x44, /*= [ * ] */
953 0x88, /*= [* ] */
954 0x00, /*= [ ] */
955 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200956 /*{*/ /* Char 107: 'k' */
Marek Vasut78556632013-07-30 23:37:58 +0200957 0x00, /*= [ ] */
958 0x88, /*= [* ] */
959 0xaa, /*= [* * ] */
960 0xcc, /*= [** ] */
961 0xaa, /*= [* * ] */
962 0x00, /*= [ ] */
963 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200964 /*{*/ /* Char 108: 'l' */
Marek Vasut78556632013-07-30 23:37:58 +0200965 0x00, /*= [ ] */
966 0xcc, /*= [** ] */
967 0x44, /*= [ * ] */
968 0x44, /*= [ * ] */
969 0xee, /*= [*** ] */
970 0x00, /*= [ ] */
971 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200972 /*{*/ /* Char 109: 'm' */
Marek Vasut78556632013-07-30 23:37:58 +0200973 0x00, /*= [ ] */
974 0x00, /*= [ ] */
975 0xee, /*= [*** ] */
976 0xee, /*= [*** ] */
977 0xaa, /*= [* * ] */
978 0x00, /*= [ ] */
979 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200980 /*{*/ /* Char 110: 'n' */
Marek Vasut78556632013-07-30 23:37:58 +0200981 0x00, /*= [ ] */
982 0x00, /*= [ ] */
983 0xcc, /*= [** ] */
984 0xaa, /*= [* * ] */
985 0xaa, /*= [* * ] */
986 0x00, /*= [ ] */
987 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200988 /*{*/ /* Char 111: 'o' */
Marek Vasut78556632013-07-30 23:37:58 +0200989 0x00, /*= [ ] */
990 0x44, /*= [ * ] */
991 0xaa, /*= [* * ] */
992 0xaa, /*= [* * ] */
993 0x44, /*= [ * ] */
994 0x00, /*= [ ] */
995 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200996 /*{*/ /* Char 112: 'p' */
Marek Vasut78556632013-07-30 23:37:58 +0200997 0x00, /*= [ ] */
998 0x00, /*= [ ] */
999 0xcc, /*= [** ] */
1000 0xaa, /*= [* * ] */
1001 0xcc, /*= [** ] */
1002 0x88, /*= [* ] */
1003 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001004 /*{*/ /* Char 113: 'q' */
Marek Vasut78556632013-07-30 23:37:58 +02001005 0x00, /*= [ ] */
1006 0x00, /*= [ ] */
1007 0x66, /*= [ ** ] */
1008 0xaa, /*= [* * ] */
1009 0x66, /*= [ ** ] */
1010 0x22, /*= [ * ] */
1011 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001012 /*{*/ /* Char 114: 'r' */
Marek Vasut78556632013-07-30 23:37:58 +02001013 0x00, /*= [ ] */
1014 0xcc, /*= [** ] */
1015 0xaa, /*= [* * ] */
1016 0x88, /*= [* ] */
1017 0x88, /*= [* ] */
1018 0x00, /*= [ ] */
1019 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001020 /*{*/ /* Char 115: 's' */
Marek Vasut78556632013-07-30 23:37:58 +02001021 0x00, /*= [ ] */
1022 0x66, /*= [ ** ] */
1023 0xcc, /*= [** ] */
1024 0x22, /*= [ * ] */
1025 0xcc, /*= [** ] */
1026 0x00, /*= [ ] */
1027 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001028 /*{*/ /* Char 116: 't' */
Marek Vasut78556632013-07-30 23:37:58 +02001029 0x00, /*= [ ] */
1030 0x44, /*= [ * ] */
1031 0xee, /*= [*** ] */
1032 0x44, /*= [ * ] */
1033 0x44, /*= [ * ] */
1034 0x00, /*= [ ] */
1035 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001036 /*{*/ /* Char 117: 'u' */
Marek Vasut78556632013-07-30 23:37:58 +02001037 0x00, /*= [ ] */
1038 0x00, /*= [ ] */
1039 0xaa, /*= [* * ] */
1040 0xaa, /*= [* * ] */
1041 0x66, /*= [ ** ] */
1042 0x00, /*= [ ] */
1043 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001044 /*{*/ /* Char 118: 'v' */
Marek Vasut78556632013-07-30 23:37:58 +02001045 0x00, /*= [ ] */
1046 0x00, /*= [ ] */
1047 0xaa, /*= [* * ] */
1048 0xee, /*= [*** ] */
1049 0x44, /*= [ * ] */
1050 0x00, /*= [ ] */
1051 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001052 /*{*/ /* Char 119: 'w' */
Marek Vasut78556632013-07-30 23:37:58 +02001053 0x00, /*= [ ] */
1054 0x00, /*= [ ] */
1055 0xaa, /*= [* * ] */
1056 0xee, /*= [*** ] */
1057 0xee, /*= [*** ] */
1058 0x00, /*= [ ] */
1059 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001060 /*{*/ /* Char 120: 'x' */
Marek Vasut78556632013-07-30 23:37:58 +02001061 0x00, /*= [ ] */
1062 0x00, /*= [ ] */
1063 0xaa, /*= [* * ] */
1064 0x44, /*= [ * ] */
1065 0xaa, /*= [* * ] */
1066 0x00, /*= [ ] */
1067 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001068 /*{*/ /* Char 121: 'y' */
Marek Vasut78556632013-07-30 23:37:58 +02001069 0x00, /*= [ ] */
1070 0x00, /*= [ ] */
1071 0xaa, /*= [* * ] */
1072 0xee, /*= [*** ] */
1073 0x22, /*= [ * ] */
1074 0xcc, /*= [** ] */
1075 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001076 /*{*/ /* Char 122: 'z' */
Marek Vasut78556632013-07-30 23:37:58 +02001077 0x00, /*= [ ] */
1078 0xee, /*= [*** ] */
1079 0x66, /*= [ ** ] */
1080 0xcc, /*= [** ] */
1081 0xee, /*= [*** ] */
1082 0x00, /*= [ ] */
1083 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001084 /*{*/ /* Char 123: '{' */
Marek Vasut78556632013-07-30 23:37:58 +02001085 0x22, /*= [ * ] */
1086 0x44, /*= [ * ] */
1087 0xcc, /*= [** ] */
1088 0x44, /*= [ * ] */
1089 0x22, /*= [ * ] */
1090 0x00, /*= [ ] */
1091 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001092 /*{*/ /* Char 124: '|' */
Marek Vasut78556632013-07-30 23:37:58 +02001093 0x44, /*= [ * ] */
1094 0x44, /*= [ * ] */
1095 0x44, /*= [ * ] */
1096 0x44, /*= [ * ] */
1097 0x44, /*= [ * ] */
1098 0x00, /*= [ ] */
1099 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001100 /*{*/ /* Char 125: '}' */
Marek Vasut78556632013-07-30 23:37:58 +02001101 0x88, /*= [* ] */
1102 0x44, /*= [ * ] */
1103 0x66, /*= [ ** ] */
1104 0x44, /*= [ * ] */
1105 0x88, /*= [* ] */
1106 0x00, /*= [ ] */
1107 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001108 /*{*/ /* Char 126: '~' */
Marek Vasut78556632013-07-30 23:37:58 +02001109 0x55, /*= [ * *] */
1110 0xaa, /*= [* * ] */
1111 0x00, /*= [ ] */
1112 0x00, /*= [ ] */
1113 0x00, /*= [ ] */
1114 0x00, /*= [ ] */
1115 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001116 /*{*/ /* Char 127: '' */
Marek Vasut78556632013-07-30 23:37:58 +02001117 0x44, /*= [ * ] */
1118 0xaa, /*= [* * ] */
1119 0xaa, /*= [* * ] */
1120 0xee, /*= [*** ] */
1121 0x00, /*= [ ] */
1122 0x00, /*= [ ] */
1123 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001124 /*{*/ /* Char 128: */
Marek Vasut78556632013-07-30 23:37:58 +02001125 0xee, /*= [*** ] */
1126 0xee, /*= [*** ] */
1127 0xee, /*= [*** ] */
1128 0xee, /*= [*** ] */
1129 0xee, /*= [*** ] */
1130 0x00, /*= [ ] */
1131 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001132 /*{*/ /* Char 129: */
Marek Vasut78556632013-07-30 23:37:58 +02001133 0xee, /*= [*** ] */
1134 0xee, /*= [*** ] */
1135 0xee, /*= [*** ] */
1136 0xee, /*= [*** ] */
1137 0xee, /*= [*** ] */
1138 0x00, /*= [ ] */
1139 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001140 /*{*/ /* Char 130: */
Marek Vasut78556632013-07-30 23:37:58 +02001141 0xee, /*= [*** ] */
1142 0xee, /*= [*** ] */
1143 0xee, /*= [*** ] */
1144 0xee, /*= [*** ] */
1145 0xee, /*= [*** ] */
1146 0x00, /*= [ ] */
1147 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001148 /*{*/ /* Char 131: */
Marek Vasut78556632013-07-30 23:37:58 +02001149 0xee, /*= [*** ] */
1150 0xee, /*= [*** ] */
1151 0xee, /*= [*** ] */
1152 0xee, /*= [*** ] */
1153 0xee, /*= [*** ] */
1154 0x00, /*= [ ] */
1155 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001156 /*{*/ /* Char 132: */
Marek Vasut78556632013-07-30 23:37:58 +02001157 0xee, /*= [*** ] */
1158 0xee, /*= [*** ] */
1159 0xee, /*= [*** ] */
1160 0xee, /*= [*** ] */
1161 0xee, /*= [*** ] */
1162 0x00, /*= [ ] */
1163 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001164 /*{*/ /* Char 133: */
Marek Vasut78556632013-07-30 23:37:58 +02001165 0xee, /*= [*** ] */
1166 0xee, /*= [*** ] */
1167 0xee, /*= [*** ] */
1168 0xee, /*= [*** ] */
1169 0xee, /*= [*** ] */
1170 0x00, /*= [ ] */
1171 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001172 /*{*/ /* Char 134: */
Marek Vasut78556632013-07-30 23:37:58 +02001173 0xee, /*= [*** ] */
1174 0xee, /*= [*** ] */
1175 0xee, /*= [*** ] */
1176 0xee, /*= [*** ] */
1177 0xee, /*= [*** ] */
1178 0x00, /*= [ ] */
1179 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001180 /*{*/ /* Char 135: */
Marek Vasut78556632013-07-30 23:37:58 +02001181 0xee, /*= [*** ] */
1182 0xee, /*= [*** ] */
1183 0xee, /*= [*** ] */
1184 0xee, /*= [*** ] */
1185 0xee, /*= [*** ] */
1186 0x00, /*= [ ] */
1187 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001188 /*{*/ /* Char 136: */
Marek Vasut78556632013-07-30 23:37:58 +02001189 0xee, /*= [*** ] */
1190 0xee, /*= [*** ] */
1191 0xee, /*= [*** ] */
1192 0xee, /*= [*** ] */
1193 0xee, /*= [*** ] */
1194 0x00, /*= [ ] */
1195 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001196 /*{*/ /* Char 137: */
Marek Vasut78556632013-07-30 23:37:58 +02001197 0xee, /*= [*** ] */
1198 0xee, /*= [*** ] */
1199 0xee, /*= [*** ] */
1200 0xee, /*= [*** ] */
1201 0xee, /*= [*** ] */
1202 0x00, /*= [ ] */
1203 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001204 /*{*/ /* Char 138: */
Marek Vasut78556632013-07-30 23:37:58 +02001205 0xee, /*= [*** ] */
1206 0xee, /*= [*** ] */
1207 0xee, /*= [*** ] */
1208 0xee, /*= [*** ] */
1209 0xee, /*= [*** ] */
1210 0x00, /*= [ ] */
1211 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001212 /*{*/ /* Char 139: */
Marek Vasut78556632013-07-30 23:37:58 +02001213 0xee, /*= [*** ] */
1214 0xee, /*= [*** ] */
1215 0xee, /*= [*** ] */
1216 0xee, /*= [*** ] */
1217 0xee, /*= [*** ] */
1218 0x00, /*= [ ] */
1219 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001220 /*{*/ /* Char 140: */
Marek Vasut78556632013-07-30 23:37:58 +02001221 0xee, /*= [*** ] */
1222 0xee, /*= [*** ] */
1223 0xee, /*= [*** ] */
1224 0xee, /*= [*** ] */
1225 0xee, /*= [*** ] */
1226 0x00, /*= [ ] */
1227 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001228 /*{*/ /* Char 141: */
Marek Vasut78556632013-07-30 23:37:58 +02001229 0xee, /*= [*** ] */
1230 0xee, /*= [*** ] */
1231 0xee, /*= [*** ] */
1232 0xee, /*= [*** ] */
1233 0xee, /*= [*** ] */
1234 0x00, /*= [ ] */
1235 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001236 /*{*/ /* Char 142: */
Marek Vasut78556632013-07-30 23:37:58 +02001237 0xee, /*= [*** ] */
1238 0xee, /*= [*** ] */
1239 0xee, /*= [*** ] */
1240 0xee, /*= [*** ] */
1241 0xee, /*= [*** ] */
1242 0x00, /*= [ ] */
1243 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001244 /*{*/ /* Char 143: */
Marek Vasut78556632013-07-30 23:37:58 +02001245 0xee, /*= [*** ] */
1246 0xee, /*= [*** ] */
1247 0xee, /*= [*** ] */
1248 0xee, /*= [*** ] */
1249 0xee, /*= [*** ] */
1250 0x00, /*= [ ] */
1251 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001252 /*{*/ /* Char 144: */
Marek Vasut78556632013-07-30 23:37:58 +02001253 0xee, /*= [*** ] */
1254 0xee, /*= [*** ] */
1255 0xee, /*= [*** ] */
1256 0xee, /*= [*** ] */
1257 0xee, /*= [*** ] */
1258 0x00, /*= [ ] */
1259 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001260 /*{*/ /* Char 145: */
Marek Vasut78556632013-07-30 23:37:58 +02001261 0xee, /*= [*** ] */
1262 0xee, /*= [*** ] */
1263 0xee, /*= [*** ] */
1264 0xee, /*= [*** ] */
1265 0xee, /*= [*** ] */
1266 0x00, /*= [ ] */
1267 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001268 /*{*/ /* Char 146: */
Marek Vasut78556632013-07-30 23:37:58 +02001269 0xee, /*= [*** ] */
1270 0xee, /*= [*** ] */
1271 0xee, /*= [*** ] */
1272 0xee, /*= [*** ] */
1273 0xee, /*= [*** ] */
1274 0x00, /*= [ ] */
1275 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001276 /*{*/ /* Char 147: */
Marek Vasut78556632013-07-30 23:37:58 +02001277 0xee, /*= [*** ] */
1278 0xee, /*= [*** ] */
1279 0xee, /*= [*** ] */
1280 0xee, /*= [*** ] */
1281 0xee, /*= [*** ] */
1282 0x00, /*= [ ] */
1283 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001284 /*{*/ /* Char 148: */
Marek Vasut78556632013-07-30 23:37:58 +02001285 0xee, /*= [*** ] */
1286 0xee, /*= [*** ] */
1287 0xee, /*= [*** ] */
1288 0xee, /*= [*** ] */
1289 0xee, /*= [*** ] */
1290 0x00, /*= [ ] */
1291 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001292 /*{*/ /* Char 149: */
Marek Vasut78556632013-07-30 23:37:58 +02001293 0xee, /*= [*** ] */
1294 0xee, /*= [*** ] */
1295 0xee, /*= [*** ] */
1296 0xee, /*= [*** ] */
1297 0xee, /*= [*** ] */
1298 0x00, /*= [ ] */
1299 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001300 /*{*/ /* Char 150: */
Marek Vasut78556632013-07-30 23:37:58 +02001301 0xee, /*= [*** ] */
1302 0xee, /*= [*** ] */
1303 0xee, /*= [*** ] */
1304 0xee, /*= [*** ] */
1305 0xee, /*= [*** ] */
1306 0x00, /*= [ ] */
1307 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001308 /*{*/ /* Char 151: */
Marek Vasut78556632013-07-30 23:37:58 +02001309 0xee, /*= [*** ] */
1310 0xee, /*= [*** ] */
1311 0xee, /*= [*** ] */
1312 0xee, /*= [*** ] */
1313 0xee, /*= [*** ] */
1314 0x00, /*= [ ] */
1315 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001316 /*{*/ /* Char 152: */
Marek Vasut78556632013-07-30 23:37:58 +02001317 0xee, /*= [*** ] */
1318 0xee, /*= [*** ] */
1319 0xee, /*= [*** ] */
1320 0xee, /*= [*** ] */
1321 0xee, /*= [*** ] */
1322 0x00, /*= [ ] */
1323 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001324 /*{*/ /* Char 153: */
Marek Vasut78556632013-07-30 23:37:58 +02001325 0xee, /*= [*** ] */
1326 0xee, /*= [*** ] */
1327 0xee, /*= [*** ] */
1328 0xee, /*= [*** ] */
1329 0xee, /*= [*** ] */
1330 0x00, /*= [ ] */
1331 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001332 /*{*/ /* Char 154: */
Marek Vasut78556632013-07-30 23:37:58 +02001333 0xee, /*= [*** ] */
1334 0xee, /*= [*** ] */
1335 0xee, /*= [*** ] */
1336 0xee, /*= [*** ] */
1337 0xee, /*= [*** ] */
1338 0x00, /*= [ ] */
1339 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001340 /*{*/ /* Char 155: */
Marek Vasut78556632013-07-30 23:37:58 +02001341 0xee, /*= [*** ] */
1342 0xee, /*= [*** ] */
1343 0xee, /*= [*** ] */
1344 0xee, /*= [*** ] */
1345 0xee, /*= [*** ] */
1346 0x00, /*= [ ] */
1347 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001348 /*{*/ /* Char 156: */
Marek Vasut78556632013-07-30 23:37:58 +02001349 0xee, /*= [*** ] */
1350 0xee, /*= [*** ] */
1351 0xee, /*= [*** ] */
1352 0xee, /*= [*** ] */
1353 0xee, /*= [*** ] */
1354 0x00, /*= [ ] */
1355 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001356 /*{*/ /* Char 157: */
Marek Vasut78556632013-07-30 23:37:58 +02001357 0xee, /*= [*** ] */
1358 0xee, /*= [*** ] */
1359 0xee, /*= [*** ] */
1360 0xee, /*= [*** ] */
1361 0xee, /*= [*** ] */
1362 0x00, /*= [ ] */
1363 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001364 /*{*/ /* Char 158: */
Marek Vasut78556632013-07-30 23:37:58 +02001365 0xee, /*= [*** ] */
1366 0xee, /*= [*** ] */
1367 0xee, /*= [*** ] */
1368 0xee, /*= [*** ] */
1369 0xee, /*= [*** ] */
1370 0x00, /*= [ ] */
1371 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001372 /*{*/ /* Char 159: */
Marek Vasut78556632013-07-30 23:37:58 +02001373 0xee, /*= [*** ] */
1374 0xee, /*= [*** ] */
1375 0xee, /*= [*** ] */
1376 0xee, /*= [*** ] */
1377 0xee, /*= [*** ] */
1378 0x00, /*= [ ] */
1379 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001380 /*{*/ /* Char 160: */
Marek Vasut78556632013-07-30 23:37:58 +02001381 0xee, /*= [*** ] */
1382 0xee, /*= [*** ] */
1383 0xee, /*= [*** ] */
1384 0xee, /*= [*** ] */
1385 0xee, /*= [*** ] */
1386 0x00, /*= [ ] */
1387 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001388 /*{*/ /* Char 161: */
Marek Vasut78556632013-07-30 23:37:58 +02001389 0xee, /*= [*** ] */
1390 0xee, /*= [*** ] */
1391 0xee, /*= [*** ] */
1392 0xee, /*= [*** ] */
1393 0xee, /*= [*** ] */
1394 0x00, /*= [ ] */
1395 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001396 /*{*/ /* Char 162: */
Marek Vasut78556632013-07-30 23:37:58 +02001397 0xee, /*= [*** ] */
1398 0xee, /*= [*** ] */
1399 0xee, /*= [*** ] */
1400 0xee, /*= [*** ] */
1401 0xee, /*= [*** ] */
1402 0x00, /*= [ ] */
1403 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001404 /*{*/ /* Char 163: */
Marek Vasut78556632013-07-30 23:37:58 +02001405 0xee, /*= [*** ] */
1406 0xee, /*= [*** ] */
1407 0xee, /*= [*** ] */
1408 0xee, /*= [*** ] */
1409 0xee, /*= [*** ] */
1410 0x00, /*= [ ] */
1411 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001412 /*{*/ /* Char 164: */
Marek Vasut78556632013-07-30 23:37:58 +02001413 0xee, /*= [*** ] */
1414 0xee, /*= [*** ] */
1415 0xee, /*= [*** ] */
1416 0xee, /*= [*** ] */
1417 0xee, /*= [*** ] */
1418 0x00, /*= [ ] */
1419 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001420 /*{*/ /* Char 165: */
Marek Vasut78556632013-07-30 23:37:58 +02001421 0xee, /*= [*** ] */
1422 0xee, /*= [*** ] */
1423 0xee, /*= [*** ] */
1424 0xee, /*= [*** ] */
1425 0xee, /*= [*** ] */
1426 0x00, /*= [ ] */
1427 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001428 /*{*/ /* Char 166: */
Marek Vasut78556632013-07-30 23:37:58 +02001429 0xee, /*= [*** ] */
1430 0xee, /*= [*** ] */
1431 0xee, /*= [*** ] */
1432 0xee, /*= [*** ] */
1433 0xee, /*= [*** ] */
1434 0x00, /*= [ ] */
1435 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001436 /*{*/ /* Char 167: */
Marek Vasut78556632013-07-30 23:37:58 +02001437 0xee, /*= [*** ] */
1438 0xee, /*= [*** ] */
1439 0xee, /*= [*** ] */
1440 0xee, /*= [*** ] */
1441 0xee, /*= [*** ] */
1442 0x00, /*= [ ] */
1443 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001444 /*{*/ /* Char 168: */
Marek Vasut78556632013-07-30 23:37:58 +02001445 0xee, /*= [*** ] */
1446 0xee, /*= [*** ] */
1447 0xee, /*= [*** ] */
1448 0xee, /*= [*** ] */
1449 0xee, /*= [*** ] */
1450 0x00, /*= [ ] */
1451 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001452 /*{*/ /* Char 169: */
Marek Vasut78556632013-07-30 23:37:58 +02001453 0xee, /*= [*** ] */
1454 0xee, /*= [*** ] */
1455 0xee, /*= [*** ] */
1456 0xee, /*= [*** ] */
1457 0xee, /*= [*** ] */
1458 0x00, /*= [ ] */
1459 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001460 /*{*/ /* Char 170: */
Marek Vasut78556632013-07-30 23:37:58 +02001461 0xee, /*= [*** ] */
1462 0xee, /*= [*** ] */
1463 0xee, /*= [*** ] */
1464 0xee, /*= [*** ] */
1465 0xee, /*= [*** ] */
1466 0x00, /*= [ ] */
1467 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001468 /*{*/ /* Char 171: */
Marek Vasut78556632013-07-30 23:37:58 +02001469 0xee, /*= [*** ] */
1470 0xee, /*= [*** ] */
1471 0xee, /*= [*** ] */
1472 0xee, /*= [*** ] */
1473 0xee, /*= [*** ] */
1474 0x00, /*= [ ] */
1475 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001476 /*{*/ /* Char 172: */
Marek Vasut78556632013-07-30 23:37:58 +02001477 0xee, /*= [*** ] */
1478 0xee, /*= [*** ] */
1479 0xee, /*= [*** ] */
1480 0xee, /*= [*** ] */
1481 0xee, /*= [*** ] */
1482 0x00, /*= [ ] */
1483 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001484 /*{*/ /* Char 173: */
Marek Vasut78556632013-07-30 23:37:58 +02001485 0xee, /*= [*** ] */
1486 0xee, /*= [*** ] */
1487 0xee, /*= [*** ] */
1488 0xee, /*= [*** ] */
1489 0xee, /*= [*** ] */
1490 0x00, /*= [ ] */
1491 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001492 /*{*/ /* Char 174: */
Marek Vasut78556632013-07-30 23:37:58 +02001493 0x00, /*= [ ] */
1494 0x66, /*= [ ** ] */
1495 0xcc, /*= [** ] */
1496 0x66, /*= [ ** ] */
1497 0x00, /*= [ ] */
1498 0x00, /*= [ ] */
1499 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001500 /*{*/ /* Char 175: */
Marek Vasut78556632013-07-30 23:37:58 +02001501 0x00, /*= [ ] */
1502 0xcc, /*= [** ] */
1503 0x66, /*= [ ** ] */
1504 0xcc, /*= [** ] */
1505 0x00, /*= [ ] */
1506 0x00, /*= [ ] */
1507 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001508 /*{*/ /* Char 176: */
Marek Vasut78556632013-07-30 23:37:58 +02001509 0x88, /*= [* ] */
1510 0x22, /*= [ * ] */
1511 0x88, /*= [* ] */
1512 0x22, /*= [ * ] */
1513 0x88, /*= [* ] */
1514 0x22, /*= [ * ] */
1515 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001516 /*{*/ /* Char 177: */
Marek Vasut78556632013-07-30 23:37:58 +02001517 0xaa, /*= [* * ] */
1518 0x55, /*= [ * *] */
1519 0xaa, /*= [* * ] */
1520 0x55, /*= [ * *] */
1521 0xaa, /*= [* * ] */
1522 0x55, /*= [ * *] */
1523 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001524 /*{*/ /* Char 178: */
Marek Vasut78556632013-07-30 23:37:58 +02001525 0xdd, /*= [** *] */
1526 0xbb, /*= [* **] */
1527 0xdd, /*= [** *] */
1528 0xbb, /*= [* **] */
1529 0xdd, /*= [** *] */
1530 0xbb, /*= [* **] */
1531 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001532 /*{*/ /* Char 179: */
Marek Vasut78556632013-07-30 23:37:58 +02001533 0x44, /*= [ * ] */
1534 0x44, /*= [ * ] */
1535 0x44, /*= [ * ] */
1536 0x44, /*= [ * ] */
1537 0x44, /*= [ * ] */
1538 0x44, /*= [ * ] */
1539 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001540 /*{*/ /* Char 180: */
Marek Vasut78556632013-07-30 23:37:58 +02001541 0x44, /*= [ * ] */
1542 0x44, /*= [ * ] */
1543 0xcc, /*= [** ] */
1544 0x44, /*= [ * ] */
1545 0x44, /*= [ * ] */
1546 0x44, /*= [ * ] */
1547 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001548 /*{*/ /* Char 181: */
Marek Vasut78556632013-07-30 23:37:58 +02001549 0x44, /*= [ * ] */
1550 0x44, /*= [ * ] */
1551 0xcc, /*= [** ] */
1552 0xcc, /*= [** ] */
1553 0x44, /*= [ * ] */
1554 0x44, /*= [ * ] */
1555 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001556 /*{*/ /* Char 182: */
Marek Vasut78556632013-07-30 23:37:58 +02001557 0x66, /*= [ ** ] */
1558 0x66, /*= [ ** ] */
1559 0xee, /*= [*** ] */
1560 0x66, /*= [ ** ] */
1561 0x66, /*= [ ** ] */
1562 0x66, /*= [ ** ] */
1563 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001564 /*{*/ /* Char 183: */
Marek Vasut78556632013-07-30 23:37:58 +02001565 0x00, /*= [ ] */
1566 0x00, /*= [ ] */
1567 0xee, /*= [*** ] */
1568 0x66, /*= [ ** ] */
1569 0x66, /*= [ ** ] */
1570 0x66, /*= [ ** ] */
1571 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001572 /*{*/ /* Char 184: */
Marek Vasut78556632013-07-30 23:37:58 +02001573 0x00, /*= [ ] */
1574 0x00, /*= [ ] */
1575 0xcc, /*= [** ] */
1576 0xcc, /*= [** ] */
1577 0x44, /*= [ * ] */
1578 0x44, /*= [ * ] */
1579 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001580 /*{*/ /* Char 185: */
Marek Vasut78556632013-07-30 23:37:58 +02001581 0x66, /*= [ ** ] */
1582 0x66, /*= [ ** ] */
1583 0xee, /*= [*** ] */
1584 0xee, /*= [*** ] */
1585 0x66, /*= [ ** ] */
1586 0x66, /*= [ ** ] */
1587 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001588 /*{*/ /* Char 186: */
Marek Vasut78556632013-07-30 23:37:58 +02001589 0x66, /*= [ ** ] */
1590 0x66, /*= [ ** ] */
1591 0x66, /*= [ ** ] */
1592 0x66, /*= [ ** ] */
1593 0x66, /*= [ ** ] */
1594 0x66, /*= [ ** ] */
1595 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001596 /*{*/ /* Char 187: */
Marek Vasut78556632013-07-30 23:37:58 +02001597 0x00, /*= [ ] */
1598 0x00, /*= [ ] */
1599 0xee, /*= [*** ] */
1600 0xee, /*= [*** ] */
1601 0x66, /*= [ ** ] */
1602 0x66, /*= [ ** ] */
1603 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001604 /*{*/ /* Char 188: */
Marek Vasut78556632013-07-30 23:37:58 +02001605 0x66, /*= [ ** ] */
1606 0x66, /*= [ ** ] */
1607 0xee, /*= [*** ] */
1608 0xee, /*= [*** ] */
1609 0x00, /*= [ ] */
1610 0x00, /*= [ ] */
1611 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001612 /*{*/ /* Char 189: */
Marek Vasut78556632013-07-30 23:37:58 +02001613 0x66, /*= [ ** ] */
1614 0x66, /*= [ ** ] */
1615 0xee, /*= [*** ] */
1616 0x00, /*= [ ] */
1617 0x00, /*= [ ] */
1618 0x00, /*= [ ] */
1619 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001620 /*{*/ /* Char 190: */
Marek Vasut78556632013-07-30 23:37:58 +02001621 0x44, /*= [ * ] */
1622 0x44, /*= [ * ] */
1623 0xcc, /*= [** ] */
1624 0xcc, /*= [** ] */
1625 0x00, /*= [ ] */
1626 0x00, /*= [ ] */
1627 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001628 /*{*/ /* Char 191: */
Marek Vasut78556632013-07-30 23:37:58 +02001629 0x00, /*= [ ] */
1630 0x00, /*= [ ] */
1631 0xcc, /*= [** ] */
1632 0x44, /*= [ * ] */
1633 0x44, /*= [ * ] */
1634 0x44, /*= [ * ] */
1635 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001636 /*{*/ /* Char 192: */
Marek Vasut78556632013-07-30 23:37:58 +02001637 0x44, /*= [ * ] */
1638 0x44, /*= [ * ] */
1639 0x77, /*= [ ***] */
1640 0x00, /*= [ ] */
1641 0x00, /*= [ ] */
1642 0x00, /*= [ ] */
1643 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001644 /*{*/ /* Char 193: */
Marek Vasut78556632013-07-30 23:37:58 +02001645 0x44, /*= [ * ] */
1646 0x44, /*= [ * ] */
1647 0xff, /*= [****] */
1648 0x00, /*= [ ] */
1649 0x00, /*= [ ] */
1650 0x00, /*= [ ] */
1651 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001652 /*{*/ /* Char 194: */
Marek Vasut78556632013-07-30 23:37:58 +02001653 0x00, /*= [ ] */
1654 0x00, /*= [ ] */
1655 0xff, /*= [****] */
1656 0x44, /*= [ * ] */
1657 0x44, /*= [ * ] */
1658 0x44, /*= [ * ] */
1659 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001660 /*{*/ /* Char 195: */
Marek Vasut78556632013-07-30 23:37:58 +02001661 0x44, /*= [ * ] */
1662 0x44, /*= [ * ] */
1663 0x77, /*= [ ***] */
1664 0x44, /*= [ * ] */
1665 0x44, /*= [ * ] */
1666 0x44, /*= [ * ] */
1667 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001668 /*{*/ /* Char 196: */
Marek Vasut78556632013-07-30 23:37:58 +02001669 0x00, /*= [ ] */
1670 0x00, /*= [ ] */
1671 0xff, /*= [****] */
1672 0x00, /*= [ ] */
1673 0x00, /*= [ ] */
1674 0x00, /*= [ ] */
1675 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001676 /*{*/ /* Char 197: */
Marek Vasut78556632013-07-30 23:37:58 +02001677 0x44, /*= [ * ] */
1678 0x44, /*= [ * ] */
1679 0xff, /*= [****] */
1680 0x44, /*= [ * ] */
1681 0x44, /*= [ * ] */
1682 0x44, /*= [ * ] */
1683 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001684 /*{*/ /* Char 198: */
Marek Vasut78556632013-07-30 23:37:58 +02001685 0x44, /*= [ * ] */
1686 0x44, /*= [ * ] */
1687 0x77, /*= [ ***] */
1688 0x77, /*= [ ***] */
1689 0x44, /*= [ * ] */
1690 0x44, /*= [ * ] */
1691 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001692 /*{*/ /* Char 199: */
Marek Vasut78556632013-07-30 23:37:58 +02001693 0x66, /*= [ ** ] */
1694 0x66, /*= [ ** ] */
1695 0x77, /*= [ ***] */
1696 0x66, /*= [ ** ] */
1697 0x66, /*= [ ** ] */
1698 0x66, /*= [ ** ] */
1699 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001700 /*{*/ /* Char 200: */
Marek Vasut78556632013-07-30 23:37:58 +02001701 0x66, /*= [ ** ] */
1702 0x66, /*= [ ** ] */
1703 0x77, /*= [ ***] */
1704 0x77, /*= [ ***] */
1705 0x00, /*= [ ] */
1706 0x00, /*= [ ] */
1707 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001708 /*{*/ /* Char 201: */
Marek Vasut78556632013-07-30 23:37:58 +02001709 0x00, /*= [ ] */
1710 0x00, /*= [ ] */
1711 0x77, /*= [ ***] */
1712 0x77, /*= [ ***] */
1713 0x66, /*= [ ** ] */
1714 0x66, /*= [ ** ] */
1715 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001716 /*{*/ /* Char 202: */
Marek Vasut78556632013-07-30 23:37:58 +02001717 0x66, /*= [ ** ] */
1718 0x66, /*= [ ** ] */
1719 0xff, /*= [****] */
1720 0xff, /*= [****] */
1721 0x00, /*= [ ] */
1722 0x00, /*= [ ] */
1723 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001724 /*{*/ /* Char 203: */
Marek Vasut78556632013-07-30 23:37:58 +02001725 0x00, /*= [ ] */
1726 0x00, /*= [ ] */
1727 0xff, /*= [****] */
1728 0xff, /*= [****] */
1729 0x66, /*= [ ** ] */
1730 0x66, /*= [ ** ] */
1731 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001732 /*{*/ /* Char 204: */
Marek Vasut78556632013-07-30 23:37:58 +02001733 0x66, /*= [ ** ] */
1734 0x66, /*= [ ** ] */
1735 0x77, /*= [ ***] */
1736 0x77, /*= [ ***] */
1737 0x66, /*= [ ** ] */
1738 0x66, /*= [ ** ] */
1739 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001740 /*{*/ /* Char 205: */
Marek Vasut78556632013-07-30 23:37:58 +02001741 0x00, /*= [ ] */
1742 0x00, /*= [ ] */
1743 0xff, /*= [****] */
1744 0xff, /*= [****] */
1745 0x00, /*= [ ] */
1746 0x00, /*= [ ] */
1747 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001748 /*{*/ /* Char 206: */
Marek Vasut78556632013-07-30 23:37:58 +02001749 0x66, /*= [ ** ] */
1750 0x66, /*= [ ** ] */
1751 0xff, /*= [****] */
1752 0xff, /*= [****] */
1753 0x66, /*= [ ** ] */
1754 0x66, /*= [ ** ] */
1755 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001756 /*{*/ /* Char 207: */
Marek Vasut78556632013-07-30 23:37:58 +02001757 0x44, /*= [ * ] */
1758 0x44, /*= [ * ] */
1759 0xff, /*= [****] */
1760 0xff, /*= [****] */
1761 0x00, /*= [ ] */
1762 0x00, /*= [ ] */
1763 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001764 /*{*/ /* Char 208: */
Marek Vasut78556632013-07-30 23:37:58 +02001765 0x66, /*= [ ** ] */
1766 0x66, /*= [ ** ] */
1767 0xff, /*= [****] */
1768 0x00, /*= [ ] */
1769 0x00, /*= [ ] */
1770 0x00, /*= [ ] */
1771 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001772 /*{*/ /* Char 209: */
Marek Vasut78556632013-07-30 23:37:58 +02001773 0x00, /*= [ ] */
1774 0x00, /*= [ ] */
1775 0xff, /*= [****] */
1776 0xff, /*= [****] */
1777 0x44, /*= [ * ] */
1778 0x44, /*= [ * ] */
1779 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001780 /*{*/ /* Char 210: */
Marek Vasut78556632013-07-30 23:37:58 +02001781 0x00, /*= [ ] */
1782 0x00, /*= [ ] */
1783 0xff, /*= [****] */
1784 0x66, /*= [ ** ] */
1785 0x66, /*= [ ** ] */
1786 0x66, /*= [ ** ] */
1787 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001788 /*{*/ /* Char 211: */
Marek Vasut78556632013-07-30 23:37:58 +02001789 0x66, /*= [ ** ] */
1790 0x66, /*= [ ** ] */
1791 0x77, /*= [ ***] */
1792 0x00, /*= [ ] */
1793 0x00, /*= [ ] */
1794 0x00, /*= [ ] */
1795 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001796 /*{*/ /* Char 212: */
Marek Vasut78556632013-07-30 23:37:58 +02001797 0x44, /*= [ * ] */
1798 0x44, /*= [ * ] */
1799 0x77, /*= [ ***] */
1800 0x77, /*= [ ***] */
1801 0x00, /*= [ ] */
1802 0x00, /*= [ ] */
1803 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001804 /*{*/ /* Char 213: */
Marek Vasut78556632013-07-30 23:37:58 +02001805 0x00, /*= [ ] */
1806 0x00, /*= [ ] */
1807 0x77, /*= [ ***] */
1808 0x77, /*= [ ***] */
1809 0x44, /*= [ * ] */
1810 0x44, /*= [ * ] */
1811 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001812 /*{*/ /* Char 214: */
Marek Vasut78556632013-07-30 23:37:58 +02001813 0x00, /*= [ ] */
1814 0x00, /*= [ ] */
1815 0x77, /*= [ ***] */
1816 0x66, /*= [ ** ] */
1817 0x66, /*= [ ** ] */
1818 0x66, /*= [ ** ] */
1819 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001820 /*{*/ /* Char 215: */
Marek Vasut78556632013-07-30 23:37:58 +02001821 0x66, /*= [ ** ] */
1822 0x66, /*= [ ** ] */
1823 0xff, /*= [****] */
1824 0x66, /*= [ ** ] */
1825 0x66, /*= [ ** ] */
1826 0x66, /*= [ ** ] */
1827 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001828 /*{*/ /* Char 216: */
Marek Vasut78556632013-07-30 23:37:58 +02001829 0x44, /*= [ * ] */
1830 0x44, /*= [ * ] */
1831 0xff, /*= [****] */
1832 0xff, /*= [****] */
1833 0x44, /*= [ * ] */
1834 0x44, /*= [ * ] */
1835 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001836 /*{*/ /* Char 217: */
Marek Vasut78556632013-07-30 23:37:58 +02001837 0x44, /*= [ * ] */
1838 0x44, /*= [ * ] */
1839 0xcc, /*= [** ] */
1840 0x00, /*= [ ] */
1841 0x00, /*= [ ] */
1842 0x00, /*= [ ] */
1843 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001844 /*{*/ /* Char 218: */
Marek Vasut78556632013-07-30 23:37:58 +02001845 0x00, /*= [ ] */
1846 0x00, /*= [ ] */
1847 0x77, /*= [ ***] */
1848 0x44, /*= [ * ] */
1849 0x44, /*= [ * ] */
1850 0x44, /*= [ * ] */
1851 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001852 /*{*/ /* Char 219: */
Marek Vasut78556632013-07-30 23:37:58 +02001853 0xff, /*= [****] */
1854 0xff, /*= [****] */
1855 0xff, /*= [****] */
1856 0xff, /*= [****] */
1857 0xff, /*= [****] */
1858 0xff, /*= [****] */
1859 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001860 /*{*/ /* Char 220: */
Marek Vasut78556632013-07-30 23:37:58 +02001861 0x00, /*= [ ] */
1862 0x00, /*= [ ] */
1863 0x00, /*= [ ] */
1864 0xff, /*= [****] */
1865 0xff, /*= [****] */
1866 0xff, /*= [****] */
1867 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001868 /*{*/ /* Char 221: */
Marek Vasut78556632013-07-30 23:37:58 +02001869 0xcc, /*= [** ] */
1870 0xcc, /*= [** ] */
1871 0xcc, /*= [** ] */
1872 0xcc, /*= [** ] */
1873 0xcc, /*= [** ] */
1874 0xcc, /*= [** ] */
1875 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001876 /*{*/ /* Char 222: */
Marek Vasut78556632013-07-30 23:37:58 +02001877 0x33, /*= [ **] */
1878 0x33, /*= [ **] */
1879 0x33, /*= [ **] */
1880 0x33, /*= [ **] */
1881 0x33, /*= [ **] */
1882 0x33, /*= [ **] */
1883 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001884 /*{*/ /* Char 223: */
Marek Vasut78556632013-07-30 23:37:58 +02001885 0xff, /*= [****] */
1886 0xff, /*= [****] */
1887 0xff, /*= [****] */
1888 0x00, /*= [ ] */
1889 0x00, /*= [ ] */
1890 0x00, /*= [ ] */
1891 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001892 /*{*/ /* Char 224: */
Marek Vasut78556632013-07-30 23:37:58 +02001893 0xee, /*= [*** ] */
1894 0xee, /*= [*** ] */
1895 0xee, /*= [*** ] */
1896 0xee, /*= [*** ] */
1897 0xee, /*= [*** ] */
1898 0x00, /*= [ ] */
1899 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001900 /*{*/ /* Char 225: */
Marek Vasut78556632013-07-30 23:37:58 +02001901 0xee, /*= [*** ] */
1902 0xee, /*= [*** ] */
1903 0xee, /*= [*** ] */
1904 0xee, /*= [*** ] */
1905 0xee, /*= [*** ] */
1906 0x00, /*= [ ] */
1907 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001908 /*{*/ /* Char 226: */
Marek Vasut78556632013-07-30 23:37:58 +02001909 0xee, /*= [*** ] */
1910 0xee, /*= [*** ] */
1911 0xee, /*= [*** ] */
1912 0xee, /*= [*** ] */
1913 0xee, /*= [*** ] */
1914 0x00, /*= [ ] */
1915 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001916 /*{*/ /* Char 227: */
Marek Vasut78556632013-07-30 23:37:58 +02001917 0xee, /*= [*** ] */
1918 0xee, /*= [*** ] */
1919 0xee, /*= [*** ] */
1920 0xee, /*= [*** ] */
1921 0xee, /*= [*** ] */
1922 0x00, /*= [ ] */
1923 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001924 /*{*/ /* Char 228: */
Marek Vasut78556632013-07-30 23:37:58 +02001925 0xee, /*= [*** ] */
1926 0xee, /*= [*** ] */
1927 0xee, /*= [*** ] */
1928 0xee, /*= [*** ] */
1929 0xee, /*= [*** ] */
1930 0x00, /*= [ ] */
1931 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001932 /*{*/ /* Char 229: */
Marek Vasut78556632013-07-30 23:37:58 +02001933 0xee, /*= [*** ] */
1934 0xee, /*= [*** ] */
1935 0xee, /*= [*** ] */
1936 0xee, /*= [*** ] */
1937 0xee, /*= [*** ] */
1938 0x00, /*= [ ] */
1939 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001940 /*{*/ /* Char 230: */
Marek Vasut78556632013-07-30 23:37:58 +02001941 0xee, /*= [*** ] */
1942 0xee, /*= [*** ] */
1943 0xee, /*= [*** ] */
1944 0xee, /*= [*** ] */
1945 0xee, /*= [*** ] */
1946 0x00, /*= [ ] */
1947 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001948 /*{*/ /* Char 231: */
Marek Vasut78556632013-07-30 23:37:58 +02001949 0xee, /*= [*** ] */
1950 0xee, /*= [*** ] */
1951 0xee, /*= [*** ] */
1952 0xee, /*= [*** ] */
1953 0xee, /*= [*** ] */
1954 0x00, /*= [ ] */
1955 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001956 /*{*/ /* Char 232: */
Marek Vasut78556632013-07-30 23:37:58 +02001957 0xee, /*= [*** ] */
1958 0xee, /*= [*** ] */
1959 0xee, /*= [*** ] */
1960 0xee, /*= [*** ] */
1961 0xee, /*= [*** ] */
1962 0x00, /*= [ ] */
1963 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001964 /*{*/ /* Char 233: */
Marek Vasut78556632013-07-30 23:37:58 +02001965 0xee, /*= [*** ] */
1966 0xee, /*= [*** ] */
1967 0xee, /*= [*** ] */
1968 0xee, /*= [*** ] */
1969 0xee, /*= [*** ] */
1970 0x00, /*= [ ] */
1971 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001972 /*{*/ /* Char 234: */
Marek Vasut78556632013-07-30 23:37:58 +02001973 0xee, /*= [*** ] */
1974 0xee, /*= [*** ] */
1975 0xee, /*= [*** ] */
1976 0xee, /*= [*** ] */
1977 0xee, /*= [*** ] */
1978 0x00, /*= [ ] */
1979 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001980 /*{*/ /* Char 235: */
Marek Vasut78556632013-07-30 23:37:58 +02001981 0xee, /*= [*** ] */
1982 0xee, /*= [*** ] */
1983 0xee, /*= [*** ] */
1984 0xee, /*= [*** ] */
1985 0xee, /*= [*** ] */
1986 0x00, /*= [ ] */
1987 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001988 /*{*/ /* Char 236: */
Marek Vasut78556632013-07-30 23:37:58 +02001989 0xee, /*= [*** ] */
1990 0xee, /*= [*** ] */
1991 0xee, /*= [*** ] */
1992 0xee, /*= [*** ] */
1993 0xee, /*= [*** ] */
1994 0x00, /*= [ ] */
1995 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001996 /*{*/ /* Char 237: */
Marek Vasut78556632013-07-30 23:37:58 +02001997 0xee, /*= [*** ] */
1998 0xee, /*= [*** ] */
1999 0xee, /*= [*** ] */
2000 0xee, /*= [*** ] */
2001 0xee, /*= [*** ] */
2002 0x00, /*= [ ] */
2003 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002004 /*{*/ /* Char 238: */
Marek Vasut78556632013-07-30 23:37:58 +02002005 0xee, /*= [*** ] */
2006 0xee, /*= [*** ] */
2007 0xee, /*= [*** ] */
2008 0xee, /*= [*** ] */
2009 0xee, /*= [*** ] */
2010 0x00, /*= [ ] */
2011 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002012 /*{*/ /* Char 239: */
Marek Vasut78556632013-07-30 23:37:58 +02002013 0xee, /*= [*** ] */
2014 0xee, /*= [*** ] */
2015 0xee, /*= [*** ] */
2016 0xee, /*= [*** ] */
2017 0xee, /*= [*** ] */
2018 0x00, /*= [ ] */
2019 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002020 /*{*/ /* Char 240: */
Marek Vasut78556632013-07-30 23:37:58 +02002021 0xee, /*= [*** ] */
2022 0xee, /*= [*** ] */
2023 0xee, /*= [*** ] */
2024 0xee, /*= [*** ] */
2025 0xee, /*= [*** ] */
2026 0x00, /*= [ ] */
2027 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002028 /*{*/ /* Char 241: */
Marek Vasut78556632013-07-30 23:37:58 +02002029 0xee, /*= [*** ] */
2030 0xee, /*= [*** ] */
2031 0xee, /*= [*** ] */
2032 0xee, /*= [*** ] */
2033 0xee, /*= [*** ] */
2034 0x00, /*= [ ] */
2035 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002036 /*{*/ /* Char 242: */
Marek Vasut78556632013-07-30 23:37:58 +02002037 0xee, /*= [*** ] */
2038 0xee, /*= [*** ] */
2039 0xee, /*= [*** ] */
2040 0xee, /*= [*** ] */
2041 0xee, /*= [*** ] */
2042 0x00, /*= [ ] */
2043 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002044 /*{*/ /* Char 243: */
Marek Vasut78556632013-07-30 23:37:58 +02002045 0xee, /*= [*** ] */
2046 0xee, /*= [*** ] */
2047 0xee, /*= [*** ] */
2048 0xee, /*= [*** ] */
2049 0xee, /*= [*** ] */
2050 0x00, /*= [ ] */
2051 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002052 /*{*/ /* Char 244: */
Marek Vasut78556632013-07-30 23:37:58 +02002053 0xee, /*= [*** ] */
2054 0xee, /*= [*** ] */
2055 0xee, /*= [*** ] */
2056 0xee, /*= [*** ] */
2057 0xee, /*= [*** ] */
2058 0x00, /*= [ ] */
2059 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002060 /*{*/ /* Char 245: */
Marek Vasut78556632013-07-30 23:37:58 +02002061 0xee, /*= [*** ] */
2062 0xee, /*= [*** ] */
2063 0xee, /*= [*** ] */
2064 0xee, /*= [*** ] */
2065 0xee, /*= [*** ] */
2066 0x00, /*= [ ] */
2067 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002068 /*{*/ /* Char 246: */
Marek Vasut78556632013-07-30 23:37:58 +02002069 0xee, /*= [*** ] */
2070 0xee, /*= [*** ] */
2071 0xee, /*= [*** ] */
2072 0xee, /*= [*** ] */
2073 0xee, /*= [*** ] */
2074 0x00, /*= [ ] */
2075 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002076 /*{*/ /* Char 247: */
Marek Vasut78556632013-07-30 23:37:58 +02002077 0xee, /*= [*** ] */
2078 0xee, /*= [*** ] */
2079 0xee, /*= [*** ] */
2080 0xee, /*= [*** ] */
2081 0xee, /*= [*** ] */
2082 0x00, /*= [ ] */
2083 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002084 /*{*/ /* Char 248: */
Marek Vasut78556632013-07-30 23:37:58 +02002085 0xee, /*= [*** ] */
2086 0xee, /*= [*** ] */
2087 0xee, /*= [*** ] */
2088 0xee, /*= [*** ] */
2089 0xee, /*= [*** ] */
2090 0x00, /*= [ ] */
2091 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002092 /*{*/ /* Char 249: */
Marek Vasut78556632013-07-30 23:37:58 +02002093 0xee, /*= [*** ] */
2094 0xee, /*= [*** ] */
2095 0xee, /*= [*** ] */
2096 0xee, /*= [*** ] */
2097 0xee, /*= [*** ] */
2098 0x00, /*= [ ] */
2099 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002100 /*{*/ /* Char 250: */
Marek Vasut78556632013-07-30 23:37:58 +02002101 0xee, /*= [*** ] */
2102 0xee, /*= [*** ] */
2103 0xee, /*= [*** ] */
2104 0xee, /*= [*** ] */
2105 0xee, /*= [*** ] */
2106 0x00, /*= [ ] */
2107 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002108 /*{*/ /* Char 251: */
Marek Vasut78556632013-07-30 23:37:58 +02002109 0xee, /*= [*** ] */
2110 0xee, /*= [*** ] */
2111 0xee, /*= [*** ] */
2112 0xee, /*= [*** ] */
2113 0xee, /*= [*** ] */
2114 0x00, /*= [ ] */
2115 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002116 /*{*/ /* Char 252: */
Marek Vasut78556632013-07-30 23:37:58 +02002117 0xee, /*= [*** ] */
2118 0xee, /*= [*** ] */
2119 0xee, /*= [*** ] */
2120 0xee, /*= [*** ] */
2121 0xee, /*= [*** ] */
2122 0x00, /*= [ ] */
2123 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002124 /*{*/ /* Char 253: */
Marek Vasut78556632013-07-30 23:37:58 +02002125 0xee, /*= [*** ] */
2126 0xee, /*= [*** ] */
2127 0xee, /*= [*** ] */
2128 0xee, /*= [*** ] */
2129 0xee, /*= [*** ] */
2130 0x00, /*= [ ] */
2131 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002132 /*{*/ /* Char 254: */
Marek Vasut78556632013-07-30 23:37:58 +02002133 0x00, /*= [ ] */
2134 0x00, /*= [ ] */
2135 0x66, /*= [ ** ] */
2136 0x66, /*= [ ** ] */
2137 0x00, /*= [ ] */
2138 0x00, /*= [ ] */
2139 /*}*/
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02002140 /*{*/ /* Char 255: */
Marek Vasut78556632013-07-30 23:37:58 +02002141 0xee, /*= [*** ] */
2142 0xee, /*= [*** ] */
2143 0xee, /*= [*** ] */
2144 0xee, /*= [*** ] */
2145 0xee, /*= [*** ] */
2146 0x00, /*= [ ] */
2147 /*}*/
2148};
2149
2150#endif