Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use canvas instead of CSS gradient for liveview #3621

Merged
merged 5 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 33 additions & 37 deletions wled00/data/liveview.htm
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,33 @@
<meta name="theme-color" content="#222222">
<title>WLED Live Preview</title>
<style>
body {
margin: 0;
}
#canv {
background: black;
filter: brightness(175%);
width: 100%;
height: 100%;
position: absolute;
}
body {
margin: 0;
}
#canv {
background: black;
filter: brightness(175%);
width: 100%;
height: 100%;
position: absolute;
}
</style>
<script>
var d = document;
var ws;
var tmout = null;
function update() // via HTTP (/json/live)
{
if (document.hidden) {
var c;
var ctx;
function draw(start, skip, leds, fill) {
c.width = d.documentElement.clientWidth;
let w = (c.width * skip) / (leds.length - start);
for (let i = start; i < leds.length; i += skip) {
ctx.fillStyle = fill(leds,i);
ctx.fillRect(Math.round((i - start) * w / skip), 0, Math.ceil(w), c.height);
}
}
function update() { // via HTTP (/json/live)
if (d.hidden) {
clearTimeout(tmout);
tmout = setTimeout(update, 250);
return;
Expand All @@ -36,27 +46,20 @@
return res.json();
})
.then(json => {
var str = "linear-gradient(90deg,";
var len = json.leds.length;
for (i = 0; i < len; i++) {
var leddata = json.leds[i];
if (leddata.length > 6) leddata = leddata.substring(2);
str += "#" + leddata;
if (i < len -1) str += ","
}
str += ")";
document.getElementById("canv").style.background = str;
draw(0, 1, json.leds, (a,i) => "#" + ((a[i].length > 6) ? a[i].substring(2) : a[i]));
clearTimeout(tmout);
tmout = setTimeout(update, 40);
})
.catch(function (error) {
.catch((error)=>{
//console.error("Peek HTTP error:",error);
clearTimeout(tmout);
tmout = setTimeout(update, 2500);
})
}
function S() { // Startup function (onload)
let wsOn = (window.location.href.indexOf("?ws") > 0);
if (!wsOn) {update(); return;}
c = d.getElementById('canv');
ctx = c.getContext('2d');
if (window.location.href.indexOf("?ws") == -1) {update(); return;}

// Initialize WebSocket connection
try {
Expand Down Expand Up @@ -86,15 +89,8 @@
if (toString.call(e.data) === '[object ArrayBuffer]') {
let leds = new Uint8Array(event.data);
if (leds[0] != 76) return; //'L'
let str = "linear-gradient(90deg,";
let len = leds.length;
let start = leds[1]==2 ? 4 : 2; // 1 = 1D, 2 = 1D/2D (leds[2]=w, leds[3]=h)
for (i = start; i < len; i+=3) {
str += `rgb(${leds[i]},${leds[i+1]},${leds[i+2]})`;
if (i < len -3) str += ","
}
str += ")";
document.getElementById("canv").style.background = str;
// leds[1] = 1: 1D; leds[1] = 2: 1D/2D (leds[2]=w, leds[3]=h)
draw(leds[1]==2 ? 4 : 2, 3, leds, (a,i) => `rgb(${a[i]},${a[i+1]},${a[i+2]})`);
}
} catch (err) {
console.error("Peek WS error:",err);
Expand All @@ -104,6 +100,6 @@
</script>
</head>
<body onload="S()">
<div id="canv"></div>
<canvas id="canv"></canvas>
</body>
</html>
</html>
127 changes: 65 additions & 62 deletions wled00/html_other.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,69 +188,72 @@ const uint8_t PAGE_welcome[] PROGMEM = {


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


Expand Down
Loading