ESP8266 SHT21 sensor
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.

static.h 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. // !!DO NOT EDIT, AUTO-GENERATED FILE!!
  2. // Use convert-static.py to recreate this.
  3. #ifndef __STATIC_H__
  4. #define __STATIC_H__
  5. #define HTML_BEGIN "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"><title>ESP-Weather</title><script src=\"https://code.jquery.com/jquery-3.1.1.min.js\" integrity=\"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=\" crossorigin=\"anonymous\" defer></script><script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js\" integrity=\"sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa\" crossorigin=\"anonymous\" defer></script><script src=\"https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.bundle.min.js\" integrity=\"sha256-RASNMNlmRtIreeznffYMDUxBXcMRjijEaaGF/gxT6vw=\" crossorigin=\"anonymous\" defer></script><link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\"><link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"><script src=\"view.js\" defer></script><link rel=\"icon\" href=\"favicon.ico\" type=\"image/x-icon\"></head><body><script type=\"text/javascript\">"
  6. #define HTML_END "</script><div id=\"main-part\" class=\"container\"><div class=\"page-header\"><h2>ESP-Weather <small>v2</small></h2></div><div class=\"row\" id=\"contentDiv\"><div id=\"startDiv\" class=\"col-sm-12 col-md-12 col-lg-12\" style=\"display: none;\"><div class=\"panel panel-primary\"><div class=\"panel-heading\" id=\"listSensorsHeading\"></div><div class=\"panel-body\"><ul class=\"list-group\" id=\"listSensors\"></ul><div id=\"alertDiv\"></div><button class=\"btn btn-primary\" disabled=\"\" id=\"btnSubmit\"></button></div></div></div><div id=\"dataDiv\" class=\"col-sm-12 col-md-12 col-lg-12\" style=\"display: none;\"><div class=\"panel panel-primary\"><ul id=\"navbar\" class=\"nav nav-pills\"></ul><div class=\"panel-body\"><div id=\"contentPanel\"><div class=\"row\"><div class=\"col-sm-12 col-md-12 col-lg-6\"><div id=\"temperatureDiv\" class=\"embed-responsive embed-responsive-4by3\"><canvas id=\"temperatureChart\"></canvas></div></div><div class=\"col-sm-12 col-md-12 col-lg-6\"><div id=\"humidityDiv\" class=\"embed-responsive embed-responsive-4by3\"><canvas id=\"humidityChart\"></canvas></div></div></div></div></div></div></div></div></div><div class=\"footer\"><div class=\"container\"><p class=\"text-muted text-center\"> &copy; Copyright 2016 by Christian H&ouml;gerle and Thomas Buck <br><small><small><a href=\"https://github.com/xythobuz/ESP-Weather\"> ESP-Weather is free software! </a></small></small></p></div></div></body></html>"
  7. #define JS_FILE "textAvailableSensors = \"Available Sensors\";\ntextButtonNext = \"Continue\";\nbackTabName = '<span class=\"glyphicon glyphicon-step-backward\" aria-hidden=\"true\"></span>';\nhomeTabName = '<span class=\"glyphicon glyphicon-home\" aria-hidden=\"true\"></span>';\nsensorTabName = \"Sensor\";\nerrorMessage = \"Couldn't read sensor with IP: \";\nerrorTitle = \"Error: \";\ntemperatureLabel = 'Temperature [C]';\nhumidityLabel = 'Humidity [%RH]';\ntemperatureHeading = \"Temperature\";\nhumidityHeading = \"Humidity\";\nsingleChartTempColor = \"#337ab7\";\nsingleChartHumidColor = \"#337ab7\";\npreDefinedColors = Array(\n\"#337ab7\", \"#ff0000\", \"#00ff00\"\n);\nvar actTime = new Date();\nactTime = actTime.getHours() + \":\" + (actTime.getMinutes() < 10 ? '0':'') + actTime.getMinutes();\nvar arrSensor = Array(); var currentState = \"initial\"; \n$(document).ready(resizeAndRedraw);\n$(window).on('resize', resizeAndRedraw, false);\nfunction redraw(animate) {\nif (currentState === \"initial\") {\ninitialView();\n} else if (currentState === \"main\") {\ngenerateView(arrSensor, animate);\n} else {\nvar n = Math.floor(Number(currentState));\nif ((String(n) === currentState) && (n >= 0)) {\ngenerateGraph(false, arrSensor[(currentState - 1)], animate);\n} else {\nconsole.log(\"Invalid state: \" + currentState);\n}\n}\n}\nfunction resize() {\n$(\"canvas\").each(function(i, el) {\n$(el).attr({\n\"width\":$(el).parent().width(),\n\"height\":$(el).parent().outerHeight()\n});\n});\n}\nfunction resizeAndRedraw(animate) {\nresize();\nredraw(animate);\n}\nfunction initialView() {\n$('#startDiv').show();\n$('#dataDiv').hide();\n$('#btnSubmit').empty();\n$('#btnSubmit').html(textButtonNext);\n$('#listSensorsHeading').empty();\n$('#listSensorsHeading').html(textAvailableSensors + \" (0/\" + clients.length + \")\");\n$('#listSensors').empty();\narrSensor = Array();\nvar count = [0];\njQuery.each(clients, function(index, client) {\nwebSocket(client, \"2391\", count, clients.length);\n});\n$(\"#btnSubmit\").click(function(event) {\ncurrentState = \"main\";\nresizeAndRedraw(true);\n});\n}\nfunction webSocket(wsUri, wsPort, count, clientsCount) {\nwebsocket = new WebSocket(\"ws://\" + wsUri + \":\" + wsPort + \"/\");\nwebsocket.onopen = function(evt) {};\nwebsocket.onclose = function(evt) {};\nwebsocket.onmessage = function(evt) {\nvar jsonData = jQuery.parseJSON(evt.data);\ncount[0]++;\nvar sensor = {id: count[0], ip: wsUri, currentTemp: jsonData['T'], currentHum: jsonData['H']};\nvar arrEEPROM = Array();\njQuery.each(jsonData['EEPROM'], function(index, data) {\narrEEPROM.push(data);\n});\nsensor.arrEEPROM = arrEEPROM;\narrSensor.push(sensor);\n$('#listSensorsHeading').html(textAvailableSensors + \" (\" + sensor.id + \"/\" + clientsCount + \")\");\n$('#listSensors').append('<li class=\"list-group-item\">' +\n' Sensor ' + sensor.id +\n' | IP: ' + sensor.ip +\n' | Temperature: ' + sensor.currentTemp +\n' | Humidity: ' + sensor.currentHum +\n'</li>');\nif(count[0] == clientsCount) {\n$('#btnSubmit').prop(\"disabled\", false);\n}\n};\nwebsocket.onerror = function(evt) {\nif($('#websocketError').length ) {\n$('.alert-danger').append(errorMessage + wsUri + '<br>');\n} else {\n$('#alertDiv').append('<div class=\"alert alert-danger\" id=\"websocketError\">' +\n'<strong>' + errorTitle\n+ '</strong><br>' + errorMessage\n+ wsUri + '<br></div>');\n}\nconsole.log(\"WebSocket Error: \" + evt.data);\n};\n}\nfunction generateView(arrSensor, animation) {\n$('#startDiv').hide();\n$('#dataDiv').show();\n$('#navbar').empty();\n$('#navbar').append('<li><a id=\"backbut\" class=\"navtab\" data-toggle=\"tab\" href=\"#start\" aria-label=\"start page\">' + backTabName + '</a></li>');\n$('#navbar').append('<li class=\"active\"><a id=\"homebut\" class=\"navtab\" data-toggle=\"tab\" href=\"#home\">' + homeTabName + '</a></li>');\nif (arrSensor.length > 1) {\njQuery.each(arrSensor, function(index, sensor) {\n$('#navbar').append('<li><a id=\"sensbut\" class=\"navtab\" data-toggle=\"tab\" href=\"#' + sensor.id + '\">' + sensorTabName + ' ' + sensor.id + '</a></li>');\n});\n}\ngenerateGraph(true, arrSensor, animation);\n$(\"#backbut\").click(function(event) {\ncurrentState = \"initial\";\nredraw();\n});\n$(\"#homebut\").click(function(event) {\ngenerateGraph(true, arrSensor, true);\ncurrentState = \"main\";\n});\nif (arrSensor.length > 1) {\n$(\"#sensbut\").click(function(event) {\ngenerateGraph(false, arrSensor[(event.target.text.split(\" \")[1] - 1)], true);\ncurrentState = event.target.text.split(\" \")[1];\n});\n}\n}\nfunction generateGraph(flag, sensor, anim) {\nresize();\nif (flag) {\nvar length = 0;\njQuery.each(sensor, function(index, tmp) {\nif(length < tmp.arrEEPROM.length) {\nlength = tmp.arrEEPROM.length;\n}\n});\nvar labels = Array();\nactHour = actTime.split(\":\")[0];\nfor(var i = length; i > 0; i--) {\nlabels.unshift(actHour + \":00\");\nactHour = (actHour - 1).mod(24);\n}\nlabels.push(actTime);\nvar dataTemperature = Array();\nvar dataHumidity = Array();\nvar tmpDataTemperature = Array();\nvar tmpDataHumidity = Array();\njQuery.each(sensor, function(index, tmp) {\nfor (var i = 0; i < (length - tmp.arrEEPROM.length); i++) {\ntmpDataTemperature.push([]);\ntmpDataHumidity.push([]);\n}\njQuery.each(tmp.arrEEPROM, function(index, value) {\ntmpDataTemperature.push(value['T']);\ntmpDataHumidity.push(value['H']);\n});\ntmpDataTemperature.push(tmp.currentTemp);\ntmpDataHumidity.push(tmp.currentHum);\nvar lineColor = getColor(index);\ndataTemperature.push({label: sensorTabName + \" \" + tmp.id, data: tmpDataTemperature, fill: false,\nborderWidth: 3, borderColor : lineColor,});\ndataHumidity.push({label: sensorTabName + \" \" + tmp.id, data: tmpDataHumidity, fill: false,\nborderWidth: 3, borderColor : lineColor,});\ntmpDataTemperature = [];\ntmpDataHumidity = [];\n});\n} else {\nvar labels = Array();\nvar tmpDataTemperature = Array();\nvar tmpDataHumidity = Array();\nactHour = actTime.split(\":\")[0];\nactHour = (actHour - sensor.arrEEPROM.length).mod(24);\njQuery.each(sensor.arrEEPROM, function(index, value) {\nactHour = (actHour + 1).mod(24);\nlabels.push(actHour + \":00\");\ntmpDataTemperature.push(value['T']);\ntmpDataHumidity.push(value['H']);\n});\nlabels.push(actTime);\ntmpDataTemperature.push(sensor.currentTemp);\ntmpDataHumidity.push(sensor.currentHum);\nvar dataTemperature = [{label: temperatureLabel, data: tmpDataTemperature,\nfill: false, borderWidth: 3, borderColor: singleChartTempColor,}];\nvar dataHumidity = [{label: humidityLabel, data: tmpDataHumidity,\nfill: false, borderWidth: 3, borderColor: singleChartHumidColor,}];\n}\nvar tempCtx = $('#temperatureChart');\nvar humCtx = $('#humidityChart');\nvar tempOptions = {\ntitle: {\ndisplay: true,\ntext: temperatureHeading\n},\nresponsive: true,\nmaintainAspectRatio: true,\nscaleOverride: true,\n};\nvar humOptions = {\ntitle: {\ndisplay: true,\ntext: humidityHeading\n},\nresponsive: true,\nmaintainAspectRatio: true,\nscaleOverride: true,\n};\nif (!anim) {\ntempOptions.animation = false;\nhumOptions.animation = false;\n}\nvar tempChart = new Chart(tempCtx, {\ntype: 'line',\ndata: {\nlabels: labels,\ndatasets: dataTemperature,\n},\noptions: tempOptions\n});\nvar humCharts = new Chart(humCtx, {\ntype: 'line',\ndata: {\nlabels: labels,\ndatasets: dataHumidity,\n},\noptions: humOptions\n});\n}\nNumber.prototype.mod = function(n) {\nreturn ((this%n)+n)%n;\n}\nfunction getColor(index) {\nif (index < preDefinedColors.length) {\nreturn preDefinedColors[index];\n} else {\nreturn getRandomColor();\n}\n}\nfunction getRandomColor() {\nvar letters = '0123456789ABCDEF'.split('');\nvar color = '#';\nfor (var i = 0; i < 6; i++ ) {\ncolor += letters[Math.floor(Math.random() * 16)];\n}\nreturn color;\n}"
  8. #define CSS_FILE "#listSensorsHeading { font-size: 18px; }"
  9. const static unsigned int faviconSize = 1406;
  10. const static char faviconMimeType[] PROGMEM = "image/x-icon";
  11. const static unsigned char favicon[] PROGMEM = {
  12. 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x10, 0x10,
  13. 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x68, 0x05,
  14. 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x28, 0x00,
  15. 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x20, 0x00,
  16. 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00,
  17. 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
  18. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
  19. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  20. 0x00, 0x00, 0xff, 0xe8, 0xc9, 0x00, 0xff, 0xde,
  21. 0xb3, 0x00, 0xff, 0x91, 0x00, 0x00, 0x3d, 0xf9,
  22. 0xff, 0x00, 0xff, 0xd3, 0x99, 0x00, 0x01, 0x29,
  23. 0x00, 0x00, 0xeb, 0x85, 0x00, 0x00, 0x02, 0x8c,
  24. 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0xd1, 0x77,
  25. 0x00, 0x00, 0x01, 0x52, 0x00, 0x00, 0xff, 0xba,
  26. 0x61, 0x00, 0x02, 0x6b, 0x00, 0x00, 0xff, 0xb1,
  27. 0x4a, 0x00, 0xff, 0xa1, 0x26, 0x00, 0xff, 0xf3,
  28. 0xe3, 0x00, 0xff, 0xc4, 0x78, 0x00, 0xe3, 0xfe,
  29. 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  30. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  31. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  32. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  33. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  34. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  35. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  36. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  37. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  38. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  39. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  40. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  41. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  42. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  43. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  44. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  45. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  46. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  47. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  48. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  49. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  50. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  51. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  52. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  53. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  54. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  55. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  56. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  57. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  58. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  59. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  60. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  61. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  62. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  63. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  64. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  65. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  66. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  67. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  68. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  69. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  70. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  71. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  72. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  73. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  74. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  75. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  76. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  77. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  78. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  79. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  80. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  81. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  82. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  83. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  84. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  85. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  86. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  87. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  88. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  89. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  90. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  91. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  92. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  93. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  94. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  95. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  96. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  97. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  98. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  99. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  100. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  101. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  102. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  103. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  104. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  105. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  106. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  107. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  108. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  109. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  110. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  111. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  112. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  113. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  114. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  115. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  116. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  117. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  118. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  119. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  120. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  121. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  122. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  123. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  124. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  125. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  126. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  127. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  128. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  129. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  130. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  131. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  132. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  133. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  134. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  135. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  136. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  137. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  138. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  139. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  140. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  141. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  142. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  143. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  144. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  145. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  146. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  147. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x0b,
  148. 0x0d, 0x0d, 0x0d, 0x08, 0x08, 0x08, 0x08, 0x08,
  149. 0x08, 0x08, 0x08, 0x0d, 0x0d, 0x0d, 0x09, 0x09,
  150. 0x0b, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x08, 0x0d,
  151. 0x0d, 0x0d, 0x0d, 0x0b, 0x0b, 0x0b, 0x06, 0x06,
  152. 0x09, 0x09, 0x0b, 0x0b, 0x0b, 0x0d, 0x0d, 0x0d,
  153. 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x09, 0x00, 0x00,
  154. 0x06, 0x09, 0x09, 0x09, 0x0b, 0x0b, 0x0b, 0x0b,
  155. 0x0b, 0x0b, 0x09, 0x09, 0x06, 0x06, 0x10, 0x10,
  156. 0x00, 0x06, 0x06, 0x06, 0x09, 0x09, 0x09, 0x09,
  157. 0x09, 0x09, 0x06, 0x06, 0x00, 0x00, 0x10, 0x10,
  158. 0x10, 0x00, 0x00, 0x00, 0x06, 0x09, 0x09, 0x06,
  159. 0x06, 0x06, 0x00, 0x00, 0x10, 0x10, 0x01, 0x01,
  160. 0x01, 0x01, 0x01, 0x00, 0x00, 0x06, 0x06, 0x00,
  161. 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02,
  162. 0x02, 0x02, 0x02, 0x02, 0x02, 0x00, 0x00, 0x02,
  163. 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x05, 0x05,
  164. 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
  165. 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x11, 0x11,
  166. 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
  167. 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x0c, 0x0c,
  168. 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c,
  169. 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0e, 0x0e,
  170. 0x0e, 0x04, 0x04, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e,
  171. 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x0f,
  172. 0x04, 0x12, 0x12, 0x04, 0x0f, 0x0f, 0x0f, 0x0f,
  173. 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x03, 0x03,
  174. 0x04, 0x12, 0x12, 0x04, 0x03, 0x03, 0x03, 0x03,
  175. 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x07,
  176. 0x07, 0x04, 0x04, 0x07, 0x07, 0x07, 0x07, 0x07,
  177. 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x0a, 0x0a,
  178. 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
  179. 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x00, 0x00,
  180. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  181. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  182. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  183. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  184. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  185. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  186. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  187. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  188. };
  189. #endif // __STATIC_H__