upload
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

wave.h 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. #include <avr/io.h>
  2. #include <avr/interrupt.h>
  3. #include <avr/pgmspace.h>
  4. #define SINE_LENGTH 2048
  5. const uint8_t sinewave[] PROGMEM= //2048 values
  6. {
  7. 0x80,0x80,0x80,0x81,0x81,0x81,0x82,0x82,
  8. 0x83,0x83,0x83,0x84,0x84,0x85,0x85,0x85,
  9. 0x86,0x86,0x87,0x87,0x87,0x88,0x88,0x88,
  10. 0x89,0x89,0x8a,0x8a,0x8a,0x8b,0x8b,0x8c,
  11. 0x8c,0x8c,0x8d,0x8d,0x8e,0x8e,0x8e,0x8f,
  12. 0x8f,0x8f,0x90,0x90,0x91,0x91,0x91,0x92,
  13. 0x92,0x93,0x93,0x93,0x94,0x94,0x95,0x95,
  14. 0x95,0x96,0x96,0x96,0x97,0x97,0x98,0x98,
  15. 0x98,0x99,0x99,0x9a,0x9a,0x9a,0x9b,0x9b,
  16. 0x9b,0x9c,0x9c,0x9d,0x9d,0x9d,0x9e,0x9e,
  17. 0x9e,0x9f,0x9f,0xa0,0xa0,0xa0,0xa1,0xa1,
  18. 0xa2,0xa2,0xa2,0xa3,0xa3,0xa3,0xa4,0xa4,
  19. 0xa5,0xa5,0xa5,0xa6,0xa6,0xa6,0xa7,0xa7,
  20. 0xa7,0xa8,0xa8,0xa9,0xa9,0xa9,0xaa,0xaa,
  21. 0xaa,0xab,0xab,0xac,0xac,0xac,0xad,0xad,
  22. 0xad,0xae,0xae,0xae,0xaf,0xaf,0xb0,0xb0,
  23. 0xb0,0xb1,0xb1,0xb1,0xb2,0xb2,0xb2,0xb3,
  24. 0xb3,0xb4,0xb4,0xb4,0xb5,0xb5,0xb5,0xb6,
  25. 0xb6,0xb6,0xb7,0xb7,0xb7,0xb8,0xb8,0xb8,
  26. 0xb9,0xb9,0xba,0xba,0xba,0xbb,0xbb,0xbb,
  27. 0xbc,0xbc,0xbc,0xbd,0xbd,0xbd,0xbe,0xbe,
  28. 0xbe,0xbf,0xbf,0xbf,0xc0,0xc0,0xc0,0xc1,
  29. 0xc1,0xc1,0xc2,0xc2,0xc2,0xc3,0xc3,0xc3,
  30. 0xc4,0xc4,0xc4,0xc5,0xc5,0xc5,0xc6,0xc6,
  31. 0xc6,0xc7,0xc7,0xc7,0xc8,0xc8,0xc8,0xc9,
  32. 0xc9,0xc9,0xca,0xca,0xca,0xcb,0xcb,0xcb,
  33. 0xcb,0xcc,0xcc,0xcc,0xcd,0xcd,0xcd,0xce,
  34. 0xce,0xce,0xcf,0xcf,0xcf,0xcf,0xd0,0xd0,
  35. 0xd0,0xd1,0xd1,0xd1,0xd2,0xd2,0xd2,0xd2,
  36. 0xd3,0xd3,0xd3,0xd4,0xd4,0xd4,0xd5,0xd5,
  37. 0xd5,0xd5,0xd6,0xd6,0xd6,0xd7,0xd7,0xd7,
  38. 0xd7,0xd8,0xd8,0xd8,0xd9,0xd9,0xd9,0xd9,
  39. 0xda,0xda,0xda,0xda,0xdb,0xdb,0xdb,0xdc,
  40. 0xdc,0xdc,0xdc,0xdd,0xdd,0xdd,0xdd,0xde,
  41. 0xde,0xde,0xde,0xdf,0xdf,0xdf,0xe0,0xe0,
  42. 0xe0,0xe0,0xe1,0xe1,0xe1,0xe1,0xe2,0xe2,
  43. 0xe2,0xe2,0xe3,0xe3,0xe3,0xe3,0xe4,0xe4,
  44. 0xe4,0xe4,0xe4,0xe5,0xe5,0xe5,0xe5,0xe6,
  45. 0xe6,0xe6,0xe6,0xe7,0xe7,0xe7,0xe7,0xe8,
  46. 0xe8,0xe8,0xe8,0xe8,0xe9,0xe9,0xe9,0xe9,
  47. 0xea,0xea,0xea,0xea,0xea,0xeb,0xeb,0xeb,
  48. 0xeb,0xeb,0xec,0xec,0xec,0xec,0xec,0xed,
  49. 0xed,0xed,0xed,0xed,0xee,0xee,0xee,0xee,
  50. 0xee,0xef,0xef,0xef,0xef,0xef,0xf0,0xf0,
  51. 0xf0,0xf0,0xf0,0xf0,0xf1,0xf1,0xf1,0xf1,
  52. 0xf1,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2,0xf3,
  53. 0xf3,0xf3,0xf3,0xf3,0xf3,0xf4,0xf4,0xf4,
  54. 0xf4,0xf4,0xf4,0xf5,0xf5,0xf5,0xf5,0xf5,
  55. 0xf5,0xf5,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,
  56. 0xf6,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,
  57. 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
  58. 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,
  59. 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,
  60. 0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,
  61. 0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,
  62. 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
  63. 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,
  64. 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,
  65. 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
  66. 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
  67. 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,
  68. 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
  69. 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
  70. 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
  71. 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
  72. 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
  73. 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
  74. 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,
  75. 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
  76. 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
  77. 0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,
  78. 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,
  79. 0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
  80. 0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,
  81. 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,
  82. 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,
  83. 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,
  84. 0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
  85. 0xf8,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,
  86. 0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf5,
  87. 0xf5,0xf5,0xf5,0xf5,0xf5,0xf5,0xf4,0xf4,
  88. 0xf4,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf3,
  89. 0xf3,0xf3,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2,
  90. 0xf1,0xf1,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,
  91. 0xf0,0xf0,0xf0,0xef,0xef,0xef,0xef,0xef,
  92. 0xee,0xee,0xee,0xee,0xee,0xed,0xed,0xed,
  93. 0xed,0xed,0xec,0xec,0xec,0xec,0xec,0xeb,
  94. 0xeb,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xea,
  95. 0xea,0xe9,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,
  96. 0xe8,0xe8,0xe7,0xe7,0xe7,0xe7,0xe6,0xe6,
  97. 0xe6,0xe6,0xe5,0xe5,0xe5,0xe5,0xe4,0xe4,
  98. 0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe3,0xe2,
  99. 0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe1,0xe0,
  100. 0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,
  101. 0xde,0xde,0xdd,0xdd,0xdd,0xdd,0xdc,0xdc,
  102. 0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,
  103. 0xda,0xd9,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,
  104. 0xd7,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,
  105. 0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3,
  106. 0xd3,0xd2,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,
  107. 0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xcf,0xce,
  108. 0xce,0xce,0xcd,0xcd,0xcd,0xcc,0xcc,0xcc,
  109. 0xcb,0xcb,0xcb,0xcb,0xca,0xca,0xca,0xc9,
  110. 0xc9,0xc9,0xc8,0xc8,0xc8,0xc7,0xc7,0xc7,
  111. 0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc4,0xc4,
  112. 0xc4,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc1,
  113. 0xc1,0xc1,0xc0,0xc0,0xc0,0xbf,0xbf,0xbf,
  114. 0xbe,0xbe,0xbe,0xbd,0xbd,0xbd,0xbc,0xbc,
  115. 0xbc,0xbb,0xbb,0xbb,0xba,0xba,0xba,0xb9,
  116. 0xb9,0xb8,0xb8,0xb8,0xb7,0xb7,0xb7,0xb6,
  117. 0xb6,0xb6,0xb5,0xb5,0xb5,0xb4,0xb4,0xb4,
  118. 0xb3,0xb3,0xb2,0xb2,0xb2,0xb1,0xb1,0xb1,
  119. 0xb0,0xb0,0xb0,0xaf,0xaf,0xae,0xae,0xae,
  120. 0xad,0xad,0xad,0xac,0xac,0xac,0xab,0xab,
  121. 0xaa,0xaa,0xaa,0xa9,0xa9,0xa9,0xa8,0xa8,
  122. 0xa7,0xa7,0xa7,0xa6,0xa6,0xa6,0xa5,0xa5,
  123. 0xa5,0xa4,0xa4,0xa3,0xa3,0xa3,0xa2,0xa2,
  124. 0xa2,0xa1,0xa1,0xa0,0xa0,0xa0,0x9f,0x9f,
  125. 0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0x9c,0x9c,
  126. 0x9b,0x9b,0x9b,0x9a,0x9a,0x9a,0x99,0x99,
  127. 0x98,0x98,0x98,0x97,0x97,0x96,0x96,0x96,
  128. 0x95,0x95,0x95,0x94,0x94,0x93,0x93,0x93,
  129. 0x92,0x92,0x91,0x91,0x91,0x90,0x90,0x8f,
  130. 0x8f,0x8f,0x8e,0x8e,0x8e,0x8d,0x8d,0x8c,
  131. 0x8c,0x8c,0x8b,0x8b,0x8a,0x8a,0x8a,0x89,
  132. 0x89,0x88,0x88,0x88,0x87,0x87,0x87,0x86,
  133. 0x86,0x85,0x85,0x85,0x84,0x84,0x83,0x83,
  134. 0x83,0x82,0x82,0x81,0x81,0x81,0x80,0x80,
  135. 0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7d,0x7d,
  136. 0x7c,0x7c,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,
  137. 0x79,0x79,0x78,0x78,0x78,0x77,0x77,0x77,
  138. 0x76,0x76,0x75,0x75,0x75,0x74,0x74,0x73,
  139. 0x73,0x73,0x72,0x72,0x71,0x71,0x71,0x70,
  140. 0x70,0x70,0x6f,0x6f,0x6e,0x6e,0x6e,0x6d,
  141. 0x6d,0x6c,0x6c,0x6c,0x6b,0x6b,0x6a,0x6a,
  142. 0x6a,0x69,0x69,0x69,0x68,0x68,0x67,0x67,
  143. 0x67,0x66,0x66,0x65,0x65,0x65,0x64,0x64,
  144. 0x64,0x63,0x63,0x62,0x62,0x62,0x61,0x61,
  145. 0x61,0x60,0x60,0x5f,0x5f,0x5f,0x5e,0x5e,
  146. 0x5d,0x5d,0x5d,0x5c,0x5c,0x5c,0x5b,0x5b,
  147. 0x5a,0x5a,0x5a,0x59,0x59,0x59,0x58,0x58,
  148. 0x58,0x57,0x57,0x56,0x56,0x56,0x55,0x55,
  149. 0x55,0x54,0x54,0x53,0x53,0x53,0x52,0x52,
  150. 0x52,0x51,0x51,0x51,0x50,0x50,0x4f,0x4f,
  151. 0x4f,0x4e,0x4e,0x4e,0x4d,0x4d,0x4d,0x4c,
  152. 0x4c,0x4b,0x4b,0x4b,0x4a,0x4a,0x4a,0x49,
  153. 0x49,0x49,0x48,0x48,0x48,0x47,0x47,0x47,
  154. 0x46,0x46,0x45,0x45,0x45,0x44,0x44,0x44,
  155. 0x43,0x43,0x43,0x42,0x42,0x42,0x41,0x41,
  156. 0x41,0x40,0x40,0x40,0x3f,0x3f,0x3f,0x3e,
  157. 0x3e,0x3e,0x3d,0x3d,0x3d,0x3c,0x3c,0x3c,
  158. 0x3b,0x3b,0x3b,0x3a,0x3a,0x3a,0x39,0x39,
  159. 0x39,0x38,0x38,0x38,0x37,0x37,0x37,0x36,
  160. 0x36,0x36,0x35,0x35,0x35,0x34,0x34,0x34,
  161. 0x34,0x33,0x33,0x33,0x32,0x32,0x32,0x31,
  162. 0x31,0x31,0x30,0x30,0x30,0x30,0x2f,0x2f,
  163. 0x2f,0x2e,0x2e,0x2e,0x2d,0x2d,0x2d,0x2d,
  164. 0x2c,0x2c,0x2c,0x2b,0x2b,0x2b,0x2a,0x2a,
  165. 0x2a,0x2a,0x29,0x29,0x29,0x28,0x28,0x28,
  166. 0x28,0x27,0x27,0x27,0x26,0x26,0x26,0x26,
  167. 0x25,0x25,0x25,0x25,0x24,0x24,0x24,0x23,
  168. 0x23,0x23,0x23,0x22,0x22,0x22,0x22,0x21,
  169. 0x21,0x21,0x21,0x20,0x20,0x20,0x1f,0x1f,
  170. 0x1f,0x1f,0x1e,0x1e,0x1e,0x1e,0x1d,0x1d,
  171. 0x1d,0x1d,0x1c,0x1c,0x1c,0x1c,0x1b,0x1b,
  172. 0x1b,0x1b,0x1b,0x1a,0x1a,0x1a,0x1a,0x19,
  173. 0x19,0x19,0x19,0x18,0x18,0x18,0x18,0x17,
  174. 0x17,0x17,0x17,0x17,0x16,0x16,0x16,0x16,
  175. 0x15,0x15,0x15,0x15,0x15,0x14,0x14,0x14,
  176. 0x14,0x14,0x13,0x13,0x13,0x13,0x13,0x12,
  177. 0x12,0x12,0x12,0x12,0x11,0x11,0x11,0x11,
  178. 0x11,0x10,0x10,0x10,0x10,0x10,0xf,0xf,
  179. 0xf,0xf,0xf,0xf,0xe,0xe,0xe,0xe,
  180. 0xe,0xd,0xd,0xd,0xd,0xd,0xd,0xc,
  181. 0xc,0xc,0xc,0xc,0xc,0xb,0xb,0xb,
  182. 0xb,0xb,0xb,0xa,0xa,0xa,0xa,0xa,
  183. 0xa,0xa,0x9,0x9,0x9,0x9,0x9,0x9,
  184. 0x9,0x8,0x8,0x8,0x8,0x8,0x8,0x8,
  185. 0x7,0x7,0x7,0x7,0x7,0x7,0x7,0x7,
  186. 0x6,0x6,0x6,0x6,0x6,0x6,0x6,0x6,
  187. 0x5,0x5,0x5,0x5,0x5,0x5,0x5,0x5,
  188. 0x5,0x5,0x4,0x4,0x4,0x4,0x4,0x4,
  189. 0x4,0x4,0x4,0x4,0x3,0x3,0x3,0x3,
  190. 0x3,0x3,0x3,0x3,0x3,0x3,0x3,0x3,
  191. 0x2,0x2,0x2,0x2,0x2,0x2,0x2,0x2,
  192. 0x2,0x2,0x2,0x2,0x2,0x2,0x1,0x1,
  193. 0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
  194. 0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
  195. 0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,
  196. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  197. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  198. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  199. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  200. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  201. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  202. 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,
  203. 0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
  204. 0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
  205. 0x1,0x1,0x1,0x2,0x2,0x2,0x2,0x2,
  206. 0x2,0x2,0x2,0x2,0x2,0x2,0x2,0x2,
  207. 0x2,0x3,0x3,0x3,0x3,0x3,0x3,0x3,
  208. 0x3,0x3,0x3,0x3,0x3,0x4,0x4,0x4,
  209. 0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x5,
  210. 0x5,0x5,0x5,0x5,0x5,0x5,0x5,0x5,
  211. 0x5,0x6,0x6,0x6,0x6,0x6,0x6,0x6,
  212. 0x6,0x7,0x7,0x7,0x7,0x7,0x7,0x7,
  213. 0x7,0x8,0x8,0x8,0x8,0x8,0x8,0x8,
  214. 0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xa,
  215. 0xa,0xa,0xa,0xa,0xa,0xa,0xb,0xb,
  216. 0xb,0xb,0xb,0xb,0xc,0xc,0xc,0xc,
  217. 0xc,0xc,0xd,0xd,0xd,0xd,0xd,0xd,
  218. 0xe,0xe,0xe,0xe,0xe,0xf,0xf,0xf,
  219. 0xf,0xf,0xf,0x10,0x10,0x10,0x10,0x10,
  220. 0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x12,
  221. 0x12,0x12,0x13,0x13,0x13,0x13,0x13,0x14,
  222. 0x14,0x14,0x14,0x14,0x15,0x15,0x15,0x15,
  223. 0x15,0x16,0x16,0x16,0x16,0x17,0x17,0x17,
  224. 0x17,0x17,0x18,0x18,0x18,0x18,0x19,0x19,
  225. 0x19,0x19,0x1a,0x1a,0x1a,0x1a,0x1b,0x1b,
  226. 0x1b,0x1b,0x1b,0x1c,0x1c,0x1c,0x1c,0x1d,
  227. 0x1d,0x1d,0x1d,0x1e,0x1e,0x1e,0x1e,0x1f,
  228. 0x1f,0x1f,0x1f,0x20,0x20,0x20,0x21,0x21,
  229. 0x21,0x21,0x22,0x22,0x22,0x22,0x23,0x23,
  230. 0x23,0x23,0x24,0x24,0x24,0x25,0x25,0x25,
  231. 0x25,0x26,0x26,0x26,0x26,0x27,0x27,0x27,
  232. 0x28,0x28,0x28,0x28,0x29,0x29,0x29,0x2a,
  233. 0x2a,0x2a,0x2a,0x2b,0x2b,0x2b,0x2c,0x2c,
  234. 0x2c,0x2d,0x2d,0x2d,0x2d,0x2e,0x2e,0x2e,
  235. 0x2f,0x2f,0x2f,0x30,0x30,0x30,0x30,0x31,
  236. 0x31,0x31,0x32,0x32,0x32,0x33,0x33,0x33,
  237. 0x34,0x34,0x34,0x34,0x35,0x35,0x35,0x36,
  238. 0x36,0x36,0x37,0x37,0x37,0x38,0x38,0x38,
  239. 0x39,0x39,0x39,0x3a,0x3a,0x3a,0x3b,0x3b,
  240. 0x3b,0x3c,0x3c,0x3c,0x3d,0x3d,0x3d,0x3e,
  241. 0x3e,0x3e,0x3f,0x3f,0x3f,0x40,0x40,0x40,
  242. 0x41,0x41,0x41,0x42,0x42,0x42,0x43,0x43,
  243. 0x43,0x44,0x44,0x44,0x45,0x45,0x45,0x46,
  244. 0x46,0x47,0x47,0x47,0x48,0x48,0x48,0x49,
  245. 0x49,0x49,0x4a,0x4a,0x4a,0x4b,0x4b,0x4b,
  246. 0x4c,0x4c,0x4d,0x4d,0x4d,0x4e,0x4e,0x4e,
  247. 0x4f,0x4f,0x4f,0x50,0x50,0x51,0x51,0x51,
  248. 0x52,0x52,0x52,0x53,0x53,0x53,0x54,0x54,
  249. 0x55,0x55,0x55,0x56,0x56,0x56,0x57,0x57,
  250. 0x58,0x58,0x58,0x59,0x59,0x59,0x5a,0x5a,
  251. 0x5a,0x5b,0x5b,0x5c,0x5c,0x5c,0x5d,0x5d,
  252. 0x5d,0x5e,0x5e,0x5f,0x5f,0x5f,0x60,0x60,
  253. 0x61,0x61,0x61,0x62,0x62,0x62,0x63,0x63,
  254. 0x64,0x64,0x64,0x65,0x65,0x65,0x66,0x66,
  255. 0x67,0x67,0x67,0x68,0x68,0x69,0x69,0x69,
  256. 0x6a,0x6a,0x6a,0x6b,0x6b,0x6c,0x6c,0x6c,
  257. 0x6d,0x6d,0x6e,0x6e,0x6e,0x6f,0x6f,0x70,
  258. 0x70,0x70,0x71,0x71,0x71,0x72,0x72,0x73,
  259. 0x73,0x73,0x74,0x74,0x75,0x75,0x75,0x76,
  260. 0x76,0x77,0x77,0x77,0x78,0x78,0x78,0x79,
  261. 0x79,0x7a,0x7a,0x7a,0x7b,0x7b,0x7c,0x7c,
  262. 0x7c,0x7d,0x7d,0x7e,0x7e,0x7e,0x7f,0x7f
  263. };