Refactor global pins settings using dropdowns and add to rotary_encoder

- replace rOption by  xOption (extend option) to show default value (⎌)
- Usermod rotary_encoder: add appendConfigData function and show help and default functions
- Settings.htm: Move Usermods(pins) below the usermods

Settings_um.htm
- remove SDAPin etc
- comment check(0,k) as not used anymore
- add xOption
- add generated global pin fields (using addField) in ldS
- remove hard coded global pin fields

set.cpp: set i2c_sda etc using new generated fields
xml.cpp: set generated fields values using i2c_sda etc and show defaults
This commit is contained in:
Ewoud
2023-01-04 12:17:14 +01:00
parent 0571aa92f2
commit 23663a46f9
9 changed files with 379 additions and 394 deletions

View File

@@ -963,6 +963,7 @@ build_flags = ${esp32_4MB_max_base.build_flags}
-D FLD_PIN_SCL=22 -D FLD_PIN_SDA=21
-D HW_PIN_SCL=22 -D HW_PIN_SDA=21
; -D ENCODER_DT_PIN=18 -D ENCODER_CLK_PIN=5 -D ENCODER_SW_PIN=19
-D ENCODER_DT_PIN=25 -D ENCODER_CLK_PIN=5 -D ENCODER_SW_PIN=26
; -D WLED_USE_MY_CONFIG
[env:wemos_shield_esp32_4MB_max]

View File

@@ -1972,7 +1972,7 @@ class AudioReactive : public Usermod {
//WLEDMM: add defaults
#ifdef AUDIOPIN
oappend(SET_F("rOption('AudioReactive:analogmic:pin',1,'")); oappendi(AUDIOPIN); oappend(" ⎌',"); oappendi(AUDIOPIN); oappend(");");
oappend(SET_F("xOption('AudioReactive:analogmic:pin',1,' ⎌',")); oappendi(AUDIOPIN); oappend(");");
#endif
oappend(SET_F("dd=addDropdown('AudioReactive','digitalmic:type');"));
@@ -2102,15 +2102,15 @@ class AudioReactive : public Usermod {
oappend(SET_F("addInfo('AudioReactive:digitalmic:type',1,'<i>requires reboot!</i>');")); // 0 is field type, 1 is actual field
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',0,'<i>sd/data/dout</i>','I2S SD');"));
#ifdef I2S_SDPIN
oappend(SET_F("rOption('AudioReactive:digitalmic:pin[]',0,'")); oappendi(I2S_SDPIN); oappend(" ⎌',"); oappendi(I2S_SDPIN); oappend(");");
oappend(SET_F("xOption('AudioReactive:digitalmic:pin[]',0,' ⎌',")); oappendi(I2S_SDPIN); oappend(");");
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',1,'<i>ws/clk/lrck</i>','I2S WS');"));
#ifdef I2S_WSPIN
oappend(SET_F("rOption('AudioReactive:digitalmic:pin[]',1,'")); oappendi(I2S_WSPIN); oappend(" ⎌',"); oappendi(I2S_WSPIN); oappend(");");
oappend(SET_F("xOption('AudioReactive:digitalmic:pin[]',1,' ⎌',")); oappendi(I2S_WSPIN); oappend(");");
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',2,'<i>sck/bclk</i>','I2S SCK');"));
#ifdef I2S_CKPIN
oappend(SET_F("rOption('AudioReactive:digitalmic:pin[]',2,'")); oappendi(I2S_CKPIN); oappend(" ⎌',"); oappendi(I2S_CKPIN); oappend(");");
oappend(SET_F("xOption('AudioReactive:digitalmic:pin[]',2,' ⎌',")); oappendi(I2S_CKPIN); oappend(");");
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',3,'<i>master clock</i>','I2S MCLK');"));
#if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3)

View File

@@ -1050,12 +1050,12 @@ class FourLineDisplayUsermod : public Usermod {
// WLEDMM add defaults
oappend(SET_F("addInfo('4LineDisplay:pin[]',0,'','I2C/SPI CLK');"));
#ifdef FLD_PIN_SCL
oappend(SET_F("rOption('4LineDisplay:pin[]',0,'")); oappendi(FLD_PIN_SCL); oappend(" ⎌',"); oappendi(FLD_PIN_SCL); oappend(");");
oappend(SET_F("xOption('4LineDisplay:pin[]',0,' ⎌',")); oappendi(FLD_PIN_SCL); oappend(");");
#endif
oappend(SET_F("rOption('4LineDisplay:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
oappend(SET_F("addInfo('4LineDisplay:pin[]',1,'','I2C/SPI DTA');"));
#ifdef FLD_PIN_SDA
oappend(SET_F("rOption('4LineDisplay:pin[]',1,'")); oappendi(FLD_PIN_SDA); oappend(" ⎌',"); oappendi(FLD_PIN_SDA); oappend(");");
oappend(SET_F("xOption('4LineDisplay:pin[]',1,' ⎌',")); oappendi(FLD_PIN_SDA); oappend(");");
#endif
oappend(SET_F("rOption('4LineDisplay:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
oappend(SET_F("addInfo('4LineDisplay:pin[]',2,'','SPI CS');"));

View File

@@ -865,6 +865,21 @@ public:
DEBUG_PRINTLN(F("Rotary Encoder config saved."));
}
//WLEDMM: add appendConfigData
void appendConfigData()
{
oappend(SET_F("addInfo('Rotary-Encoder:help',0,'<button onclick=\"location.href=&quot;https://mm.kno.wled.ge/usermods/Rotary-Encoder&quot;\" type=\"button\">?</button>');")); // 0 is field type, 1 is actual field
#ifdef ENCODER_DT_PIN
oappend(SET_F("xOption('Rotary-Encoder:DT-pin',1,' ⎌',")); oappendi(ENCODER_DT_PIN); oappend(");");
#endif
#ifdef ENCODER_CLK_PIN
oappend(SET_F("xOption('Rotary-Encoder:CLK-pin',1,' ⎌',")); oappendi(ENCODER_CLK_PIN); oappend(");");
#endif
#ifdef ENCODER_SW_PIN
oappend(SET_F("xOption('Rotary-Encoder:SW-pin',1,' ⎌',")); oappendi(ENCODER_SW_PIN); oappend(");");
#endif
}
/**
* readFromConfig() is called before setup() to populate properties from values stored in cfg.json
*

View File

@@ -98,11 +98,11 @@
<button type="submit" onclick="window.location='./settings/leds'">LED Preferences</button>
<button type="submit" onclick="window.location='./settings/2D'">2D Configuration</button>
<div id="configMenu">Loading...</div>
<button type="submit" onclick="window.location='./settings/um'">Usermods (pins)</button> <!--WLEDMM: Move below UMs-->>
<button type="submit" onclick="window.location='./settings/ui'">User Interface</button>
<button id="dmxbtn" style="display: none;" type="submit" onclick="window.location='./settings/dmx'">DMX Output</button>
<button type="submit" onclick="window.location='./settings/sync'">Sync Interfaces</button>
<button type="submit" onclick="window.location='./settings/time'">Time & Macros</button>
<button type="submit" onclick="window.location='./settings/um'">Usermods</button>
<button type="submit" onclick="window.location='./settings/sec'">Security & Updates</button>
</body>
</html>

View File

@@ -11,7 +11,7 @@
var pins = [], pinO = [], owner;
var loc = false, locip;
var urows;
var numM = 0;
// var numM = 0;
function gId(s) { return d.getElementById(s); }
function isO(i) { return (i && typeof i === 'object' && !Array.isArray(i)); }
function H() { window.open("https://github.com/Aircoookie/WLED/wiki/Settings#usermod-settings"); }
@@ -33,11 +33,6 @@
GetV();
for (let k=0; k<d.rsvd.length; k++) { pins.push(d.rsvd[k]); pinO.push("rsvd"); }
if (d.um_p[0]==-1) d.um_p.shift();
d.Sf.SDApin.max = d.max_gpio;
d.Sf.SCLpin.max = d.max_gpio;
d.Sf.MOSIpin.max = d.max_gpio;
d.Sf.SCLKpin.max = d.max_gpio;
d.Sf.MISOpin.max = d.max_gpio;
});
// error event
scE.addEventListener("error", (ev) => {
@@ -55,36 +50,12 @@
}
}
ldS();
if (!numM) gId("um").innerHTML = ""; //WLEDMM: Do not display no usermods installed
// if (!numM) gId("um").innerHTML = ""; //WLEDMM: Do not display no usermods installed
}
// https://stackoverflow.com/questions/3885817/how-do-i-check-that-a-number-is-float-or-integer
function isF(n) { return n === +n && n !== (n|0); }
function isI(n) { return n === +n && n === (n|0); }
function check(o,k) { // input object, pin owner key
var n = o.name.replace("[]","").substr(-3);
// console.log("check", o, k, n, pins, pinO);
if (o.type=="number" && n.substr(0,3)=="pin") {
for (var i=0; i<pins.length; i++) {
if (k==pinO[i]) continue;
if (o.value==pins[i] && pinO[i]==="if") { o.style.color="lime"; break; }
if (o.value==pins[i] || o.value<-1 || o.value>d.max_gpio) { o.style.color="red"; break; } else o.style.color=d.ro_gpio.some((e)=>e==parseInt(o.value,10))?"orange":"#fff";
}
} else {
switch (o.name) {
case "SDApin": break;
case "SCLpin": break;
case "MOSIpin": break;
case "SCLKpin": break;
case "MISOpin": break;
default: return;
}
for (var i=0; i<pins.length; i++) {
//if (k==pinO[i]) continue; // same owner
if (o.value==pins[i] && pinO[i]==="if") { o.style.color="tomato"; break; }
if (o.value==pins[i] || o.value<-1 || o.value>d.max_gpio) { o.style.color="red"; break; } else o.style.color=d.ro_gpio.some((e)=>e==parseInt(o.value,10))?"orange":"#fff";
}
}
}
// function check(o,k) {} //WLEDMM not needed as we use dropdowns
function getPins(o) {
if (isO(o)) {
for (const [k,v] of Object.entries(o)) {
@@ -112,7 +83,6 @@
return s.replace(/[\W_]/g,' ').replace(/(^\w{1})|(\s+\w{1})/g, l=>l.toUpperCase()); // replace - and _ with space, capitalize every 1st letter
}
function addField(k,f,o,a=false) { //key, field, (sub)object, isArray
// console.log("addField", k, f, o, a);
if (isO(o)) {
urows += '<hr class="sml">';
if (f!=='unknown' && !k.includes(":")) urows += `<p><u>${initCap(f)}</u></p>`; //WLEDMM show group title
@@ -133,10 +103,8 @@
break;
case "number":
c = `value="${o}"`;
// console.log("addField nr", c);
if (f.substr(-3)==="pin") {
if (f.substr(-3)==="pin") { //WLEDMM: this will not be used as pins are now dropdowns
c += ` max="${d.max_gpio}" min="-1" class="s"`;
// console.log("addField nr pin should not happen", c);
t = "int";
} else {
c += ' step="any" class="xxl"';
@@ -150,14 +118,11 @@
// https://stackoverflow.com/questions/11657123/posting-both-checked-and-unchecked-checkboxes
if (t=="checkbox") urows += `<input type="hidden" name="${k}:${f}${a?"[]":""}" value="false">`;
else if (!a) urows += `<input type="hidden" name="${k}:${f}${a?"[]":""}" value="${t}">`;
// make a dropdown for pin variables
if (f.includes("pin")) { //} || f == "SDApin" || f == "SCLpin" || f == "MOSIpin" || f == "SCLKpin" || f == "MISOpin") {
// WLEDMM make a dropdown for pin variables
if (f.includes("pin")) {
var n = this.name.replace("[]","").substr(-3);
// console.log("addPin", k, f, o, a, n, pins, pinO);
urows += `<select name="${k}:${f}${a?"[]":""}">`;
// urows += `<option value="-1">Use global</option>`;
// urows += `<option value="-2">Use ⎌</option>`;
for (var j=-1; j<=39; j++) { // all possible pins (d.max_gpio not working)
for (var j=-1; j<=39; j++) { // all possible pins (d.max_gpio not working as it is set after addField during load and appendGPIOInfo)
let foundPin = -1;
for (var i=0; i<pins.length; i++) { // check if pin is reserved
if (pins[i] == j) foundPin = i;
@@ -179,7 +144,7 @@
urows += `</select>`;
}
else
urows += `<input type="${t==="int"?"number":t}" name="${k}:${f}${a?"[]":""}" ${c} oninput="check(this,'${k.substr(k.indexOf(":")+1)}')">`;
urows += `<input type="${t==="int"?"number":t}" name="${k}:${f}${a?"[]":""}" ${c}>`; //WLEDMM no need for oninput="check(this,'${k.substr(k.indexOf(":")+1)}')"
urows += `<br>`;
}
}
@@ -218,31 +183,39 @@
if (c.value == sel.dataset.val) sel.selectedIndex = i;
}
}
//WLEDMM: replace Option to set build flag defaults and globals
//WLEDMM: replace Option to set globals
function rOption(name,el,txt,val) {
let obj = d.getElementsByName(name);
if (obj[el]) {
let sel = obj[el];
for (let i=0; i<sel.childNodes.length; i++) {
let c = sel.childNodes[i];
if (c.value == val) c.text = txt;
}
var select = obj;
if (obj[el]) select = obj[el];
for (let i=0; i<select.childNodes.length; i++) {
let c = select.childNodes[i];
if (c.value == val) c.text = txt;
}
}
//WLEDMM: extend Option to set build flag defaults
function xOption(name,el,txt,val) {
let obj = d.getElementsByName(name);
var select = obj;
if (obj[el]) select = obj[el];
for (let i=0; i<select.childNodes.length; i++) {
let c = select.childNodes[i];
if (c.value == val) c.text += txt;
}
}
//WLEDMM: delete Options to remove options e.g. mclk
function dOptions(name,el,valFrom,valTo) {
let obj = d.getElementsByName(name);
if (obj[el]) {
let select = obj[el];
for (let i=0; i<select.options.length; i++) {
let c = select.options[i];
if (c.value >= valFrom && c.value <= valTo) {
select.removeChild(c);
i--; //decrease i by one because the index has been adjusted
}
//https://www.javascripttutorial.net/javascript-dom/javascript-add-remove-options/
//https://www.javascripttutorial.net/javascript-dom/javascript-remove-items-from-a-select-conditionally/
var select = obj;
if (obj[el]) select = obj[el];
for (let i=0; i<select.options.length; i++) {
let c = select.options[i];
if (c.value >= valFrom && c.value <= valTo) {
select.removeChild(c);
i--; //decrease i by one because the index has been adjusted
}
//https://www.javascripttutorial.net/javascript-dom/javascript-add-remove-options/
//https://www.javascripttutorial.net/javascript-dom/javascript-remove-items-from-a-select-conditionally/
}
}
// https://stackoverflow.com/questions/26440494/insert-text-after-this-input-element-with-javascript
@@ -269,13 +242,24 @@
umCfg = json.um;
getPins(json);
urows="";
// addField("SCL", "pin", -1, true);
// addField("SCL", "pin", -1, true);
// addInfo('SCL:pin[]',0,'','SCL');
// addInfo('SCL:pin[]',1,'','SCLK');
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const userMod = urlParams.get('um')
const userMod = urlParams.get('um');
if (userMod == null) {
urows+="<h2>Usermods Global pins</h2>";
urows+="<button onclick=\"location.href=&quot;https://mm.kno.wled.ge/usermods/globalpins&quot;\" type=\"button\">?</button>";
urows+="<hr class=\"sml\">";
urows+="<i style=\"color:orange\">(only changable on ESP32, change requires reboot!)</i>";
urows+="<hr class=\"sml\">";
urows+="<p><u>Global I2C GPIOs (HW)</u></p>";
addField("SDA2", "pin", -1, false);
addField("SCL2", "pin", -1, false);
urows+="<hr class=\"sml\">";
urows+="<p><u>Global SPI GPIOs (HW)</u></p>";
addField("MOSI2", "pin", -1, false);
addField("MISO2", "pin", -1, false);
addField("SCLK2", "pin", -1, false);
}
if (isO(umCfg)) {
//WLEDMM: read url parameter. e.g. um=AudioReactive and if set only add the usermod with the same name
for (const [k,o] of Object.entries(umCfg)) {
@@ -286,12 +270,10 @@
}
if (userMod != null && urows==="") urows = "Usermods configuration not found.<br>Press <i>Save</i> to initialize defaults.";
}
//WLEDMM: only show globalGPIOs if no usermod info is shown (url without um parameter)
gId("globalGPIOs").style.display = (userMod == null)?"block":"none";
gId("um").innerHTML = urows;
var url = (loc?`http://${locip}`:'') + '/settings/s.js?p=8';
if (userMod != null) url+= '&um=' + userMod;
if (userMod != null) url+= '&um=' + userMod; //WLEDMM add userMod as parameter
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
})
.catch((error)=>{
@@ -315,20 +297,7 @@
<span id="lssuc" style="color:green; display:none">&#10004; Configuration saved!</span>
<span id="lserr" style="color:red; display:none">&#9888; Could not load configuration.</span>
</div>
<div id="globalGPIOs" style="display:none;"> <!--WLEDMM: show in ldS-->
<hr>
<h2>Usermod Setup</h2>
Global I<sup>2</sup>C GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
SDA:<input type="number" min="-1" max="48" name="SDApin" onchange="check(this,'if')" class="s" placeholder="SDApin"><br>
SCL:<input type="number" min="-1" max="48" name="SCLpin" onchange="check(this,'if')" class="s" placeholder="SCLpin">
<hr class="sml">
Global SPI GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
MOSI:<input type="number" min="-1" max="48" name="MOSIpin" onchange="check(this,'if')" class="s" placeholder="MOSIpin"><br>
MISO:<input type="number" min="-1" max="48" name="MISOpin" onchange="check(this,'if')" class="s" placeholder="MISOpin"><br>
SCLK:<input type="number" min="-1" max="48" name="SCLKpin" onchange="check(this,'if')" class="s" placeholder="SCLKpin">
</div>
<!-- WLEDMM: no gpios here as it is generated -->
<div id="um">Loading settings...</div>
<hr><button type="button" onclick="B()">Back</button><button type="submit">Save</button>
</form>

View File

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

View File

@@ -508,8 +508,29 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
if (!requestJSONBufferLock(5)) return;
// global I2C & SPI pins
int8_t hw_sda_pin = !request->arg(F("SDApin")).length() ? -1 : (int)request->arg(F("SDApin")).toInt();
int8_t hw_scl_pin = !request->arg(F("SCLpin")).length() ? -1 : (int)request->arg(F("SCLpin")).toInt();
int8_t hw_sda_pin = -1;//!request->arg(F("SDApin")).length() ? -1 : (int)request->arg(F("SDApin")).toInt();
int8_t hw_scl_pin = -1;//!request->arg(F("SCLpin")).length() ? -1 : (int)request->arg(F("SCLpin")).toInt();
int8_t hw_mosi_pin = -1;//!request->arg(F("MOSIpin")).length() ? -1 : (int)request->arg(F("MOSIpin")).toInt();
int8_t hw_miso_pin = -1;//!request->arg(F("MISOpin")).length() ? -1 : (int)request->arg(F("MISOpin")).toInt();
int8_t hw_sclk_pin = -1;//!request->arg(F("SCLKpin")).length() ? -1 : (int)request->arg(F("SCLKpin")).toInt();
//WLEDMM: :pin values have 2 occurrences: the type and the value, we need the value
int paramsNr = request->params();
AsyncWebParameter* p_prev = nullptr;
for (int i=0;i<paramsNr;i++) {
AsyncWebParameter* p = request->getParam(i);
if (p_prev != nullptr && p->name() == p_prev->name())
{
if (p->name() == "SDA2:pin") hw_sda_pin = p->value().toInt();
if (p->name() == "SCL2:pin") hw_scl_pin = p->value().toInt();
if (p->name() == "MOSI2:pin") hw_mosi_pin = p->value().toInt();
if (p->name() == "MISO2:pin") hw_miso_pin = p->value().toInt();
if (p->name() == "SCLK2:pin") hw_sclk_pin = p->value().toInt();
}
p_prev = p;
}
#ifdef ESP8266
// cannot change pins on ESP8266
if (hw_sda_pin >= 0 && hw_sda_pin != HW_PIN_SDA) hw_sda_pin = HW_PIN_SDA;
@@ -531,9 +552,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
i2c_sda = -1;
i2c_scl = -1;
}
int8_t hw_mosi_pin = !request->arg(F("MOSIpin")).length() ? -1 : (int)request->arg(F("MOSIpin")).toInt();
int8_t hw_miso_pin = !request->arg(F("MISOpin")).length() ? -1 : (int)request->arg(F("MISOpin")).toInt();
int8_t hw_sclk_pin = !request->arg(F("SCLKpin")).length() ? -1 : (int)request->arg(F("SCLKpin")).toInt();
#ifdef ESP8266
// cannot change pins on ESP8266
if (hw_mosi_pin >= 0 && hw_mosi_pin != HW_PIN_DATASPI) hw_mosi_pin = HW_PIN_DATASPI;

View File

@@ -700,43 +700,42 @@ void getSettingsJS(AsyncWebServerRequest* request, byte subPage, char* dest) //W
if (subPage == 8) //usermods
{
appendGPIOinfo();
oappend(SET_F("numM="));
oappendi(usermods.getModCount());
oappend(";");
sappend('v',SET_F("SDApin"),i2c_sda);
sappend('v',SET_F("SCLpin"),i2c_scl);
sappend('v',SET_F("MOSIpin"),spi_mosi);
sappend('v',SET_F("MISOpin"),spi_miso);
sappend('v',SET_F("SCLKpin"),spi_sclk);
//WLEDMM: add help info showing defaults
if (!request->hasParam("um") ) {
// oappend(SET_F("numM="));
// oappendi(usermods.getModCount());
// oappend(";");
oappend(SET_F("d.getElementsByName(\"SDA2:pin\")[1].value=")); oappendi(i2c_sda); oappend(";");
oappend(SET_F("d.getElementsByName(\"SCL2:pin\")[1].value=")); oappendi(i2c_scl); oappend(";");
oappend(SET_F("d.getElementsByName(\"MOSI2:pin\")[1].value=")); oappendi(spi_mosi); oappend(";");
oappend(SET_F("d.getElementsByName(\"MISO2:pin\")[1].value=")); oappendi(spi_miso); oappend(";");
oappend(SET_F("d.getElementsByName(\"SCLK2:pin\")[1].value=")); oappendi(spi_sclk); oappend(";");
//WLEDMM: add help info showing defaults
oappend(SET_F("addInfo('SDA2:pin',0,'', 'SDA');"));
#ifdef HW_PIN_SDA
oappend(SET_F("addInfo('SDApin',0,'<i>&#9100; ")); oappendi(HW_PIN_SDA); oappend("</i>');");
oappend(SET_F("xOption('SDA2:pin',1,' ⎌',")); oappendi(HW_PIN_SDA); oappend(");");
#endif
oappend(SET_F("addInfo('SCL2:pin',0,'', 'SCL');"));
#ifdef HW_PIN_SCL
oappend(SET_F("addInfo('SCLpin',0,'<i>&#9100; ")); oappendi(HW_PIN_SCL); oappend("</i>');");
oappend(SET_F("xOption('SCL2:pin',1,' ⎌',")); oappendi(HW_PIN_SCL); oappend(");");
#endif
oappend(SET_F("addInfo('MOSI2:pin',0,'', 'MOSI');"));
#ifdef HW_PIN_DATASPI
oappend(SET_F("addInfo('MOSIpin',0,'<i>&#9100; ")); oappendi(HW_PIN_DATASPI); oappend("</i>');");
oappend(SET_F("xOption('MOSI2:pin',1,' ⎌',")); oappendi(HW_PIN_DATASPI); oappend(");");
#endif
oappend(SET_F("addInfo('MISO2:pin',0,'', 'MISO');"));
#ifdef HW_PIN_MISOSPI
oappend(SET_F("addInfo('MISOpin',0,'<i>&#9100; ")); oappendi(HW_PIN_MISOSPI); oappend("</i>');");
oappend(SET_F("xOption('MISO2:pin',1,' ⎌',")); oappendi(HW_PIN_MISOSPI); oappend(");");
#endif
oappend(SET_F("addInfo('SCLK2:pin',0,'', 'SCLK');"));
#ifdef HW_PIN_CLOCKSPI
oappend(SET_F("addInfo('SCLKpin',0,'<i>&#9100; ")); oappendi(HW_PIN_CLOCKSPI); oappend("</i>');");
oappend(SET_F("xOption('SCLK2:pin',1,' ⎌',")); oappendi(HW_PIN_CLOCKSPI); oappend(");");
#endif
//WLEDMM: this puts info in the placeholder of the field, not intuitive
// oappend(SET_F("addInfo('SDApin','")); oappendi(HW_PIN_SDA); oappend(SET_F("');"));
// oappend(SET_F("addInfo('SCLpin','")); oappendi(HW_PIN_SCL); oappend(SET_F("');"));
// oappend(SET_F("addInfo('MOSIpin','")); oappendi(HW_PIN_DATASPI); oappend(SET_F("');"));
// oappend(SET_F("addInfo('MISOpin','")); oappendi(HW_PIN_MISOSPI); oappend(SET_F("');"));
// oappend(SET_F("addInfo('SCLKpin','")); oappendi(HW_PIN_CLOCKSPI); oappend(SET_F("');"));
if (request->hasParam("um")) { //to do: http://<ip>>/settings/um (global pins) also is succesful here and should not be
Usermod *usermod = usermods.lookupName(request->getParam("um")->value().c_str());
if (usermod) usermod->appendConfigData(); // if (usermod) to deal with http://<ip>>/settings/um
}
else
usermods.appendConfigData();
else {
Usermod *usermod = usermods.lookupName(request->getParam("um")->value().c_str());
if (usermod) usermod->appendConfigData();
}
}
if (subPage == 9) // update