Repo for ESP32 Weather Station Development
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

331 lines
16KB

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