This program generates proportional spacing fonts. for use with the SDD1963 driver

Dependencies:   mbed

Committer:
andrewcrussell
Date:
Thu Nov 21 04:13:59 2013 +0000
Revision:
0:f207e3c3b773
Font Generator Program for SDD1963 graphics driver.  Written/modified by Tedd Okano

Who changed what in which revision?

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