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.

332 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. // comic.c
  10. // Point Size : 24
  11. // Memory usage : 2814 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_Comic24[] =
  20. {
  21. 0x00, 0x19, 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,0x15,0x00,0x00,0x00,0x07,
  37. // '!'
  38. 0x21,0x02,0x02,0x14,0x01,0x06,
  39. 0xFF,0xFF,0xFF,0xFC,0x2D,
  40. // '"'
  41. 0x22,0x03,0x06,0x08,0x02,0x0A,
  42. 0xCF,0x3C,0xF3,0xCF,0x3C,0xF3,
  43. // '#'
  44. 0x23,0x03,0x14,0x12,0x01,0x14,
  45. 0x01,0x81,0x80,0x18,0x18,0x01,0x81,0x80,0x30,0x30,0x03,0x03,0x07,0xFF,0xFF,0x7F,0xFF,0xF0,0x60,0x60,0x06,0x06,0x00,0xC0,0xC0,0x0C,0x0C,0x0F,0xFF,0xFE,0xFF,0xFF,0xE1,0x81,0x80,0x18,0x18,0x03,0x83,0x00,0x30,0x30,0x03,0x03,0x00,
  46. // '$'
  47. 0x24,0x00,0x0B,0x19,0x02,0x11,
  48. 0x0C,0x01,0x80,0x30,0x0F,0x83,0xFC,0xD9,0xBB,0x06,0x60,0xCC,0x19,0x83,0xB0,0x3F,0x83,0xFC,0x1B,0x83,0x18,0x63,0x0C,0x71,0x9F,0x37,0x7F,0xC3,0xF0,0x18,0x03,0x00,0x60,0x0C,0x00,
  49. // '%'
  50. 0x25,0x01,0x11,0x14,0x02,0x14,
  51. 0x00,0x00,0x00,0x0C,0x0E,0x0E,0x0F,0x86,0x0C,0x67,0x06,0x33,0x03,0x19,0x80,0xF9,0x80,0x38,0xC0,0x00,0xE0,0x00,0x60,0x00,0x70,0x00,0x31,0xE0,0x39,0xF8,0x19,0xCE,0x1C,0xC3,0x0C,0x61,0x86,0x39,0xC6,0x0F,0xC3,0x03,0xC0,
  52. // '&'
  53. 0x26,0x03,0x0F,0x13,0x01,0x10,
  54. 0x01,0xC0,0x07,0xC0,0x19,0x80,0x33,0x00,0x6E,0x00,0xF8,0x01,0xE0,0x07,0x80,0x1F,0x8C,0x73,0x19,0xC3,0x37,0x07,0xEC,0x07,0xD8,0x07,0x30,0x0E,0x38,0x7E,0x3F,0xEC,0x3F,0x0C,0x00,0x18,
  55. // '''
  56. 0x27,0x03,0x02,0x06,0x03,0x09,
  57. 0xFF,0xF0,
  58. // '('
  59. 0x28,0x02,0x07,0x18,0x01,0x09,
  60. 0x06,0x1C,0x71,0xC3,0x0E,0x18,0x30,0xE1,0x83,0x06,0x0C,0x18,0x30,0x60,0xE0,0xC1,0x83,0x83,0x83,0x87,0x83,
  61. // ')'
  62. 0x29,0x02,0x06,0x18,0x02,0x09,
  63. 0xC3,0x86,0x0C,0x30,0x61,0x86,0x0C,0x30,0xC3,0x0C,0x30,0xC3,0x0C,0x61,0x86,0x31,0xCE,0x30,
  64. // '*'
  65. 0x2A,0x03,0x0B,0x09,0x01,0x0D,
  66. 0x0C,0x01,0x83,0xBF,0xFF,0xF3,0xFC,0x3C,0x0F,0xC3,0x9C,0x61,0x80,
  67. // '+'
  68. 0x2B,0x09,0x0A,0x0A,0x00,0x0C,
  69. 0x0C,0x03,0x00,0xC0,0x30,0xFF,0xFF,0xF0,0xC0,0x30,0x0C,0x03,0x00,
  70. // ','
  71. 0x2C,0x13,0x04,0x06,0x02,0x07,
  72. 0x37,0x66,0xEC,
  73. // '-'
  74. 0x2D,0x0E,0x08,0x02,0x01,0x0A,
  75. 0xFF,0xFF,
  76. // '.'
  77. 0x2E,0x12,0x03,0x03,0x02,0x06,
  78. 0xFF,0x80,
  79. // '/'
  80. 0x2F,0x01,0x0A,0x15,0x01,0x0C,
  81. 0x00,0x00,0x30,0x0C,0x06,0x01,0x80,0x60,0x30,0x0C,0x06,0x01,0x80,0xC0,0x30,0x18,0x06,0x03,0x00,0xC0,0x60,0x18,0x0E,0x03,0x00,0xC0,0x00,
  82. // '0'
  83. 0x30,0x03,0x0D,0x12,0x01,0x0F,
  84. 0x0F,0x80,0xFF,0x0E,0x18,0xE0,0x66,0x03,0x70,0x0F,0x00,0x78,0x03,0xC0,0x1E,0x00,0xF0,0x07,0x80,0x3C,0x03,0xB0,0x19,0x81,0xC7,0x1C,0x3F,0xC0,0x7C,0x00,
  85. // '1'
  86. 0x31,0x03,0x06,0x12,0x03,0x0B,
  87. 0x10,0xC7,0x3C,0xB0,0xC3,0x0C,0x30,0xC3,0x0C,0x30,0xC3,0x0C,0xFF,0xF0,
  88. // '2'
  89. 0x32,0x03,0x0B,0x12,0x02,0x0F,
  90. 0x1F,0x07,0xFB,0xC3,0xE0,0x30,0x06,0x00,0xC0,0x38,0x0E,0x07,0x81,0xE0,0xF8,0x3C,0x07,0x01,0xC0,0x30,0x06,0x00,0xFF,0xDF,0xFC,
  91. // '3'
  92. 0x33,0x03,0x0B,0x12,0x02,0x0F,
  93. 0x1F,0x0F,0xF9,0xC3,0x80,0x30,0x06,0x00,0xC0,0x78,0x7E,0x0F,0x80,0x78,0x03,0x80,0x30,0x06,0x00,0xF0,0x1F,0x0E,0x7F,0x83,0xE0,
  94. // '4'
  95. 0x34,0x03,0x0D,0x12,0x02,0x0F,
  96. 0x01,0xC0,0x0E,0x00,0xF0,0x0F,0x80,0x6C,0x07,0x60,0x33,0x03,0x98,0x38,0xC1,0x86,0x1C,0x31,0xFF,0xFF,0xFF,0x80,0x60,0x03,0x00,0x18,0x00,0xC0,0x06,0x00,
  97. // '5'
  98. 0x35,0x02,0x0C,0x13,0x02,0x0F,
  99. 0x00,0x0F,0xFE,0xFF,0xE6,0x00,0x60,0x0E,0x00,0xEF,0x8F,0xFC,0xF8,0x6E,0x07,0xC0,0x30,0x03,0x00,0x30,0x03,0x00,0x7C,0x06,0xE1,0xE7,0xFC,0x3F,0x00,
  100. // '6'
  101. 0x36,0x03,0x0C,0x12,0x01,0x0F,
  102. 0x03,0x00,0x70,0x0E,0x01,0xC0,0x38,0x03,0x00,0x60,0x06,0xF8,0xFF,0xEE,0x0E,0xC0,0x3C,0x03,0xC0,0x3C,0x03,0x60,0x77,0x0E,0x3F,0xC1,0xF8,
  103. // '7'
  104. 0x37,0x02,0x0D,0x13,0x01,0x0F,
  105. 0x00,0x07,0xFF,0xFF,0xFE,0x00,0xE0,0x0E,0x00,0x60,0x06,0x00,0x30,0x03,0x80,0x18,0x01,0xC0,0x0C,0x00,0x60,0x07,0x00,0x30,0x03,0x80,0x18,0x00,0xC0,0x04,0x00,
  106. // '8'
  107. 0x38,0x02,0x0C,0x13,0x01,0x0F,
  108. 0x00,0x00,0xFC,0x3F,0xE3,0x07,0x60,0x36,0x03,0x60,0x37,0x8F,0x3F,0xE1,0xFE,0x38,0xE7,0x07,0x60,0x36,0x03,0x60,0x36,0x03,0x30,0x63,0xFE,0x0F,0x80,
  109. // '9'
  110. 0x39,0x03,0x0D,0x13,0x01,0x0F,
  111. 0x0F,0x01,0xFE,0x1C,0x38,0xC0,0xCC,0x07,0x60,0x1B,0x00,0xD8,0x06,0xE0,0x73,0x87,0x8F,0xF8,0x3E,0xC0,0x0E,0x00,0x60,0x07,0x00,0xF0,0x1F,0x03,0xE0,0x1C,0x00,
  112. // ':'
  113. 0x3A,0x09,0x03,0x0B,0x02,0x07,
  114. 0xFF,0x80,0x00,0xFF,0x80,
  115. // ';'
  116. 0x3B,0x09,0x04,0x0E,0x02,0x07,
  117. 0xEE,0xE0,0x00,0x00,0x03,0x7E,0xCC,
  118. // '<'
  119. 0x3C,0x09,0x07,0x0A,0x01,0x09,
  120. 0x06,0x1C,0x71,0xC7,0x1E,0x1E,0x0E,0x0E,0x0C,
  121. // '='
  122. 0x3D,0x0A,0x09,0x09,0x01,0x0C,
  123. 0xFF,0xFF,0xC0,0x00,0x00,0x00,0x03,0xFF,0xFF,0x00,0x00,
  124. // '>'
  125. 0x3E,0x08,0x08,0x0B,0x01,0x0A,
  126. 0x60,0x70,0x38,0x3C,0x1E,0x0F,0x06,0x0C,0x38,0x70,0xC0,
  127. // '?'
  128. 0x3F,0x04,0x0B,0x12,0x01,0x0D,
  129. 0x1E,0x0F,0xE3,0xC6,0x60,0x60,0x06,0x00,0xC0,0x18,0x07,0x01,0xE0,0xF8,0x3E,0x0F,0x01,0x80,0x00,0x00,0x01,0x80,0x30,0x06,0x00,
  130. // '@'
  131. 0x40,0x02,0x13,0x14,0x01,0x16,
  132. 0x03,0xF8,0x01,0xFF,0xC0,0x78,0x3C,0x1C,0x01,0xC3,0x00,0x1C,0xC1,0xC1,0x98,0xF8,0x1E,0x3C,0x03,0xC6,0x30,0x79,0x8E,0x0F,0x31,0xC1,0xE6,0x78,0x6C,0x7F,0xFC,0xC7,0x3E,0x18,0x00,0x01,0x80,0x00,0x38,0x00,0x03,0xC0,0xE0,0x1F,0xFC,0x00,0xFE,0x00,
  133. // 'A'
  134. 0x41,0x03,0x0E,0x12,0x01,0x11,
  135. 0x00,0x80,0x07,0x00,0x1C,0x00,0xF0,0x03,0xC0,0x1D,0x80,0x76,0x03,0x98,0x0E,0x20,0x70,0xC1,0xFF,0x0F,0xFC,0x7C,0x19,0xC0,0x67,0x01,0xB8,0x07,0xE0,0x0F,0x00,0x30,
  136. // 'B'
  137. 0x42,0x03,0x0B,0x13,0x03,0x0F,
  138. 0x7C,0x1F,0xE3,0x0E,0x60,0xEC,0x0D,0x81,0xB0,0x36,0x0E,0xC3,0x9F,0xE3,0xFC,0x61,0xEC,0x0F,0x80,0xF0,0x1E,0x0E,0xC7,0xDF,0xE3,0xF0,0x00,
  139. // 'C'
  140. 0x43,0x03,0x0D,0x12,0x01,0x0E,
  141. 0x01,0xF8,0x3F,0xC3,0xC6,0x38,0x31,0x80,0x1C,0x01,0xC0,0x0C,0x00,0x60,0x06,0x00,0x30,0x01,0x80,0x0C,0x00,0x60,0x19,0x81,0xCE,0x3C,0x3F,0xC0,0xF8,0x00,
  142. // 'D'
  143. 0x44,0x03,0x0D,0x12,0x02,0x11,
  144. 0x60,0x07,0xC0,0x37,0x81,0x8F,0x0C,0x1C,0x60,0x73,0x01,0xD8,0x06,0xC0,0x1E,0x00,0xF0,0x07,0x80,0x3C,0x01,0xE0,0x1B,0x01,0xDC,0x1C,0xFF,0xC1,0xF8,0x00,
  145. // 'E'
  146. 0x45,0x03,0x0D,0x12,0x02,0x0F,
  147. 0xFF,0xF7,0xFF,0xF0,0x01,0x80,0x0C,0x00,0x60,0x03,0x00,0x18,0x7E,0xFF,0xF7,0xE0,0x30,0x01,0x80,0x0C,0x00,0x60,0x03,0x00,0x18,0x00,0x7F,0xF1,0xFF,0x80,
  148. // 'F'
  149. 0x46,0x03,0x0C,0x12,0x02,0x0F,
  150. 0xFF,0xCF,0xFF,0xC0,0x7C,0x00,0xC0,0x0C,0x00,0xC0,0x0D,0xFE,0xFF,0xEF,0x00,0xC0,0x0C,0x00,0xC0,0x0C,0x00,0xC0,0x0C,0x00,0xC0,0x0C,0x00,
  151. // 'G'
  152. 0x47,0x03,0x0F,0x12,0x01,0x10,
  153. 0x03,0xE0,0x0F,0xF0,0x38,0xE0,0xE0,0x03,0x80,0x06,0x00,0x18,0x00,0x30,0x00,0x61,0xFF,0x9F,0xFF,0x3C,0x36,0x00,0x6C,0x01,0x98,0x07,0x30,0x0C,0x30,0x70,0x7F,0xC0,0x3E,0x00,
  154. // 'H'
  155. 0x48,0x03,0x0F,0x12,0x02,0x12,
  156. 0xC0,0x03,0x80,0x0F,0x00,0x1E,0x00,0x3C,0x00,0x78,0x00,0xF0,0x01,0xE0,0x03,0xC0,0xFF,0xFF,0xFF,0xFC,0x1E,0x00,0x3C,0x00,0x78,0x00,0xF0,0x01,0xE0,0x03,0xC0,0x07,0x80,0x0C,
  157. // 'I'
  158. 0x49,0x03,0x0C,0x12,0x00,0x0D,
  159. 0xFF,0xEF,0xFF,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x60,0xFF,0xFF,0xFF,
  160. // 'J'
  161. 0x4A,0x03,0x0E,0x12,0x01,0x10,
  162. 0x1F,0xFC,0x7F,0xF0,0x0C,0x00,0x30,0x00,0xC0,0x03,0x00,0x0C,0x00,0x30,0x00,0xC0,0x03,0x00,0x0C,0x00,0x30,0xC0,0xC3,0x06,0x0E,0x18,0x1C,0x60,0x3F,0x80,0x3C,0x00,
  163. // 'K'
  164. 0x4B,0x03,0x0C,0x12,0x03,0x0F,
  165. 0xC0,0x6C,0x0E,0xC1,0xCC,0x38,0xC7,0x0C,0xE0,0xDC,0x0F,0x80,0xF0,0x0F,0x00,0xF8,0x0F,0xC0,0xDE,0x0C,0xF0,0xC7,0x8C,0x1E,0xC0,0xFC,0x07,
  166. // 'L'
  167. 0x4C,0x03,0x0B,0x12,0x01,0x0D,
  168. 0xC0,0x18,0x03,0x00,0x60,0x0C,0x01,0x80,0x30,0x06,0x00,0xC0,0x18,0x03,0x00,0x60,0x0C,0x01,0x80,0x30,0x06,0x00,0xFF,0xEF,0xFC,
  169. // 'M'
  170. 0x4D,0x03,0x13,0x13,0x01,0x15,
  171. 0x0C,0x06,0x01,0x80,0xC0,0x78,0x3C,0x0F,0x07,0x81,0xE0,0xF0,0x3C,0x1E,0x07,0x83,0xC1,0xD8,0xEC,0x3B,0x1D,0x87,0x63,0xB0,0xCC,0xE6,0x38,0xDC,0x47,0x1B,0x8C,0xE3,0xF1,0xB8,0x3C,0x37,0x07,0x86,0xE0,0xF0,0x7C,0x1E,0x0F,0x01,0x81,0x80,
  172. // 'N'
  173. 0x4E,0x03,0x11,0x12,0x01,0x13,
  174. 0x60,0x01,0x38,0x00,0xDE,0x00,0x6F,0x00,0x37,0xC0,0x1B,0x70,0x0D,0x9C,0x06,0xCF,0x03,0x63,0x81,0xB0,0xE0,0xD8,0x38,0x6C,0x0E,0x36,0x03,0x9B,0x00,0xED,0x80,0x3E,0xC0,0x0F,0x60,0x03,0xB0,0x00,0xC0,
  175. // 'O'
  176. 0x4F,0x03,0x11,0x12,0x01,0x13,
  177. 0x01,0xF8,0x03,0xFF,0x07,0x81,0xC3,0x00,0x63,0x00,0x1B,0x80,0x0D,0x80,0x07,0xC0,0x03,0xC0,0x01,0xE0,0x00,0xF0,0x00,0xF8,0x00,0x6C,0x00,0x33,0x00,0x31,0xC0,0x38,0x70,0x78,0x1F,0xF8,0x03,0xF0,0x00,
  178. // 'P'
  179. 0x50,0x03,0x0B,0x12,0x01,0x0D,
  180. 0xFE,0x1F,0xF3,0x0F,0x60,0x7C,0x07,0x80,0xF0,0x1E,0x06,0xC3,0xDF,0xF3,0xF8,0x60,0x0C,0x01,0x80,0x30,0x06,0x00,0xC0,0x18,0x00,
  181. // 'Q'
  182. 0x51,0x03,0x14,0x17,0x01,0x15,
  183. 0x01,0xF8,0x00,0x7F,0xE0,0x1E,0x07,0x03,0x80,0x18,0x30,0x01,0xC6,0x00,0x0C,0x60,0x00,0xEC,0x00,0x06,0xC0,0x00,0x6C,0x00,0x06,0xC0,0x00,0x6C,0x00,0x06,0x60,0xE0,0xE7,0x0F,0x0C,0x38,0x79,0xC1,0xC3,0xF8,0x0F,0xFF,0x00,0x3F,0x78,0x00,0x03,0xC0,0x00,0x1E,0x00,0x00,0xF0,0x00,0x07,0x00,0x00,0x20,
  184. // 'R'
  185. 0x52,0x02,0x0D,0x13,0x01,0x0F,
  186. 0x00,0x03,0xE0,0x3F,0xC1,0x8F,0x0C,0x0E,0x60,0x33,0x00,0xD8,0x06,0xC0,0x36,0x03,0xB0,0x79,0xFF,0x8F,0xF0,0x7F,0x83,0x1F,0x18,0x3C,0xC0,0xF6,0x01,0xF0,0x06,
  187. // 'S'
  188. 0x53,0x03,0x0F,0x13,0x01,0x11,
  189. 0x01,0xF0,0x07,0xF8,0x18,0x70,0x60,0x01,0x80,0x03,0x00,0x06,0x00,0x0E,0x00,0x0F,0xF0,0x07,0xF0,0x00,0xF0,0x00,0x70,0x00,0x60,0x00,0xD8,0x01,0xB8,0x06,0x78,0x3C,0x7F,0xE0,0x3F,0x00,
  190. // 'T'
  191. 0x54,0x02,0x0F,0x13,0x01,0x10,
  192. 0x00,0x01,0xFF,0xFD,0xFF,0xF8,0x18,0x00,0x30,0x00,0x60,0x00,0xC0,0x01,0x80,0x03,0x00,0x06,0x00,0x0C,0x00,0x18,0x00,0x30,0x00,0x60,0x00,0xC0,0x01,0x80,0x03,0x00,0x06,0x00,0x0C,0x00,
  193. // 'U'
  194. 0x55,0x03,0x11,0x12,0x01,0x12,
  195. 0x60,0x03,0x30,0x01,0x98,0x00,0xCC,0x00,0x66,0x00,0x33,0x00,0x19,0x80,0x0C,0xC0,0x06,0x60,0x03,0x30,0x01,0x98,0x01,0xCC,0x00,0xC7,0x00,0x61,0x80,0x70,0xE0,0x30,0x38,0x38,0x0F,0xF8,0x01,0xF0,0x00,
  196. // 'V'
  197. 0x56,0x03,0x0E,0x13,0x02,0x10,
  198. 0x80,0x0F,0x00,0x3C,0x01,0xB0,0x06,0x60,0x31,0x80,0xC6,0x03,0x0C,0x18,0x30,0x60,0xC1,0x81,0x8C,0x06,0x30,0x0D,0x80,0x36,0x00,0xF8,0x01,0xC0,0x07,0x00,0x08,0x00,0x00,0x00,
  199. // 'W'
  200. 0x57,0x03,0x17,0x12,0x01,0x19,
  201. 0xC0,0x20,0x0F,0xC0,0x60,0x19,0x81,0xC0,0x23,0x03,0x80,0xC6,0x07,0x01,0x86,0x1E,0x03,0x0C,0x36,0x0C,0x18,0x6C,0x18,0x11,0x98,0x60,0x33,0x30,0xC0,0x66,0x61,0x80,0xD8,0x66,0x01,0xB0,0xCC,0x01,0xC1,0xB0,0x03,0x83,0x60,0x07,0x07,0x80,0x0C,0x07,0x00,0x08,0x0E,0x00,
  202. // 'X'
  203. 0x58,0x03,0x10,0x12,0x01,0x11,
  204. 0x60,0x03,0x70,0x07,0x38,0x0E,0x1C,0x1C,0x0C,0x1C,0x0E,0x38,0x07,0x70,0x03,0xE0,0x01,0xC0,0x03,0xC0,0x07,0xE0,0x07,0x70,0x0E,0x38,0x1C,0x18,0x38,0x1C,0x70,0x0E,0xE0,0x07,0xC0,0x03,
  205. // 'Y'
  206. 0x59,0x03,0x0F,0x13,0x00,0x10,
  207. 0x60,0x06,0xE0,0x1D,0xC0,0x31,0xC0,0xE1,0xC1,0x83,0x83,0x03,0x8C,0x07,0x18,0x07,0x70,0x0F,0xC0,0x0F,0x80,0x0F,0x00,0x1C,0x00,0x38,0x00,0x60,0x01,0xC0,0x03,0x00,0x06,0x00,0x08,0x00,
  208. // 'Z'
  209. 0x5A,0x03,0x0F,0x12,0x01,0x11,
  210. 0xFF,0xFF,0xFF,0xFC,0x00,0xF0,0x03,0x80,0x0E,0x00,0x3C,0x00,0xF0,0x03,0xC0,0x07,0x00,0x1E,0x00,0x38,0x00,0xE0,0x03,0xC0,0x07,0x00,0x1C,0x00,0x70,0x00,0xFF,0xFF,0xFF,0xFC,
  211. // '['
  212. 0x5B,0x01,0x07,0x1A,0x01,0x09,
  213. 0x00,0xFD,0xFB,0x06,0x0C,0x18,0x30,0x60,0xC1,0x83,0x06,0x0C,0x18,0x30,0x60,0xC1,0x83,0x06,0x0C,0x18,0x3F,0x7E,0x00,
  214. // '\'
  215. 0x5C,0x03,0x0B,0x14,0x02,0x0D,
  216. 0xC0,0x18,0x01,0x80,0x30,0x03,0x00,0x60,0x06,0x00,0xC0,0x0C,0x01,0x80,0x18,0x03,0x00,0x20,0x06,0x00,0xC0,0x0C,0x01,0x80,0x18,0x03,0x00,0x60,
  217. // ']'
  218. 0x5D,0x01,0x07,0x1A,0x02,0x09,
  219. 0x01,0xFB,0xF0,0x60,0xC1,0x83,0x06,0x0C,0x18,0x30,0x60,0xC1,0x83,0x06,0x0C,0x18,0x30,0x60,0xC1,0x83,0x7E,0xFC,0x00,
  220. // '^'
  221. 0x5E,0x02,0x0A,0x06,0x02,0x0E,
  222. 0x0C,0x07,0x83,0xF1,0xCE,0xE1,0xF0,0x30,
  223. // '_'
  224. 0x5F,0x16,0x0F,0x04,0x00,0x0F,
  225. 0x00,0x01,0xFF,0xFF,0xFF,0xF8,0x00,0x00,
  226. // '`'
  227. 0x60,0x02,0x05,0x06,0x02,0x0D,
  228. 0xC7,0x1C,0x63,0x8C,
  229. // 'a'
  230. 0x61,0x09,0x0B,0x0C,0x01,0x0C,
  231. 0x0F,0x87,0xF9,0xE3,0x30,0x6E,0x0D,0x81,0xB0,0x36,0x06,0xC0,0xCC,0x39,0xFF,0x9F,0x30,
  232. // 'b'
  233. 0x62,0x02,0x0C,0x13,0x01,0x0E,
  234. 0x60,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x78,0x7F,0xC7,0x8E,0x60,0x76,0x03,0x60,0x36,0x03,0x60,0x36,0x06,0x70,0xE7,0xFC,0x7F,0x00,
  235. // 'c'
  236. 0x63,0x09,0x0A,0x0C,0x01,0x0C,
  237. 0x0F,0x07,0xF3,0x0D,0x80,0x60,0x30,0x0C,0x03,0x00,0xC0,0x1C,0x33,0xFC,0x7C,
  238. // 'd'
  239. 0x64,0x02,0x0C,0x13,0x01,0x0E,
  240. 0x00,0x20,0x06,0x00,0x60,0x06,0x00,0x60,0x06,0x00,0x61,0xF6,0x3F,0xE7,0x0E,0x60,0x6C,0x06,0xC0,0x6C,0x06,0xC0,0x6E,0x06,0x70,0xE3,0xFE,0x1F,0x60,
  241. // 'e'
  242. 0x65,0x09,0x0B,0x0C,0x01,0x0D,
  243. 0x1F,0x07,0xF9,0xC7,0x30,0xEC,0x79,0xBE,0x3E,0x07,0x00,0xC0,0x6E,0x1D,0xFF,0x0F,0x80,
  244. // 'f'
  245. 0x66,0x02,0x0A,0x14,0x01,0x0C,
  246. 0x03,0x83,0xE0,0xE0,0x70,0x18,0x06,0x01,0x83,0xFF,0xFF,0xC6,0x01,0x80,0x60,0x18,0x06,0x01,0x80,0x60,0x18,0x06,0x01,0x80,0x60,
  247. // 'g'
  248. 0x67,0x09,0x0A,0x13,0x02,0x0D,
  249. 0x0F,0x0F,0xF7,0x0D,0x83,0xC0,0xF0,0x3C,0x1F,0x07,0xC1,0xD8,0xF7,0xEC,0xF3,0x00,0xC0,0x30,0x18,0x06,0x03,0xBF,0xC7,0xE0,
  250. // 'h'
  251. 0x68,0x02,0x0B,0x13,0x01,0x0E,
  252. 0x60,0x0C,0x01,0x80,0x30,0x06,0x00,0xC0,0x18,0x03,0x1E,0x6F,0xEF,0x8D,0xE1,0xB8,0x36,0x06,0xC0,0xD8,0x1B,0x03,0x60,0x6C,0x0D,0x81,0x80,
  253. // 'i'
  254. 0x69,0x04,0x02,0x11,0x03,0x07,
  255. 0xF0,0x3F,0xFF,0xFF,0xC0,
  256. // 'j'
  257. 0x6A,0x04,0x08,0x18,0x00,0x0A,
  258. 0x03,0x03,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0xC3,0xE3,0x77,0x7E,0x1C,
  259. // 'k'
  260. 0x6B,0x03,0x0B,0x13,0x02,0x0E,
  261. 0xC0,0x18,0x03,0x00,0x60,0x0C,0x01,0x80,0x30,0x36,0x0E,0xC7,0x99,0xE3,0x70,0x7E,0x0F,0xE1,0xCE,0x30,0xE6,0x0E,0xC0,0xF8,0x08,0x00,0x00,
  262. // 'l'
  263. 0x6C,0x02,0x02,0x13,0x03,0x07,
  264. 0xFF,0xFF,0xFF,0xFF,0xFC,
  265. // 'm'
  266. 0x6D,0x09,0x10,0x0C,0x01,0x12,
  267. 0x67,0x3C,0x6F,0xFE,0x7D,0xEE,0x79,0x86,0x71,0x86,0x61,0x86,0x61,0x86,0x61,0x86,0x61,0x86,0x61,0x86,0x61,0x86,0x61,0x86,
  268. // 'n'
  269. 0x6E,0x09,0x0B,0x0C,0x01,0x0D,
  270. 0x63,0x8D,0xF9,0xF1,0xBC,0x37,0x06,0xE0,0xD8,0x1B,0x03,0x60,0x6C,0x0D,0x81,0xB0,0x30,
  271. // 'o'
  272. 0x6F,0x09,0x0C,0x0C,0x01,0x0D,
  273. 0x0F,0x81,0xFC,0x38,0xC3,0x06,0x60,0x66,0x06,0x60,0x66,0x06,0x60,0xE3,0x1C,0x1F,0x80,0xF0,
  274. // 'p'
  275. 0x70,0x08,0x0A,0x14,0x02,0x0D,
  276. 0xC0,0x33,0xCF,0xFB,0xC6,0xC0,0xF0,0x3C,0x0F,0x03,0xC0,0xF0,0x7C,0x1B,0xFC,0xFE,0x30,0x0C,0x03,0x00,0xC0,0x30,0x0C,0x03,0x00,
  277. // 'q'
  278. 0x71,0x08,0x0A,0x14,0x01,0x0C,
  279. 0x00,0x03,0xF3,0xFD,0xE3,0x60,0xF8,0x3C,0x0F,0x03,0xC0,0xF0,0x76,0x1D,0xFF,0x1F,0x80,0x60,0x18,0x06,0x01,0x80,0x60,0x18,0x06,
  280. // 'r'
  281. 0x72,0x09,0x09,0x0C,0x01,0x0B,
  282. 0xCF,0x6F,0xFE,0x7C,0x3C,0x1E,0x03,0x01,0x80,0xC0,0x60,0x30,0x18,0x00,
  283. // 's'
  284. 0x73,0x09,0x09,0x0C,0x02,0x0C,
  285. 0x03,0x9F,0xDE,0x7C,0x3E,0x07,0xF0,0xFC,0x07,0x01,0xE0,0xFF,0xC7,0xC0,
  286. // 't'
  287. 0x74,0x05,0x0A,0x10,0x00,0x0A,
  288. 0x0C,0x03,0x00,0xC0,0x30,0xFF,0xFF,0xF0,0xC0,0x30,0x0C,0x03,0x00,0xC0,0x30,0x0C,0x03,0x00,0xC0,0x30,
  289. // 'u'
  290. 0x75,0x09,0x0B,0x0C,0x01,0x0C,
  291. 0xC0,0xD8,0x1B,0x03,0x60,0x6C,0x0D,0x81,0xB0,0x36,0x06,0xC0,0xD8,0x19,0xFF,0x1F,0x60,
  292. // 'v'
  293. 0x76,0x09,0x0B,0x0D,0x01,0x0C,
  294. 0xC0,0x78,0x1F,0x83,0x30,0x67,0x1C,0x63,0x0C,0xE0,0xD8,0x1E,0x03,0xC0,0x30,0x06,0x00,0x00,
  295. // 'w'
  296. 0x77,0x09,0x0F,0x0D,0x01,0x11,
  297. 0xC1,0x87,0x83,0x0F,0x0E,0x1E,0x1C,0x66,0x7C,0xCC,0xD9,0x99,0x36,0x36,0x6C,0x7C,0xD8,0x70,0xE0,0xE1,0xC0,0x83,0x80,0x00,0x00,
  298. // 'x'
  299. 0x78,0x09,0x0D,0x0D,0x01,0x0E,
  300. 0x60,0x1B,0x81,0xCE,0x1C,0x39,0xC0,0xFC,0x03,0xC0,0x3C,0x03,0xF0,0x39,0xC3,0x87,0x38,0x1D,0x80,0x70,0x01,0x80,
  301. // 'y'
  302. 0x79,0x09,0x0C,0x13,0x00,0x0D,
  303. 0xC0,0x3E,0x07,0x60,0x67,0x0C,0x30,0xC3,0x98,0x19,0x81,0xD8,0x0F,0x00,0xF0,0x06,0x00,0x60,0x0C,0x00,0xC0,0x18,0x01,0x80,0x30,0x03,0x00,0x30,0x00,
  304. // 'z'
  305. 0x7A,0x09,0x0B,0x0C,0x01,0x0D,
  306. 0xFF,0xFF,0xFC,0x07,0x00,0xC0,0x30,0x0C,0x03,0x80,0xE0,0x38,0x0E,0x03,0xFF,0xFF,0xF0,
  307. // '{'
  308. 0x7B,0x02,0x08,0x18,0x01,0x09,
  309. 0x0F,0x1F,0x38,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x60,0xE0,0xE0,0x70,0x30,0x30,0x30,0x30,0x30,0x38,0x18,0x1F,0x07,
  310. // '|'
  311. 0x7C,0x01,0x02,0x18,0x04,0x0A,
  312. 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
  313. // '}'
  314. 0x7D,0x02,0x08,0x18,0x01,0x09,
  315. 0x70,0xF8,0x1C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x06,0x07,0x07,0x0E,0x0C,0x0C,0x0C,0x0C,0x0C,0x1C,0x18,0xF8,0xE0,
  316. // '~'
  317. 0x7E,0x0B,0x0C,0x05,0x01,0x0E,
  318. 0x38,0x37,0xE3,0xE7,0x7C,0x3E,0x01,0xC0,
  319. // Terminator
  320. 0xFF
  321. };