2D setup: add graphical display of panels

FX.h, cfg.cpp, set.cpp, xml.cpp:
- add basic or advanced: bOrA / ba (mpv, mph done earlier)
- add 1st led: panelO / pbl, prl, pvl, psl

settings_2D.htm
- add canvas / context
- addPanel: 1st LED: copy from Matrix setup and draw() on all fields
This commit is contained in:
Ewoud
2023-02-05 16:22:40 +01:00
parent a5607a9901
commit f71e6262f6
12 changed files with 1515 additions and 1191 deletions

View File

@@ -172,7 +172,7 @@ uint16_t mode_pongGame(void) {
return FRAMETIME;
}
static const char _data_FX_MODE_PONGGAME[] PROGMEM = "🎮 Pong@!;!;!;2";
static const char _data_FX_MODE_PONGGAME[] PROGMEM = "🎮 Pong@!;!;!;2";
//https://howtomechatronics.com/tutorials/arduino/arduino-and-mpu6050-accelerometer-and-gyroscope-tutorial/

View File

@@ -94,7 +94,7 @@ uint16_t mode_2DWeather(void) {
return FRAMETIME;
}
static const char _data_FX_MODE_2DWEATHER[] PROGMEM = "Weather@;!;!;2;pal=54"; //temperature palette
static const char _data_FX_MODE_2DWEATHER[] PROGMEM = "Weather@;!;!;2;pal=54"; //temperature palette
//utility function, move somewhere else???
void epochToString(time_t time, char *timeString) {

View File

@@ -821,15 +821,24 @@ class WS2812FX { // 96 bytes
#define WLED_MAX_PANELS 64
uint8_t
panels,
panelsH, //WLEDMM quick fix
panelsV; //WLEDMM quick fix
panelsH, //WLEDMM needs to be stored as well
panelsV; //WLEDMM needs to be stored as well
bool
bOrA; //WLEDMM basic or advanced
struct {
bool bottomStart : 1;
bool rightStart : 1;
bool vertical : 1;
bool serpentine : 1;
} matrix;
struct {
bool bottomStart : 1;
bool rightStart : 1;
bool vertical : 1;
bool serpentine : 1;
} panelO; //WLEDMM panelOrientation
typedef struct panel_t {
uint16_t xOffset; // x offset relative to the top left of matrix in LEDs

View File

@@ -101,12 +101,17 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
if (!matrix.isNull()) {
strip.isMatrix = true;
CJSON(strip.panels, matrix[F("mpc")]);
CJSON(strip.panelsV, matrix[F("mpv")]); //WLEDMM quick fix
CJSON(strip.panelsH, matrix[F("mph")]); //WLEDMM quick fix
CJSON(strip.bOrA, matrix["ba"]); //WLEDMM basic or advanced
CJSON(strip.panelsV, matrix[F("mpv")]); //WLEDMM needs to be stored as well
CJSON(strip.panelsH, matrix[F("mph")]); //WLEDMM needs to be stored as well
CJSON(strip.matrix.bottomStart, matrix[F("pb")]);
CJSON(strip.matrix.rightStart, matrix[F("pr")]);
CJSON(strip.matrix.vertical, matrix[F("pv")]);
CJSON(strip.matrix.serpentine, matrix["ps"]);
CJSON(strip.panelO.bottomStart, matrix[F("pbl")]); //WLEDMM
CJSON(strip.panelO.rightStart, matrix[F("prl")]); //WLEDMM
CJSON(strip.panelO.vertical, matrix[F("pvl")]); //WLEDMM
CJSON(strip.panelO.serpentine, matrix["psl"]); //WLEDMM
strip.panel.clear();
JsonArray panels = matrix[F("panels")];
@@ -712,8 +717,9 @@ void serializeConfig() {
if (strip.isMatrix) {
JsonObject matrix = hw_led.createNestedObject(F("matrix"));
matrix[F("mpc")] = strip.panels;
matrix[F("mph")] = strip.panelsH; //WLEDMM quick fix
matrix[F("mpv")] = strip.panelsV; //WLEDMM quick fix
matrix[F("ba")] = strip.bOrA; //WLEDMM basic or advanced
matrix[F("mph")] = strip.panelsH; //WLEDMM needs to be stored as well
matrix[F("mpv")] = strip.panelsV; //WLEDMM needs to be stored as well
matrix[F("pb")] = strip.matrix.bottomStart;
matrix[F("pr")] = strip.matrix.rightStart;
matrix[F("pv")] = strip.matrix.vertical;

View File

@@ -740,9 +740,9 @@ function populateSegments(s)
<option value="1" ${inst.m12==1?' selected':''}>Bar</option>
<option value="2" ${inst.m12==2?' selected':''}>Arc</option>
<option value="3" ${inst.m12==3?' selected':''}>Corner</option>
<option value="4" ${inst.m12==4?' selected':''}>jMap</option>
<option value="5" ${inst.m12==5?' selected':''}>Circle</option>
<option value="6" ${inst.m12==6?' selected':''}>Block</option>
<option value="4" ${inst.m12==4?' selected':''}>jMap</option>
<option value="5" ${inst.m12==5?' selected':''}>Circle</option>
<option value="6" ${inst.m12==6?' selected':''}>Block</option>
</select></div>
</div>`;
let sndSim = `<div data-snd="si" class="lbl-s hide">Sound sim<br>

View File

@@ -9,6 +9,9 @@
var d=document;
var loc = false, locip;
var maxPanels=64;
var ctx; // WLEDMM
var ledIndex = 0; // WLEDMM
var wasAdvanced = -1; //WLEDMM
function H(){window.open("https://mm.kno.wled.ge/features/2D");}
function B(){window.open("/settings","_self");}
function gId(n){return d.getElementById(n);}
@@ -25,6 +28,8 @@
GetV();
UI();
Sf.MPC.setAttribute("max",maxPanels);
baChange(); //WLEDMM: Set Basic or advanced blocks
draw(); //WLEDMM: draw graphics
});
// error event
scE.addEventListener("error", (ev) => {
@@ -43,6 +48,16 @@
}
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=10';
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
//WLEDMM: add canvas, initialize and set UI
var c = gId("canvas");
c.width = window.innerWidth > 800?800:400; //Mobile gets 400, pc 800
c.height = c.width;
ctx = c.getContext('2d');
// window.requestAnimationFrame(animate);
}
function UI() {
@@ -67,21 +82,21 @@
var pw = parseInt(d.Sf.PW.value);
var ph = parseInt(d.Sf.PH.value);
let b = `<div id="pnl${i}"><hr class="sml">Panel ${i}<br>
1<sup>st</sup> LED: <select name="P${i}B">
1<sup>st</sup> LED: <select id="P${i}B" name="P${i}B" oninput="draw()">
<option value="0">Top</option>
<option value="1">Bottom</option>
</select><select name="P${i}R">
</select><select id="P${i}R" name="P${i}R" oninput="draw()">
<option value="0">Left</option>
<option value="1">Right</option>
</select><br>
Orientation: <select name="P${i}V">
Orientation: <select id="P${i}V" name="P${i}V" oninput="draw()">
<option value="0">Horizontal</option>
<option value="1">Vertical</option>
</select><br>
Serpentine: <input type="checkbox" name="P${i}S"><br>
Dimensions (WxH): <input id="P${i}W" name="P${i}W" type="number" min="1" max="128" value="${pw}"> x <input id="P${i}H" name="P${i}H" type="number" min="1" max="128" value="${ph}"><br>
Offset X:<input id="P${i}X" name="P${i}X" type="number" min="0" max="256" value="0">
Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br><i>(offset from top-left corner in # LEDs)</i>
Serpentine: <input id="P${i}S" type="checkbox" name="P${i}S" onclick="draw()"><br>
Dimensions (WxH): <input id="P${i}W" name="P${i}W" type="number" min="1" max="128" value="${pw}" oninput="draw()"> x <input id="P${i}H" name="P${i}H" type="number" min="1" max="128" value="${ph}" oninput="draw()"><br>
Offset X:<input id="P${i}X" name="P${i}X" type="number" min="0" max="256" value="0" oninput="draw()">
Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0" oninput="draw()"><br><i>(offset from top-left corner in # LEDs)</i>
</div>`;
p.insertAdjacentHTML("beforeend", b);
}
@@ -104,6 +119,40 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
gId("pnl_rem").style.display = (i>1) ? "inline":"none";
}
*/
//WLEDMM
function baChange(radioElement=null) {
console.log("baChange", gId("form_s"), radioElement, gId("form_s").elements, d.Sf.BA.value);
if (radioElement) {
if (d.Sf.BA.value == 0 && wasAdvanced == 1) {
if (!confirm('Are you sure to go back to basic (advanced settings will be lost)?')) {
d.Sf.BA.value = 1;
return;
}
fieldChange(); //Create basic layout
}
// console.log("baChange", gId("form_s"), radioElement, gId("form_s").elements, d.Sf.BA.value, radioElement.value);
d.Sf.BA.value = parseInt(radioElement.value);
}
wasAdvanced = d.Sf.BA.value == 1;
gId("advancedBlock").style.display = wasAdvanced ? "inline":"none";
gId("title").innerHTML = !wasAdvanced ? "Matrix Setup":"Matrix Generator";
}
//WLEDMM
function fieldChange(force=false) { //Done on all fields of matrix setup area
console.log("fieldChange", force);
var pansH = parseInt(d.Sf.MPH.value);
var pansV = parseInt(d.Sf.MPV.value);
if ((pansH>0 && pansV>0 && d.Sf.BA.value == 0) || force) gen(); //Generate if basic or forced (in advanced by populate button)
draw();
gId("panelOrientationBlock").style.display = pansH*pansV>1?"inline":"none"; //WLEDMM: panel orientation only needed when more than one panel
gId("popButton").disabled = force;
gId("popButton").style.color= force?"grey":"red";
}
function gen() {
resetPanels();
@@ -128,12 +177,169 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
var x = (pv?pb:pr) ? h-i-1 : i;
x = ps && j%2 ? h-x-1 : x;
gId("P"+p+"X").value = (pv?y:x) * pw;
gId("P"+p+"Y").value = (pv?x:y) * ph
gId("P"+p+"Y").value = (pv?x:y) * ph;
gId("P"+p+"W").value = pw;
gId("P"+p+"H").value = ph;
//WLEDMM: also calculate orientation of panel !
gId("P"+p+"B").value = d.Sf.PBL.value;
gId("P"+p+"R").value = d.Sf.PRL.value;
gId("P"+p+"V").value = d.Sf.PVL.value;
gId("P"+p+"S").checked = d.Sf.PSL.checked;
}
}
}
//WLEDMM
function draw() {
//calc max height and width
var maxWidth = 0;
var maxHeight = 0;
for (let p=0; p<gId("panels").children.length; p++) {
var px = parseInt(gId("P"+p+"X").value); //first led x
var py = parseInt(gId("P"+p+"Y").value); //first led y
var pw = parseInt(gId("P"+p+"W").value); //width
var ph = parseInt(gId("P"+p+"H").value); //height
maxWidth = Math.max(maxWidth, px + pw);
maxHeight = Math.max(maxHeight, py + ph);
}
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
ctx.canvas.height = ctx.canvas.width / maxWidth * maxHeight;
var space=20; // space between panels + margin
var ppL = (ctx.canvas.width - space * 2) / maxWidth; //pixels per led
// console.log("dim", ctx.canvas.width , maxWidth, ctx.canvas.height , maxHeight, ppL);
ctx.lineWidth = 1;
ctx.strokeStyle="yellow";
ctx.strokeRect(0, 0, ctx.canvas.width, ctx.canvas.height); // add space between panels
for (let p=0; p<gId("panels").children.length; p++) {
// console.log(gId("P"+p+"X").value, gId("P"+p+"Y").value, gId("P"+p+"W").value, gId("P"+p+"H").value, gId("P"+p+"B").value, gId("P"+p+"R").value, gId("P"+p+"V").value, gId("P"+p+"S").checked);
var px = parseInt(gId("P"+p+"X").value); //first led x
var py = parseInt(gId("P"+p+"Y").value); //first led y
var pw = parseInt(gId("P"+p+"W").value); //width
var ph = parseInt(gId("P"+p+"H").value); //height
var pb = gId("P"+p+"B").value == "1"; //bottom
var pr = gId("P"+p+"R").value == "1"; //right
var pv = gId("P"+p+"V").value == "1"; //vertical
var ps = gId("P"+p+"S").checked; //serpentine
// console.log("panel", p, px,py,pw,ph);
var topLeftX = px*ppL + space; //left margin
var topLeftY = py*ppL + space; //top margin
// console.log("rect", p, topLeftX, topLeftY, pw*ppL, ph*ppL);
ctx.lineWidth = 3;
ctx.strokeStyle="white";
ctx.strokeRect(topLeftX, topLeftY, pw*ppL, ph*ppL); // add space between panels
var lnX;
var lnY;
//find start led
if (pb) //bottom
lnY = topLeftY + ph*ppL - ppL/2;
else //top
lnY = topLeftY + ppL/2;
if (pr) //right
lnX = topLeftX + pw*ppL - ppL/2;
else //left
lnX = topLeftX + ppL/2;
//first led
ctx.fillStyle = "green";
ctx.beginPath();
ctx.arc(lnX, lnY, ppL*0.5, 0, 2 * Math.PI);
ctx.fill();
//start line
ctx.lineWidth = 1;
ctx.beginPath();
ctx.moveTo(lnX, lnY);
var longLineLength = (pv?ph:pw)*ppL - ppL;
for (let ln=0; ln<(pv?pw:ph); ln++) { //loop over panelwidth (or height of vertical?)
var serpLine = ps && ln%2!=0; //serp: turn around if even line
if (pv) //if vertical
lnY += (pb?-1:1) * longLineLength * (serpLine?-1:1); //if vertical change the Y
else
lnX += (pr?-1:1) * longLineLength * (serpLine?-1:1); //if horizontal change the X
ctx.lineTo(lnX, lnY); //draw the long line
if (ln<(pv?pw:ph)-1) { //not the last
//find the small line end point
if (pv) //vertical
lnX += (pr?-1:1) * ppL;
else //horizontal
lnY += (pb?-1:1) * ppL;
//if serpentine go next else go down
if (ps) { //serpentine
ctx.lineTo(lnX, lnY); //draw the serpentine line
} else {
//find the other end of the long line
if (pv) //vertical
lnY += (pb?1:-1) * longLineLength * (serpLine?-1:1); //min as we go back
else //horizontal
lnX += (pr?1:-1) * longLineLength * (serpLine?-1:1);
ctx.moveTo(lnX, lnY); //move to the start point of the next long line
}
}
}
ctx.stroke();
//last led
ctx.fillStyle = "red";
ctx.beginPath();
ctx.arc(lnX, lnY, ppL*0.5, 0, 2 * Math.PI);
ctx.fill();
ctx.font = '40px Arial';
ctx.fillStyle = "orange";
ctx.fillText(p, topLeftX-ppL/2 + (pw*ppL+ppL)/2, topLeftY-ppL/2 + (ph*ppL+ppL)/2);
}
gId("MD").innerHTML = "Matrix Dimensions (W*H=LC): " + maxWidth + " x " + maxHeight + " = " + maxWidth * maxHeight;
}
// //WLEDMM
// function getCoordOfLed(ledIndex) {
// var pw = parseInt(d.Sf.PW.value);
// var ph = parseInt(d.Sf.PH.value);
// //calculate which panel
// //panelsize
// var p = parseInt(ledIndex / (pw*ph));
// var ledPanelIndex = ledIndex % (pw*ph);
// // console.log(ledIndex, p, ledPanelIndex);
// //calculate which led in panel
// //calculate coordinates
// }
// //WLEDMM
// function animate() {
// // clear previous led
// var pw = parseInt(d.Sf.PW.value);
// var ph = parseInt(d.Sf.PH.value);
// var pansH = parseInt(d.Sf.MPH.value);
// var pansV = parseInt(d.Sf.MPV.value);
// getCoordOfLed(ledIndex);
// ledIndex = (ledIndex + 1) % (pw*pansH*ph*pansV);
// window.requestAnimationFrame(animate);
// }
</script>
<style>@import url("style.css");</style>
</head>
@@ -151,29 +357,51 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
</select><br>
<div id="mpdiv" style="display:none;">
<hr class="sml">
<h3>Matrix Generator</h3>
Panel dimensions (WxH): <input name="PW" type="number" min="1" max="128" value="8"> x <input name="PH" type="number" min="1" max="128" value="8"><br>
Horizontal panels: <input name="MPH" type="number" min="1" max="8" value="1">
Vertical panels: <input name="MPV" type="number" min="1" max="8" value="1"><br>
1<sup>st</sup> panel: <select name="PB">
Interface:
<input type="radio" value="0" name="BA" onclick="baChange(this)"><label>Basic</label>
<input type="radio" value="1" name="BA" onclick="baChange(this)"><label>Advanced</label>
<br>
<hr class="sml">
<h3 id="title">Matrix Generator</h3>
Panel dimensions (WxH): <input name="PW" type="number" min="1" max="128" value="8" oninput="fieldChange()"> x <input name="PH" type="number" min="1" max="128" value="8" oninput="fieldChange()"><br>
Horizontal panels: <input name="MPH" type="number" min="1" max="8" value="1" oninput="fieldChange()">
Vertical panels: <input name="MPV" type="number" min="1" max="8" value="1" oninput="fieldChange()"><br>
<div id="panelOrientationBlock">
1<sup>st</sup> panel: <select name="PB" oninput="fieldChange()">
<option value="0">Top</option>
<option value="1">Bottom</option>
</select><select name="PR">
</select><select name="PR" oninput="fieldChange()">
<option value="0">Left</option>
<option value="1">Right</option>
</select><br>
Orientation: <select name="PV">
Orientation: <select name="PV" oninput="fieldChange()">
<option value="0">Horizontal</option>
<option value="1">Vertical</option>
</select><br>
Serpentine: <input type="checkbox" name="PS"><br>
<!-- <br>
Interface<br>
<input type="radio" value="0" name="Interface"><label>Classic</label>
<input type="radio" value="1" name="Interface"><label>Complex</label>
<br><br> -->
Serpentine: <input type="checkbox" name="PS" onclick="fieldChange()"><br>
<br>
</div> <!--panelOrientationBlock-->
1<sup>st</sup> LED ☾: <select name="PBL" oninput="fieldChange()">
<option value="0">Top</option>
<option value="1">Bottom</option>
</select><select name="PRL" oninput="fieldChange()">
<option value="0">Left</option>
<option value="1">Right</option>
</select><br>
Orientation: <select name="PVL" oninput="fieldChange()">
<option value="0">Horizontal</option>
<option value="1">Vertical</option>
</select><br>
Serpentine: <input type="checkbox" name="PSL" onclick="fieldChange()"><br>
<br>
<hr class="sml">
<br>
<canvas id="canvas"></canvas><br>
<div id="MD"></div> <!-- Matrix dimensions -->
<br>
<div id="advancedBlock">
<i style="color:#fa0;">Can populate LED panel layout with pre-arranged matrix.<br>These values do not affect final layout.<br>WLEDMM: Populate will overwrite earlier saved panel layouts!</i><br>
<button type="button" onclick="gen()">Populate</button>
<button id="popButton" type="button" onclick="fieldChange(true)">Populate</button>
<hr class="sml">
<h3>Panel set-up</h3>
Number of panels: <input name="MPC" type="number" min="1" max="64" value="1" oninput="addPanels()"><br>
@@ -183,6 +411,7 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
<h3>LED panel layout</h3>
<div id="panels">
</div>
</div> <!--advancedBlock-->
</div>
<hr>
<button type="button" onclick="B()">Back</button><button type="submit">Save</button>

View File

@@ -44,29 +44,29 @@ const char PAGE_dmxmap[] PROGMEM = R"=====()=====";
const uint16_t PAGE_update_length = 606;
const uint8_t PAGE_update[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x75, 0x53, 0xd1, 0x6a, 0xdb, 0x30,
0x14, 0x7d, 0xf7, 0x57, 0x68, 0x7a, 0x4a, 0x60, 0x91, 0xdb, 0x31, 0x28, 0xeb, 0x6c, 0x77, 0x64,
0x14, 0x7d, 0xf7, 0x57, 0xa8, 0x7a, 0x4a, 0x60, 0x91, 0xdb, 0x31, 0x18, 0xeb, 0x6c, 0x77, 0x64,
0x2d, 0x63, 0xb0, 0xd2, 0x42, 0xdb, 0x8d, 0x3d, 0x0d, 0xd9, 0xba, 0xb6, 0xb5, 0xc8, 0x92, 0x2b,
0x5d, 0x27, 0x84, 0xd1, 0x7f, 0xdf, 0x95, 0x9c, 0x74, 0x83, 0x6e, 0x2f, 0x26, 0xb2, 0xce, 0x3d,
0x39, 0xf7, 0x9c, 0xe3, 0xe2, 0xd5, 0xe5, 0xcd, 0xc7, 0xfb, 0xef, 0xb7, 0x57, 0xac, 0xc7, 0xc1,
0x54, 0xc5, 0xe1, 0x09, 0x52, 0x55, 0xc5, 0x00, 0x28, 0x59, 0xe3, 0x2c, 0x82, 0xc5, 0x92, 0xef,
0xb4, 0xc2, 0xbe, 0x54, 0xb0, 0xd5, 0x0d, 0xac, 0xd2, 0x81, 0x33, 0x2b, 0x07, 0x28, 0xf9, 0x56,
0xc3, 0x6e, 0x74, 0x1e, 0x79, 0x95, 0x15, 0xa8, 0xd1, 0x40, 0xf5, 0xed, 0xcb, 0xd5, 0x25, 0x7b,
0x18, 0x95, 0x44, 0x28, 0xf2, 0xf9, 0x55, 0x11, 0x1a, 0xaf, 0x47, 0xac, 0xb2, 0x76, 0xb2, 0x0d,
0x6a, 0x67, 0xd9, 0x7a, 0xb1, 0xfc, 0xb5, 0xd3, 0x56, 0xb9, 0x9d, 0xe8, 0x75, 0x40, 0xe7, 0xf7,
0xa2, 0x96, 0xcd, 0x66, 0xb1, 0x7c, 0x7a, 0x86, 0x3c, 0x10, 0x44, 0xb9, 0x66, 0x1a, 0x48, 0x81,
0xe8, 0x00, 0xaf, 0x0c, 0xc4, 0x9f, 0xeb, 0xfd, 0x67, 0xb5, 0xe0, 0x53, 0xcb, 0x97, 0x22, 0xe0,
0xde, 0x80, 0x50, 0x3a, 0x8c, 0x46, 0xee, 0x4b, 0x6e, 0x9d, 0x05, 0xfe, 0xfa, 0xbf, 0x23, 0x43,
0xe8, 0x5e, 0xce, 0xd4, 0xc6, 0x35, 0x1b, 0xfe, 0x94, 0x15, 0xf9, 0x41, 0xe2, 0x41, 0x2a, 0x0b,
0xbe, 0x29, 0x79, 0x1e, 0x00, 0x51, 0xdb, 0x2e, 0xe4, 0x41, 0xfc, 0x0c, 0x17, 0x63, 0xf9, 0x8e,
0x57, 0x7f, 0x21, 0x23, 0x55, 0x95, 0x7d, 0xd0, 0x43, 0x34, 0x80, 0x4d, 0xde, 0x2c, 0xf8, 0x4c,
0xdf, 0x84, 0xc0, 0x97, 0xef, 0x09, 0x99, 0x10, 0x45, 0x3e, 0x5b, 0x5a, 0x3b, 0xb5, 0x67, 0xce,
0x1a, 0x27, 0x55, 0xc9, 0x3f, 0x01, 0x7e, 0x5d, 0x2c, 0x89, 0xae, 0x7f, 0x53, 0x65, 0xd7, 0xce,
0xd9, 0x6b, 0xa7, 0x58, 0xb2, 0xee, 0xce, 0xb5, 0xb8, 0x93, 0x1e, 0x9e, 0x3d, 0x24, 0x44, 0xd1,
0x3a, 0x3f, 0x30, 0xca, 0xa4, 0x77, 0x34, 0x7b, 0x7b, 0x73, 0x77, 0xcf, 0x99, 0x4c, 0x36, 0x91,
0xc8, 0x29, 0xe1, 0x38, 0xd3, 0x74, 0x45, 0xbe, 0xb0, 0x0c, 0xc8, 0xc1, 0xfd, 0x48, 0xe1, 0x0c,
0x93, 0x41, 0x3d, 0x4a, 0x8f, 0x79, 0x9c, 0x5f, 0x11, 0x4c, 0x72, 0x52, 0x10, 0xa6, 0x7a, 0xd0,
0x94, 0xea, 0x43, 0x12, 0x10, 0x46, 0x69, 0x59, 0x63, 0x64, 0x08, 0x25, 0x0f, 0x7a, 0xe4, 0xd5,
0x89, 0x38, 0x7d, 0x2b, 0x4e, 0x56, 0xf5, 0x99, 0x38, 0x3d, 0x8b, 0xc6, 0xd0, 0x3d, 0x89, 0xf7,
0x39, 0xf7, 0x9c, 0xe3, 0xe2, 0xe4, 0xf2, 0xe6, 0xe3, 0xfd, 0xf7, 0xdb, 0x2b, 0xd6, 0xe3, 0x60,
0xaa, 0xe2, 0xf0, 0x04, 0xa9, 0xaa, 0x62, 0x00, 0x94, 0xac, 0x71, 0x16, 0xc1, 0x62, 0xc9, 0x77,
0x5a, 0x61, 0x5f, 0x2a, 0xd8, 0xea, 0x06, 0x56, 0xe9, 0xc0, 0x99, 0x95, 0x03, 0x94, 0x7c, 0xab,
0x61, 0x37, 0x3a, 0x8f, 0xbc, 0xca, 0x0a, 0xd4, 0x68, 0xa0, 0xfa, 0xf6, 0xe5, 0xea, 0x92, 0x3d,
0x8c, 0x4a, 0x22, 0x14, 0xf9, 0xfc, 0xaa, 0x08, 0x8d, 0xd7, 0x23, 0x56, 0x59, 0x3b, 0xd9, 0x06,
0xb5, 0xb3, 0x6c, 0xbd, 0x58, 0xfe, 0xda, 0x69, 0xab, 0xdc, 0x4e, 0xf4, 0x3a, 0xa0, 0xf3, 0x7b,
0x51, 0xcb, 0x66, 0xb3, 0x58, 0x3e, 0x3d, 0x43, 0x1e, 0x08, 0xa2, 0x5c, 0x33, 0x0d, 0xa4, 0x40,
0x74, 0x80, 0x57, 0x06, 0xe2, 0xcf, 0xf5, 0xfe, 0xb3, 0x5a, 0xf0, 0xa9, 0xe5, 0x4b, 0x11, 0x70,
0x6f, 0x40, 0x28, 0x1d, 0x46, 0x23, 0xf7, 0x25, 0xb7, 0xce, 0x02, 0x7f, 0xf5, 0xdf, 0x91, 0x21,
0x74, 0x2f, 0x67, 0x6a, 0xe3, 0x9a, 0x0d, 0x7f, 0xca, 0x8a, 0xfc, 0x20, 0xf1, 0x20, 0x95, 0x05,
0xdf, 0x94, 0x3c, 0x0f, 0x80, 0xa8, 0x6d, 0x17, 0xf2, 0x20, 0x7e, 0x86, 0x8b, 0xb1, 0x7c, 0xc7,
0xab, 0xbf, 0x90, 0x91, 0xaa, 0xca, 0x3e, 0xe8, 0x21, 0x1a, 0xc0, 0x26, 0x6f, 0x16, 0x7c, 0xa6,
0x6f, 0x42, 0xe0, 0xcb, 0xf7, 0x84, 0x4c, 0x88, 0x22, 0x9f, 0x2d, 0xad, 0x9d, 0xda, 0x33, 0x67,
0x8d, 0x93, 0xaa, 0xe4, 0x9f, 0x00, 0xbf, 0x2e, 0x96, 0x44, 0xd7, 0xbf, 0xae, 0xb2, 0x6b, 0xe7,
0xec, 0xb5, 0x53, 0x2c, 0x59, 0x77, 0xe7, 0x5a, 0xdc, 0x49, 0x0f, 0xcf, 0x1e, 0x12, 0xa2, 0x68,
0x9d, 0x1f, 0x18, 0x65, 0xd2, 0x3b, 0x9a, 0xbd, 0xbd, 0xb9, 0xbb, 0xe7, 0x4c, 0x26, 0x9b, 0x48,
0xe4, 0x94, 0x70, 0x9c, 0x69, 0xba, 0x22, 0x5f, 0x58, 0x06, 0xe4, 0xe0, 0x7e, 0xa4, 0x70, 0x86,
0xc9, 0xa0, 0x1e, 0xa5, 0xc7, 0x3c, 0xce, 0xaf, 0x08, 0x26, 0x39, 0x29, 0x08, 0x53, 0x3d, 0x68,
0x4a, 0xf5, 0x21, 0x09, 0x08, 0xa3, 0xb4, 0xac, 0x31, 0x32, 0x84, 0x92, 0x07, 0x3d, 0xf2, 0xea,
0x54, 0x9c, 0xbd, 0x11, 0xa7, 0xab, 0xfa, 0x4c, 0x9c, 0xbd, 0x8d, 0xc6, 0xd0, 0x3d, 0x89, 0xf7,
0xd5, 0xa5, 0xdb, 0x25, 0xf1, 0x0c, 0x7b, 0x60, 0x86, 0xfe, 0x32, 0x20, 0xf3, 0x60, 0x40, 0x06,
0x38, 0x67, 0x85, 0x64, 0x59, 0xef, 0xa1, 0x2d, 0x79, 0x8f, 0x38, 0x86, 0xf3, 0x3c, 0xef, 0x34,
0xf6, 0x53, 0x2d, 0x1a, 0x37, 0xe4, 0x87, 0xfd, 0x26, 0x03, 0x21, 0x8f, 0x3b, 0xe6, 0x87, 0xb1,
@@ -75,12 +75,12 @@ const uint8_t PAGE_update[] PROGMEM = {
0x78, 0xc1, 0x2d, 0xc2, 0xb6, 0xbb, 0x48, 0xc6, 0x97, 0x2d, 0x89, 0x5c, 0x85, 0xc7, 0x89, 0xcc,
0x8c, 0xf5, 0xcc, 0x65, 0x5a, 0xa3, 0xd0, 0x76, 0x9c, 0x90, 0xcd, 0x0e, 0xb5, 0xda, 0xc0, 0xb1,
0xca, 0x47, 0x1f, 0x3d, 0x3c, 0x4e, 0xda, 0x83, 0x9a, 0xd1, 0xf5, 0x84, 0x48, 0x6d, 0x9c, 0xe1,
0xb3, 0x73, 0x44, 0x36, 0x67, 0xf3, 0xaa, 0xc8, 0xe7, 0xeb, 0x7f, 0x40, 0xe7, 0x43, 0xb4, 0xbb,
0x31, 0xba, 0xd9, 0x94, 0x7c, 0x1d, 0xdd, 0x5e, 0x53, 0xc9, 0xff, 0x0c, 0xa5, 0x58, 0xaa, 0x42,
0xe9, 0x6d, 0x96, 0xd2, 0x8b, 0x15, 0x25, 0x9a, 0x2a, 0xb1, 0x53, 0xef, 0x84, 0x10, 0x04, 0x4e,
0xe4, 0xb7, 0x69, 0x5b, 0xa6, 0x1c, 0xb3, 0x0e, 0x29, 0x2e, 0x47, 0x07, 0xe7, 0x49, 0x6b, 0xeb,
0x21, 0xf4, 0x29, 0x92, 0x51, 0x76, 0xc0, 0xce, 0x97, 0x45, 0x4e, 0x7c, 0x71, 0xdd, 0xd8, 0xb7,
0x58, 0xbe, 0xf8, 0x55, 0xff, 0x06, 0x6a, 0xb0, 0xfd, 0x25, 0xeb, 0x03, 0x00, 0x00
0xb3, 0x73, 0x44, 0x36, 0x67, 0x73, 0x52, 0xe4, 0xf3, 0xf5, 0x3f, 0xa0, 0xf3, 0x21, 0xda, 0xdd,
0x18, 0xdd, 0x6c, 0x4a, 0xbe, 0x8e, 0x6e, 0xaf, 0xa9, 0xe4, 0x7f, 0x86, 0x52, 0x2c, 0x55, 0xa1,
0xf4, 0x36, 0x4b, 0xe9, 0xc5, 0x8a, 0x12, 0x4d, 0x95, 0xd8, 0xa9, 0x77, 0x42, 0x08, 0x02, 0x27,
0xf2, 0xdb, 0xb4, 0x2d, 0x53, 0x8e, 0x59, 0x87, 0x14, 0x97, 0xa3, 0x83, 0xf3, 0xa4, 0xb5, 0xf5,
0x10, 0xfa, 0x14, 0xc9, 0x28, 0x3b, 0x60, 0xe7, 0xcb, 0x22, 0x27, 0xbe, 0xb8, 0x6e, 0xec, 0x5b,
0x2c, 0x5f, 0xfc, 0xaa, 0x7f, 0x03, 0xe3, 0x7e, 0x60, 0x87, 0xeb, 0x03, 0x00, 0x00
};

View File

@@ -1520,8 +1520,8 @@ const uint8_t PAGE_settings_time[] PROGMEM = {
const uint16_t PAGE_settings_sec_length = 2488;
const uint8_t PAGE_settings_sec[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xa5, 0x58, 0x6d, 0x73, 0xdb, 0x36,
0x12, 0xfe, 0xae, 0x5f, 0x01, 0x21, 0x33, 0xa9, 0x78, 0xa1, 0x29, 0xdb, 0xc9, 0xb5, 0x89, 0x23,
0x2a, 0x67, 0xc7, 0x4e, 0xe3, 0x1b, 0x3b, 0xf6, 0x44, 0x4a, 0x73, 0x37, 0xbd, 0x4e, 0x06, 0x22,
0x12, 0xfe, 0xae, 0x5f, 0x01, 0x21, 0x33, 0xa9, 0x78, 0xa1, 0x29, 0xdb, 0xc9, 0xf5, 0x12, 0x47,
0x54, 0x6a, 0xc7, 0x4e, 0xe3, 0x1b, 0x3b, 0xf6, 0x44, 0x4a, 0x73, 0x37, 0xbd, 0x4e, 0x06, 0x22,
0x21, 0x11, 0x11, 0x49, 0xb0, 0x00, 0x68, 0x45, 0x97, 0xf6, 0xbf, 0xdf, 0xb3, 0x20, 0x29, 0xc9,
0x8e, 0x93, 0x4e, 0xe6, 0x3e, 0xd8, 0x12, 0x09, 0x60, 0x5f, 0x9e, 0xdd, 0x7d, 0x76, 0xa1, 0x51,
0xff, 0xf4, 0xea, 0xe5, 0xf4, 0xdf, 0xd7, 0x67, 0x2c, 0x73, 0x45, 0x3e, 0x1e, 0xd1, 0x7f, 0x96,
@@ -1591,90 +1591,90 @@ const uint8_t PAGE_settings_sec[] PROGMEM = {
0x98, 0x22, 0xbc, 0x25, 0xd1, 0xde, 0x96, 0x18, 0x7a, 0x69, 0x41, 0x40, 0xbb, 0x3c, 0xcb, 0x93,
0xf8, 0x17, 0xbe, 0x01, 0xa2, 0xff, 0xf1, 0x47, 0x7e, 0xf9, 0x88, 0xc3, 0xdd, 0x6d, 0xf3, 0x1a,
0xda, 0xe8, 0xa3, 0x7d, 0x51, 0xc5, 0x3f, 0x72, 0x8f, 0x6f, 0x6f, 0x34, 0x6c, 0xbb, 0xee, 0xc8,
0x73, 0xc3, 0xf8, 0x1f, 0xaa, 0xa0, 0xfe, 0xcd, 0x6a, 0x93, 0xa3, 0xc8, 0x3d, 0x5d, 0x24, 0x16,
0x1c, 0xfa, 0x1c, 0x1b, 0xfd, 0x86, 0xd1, 0xb0, 0x99, 0x37, 0x88, 0xcc, 0xc1, 0x91, 0xa4, 0x39,
0xe6, 0x40, 0x0b, 0xbd, 0x7d, 0x8e, 0xba, 0xe8, 0x31, 0x85, 0x67, 0xfa, 0xf6, 0xc1, 0xf2, 0x76,
0x1e, 0x99, 0xcc, 0x39, 0xc3, 0x34, 0x90, 0x69, 0xac, 0x54, 0xda, 0xd2, 0x70, 0x90, 0xaa, 0x1b,
0xe6, 0x49, 0x25, 0x06, 0xc7, 0x01, 0x8e, 0xd5, 0xed, 0x77, 0x99, 0xcc, 0xab, 0x13, 0x1a, 0x55,
0x10, 0x38, 0x87, 0x68, 0x50, 0xbb, 0x89, 0x79, 0xf3, 0xc0, 0xa1, 0x35, 0xc9, 0x55, 0xb2, 0x8c,
0xf9, 0x6b, 0x52, 0xfb, 0x62, 0x34, 0x6c, 0x16, 0x60, 0x1a, 0x44, 0x8c, 0xef, 0x3f, 0xd3, 0xdb,
0x1c, 0x3a, 0xa1, 0x43, 0x54, 0x41, 0xdb, 0x73, 0xb7, 0x4e, 0xd8, 0x7a, 0x56, 0x28, 0xd8, 0x38,
0x11, 0x37, 0x72, 0xbb, 0x25, 0x33, 0x9d, 0xf8, 0xec, 0x70, 0xdc, 0x9b, 0xb4, 0x93, 0x03, 0x7b,
0xc8, 0xde, 0xf9, 0x3e, 0x4f, 0xf9, 0x59, 0x57, 0xc0, 0xe6, 0x70, 0xdc, 0x8d, 0x35, 0xec, 0xfa,
0xfc, 0xcd, 0x11, 0x1b, 0xa9, 0xb2, 0xaa, 0x5d, 0x2b, 0xba, 0x82, 0x73, 0x2b, 0x6d, 0x52, 0xee,
0x41, 0xc2, 0xfa, 0x66, 0x6e, 0xf2, 0xdf, 0xad, 0xfa, 0x2f, 0xbe, 0x3e, 0x01, 0x58, 0xe2, 0x13,
0xf2, 0x7c, 0x81, 0xa9, 0xcc, 0x3f, 0xa9, 0x72, 0xe7, 0x49, 0x97, 0x28, 0x1b, 0xca, 0xe4, 0x98,
0x6f, 0x88, 0x83, 0x98, 0x30, 0x80, 0xac, 0x4a, 0x38, 0xa4, 0x0f, 0x56, 0x3c, 0x59, 0xfc, 0x0d,
0x6a, 0x48, 0x79, 0x81, 0x04, 0x03, 0xd3, 0x63, 0x7c, 0x32, 0x2a, 0xe1, 0xcc, 0x0f, 0x5b, 0xd0,
0xb8, 0x9b, 0x70, 0x82, 0x3d, 0x61, 0xa9, 0x5a, 0x28, 0xc7, 0xb0, 0x6d, 0x06, 0x26, 0x01, 0x26,
0x06, 0xf0, 0x53, 0x48, 0x7c, 0xd8, 0xa1, 0x4c, 0xe7, 0xda, 0x1c, 0x3d, 0x98, 0x0b, 0x1a, 0x21,
0x1f, 0x3e, 0x78, 0xf6, 0xf4, 0xe9, 0xd3, 0xe7, 0xec, 0x5d, 0x29, 0xcb, 0xc4, 0xac, 0x2b, 0x27,
0x53, 0xe6, 0x8c, 0x28, 0x6d, 0xa1, 0xac, 0xa5, 0x0a, 0x61, 0x27, 0xe8, 0x78, 0x06, 0xb5, 0x5e,
0x3a, 0xb6, 0xca, 0x24, 0xd5, 0x6f, 0x8e, 0xa9, 0x85, 0x9a, 0x26, 0x5c, 0x0d, 0x59, 0xaa, 0xd9,
0x9b, 0xab, 0x29, 0x03, 0x29, 0xb1, 0xb5, 0xae, 0x0d, 0x9b, 0x89, 0x72, 0x89, 0x45, 0x5a, 0xd0,
0x26, 0x64, 0x93, 0xf3, 0xcb, 0x90, 0x49, 0x97, 0x44, 0xac, 0x52, 0x65, 0xbf, 0xd7, 0x05, 0xd6,
0x8c, 0x89, 0xbb, 0xd8, 0x4a, 0x19, 0x48, 0xb3, 0x96, 0x0d, 0xae, 0xa6, 0xc7, 0x01, 0xb3, 0x7a,
0xee, 0x56, 0xc2, 0x48, 0xd6, 0x8c, 0x5c, 0x77, 0x30, 0xf7, 0x20, 0xcd, 0xf4, 0xa7, 0x2e, 0x19,
0xdf, 0x5c, 0xf9, 0xbc, 0x32, 0xe3, 0x6b, 0x04, 0xa3, 0xca, 0x0c, 0x40, 0xf8, 0x6a, 0x94, 0x9a,
0x13, 0x57, 0xd7, 0xb7, 0x22, 0xf2, 0xf8, 0xb0, 0x45, 0x67, 0xaa, 0x81, 0x1e, 0x0d, 0xc0, 0x0c,
0x66, 0x84, 0x0c, 0x39, 0xcf, 0xba, 0x89, 0x92, 0x61, 0xbc, 0xb2, 0x68, 0x54, 0xe4, 0x1c, 0x2b,
0x25, 0xa1, 0xa3, 0x99, 0xc8, 0xad, 0x6e, 0xf1, 0x76, 0x99, 0xc4, 0xe4, 0x60, 0x0c, 0x20, 0x61,
0x9d, 0xba, 0xbe, 0xb7, 0x6a, 0x9a, 0xc9, 0xcd, 0x1b, 0x9a, 0x0d, 0xea, 0x3c, 0x65, 0x33, 0x49,
0x73, 0x74, 0xb9, 0x80, 0x18, 0x8f, 0x25, 0xd4, 0x61, 0x32, 0x6c, 0x95, 0xa7, 0x11, 0x1d, 0x1b,
0xcd, 0xc6, 0xbd, 0x53, 0x65, 0x3b, 0x6b, 0x9a, 0x7d, 0xa5, 0x76, 0xc8, 0x00, 0x02, 0x39, 0x64,
0x1a, 0x2a, 0xcd, 0x4a, 0x01, 0x6f, 0x51, 0x32, 0xa4, 0x09, 0xf2, 0x1f, 0x76, 0x24, 0x78, 0x30,
0x72, 0x8e, 0xa2, 0xcb, 0x58, 0x73, 0x01, 0xd8, 0xa0, 0x49, 0xa8, 0xcf, 0xbc, 0xa3, 0x23, 0xb5,
0xcd, 0x69, 0xaa, 0x12, 0x24, 0x5b, 0x33, 0xcd, 0x10, 0xe6, 0x60, 0x80, 0x75, 0x63, 0x9d, 0xd7,
0xad, 0xe6, 0x5e, 0x7d, 0x4e, 0x61, 0xc2, 0xb6, 0xb4, 0x31, 0x29, 0xed, 0x8f, 0x86, 0xaa, 0x41,
0xfd, 0x54, 0x96, 0x6b, 0x26, 0x92, 0x84, 0xc2, 0x07, 0x4c, 0xde, 0xab, 0x57, 0x8a, 0x75, 0xdc,
0x44, 0xa7, 0xe9, 0xa4, 0x4c, 0xff, 0x22, 0x86, 0x57, 0xef, 0xdb, 0x18, 0xd2, 0xdf, 0x2b, 0x91,
0x80, 0x1e, 0x09, 0x72, 0xc8, 0xf9, 0x8b, 0x83, 0x6f, 0x27, 0x6d, 0xec, 0x8e, 0xf3, 0x7c, 0xab,
0x56, 0x94, 0x29, 0x6b, 0x87, 0x45, 0xe4, 0x16, 0x56, 0x00, 0xb8, 0xa4, 0xc4, 0xe8, 0xb0, 0x35,
0xe3, 0xff, 0xa3, 0x12, 0x8e, 0x77, 0xf0, 0xf6, 0xf0, 0x01, 0x63, 0x18, 0x83, 0xb4, 0x70, 0x08,
0xf2, 0xd2, 0xc7, 0x40, 0x51, 0x56, 0x24, 0x92, 0x46, 0x47, 0x30, 0x67, 0x33, 0x26, 0x76, 0x59,
0x4f, 0xcc, 0x93, 0x3d, 0x1e, 0x4f, 0xba, 0x2c, 0x6f, 0x08, 0x07, 0x54, 0xf3, 0x78, 0xfc, 0x17,
0xf4, 0xf8, 0x8e, 0x98, 0xae, 0x77, 0x29, 0xca, 0x5a, 0xe4, 0x3e, 0x2c, 0xdd, 0xd1, 0x0d, 0xef,
0x99, 0xf1, 0x59, 0x93, 0xc1, 0xc7, 0x26, 0xad, 0x55, 0xa9, 0xb1, 0xe9, 0xab, 0x08, 0xb6, 0x4c,
0x75, 0x7c, 0xc5, 0x37, 0x36, 0x11, 0x8b, 0xd6, 0x15, 0x48, 0xf0, 0x2d, 0x26, 0x3a, 0x6d, 0x5a,
0xa3, 0x44, 0xc7, 0xe2, 0x33, 0x87, 0x11, 0xba, 0x5c, 0x36, 0x6c, 0xd7, 0x8e, 0xeb, 0xac, 0x97,
0x21, 0xe1, 0x62, 0x3e, 0x6c, 0x01, 0x47, 0x37, 0x22, 0x9b, 0xbb, 0xd6, 0x8c, 0xea, 0x6b, 0xa7,
0xf6, 0x4e, 0x78, 0xfb, 0x3c, 0x1a, 0x8a, 0x4d, 0x20, 0xc6, 0xbd, 0x56, 0xdf, 0x66, 0xd1, 0x67,
0xe9, 0x8e, 0xd5, 0x7e, 0x60, 0x6f, 0x63, 0xee, 0x67, 0x32, 0x9f, 0x72, 0x15, 0xee, 0xa1, 0x8d,
0xbe, 0x31, 0xeb, 0xa0, 0xeb, 0xdd, 0x8f, 0xdd, 0x0f, 0x3b, 0x73, 0x6c, 0x1a, 0x4d, 0xe6, 0x11,
0x49, 0x09, 0xef, 0x58, 0x1d, 0xfc, 0x30, 0x7e, 0xe7, 0xb7, 0x6d, 0x10, 0x6d, 0x92, 0x72, 0xc3,
0x56, 0x5f, 0x87, 0xa2, 0xf3, 0x92, 0xb5, 0x68, 0x00, 0x9a, 0x16, 0x89, 0xde, 0x16, 0x0a, 0xc2,
0xab, 0x83, 0xe1, 0xd6, 0x3d, 0xe3, 0x16, 0x18, 0x1d, 0x16, 0xb7, 0x77, 0x6c, 0x11, 0xe9, 0xdd,
0x0f, 0xc9, 0xe1, 0xd7, 0x31, 0xf9, 0x4a, 0xe7, 0xbc, 0x17, 0x93, 0xc3, 0x70, 0xc7, 0xf8, 0x2f,
0x01, 0xd9, 0xc1, 0x83, 0x2a, 0xa8, 0xf7, 0xad, 0x12, 0x6a, 0x1c, 0xa1, 0x16, 0xd1, 0xa2, 0x33,
0xbc, 0x7d, 0xb9, 0xf2, 0xa5, 0x79, 0xf5, 0xcb, 0xd9, 0xdb, 0xf7, 0x6f, 0xcf, 0xa7, 0x67, 0x4d,
0xdf, 0x00, 0xdd, 0x1a, 0xea, 0x31, 0xf7, 0x9e, 0x88, 0x7c, 0x38, 0x7a, 0x74, 0x09, 0x6b, 0xa8,
0xf6, 0xb6, 0xbc, 0x42, 0x10, 0x69, 0xfc, 0x5e, 0xa3, 0x9b, 0xa0, 0x01, 0xce, 0x77, 0x69, 0x84,
0x81, 0xcb, 0x8d, 0xdc, 0xf3, 0xc4, 0xd8, 0x5e, 0xf4, 0xbc, 0xba, 0xb3, 0xc9, 0x75, 0xd4, 0xd6,
0xe5, 0xab, 0x7b, 0xe8, 0x3e, 0xdc, 0x50, 0xb7, 0xf5, 0xe4, 0x48, 0x04, 0x3c, 0xa3, 0xca, 0x4f,
0xd1, 0x9b, 0xa2, 0xae, 0x6a, 0x8e, 0x67, 0xb8, 0x60, 0x75, 0xa5, 0xd2, 0x96, 0x43, 0xf7, 0xa3,
0x05, 0x5a, 0x70, 0x56, 0xcf, 0x22, 0xdc, 0x1a, 0x87, 0x97, 0x5a, 0x97, 0x98, 0x0d, 0x6b, 0x74,
0xba, 0x21, 0x0d, 0x84, 0x43, 0xb4, 0x6e, 0x61, 0x16, 0xf4, 0x63, 0xca, 0x87, 0x59, 0x8e, 0x7e,
0xc9, 0xc7, 0xf4, 0xfa, 0xf2, 0x92, 0xb2, 0xa1, 0xc7, 0x6e, 0xa4, 0x21, 0xbe, 0x61, 0xfb, 0xd1,
0xc1, 0x93, 0x68, 0x7f, 0x6f, 0xf6, 0x53, 0x74, 0xf0, 0x13, 0xb9, 0x3f, 0x48, 0x02, 0x76, 0xb8,
0x7f, 0xf8, 0x98, 0x7d, 0x53, 0xd9, 0xb1, 0x32, 0x89, 0xd6, 0x7a, 0xa9, 0x64, 0xa3, 0x8b, 0xae,
0xad, 0xf0, 0x60, 0x58, 0x08, 0x55, 0x46, 0x51, 0xb4, 0x63, 0xcb, 0x11, 0xad, 0x1f, 0x15, 0xe8,
0x16, 0x48, 0x8d, 0xbb, 0x06, 0xfd, 0xec, 0x25, 0xb2, 0x9d, 0xed, 0xcd, 0x2c, 0xfb, 0x52, 0x17,
0x98, 0xa9, 0xd8, 0x71, 0x8d, 0x21, 0xd0, 0x6c, 0x6b, 0x19, 0x7f, 0x73, 0xa2, 0x40, 0xc0, 0xfb,
0x5d, 0xd6, 0xdd, 0x8f, 0xc4, 0xd1, 0x46, 0xee, 0xf7, 0xc8, 0x5a, 0xa9, 0xa5, 0x1a, 0xfa, 0xeb,
0x12, 0xdd, 0x12, 0x60, 0xdd, 0x1e, 0xda, 0xc1, 0x5e, 0x62, 0x64, 0xaa, 0xa8, 0x3e, 0xbf, 0x70,
0x71, 0x77, 0x2b, 0xc6, 0x15, 0x49, 0x17, 0x3f, 0x50, 0xbf, 0x92, 0x4d, 0x1f, 0xb1, 0x95, 0x4c,
0x14, 0xe8, 0xd6, 0xa1, 0x25, 0x2e, 0x37, 0x9e, 0xf6, 0x8e, 0x59, 0x56, 0xa3, 0x63, 0xfa, 0xb7,
0x7e, 0x28, 0x40, 0xef, 0xc3, 0x75, 0xc7, 0xac, 0x71, 0xff, 0x46, 0xb3, 0xd6, 0x8c, 0x26, 0x5e,
0xa4, 0x09, 0xfa, 0x42, 0xf3, 0xd3, 0x8c, 0xc7, 0xad, 0xdf, 0xa1, 0xd4, 0x6b, 0xa2, 0x78, 0xf0,
0xe3, 0x9e, 0x0f, 0xe5, 0xcb, 0xcc, 0xe0, 0x72, 0xab, 0xd0, 0x38, 0x26, 0x49, 0xb6, 0xa2, 0x9f,
0x06, 0xda, 0x3e, 0x7d, 0x81, 0x0e, 0x8e, 0x5b, 0x17, 0xd2, 0x0d, 0x46, 0x35, 0x63, 0xc6, 0x77,
0x81, 0x31, 0xcb, 0xf5, 0x0c, 0x31, 0xc7, 0xc5, 0xd9, 0x0c, 0x2f, 0xce, 0x5f, 0x9e, 0xbd, 0x99,
0x9c, 0x7d, 0x89, 0x75, 0xef, 0xf2, 0x7c, 0xca, 0xf2, 0x46, 0x93, 0x77, 0x10, 0xbd, 0xbd, 0x33,
0x74, 0x22, 0x0d, 0xbc, 0x82, 0x1b, 0xd6, 0x62, 0x42, 0x40, 0x2f, 0xc1, 0x35, 0xb5, 0xec, 0x48,
0xd0, 0xaa, 0x8a, 0x13, 0x5d, 0xf9, 0x2b, 0x3c, 0xf3, 0xb7, 0x72, 0xea, 0x72, 0xb4, 0xa5, 0x69,
0x29, 0x44, 0x11, 0x44, 0x90, 0xcd, 0xcf, 0x1e, 0xdf, 0x9c, 0xe7, 0xbf, 0x1c, 0xe7, 0x7b, 0xdf,
0x35, 0xcf, 0x0f, 0xa9, 0xd1, 0xe2, 0x83, 0xae, 0x31, 0x74, 0xa7, 0xa1, 0x5f, 0x56, 0xff, 0x07,
0xe9, 0x49, 0xe8, 0xfc, 0x69, 0x15, 0x00, 0x00
0x73, 0xc3, 0xf8, 0x27, 0x55, 0x50, 0xff, 0x66, 0xb5, 0xc9, 0x51, 0xe4, 0x9e, 0x2e, 0x12, 0x0b,
0x0e, 0x7d, 0x8e, 0x8d, 0x7e, 0xc3, 0x68, 0xd8, 0xcc, 0x1b, 0x44, 0xe6, 0xe0, 0x48, 0xd2, 0x1c,
0x73, 0xa0, 0x85, 0xde, 0x3e, 0x47, 0x5d, 0xf4, 0x98, 0xc2, 0x33, 0x7d, 0xfb, 0x60, 0x79, 0x3b,
0x8f, 0x4c, 0xe6, 0x9c, 0x61, 0x1a, 0xc8, 0x34, 0x56, 0x2a, 0x6d, 0x69, 0x38, 0x48, 0xd5, 0x0d,
0xf3, 0xa4, 0x12, 0x83, 0xe3, 0x00, 0xc7, 0xea, 0xf6, 0xbb, 0x4c, 0xe6, 0xd5, 0x09, 0x8d, 0x2a,
0x08, 0x9c, 0x43, 0x34, 0xa8, 0xdd, 0xc4, 0xbc, 0x79, 0xe0, 0xd0, 0x9a, 0xe4, 0x2a, 0x59, 0xc6,
0xfc, 0x35, 0xa9, 0x7d, 0x31, 0x1a, 0x36, 0x0b, 0x30, 0x0d, 0x22, 0xc6, 0xf7, 0x9f, 0xe9, 0x6d,
0x0e, 0x9d, 0xd0, 0x21, 0xaa, 0xa0, 0xed, 0xb9, 0x5b, 0x27, 0x6c, 0x3d, 0x2b, 0x14, 0x6c, 0x9c,
0x88, 0x1b, 0xb9, 0xdd, 0x92, 0x99, 0x4e, 0x7c, 0x76, 0x38, 0xee, 0x4d, 0xda, 0xc9, 0x81, 0x3d,
0x64, 0xef, 0x7c, 0x9f, 0xa7, 0xfc, 0xac, 0x2b, 0x60, 0x73, 0x38, 0xee, 0xc6, 0x1a, 0x76, 0x7d,
0xfe, 0xe6, 0x88, 0x8d, 0x54, 0x59, 0xd5, 0xae, 0x15, 0x5d, 0xc1, 0xb9, 0x95, 0x36, 0x29, 0xf7,
0x20, 0x61, 0x7d, 0x33, 0x37, 0xf9, 0xef, 0x56, 0xfd, 0x17, 0x5f, 0x9f, 0x00, 0x2c, 0xf1, 0x09,
0x79, 0xbe, 0xc0, 0x54, 0xe6, 0x9f, 0x54, 0xb9, 0xf3, 0xa4, 0x4b, 0x94, 0x0d, 0x65, 0x72, 0xcc,
0x37, 0xc4, 0x41, 0x4c, 0x18, 0x40, 0x56, 0x25, 0x1c, 0xd2, 0x07, 0x2b, 0x9e, 0x2c, 0xfe, 0x06,
0x35, 0xa4, 0xbc, 0x40, 0x82, 0x81, 0xe9, 0x31, 0x3e, 0x19, 0x95, 0x70, 0xe6, 0x87, 0x2d, 0x68,
0xdc, 0x4d, 0x38, 0xc1, 0x9e, 0xb0, 0x54, 0x2d, 0x94, 0x63, 0xd8, 0x36, 0x03, 0x93, 0x00, 0x13,
0x03, 0xf8, 0x29, 0x24, 0x3e, 0xec, 0x50, 0xa6, 0x73, 0x6d, 0x8e, 0x1e, 0xcc, 0x05, 0x8d, 0x90,
0x0f, 0x1f, 0x3c, 0x7b, 0xfa, 0xf4, 0xe9, 0x73, 0xf6, 0xae, 0x94, 0x65, 0x62, 0xd6, 0x95, 0x93,
0x29, 0x73, 0x46, 0x94, 0xb6, 0x50, 0xd6, 0x52, 0x85, 0xb0, 0x13, 0x74, 0x3c, 0x83, 0x5a, 0x2f,
0x1d, 0x5b, 0x65, 0x92, 0xea, 0x37, 0xc7, 0xd4, 0x42, 0x4d, 0x13, 0xae, 0x86, 0x2c, 0xd5, 0xec,
0xcd, 0xd5, 0x94, 0x81, 0x94, 0xd8, 0x5a, 0xd7, 0x86, 0xcd, 0x44, 0xb9, 0xc4, 0x22, 0x2d, 0x68,
0x13, 0xb2, 0xc9, 0xf9, 0x65, 0xc8, 0xa4, 0x4b, 0x22, 0x56, 0xa9, 0xb2, 0xdf, 0xeb, 0x02, 0x6b,
0xc6, 0xc4, 0x5d, 0x6c, 0xa5, 0x0c, 0xa4, 0x59, 0xcb, 0x06, 0x57, 0xd3, 0xe3, 0x80, 0x59, 0x3d,
0x77, 0x2b, 0x61, 0x24, 0x6b, 0x46, 0xae, 0x3b, 0x98, 0x7b, 0x90, 0x66, 0xfa, 0x53, 0x97, 0x8c,
0x6f, 0xae, 0x7c, 0x5e, 0x99, 0xf1, 0x35, 0x82, 0x51, 0x65, 0x06, 0x20, 0x7c, 0x35, 0x4a, 0xcd,
0x89, 0xab, 0xeb, 0x5b, 0x11, 0x79, 0x7c, 0xd8, 0xa2, 0x33, 0xd5, 0x40, 0x8f, 0x06, 0x60, 0x06,
0x33, 0x42, 0x86, 0x9c, 0x67, 0xdd, 0x44, 0xc9, 0x30, 0x5e, 0x59, 0x34, 0x2a, 0x72, 0x8e, 0x95,
0x92, 0xd0, 0xd1, 0x4c, 0xe4, 0x56, 0xb7, 0x78, 0xbb, 0x4c, 0x62, 0x72, 0x30, 0x06, 0x90, 0xb0,
0x4e, 0x5d, 0xdf, 0x5b, 0x35, 0xcd, 0xe4, 0xe6, 0x0d, 0xcd, 0x06, 0x75, 0x9e, 0xb2, 0x99, 0xa4,
0x39, 0xba, 0x5c, 0x40, 0x8c, 0xc7, 0x12, 0xea, 0x30, 0x19, 0xb6, 0xca, 0xd3, 0x88, 0x8e, 0x8d,
0x66, 0xe3, 0xde, 0xa9, 0xb2, 0x9d, 0x35, 0xcd, 0xbe, 0x52, 0x3b, 0x64, 0x00, 0x81, 0x1c, 0x32,
0x0d, 0x95, 0x66, 0xa5, 0x80, 0xb7, 0x28, 0x19, 0xd2, 0x04, 0xf9, 0x0f, 0x3b, 0x12, 0x3c, 0x18,
0x39, 0x47, 0xd1, 0x65, 0xac, 0xb9, 0x00, 0x6c, 0xd0, 0x24, 0xd4, 0x67, 0xde, 0xd1, 0x91, 0xda,
0xe6, 0x34, 0x55, 0x09, 0x92, 0xad, 0x99, 0x66, 0x08, 0x73, 0x30, 0xc0, 0xba, 0xb1, 0xce, 0xeb,
0x56, 0x73, 0xaf, 0x3e, 0xa7, 0x30, 0x61, 0x5b, 0xda, 0x98, 0x94, 0xf6, 0x47, 0x43, 0xd5, 0xa0,
0x7e, 0x2a, 0xcb, 0x35, 0x13, 0x49, 0x42, 0xe1, 0x03, 0x26, 0xef, 0xd5, 0x2b, 0xc5, 0x3a, 0x6e,
0xa2, 0xd3, 0x74, 0x52, 0xa6, 0x7f, 0x11, 0xc3, 0xab, 0xf7, 0x6d, 0x0c, 0xe9, 0xef, 0x95, 0x48,
0x40, 0x8f, 0x04, 0x39, 0xe4, 0xfc, 0xc5, 0xc1, 0xb7, 0x93, 0x36, 0x76, 0xc7, 0x79, 0xbe, 0x55,
0x2b, 0xca, 0x94, 0xb5, 0xc3, 0x22, 0x72, 0x0b, 0x2b, 0x00, 0x5c, 0x52, 0x62, 0x74, 0xd8, 0x9a,
0xf1, 0xff, 0x51, 0x09, 0xc7, 0x3b, 0x78, 0x7b, 0xf8, 0x80, 0x31, 0x8c, 0x41, 0x5a, 0x38, 0x04,
0x79, 0xe9, 0x63, 0xa0, 0x28, 0x2b, 0x12, 0x49, 0xa3, 0x23, 0x98, 0xb3, 0x19, 0x13, 0xbb, 0xac,
0x27, 0xe6, 0xc9, 0x1e, 0x8f, 0x27, 0x5d, 0x96, 0x37, 0x84, 0x03, 0xaa, 0x79, 0x3c, 0xfe, 0x0b,
0x7a, 0x7c, 0x47, 0x4c, 0xd7, 0xbb, 0x14, 0x65, 0x2d, 0x72, 0x1f, 0x96, 0xee, 0xe8, 0x86, 0xf7,
0xcc, 0xf8, 0xac, 0xc9, 0xe0, 0x63, 0x93, 0xd6, 0xaa, 0xd4, 0xd8, 0xf4, 0x55, 0x04, 0x5b, 0xa6,
0x3a, 0xbe, 0xe2, 0x1b, 0x9b, 0x88, 0x45, 0xeb, 0x0a, 0x24, 0xf8, 0x16, 0x13, 0x9d, 0x36, 0xad,
0x51, 0xa2, 0x63, 0xf1, 0x99, 0xc3, 0x08, 0x5d, 0x2e, 0x1b, 0xb6, 0x6b, 0xc7, 0x75, 0xd6, 0xcb,
0x90, 0x70, 0x31, 0x1f, 0xb6, 0x80, 0xa3, 0x1b, 0x91, 0xcd, 0x5d, 0x6b, 0x46, 0xf5, 0xb5, 0x53,
0x7b, 0x27, 0xbc, 0x7d, 0x1e, 0x0d, 0xc5, 0x26, 0x10, 0xe3, 0x5e, 0xab, 0x6f, 0xb3, 0xe8, 0xb3,
0x74, 0xc7, 0x6a, 0x3f, 0xb0, 0xb7, 0x31, 0xf7, 0x33, 0x99, 0x4f, 0xb9, 0x0a, 0xf7, 0xd0, 0x46,
0xdf, 0x98, 0x75, 0xd0, 0xf5, 0xee, 0xc7, 0xee, 0x87, 0x9d, 0x39, 0x36, 0x8d, 0x26, 0xf3, 0x88,
0xa4, 0x84, 0x77, 0xac, 0x0e, 0x7e, 0x18, 0xbf, 0xf3, 0xdb, 0x36, 0x88, 0x36, 0x49, 0xb9, 0x61,
0xab, 0xaf, 0x43, 0xd1, 0x79, 0xc9, 0x5a, 0x34, 0x00, 0x4d, 0x8b, 0x44, 0x6f, 0x0b, 0x05, 0xe1,
0xd5, 0xc1, 0x70, 0xeb, 0x9e, 0x71, 0x0b, 0x8c, 0x0e, 0x8b, 0xdb, 0x3b, 0xb6, 0x88, 0xf4, 0xee,
0x87, 0xe4, 0xf0, 0xeb, 0x98, 0x7c, 0xa5, 0x73, 0xde, 0x8b, 0xc9, 0x61, 0xb8, 0x63, 0xfc, 0x97,
0x80, 0xec, 0xe0, 0x41, 0x15, 0xd4, 0xfb, 0x56, 0x09, 0x35, 0x8e, 0x50, 0x8b, 0x68, 0xd1, 0x19,
0xde, 0xbe, 0x5c, 0xf9, 0xd2, 0xbc, 0xfa, 0xe5, 0xec, 0xed, 0xfb, 0xb7, 0xe7, 0xd3, 0xb3, 0xa6,
0x6f, 0x80, 0x6e, 0x0d, 0xf5, 0x98, 0x7b, 0x4f, 0x44, 0x3e, 0x1c, 0x3d, 0xba, 0x84, 0x35, 0x54,
0x7b, 0x5b, 0x5e, 0x21, 0x88, 0x34, 0x7e, 0xaf, 0xd1, 0x4d, 0xd0, 0x00, 0xe7, 0xbb, 0x34, 0xc2,
0xc0, 0xe5, 0x46, 0xee, 0x79, 0x62, 0x6c, 0x2f, 0x7a, 0x5e, 0xdd, 0xd9, 0xe4, 0x3a, 0x6a, 0xeb,
0xf2, 0xd5, 0x3d, 0x74, 0x1f, 0x6e, 0xa8, 0xdb, 0x7a, 0x72, 0x24, 0x02, 0x9e, 0x51, 0xe5, 0xa7,
0xe8, 0x4d, 0x51, 0x57, 0x35, 0xc7, 0x33, 0x5c, 0xb0, 0xba, 0x52, 0x69, 0xcb, 0xa1, 0xfb, 0xd1,
0x02, 0x2d, 0x38, 0xab, 0x67, 0x11, 0x6e, 0x8d, 0xc3, 0x4b, 0xad, 0x4b, 0xcc, 0x86, 0x35, 0x3a,
0xdd, 0x90, 0x06, 0xc2, 0x21, 0x5a, 0xb7, 0x30, 0x0b, 0xfa, 0x31, 0xe5, 0xc3, 0x2c, 0x47, 0xbf,
0xe4, 0x63, 0x7a, 0x7d, 0x79, 0x49, 0xd9, 0xd0, 0x63, 0x37, 0xd2, 0x10, 0xdf, 0xb0, 0xfd, 0xe8,
0xe0, 0x49, 0xb4, 0xbf, 0x37, 0x3b, 0x88, 0x0e, 0xfe, 0x41, 0xee, 0x0f, 0x92, 0x80, 0x1d, 0xee,
0x1f, 0x3e, 0x66, 0xdf, 0x54, 0x76, 0xac, 0x4c, 0xa2, 0xb5, 0x5e, 0x2a, 0xd9, 0xe8, 0xa2, 0x6b,
0x2b, 0x3c, 0x18, 0x16, 0x42, 0x95, 0x51, 0x14, 0xed, 0xd8, 0x72, 0x44, 0xeb, 0x47, 0x05, 0xba,
0x05, 0x52, 0xe3, 0xae, 0x41, 0x3f, 0x7b, 0x89, 0x6c, 0x67, 0x7b, 0x33, 0xcb, 0xbe, 0xd4, 0x05,
0x66, 0x2a, 0x76, 0x5c, 0x63, 0x08, 0x34, 0xdb, 0x5a, 0xc6, 0xdf, 0x9c, 0x28, 0x10, 0xf0, 0x7e,
0x97, 0x75, 0xf7, 0x23, 0x71, 0xb4, 0x91, 0xfb, 0x3d, 0xb2, 0x56, 0x6a, 0xa9, 0x86, 0xfe, 0xba,
0x44, 0xb7, 0x04, 0x58, 0xb7, 0x87, 0x76, 0xb0, 0x97, 0x18, 0x99, 0x2a, 0xaa, 0xcf, 0x2f, 0x5c,
0xdc, 0xdd, 0x8a, 0x71, 0x45, 0xd2, 0xc5, 0x0f, 0xd4, 0xaf, 0x64, 0xd3, 0x47, 0x6c, 0x25, 0x13,
0x05, 0xba, 0x75, 0x68, 0x89, 0xcb, 0x8d, 0xa7, 0xbd, 0x63, 0x96, 0xd5, 0xe8, 0x98, 0xfe, 0xad,
0x1f, 0x0a, 0xd0, 0xfb, 0x70, 0xdd, 0x31, 0x6b, 0xdc, 0xbf, 0xd1, 0xac, 0x35, 0xa3, 0x89, 0x17,
0x69, 0x82, 0xbe, 0xd0, 0xfc, 0x34, 0xe3, 0x71, 0xeb, 0x77, 0x28, 0xf5, 0x9a, 0x28, 0x1e, 0xfc,
0xb8, 0xe7, 0x43, 0xf9, 0x32, 0x33, 0xb8, 0xdc, 0x2a, 0x34, 0x8e, 0x49, 0x92, 0xad, 0xe8, 0xa7,
0x81, 0xb6, 0x4f, 0x5f, 0xa0, 0x83, 0xe3, 0xd6, 0x85, 0x74, 0x83, 0x51, 0xcd, 0x98, 0xf1, 0x5d,
0x60, 0xcc, 0x72, 0x3d, 0x43, 0xcc, 0x71, 0x71, 0x36, 0xc3, 0x8b, 0xf3, 0x97, 0x67, 0x6f, 0x26,
0x67, 0x5f, 0x62, 0xdd, 0xbb, 0x3c, 0x9f, 0xb2, 0xbc, 0xd1, 0xe4, 0x1d, 0x44, 0x6f, 0xef, 0x0c,
0x9d, 0x48, 0x03, 0xaf, 0xe0, 0x86, 0xb5, 0x98, 0x10, 0xd0, 0x4b, 0x70, 0x4d, 0x2d, 0x3b, 0x12,
0xb4, 0xaa, 0xe2, 0x44, 0x57, 0xfe, 0x0a, 0xcf, 0xfc, 0xad, 0x9c, 0xba, 0x1c, 0x6d, 0x69, 0x5a,
0x0a, 0x51, 0x04, 0x11, 0x64, 0xf3, 0xb3, 0xc7, 0x37, 0xe7, 0xf9, 0x2f, 0xc7, 0xf9, 0xde, 0x77,
0xcd, 0xf3, 0x43, 0x6a, 0xb4, 0xf8, 0xa0, 0x6b, 0x0c, 0xdd, 0x69, 0xe8, 0x97, 0xd5, 0xff, 0x01,
0xee, 0x62, 0x1f, 0xb3, 0x69, 0x15, 0x00, 0x00
};
@@ -1880,136 +1880,206 @@ const uint8_t PAGE_settings_um[] PROGMEM = {
// Autogenerated from wled00/data/settings_2D.htm, do not edit!!
const uint16_t PAGE_settings_2D_length = 2046;
const uint16_t PAGE_settings_2D_length = 3167;
const uint8_t PAGE_settings_2D[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x9d, 0x58, 0x5b, 0x73, 0xdb, 0x36,
0x16, 0x7e, 0xe7, 0xaf, 0x80, 0xd1, 0x6e, 0x86, 0x8c, 0x29, 0x4a, 0x72, 0xdb, 0x4c, 0x46, 0x22,
0xe9, 0x8d, 0x2f, 0x5b, 0x79, 0xc7, 0x6e, 0x34, 0x51, 0xd6, 0x8e, 0x67, 0xb3, 0xd3, 0x42, 0x24,
0x28, 0x21, 0x26, 0x01, 0x0e, 0x00, 0xc9, 0x76, 0x1d, 0xff, 0xf7, 0x1e, 0x80, 0x94, 0x44, 0xdd,
0x12, 0x6f, 0x5f, 0x6c, 0xf3, 0xe0, 0xdc, 0x70, 0xae, 0x1f, 0x1c, 0x1e, 0x9c, 0xbd, 0x3f, 0xfd,
0x78, 0x3b, 0x3c, 0x47, 0x53, 0x5d, 0xe4, 0x71, 0x68, 0x7e, 0xa2, 0x9c, 0xf0, 0x49, 0x84, 0x29,
0xc7, 0xf0, 0x4d, 0x49, 0x1a, 0x87, 0x05, 0xd5, 0x04, 0x25, 0x53, 0x22, 0x15, 0xd5, 0x11, 0x9e,
0xe9, 0xac, 0xf5, 0x16, 0xd7, 0x54, 0x87, 0x93, 0x82, 0x46, 0x78, 0xce, 0xe8, 0x7d, 0x29, 0xa4,
0xc6, 0x28, 0x11, 0x5c, 0x53, 0x0e, 0x6c, 0xf7, 0x2c, 0xd5, 0xd3, 0xe8, 0x97, 0x4e, 0x67, 0xc9,
0xba, 0x71, 0x94, 0xd2, 0x39, 0x4b, 0x68, 0xcb, 0x7e, 0xf8, 0x8c, 0x33, 0xcd, 0x48, 0xde, 0x52,
0x09, 0xc9, 0x69, 0xd4, 0xf5, 0x0b, 0xf2, 0xc0, 0x8a, 0x59, 0xb1, 0xfc, 0x9e, 0x29, 0x2a, 0xed,
0x07, 0x19, 0xc3, 0x37, 0x17, 0x78, 0xcb, 0x72, 0x1c, 0x6a, 0xa6, 0x73, 0x1a, 0x1f, 0x9d, 0xa1,
0x11, 0xd5, 0xad, 0x59, 0x19, 0xb6, 0x2b, 0x42, 0xa8, 0x12, 0xc9, 0x4a, 0x1d, 0x3b, 0x73, 0x22,
0x51, 0x2e, 0x12, 0x56, 0xfa, 0x69, 0x94, 0x8a, 0x64, 0x56, 0x80, 0x33, 0x3e, 0x10, 0xa2, 0x03,
0x6b, 0x6f, 0x48, 0x38, 0xcd, 0x55, 0xf4, 0xe6, 0xe7, 0x7e, 0x36, 0xe3, 0x89, 0x66, 0x82, 0xa3,
0x81, 0xeb, 0x3d, 0xdd, 0x33, 0x9e, 0x8a, 0xfb, 0x40, 0x94, 0x94, 0xbb, 0x78, 0xaa, 0x75, 0xa9,
0x7a, 0xed, 0x76, 0x51, 0x04, 0x77, 0x5c, 0x04, 0xf7, 0x39, 0x4d, 0x83, 0x09, 0x6d, 0x67, 0x94,
0xe8, 0x99, 0xa4, 0xaa, 0x7d, 0x74, 0x86, 0xbd, 0xe7, 0xa5, 0xf8, 0xc9, 0xa6, 0x78, 0x1b, 0x02,
0xa8, 0x19, 0x9f, 0x28, 0xec, 0xe3, 0xdf, 0x15, 0xcd, 0xb3, 0x26, 0xf7, 0xe4, 0x22, 0x75, 0xa9,
0xf7, 0x24, 0x29, 0xa8, 0xe2, 0xc8, 0xe8, 0xd5, 0xe7, 0x39, 0x35, 0x4e, 0x9e, 0x3c, 0xda, 0xa3,
0x15, 0x6b, 0x2e, 0x48, 0xfa, 0xef, 0x91, 0x4b, 0x7d, 0x1e, 0x1d, 0x74, 0xbc, 0xa7, 0x9c, 0x6a,
0xa4, 0xa3, 0x34, 0x48, 0x24, 0xf8, 0x41, 0x6b, 0x21, 0x17, 0x57, 0xf7, 0xc6, 0x5e, 0x5f, 0x07,
0x60, 0xf7, 0x9d, 0xd6, 0x92, 0x8d, 0x67, 0x9a, 0xc2, 0x81, 0x4c, 0xb0, 0x4f, 0x3d, 0x7f, 0x93,
0xae, 0x1f, 0x4b, 0x0a, 0x9e, 0x69, 0xfa, 0xa0, 0xdb, 0x5f, 0xc8, 0x9c, 0x2c, 0x14, 0x6c, 0x31,
0x12, 0xf5, 0xc8, 0x41, 0x05, 0xf7, 0xfc, 0x34, 0x18, 0x8b, 0xf4, 0x31, 0x20, 0x25, 0xdc, 0x2f,
0x3d, 0x9d, 0xb2, 0x3c, 0x75, 0xb5, 0xe1, 0x27, 0x69, 0x7a, 0x3e, 0x07, 0x2f, 0x2e, 0x99, 0x82,
0x9c, 0x53, 0xe9, 0x62, 0xe3, 0x33, 0xf6, 0x5d, 0x2f, 0x8a, 0x9f, 0x7e, 0xa5, 0xfa, 0xda, 0xf5,
0xfc, 0xff, 0x5c, 0xc0, 0x8f, 0x51, 0x16, 0x5c, 0x0d, 0x4f, 0x37, 0xf4, 0x43, 0x36, 0xf0, 0x2a,
0x25, 0xde, 0xf3, 0x6e, 0x8d, 0x54, 0x4a, 0x21, 0xe1, 0x22, 0xa0, 0x11, 0x4a, 0x4b, 0x89, 0x9c,
0x06, 0xb9, 0x98, 0xb8, 0xf8, 0xdc, 0xd0, 0x51, 0x1d, 0x26, 0x88, 0x36, 0xca, 0x58, 0x4e, 0xed,
0x85, 0xa1, 0x96, 0x24, 0x04, 0xe6, 0xb2, 0xa6, 0x8b, 0xcc, 0x94, 0x6b, 0xc6, 0x26, 0x33, 0x49,
0x6c, 0x5c, 0xab, 0x0b, 0xa3, 0x8c, 0x30, 0x93, 0xd8, 0xcf, 0xfc, 0x82, 0x27, 0xa2, 0x28, 0x21,
0xbc, 0x14, 0x95, 0x64, 0x42, 0x51, 0x4a, 0x34, 0x39, 0x80, 0x9c, 0x35, 0x52, 0x31, 0x82, 0x1c,
0x63, 0x63, 0xa0, 0x87, 0xa3, 0xa8, 0x4e, 0x36, 0xd4, 0x94, 0xd5, 0x17, 0x94, 0x52, 0x68, 0x91,
0x88, 0xfc, 0xd5, 0x2b, 0xd7, 0xd6, 0x59, 0xc7, 0x77, 0x6d, 0x01, 0x46, 0x86, 0x23, 0x1f, 0x69,
0x21, 0x41, 0xab, 0x49, 0xf4, 0x85, 0xa6, 0x85, 0x09, 0x51, 0x72, 0x51, 0x62, 0xcf, 0xfb, 0xfa,
0xb5, 0x66, 0x03, 0xf9, 0xa2, 0x04, 0x87, 0xff, 0x05, 0xfa, 0xd1, 0x95, 0x48, 0x69, 0x80, 0x86,
0x39, 0x25, 0x8a, 0x22, 0x08, 0x04, 0x95, 0xe8, 0xe6, 0xf2, 0xfc, 0x0c, 0x5d, 0x0c, 0xc1, 0x25,
0x7f, 0x4d, 0xa3, 0x5a, 0xd7, 0xe8, 0x5b, 0x6d, 0x9e, 0x67, 0xb8, 0x6c, 0xe1, 0x18, 0xf5, 0xc7,
0xb6, 0x98, 0xa1, 0x96, 0xf1, 0xa1, 0x3d, 0xee, 0x61, 0xec, 0x1d, 0xae, 0x2a, 0xb4, 0xad, 0x82,
0x2f, 0xea, 0xb8, 0x8c, 0xba, 0x1d, 0xec, 0x1f, 0x74, 0x1b, 0x17, 0x36, 0x59, 0x7b, 0x62, 0x99,
0x8b, 0x3b, 0x70, 0xe1, 0xc8, 0x14, 0x2d, 0x56, 0xe0, 0x25, 0xf6, 0x82, 0x39, 0xc9, 0x67, 0xd4,
0xab, 0xeb, 0xd7, 0x1e, 0x14, 0x65, 0xca, 0xe6, 0x70, 0xa2, 0xf4, 0x23, 0x24, 0x27, 0x65, 0xaa,
0xcc, 0xc9, 0x63, 0x84, 0xb9, 0xe0, 0x90, 0x8f, 0xb9, 0x60, 0x29, 0x82, 0xa6, 0xa1, 0xba, 0x4a,
0xb3, 0xeb, 0xf5, 0xbf, 0x25, 0x34, 0x06, 0x2f, 0xef, 0xf0, 0xca, 0x0f, 0xa8, 0x87, 0x85, 0x9c,
0x6d, 0x00, 0x1a, 0x95, 0x66, 0x40, 0x5d, 0x40, 0xe5, 0xa7, 0x41, 0x5d, 0x55, 0x95, 0x47, 0xd0,
0x25, 0x56, 0x71, 0x69, 0xd9, 0x41, 0x73, 0x62, 0xea, 0x54, 0x52, 0x1e, 0xe4, 0x94, 0x4f, 0xf4,
0xb4, 0x0f, 0xb7, 0xe1, 0x21, 0xf5, 0x32, 0x21, 0xdd, 0xaa, 0x95, 0x78, 0x5f, 0x87, 0xb4, 0xaf,
0x0f, 0x0f, 0xbd, 0x85, 0x15, 0xa8, 0x6a, 0xcb, 0x16, 0x6f, 0xb0, 0xc5, 0xc0, 0xd6, 0x6a, 0xc1,
0xa5, 0x8b, 0x8a, 0xcd, 0xdb, 0x76, 0xd0, 0xa5, 0x51, 0xdd, 0xa3, 0x1b, 0x7e, 0x58, 0x85, 0x9b,
0xce, 0xc4, 0xd1, 0xaa, 0xee, 0xab, 0x50, 0xf6, 0x2b, 0x63, 0x7f, 0x84, 0x10, 0x16, 0xc4, 0xd2,
0x08, 0x97, 0x3c, 0xff, 0xf1, 0x89, 0x3e, 0x9b, 0xf1, 0x2c, 0x51, 0x92, 0x13, 0xa5, 0x22, 0xac,
0x8a, 0x1c, 0xc7, 0x56, 0x0c, 0x99, 0xb3, 0x70, 0x2c, 0xe3, 0xcf, 0xbc, 0x1b, 0xaa, 0x59, 0x19,
0x2b, 0x1d, 0xb6, 0xcd, 0x6f, 0x04, 0xc5, 0xd2, 0x43, 0x21, 0x8c, 0x1d, 0x9a, 0x80, 0x2f, 0x76,
0x7a, 0x0e, 0x0d, 0xf3, 0x09, 0x06, 0xde, 0xcf, 0x3a, 0x14, 0xa5, 0xf5, 0xdb, 0x06, 0x2d, 0x82,
0xf4, 0xc6, 0x1f, 0x05, 0x0c, 0xd1, 0x8a, 0xba, 0x8b, 0xa3, 0x8b, 0xe3, 0x13, 0xa1, 0xb5, 0x28,
0x1a, 0x4c, 0x60, 0xca, 0xea, 0x8f, 0x77, 0xd8, 0xf9, 0xb0, 0xcf, 0xce, 0x25, 0xcd, 0xf4, 0x77,
0x0c, 0x7d, 0x60, 0x93, 0xa9, 0xde, 0x69, 0xc7, 0xde, 0xf4, 0xbd, 0x64, 0xd0, 0x11, 0xb6, 0xe9,
0x76, 0x5e, 0xf1, 0x7a, 0x9f, 0xe9, 0x81, 0x90, 0xec, 0x4f, 0xd8, 0x4b, 0x24, 0xff, 0x8e, 0x03,
0xd7, 0x30, 0x39, 0x58, 0xb2, 0xc6, 0xb6, 0xe1, 0xc3, 0x88, 0x4a, 0x18, 0x82, 0xd0, 0x3c, 0x14,
0x5c, 0x60, 0xbc, 0x9c, 0x41, 0xd6, 0x60, 0xa0, 0x46, 0x38, 0x99, 0xd2, 0xe4, 0x6e, 0x2c, 0x1e,
0x70, 0xd3, 0xa3, 0x11, 0xae, 0xc5, 0xce, 0x18, 0x4c, 0x6b, 0x05, 0x1a, 0x15, 0x72, 0x6f, 0x1e,
0x06, 0xde, 0x52, 0xd8, 0xa4, 0xda, 0xb2, 0xde, 0xac, 0x09, 0xc2, 0x57, 0xa5, 0x96, 0xcf, 0x8a,
0x31, 0x95, 0x18, 0x15, 0x8c, 0x1b, 0x0f, 0x11, 0xd4, 0x0d, 0xfc, 0x3e, 0x7a, 0x8b, 0x17, 0x5e,
0xff, 0xf8, 0xb4, 0xde, 0x11, 0xc3, 0x9b, 0xba, 0x21, 0xa0, 0x74, 0xd0, 0xc3, 0x96, 0x99, 0xc1,
0x9a, 0x99, 0xc1, 0xdf, 0x37, 0x33, 0x58, 0x99, 0xa9, 0xb3, 0x93, 0x65, 0xd0, 0xe5, 0xe8, 0x53,
0x6f, 0xd3, 0xe4, 0xa7, 0x35, 0x93, 0x9f, 0x76, 0x9a, 0xec, 0xd4, 0x26, 0x8f, 0x7e, 0x79, 0x83,
0x1b, 0x89, 0xfb, 0xcc, 0x6f, 0xb7, 0xd4, 0xdd, 0xae, 0xa9, 0xbb, 0xfd, 0x7f, 0xd4, 0x19, 0x47,
0x43, 0x16, 0xbb, 0xa2, 0x72, 0x35, 0x83, 0xc1, 0x8b, 0xb4, 0x28, 0x5b, 0x39, 0x94, 0x26, 0x2c,
0x09, 0x09, 0x0b, 0x07, 0x31, 0x8e, 0x7e, 0x30, 0x4d, 0xa4, 0xbc, 0xb0, 0xcd, 0x6c, 0xfe, 0xa1,
0x23, 0xe3, 0x3f, 0xfa, 0x3c, 0x60, 0x1c, 0xe0, 0x89, 0x7e, 0x97, 0x7e, 0x21, 0x09, 0x54, 0xc0,
0xe0, 0xe3, 0xd5, 0xa5, 0x8b, 0xc7, 0x14, 0x06, 0x05, 0x85, 0xad, 0x88, 0x7d, 0xdd, 0x98, 0x0a,
0xab, 0x49, 0x51, 0x4f, 0xad, 0xdd, 0xa3, 0xa9, 0x6f, 0xc0, 0x0a, 0x8f, 0xe8, 0x62, 0x44, 0xf1,
0x30, 0xea, 0x7e, 0xfd, 0x4a, 0xff, 0xcb, 0x5b, 0xdd, 0xff, 0x05, 0xa0, 0x43, 0xcc, 0xa9, 0xbb,
0xa6, 0xb5, 0x31, 0x46, 0x9f, 0xd6, 0xe7, 0x5f, 0xd4, 0xed, 0x7f, 0xd3, 0xd2, 0x62, 0x9e, 0x35,
0xad, 0xc5, 0x9d, 0x3e, 0x87, 0xb1, 0xb6, 0xd7, 0xde, 0x04, 0xd0, 0x8c, 0x81, 0x2a, 0xcd, 0xe1,
0x6d, 0x3c, 0xde, 0x1e, 0xc2, 0x83, 0xd5, 0x10, 0xde, 0x3c, 0xba, 0x5e, 0x1c, 0xe9, 0x88, 0xbe,
0xe6, 0xfd, 0x0d, 0xaf, 0xb5, 0x55, 0x98, 0x47, 0x55, 0x4d, 0x8d, 0x02, 0xdb, 0x45, 0x34, 0xf5,
0x89, 0xa9, 0x42, 0xd8, 0x3c, 0x15, 0xbd, 0xd6, 0xe1, 0x8b, 0x35, 0xea, 0x49, 0x4d, 0x65, 0x6b,
0xd4, 0x0f, 0x35, 0x55, 0x46, 0x7b, 0xfa, 0xc2, 0x57, 0xd1, 0x9e, 0x52, 0xf6, 0xcb, 0x88, 0x1c,
0xf3, 0x1e, 0xf5, 0x67, 0xf0, 0x9b, 0xf6, 0x56, 0x41, 0x83, 0xd9, 0x0e, 0x37, 0xeb, 0xf4, 0x69,
0x38, 0xeb, 0x53, 0xd8, 0x17, 0xab, 0xe5, 0xd0, 0x81, 0x1d, 0x52, 0x9a, 0x1d, 0xe2, 0x73, 0xa0,
0x3f, 0xd1, 0xd7, 0x3a, 0x5c, 0x4e, 0xf6, 0x57, 0xaf, 0x96, 0xcb, 0x81, 0x57, 0x81, 0x4b, 0x22,
0x97, 0x1c, 0xb3, 0x9e, 0xf0, 0x8e, 0x67, 0x2d, 0xda, 0xea, 0x82, 0xa5, 0xcc, 0x50, 0x44, 0x8f,
0x79, 0xc7, 0x65, 0x4b, 0x03, 0x45, 0xf7, 0xb3, 0x08, 0x80, 0x04, 0xfd, 0xc7, 0x11, 0x10, 0x32,
0x20, 0x64, 0xbe, 0x4d, 0xe8, 0x10, 0x1f, 0xf2, 0x43, 0xfc, 0x69, 0xb1, 0x7f, 0x8d, 0x54, 0xd2,
0xcb, 0xbc, 0xd7, 0xb2, 0x79, 0x7c, 0xdb, 0x3c, 0xce, 0x7a, 0x89, 0xf7, 0x5a, 0x35, 0x8f, 0x6f,
0x96, 0xc7, 0x6b, 0x52, 0x83, 0x25, 0x59, 0x3d, 0x3f, 0x3b, 0x30, 0xee, 0x2a, 0x20, 0x1d, 0xda,
0xcd, 0x1c, 0xff, 0x93, 0x15, 0x06, 0x78, 0xa3, 0x99, 0xcc, 0x01, 0x02, 0xd8, 0x65, 0x9d, 0x28,
0xb3, 0xd6, 0x80, 0xd1, 0x32, 0x84, 0xed, 0xea, 0xf9, 0x60, 0x10, 0x22, 0xc0, 0x31, 0x83, 0x3d,
0x22, 0x0c, 0x78, 0x09, 0xba, 0x0d, 0xc2, 0x54, 0x38, 0xb6, 0x71, 0xcd, 0x5f, 0xbf, 0xab, 0x45,
0xe3, 0x8e, 0x32, 0x68, 0x4f, 0xaa, 0xa7, 0xc2, 0xac, 0x39, 0xa1, 0x0c, 0xaa, 0x37, 0x5b, 0xaf,
0x5e, 0x72, 0xd0, 0x90, 0x52, 0xdc, 0xaf, 0xd3, 0xa6, 0x34, 0x2f, 0x61, 0x81, 0x39, 0x21, 0x20,
0x47, 0x0d, 0x95, 0x59, 0xb5, 0x7c, 0xf5, 0x81, 0xc1, 0x6a, 0x92, 0xb3, 0xe4, 0x2e, 0xc2, 0x03,
0x63, 0xf6, 0x38, 0x6c, 0x57, 0x07, 0x71, 0xd5, 0xba, 0xbb, 0x65, 0x9c, 0xa5, 0xd0, 0x89, 0x11,
0x3a, 0x21, 0xc9, 0xdd, 0x4a, 0x6e, 0x4d, 0x42, 0xcd, 0xc6, 0x05, 0x03, 0x1f, 0x47, 0x64, 0x4e,
0x57, 0x2c, 0x53, 0xb9, 0x50, 0x3f, 0x3d, 0x8a, 0x1d, 0x78, 0x8e, 0x40, 0x93, 0x98, 0xd7, 0x08,
0x7c, 0x8d, 0x00, 0xe1, 0x96, 0x08, 0xc0, 0xa9, 0xed, 0xc2, 0xd5, 0xa6, 0x32, 0x81, 0xb0, 0x20,
0x6a, 0x11, 0x86, 0xf7, 0x57, 0xc3, 0xca, 0x91, 0x29, 0xbc, 0xc5, 0x80, 0xb0, 0xd6, 0x69, 0x7e,
0x03, 0xfa, 0x58, 0x10, 0x0d, 0x11, 0xd9, 0x5a, 0x6c, 0x5d, 0x78, 0x06, 0x19, 0x6b, 0xcb, 0x7d,
0xe5, 0x6c, 0xef, 0x34, 0xf0, 0xed, 0x8a, 0x00, 0xd3, 0xc3, 0x92, 0x69, 0x6d, 0xa5, 0x2d, 0x01,
0x47, 0x85, 0xc8, 0x90, 0x63, 0xd3, 0x1a, 0xe1, 0x1a, 0x92, 0xf5, 0x2c, 0x8c, 0xdb, 0x02, 0x21,
0xe1, 0xf4, 0xa7, 0xb8, 0xd2, 0x8a, 0x7e, 0x35, 0x38, 0x9d, 0x00, 0x26, 0x85, 0xcb, 0xff, 0x14,
0x3b, 0x15, 0x3c, 0x49, 0xf7, 0xed, 0xbb, 0x7a, 0x74, 0xbf, 0x60, 0xbf, 0x39, 0xf5, 0x15, 0xde,
0x36, 0xf7, 0x58, 0x2d, 0xfe, 0xf2, 0xbd, 0xf5, 0xb6, 0x9a, 0xfa, 0xce, 0x0a, 0x02, 0x54, 0x69,
0x51, 0x1b, 0x1e, 0x5d, 0x7d, 0x47, 0xe7, 0x4a, 0x23, 0x84, 0xd4, 0x41, 0x0b, 0xa0, 0xb0, 0x4f,
0xd9, 0xf5, 0xcb, 0x95, 0x59, 0xf7, 0x36, 0x40, 0xdc, 0x46, 0xe5, 0xd4, 0xb7, 0x3e, 0xd9, 0x55,
0x02, 0x4d, 0xf8, 0xb6, 0x38, 0x75, 0xf6, 0x62, 0xb7, 0x7d, 0xc8, 0xed, 0xc3, 0x2e, 0xd5, 0x06,
0xb1, 0x39, 0x5b, 0xca, 0xf7, 0xc1, 0xb5, 0xb5, 0xaa, 0xda, 0x09, 0xd5, 0xea, 0xc7, 0x3c, 0x04,
0x27, 0x7e, 0x11, 0x46, 0xdb, 0x8f, 0xcf, 0x9c, 0xdd, 0x56, 0x5f, 0x0e, 0xce, 0x46, 0x0b, 0x30,
0xb0, 0xac, 0x77, 0x78, 0xc0, 0x09, 0xd9, 0xfb, 0x21, 0x23, 0xe0, 0xcb, 0x29, 0xe1, 0xa8, 0x14,
0xe5, 0x2c, 0x87, 0x87, 0xb6, 0xc1, 0x02, 0x55, 0x3e, 0x10, 0xb4, 0x83, 0x00, 0x95, 0xf7, 0x4c,
0x4f, 0x51, 0x29, 0x69, 0x8b, 0x48, 0x69, 0x1a, 0x37, 0x85, 0xa4, 0x9a, 0x4e, 0x08, 0x6c, 0x26,
0x3f, 0x4e, 0xa1, 0x8b, 0x2b, 0x97, 0x15, 0x4a, 0x05, 0xe2, 0x42, 0x23, 0x92, 0x65, 0xe6, 0xfe,
0x19, 0xe3, 0x64, 0xa1, 0xa5, 0x62, 0x36, 0x4f, 0xbb, 0xab, 0xab, 0x1e, 0x1a, 0x2e, 0x8c, 0xdd,
0xb3, 0x3c, 0x47, 0xb0, 0x86, 0xe5, 0xbd, 0x64, 0xf0, 0x49, 0x89, 0xcc, 0x19, 0x80, 0x12, 0x05,
0xb3, 0x27, 0x5d, 0xf3, 0x42, 0x1d, 0x18, 0x78, 0x62, 0xef, 0x50, 0x4f, 0x2b, 0x67, 0xcf, 0x50,
0xb4, 0x5b, 0x1c, 0x9e, 0x0d, 0xb5, 0x89, 0xe6, 0x08, 0xdb, 0x6a, 0xe9, 0xaa, 0x79, 0x95, 0xfd,
0xcf, 0x8a, 0x63, 0xfb, 0xf9, 0x37, 0x5b, 0xbf, 0xe6, 0x11, 0xbd, 0xa7, 0xd2, 0x4f, 0xbf, 0x59,
0xe9, 0x6f, 0x7e, 0xc6, 0x8d, 0x6a, 0x04, 0xa7, 0xac, 0x70, 0x84, 0x1b, 0xc3, 0x6d, 0x09, 0xcb,
0x9c, 0x77, 0x75, 0x20, 0x11, 0x53, 0xf0, 0x57, 0x4a, 0x8d, 0xd5, 0xae, 0x19, 0xa4, 0x05, 0x60,
0x2c, 0x54, 0x4e, 0x1f, 0x95, 0x6d, 0xb9, 0x65, 0x42, 0x54, 0x15, 0xc4, 0x73, 0x92, 0x4c, 0xeb,
0xd8, 0x24, 0x90, 0xb8, 0xb1, 0x95, 0x4b, 0x19, 0xc4, 0x1c, 0x80, 0x8f, 0x46, 0x8a, 0xfd, 0x49,
0x11, 0xe1, 0x69, 0x1b, 0x14, 0x4d, 0x21, 0x8e, 0x8d, 0x23, 0xa3, 0x49, 0xac, 0x2a, 0x75, 0xc1,
0xa5, 0x34, 0x91, 0xe6, 0x79, 0x0c, 0x35, 0xc0, 0x80, 0xab, 0xa6, 0xd6, 0x79, 0x73, 0x96, 0x71,
0x87, 0xe8, 0x6c, 0xd6, 0x86, 0x0d, 0xd9, 0xea, 0x09, 0x57, 0xa1, 0xb0, 0xc5, 0xa2, 0xa8, 0xd7,
0xc5, 0xf7, 0x33, 0xf6, 0xb7, 0x36, 0x12, 0xf8, 0x65, 0xb6, 0x2c, 0x98, 0x31, 0x9b, 0xd8, 0xac,
0x65, 0xf3, 0xbf, 0xbe, 0xbf, 0x00, 0x44, 0x8c, 0x9a, 0xfd, 0xfb, 0x13, 0x00, 0x00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xa5, 0x1a, 0xed, 0x72, 0xe3, 0xb6,
0xf1, 0x3f, 0x9f, 0x02, 0x46, 0x52, 0x0d, 0x69, 0x51, 0x5f, 0xce, 0x25, 0x73, 0x23, 0x89, 0x54,
0x2d, 0xfb, 0x1a, 0xbb, 0x63, 0x37, 0x1a, 0xeb, 0x6a, 0xdf, 0x4d, 0xd3, 0x49, 0x20, 0x12, 0x94,
0x90, 0xa3, 0x08, 0x0e, 0x09, 0xc9, 0x76, 0x7c, 0x7e, 0x8f, 0x3e, 0x4d, 0x1f, 0xa6, 0x4f, 0xd2,
0x05, 0x40, 0x52, 0x24, 0xf5, 0x61, 0x3b, 0xf9, 0x61, 0x89, 0x5c, 0x2c, 0x76, 0x17, 0xfb, 0x85,
0xdd, 0x95, 0x87, 0x47, 0xe7, 0x3f, 0x9d, 0x7d, 0xfc, 0x3c, 0xf9, 0x80, 0x16, 0x62, 0x19, 0xba,
0x43, 0xf9, 0x89, 0x42, 0x12, 0xcd, 0x1d, 0x4c, 0x23, 0x0c, 0xef, 0x94, 0xf8, 0xee, 0x70, 0x49,
0x05, 0x41, 0xde, 0x82, 0x24, 0x29, 0x15, 0x0e, 0x5e, 0x89, 0xa0, 0xf5, 0x1e, 0x67, 0x50, 0x23,
0x22, 0x4b, 0xea, 0xe0, 0x35, 0xa3, 0xf7, 0x31, 0x4f, 0x04, 0x46, 0x1e, 0x8f, 0x04, 0x8d, 0x00,
0xed, 0x9e, 0xf9, 0x62, 0xe1, 0x7c, 0xdf, 0xed, 0x16, 0xa8, 0xb5, 0x25, 0x9f, 0xae, 0x99, 0x47,
0x5b, 0xea, 0xc5, 0x66, 0x11, 0x13, 0x8c, 0x84, 0xad, 0xd4, 0x23, 0x21, 0x75, 0x7a, 0xf6, 0x92,
0x3c, 0xb0, 0xe5, 0x6a, 0x59, 0xbc, 0xaf, 0x52, 0x9a, 0xa8, 0x17, 0x32, 0x83, 0xf7, 0x88, 0xe3,
0x2d, 0xce, 0xee, 0x50, 0x30, 0x11, 0x52, 0xf7, 0xe4, 0x1c, 0x4d, 0xa9, 0x68, 0xad, 0xe2, 0x61,
0x47, 0x03, 0x86, 0xa9, 0x97, 0xb0, 0x58, 0xb8, 0xc6, 0x9a, 0x24, 0x28, 0xe4, 0x1e, 0x8b, 0x6d,
0x4f, 0x3c, 0xd8, 0xbe, 0xe3, 0x73, 0x6f, 0xb5, 0x04, 0x81, 0x6c, 0x00, 0x3a, 0x47, 0x8a, 0xe7,
0x84, 0x44, 0x34, 0x4c, 0x9d, 0x1f, 0xde, 0xd9, 0x21, 0xf5, 0x2f, 0x23, 0x9f, 0x3e, 0x38, 0x5d,
0xfb, 0x9e, 0xa4, 0xa7, 0xfe, 0x9a, 0x44, 0x1e, 0xf5, 0x9d, 0x56, 0x6f, 0x10, 0xac, 0x22, 0x4f,
0x30, 0x1e, 0xa1, 0x0b, 0xd3, 0x7a, 0xba, 0x67, 0x91, 0xcf, 0xef, 0xdb, 0x3c, 0xa6, 0x91, 0x89,
0x17, 0x42, 0xc4, 0x69, 0xbf, 0xd3, 0x59, 0x2e, 0xdb, 0x5f, 0x22, 0xde, 0xbe, 0x07, 0x1a, 0xed,
0x39, 0xed, 0x04, 0x94, 0x88, 0x55, 0x42, 0xd3, 0xce, 0xc9, 0x39, 0xb6, 0x9e, 0x8b, 0xed, 0xe3,
0xfa, 0xf6, 0x0e, 0xa8, 0x57, 0xb0, 0x68, 0x9e, 0x62, 0x1b, 0xff, 0x92, 0xd2, 0x30, 0x28, 0x63,
0xcf, 0x2f, 0x7d, 0x93, 0x5a, 0x4f, 0x09, 0x05, 0x52, 0x11, 0x92, 0x74, 0xc5, 0x87, 0x90, 0x4a,
0xf1, 0xc7, 0x8f, 0x6a, 0x69, 0x83, 0x1a, 0x72, 0xe2, 0xff, 0x7d, 0x6a, 0x52, 0x5b, 0x38, 0x47,
0x5d, 0xeb, 0x29, 0xa4, 0x02, 0x45, 0x8e, 0xdf, 0xf6, 0x12, 0x90, 0x83, 0x66, 0x9b, 0x4c, 0xac,
0xb5, 0x82, 0xad, 0x41, 0xd4, 0x06, 0xbe, 0xa7, 0x42, 0x24, 0x6c, 0xb6, 0x12, 0x14, 0x16, 0x12,
0x0f, 0xdb, 0xd4, 0xb2, 0xeb, 0x70, 0xf1, 0x18, 0x53, 0x90, 0x4c, 0xd0, 0x07, 0xd1, 0xf9, 0x8d,
0xac, 0x49, 0x4e, 0x60, 0x0b, 0x91, 0xa4, 0x8f, 0x11, 0x90, 0x10, 0x96, 0xed, 0xb7, 0x67, 0xdc,
0x7f, 0x6c, 0x93, 0x18, 0xce, 0xe7, 0x9f, 0x2d, 0x58, 0xe8, 0x9b, 0x91, 0xc4, 0x27, 0xbe, 0xff,
0x61, 0x0d, 0x52, 0x5c, 0xb1, 0x14, 0x3c, 0x82, 0x26, 0x26, 0x96, 0x32, 0x63, 0xdb, 0xb4, 0x1c,
0xf7, 0xe9, 0x47, 0x2a, 0x6e, 0x4d, 0xcb, 0xfe, 0xe7, 0x25, 0x7c, 0x4c, 0x83, 0xf6, 0xf5, 0xe4,
0xac, 0x46, 0x1f, 0xec, 0x84, 0x37, 0xc6, 0xb2, 0xc0, 0x77, 0x04, 0x4d, 0x02, 0xe2, 0xd1, 0xb3,
0x05, 0x78, 0x2e, 0x85, 0x6d, 0x7e, 0x42, 0xee, 0x4d, 0xeb, 0x79, 0x37, 0x2b, 0x9a, 0x24, 0x3c,
0x81, 0x13, 0x02, 0x2b, 0xf0, 0xc8, 0x94, 0x87, 0xb4, 0x1d, 0xf2, 0xb9, 0x89, 0x3f, 0x48, 0x38,
0xca, 0xf4, 0x07, 0x66, 0x40, 0x01, 0x0b, 0xa9, 0xd2, 0x04, 0xb8, 0x60, 0x02, 0x1a, 0xbb, 0xca,
0xe0, 0x3c, 0x90, 0x5e, 0x1e, 0xb0, 0xf9, 0x2a, 0x21, 0x4a, 0xe1, 0x5a, 0x13, 0x28, 0x20, 0x4c,
0x5a, 0xfc, 0xe7, 0xe8, 0x32, 0xf2, 0xf8, 0x32, 0x06, 0xbd, 0x53, 0x14, 0x93, 0x39, 0x45, 0x3e,
0x11, 0xe4, 0x08, 0x8c, 0x59, 0xb2, 0xd1, 0x14, 0x8c, 0x8f, 0x25, 0x83, 0x3e, 0x76, 0x9c, 0xcc,
0x0b, 0xc0, 0x0d, 0x15, 0xbd, 0x76, 0x9c, 0x70, 0xc1, 0x3d, 0x1e, 0x36, 0x1a, 0xa6, 0x72, 0xcd,
0xae, 0x6d, 0x2a, 0xbf, 0x75, 0x24, 0x46, 0x38, 0x15, 0x3c, 0x01, 0xaa, 0xd2, 0x03, 0x2e, 0x05,
0x5d, 0x4a, 0xdd, 0x79, 0x97, 0x31, 0xb6, 0xac, 0xaf, 0x5f, 0x33, 0x34, 0xd8, 0xbf, 0x8c, 0x41,
0xe0, 0xbf, 0x01, 0x7d, 0x74, 0xcd, 0x7d, 0xda, 0x46, 0x93, 0x90, 0x92, 0x94, 0x22, 0x2a, 0x55,
0x85, 0xee, 0xae, 0x3e, 0x9c, 0xa3, 0xcb, 0x09, 0x88, 0x64, 0x57, 0x28, 0xa6, 0x55, 0x8a, 0xb6,
0xa2, 0x66, 0x59, 0x12, 0x4b, 0x79, 0x94, 0x24, 0x3f, 0x52, 0x5e, 0x0e, 0x4e, 0x8e, 0x9b, 0x6a,
0xb9, 0x8f, 0xb1, 0xd5, 0xdc, 0xb8, 0x6e, 0x27, 0x6d, 0xff, 0x96, 0x8e, 0x62, 0xa7, 0xd7, 0xc5,
0xf6, 0x51, 0xcf, 0x1a, 0xc8, 0x98, 0xa3, 0x8e, 0x74, 0x5e, 0xec, 0x91, 0x08, 0x9c, 0x06, 0x1c,
0x8e, 0xb6, 0x75, 0x02, 0xc8, 0x8e, 0xcd, 0x22, 0x30, 0xcb, 0x9d, 0x84, 0xb8, 0xef, 0xbb, 0xdd,
0x11, 0xfc, 0xf5, 0xdf, 0x75, 0xbb, 0x36, 0x6d, 0x2f, 0x28, 0x9b, 0x2f, 0x84, 0x93, 0xa1, 0xcb,
0xa0, 0x75, 0xd4, 0xa9, 0xcf, 0x64, 0x1e, 0x79, 0x80, 0xf3, 0x9d, 0xf8, 0xe5, 0x08, 0x91, 0x0e,
0xf3, 0xc4, 0x02, 0x13, 0x77, 0x41, 0xa5, 0x9a, 0x65, 0x0a, 0x7a, 0xc0, 0x56, 0x7b, 0x4d, 0xc2,
0x15, 0xb5, 0xb2, 0xd0, 0x51, 0x0b, 0xcb, 0xd8, 0x67, 0x6b, 0x58, 0x49, 0xc5, 0x23, 0x98, 0xdf,
0x67, 0x69, 0x1c, 0x92, 0x47, 0x07, 0x47, 0x3c, 0x02, 0x8b, 0xaf, 0x39, 0xf3, 0x11, 0xc4, 0x2b,
0x15, 0xda, 0xc3, 0x4c, 0x6b, 0x70, 0x68, 0xd3, 0x0c, 0xf4, 0xf0, 0x05, 0x6f, 0xe4, 0x00, 0x8f,
0xcb, 0xf7, 0xa9, 0xd8, 0xa3, 0x4e, 0x2c, 0x33, 0xe7, 0x25, 0x04, 0x9d, 0xdf, 0xce, 0x1c, 0x5a,
0x4b, 0x04, 0x01, 0xaa, 0x08, 0xc7, 0x0a, 0x1d, 0x28, 0x7b, 0x32, 0x44, 0x12, 0x1a, 0xb5, 0x43,
0x1a, 0xcd, 0xc5, 0x62, 0x00, 0xa7, 0x11, 0x43, 0x6a, 0x05, 0x3c, 0x31, 0x75, 0x14, 0x8b, 0x41,
0x34, 0xa4, 0x83, 0xa8, 0xd9, 0xb4, 0x72, 0x2e, 0x10, 0x50, 0x0a, 0xcd, 0xad, 0xa1, 0xb9, 0x80,
0xd6, 0x6a, 0xc1, 0xa1, 0x97, 0x1a, 0xcd, 0xda, 0x16, 0xd0, 0xa4, 0x4e, 0x96, 0x1e, 0x6a, 0x72,
0x28, 0x82, 0x75, 0x61, 0x5c, 0x67, 0x13, 0x72, 0x5a, 0x95, 0x03, 0xcd, 0xec, 0xd7, 0x21, 0xa8,
0x05, 0x31, 0xdf, 0xc1, 0x71, 0x14, 0x7e, 0xfb, 0x44, 0x9f, 0xe5, 0xbd, 0x91, 0x20, 0x2f, 0x24,
0x69, 0xea, 0xe0, 0x74, 0x19, 0x62, 0x57, 0x6d, 0x43, 0x72, 0x6d, 0x38, 0x4b, 0xdc, 0x9f, 0xa3,
0xde, 0x30, 0x5d, 0xc5, 0x6e, 0x2a, 0x86, 0x1d, 0xf9, 0x8d, 0xc0, 0x1d, 0xfb, 0x68, 0x08, 0x19,
0x8f, 0x7a, 0x42, 0x11, 0x9a, 0x48, 0xd4, 0x31, 0x46, 0x3a, 0xc5, 0xe7, 0x6f, 0x3c, 0x62, 0x51,
0xbc, 0x82, 0xfb, 0x43, 0x87, 0x37, 0x06, 0x42, 0x3f, 0x8b, 0x21, 0x8f, 0xd5, 0xa1, 0x94, 0x46,
0x1d, 0xb0, 0xbd, 0xfb, 0x91, 0x43, 0xea, 0xd7, 0xd0, 0x5d, 0x18, 0x3d, 0xec, 0x8e, 0xb9, 0x10,
0x7c, 0x59, 0x42, 0x02, 0x39, 0x14, 0x73, 0x77, 0x4b, 0x88, 0x9b, 0x8a, 0x10, 0x37, 0xaf, 0x16,
0xe2, 0x8a, 0x06, 0xe2, 0x05, 0x29, 0x6e, 0xa4, 0x77, 0xef, 0x14, 0x42, 0xe9, 0xe8, 0xa7, 0x84,
0x41, 0xb4, 0xaa, 0x84, 0xb0, 0x43, 0x39, 0xb7, 0x15, 0xb9, 0x6e, 0x5f, 0x2d, 0xd7, 0x05, 0x4f,
0xd8, 0xef, 0x10, 0x3f, 0x24, 0x7c, 0x41, 0xba, 0x5b, 0x48, 0x79, 0xcc, 0xab, 0xa0, 0xd5, 0x04,
0x9c, 0xd2, 0x04, 0xd2, 0x3a, 0x44, 0x3d, 0x05, 0xf9, 0x14, 0xf3, 0x8d, 0x78, 0x53, 0x8c, 0xe4,
0x75, 0xe1, 0x60, 0x6f, 0x41, 0xbd, 0x2f, 0x33, 0xfe, 0x50, 0x11, 0x77, 0x2a, 0xc5, 0xf5, 0x42,
0xe6, 0x7d, 0xd9, 0x88, 0xab, 0x69, 0x9e, 0x33, 0xb8, 0x9c, 0x52, 0x60, 0x97, 0x22, 0xf3, 0xee,
0xe1, 0xc2, 0xda, 0xa6, 0x7c, 0x57, 0xa1, 0x74, 0x97, 0xf3, 0x89, 0x56, 0xcb, 0x19, 0x4d, 0x30,
0x5a, 0xb2, 0x48, 0x8a, 0x8f, 0xc0, 0x57, 0xe1, 0xfb, 0xe4, 0x3d, 0xce, 0x8f, 0xf4, 0xed, 0x53,
0x35, 0x0a, 0x27, 0x77, 0x59, 0x10, 0x3e, 0xef, 0xd0, 0x1d, 0x7a, 0xd8, 0xe2, 0x7b, 0x51, 0xe1,
0x7b, 0xf1, 0xc7, 0xf9, 0x5e, 0x1c, 0xe0, 0x9b, 0x59, 0x3e, 0x08, 0x20, 0xf7, 0xa0, 0x4f, 0xfd,
0xba, 0x0c, 0x9f, 0x2a, 0x32, 0x7c, 0xda, 0x29, 0x43, 0x37, 0x93, 0xe1, 0xe4, 0xfb, 0x1f, 0xf0,
0xc6, 0xee, 0xbb, 0xdc, 0xe3, 0xf3, 0x16, 0xfd, 0xcf, 0x15, 0xfa, 0x9f, 0xff, 0x14, 0x7d, 0x79,
0x94, 0x21, 0x73, 0x4d, 0xae, 0x0f, 0x13, 0xc0, 0x95, 0x84, 0x04, 0x8f, 0x5b, 0x21, 0x04, 0x06,
0x5c, 0x9f, 0x09, 0xe4, 0x7c, 0xc4, 0x22, 0xf4, 0x8d, 0x0c, 0xfe, 0xd4, 0x1a, 0x76, 0x98, 0x72,
0x30, 0xc8, 0x24, 0xee, 0xaf, 0x03, 0x01, 0x77, 0x02, 0xd4, 0x7b, 0xe2, 0xd4, 0xff, 0x0d, 0x6e,
0xf5, 0x48, 0x5c, 0x7c, 0xbc, 0xbe, 0x32, 0xf1, 0x8c, 0x42, 0x82, 0xa3, 0x50, 0x48, 0x60, 0x3b,
0x2a, 0x65, 0xb3, 0x4d, 0x86, 0xcb, 0xb2, 0xed, 0xee, 0x94, 0xaa, 0x6e, 0x22, 0x79, 0x99, 0x64,
0xa9, 0x55, 0x0c, 0x9d, 0xde, 0xd7, 0xaf, 0xf4, 0x5f, 0xa2, 0xd5, 0xfb, 0x77, 0x1b, 0x68, 0xf0,
0x35, 0x35, 0x2b, 0x54, 0x4b, 0xe9, 0xff, 0xa9, 0x9a, 0xb7, 0x9d, 0xde, 0xe0, 0x20, 0xa7, 0x3c,
0x0f, 0x97, 0xb9, 0xb9, 0xdd, 0x81, 0x80, 0x74, 0xbc, 0x97, 0x5f, 0xbd, 0x86, 0x81, 0x1a, 0x77,
0x15, 0x86, 0xea, 0x3e, 0xab, 0x14, 0x29, 0x35, 0x3c, 0x6c, 0x2b, 0x19, 0x80, 0xe3, 0xf2, 0x17,
0x90, 0xc1, 0xa6, 0xd5, 0xf7, 0x36, 0xd5, 0xd5, 0x5e, 0x6a, 0xab, 0x13, 0x8c, 0x4f, 0xf3, 0x8b,
0x87, 0x2a, 0xca, 0x5d, 0xc7, 0xa9, 0xc0, 0x1b, 0x8d, 0x1e, 0x14, 0x23, 0x9b, 0x6a, 0x57, 0x21,
0x1d, 0xa9, 0x5a, 0x27, 0x81, 0xaa, 0xe0, 0x34, 0xa1, 0xe8, 0x91, 0xaf, 0x50, 0x0a, 0xc5, 0x2c,
0xd8, 0x12, 0xcd, 0x39, 0x9a, 0x11, 0xef, 0x8b, 0x7c, 0x9c, 0x91, 0x94, 0x79, 0xc8, 0x24, 0xd9,
0x46, 0x94, 0x97, 0x03, 0xe8, 0x9e, 0x85, 0x21, 0x9a, 0x51, 0xa8, 0xa9, 0x52, 0x61, 0x8d, 0xa0,
0x48, 0xc9, 0x6e, 0x61, 0x79, 0xc7, 0x9a, 0x15, 0xe6, 0x0e, 0x54, 0x0b, 0x01, 0xa3, 0xa1, 0x9f,
0x57, 0x71, 0xcf, 0xd5, 0xe5, 0x22, 0x8c, 0x68, 0x1e, 0x40, 0xe5, 0xba, 0xbc, 0x57, 0x3b, 0x8a,
0xd6, 0x43, 0x2e, 0xcf, 0x58, 0x5d, 0xd1, 0xf5, 0x9b, 0xbb, 0xb4, 0x7f, 0x04, 0x8a, 0x0d, 0x21,
0x93, 0xe1, 0x7e, 0x56, 0x03, 0xa8, 0xed, 0xaa, 0x7f, 0x80, 0x6d, 0xaa, 0x42, 0x91, 0x4e, 0x58,
0xdd, 0x72, 0x4d, 0xa0, 0x24, 0x7d, 0x40, 0x3f, 0xca, 0xb2, 0x92, 0x40, 0x09, 0x05, 0x9b, 0x33,
0x10, 0x34, 0x20, 0xab, 0xb8, 0x54, 0x12, 0x94, 0xcf, 0x45, 0xa1, 0xd5, 0xb0, 0xaa, 0x95, 0x67,
0x69, 0x59, 0xd6, 0x9b, 0x99, 0xab, 0xd6, 0xab, 0x86, 0x3c, 0x71, 0xd8, 0xd1, 0xd6, 0xd2, 0x6d,
0xb6, 0x34, 0x80, 0x3a, 0xa0, 0xdb, 0x68, 0x44, 0xf2, 0xa3, 0x6e, 0x5c, 0x70, 0x76, 0xab, 0xd1,
0x98, 0x43, 0xa3, 0x91, 0xd7, 0xc7, 0xf6, 0xc6, 0x7f, 0x4b, 0x97, 0xcd, 0x6e, 0x5d, 0x89, 0xe3,
0xc8, 0xed, 0xed, 0xd6, 0x52, 0xcc, 0xe3, 0xf1, 0x0a, 0x2e, 0xd4, 0x08, 0x36, 0x01, 0xba, 0x6c,
0xd0, 0x7c, 0x87, 0x6e, 0xaf, 0x69, 0x82, 0x50, 0xd6, 0xf2, 0xc4, 0xa1, 0x23, 0x3c, 0x4f, 0xe8,
0x23, 0x10, 0x4a, 0xa8, 0x5f, 0x52, 0x94, 0x12, 0xef, 0xa9, 0x5a, 0x7b, 0xe9, 0x12, 0x72, 0xaf,
0x36, 0xc4, 0x5e, 0x6d, 0x80, 0xa2, 0xe8, 0xb1, 0x18, 0xd4, 0x82, 0x57, 0x67, 0x02, 0xa2, 0x95,
0x33, 0x99, 0xb6, 0xd5, 0x0d, 0x45, 0x7d, 0x3b, 0x94, 0xf9, 0xdb, 0xc9, 0x94, 0x96, 0xd3, 0xb0,
0x59, 0x05, 0x3a, 0xce, 0xa0, 0xbc, 0x02, 0xbd, 0xc9, 0xa0, 0x89, 0xb3, 0xe7, 0x8a, 0xb1, 0x3d,
0x67, 0xcf, 0x25, 0x60, 0xa7, 0x4e, 0x38, 0x12, 0x7d, 0x6a, 0xaf, 0xe0, 0x9b, 0xf6, 0x45, 0x91,
0x3b, 0xa0, 0x34, 0x83, 0x93, 0x75, 0x07, 0x74, 0xb8, 0x1a, 0x50, 0x28, 0xf7, 0x36, 0xb5, 0x5d,
0x17, 0x4a, 0xc0, 0x54, 0x96, 0x80, 0xb6, 0x00, 0xf8, 0x13, 0x3d, 0x8e, 0x86, 0x45, 0x61, 0xd6,
0x68, 0x14, 0xb5, 0x9d, 0xd0, 0x8a, 0x8b, 0x1d, 0x33, 0x1c, 0xf1, 0x3e, 0xb3, 0x46, 0xab, 0x16,
0x6d, 0xf5, 0x80, 0xd3, 0x5a, 0x42, 0x58, 0x9f, 0x5b, 0xa3, 0xb4, 0x15, 0x01, 0x04, 0xf4, 0xe1,
0x90, 0x46, 0x83, 0xfe, 0xe5, 0x04, 0x00, 0x6b, 0x00, 0xac, 0xb5, 0xe9, 0x26, 0xb8, 0x29, 0x9a,
0xf8, 0x53, 0x5e, 0x3e, 0xcb, 0x5d, 0x71, 0x7f, 0x6d, 0x1d, 0x27, 0xe5, 0xe5, 0xcf, 0xe5, 0xe5,
0x75, 0x3f, 0xb6, 0x8e, 0xbd, 0xf2, 0xf2, 0x5d, 0xb1, 0x5c, 0xd9, 0x75, 0x51, 0x80, 0x2b, 0xd8,
0xe3, 0x02, 0x9c, 0x69, 0xfb, 0xaa, 0x1c, 0xcb, 0x1a, 0xe7, 0xa6, 0x86, 0x73, 0xb3, 0x03, 0xe7,
0xb6, 0x86, 0x73, 0xbb, 0x03, 0x67, 0xaa, 0x12, 0xb6, 0xb2, 0x7c, 0xee, 0x09, 0x57, 0x39, 0xe0,
0x79, 0xe3, 0x8f, 0x3a, 0x50, 0x9e, 0xb4, 0x0b, 0x6a, 0x8b, 0xe4, 0x96, 0x60, 0xf0, 0xcc, 0x86,
0x2f, 0xd4, 0xef, 0xd2, 0x42, 0x72, 0x73, 0x29, 0x64, 0x73, 0x21, 0x58, 0x49, 0xb9, 0xd0, 0x62,
0xee, 0x44, 0xf8, 0xbc, 0x41, 0x08, 0x77, 0x22, 0xdc, 0x6d, 0x10, 0xfc, 0x9d, 0x08, 0x85, 0xaa,
0xa1, 0xed, 0x72, 0x20, 0x3b, 0x2d, 0xda, 0xe0, 0x2c, 0x26, 0xb5, 0xa3, 0x66, 0x28, 0x43, 0xa7,
0x80, 0x08, 0x9b, 0x34, 0x7d, 0xeb, 0x19, 0x7a, 0xac, 0xb6, 0x07, 0xad, 0x62, 0x72, 0x03, 0x75,
0x9e, 0xd9, 0xb5, 0xbb, 0xb6, 0x82, 0xa8, 0xce, 0x6d, 0xd3, 0x86, 0xe5, 0x00, 0xdd, 0xa0, 0x59,
0xdb, 0x20, 0xa7, 0xbe, 0xab, 0x23, 0x03, 0x51, 0x2a, 0x82, 0x39, 0x66, 0x7d, 0xad, 0xf5, 0xae,
0x6b, 0x75, 0xe8, 0x40, 0x82, 0x65, 0x72, 0x51, 0x9d, 0xa0, 0xd3, 0x53, 0x44, 0x53, 0x91, 0xf0,
0x2f, 0x74, 0x2a, 0x13, 0x87, 0x83, 0x1f, 0x69, 0x18, 0xf2, 0x7b, 0x5c, 0x5a, 0x78, 0x8b, 0x90,
0xe5, 0xc8, 0x82, 0xa8, 0x3a, 0x6c, 0x37, 0x19, 0x71, 0x4f, 0x3b, 0x6c, 0x46, 0x5f, 0xb2, 0x19,
0x7d, 0xc9, 0x66, 0xf4, 0x25, 0x9b, 0xd1, 0x8a, 0xcd, 0xa4, 0xca, 0xb8, 0x9d, 0x40, 0x02, 0x51,
0x09, 0xa7, 0x84, 0x54, 0x04, 0x0b, 0xa4, 0x90, 0xfa, 0x5a, 0x11, 0x24, 0x90, 0x56, 0xea, 0x6b,
0x45, 0x70, 0xd8, 0x71, 0x19, 0x5c, 0x8a, 0x07, 0xc8, 0x10, 0xd1, 0x31, 0x6b, 0x9e, 0x74, 0xed,
0xc0, 0x21, 0xea, 0xa1, 0x66, 0x9b, 0xef, 0xb6, 0x6d, 0x73, 0xbf, 0x60, 0x82, 0x6e, 0x99, 0x66,
0x6d, 0x07, 0x76, 0x78, 0xcc, 0x6c, 0xff, 0x98, 0x59, 0x90, 0x1d, 0xbd, 0x51, 0xd0, 0x84, 0xc7,
0x16, 0xeb, 0x9c, 0xf4, 0x83, 0x26, 0x7c, 0x42, 0x1e, 0x4d, 0x47, 0xeb, 0x66, 0x98, 0xc1, 0xd6,
0x0a, 0x26, 0x69, 0x04, 0x50, 0x35, 0x64, 0x94, 0xe7, 0xb2, 0xe4, 0xd3, 0x94, 0x67, 0x74, 0xce,
0xa2, 0x09, 0x78, 0xac, 0xa9, 0x5d, 0x8e, 0x24, 0x9e, 0x29, 0x95, 0xd3, 0xfe, 0x1e, 0x78, 0x74,
0xed, 0x93, 0x63, 0xe5, 0xcd, 0x93, 0x4b, 0xab, 0xa0, 0x91, 0x21, 0xd6, 0xdd, 0xaa, 0x4e, 0x48,
0x16, 0x63, 0x1f, 0xb9, 0xa4, 0xa5, 0x35, 0x3e, 0x77, 0xcc, 0xd5, 0xc8, 0xef, 0x87, 0x96, 0x14,
0xac, 0xe6, 0x38, 0xb0, 0x12, 0xf6, 0x7d, 0x4b, 0xbb, 0x88, 0x44, 0x9e, 0x38, 0xb1, 0xca, 0x9e,
0x47, 0xb0, 0xbc, 0x1a, 0x25, 0x4d, 0x70, 0xf0, 0x11, 0x64, 0xd1, 0x9e, 0x75, 0x3c, 0x3f, 0x36,
0x27, 0xfa, 0xb1, 0xcf, 0x01, 0x9c, 0x6e, 0x81, 0x0b, 0xe1, 0x32, 0xe6, 0x76, 0x41, 0xbe, 0xd5,
0x6b, 0x34, 0xe0, 0xb1, 0xbc, 0x8d, 0xf5, 0xcb, 0xb4, 0x99, 0x1d, 0x8f, 0x6a, 0xbb, 0xfb, 0x66,
0xce, 0xbe, 0xd7, 0x6f, 0xed, 0x62, 0x5f, 0x07, 0xd7, 0xcf, 0x6e, 0xe9, 0xf8, 0xd7, 0x06, 0x34,
0xad, 0xba, 0x25, 0xe4, 0x4d, 0xfd, 0xe7, 0xec, 0x10, 0x70, 0x39, 0xfd, 0x7d, 0xd7, 0x8d, 0x1f,
0xd0, 0x69, 0xc2, 0x48, 0x88, 0xeb, 0x2c, 0x78, 0xa2, 0x6b, 0xa0, 0x1c, 0xfc, 0x51, 0x8e, 0x79,
0xe0, 0xca, 0x92, 0xee, 0xd1, 0x34, 0xc1, 0x4f, 0x9a, 0xcc, 0x02, 0x17, 0x09, 0xf4, 0xbb, 0x9f,
0xbd, 0x5b, 0xcf, 0xca, 0x91, 0xaf, 0xcf, 0x2b, 0xa5, 0x5a, 0x5e, 0x8b, 0x55, 0x5a, 0xca, 0xe3,
0x0b, 0xe7, 0xea, 0x0c, 0xba, 0x4a, 0xe5, 0xf3, 0xd0, 0xe5, 0xa9, 0xbb, 0x00, 0x39, 0xf2, 0xfd,
0x58, 0x3c, 0x1b, 0xd0, 0xe1, 0xea, 0x59, 0xf1, 0x50, 0x15, 0x2b, 0xee, 0x5f, 0xd9, 0x52, 0xce,
0x96, 0xd1, 0x2a, 0x09, 0x4d, 0x9c, 0xd5, 0x2f, 0xa9, 0x1c, 0x90, 0x00, 0xa2, 0x42, 0x18, 0x76,
0xf4, 0x84, 0x5c, 0x8e, 0x39, 0xa1, 0x07, 0x92, 0x73, 0x32, 0x07, 0x4f, 0x55, 0xff, 0x23, 0x6b,
0x70, 0x43, 0xf5, 0x56, 0x59, 0x35, 0x9e, 0xf5, 0x56, 0xd3, 0x00, 0x3a, 0x28, 0x2a, 0x16, 0x5c,
0x0e, 0x4c, 0xa0, 0x2a, 0x06, 0x54, 0x39, 0x3f, 0xc9, 0xc6, 0x25, 0xd0, 0x22, 0x25, 0x90, 0xe4,
0x2a, 0xb0, 0x05, 0x0d, 0xe3, 0x31, 0x76, 0x8d, 0xe1, 0x4c, 0x95, 0x52, 0x59, 0x57, 0xa6, 0x5f,
0x4a, 0x9d, 0xf4, 0x85, 0x64, 0x3b, 0x1a, 0x76, 0xf4, 0x82, 0xab, 0x9b, 0xa9, 0xdd, 0x7b, 0x8c,
0x62, 0xd3, 0x58, 0x6e, 0x1a, 0x43, 0x15, 0xbf, 0xd9, 0x57, 0xd9, 0x91, 0xae, 0x66, 0x4b, 0x06,
0x32, 0x4e, 0xc9, 0x9a, 0x6e, 0x50, 0x16, 0x49, 0x4e, 0x7e, 0x71, 0xe2, 0x1a, 0x27, 0xe7, 0xb2,
0xde, 0x97, 0x03, 0x77, 0x78, 0x9b, 0x82, 0xd2, 0x63, 0xc4, 0xa1, 0xf2, 0x90, 0xc9, 0xb5, 0x3a,
0xb9, 0x50, 0xe3, 0xb8, 0x5c, 0x0d, 0x3f, 0x5d, 0x4f, 0xb4, 0x20, 0xaa, 0xee, 0x95, 0xee, 0x55,
0x2a, 0xfa, 0xec, 0xd2, 0x10, 0x4d, 0x4d, 0x82, 0x41, 0x23, 0x5b, 0xb3, 0x8c, 0xde, 0x39, 0x52,
0xdc, 0x8a, 0x11, 0x85, 0xb1, 0x3d, 0xc6, 0x00, 0xd9, 0xb4, 0x1f, 0x14, 0x48, 0x95, 0x29, 0x46,
0x31, 0xba, 0xd2, 0xb3, 0x3d, 0x64, 0xa4, 0xda, 0x11, 0xb3, 0xb2, 0xb7, 0xaf, 0xca, 0xdc, 0xad,
0x71, 0xd6, 0x65, 0xde, 0x84, 0x15, 0xe3, 0x09, 0xad, 0xac, 0x84, 0xf8, 0x8c, 0x97, 0xbb, 0xe2,
0xec, 0x37, 0x8a, 0xf1, 0x69, 0xc9, 0x4c, 0xf5, 0x4e, 0x4f, 0x2c, 0x58, 0x2a, 0x8f, 0x17, 0x92,
0x19, 0x0d, 0xc1, 0x14, 0xd0, 0x48, 0x0d, 0x3b, 0xfa, 0x25, 0xa7, 0x6e, 0xec, 0x22, 0xdf, 0xcb,
0x35, 0xf9, 0x06, 0xea, 0x79, 0xef, 0x62, 0x14, 0x1c, 0xfe, 0xf7, 0x9f, 0xff, 0x2a, 0x3d, 0xd4,
0x4e, 0x38, 0x5c, 0x7c, 0xa7, 0xd4, 0xa2, 0x3b, 0x20, 0xb7, 0xde, 0xe9, 0x80, 0xa5, 0xbf, 0x73,
0x0d, 0x3d, 0xd5, 0xf3, 0xf7, 0x8d, 0x6c, 0xb2, 0x51, 0xc2, 0x2b, 0x46, 0x34, 0x46, 0x76, 0xa4,
0xf7, 0xa5, 0x39, 0x42, 0xa5, 0x15, 0x2c, 0x4f, 0x64, 0x32, 0xb2, 0x7b, 0x27, 0x30, 0xc6, 0xd6,
0x08, 0xe6, 0x00, 0x59, 0x79, 0xf6, 0xcd, 0x48, 0x4c, 0xfb, 0x6c, 0x5a, 0x9c, 0x20, 0x33, 0xdf,
0xf5, 0xe4, 0xf0, 0xb8, 0xe7, 0x7d, 0xd9, 0x26, 0xfb, 0x38, 0x19, 0x28, 0x9f, 0xa8, 0xd5, 0xb9,
0xe4, 0x4c, 0x6e, 0x5f, 0xcf, 0xc4, 0x38, 0x74, 0x9e, 0xcd, 0x38, 0x76, 0x67, 0x67, 0xe7, 0x56,
0x87, 0xaf, 0x46, 0x3d, 0x50, 0x33, 0xfd, 0x8e, 0x0f, 0x28, 0xed, 0xe0, 0xc8, 0xd5, 0x78, 0x71,
0xde, 0xba, 0x35, 0x6d, 0xcd, 0x58, 0xde, 0x1c, 0x3a, 0xd8, 0xe1, 0x09, 0xeb, 0x9e, 0xe9, 0xaa,
0xb1, 0x3b, 0xea, 0x77, 0x8e, 0x56, 0x33, 0x21, 0x6e, 0x0f, 0x98, 0xf0, 0x55, 0xe3, 0xd4, 0x57,
0x8c, 0x52, 0x8d, 0x8a, 0x34, 0x3b, 0xe6, 0xa8, 0x7b, 0x66, 0xa7, 0xd3, 0x72, 0xe6, 0xde, 0x65,
0xf9, 0x59, 0x9e, 0x97, 0xb7, 0x07, 0xec, 0x32, 0xd2, 0xb7, 0x8d, 0x7c, 0xf5, 0x26, 0x95, 0x97,
0xcd, 0xbc, 0xcf, 0xca, 0xc6, 0xcb, 0x66, 0xbe, 0x7a, 0x8b, 0x6b, 0x19, 0xaf, 0xb1, 0xf3, 0x1b,
0xcc, 0x6c, 0xe4, 0x76, 0x7e, 0x93, 0x14, 0x07, 0xec, 0x6c, 0x1c, 0x30, 0xf4, 0x5b, 0xed, 0x9c,
0x0b, 0x37, 0xbd, 0x2a, 0xa5, 0xf4, 0x7d, 0x86, 0xae, 0xa5, 0xec, 0x3c, 0x93, 0xeb, 0xb6, 0x07,
0x19, 0x32, 0x03, 0x64, 0x3f, 0xb9, 0x81, 0x1c, 0xfa, 0xa9, 0x9a, 0x1f, 0xa0, 0x60, 0x2a, 0xaa,
0x84, 0x12, 0xb8, 0x3a, 0x34, 0x73, 0x87, 0xac, 0xb8, 0x15, 0xd5, 0xec, 0xa6, 0xff, 0x4d, 0x40,
0x40, 0x23, 0x67, 0x24, 0x42, 0x31, 0x8f, 0x57, 0x21, 0x11, 0x54, 0xf9, 0x97, 0x4a, 0x23, 0x08,
0x2e, 0x4d, 0x0e, 0x07, 0xbb, 0x67, 0x62, 0x81, 0xe2, 0x84, 0xb6, 0x48, 0xa2, 0x4a, 0x3a, 0x1f,
0x92, 0x98, 0xbc, 0x42, 0xda, 0x92, 0x93, 0xf1, 0x71, 0x01, 0x77, 0xbd, 0xd6, 0x6e, 0x8a, 0x7c,
0x8e, 0x22, 0x2e, 0x10, 0x09, 0x02, 0x69, 0x9e, 0x80, 0x45, 0x24, 0xa7, 0xa2, 0x91, 0xe5, 0x8f,
0x95, 0xd7, 0xd7, 0x7d, 0x34, 0xc9, 0x99, 0xa9, 0x91, 0x22, 0x54, 0xad, 0xc9, 0x7d, 0x02, 0x4d,
0x07, 0x82, 0x66, 0x35, 0x64, 0x34, 0x41, 0x29, 0x54, 0x28, 0x7e, 0x45, 0x8a, 0xf4, 0x48, 0x8e,
0x95, 0xb5, 0xbe, 0x74, 0x4d, 0xa3, 0x94, 0xb2, 0x99, 0x49, 0xed, 0xab, 0xa4, 0xca, 0x1a, 0x3f,
0xea, 0x82, 0xce, 0x73, 0xde, 0xe5, 0x0a, 0x08, 0x19, 0xb5, 0x0b, 0x33, 0xfb, 0x95, 0x2b, 0xcd,
0xfe, 0xf9, 0x00, 0x00, 0xff, 0x50, 0x89, 0x5c, 0xfe, 0x5e, 0xbc, 0x27, 0xe5, 0x9f, 0xe1, 0xfc,
0x6e, 0xdf, 0x99, 0xf3, 0x7f, 0x78, 0xb7, 0xf3, 0x66, 0x29, 0xd5, 0x46, 0xc5, 0x9c, 0xdd, 0x38,
0xcd, 0x34, 0x8c, 0x58, 0x0a, 0x4f, 0x3e, 0x95, 0x5c, 0x7b, 0xb2, 0x0e, 0x5b, 0xf2, 0x84, 0xa2,
0x78, 0xf1, 0x98, 0xaa, 0xbb, 0xa7, 0xb0, 0x54, 0xaa, 0xb5, 0xfb, 0x81, 0x78, 0x8b, 0x4c, 0x69,
0xe0, 0x22, 0x72, 0x52, 0x0b, 0xfb, 0x7c, 0x06, 0xc6, 0x80, 0x76, 0x58, 0xa0, 0x94, 0xfd, 0x4e,
0x11, 0x89, 0xfc, 0x0e, 0x10, 0x5a, 0x80, 0x82, 0x4b, 0x4b, 0x92, 0x12, 0xdf, 0x44, 0x58, 0x8e,
0x95, 0x0a, 0x92, 0xc8, 0xd1, 0x2f, 0x38, 0x07, 0xd4, 0x22, 0x39, 0x34, 0x33, 0xa8, 0x51, 0x18,
0x04, 0xb4, 0x53, 0x77, 0x1a, 0xa5, 0xb2, 0xea, 0xe5, 0x95, 0x16, 0x0e, 0x5a, 0xfe, 0x5c, 0x94,
0x0c, 0xba, 0xc7, 0x82, 0x7f, 0xa8, 0xac, 0x05, 0xe9, 0x64, 0xa9, 0x0e, 0x6c, 0x64, 0x39, 0x2f,
0x6b, 0x7b, 0xf9, 0x3f, 0x31, 0xff, 0x07, 0x06, 0x79, 0x24, 0xca, 0x23, 0x23, 0x00, 0x00
};

File diff suppressed because it is too large Load Diff

View File

@@ -959,7 +959,7 @@ void setPaletteColors(JsonArray json, byte* tcp)
void serializePalettes(JsonObject root, AsyncWebServerRequest* request)
{
byte tcp[72]; //WLEDMM use real count instead of fixed number 72 (strip.getPaletteCount() not working on 8266)
byte tcp[72];
#ifdef ESP8266
int itemPerPage = 5;
#else
@@ -1060,7 +1060,7 @@ void serializePalettes(JsonObject root, AsyncWebServerRequest* request)
if (i>=palettesCount) {
setPaletteColors(curPalette, strip.customPalettes[i - palettesCount]);
} else {
memcpy_P(tcp, (byte*)pgm_read_dword(&(gGradientPalettes[i - 13])), 72); //WLEDMM use real count instead of fixed number 72 (strip.getPaletteCount() not working on 8266)
memcpy_P(tcp, (byte*)pgm_read_dword(&(gGradientPalettes[i - 13])), 72);
setPaletteColors(curPalette, tcp);
}
}

View File

@@ -679,12 +679,17 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
strip.panel.clear(); // release memory if allocated
if (strip.isMatrix) {
strip.panels = MAX(1,MIN(WLED_MAX_PANELS,request->arg(F("MPC")).toInt()));
strip.panelsH = request->arg(F("MPH")).toInt(); //WLEDM quick fix
strip.panelsV = request->arg(F("MPV")).toInt(); //WLEDM quick fix
strip.bOrA = request->arg(F("BA")).toInt(); //WLEDMM basic or advanced
strip.panelsH = request->arg(F("MPH")).toInt(); //WLEDMM needs to be stored as well
strip.panelsV = request->arg(F("MPV")).toInt(); //WLEDMM needs to be stored as well
strip.matrix.bottomStart = request->arg(F("PB")).toInt();
strip.matrix.rightStart = request->arg(F("PR")).toInt();
strip.matrix.vertical = request->arg(F("PV")).toInt();
strip.matrix.serpentine = request->hasArg(F("PS"));
strip.panelO.bottomStart = request->arg(F("PBL")).toInt(); //WLEDMM
strip.panelO.rightStart = request->arg(F("PRL")).toInt(); //WLEDMM
strip.panelO.vertical = request->arg(F("PVL")).toInt(); //WLEDMM
strip.panelO.serpentine = request->hasArg(F("PSL")); //WLEDMM
strip.panel.reserve(strip.panels); // pre-allocate memory
for (uint8_t i=0; i<strip.panels; i++) {
WS2812FX::Panel p;

View File

@@ -801,12 +801,17 @@ void getSettingsJS(AsyncWebServerRequest* request, byte subPage, char* dest) //W
sappend('v',SET_F("PH"),strip.panel[0].height);
}
sappend('v',SET_F("MPC"),strip.panels);
sappend('v',SET_F("MPH"),strip.panelsH); //WLEDM quick fix
sappend('v',SET_F("MPV"),strip.panelsV); //WLEDM quick fix
sappend('v',SET_F("BA"),strip.bOrA); //WLEDMM basic or advanced
sappend('v',SET_F("MPH"),strip.panelsH); //WLEDMM needs to be stored as well
sappend('v',SET_F("MPV"),strip.panelsV); //WLEDMM needs to be stored as well
sappend('v',SET_F("PB"),strip.matrix.bottomStart);
sappend('v',SET_F("PR"),strip.matrix.rightStart);
sappend('v',SET_F("PV"),strip.matrix.vertical);
sappend('c',SET_F("PS"),strip.matrix.serpentine);
sappend('v',SET_F("PBL"),strip.panelO.bottomStart); //WLEDMM
sappend('v',SET_F("PRL"),strip.panelO.rightStart); //WLEDMM
sappend('v',SET_F("PVL"),strip.panelO.vertical); //WLEDMM
sappend('c',SET_F("PSL"),strip.panelO.serpentine); //WLEDMM
// panels
for (uint8_t i=0; i<strip.panels; i++) {
char n[5];