optimise ch32 code further

This commit is contained in:
Crispy 2025-06-19 01:03:55 +02:00
parent 382cd92629
commit a2b7e26ace
4 changed files with 223 additions and 228 deletions

View file

@ -58,10 +58,9 @@ void refresh_screen() {
while (page < 8) {
/* odd rows are unused so each nybble is expanded */
packet[packet_index] = expand[(frame[x] >> (page * 4)) & 0xf];
x++;
packet_index++;
if (x == WIDTH) {
x = 0;
x = (x + 1) % WIDTH;
if (x == 0) {
page++;
}
if (packet_index == SSD1306_PSZ) {
@ -84,7 +83,7 @@ void clear_screen() {
u8 next_byte() {
u8 byte = video[reader];
reader += 1;
reader++;
return byte;
}
@ -92,7 +91,7 @@ void fill_frame(u8 color) {
memset(frame, color ? 0xFFFFFFFF : 0x00, sizeof(frame));
}
void set_pixel(u8 x, u8 y, u8 color) {
void set_pixel(u32 x, u32 y, u8 color) {
if (color)
frame[x] |= 1 << y;
else
@ -145,17 +144,17 @@ void decode_next_frame() {
#ifdef USE_RLEHorizontal
void rle_horizontal() {
u8 x = 0;
u8 y = 0;
u32 x = 0;
u32 y = 0;
u8 color = 0;
while (y < HEIGHT) {
u32 run = next_byte();
while (run--) {
set_pixel(x, y, color);
x += 1;
x++;
if (x == WIDTH) {
x = 0;
y += 1;
y++;
}
}
color = 1 - color;
@ -165,17 +164,16 @@ void rle_horizontal() {
#ifdef USE_RLEVertical
void rle_vertical() {
u8 x = 0;
u8 y = 0;
u32 x = 0;
u32 y = 0;
u8 color = 0;
while (x < WIDTH) {
u32 run = next_byte();
while (run--) {
set_pixel(x, y, color);
y += 1;
if (y == HEIGHT) {
y = 0;
x += 1;
y = (y + 1) % HEIGHT;
if (y == 0) {
x++;
}
}
color = 1 - color;
@ -187,11 +185,11 @@ void rle_vertical() {
void bg_strips_h() {
u8 head = next_byte();
u8 bg = head >> 7;
u8 fg = 1 - bg;
u8 fg = !bg;
fill_frame(bg);
u8 strip_count = head & 127;
for (u8 i = 0; i < strip_count; i++) {
u16 packed = (next_byte() << 8) | next_byte();
u32 packed = (next_byte() << 8) | next_byte();
u8 y = packed >> 11;
u8 x_start = (packed >> 5) & 0x3f;
u8 width = packed & 0x1f;
@ -206,21 +204,17 @@ void bg_strips_h() {
void cell_diff_8v() {
u32 bitmap = (next_byte() << 16) | (next_byte() << 8) | next_byte();
u32 run = next_byte();
u8 color = 0;
u32 run = 0;
u8 color = 1;
for (u8 x = 0; x < WIDTH; x++) {
u8 cellx = x >> 3;
for (u8 y = 0; y < HEIGHT; y++) {
u8 celly = y >> 3;
if (bitmap >> (cellx + (WIDTH / 8) * celly) & 1) {
// advance rle once
if (run == 0) {
while (run == 0) {
run = next_byte();
color = !color;
if (run == 0) {
run = next_byte();
color = !color;
}
}
set_pixel(x, y, color);
run--;

View file

@ -11,62 +11,62 @@ typedef enum Encoding {
Encoding_FillBlack = 0,
Encoding_FillWhite = 1,
Encoding_RLEHorizontal = 2,
Encoding_RLEVertical = 5,
Encoding_BGStripsH16 = 12,
Encoding_CellDiff8V = 14,
Encoding_RLEVertical = 3,
Encoding_BGStripsH16 = 4,
Encoding_CellDiff8V = 5,
} Encoding_t;
const unsigned char video[13046] = {
0,0,14,8,99,152,57,1,13,3,19,5,18,6,16,8,
0,0,5,8,99,152,57,1,13,3,19,5,18,6,16,8,
3,1,10,15,9,15,9,16,8,17,7,18,14,19,13,28,
4,29,3,29,3,30,2,64,5,0,255,0,30,3,27,5,
4,29,3,29,3,30,2,64,3,0,255,0,30,3,27,5,
19,2,3,8,19,13,15,17,1,3,9,23,8,28,2,255,
0,49,4,25,9,68,4,25,15,16,18,14,22,10,30,2,
224,14,13,41,78,0,146,9,6,2,13,5,3,8,1,4,
224,5,13,41,78,0,146,9,6,2,13,5,3,8,1,4,
9,5,4,9,1,7,3,29,1,7,1,7,1,7,1,39,
5,23,2,1,7,18,17,15,20,12,23,9,25,7,128,14,
5,23,2,1,7,18,17,15,20,12,23,9,25,7,128,5,
5,41,206,0,119,8,22,11,18,14,16,16,1,5,1,1,
5,19,1,15,2,14,2,14,2,14,3,13,3,13,2,14,
3,4,7,2,3,3,10,16,19,12,193,14,5,41,206,0,
3,4,7,2,3,3,10,16,19,12,193,5,5,41,206,0,
213,4,10,1,15,9,6,4,9,1,2,5,7,2,2,14,
2,14,2,14,2,14,1,15,1,15,1,31,1,4,8,19,
16,16,20,12,22,9,97,5,0,255,0,158,2,28,5,1,
16,16,20,12,22,9,97,3,0,255,0,158,2,28,5,1,
1,18,1,3,14,10,25,6,81,1,31,1,31,1,31,2,
30,2,30,1,31,1,22,4,5,1,6,1,2,6,8,9,
6,11,14,1,4,14,13,22,10,24,8,26,6,28,4,224,
14,15,123,142,0,85,4,19,6,18,6,3,3,12,12,14,
5,15,123,142,0,85,4,19,6,18,6,3,3,12,12,14,
10,23,9,24,8,24,8,24,8,8,4,13,7,7,6,11,
8,6,10,6,9,6,13,3,11,2,30,2,30,2,30,3,
29,4,28,4,28,4,28,5,39,7,5,4,8,7,1,3,
1,144,5,0,255,0,180,5,26,7,5,2,18,14,18,14,
1,144,3,0,255,0,180,5,26,7,5,2,18,14,18,14,
19,13,22,10,8,4,11,9,6,7,12,7,5,10,8,9,
4,12,7,11,2,16,2,106,1,31,2,30,2,30,2,30,
3,29,4,28,7,14,8,3,10,11,8,1,31,1,130,5,
3,29,4,28,7,14,8,3,10,11,8,1,31,1,130,3,
0,255,0,242,5,26,7,4,5,16,16,16,16,7,4,5,
16,5,7,4,16,4,11,6,10,4,14,5,10,3,17,3,
9,2,222,1,31,2,30,2,30,4,21,4,3,7,15,9,
1,10,12,9,1,21,1,8,1,65,5,0,255,0,119,3,
1,10,12,9,1,21,1,8,1,65,3,0,255,0,119,3,
28,6,25,8,24,8,24,12,20,12,7,6,10,10,4,9,
10,11,1,10,11,23,10,29,2,59,3,27,3,11,1,18,
1,12,1,127,1,31,2,30,5,20,1,6,7,14,3,2,
17,10,171,5,0,177,5,26,7,24,9,23,9,24,8,24,
17,10,171,3,0,177,5,26,7,24,9,23,9,24,8,24,
7,27,5,28,3,29,5,1,7,18,14,17,15,18,14,18,
14,18,14,18,14,19,13,19,13,19,13,19,13,19,13,19,
13,19,13,19,5,3,5,18,5,7,2,17,7,1,7,18,
14,19,13,18,14,17,15,11,3,3,15,5,10,2,15,4,
28,3,29,2,30,2,30,12,139,122,131,130,102,138,72,146,
72,154,42,162,42,170,42,178,42,186,72,194,103,202,132,12,
28,3,29,2,30,2,30,4,139,122,131,130,102,138,72,146,
72,154,42,162,42,170,42,178,42,186,72,194,103,202,132,4,
142,58,130,66,70,74,40,75,65,82,41,90,10,98,11,106,
11,114,11,122,11,130,11,138,41,146,71,154,99,12,33,1,
11,114,11,122,11,130,11,138,41,146,71,154,99,4,33,1,
94,10,86,18,55,26,24,34,24,42,55,50,101,51,140,58,
100,59,202,66,100,67,233,74,100,76,8,82,100,84,7,90,
101,92,37,98,102,100,67,106,72,108,98,114,41,122,10,130,
11,137,236,146,11,154,11,162,11,170,42,178,73,186,134,194,
194,12,159,2,117,10,179,18,148,26,179,34,210,42,241,50,
194,4,159,2,117,10,179,18,148,26,179,34,210,42,241,50,
210,58,179,65,225,66,179,74,179,82,179,89,162,90,179,97,
193,98,179,106,179,114,179,122,179,130,241,136,161,139,233,144,
130,148,8,152,99,154,164,155,199,160,68,163,3,168,67,176,
35,5,255,0,97,1,31,3,29,3,29,5,27,6,26,7,
35,3,255,0,97,1,31,3,29,3,29,5,27,6,26,7,
25,8,10,2,12,9,8,5,10,10,6,7,10,11,4,7,
10,12,2,9,9,23,9,27,5,31,1,18,5,27,3,1,
1,255,0,143,2,24,2,255,0,6,3,33,2,1,6,30,
@ -74,53 +74,53 @@ const unsigned char video[13046] = {
10,31,5,2,1,32,9,31,9,31,2,1,7,30,1,2,
10,11,3,12,1,2,18,4,12,2,2,1,19,7,33,12,
3,5,20,20,20,25,3,4,8,25,1,1,1,10,2,200,
12,14,58,66,58,161,66,99,74,131,82,101,90,132,98,132,
106,164,113,165,114,107,122,1,122,139,130,194,131,99,12,14,
4,14,58,66,58,161,66,99,74,131,82,101,90,132,98,132,
106,164,113,165,114,107,122,1,122,139,130,194,131,99,4,14,
58,33,58,99,66,36,74,100,82,69,90,100,98,100,106,133,
107,67,113,146,122,100,123,6,130,162,131,98,12,14,58,65,
107,67,113,146,122,100,123,6,130,162,131,98,4,14,58,65,
58,161,66,68,74,100,82,100,90,132,98,132,106,164,113,132,
114,107,121,226,122,108,130,194,131,69,12,19,51,99,59,36,
114,107,121,226,122,108,130,194,131,69,4,19,51,99,59,36,
67,38,75,100,83,70,91,101,99,99,99,226,107,133,115,133,
116,101,123,109,130,179,138,226,139,78,147,163,148,39,155,194,
156,163,5,25,7,25,7,22,10,20,12,20,12,22,10,23,
156,163,3,25,7,25,7,22,10,20,12,20,12,22,10,23,
9,23,9,25,7,25,7,25,7,25,7,25,7,25,7,26,
6,22,10,23,9,208,1,23,2,5,2,22,11,21,10,24,
2,1,7,25,6,27,5,27,5,28,4,255,0,15,5,25,
2,1,7,25,6,27,5,27,5,28,4,255,0,15,3,25,
7,25,7,21,11,21,11,19,13,20,12,21,11,25,7,22,
10,23,9,25,7,25,7,25,7,25,7,25,7,25,7,23,
1,2,6,22,10,170,1,6,2,22,6,1,3,21,11,23,
9,27,6,27,5,27,5,28,3,255,0,46,5,26,6,26,
9,27,6,27,5,27,5,28,3,255,0,46,3,26,6,26,
6,22,10,21,11,19,13,19,13,21,11,26,6,25,7,23,
9,24,8,26,6,26,6,26,6,26,6,26,6,26,6,27,
5,23,2,2,5,22,10,104,1,6,2,22,6,1,4,20,
13,21,10,22,2,2,7,26,6,26,6,26,5,28,4,255,
0,15,12,29,3,233,12,8,68,163,76,132,84,132,90,69,
0,15,4,29,3,233,12,8,68,163,76,132,84,132,90,69,
92,70,98,40,100,39,105,237,107,233,113,227,114,98,114,210,
121,196,122,97,122,241,129,194,130,34,131,16,137,228,139,41,
140,132,146,3,147,100,154,34,162,34,170,34,178,34,12,6,
114,2,121,228,129,197,137,135,145,132,153,162,12,132,3,39,
11,70,19,101,27,131,14,1,136,200,0,57,3,10,2,5,
140,132,146,3,147,100,154,34,162,34,170,34,178,34,4,6,
114,2,121,228,129,197,137,135,145,132,153,162,4,132,3,39,
11,70,19,101,27,131,5,1,136,200,0,57,3,10,2,5,
7,10,2,2,8,12,15,8,15,8,11,2,2,6,8,16,
6,18,5,20,2,124,14,1,140,194,0,113,4,7,4,5,
6,18,5,20,2,124,5,1,140,194,0,113,4,7,4,5,
3,4,9,3,8,4,28,3,29,3,29,3,29,4,28,9,
23,10,6,7,9,3,1,60,14,7,189,206,0,255,0,209,
23,10,6,7,9,3,1,60,5,7,189,206,0,255,0,209,
1,1,14,5,27,4,28,4,28,4,28,4,28,4,15,3,
10,7,1,2,8,8,6,11,2,1,4,12,2,15,2,30,
1,112,5,0,205,1,31,1,31,5,27,4,28,4,28,4,
1,112,3,0,205,1,31,1,31,5,27,4,28,4,28,4,
28,4,28,4,28,4,28,4,28,3,28,4,22,1,5,6,
2,2,9,1,5,4,3,10,4,6,3,29,2,30,2,30,
2,30,1,31,2,30,3,29,4,2,5,21,12,8,24,3,
30,1,255,0,51,14,15,57,236,0,226,4,19,3,28,6,
30,1,255,0,51,5,15,57,236,0,226,4,19,3,28,6,
24,9,11,1,10,9,11,1,10,8,9,7,7,13,4,11,
2,15,4,28,4,28,4,28,4,28,4,28,5,27,6,26,
10,22,18,14,20,15,61,5,0,255,0,233,1,29,6,2,
10,22,18,14,20,15,61,3,0,255,0,233,1,29,6,2,
3,21,11,23,2,1,7,26,6,8,2,17,6,1,11,16,
17,15,17,6,1,8,17,6,3,2,1,2,18,6,26,5,
27,4,28,4,28,3,29,2,30,4,28,4,28,5,27,6,
8,8,10,26,6,30,2,96,5,0,255,0,178,5,27,7,
8,8,10,26,6,30,2,96,3,0,255,0,178,5,27,7,
24,10,22,12,20,13,1,2,13,7,3,9,12,2,11,7,
9,2,15,6,8,3,15,6,8,4,14,6,7,6,10,9,
4,28,1,31,1,49,4,29,2,255,0,76,1,31,5,0,
4,28,1,31,1,49,4,29,2,255,0,76,1,31,3,0,
255,0,86,1,27,6,26,7,23,11,20,14,18,16,16,18,
5,7,2,18,6,26,7,25,11,21,15,17,16,16,19,13,
26,6,27,5,28,4,29,3,29,3,30,2,31,1,255,0,
@ -140,40 +140,40 @@ const unsigned char video[13046] = {
4,23,4,6,7,21,7,4,11,12,2,3,9,2,13,9,
4,2,25,7,6,4,2,2,32,9,1,1,29,12,14,2,
12,14,12,4,10,14,11,10,1,17,12,29,11,31,9,31,
8,31,9,31,9,16,12,171,4,39,11,202,19,171,27,140,
8,31,9,31,9,16,4,171,4,39,11,202,19,171,27,140,
35,109,43,109,51,78,59,47,66,210,74,241,82,241,91,47,
99,78,107,109,115,109,123,140,131,140,137,39,140,7,145,41,
147,230,153,73,155,229,161,74,163,105,169,106,171,105,178,5,
179,44,180,225,186,6,187,13,188,225,194,52,196,194,202,55,
210,86,218,86,226,117,234,143,236,194,243,72,251,72,12,149,
210,86,218,86,226,117,234,143,236,194,243,72,251,72,4,149,
2,170,4,70,10,111,12,132,18,20,20,163,25,246,28,225,
34,8,35,78,42,68,43,140,51,202,59,233,68,39,76,101,
217,198,225,106,233,75,241,106,249,106,12,142,33,195,41,199,
217,198,225,106,233,75,241,106,249,106,4,142,33,195,41,199,
49,201,57,204,65,206,73,238,81,236,83,129,89,234,91,129,
97,237,105,232,113,231,122,67,12,49,24,97,32,100,40,132,
97,237,105,232,113,231,122,67,4,49,24,97,32,100,40,132,
48,133,56,164,64,227,73,33,138,225,147,2,152,193,155,35,
160,194,168,194,169,65,170,193,176,229,178,194,179,195,180,65,
185,6,186,163,187,165,193,39,194,164,195,193,201,133,202,164,
203,163,209,134,210,133,211,101,217,165,218,165,219,102,225,167,
226,196,227,98,227,197,233,199,234,197,235,193,236,3,241,199,
243,4,243,225,244,34,249,228,251,35,252,2,12,9,90,194,
243,4,243,225,244,34,249,228,251,35,252,2,4,9,90,194,
98,132,106,101,114,101,122,70,130,70,138,36,146,34,154,2,
12,15,67,65,75,34,83,3,90,226,98,98,98,194,106,69,
4,15,67,65,75,34,83,3,90,226,98,98,98,194,106,69,
114,69,122,39,130,39,137,233,145,170,153,99,154,37,162,98,
14,7,57,128,127,1,2,5,11,5,2,14,1,80,1,6,
2,15,11,13,15,2,22,3,22,3,1,1,21,2,124,14,
5,7,57,128,127,1,2,5,11,5,2,14,1,80,1,6,
2,15,11,13,15,2,22,3,22,3,1,1,21,2,124,5,
7,56,196,57,1,22,2,22,2,21,3,22,3,11,1,9,
4,6,6,14,6,3,9,15,17,8,5,1,18,6,26,6,
26,6,14,2,10,7,10,6,9,8,6,10,3,3,2,8,
1,119,14,7,57,196,154,5,8,3,6,7,5,4,5,6,
1,119,5,7,57,196,154,5,8,3,6,7,5,4,5,6,
5,16,4,28,5,27,5,27,5,27,5,27,6,26,7,7,
1,9,1,7,4,1,3,5,4,6,11,2,6,5,19,3,
123,5,255,0,255,0,125,1,30,3,8,1,1,3,16,6,
123,3,255,0,255,0,125,1,30,3,8,1,1,3,16,6,
3,8,15,6,2,10,15,5,2,20,5,5,2,30,2,30,
2,30,3,29,3,29,3,29,4,9,2,17,6,7,2,17,
10,1,6,13,20,5,2,5,18,6,3,5,3,4,2,1,
6,7,16,14,21,10,23,8,15,12,10,107,193,115,162,123,
162,124,129,130,21,138,103,139,132,140,98,147,162,155,193,5,
6,7,16,14,21,10,23,8,15,4,10,107,193,115,162,123,
162,124,129,130,21,138,103,139,132,140,98,147,162,155,193,3,
17,10,21,2,2,3,25,2,29,2,30,2,1,3,26,10,
21,2,1,6,22,2,30,2,31,2,2,5,24,11,22,6,
27,2,31,2,1,5,25,10,23,5,27,1,32,1,1,4,
@ -181,7 +181,7 @@ const unsigned char video[13046] = {
6,1,7,3,4,9,6,13,3,10,4,15,3,12,2,15,
2,13,1,16,2,30,2,30,2,30,2,30,2,13,1,16,
3,10,3,16,4,9,4,15,9,2,7,14,20,9,1,2,
20,2,30,2,30,2,1,3,26,10,22,8,4,5,15,1,
20,2,30,2,30,2,1,3,26,10,22,8,4,3,15,1,
31,1,31,1,1,7,23,7,24,2,1,2,27,2,30,1,
2,1,27,9,23,7,24,2,30,2,31,2,1,7,23,7,
26,2,32,1,2,7,23,8,25,1,1,1,29,1,21,2,
@ -189,13 +189,13 @@ const unsigned char video[13046] = {
6,14,2,11,4,15,2,13,1,16,2,30,1,31,2,30,
2,30,2,12,1,17,3,11,2,16,4,9,4,15,9,2,
8,12,11,1,8,8,24,1,2,2,27,1,31,1,1,2,
28,8,24,1,1,3,58,6,8,5,240,1,29,3,27,4,
28,8,24,1,1,3,58,6,8,3,240,1,29,3,27,4,
28,3,30,2,32,2,23,1,6,2,19,2,1,3,5,2,
14,1,3,8,4,3,9,5,2,10,2,18,2,10,2,18,
2,30,2,30,2,30,2,30,3,29,3,29,3,9,4,1,
12,3,4,4,8,4,11,1,5,2,9,3,30,1,31,1,
30,3,29,2,29,1,31,2,29,3,29,2,30,2,31,3,
29,3,30,4,28,1,1,3,11,5,18,3,28,4,27,2,
29,3,30,4,28,1,1,3,11,3,18,3,28,4,27,2,
29,5,26,1,2,2,27,1,32,5,7,1,19,3,9,1,
30,2,20,1,1,2,5,3,21,4,5,1,30,2,22,1,
6,2,23,4,2,3,23,1,1,6,15,2,7,7,5,3,
@ -203,7 +203,7 @@ const unsigned char video[13046] = {
3,29,3,10,1,18,3,10,1,18,4,7,4,17,5,8,
3,2,2,12,5,10,2,1,1,3,3,7,6,8,3,4,
9,2,17,1,63,4,27,1,1,4,25,1,31,3,28,6,
26,1,31,4,29,5,28,2,1,1,29,3,30,3,11,5,
26,1,31,4,29,5,28,2,1,1,29,3,30,3,11,3,
17,6,25,1,3,4,23,3,28,7,25,1,3,3,25,2,
12,1,18,5,8,1,18,2,1,3,7,1,19,1,9,3,
20,4,5,3,20,1,1,4,3,2,21,1,7,3,21,5,
@ -214,7 +214,7 @@ const unsigned char video[13046] = {
2,6,1,2,12,2,2,4,3,4,4,2,22,1,7,2,
22,1,1,4,3,2,21,5,4,2,20,1,9,3,19,1,
1,1,9,1,18,6,7,1,18,1,30,2,3,3,25,1,
1,4,27,3,30,1,2,4,26,5,9,5,17,1,30,5,
1,4,27,3,30,1,2,4,26,5,9,3,17,1,30,5,
26,1,1,6,24,1,31,1,1,3,9,1,18,6,7,2,
17,1,12,2,18,1,9,3,19,7,3,3,20,4,5,2,
30,2,21,5,3,2,21,6,2,3,21,1,6,3,12,2,
@ -224,7 +224,7 @@ const unsigned char video[13046] = {
9,12,2,1,6,3,9,10,3,6,2,3,22,4,4,2,
31,2,20,6,4,2,20,6,4,3,18,1,10,3,18,1,
1,1,10,1,17,7,7,1,17,1,2,1,10,1,16,1,
31,2,1,5,25,5,28,2,14,5,0,10,5,14,3,9,
31,2,1,5,25,5,28,2,14,3,0,10,5,14,3,9,
2,1,4,13,3,9,1,5,2,10,5,9,2,1,2,13,
5,10,6,12,4,10,8,11,3,11,1,17,3,11,7,10,
4,12,8,7,4,13,1,14,4,13,1,13,4,14,6,6,
@ -248,7 +248,7 @@ const unsigned char video[13046] = {
13,3,21,3,12,4,1,2,18,3,12,6,19,3,7,4,
1,4,21,3,10,6,19,4,12,10,28,8,30,3,1,7,
28,2,3,8,32,9,31,9,30,9,30,2,1,6,31,1,
7,1,30,2,7,1,15,5,86,1,31,1,25,1,5,1,
7,1,30,2,7,1,15,3,86,1,31,1,25,1,5,1,
21,11,21,10,26,1,99,1,30,1,31,1,31,1,29,3,
27,5,2,10,8,2,2,4,2,10,11,20,12,20,11,21,
11,4,2,4,1,12,9,3,3,3,2,1,2,12,14,2,
@ -274,7 +274,7 @@ const unsigned char video[13046] = {
27,13,27,13,25,15,25,15,25,15,27,14,25,14,26,13,
26,14,25,16,23,16,26,14,28,12,27,13,27,13,27,14,
25,15,25,15,25,16,24,15,24,17,18,2,3,17,17,3,
3,17,15,5,3,17,15,4,2,14,10,148,167,107,1,30,
3,17,15,5,3,17,15,4,2,5,10,148,167,107,1,30,
3,29,3,5,2,17,15,4,8,4,28,4,4,3,5,3,
5,2,6,2,6,3,5,3,5,4,4,4,28,5,27,7,
25,16,4,1,11,25,7,28,4,128,2,51,1,34,6,32,
@ -294,13 +294,13 @@ const unsigned char video[13046] = {
2,34,7,32,9,29,11,28,13,27,16,24,16,24,15,25,
15,25,15,26,13,27,12,28,12,28,12,29,11,29,11,29,
8,32,10,30,13,26,14,26,23,17,25,15,27,13,28,12,
29,11,30,9,32,9,31,9,31,8,13,1,16,6,5,0,
29,11,30,9,32,9,31,9,31,8,13,1,16,6,3,0,
32,1,31,2,30,3,29,4,28,5,27,6,18,1,7,7,
16,2,7,8,15,2,7,8,8,1,3,5,7,8,7,11,
6,8,2,16,6,29,3,202,1,255,0,255,0,151,12,7,
106,71,114,9,121,233,129,201,137,200,145,230,153,229,12,15,
6,8,2,16,6,29,3,202,1,255,0,255,0,151,4,7,
106,71,114,9,121,233,129,201,137,200,145,230,153,229,4,15,
89,193,90,33,97,193,98,33,98,229,105,162,106,33,106,107,
113,208,121,177,129,51,137,50,145,47,153,106,161,132,12,20,
113,208,121,177,129,51,137,50,145,47,153,106,161,132,4,20,
66,195,74,226,82,226,90,227,99,1,106,227,114,227,122,196,
123,225,130,165,131,194,137,10,138,202,145,23,153,54,161,84,
169,207,177,238,186,34,186,226,2,8,3,7,7,24,2,6,
@ -316,7 +316,7 @@ const unsigned char video[13046] = {
5,19,3,12,6,19,3,11,8,18,3,9,11,18,2,7,
13,18,2,6,14,18,1,6,15,18,1,5,16,18,1,4,
17,18,1,4,18,17,2,3,18,12,1,5,2,2,18,8,
5,8,18,6,8,7,19,2,12,7,33,9,31,5,35,5,
5,8,18,6,8,7,19,2,12,7,33,9,31,5,35,3,
43,14,14,21,11,25,8,9,6,9,8,4,15,5,8,2,
31,1,32,1,31,1,31,1,32,1,31,1,31,1,32,1,
29,3,18,1,9,5,15,3,7,8,4,2,7,4,6,9,
@ -332,69 +332,69 @@ const unsigned char video[13046] = {
8,4,14,11,11,4,15,7,14,4,16,6,14,4,16,7,
14,3,16,7,14,4,14,8,14,4,12,11,14,4,10,13,
13,4,8,15,14,3,7,16,14,3,4,19,14,3,3,21,
6,5,255,0,164,22,7,255,0,234,21,6,255,0,61,5,
6,3,255,0,164,22,7,255,0,234,21,6,255,0,61,3,
255,0,187,1,30,2,30,6,25,8,23,9,23,9,23,32,
9,23,9,23,9,24,8,25,6,27,1,31,1,255,0,166,
14,7,48,128,62,2,1,5,4,8,1,5,1,23,1,47,
24,1,23,1,23,1,6,3,14,4,3,7,2,112,14,7,
5,7,48,128,62,2,1,5,4,8,1,5,1,23,1,47,
24,1,23,1,23,1,6,3,14,4,3,7,2,112,5,7,
49,128,76,1,7,4,5,2,3,14,2,5,1,16,2,24,
22,1,23,1,23,2,7,1,14,2,7,2,13,5,2,10,
3,20,3,20,3,102,14,7,57,132,103,3,1,2,8,11,
3,20,3,20,3,102,5,7,57,132,103,3,1,2,8,11,
6,2,9,15,5,27,13,40,11,21,11,22,10,24,1,231,
14,7,25,198,107,1,28,5,16,10,7,8,10,7,11,3,
5,7,25,198,107,1,28,5,16,10,7,8,10,7,11,3,
11,7,25,6,26,8,24,9,23,12,1,2,17,13,9,4,
6,12,4,5,3,5,3,14,2,6,2,22,2,7,2,13,
2,1,2,11,2,14,2,14,2,72,12,3,116,5,124,8,
132,194,14,2,115,132,5,3,26,7,3,3,7,10,3,29,
4,28,4,28,6,26,9,23,11,8,18,4,247,14,7,57,
2,1,2,11,2,14,2,14,2,72,4,3,116,5,124,8,
132,194,5,2,115,132,5,3,26,7,3,3,7,10,3,29,
4,28,4,28,6,26,9,23,11,8,18,4,247,5,7,57,
198,57,1,29,3,28,4,27,4,28,3,29,2,15,4,11,
2,13,7,5,7,12,9,1,19,2,30,3,29,5,27,6,
26,7,25,12,18,1,1,7,10,175,14,3,60,198,49,1,
26,7,25,12,18,1,1,7,10,175,5,3,60,198,49,1,
7,2,22,2,31,1,31,2,30,2,30,3,30,2,30,2,
18,2,8,4,15,6,5,5,16,8,1,19,3,29,2,30,
2,30,4,28,7,25,10,30,2,1,53,5,210,1,27,2,
2,30,4,28,7,25,10,30,2,1,53,3,210,1,27,2,
2,1,26,6,26,6,27,2,2,2,30,3,29,3,30,2,
29,3,14,1,11,6,8,3,3,6,4,7,2,1,2,7,
3,29,3,29,3,29,2,30,2,30,1,31,2,3,2,17,
1,7,12,12,1,7,14,14,27,4,255,0,166,14,5,125,
1,7,12,12,1,7,14,14,27,4,255,0,166,5,5,125,
238,118,1,3,1,18,6,25,7,25,5,1,2,27,1,2,
3,29,3,30,2,28,6,24,7,6,4,9,14,4,21,2,
22,2,22,3,21,4,20,4,20,3,7,3,9,5,6,6,
7,6,4,16,6,9,1,20,2,30,3,29,3,30,2,30,
1,30,2,14,1,59,14,2,125,238,167,1,16,2,1,2,
1,30,2,14,1,59,5,2,125,238,167,1,16,2,1,2,
2,2,14,11,13,7,1,5,13,5,2,5,20,4,6,3,
7,7,2,1,3,4,3,23,3,29,3,29,4,28,4,28,
4,28,3,29,3,3,1,2,1,14,1,7,3,3,8,8,
20,4,19,5,12,5,2,4,12,10,15,8,17,3,2,2,
94,14,7,111,255,30,6,17,8,3,2,11,14,8,17,6,
94,5,7,111,255,30,6,17,8,3,2,11,14,8,17,6,
19,3,23,1,51,5,30,2,64,1,31,1,22,4,37,2,
1,1,28,6,18,3,2,1,48,3,3,2,13,6,1,4,
10,14,10,4,6,3,11,3,21,3,188,1,28,4,24,8,
46,2,19,1,1,3,10,2,5,7,11,2,1,10,11,61,
1,14,3,156,227,58,1,8,2,19,4,7,5,11,1,3,
1,5,3,156,227,58,1,8,2,19,4,7,5,11,1,3,
5,6,14,1,2,2,8,6,26,6,29,4,27,10,21,12,
22,11,18,20,12,24,8,5,5,20,1,4,11,21,12,20,
5,9,6,4,6,7,9,2,7,4,133,14,3,156,227,46,
5,9,6,4,6,7,9,2,7,4,133,5,3,156,227,46,
6,16,3,5,8,7,2,7,18,3,4,8,15,3,7,7,
12,3,10,7,27,7,1,1,23,10,21,12,21,11,19,13,
19,11,21,2,2,5,22,3,28,4,29,3,22,2,23,1,
144,5,48,3,27,5,8,2,15,6,8,3,8,1,5,6,
144,3,48,3,27,5,8,2,15,6,8,3,8,1,5,6,
4,1,2,5,7,13,1,3,2,7,6,15,3,9,6,27,
5,27,5,26,11,22,11,20,13,2,3,14,22,9,255,0,
157,3,23,9,14,19,12,20,11,23,4,26,6,28,4,12,
1,13,6,25,6,1,5,7,3,10,5,1,7,7,4,7,
15,6,6,5,16,3,30,3,16,5,222,2,28,4,18,4,
15,6,6,5,16,3,30,3,16,3,222,2,28,4,18,4,
4,6,11,21,8,24,7,25,6,26,6,26,4,11,1,11,
3,2,5,9,3,10,9,9,7,2,1,3,9,5,1,4,
7,2,1,2,26,2,1,2,25,6,26,6,28,2,1,2,
12,2,3,4,7,2,1,2,12,8,7,2,1,3,12,8,
3,9,12,9,1,11,11,26,6,26,7,25,8,24,11,21,
26,6,27,5,27,5,27,5,28,4,29,3,30,2,64,5,
26,6,27,5,27,5,27,5,28,4,29,3,30,2,64,3,
255,0,30,3,27,5,2,1,23,9,2,1,3,23,1,3,
1,27,2,62,2,1,1,28,4,1,2,21,3,1,8,19,
15,1,3,9,25,6,26,6,24,9,12,24,12,21,10,26,
6,26,7,25,7,25,4,1,2,25,4,4,18,6,3,2,
21,6,4,1,22,5,27,5,28,4,29,3,30,2,128,5,
21,6,4,1,22,5,27,5,28,4,29,3,30,2,128,3,
10,5,26,7,24,9,22,11,20,14,17,18,13,21,10,24,
8,26,5,29,2,31,1,10,2,192,1,30,7,25,9,23,
10,24,8,26,7,27,5,28,4,28,4,28,4,28,4,27,
@ -403,52 +403,52 @@ const unsigned char video[13046] = {
31,1,31,1,5,2,0,22,18,22,18,22,18,22,18,22,
18,22,18,22,18,22,17,23,16,24,17,23,17,22,19,21,
19,21,19,20,20,19,21,18,22,18,22,16,24,15,27,11,
32,5,229,1,39,1,39,1,38,2,38,2,38,2,5,0,
32,5,229,1,39,1,39,1,38,2,38,2,38,2,3,0,
13,19,13,19,13,19,13,19,13,19,13,19,13,19,12,20,
12,20,11,21,10,22,8,24,7,255,0,193,3,19,3,7,
4,14,7,7,5,1,5,2,12,7,25,7,25,8,24,10,
22,15,8,1,8,26,6,29,3,128,14,14,115,8,85,1,
22,15,8,1,8,26,6,29,3,128,5,14,115,8,85,1,
14,2,9,1,3,1,7,5,6,5,4,5,2,10,7,5,
1,19,7,25,7,25,8,24,11,21,20,4,2,6,28,4,
22,2,168,14,14,49,204,0,4,4,3,5,2,25,1,8,
22,2,168,5,14,49,204,0,4,4,3,5,2,25,1,8,
1,7,1,15,2,31,1,31,1,31,1,31,2,29,3,30,
2,13,4,6,5,2,4,8,7,7,25,7,25,8,24,9,
23,14,18,15,17,21,4,2,5,29,3,64,14,6,33,200,
23,14,18,15,17,21,4,2,5,29,3,64,5,6,33,200,
0,4,4,3,5,2,35,1,7,1,7,1,15,2,14,2,
14,2,14,2,14,2,14,2,6,5,3,3,1,7,7,5,
1,6,1,12,7,25,7,25,8,24,11,21,15,17,27,5,
29,3,14,14,115,220,0,4,4,3,5,2,255,0,76,3,
29,3,5,14,115,220,0,4,4,3,5,2,255,0,76,3,
27,5,25,7,14,5,4,9,10,22,8,24,7,25,7,25,
7,5,2,18,7,4,5,3,3,10,27,5,160,12,13,1,
7,5,2,18,7,4,5,3,3,10,27,5,160,4,13,1,
22,9,22,17,22,25,22,33,53,41,52,49,52,57,83,65,
82,73,112,81,142,89,172,97,232,14,2,19,222,139,2,29,
82,73,112,81,142,89,172,97,232,5,2,19,222,139,2,29,
4,3,3,3,9,9,23,9,23,10,22,13,19,19,13,31,
1,128,6,10,8,8,9,7,11,5,11,5,12,4,13,3,
13,3,14,2,18,144,26,3,20,4,4,15,1,23,1,23,
13,3,5,2,18,144,26,3,20,4,4,15,1,23,1,23,
2,22,3,21,9,15,16,6,10,8,8,9,7,10,6,11,
5,12,4,12,4,14,6,51,156,40,2,11,4,14,4,6,
5,12,4,12,4,5,6,51,156,40,2,11,4,14,4,6,
15,6,8,2,16,5,27,5,27,5,27,5,27,6,26,7,
25,9,23,255,0,33,12,31,58,133,66,73,74,43,82,12,
25,9,23,255,0,33,4,31,58,133,66,73,74,43,82,12,
90,13,98,13,106,13,114,13,122,44,130,75,138,43,146,43,
154,33,154,105,162,12,170,12,177,237,185,238,193,208,201,209,
209,179,217,149,225,99,225,243,233,68,233,244,241,67,241,246,
249,36,249,204,251,138,12,18,4,194,12,194,20,225,138,132,
249,36,249,204,251,138,4,18,4,194,12,194,20,225,138,132,
146,103,154,74,162,44,170,44,178,13,185,238,193,238,201,206,
209,175,217,175,225,144,233,144,241,113,249,81,1,14,15,128,
209,175,217,175,225,144,233,144,241,113,249,81,1,5,15,128,
0,0,42,1,3,2,2,6,1,7,2,2,2,2,73,1,
2,20,4,4,74,3,1,2,1,7,1,7,2,2,2,2,
40,14,15,220,0,0,11,4,13,3,13,4,12,4,11,5,
40,5,15,220,0,0,11,4,13,3,13,4,12,4,11,5,
11,1,1,3,5,11,4,12,5,11,14,2,148,12,3,13,
4,6,2,4,8,3,2,3,9,2,4,1,68,3,1,1,
5,2,3,13,4,12,5,1,1,9,7,2,6,1,8,2,
14,2,14,2,6,14,15,255,192,2,11,1,2,2,11,2,
14,2,14,2,6,5,15,255,192,2,11,1,2,2,11,2,
1,3,10,6,10,3,1,3,9,3,1,3,10,2,1,4,
10,6,10,1,1,3,1,10,4,1,3,49,8,7,4,4,
12,3,7,1,15,1,141,1,4,2,16,5,2,2,5,6,
2,5,5,2,4,14,3,3,5,14,2,4,5,3,14,2,
5,3,15,1,32,1,23,2,23,1,5,2,6,1,9,2,
3,4,4,3,7,13,1,3,1,1,2,14,3,5,1,23,
2,3,1,1,6,2,5,4,120,5,0,12,2,30,2,10,
2,3,1,1,6,2,5,4,120,3,0,12,2,30,2,10,
2,17,4,9,2,18,3,8,4,17,4,8,4,16,5,8,
4,14,6,8,5,7,2,3,2,1,5,8,5,5,16,2,
4,1,4,6,21,2,3,8,1,5,5,2,6,3,1,17,
@ -456,43 +456,43 @@ const unsigned char video[13046] = {
17,13,14,3,3,12,6,3,5,3,3,26,4,252,1,29,
4,1,4,19,10,2,2,1,2,10,14,2,5,10,22,10,
7,3,3,7,2,11,2,1,2,15,2,14,2,14,2,14,
2,15,1,15,1,20,5,0,8,2,3,4,9,4,15,4,
2,15,1,15,1,20,3,0,8,2,3,4,9,4,15,4,
10,2,15,2,1,3,26,1,2,3,25,2,1,4,13,1,
11,1,1,4,13,2,11,5,13,3,10,6,11,5,2,5,
2,7,10,6,2,15,6,9,2,18,2,10,1,63,2,30,
3,29,3,6,2,21,6,1,5,1,5,3,2,9,5,1,
24,2,5,1,255,0,255,0,188,5,0,5,27,6,26,7,
24,2,5,1,255,0,255,0,188,3,0,5,27,6,26,7,
25,8,1,2,6,4,1,1,9,13,1,13,5,30,2,170,
2,30,3,29,5,27,7,25,1,2,4,25,1,3,3,18,
3,3,1,2,4,19,4,1,2,1,4,14,3,4,11,8,
9,5,27,1,177,4,10,1,14,9,8,2,6,3,2,14,
5,29,3,6,1,23,2,6,1,62,2,217,5,0,23,9,
5,29,3,6,1,23,2,6,1,62,2,217,3,0,23,9,
6,2,15,9,6,6,6,14,6,9,2,15,5,10,1,16,
5,27,2,30,3,29,3,2,1,26,7,25,8,1,2,4,
2,15,28,4,29,3,255,0,255,0,63,3,17,1,5,1,
1,7,13,19,9,23,8,24,7,25,6,26,8,14,4,6,
9,4,3,6,8,2,9,2,5,6,10,12,164,26,226,34,
9,4,3,6,8,2,9,2,5,6,10,4,164,26,226,34,
227,42,228,50,196,58,104,66,105,74,105,82,135,90,104,98,
105,106,105,114,105,122,104,130,135,138,165,145,68,146,104,153,
38,154,74,161,38,162,12,169,143,177,174,185,163,186,73,194,
73,202,72,208,4,210,72,216,6,218,72,224,9,226,41,232,
25,240,25,248,25,12,147,114,8,121,203,128,243,131,102,136,
25,240,25,248,25,4,147,114,8,121,203,128,243,131,102,136,
250,144,250,153,24,161,24,169,55,177,56,185,84,193,114,201,
114,209,115,217,115,225,114,233,145,241,114,249,114,5,189,2,
114,209,115,217,115,225,114,233,145,241,114,249,114,3,189,2,
29,2,30,1,30,2,29,3,19,14,16,18,12,20,12,20,
13,19,14,18,15,17,16,16,17,15,19,13,19,13,17,15,
16,16,15,17,14,18,13,19,12,20,12,20,14,18,16,16,
26,3,30,2,31,1,31,2,31,2,161,12,147,146,69,154,
26,3,30,2,31,1,31,2,31,2,161,4,147,146,69,154,
9,161,115,169,54,177,24,184,250,192,220,200,190,208,190,216,
159,220,97,224,159,228,97,232,102,233,121,240,102,241,122,248,
101,249,122,5,255,0,97,3,29,6,17,18,13,23,8,75,
101,249,122,3,255,0,97,3,29,6,17,18,13,23,8,75,
1,31,9,23,18,14,18,14,18,14,18,14,18,14,12,20,
10,22,8,11,1,12,7,7,8,10,7,5,11,9,6,5,
14,7,6,5,26,6,26,5,27,5,26,6,26,6,26,5,
27,4,29,3,56,5,255,0,247,5,25,7,24,4,27,13,
27,4,29,3,56,3,255,0,247,5,25,7,24,4,27,13,
12,21,10,22,7,25,6,2,1,21,8,1,1,24,7,2,
2,7,7,7,6,2,6,4,9,1,1,3,6,1,8,2,
21,1,255,0,154,12,28,60,193,68,132,76,194,84,194,92,
21,1,255,0,154,4,28,60,193,68,132,76,194,84,194,92,
194,100,194,107,193,108,194,112,212,115,195,116,194,123,233,132,
39,140,194,148,194,156,194,164,194,172,194,180,194,188,163,196,
163,204,163,212,163,220,162,228,162,236,130,244,130,252,129,2,
@ -507,64 +507,64 @@ const unsigned char video[13046] = {
2,4,2,21,1,91,1,38,3,23,3,3,1,7,3,22,
9,6,4,9,2,10,10,5,4,4,7,4,18,3,5,1,
8,5,19,2,14,5,34,7,32,9,30,11,28,11,16,2,
9,12,17,1,11,10,31,9,18,3,11,10,12,3,1,5,
9,12,17,1,11,10,31,9,18,3,11,10,12,3,1,3,
0,13,15,19,12,20,7,1,3,26,2,30,2,255,0,89,
1,34,3,29,4,26,13,19,15,17,17,22,1,2,7,31,
1,255,0,125,2,30,2,30,2,29,2,30,2,13,4,12,
2,4,14,14,182,224,0,255,0,2,1,24,2,25,4,20,
2,4,5,14,182,224,0,255,0,2,1,24,2,25,4,20,
5,16,2,1,16,4,20,4,21,4,20,2,5,5,6,12,
4,13,3,15,1,192,14,15,115,140,0,62,1,28,5,23,
4,13,3,15,1,192,5,15,115,140,0,62,1,28,5,23,
9,16,1,1,7,3,4,12,8,8,4,5,13,3,5,2,
4,5,3,7,4,1,12,18,14,9,2,8,13,8,8,2,
14,7,25,6,26,6,26,6,26,6,26,7,25,7,49,2,
10,7,5,144,14,11,120,204,0,49,1,23,2,29,3,20,
10,7,5,144,5,11,120,204,0,49,1,23,2,29,3,20,
5,3,3,14,4,1,9,11,15,19,13,20,12,20,12,16,
15,9,21,11,1,12,7,25,11,8,7,4,13,7,9,6,
10,6,10,6,10,6,10,6,10,6,10,7,41,96,5,0,
10,6,10,6,10,6,10,6,10,6,10,7,41,96,3,0,
248,2,28,6,25,8,22,10,10,1,10,11,6,2,1,1,
2,1,6,13,6,7,4,15,4,29,2,61,1,30,5,11,
2,17,8,25,6,26,6,26,6,26,6,26,6,26,6,26,
6,26,7,25,8,24,11,21,255,0,65,5,0,255,0,255,
6,26,7,25,8,24,11,21,255,0,65,3,0,255,0,255,
0,108,2,1,10,19,13,23,1,4,2,25,1,31,1,70,
2,24,1,4,3,10,3,3,10,3,2,4,15,4,8,2,
18,5,6,1,60,1,14,2,30,3,29,6,26,8,24,9,
4,4,15,10,2,9,1,21,2,31,2,18,14,15,123,216,
4,4,15,10,2,9,1,21,2,31,2,18,5,15,123,216,
0,114,2,16,9,1,1,2,1,3,2,1,13,1,26,1,
23,2,1,3,4,1,10,1,2,19,1,255,0,255,0,126,
14,3,24,194,0,55,9,7,1,5,2,3,14,6,4,1,
5,3,24,194,0,55,9,7,1,5,2,3,14,6,4,1,
21,6,26,6,26,7,4,4,3,2,12,9,1,14,8,23,
1,168,14,5,41,66,0,31,1,22,10,13,2,2,15,6,
1,168,5,5,41,66,0,31,1,22,10,13,2,2,15,6,
4,2,20,6,26,6,26,7,4,2,1,2,1,3,12,8,
2,14,8,8,2,19,1,1,2,4,3,4,2,6,6,1,
2,1,3,2,3,6,9,2,9,5,19,6,18,6,2,4,
11,7,1,6,3,8,14,15,121,64,0,20,4,12,12,1,
11,7,1,6,3,8,5,15,121,64,0,20,4,12,12,1,
1,3,3,1,90,11,10,1,2,16,5,119,2,15,2,4,
3,14,3,3,3,14,8,4,5,6,19,5,19,6,18,7,
3,3,3,2,5,9,1,5,2,6,1,7,3,14,2,103,
14,15,249,66,0,61,3,22,10,14,2,2,14,7,4,2,
5,15,249,66,0,61,3,22,10,14,2,2,14,7,4,2,
19,6,26,6,26,7,25,8,4,4,3,6,7,197,2,15,
1,5,12,6,18,6,18,5,19,4,6,3,3,5,2,6,
3,1,1,142,14,7,249,198,0,115,3,6,4,4,9,5,
3,1,1,142,5,7,249,198,0,115,3,6,4,4,9,5,
14,3,10,4,15,3,29,3,29,3,29,3,29,3,22,2,
5,4,20,1,7,4,27,7,23,11,4,1,19,13,19,10,
20,1,1,8,108,6,6,1,10,15,1,4,4,21,3,21,
3,14,2,61,12,129,128,107,12,146,97,227,98,195,105,164,
3,14,2,61,4,129,128,107,4,146,97,227,98,195,105,164,
106,229,113,101,115,7,121,8,123,10,128,140,131,12,136,233,
139,9,145,71,147,6,153,164,154,229,162,2,162,195,5,0,
139,9,145,71,147,6,153,164,154,229,162,2,162,195,3,0,
6,26,5,27,4,28,4,28,3,29,2,30,1,31,1,50,
2,28,5,26,7,25,8,22,1,1,8,20,12,18,12,20,
11,20,12,20,14,17,15,17,15,18,14,18,14,18,14,19,
12,9,1,11,10,10,1,11,10,9,2,13,6,10,3,28,
4,28,4,27,5,26,6,25,7,24,8,22,10,21,11,19,
13,18,14,15,17,11,53,5,255,0,243,2,14,4,11,3,
13,18,14,15,17,11,53,3,255,0,243,2,14,4,11,3,
12,7,9,4,6,5,1,9,5,8,1,8,1,10,3,29,
4,26,6,17,2,6,8,4,4,3,2,3,16,4,29,2,
30,2,255,0,207,14,2,57,132,77,3,16,3,9,4,16,
30,2,255,0,207,5,2,57,132,77,3,16,3,9,4,16,
5,7,5,6,4,5,6,4,19,3,6,3,18,5,4,5,
20,3,2,8,5,3,1,2,6,16,4,8,3,9,4,12,
3,14,1,91,14,3,17,196,117,3,1,2,17,4,7,5,
3,14,1,91,5,3,17,196,117,3,1,2,17,4,7,5,
15,5,3,9,13,19,12,22,11,19,1,1,11,11,4,4,
1,1,12,5,27,4,21,3,5,3,50,5,255,0,113,2,
1,1,12,5,27,4,21,3,5,3,50,3,255,0,113,2,
30,3,13,1,14,5,12,2,13,6,11,3,12,7,5,3,
2,3,6,1,5,14,3,3,6,4,2,13,4,5,3,5,
2,255,0,62,3,30,9,24,13,20,16,17,16,16,16,17,
@ -573,15 +573,15 @@ const unsigned char video[13046] = {
28,12,28,13,27,14,2,16,8,32,7,33,7,33,7,21,
9,1,10,18,22,14,1,2,23,13,27,12,28,12,29,10,
30,9,31,9,32,7,33,6,23,1,11,5,22,2,11,4,
22,3,12,2,23,3,14,11,127,198,255,0,84,3,1,1,
22,3,12,2,23,3,5,11,127,198,255,0,84,3,1,1,
16,1,3,10,18,14,18,15,1,1,18,4,1,6,28,3,
255,0,140,14,6,49,132,27,1,29,5,15,5,3,1,1,
255,0,140,5,6,49,132,27,1,29,5,15,5,3,1,1,
9,11,21,9,22,8,24,7,24,9,4,1,22,2,6,1,
13,6,2,6,8,20,3,123,2,216,1,38,5,35,6,34,
5,36,5,35,6,32,6,2,2,29,8,31,10,30,7,2,
2,32,4,3,6,27,6,33,7,33,7,33,8,31,9,30,
10,29,13,25,17,21,21,19,21,18,22,20,19,23,16,28,
10,30,2,3,1,34,2,3,2,19,5,255,0,202,1,12,
10,30,2,3,1,34,2,3,2,19,3,255,0,202,1,12,
1,15,1,1,2,9,13,4,6,9,13,5,27,5,27,5,
27,5,27,5,27,5,27,5,27,5,27,5,27,4,5,10,
13,7,2,12,11,7,2,18,5,7,1,255,0,89,2,183,
@ -590,155 +590,155 @@ const unsigned char video[13046] = {
8,15,4,13,8,16,3,13,8,17,3,8,13,16,3,6,
15,16,4,4,16,17,4,2,18,16,4,1,19,17,9,3,
12,17,5,6,12,17,3,8,12,28,12,28,11,29,11,29,
11,29,12,24,16,12,5,255,0,89,2,27,7,25,10,20,
11,29,12,24,16,12,3,255,0,89,2,27,7,25,10,20,
6,3,4,9,1,1,2,6,5,6,2,7,6,5,14,5,
27,4,28,4,28,4,28,4,28,4,28,4,28,5,27,6,
26,7,2,2,1,6,14,21,7,2,2,255,0,161,5,250,
26,7,2,2,1,6,14,21,7,2,2,255,0,161,3,250,
4,26,8,22,10,7,1,2,2,9,6,3,2,4,8,9,
5,11,7,8,12,6,10,3,13,6,26,6,26,6,26,6,
26,6,26,6,26,6,26,6,26,5,27,4,7,10,11,7,
4,11,10,8,1,16,1,14,1,255,0,184,5,0,183,2,
4,11,10,8,1,16,1,14,1,255,0,184,3,0,183,2,
30,3,6,1,21,5,5,2,18,8,4,3,11,2,3,11,
2,5,7,19,1,5,5,28,2,255,0,158,4,26,7,23,
10,21,12,20,13,18,16,3,3,9,24,5,29,1,231,5,
10,21,12,20,13,18,16,3,3,9,24,5,29,1,231,3,
0,7,1,2,25,5,29,3,31,1,76,1,28,3,2,1,
25,2,3,3,3,5,16,2,1,6,1,6,16,16,8,1,
7,24,9,22,11,21,16,17,17,15,20,13,18,14,20,13,
21,11,22,10,22,10,22,10,22,10,22,11,21,11,21,12,
20,14,9,7,2,15,8,25,8,25,7,27,5,28,4,29,
4,29,2,168,5,0,255,0,112,1,31,3,29,7,27,6,
4,29,2,168,3,0,255,0,112,1,31,3,29,7,27,6,
25,7,25,8,24,9,25,8,12,5,10,6,3,1,6,6,
11,10,2,11,5,14,1,13,3,15,2,13,1,16,2,30,
3,29,4,28,4,28,6,9,1,7,1,1,2,5,9,5,
2,7,7,2,11,1,3,8,23,8,22,10,1,1,20,16,
17,16,17,18,15,17,16,16,17,15,17,15,5,0,255,0,
17,16,17,18,15,17,16,16,17,15,17,15,3,0,255,0,
113,1,31,3,30,6,28,5,27,5,26,7,25,8,24,9,
27,6,10,4,13,9,5,6,9,12,2,11,4,15,1,13,
2,16,1,13,1,17,1,31,3,29,3,29,4,22,1,5,
5,10,1,7,7,2,8,6,2,7,8,1,15,8,22,9,
22,12,20,16,18,15,18,17,15,17,16,16,17,15,5,0,
22,12,20,16,18,15,18,17,15,17,16,16,17,15,3,0,
255,0,22,1,31,2,30,3,30,4,29,5,28,4,29,3,
18,2,9,4,17,3,9,3,17,12,1,2,18,11,1,3,
23,4,2,3,22,5,2,5,19,13,5,4,1,1,6,15,
4,9,3,16,3,10,2,17,3,29,2,30,1,31,1,31,
1,23,5,3,2,22,7,1,5,18,22,10,21,15,17,17,
16,18,16,17,15,17,16,16,17,15,12,138,194,162,202,163,
16,18,16,17,15,17,16,16,17,15,4,138,194,162,202,163,
210,195,219,2,227,3,227,162,235,4,235,162,242,201,250,201,
12,148,97,162,105,196,114,4,122,36,130,68,138,101,146,133,
4,148,97,162,105,196,114,4,122,36,130,68,138,101,146,133,
154,165,162,198,171,6,179,38,187,70,195,103,203,136,211,200,
219,233,228,8,236,39,244,70,252,132,5,0,219,4,27,6,
219,233,228,8,236,39,244,70,252,132,3,0,219,4,27,6,
25,7,22,10,21,11,21,11,21,11,20,11,21,9,14,2,
10,6,2,1,5,3,1,5,8,6,2,2,6,10,3,13,
7,25,6,26,1,63,6,26,6,26,7,15,2,8,9,2,
16,4,255,0,194,5,0,201,3,27,7,24,8,23,10,22,
16,4,255,0,194,3,0,201,3,27,7,24,8,23,10,22,
10,1,1,20,14,19,17,15,17,4,1,1,2,9,8,4,
3,18,7,4,2,19,7,4,7,3,2,9,6,4,13,10,
5,4,13,10,22,8,24,8,24,8,24,7,18,6,1,8,
17,6,1,8,19,3,2,7,25,6,3,1,6,4,12,5,
3,1,6,9,8,4,3,2,5,14,4,3,4,27,2,1,
1,28,1,253,5,0,233,1,28,6,25,8,23,9,23,9,
1,28,1,253,3,0,233,1,28,6,25,8,23,9,23,9,
2,2,19,19,14,18,6,1,7,10,5,3,16,8,5,3,
17,8,4,12,9,6,5,12,9,6,5,12,11,5,1,15,
10,22,9,23,9,18,4,1,9,17,15,23,9,23,9,23,
8,11,6,7,8,9,9,5,8,3,1,6,10,3,8,3,
2,4,23,3,3,1,24,3,28,2,1,1,27,1,188,5,
2,4,23,3,3,1,24,3,28,2,1,1,27,1,188,3,
0,255,0,39,6,25,7,24,9,2,2,19,9,1,7,15,
20,1,4,1,2,4,12,1,7,13,11,5,2,16,9,5,
11,9,7,5,11,9,7,5,11,10,5,5,12,13,4,1,
14,12,20,10,17,15,17,15,19,13,22,10,22,10,22,10,
10,8,4,10,2,1,6,10,3,9,3,1,5,23,2,2,
4,23,2,3,3,23,4,27,4,28,1,30,1,122,5,0,
4,23,2,3,3,23,4,27,4,28,1,30,1,122,3,0,
255,0,96,1,30,5,4,2,20,8,1,16,4,4,2,5,
1,11,8,5,2,9,3,6,6,17,6,3,5,6,3,10,
6,3,2,8,3,10,7,25,5,1,2,14,4,7,2,19,
5,4,3,20,11,21,10,22,10,22,10,22,11,21,11,12,
4,5,10,12,19,3,1,8,19,3,2,6,21,1,4,2,
24,2,4,2,30,2,209,5,0,255,0,69,1,25,1,4,
24,2,4,2,30,2,209,3,0,255,0,69,1,25,1,4,
7,7,1,1,3,1,3,1,4,4,15,1,1,15,14,15,
2,1,4,1,10,13,9,7,4,10,13,6,5,6,15,7,
5,3,18,7,5,1,20,4,28,3,27,4,28,4,20,3,
3,3,21,11,21,10,22,10,22,11,21,11,21,12,15,17,
15,17,14,18,14,18,13,18,2,1,3,1,7,18,1,2,
3,1,6,22,2,4,2,23,3,29,3,29,4,15,5,0,
3,1,6,22,2,4,2,23,3,29,3,29,4,15,3,0,
27,5,28,4,29,3,29,3,30,2,255,0,127,2,29,7,
25,8,7,1,16,9,5,2,16,9,23,9,22,9,22,10,
21,11,20,7,21,11,19,13,18,14,18,14,18,14,18,14,
17,15,17,15,16,16,13,19,9,23,7,25,6,26,6,26,
12,135,154,129,162,99,170,68,178,38,186,38,194,68,202,129,
14,2,16,128,0,39,3,16,1,2,6,12,14,10,14,14,
9,23,1,28,14,6,49,140,0,14,5,1,4,20,12,21,
4,135,154,129,162,99,170,68,178,38,186,38,194,68,202,129,
5,2,16,128,0,39,3,16,1,2,6,12,14,10,14,14,
9,23,1,28,5,6,49,140,0,14,5,1,4,20,12,21,
1,1,9,24,8,7,1,5,3,9,2,8,5,4,5,5,
6,2,10,4,6,2,20,3,29,3,29,4,28,6,5,1,
3,6,11,23,9,26,6,28,4,30,2,32,14,7,57,204,
3,6,11,23,9,26,6,28,4,30,2,32,5,7,57,204,
0,107,6,4,2,8,17,7,17,7,17,20,12,20,4,1,
7,21,3,5,2,22,4,25,8,3,3,4,2,9,17,3,
8,3,18,2,9,2,19,1,31,1,31,1,20,3,8,2,
16,9,5,2,12,14,4,3,10,17,2,6,2,56,5,0,
16,9,5,2,12,14,4,3,10,17,2,6,2,56,3,0,
255,0,123,6,21,11,20,9,23,12,20,12,26,6,27,5,
27,5,26,5,26,5,27,5,26,5,18,3,5,6,1,2,
11,21,2,1,7,28,3,30,1,138,5,24,11,21,13,15,
19,13,21,3,125,14,15,123,156,0,165,5,26,7,25,8,
19,13,21,3,125,5,15,123,156,0,165,5,26,7,25,8,
25,8,27,6,26,8,24,9,23,10,22,11,25,8,24,9,
23,10,22,10,22,9,23,9,23,7,25,5,15,1,12,1,
2,1,2,2,11,1,13,8,10,1,11,10,10,1,10,11,
18,14,16,16,10,12,149,105,226,113,196,121,196,129,200,137,
18,14,16,16,10,4,149,105,226,113,196,121,196,129,200,137,
229,146,4,154,6,162,8,170,43,178,75,186,105,194,136,202,
138,210,134,211,100,218,132,219,130,226,161,227,66,235,34,243,
33,14,6,56,196,0,113,2,10,3,9,2,8,5,13,1,
33,5,6,56,196,0,113,2,10,3,9,2,8,5,13,1,
3,2,7,6,11,10,3,8,1,2,8,23,2,1,6,19,
1,2,2,1,8,18,5,1,13,4,1,10,2,1,2,1,
15,3,1,10,2,1,4,5,4,1,1,1,5,3,106,12,
15,3,1,10,2,1,4,5,4,1,1,1,5,3,106,4,
160,42,101,50,102,58,41,66,42,74,43,82,76,90,75,98,
73,106,105,113,163,114,137,121,164,122,169,129,226,130,139,137,
227,138,108,146,16,154,17,162,3,162,142,170,142,178,143,186,
174,194,174,202,173,210,203,218,202,226,203,234,172,242,172,250,
172,12,156,4,194,9,194,12,225,17,195,20,225,25,196,33,
172,4,156,4,194,9,194,12,225,17,195,20,225,25,196,33,
197,41,230,49,231,58,71,66,104,74,138,82,171,84,162,90,
210,99,16,107,109,115,171,123,233,131,230,132,225,139,201,147,
202,155,202,163,202,172,8,180,101,188,132,12,152,3,228,11,
202,155,202,163,202,172,8,180,101,188,132,4,152,3,228,11,
168,19,138,20,225,27,109,35,109,43,109,51,109,59,140,67,
109,75,109,83,171,91,202,100,8,107,231,115,230,123,167,131,
135,139,72,147,8,154,200,162,105,170,67,178,97,14,0,115,
135,139,72,147,8,154,200,162,105,170,67,178,97,5,0,115,
222,0,104,2,6,4,4,5,3,18,6,17,1,2,4,12,
2,2,8,8,16,5,19,3,255,0,198,12,7,0,9,3,
101,4,101,8,1,8,164,11,162,12,225,12,5,50,130,99,
97,121,129,137,193,232,97,14,3,205,103,13,4,8,5,13,
2,2,8,8,16,5,19,3,255,0,198,4,7,0,9,3,
101,4,101,8,1,8,164,11,162,12,225,4,5,50,130,99,
97,121,129,137,193,232,97,5,3,205,103,13,4,8,5,13,
8,6,5,11,11,4,6,10,12,4,6,10,12,3,7,9,
23,9,25,7,23,9,25,7,13,1,5,3,2,8,12,21,
8,11,2,12,6,202,1,158,1,7,14,3,220,231,107,3,
8,11,2,12,6,202,1,158,1,7,5,3,220,231,107,3,
15,2,9,8,10,5,7,10,10,4,7,11,10,5,5,10,
11,6,4,11,10,7,4,11,10,8,2,10,10,10,2,10,
5,2,2,11,1,31,1,31,1,31,1,9,3,19,1,6,
1,1,6,17,1,4,11,3,15,2,13,1,31,1,206,5,
1,1,6,17,1,4,11,3,15,2,13,1,31,1,206,3,
219,2,13,7,9,4,10,9,8,5,8,11,8,6,6,11,
8,7,5,11,9,8,3,10,10,9,3,10,10,9,2,11,
9,10,2,18,1,11,2,30,2,30,2,4,1,4,2,19,
2,2,4,1,5,18,17,2,11,2,16,3,30,1,136,1,
100,1,255,0,65,12,30,50,129,58,100,66,69,74,38,82,
100,1,255,0,65,4,30,50,129,58,100,66,69,74,38,82,
37,90,36,98,68,106,68,114,69,122,69,130,69,138,70,146,
68,146,226,147,65,154,106,162,78,170,80,178,38,179,41,186,
7,187,34,193,201,201,170,209,139,217,109,225,78,233,109,241,
109,249,140,14,7,113,140,52,2,5,4,27,5,26,7,24,
109,249,140,5,7,113,140,52,2,5,4,27,5,26,7,24,
8,16,3,4,9,7,5,3,6,1,10,6,12,2,12,4,
63,4,3,3,19,14,2,3,13,25,7,29,3,192,12,33,
63,4,3,3,19,14,2,3,13,25,7,29,3,192,4,33,
52,34,59,229,67,199,75,199,83,200,91,200,99,231,108,6,
116,37,122,46,124,5,128,72,129,216,136,20,139,46,144,82,
147,232,154,97,156,8,162,97,164,8,170,34,172,39,180,39,
188,39,196,39,204,38,212,70,220,70,228,39,236,8,244,8,
252,8,5,22,4,28,4,28,4,28,4,28,4,28,4,28,
252,8,3,22,4,28,4,28,4,28,4,28,4,28,4,28,
4,28,5,27,5,3,1,23,9,18,2,1,8,20,15,15,
16,15,17,13,17,13,19,4,1,5,20,6,2,2,22,6,
20,1,5,6,15,6,5,6,13,8,5,6,10,11,5,6,
8,14,4,6,6,16,4,6,2,20,5,23,2,2,5,21,
3,3,5,20,2,5,5,18,4,5,5,15,17,13,19,12,
21,9,23,8,24,6,20,1,5,4,16,8,4,4,16,8,
4,4,15,9,5,3,12,13,4,3,9,16,4,3,5,18,
4,4,15,9,5,3,12,13,4,3,9,16,4,3,3,18,
14,18,14,18,14,18,2,5,7,18,2,11,1,17,2,30,
2,29,2,30,2,30,2,30,1,31,1,31,1,31,2,30,
2,30,2,30,2,30,2,31,1,31,2,30,2,30,2,31,
2,30,2,30,4,8,2,1,1,6,1,1,3,2,8,3,
6,1,1,4,255,0,9,4,29,3,15,2,2,2,14,2,
10,9,10,5,8,14,4,8,6,28,3,5,42,3,30,13,
10,9,10,5,8,14,4,8,6,28,3,3,42,3,30,13,
19,17,15,19,13,21,11,21,11,2,16,3,11,2,30,1,
30,2,30,1,31,1,31,1,31,1,31,1,31,1,20,1,
7,2,1,2,15,5,4,9,12,7,4,9,1,1,8,9,
@ -761,50 +761,50 @@ const unsigned char video[13046] = {
29,11,31,8,33,7,33,8,32,11,28,13,28,14,26,8,
1,5,26,15,25,16,24,13,1,3,23,13,2,4,21,13,
2,5,20,13,1,6,20,21,19,21,19,17,2,3,18,8,
5,4,3,2,5,0,177,15,12,20,7,25,3,255,0,255,
5,4,3,2,3,0,177,15,12,20,7,25,3,255,0,255,
0,255,0,32,2,29,5,25,7,24,9,1,4,16,28,2,
72,5,255,0,65,1,31,4,28,6,26,8,24,9,23,11,
22,11,27,6,30,3,31,2,255,0,255,0,147,12,1,98,
98,12,10,122,38,130,8,138,8,146,8,154,8,161,234,169,
204,177,204,185,234,194,68,12,17,194,98,201,234,209,138,210,
72,3,255,0,65,1,31,4,28,6,26,8,24,9,23,11,
22,11,27,6,30,3,31,2,255,0,255,0,147,4,1,98,
98,4,10,122,38,130,8,138,8,146,8,154,8,161,234,169,
204,177,204,185,234,194,68,4,17,194,98,201,234,209,138,210,
229,217,99,218,68,219,36,225,67,226,68,227,68,233,67,234,
67,235,99,241,36,243,99,249,68,251,68,14,7,16,128,85,
67,235,99,241,36,243,99,249,68,251,68,5,7,16,128,85,
3,8,1,6,9,8,16,7,17,7,17,8,16,14,10,21,
3,64,14,7,16,128,62,2,14,3,2,5,3,2,6,13,
3,64,5,7,16,128,62,2,14,3,2,5,3,2,6,13,
3,21,3,21,3,21,3,21,3,2,6,13,14,3,2,5,
6,2,56,14,7,56,192,89,2,21,3,20,5,18,5,5,
6,2,56,5,7,56,192,89,2,21,3,20,5,18,5,5,
4,4,2,1,7,2,28,1,100,3,16,10,14,13,11,6,
3,6,1,7,2,15,1,87,12,26,57,129,58,6,65,138,
3,6,1,7,2,15,1,87,4,26,57,129,58,6,65,138,
73,139,81,170,89,169,97,200,105,200,113,199,121,200,129,232,
137,233,145,234,153,234,161,235,169,235,177,203,185,204,193,205,
201,174,209,173,217,142,225,111,233,112,241,80,249,81,14,5,
201,174,209,173,217,142,225,111,233,112,241,80,249,81,5,5,
57,206,128,75,1,31,1,31,1,13,4,6,1,1,1,10,
7,4,3,10,16,8,16,8,7,3,5,10,4,6,1,1,
1,11,3,7,1,23,1,31,1,84,128,5,0,255,0,55,
1,11,3,7,1,23,1,31,1,84,128,3,0,255,0,55,
1,31,2,27,4,26,5,24,7,24,5,26,4,27,4,17,
3,7,4,18,13,5,4,10,12,5,4,11,12,2,1,1,
4,12,20,12,20,12,20,12,21,11,21,11,8,2,11,11,
6,3,4,2,6,11,4,5,3,4,5,26,5,27,1,255,
0,49,5,0,104,3,29,6,18,2,6,2,1,4,17,9,
0,49,3,0,104,3,29,6,18,2,6,2,1,4,17,9,
2,4,17,15,17,16,16,16,16,17,17,15,20,1,3,3,
2,2,26,2,255,0,245,254,2,23,9,23,9,23,9,5,
2,2,26,2,255,0,245,254,2,23,9,23,9,23,9,3,
0,72,1,3,1,19,10,1,2,19,14,18,14,18,4,2,
6,20,3,30,1,255,0,127,255,0,152,3,28,5,25,7,
1,4,19,13,19,2,1,10,24,3,2,3,24,2,38,14,
1,4,19,13,19,2,1,10,24,3,2,3,24,2,38,5,
12,64,99,0,32,4,2,1,4,2,3,10,1,2,3,15,
1,14,2,5,4,1,1,2,4,3,5,1,2,1,4,2,
7,1,117,56,1,13,3,13,5,8,8,8,13,2,14,6,
10,6,2,24,14,14,80,231,0,3,4,13,4,12,4,13,
10,6,2,24,5,14,80,231,0,3,4,13,4,12,4,13,
4,12,4,13,4,12,4,13,3,13,3,14,2,14,2,15,
1,186,12,12,167,1,6,3,9,1,2,4,9,1,2,5,
8,9,7,9,7,9,8,8,9,7,9,6,2,5,0,52,
8,9,7,9,7,9,8,8,9,7,9,6,2,3,0,52,
12,18,14,16,16,14,18,13,3,6,10,12,1,13,6,11,
1,17,3,10,1,19,2,31,9,24,8,24,7,8,4,13,
7,8,4,13,7,9,3,13,7,9,2,14,8,24,8,24,
9,23,11,21,13,3,6,10,24,8,25,7,15,2,9,6,
15,3,8,6,14,5,8,5,15,4,8,6,26,6,26,7,
24,9,23,10,26,7,16,1,10,7,12,3,10,13,1,6,
12,19,13,17,15,15,17,12,52,5,0,11,10,19,17,12,
12,19,13,17,15,15,17,12,52,3,0,11,10,19,17,12,
22,9,24,6,28,3,30,1,120,5,25,10,20,12,19,13,
18,14,17,15,17,15,16,16,16,8,4,4,16,8,5,3,
4,4,8,8,5,3,3,5,8,8,5,3,3,5,8,9,
@ -818,18 +818,18 @@ const unsigned char video[13046] = {
34,6,14,6,15,4,13,10,28,14,25,16,23,18,22,19,
21,20,20,20,20,21,19,21,19,22,18,23,16,10,4,12,
12,11,6,13,8,13,6,34,7,33,6,34,6,35,4,187,
5,0,13,6,26,5,255,0,47,81,2,30,2,31,1,31,
3,0,13,6,26,5,255,0,47,81,2,30,2,31,1,31,
1,31,1,31,1,25,1,5,1,24,4,3,1,24,5,2,
1,24,5,1,2,23,10,22,11,22,10,22,10,22,11,23,
9,27,4,28,4,28,3,29,3,28,5,27,5,27,5,27,
5,28,3,76,5,0,14,4,255,0,47,241,1,31,2,31,
5,28,3,76,3,0,14,4,255,0,47,241,1,31,2,31,
1,31,2,31,1,31,1,31,1,63,2,22,3,4,4,22,
10,22,12,21,1,1,9,22,1,3,5,29,3,29,4,29,
3,29,4,28,4,28,4,29,3,71,5,105,2,31,2,58,
3,29,4,28,4,28,4,29,3,71,3,105,2,31,2,58,
11,19,15,16,17,12,21,11,21,11,21,11,21,11,21,11,
21,11,21,11,21,11,21,11,21,11,21,11,22,10,22,3,
2,5,20,5,25,8,24,8,24,8,24,7,26,5,29,1,
255,0,107,5,0,255,0,170,2,2,2,23,10,21,12,7,
255,0,107,3,0,255,0,170,2,2,2,23,10,21,12,7,
8,4,28,5,27,5,27,5,27,5,9,2,16,5,27,5,
7,7,13,5,3,10,14,17,5,1,9,17,4,4,7,29,
2,255,0,162,0,0,

View file

@ -16,24 +16,24 @@ const MAX_LOSS: usize = 0; // highest "loss" value tried for all lossy encodings
const LOSSLESS_ENCODINGS: &[FrameEncoder] = &[
enc::rle_horizontal,
// enc::rle_horizontal_ext,
enc::rle_horizontal_ext_2,
// enc::rle_horizontal_ext_2,
enc::rle_vertical,
// enc::rle_vertical_ext,
enc::rle_vertical_ext_2,
// enc::rle_vertical_ext_2,
// enc::rle_vertical_var, // not worth
// enc::rle_vertical_16, // not worth
// enc::rle_diff_horizontal,
// enc::rle_diff_vertical,
// enc::bg_strips_horizontal_16, // only works for the tiny display
enc::bg_strips_horizontal_24, // intended for the 240x320 display
enc::bg_strips_horizontal_16, // only works for the tiny display
// enc::bg_strips_horizontal_24, // intended for the 240x320 display
// enc::tree_16,// turns out to be useless
enc::cell_diff_8_vertical_big,
// enc::cell_diff_8_vertical_big,
];
const LOSSY_ENCODINGS: &[FrameEncoderLossy] = &[
enc::fill_white,
enc::fill_black,
// todo: adapt for big display
// enc::cell_diff_8_vertical,
enc::cell_diff_8_vertical,
// enc::cell_diff_4_vertical,
];
@ -90,8 +90,7 @@ fn main() {
}
}
export_string += "} Encoding_t;\n\n";
export_string += "const unsigned char video[] = {";
// export_string += &format!("const unsigned char video[{}] = {{", encoded.len());
export_string += &format!("const unsigned char video[{}] = {{", encoded.len());
let mut i = 99;
for byte in encoded {
if i > 15 {
@ -173,22 +172,22 @@ enum Encoding {
FillBlack,
FillWhite,
RLEHorizontal,
RLEVertical,
BGStripsH16,
CellDiff8V,
RLEHorizontalExt,
RLEHorizontalExt2,
RLEVertical,
RLEVerticalExt,
RLEVerticalExt2,
RLEVerticalVar,
RLEVertical16,
RLEDiffHorizontal,
RLEDiffVertical,
BGStripsH16,
BGStripsH24,
// BGStripsV,
// QuadTree,
// DrawCommands,
// CellDiff8H,
CellDiff8V,
CellDiff8VBig,
// CellDiff4HH,
// CellDiff4HV,

View file

@ -5,10 +5,12 @@ use std::{
use image::{self, DynamicImage, GenericImageView, ImageFormat, Rgba};
// pub const OUTPUT_DIR: &str = "ch32_decoder";
pub const OUTPUT_DIR: &str = "pico_decoder/src";
pub const WIDTH: usize = 320;
pub const HEIGHT: usize = 240;
pub const OUTPUT_DIR: &str = "ch32_decoder";
pub const WIDTH: usize = 40;
pub const HEIGHT: usize = 32;
// pub const OUTPUT_DIR: &str = "pico_decoder/src";
// pub const WIDTH: usize = 320;
// pub const HEIGHT: usize = 240;
pub const FRAME_SIZE: usize = WIDTH * HEIGHT;
pub type Frame = [[u8; HEIGHT]; WIDTH];