diff options
-rw-r--r-- | bin/Jin.exe | bin | 487936 -> 488448 bytes | |||
-rw-r--r-- | bin/font.shader | 6 | ||||
-rw-r--r-- | bin/jin.exe | bin | 487936 -> 488448 bytes | |||
-rw-r--r-- | bin/main.lua | 74 | ||||
-rw-r--r-- | res/font.png | bin | 6816 -> 6499 bytes | |||
-rw-r--r-- | src/libjin/Graphics/je_sprite.h | 7 | ||||
-rw-r--r-- | src/lua/modules/graphics/graphics.cpp | 15 | ||||
-rw-r--r-- | src/lua/resources/font.ttf.h | 634 |
8 files changed, 403 insertions, 333 deletions
diff --git a/bin/Jin.exe b/bin/Jin.exe Binary files differindex 51fcde9..71abdf2 100644 --- a/bin/Jin.exe +++ b/bin/Jin.exe diff --git a/bin/font.shader b/bin/font.shader index f35e47e..0b8df7c 100644 --- a/bin/font.shader +++ b/bin/font.shader @@ -13,7 +13,11 @@ uniform float dt; Color frag(Color col, Texture tex, Vertex v) { - return col * texel(tex, v.uv); + Color c = texel(tex, v.uv); + + return c; } +//1.21 1.34 +//stbi_write_png #END_FRAGMENT_SHADER diff --git a/bin/jin.exe b/bin/jin.exe Binary files differindex 51fcde9..71abdf2 100644 --- a/bin/jin.exe +++ b/bin/jin.exe diff --git a/bin/main.lua b/bin/main.lua index 403f412..5855766 100644 --- a/bin/main.lua +++ b/bin/main.lua @@ -21,11 +21,19 @@ function jin.core.onLoad() bitmap = jin.graphics.newBitmap("font2.png") tf = jin.graphics.newTextureFont(bitmap, [[<=>?.'^@abcdefghijklmnopqrstuvwxyz|~[\]_]], {255, 0, 0, 255}, 16) end - +local value = 0 function jin.core.onEvent(e) if e.type == "Quit" then jin.core.stop() end + if e.type == "KeyDown" then + if e.key == "Up" then + value = value + 0.01 + end + if e.key == "Down" then + value = value - 0.01 + end + end end local t = 0 local fps = 0 @@ -48,7 +56,67 @@ end function jin.core.onDraw() jin.graphics.setColor(255, 255, 255) - jin.graphics.draw(sprites, 10, 10, 1, 1) + --jin.graphics.draw(sprites, 10, 10, 1, 1) -- jin.graphics.setFont(tf) - jin.graphics.print("this is a demo") + jin.graphics.useShader(shader) + jin.graphics.print(value) + jin.graphics.print([[ +#VERTEX_SHADER + +Vertex vert(Vertex v) +{ + return v; +} + +#END_VERTEX_SHADER + +#FRAGMENT_SHADER + +uniform float dt; + +Color frag(Color col, Texture tex, Vertex v) +{ + Color c = texel(tex, v.uv); + if(c.a < 0.9f) + { + c.a /= 1.34; + } + return c; +} +//1.21 1.34 + +//stbi_write_png +#END_FRAGMENT_SHADER + + ]], 0, 20)asd + jin.graphics.unuseShader() + jin.graphics.print([[ +#VERTEX_SHADER + +Vertex vert(Vertex v) +{ + return v; +} + +#END_VERTEX_SHADER + +#FRAGMENT_SHADER + +uniform float dt; + +Color frag(Color col, Texture tex, Vertex v) +{ + Color c = texel(tex, v.uv); + if(c.a < 0.9f) + { + c.a /= 1.34; + } + return c; +} +//1.21 1.34 + +//stbi_write_png +#END_FRAGMENT_SHADER + + ]], 300, 20) end
\ No newline at end of file diff --git a/res/font.png b/res/font.png Binary files differindex 966d483..53de7d5 100644 --- a/res/font.png +++ b/res/font.png diff --git a/src/libjin/Graphics/je_sprite.h b/src/libjin/Graphics/je_sprite.h index 23824a7..4273240 100644 --- a/src/libjin/Graphics/je_sprite.h +++ b/src/libjin/Graphics/je_sprite.h @@ -1,16 +1,18 @@ #ifndef __JE_SPRITE_H #define __JE_SPRITE_H -#include "je_color.h" #include "../common/je_types.h" #include "../math/je_vector2.hpp" +#include "shader/je_shader.h" +#include "je_color.h" + namespace JinEngine { namespace Graphics { /// - /// A sprite is a transformable texture. + /// A sprite is unit of rendering, logic and events. /// class Sprite { @@ -21,6 +23,7 @@ namespace JinEngine Math::Vector2<int> mOrigin; Math::Vector2<int> mScale; Color mColor; + const Shader* mShader; }; diff --git a/src/lua/modules/graphics/graphics.cpp b/src/lua/modules/graphics/graphics.cpp index 0d34619..2608051 100644 --- a/src/lua/modules/graphics/graphics.cpp +++ b/src/lua/modules/graphics/graphics.cpp @@ -45,6 +45,21 @@ namespace JinEngine { /* load default font */ Bitmap* bitmap = Bitmap::createBitmap(default_font_bitmap, sizeof(default_font_bitmap)); + const Color* pixels = bitmap->getPixels(); + ofstream f = ofstream(); + f.open("font.pixels", ios_base::app); + for (int y = 0; y < bitmap->getHeight(); ++y) + { + for (int x = 0; x < bitmap->getWidth(); ++x) + { + Color c = pixels[x + y * bitmap->getWidth()]; + f << (int)c.r << ","; + f << (int)c.g << ","; + f << (int)c.b << ","; + f << (int)c.a << ","; + } + } + TextureFont* tf = TextureFont::createTextureFont(bitmap, Text(Encode::UTF8, default_charset), default_font_split, bitmap->getHeight()); context.defaultFont = tf; delete bitmap; diff --git a/src/lua/resources/font.ttf.h b/src/lua/resources/font.ttf.h index d2c6bf1..8197e27 100644 --- a/src/lua/resources/font.ttf.h +++ b/src/lua/resources/font.ttf.h @@ -1,331 +1,311 @@ static const char -default_font_bitmap[] = { -137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,3,106,0,0,0,13,8,6,0,0,0, -216,50,157,116,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89, -115,0,0,14,194,0,0,14,194,1,21,40,74,128,0,0,0,25,116,69,88,116,83,111,102, -116,119,97,114,101,0,112,97,105,110,116,46,110,101,116,32,52,46,48,46,50,49, -241,32,105,149,0,0,26,29,73,68,65,84,120,94,237,156,61,146,45,71,110,133,185, -51,69,204,30,198,164,43,95,43,80,104,86,48,242,25,33,83,254,216,52,37,147,38, -77,121,227,73,150,66,142,172,86,125,56,133,139,3,100,86,221,234,126,143,10,26, -131,27,96,87,2,39,145,248,203,172,170,219,205,247,195,199,15,31,31,39,255,144, -196,245,78,238,52,48,226,143,143,95,15,254,153,145,83,32,59,246,212,20,5,226, -6,115,74,101,255,6,231,132,238,133,251,227,235,10,255,160,95,95,146,167,54, -146,159,198,249,241,241,63,7,255,201,100,121,245,167,131,255,243,224,31,77,7, -253,120,48,114,244,167,213,173,93,214,118,255,147,207,25,247,4,206,230,92,206, -11,212,3,28,20,200,239,140,13,84,199,53,108,73,86,93,82,104,47,244,67,183,157, -15,5,234,243,184,83,122,77,3,255,77,118,191,138,121,141,140,67,222,177,31,31, -255,216,70,197,236,171,46,209,124,151,56,79,252,149,221,131,195,142,62,37,221, -225,145,77,233,123,156,236,187,222,121,141,107,177,217,230,223,249,176,234, -250,104,234,199,58,141,223,96,195,39,125,46,49,112,82,147,79,219,240,206,190, -141,55,115,250,104,199,250,148,100,227,95,240,103,123,235,224,208,63,181,15, -59,182,238,17,157,221,143,59,91,51,23,3,27,190,229,248,1,22,122,201,110,240, -13,119,197,62,127,172,213,248,6,183,172,243,21,155,61,138,206,250,116,137,143, -186,29,241,85,205,224,105,239,73,125,143,171,164,134,129,59,238,169,61,184, -143,146,103,60,87,57,156,184,167,235,126,194,191,136,87,159,247,242,244,115, -87,143,25,195,138,217,219,124,35,79,10,237,141,30,10,196,70,255,146,76,159, -244,220,245,215,248,153,178,17,71,210,49,170,185,158,223,153,211,156,63,215, -26,118,23,189,248,92,173,19,114,195,4,159,170,45,53,236,236,133,77,15,180,145, -251,53,125,214,71,163,105,247,110,94,95,179,235,158,174,55,231,13,78,58,70,29, -57,109,94,241,156,87,241,253,116,112,60,243,239,114,23,107,186,196,121,218, -124,135,79,182,121,110,32,38,67,33,221,200,157,6,70,252,123,126,81,251,251, -248,111,189,8,253,179,233,158,218,72,254,219,139,218,66,129,252,206,216,64, -117,92,195,150,100,213,37,133,54,245,127,247,186,18,51,238,146,115,86,167,64, -125,30,119,74,175,105,224,191,201,238,87,49,231,136,126,251,223,131,57,140,78, -109,124,114,4,209,155,255,29,87,69,63,181,3,22,238,57,166,79,157,86,188,214, -156,164,3,17,158,53,218,227,127,106,24,225,230,218,196,183,219,139,240,196, -254,188,248,9,107,109,110,232,127,56,216,243,183,223,143,190,159,187,46,175, -174,206,1,236,179,78,213,67,107,204,24,160,229,204,56,228,221,247,170,221,206, -119,56,115,186,203,99,234,56,243,92,131,205,254,112,3,87,253,51,6,39,197,179, -214,116,135,253,245,77,111,225,143,83,245,204,26,255,190,23,208,186,47,186, -153,207,62,239,61,187,247,53,169,247,128,215,247,144,88,206,215,126,41,187,21, -71,241,14,79,252,179,38,224,240,61,214,59,121,237,49,213,161,114,80,56,157,1, -133,187,242,137,49,242,63,24,54,251,100,146,252,73,92,213,16,27,73,138,99,246, -133,238,217,137,237,118,146,133,153,53,217,219,83,125,51,78,72,49,96,163,112, -81,39,232,148,84,94,58,46,237,205,62,252,117,89,119,31,115,207,31,188,218,74, -234,251,82,235,122,190,85,75,239,211,61,78,57,156,113,156,49,135,244,137,188, -242,189,59,47,124,255,236,106,182,183,249,70,158,20,218,27,61,20,136,161,183, -25,212,96,238,165,245,44,147,172,157,171,208,161,43,219,234,61,106,246,243, -146,83,205,187,58,219,255,227,224,127,63,120,237,1,241,185,90,39,228,134,9,62, -85,91,106,88,245,2,107,227,239,143,75,175,84,143,174,126,171,135,228,43,18, -247,67,57,200,30,235,245,46,185,250,211,115,84,235,225,79,207,131,124,208,158, -67,226,235,117,63,115,31,203,190,228,25,123,205,129,229,59,235,64,21,75,201, -215,181,96,229,173,159,85,51,119,125,244,151,131,241,5,254,37,100,211,102,197, -0,207,61,95,177,128,59,81,110,32,2,132,66,186,145,59,13,140,56,155,246,24,57, -5,178,99,79,77,81,32,110,48,167,84,246,111,112,78,232,94,56,37,156,4,176,73, -254,48,146,125,206,88,41,80,133,19,63,141,147,198,236,27,216,181,83,7,189,63, -28,132,91,15,27,241,57,227,158,192,217,156,203,121,129,122,128,131,2,249,157, -177,129,234,184,134,45,201,170,75,10,109,234,117,168,144,91,29,68,51,255,155, -249,80,160,62,143,59,165,215,52,240,223,100,247,43,152,215,149,250,233,191,14, -222,31,198,240,232,205,243,39,7,115,127,113,80,142,243,240,155,7,34,251,102, -222,184,250,77,64,12,78,178,117,143,172,248,181,142,144,246,136,75,29,183,187, -81,20,150,185,87,47,45,47,108,228,180,240,235,126,244,156,117,93,94,85,47,186, -94,246,89,71,55,15,253,212,77,112,222,36,70,93,194,39,125,118,24,108,164,205, -100,214,226,76,148,206,53,112,173,93,55,78,49,54,241,177,251,174,250,227,11, -120,242,146,26,240,216,89,95,130,215,120,115,220,207,122,217,78,59,94,219,196, -75,102,55,184,224,172,79,73,24,131,239,253,85,182,221,15,30,168,234,33,66,62, -36,87,253,24,187,45,120,232,163,54,210,172,253,194,23,135,238,87,105,42,55,41, -129,229,227,196,18,35,228,117,210,90,254,197,164,214,2,235,57,225,250,231,13, -14,91,228,68,49,186,63,142,237,121,129,11,231,245,22,206,109,38,110,215,23, -224,32,250,115,221,39,176,236,17,99,198,92,246,214,122,176,30,113,130,185,90, -215,235,4,87,78,223,247,173,120,246,31,243,228,163,231,123,237,151,53,135,216, -197,254,124,161,163,175,200,95,236,249,131,171,111,222,227,122,47,136,21,179, -62,239,229,30,183,203,165,251,183,131,179,87,136,119,158,139,123,155,111,228, -73,161,189,209,67,129,24,250,115,132,95,58,43,75,15,33,39,158,234,47,245,62, -249,130,67,26,118,220,182,234,170,125,179,246,6,57,215,179,102,151,147,59,228, -60,208,175,122,241,42,145,116,209,132,83,23,212,176,213,35,252,100,221,94,23, -245,94,250,214,95,250,103,46,188,191,149,3,250,84,189,237,61,173,121,149,115, -183,169,245,42,239,222,147,154,87,54,125,189,242,83,253,39,105,198,134,92,200, -253,61,64,254,95,95,51,103,206,203,61,248,175,7,131,251,243,193,189,127,88,75, -87,172,143,207,196,197,60,249,231,57,129,149,51,250,99,222,35,97,230,178,103, -91,79,185,129,179,188,107,163,191,174,156,103,34,224,108,218,46,93,177,21,88, -241,12,102,135,73,251,93,218,71,206,190,174,138,95,155,199,27,227,206,198,244, -11,126,26,39,115,251,124,215,174,182,189,169,239,113,172,189,62,24,130,235, -146,61,239,252,116,125,242,92,119,142,156,159,218,132,39,150,177,235,147,215, -245,87,187,142,217,217,241,181,170,7,116,211,239,61,240,60,15,79,112,87,24, -231,239,105,247,179,152,186,202,195,153,67,165,122,79,159,196,66,179,55,107, -236,56,229,152,254,236,7,103,114,247,1,202,131,112,98,181,199,102,141,6,126, -115,94,37,78,123,228,196,64,129,74,189,14,203,231,126,194,187,181,165,217,239, -199,171,28,149,229,234,69,215,203,62,235,176,30,152,122,216,154,123,103,212, -37,124,210,103,135,169,111,113,75,203,60,234,175,30,240,121,112,197,204,141, -42,31,174,209,240,19,121,247,93,245,223,159,143,30,139,75,123,188,41,229,250, -234,101,38,234,58,24,127,176,189,254,230,99,157,131,31,202,187,99,43,23,189, -31,198,190,137,28,107,84,118,66,19,159,196,65,77,111,243,214,126,169,155,119, -213,90,92,54,82,2,175,216,172,7,236,185,87,45,246,15,73,202,151,152,235,158, -15,225,102,109,248,201,120,251,155,168,215,200,115,190,158,193,179,63,202,102, -74,96,173,15,239,115,0,239,239,29,90,219,99,134,203,94,242,14,231,122,252,162, -31,20,255,180,167,220,160,247,122,93,237,81,108,168,79,174,112,199,200,114,88, -182,215,117,89,207,251,116,159,31,175,129,184,252,112,92,174,171,207,123,185, -251,230,114,184,231,88,235,187,36,245,189,119,174,229,199,200,41,180,55,122, -40,16,67,127,142,246,125,182,203,11,57,31,121,14,59,110,91,24,242,187,235,13, -108,162,187,123,81,251,101,153,39,206,171,222,55,250,56,110,13,222,168,97,255, -37,254,75,60,250,194,141,177,235,21,11,249,89,247,172,116,229,139,215,104,206, -211,103,206,163,55,123,31,75,87,249,189,211,249,122,234,19,114,136,47,172,203, -184,214,207,158,155,125,164,223,110,97,51,241,224,238,235,171,121,185,135,114, -206,218,163,58,131,192,236,232,170,223,242,236,205,88,32,100,248,147,185,126, -221,143,125,193,112,20,10,105,202,235,32,116,71,118,191,254,131,192,228,195, -64,210,218,196,85,8,154,38,169,63,36,8,67,32,147,250,139,218,222,63,37,199,19, -186,218,170,245,246,54,40,172,26,44,181,201,107,156,196,209,127,181,43,220,55, -253,233,227,193,172,35,219,29,183,30,128,146,167,93,14,129,164,108,176,164, -221,183,63,185,46,243,178,38,202,161,227,246,121,146,127,207,108,234,97,96, -223,15,239,107,13,107,109,106,131,45,124,172,60,200,142,251,214,255,12,101,93, -163,231,208,235,34,73,29,8,29,71,62,149,159,142,43,127,87,91,172,173,248,107, -60,215,199,174,99,136,165,215,97,93,59,113,190,54,243,177,227,36,187,137,169, -172,224,71,218,195,14,252,246,133,224,224,154,215,113,149,179,83,234,116,72, -166,93,95,95,24,105,174,236,55,124,240,220,119,194,105,143,184,180,159,7,139, -159,141,247,54,215,181,197,90,203,37,176,231,172,235,242,170,122,196,245,229, -27,123,135,186,149,143,250,56,182,213,37,242,119,141,193,142,215,16,38,71,200, -245,211,231,193,61,230,234,15,217,68,126,123,134,37,113,125,112,229,188,207, -217,213,98,205,233,192,37,113,125,50,190,237,206,183,217,11,21,71,63,31,240, -189,231,27,238,249,244,53,171,126,43,14,106,122,155,183,198,70,191,85,124,232, -83,35,236,250,133,197,204,25,107,113,147,231,133,26,57,250,170,133,231,164, -206,113,230,162,135,101,199,243,209,113,216,196,94,173,217,207,136,186,146, -190,206,49,125,164,145,95,248,233,61,88,121,74,137,248,157,62,48,73,167,164, -114,56,251,160,226,129,43,127,190,215,11,147,185,227,27,116,225,214,190,2,227, -231,44,184,171,191,2,32,102,244,73,171,189,62,98,206,218,163,112,189,236,170, -14,234,145,221,151,90,179,239,171,31,28,119,204,138,252,233,243,94,238,53,116, -57,92,249,171,252,186,222,235,211,229,212,152,92,110,125,75,98,108,186,69,15, -5,194,244,134,86,206,214,60,101,95,87,127,245,253,24,121,94,108,83,191,180,57, -107,169,249,235,125,36,229,201,179,182,226,188,42,191,36,93,177,170,241,142, -118,249,213,30,74,159,93,175,88,212,71,72,124,173,202,133,106,238,177,106,94, -245,170,207,147,174,122,110,157,135,79,216,188,127,81,115,93,229,143,53,147, -234,172,145,255,235,251,137,199,86,215,202,67,161,214,122,200,15,158,95,193, -106,254,196,84,207,131,229,217,148,92,129,151,79,179,7,60,95,110,183,124,226, -90,152,115,142,27,136,70,132,66,154,114,57,193,164,12,168,18,159,152,100,45, -162,7,119,73,248,185,110,62,201,193,85,146,214,96,106,174,36,172,203,184,55, -160,138,154,137,79,169,2,246,13,169,195,13,91,42,190,235,202,6,155,130,36,231, -88,177,36,46,121,141,147,241,238,102,250,45,47,106,229,207,190,233,118,15,134, -204,203,166,66,66,126,33,240,140,209,239,234,145,185,205,248,115,188,219,204, -138,181,164,172,1,118,23,139,219,68,90,49,117,108,249,37,73,198,209,107,45,44, -107,107,189,148,150,14,95,124,189,190,169,170,7,148,251,181,94,165,147,4,59, -216,155,55,27,244,89,39,36,53,175,48,204,213,193,38,73,190,92,102,207,19,71, -183,43,255,144,147,39,230,173,7,213,147,181,251,205,160,240,110,167,14,151,92, -143,235,170,229,186,31,177,131,206,105,253,102,206,115,118,72,38,5,186,227,91, -205,2,35,205,26,87,225,157,174,246,40,49,57,41,174,210,55,63,79,38,23,73,187, -222,155,107,59,253,22,47,106,16,62,133,38,114,179,230,175,245,195,3,12,121,73, -155,181,190,100,189,31,53,215,235,3,158,124,35,99,14,242,233,251,226,15,196, -245,201,234,55,151,172,181,192,134,246,202,13,206,137,241,193,138,109,127,94, -58,229,58,61,87,58,223,208,65,234,23,52,253,198,236,235,121,254,186,45,120, -232,109,158,252,116,108,237,71,214,207,124,195,58,67,102,76,58,43,188,150,92, -195,172,165,186,104,125,157,33,125,63,231,85,230,243,213,99,231,103,226,176, -69,28,124,113,32,123,247,88,213,174,52,165,45,91,209,31,39,87,158,82,34,126, -167,119,76,50,177,40,127,243,12,171,103,153,36,249,232,56,157,157,222,103,117, -61,107,32,172,51,107,239,158,3,168,139,63,47,96,183,159,71,226,188,170,186,75, -218,237,213,125,194,105,247,2,194,58,115,221,221,121,169,222,156,235,92,201, -221,63,151,195,61,127,187,47,77,74,215,229,248,72,78,186,205,153,99,175,149, -56,124,116,10,132,233,207,171,234,161,105,67,61,137,79,85,143,190,31,247,251, -67,231,5,186,237,75,247,198,151,151,60,41,180,93,239,49,151,95,140,215,216, -215,224,141,26,246,93,30,171,167,136,87,94,165,174,63,43,244,88,149,131,202, -145,207,147,174,246,187,207,211,122,204,35,190,221,111,205,170,94,222,215,210, -101,15,161,135,189,199,241,227,234,151,17,244,23,196,92,190,208,18,182,104, -173,163,98,192,54,107,104,157,137,169,220,18,15,204,90,216,198,207,221,203,31, -107,38,174,234,43,153,242,168,53,127,201,57,110,224,44,239,104,30,57,10,167, -179,73,187,155,122,6,238,82,100,243,134,11,38,29,90,215,220,96,78,150,125,151, -84,209,38,169,1,18,87,9,215,141,198,147,93,54,72,84,74,171,193,82,146,188,198, -201,188,190,158,112,95,125,81,195,71,217,67,179,47,244,213,139,154,236,74,82, -49,204,113,159,55,113,240,46,215,59,92,229,238,61,22,25,216,25,247,179,90,195, -107,238,189,142,216,103,51,234,38,136,212,15,128,234,1,252,218,253,255,62,165, -147,100,31,91,29,106,233,179,124,242,3,69,24,252,132,177,7,38,15,135,125,30, -228,95,198,80,135,143,215,191,236,230,218,186,246,181,235,170,247,181,219,209, -225,146,107,101,223,215,184,219,131,208,121,61,211,246,237,67,247,164,3,51, -237,214,222,57,241,252,108,242,27,124,176,215,184,112,158,35,177,227,134,159, -131,85,207,41,221,173,45,214,90,46,129,61,103,93,151,87,213,111,174,47,223, -242,183,35,21,135,62,142,109,117,137,252,221,99,96,106,204,79,197,41,20,215, -187,51,125,198,12,158,249,255,116,48,242,171,51,236,229,15,196,245,193,149, -243,62,39,229,78,235,77,211,231,31,146,36,174,79,86,60,235,60,239,133,244,31, -63,123,174,234,129,36,113,208,242,167,113,182,38,49,170,126,161,137,79,226, -160,166,183,121,242,199,177,53,211,243,87,185,159,61,174,179,2,12,247,10,230, -212,131,125,214,82,172,184,125,239,87,156,248,145,247,154,200,105,195,245,21, -51,31,194,73,187,179,201,122,153,107,197,236,56,213,208,125,133,43,79,41,17, -191,211,251,186,228,128,186,190,214,30,177,204,250,194,242,213,235,187,158, -175,213,115,243,76,60,70,73,167,100,239,103,183,7,239,247,65,249,87,117,103, -172,79,225,164,175,30,214,186,218,211,142,83,143,100,221,32,242,174,220,59, -238,140,131,159,38,187,150,123,13,93,14,215,154,138,119,214,64,247,157,245, -204,190,146,87,93,147,230,25,21,62,58,33,123,233,43,167,215,62,105,13,242,237, -117,203,171,210,73,90,26,197,138,205,239,251,162,214,107,230,180,220,147,78, -51,91,26,216,83,42,98,108,58,168,239,203,174,207,43,252,234,231,171,114,80, -231,140,207,147,142,188,233,60,243,121,90,71,123,5,137,215,61,123,193,247,65, -74,180,63,89,11,95,82,154,253,207,23,73,178,121,213,95,226,172,41,247,48,108, -17,59,54,136,191,63,111,244,61,137,158,231,178,121,255,98,174,191,27,57,253, -180,233,55,245,140,175,41,141,242,171,107,229,244,156,227,6,206,18,142,34,202, -8,65,41,97,53,222,221,212,103,2,247,88,97,84,216,228,117,131,174,152,180,239, -18,95,163,99,119,255,228,103,37,166,55,205,206,70,53,88,74,146,215,56,153,167, -252,116,220,87,94,212,104,56,254,97,135,58,136,215,66,43,55,46,147,188,236,74, -82,49,204,113,159,55,113,240,46,215,59,220,85,141,119,216,242,175,99,159,213, -26,94,115,95,185,209,38,134,89,135,141,211,107,82,61,32,31,188,7,96,215,73, -178,143,173,219,169,7,86,239,225,222,111,60,112,227,51,118,101,143,111,75,230, -141,95,115,192,80,251,253,139,154,14,156,92,251,31,14,198,254,147,223,150,161, -47,76,61,144,236,168,231,13,150,95,172,41,159,196,170,155,227,202,238,172,167, -120,221,231,181,119,28,151,190,207,28,13,252,114,94,21,238,229,67,82,160,82, -191,241,51,48,186,214,218,57,74,222,173,45,205,154,7,216,115,214,117,121,149, -253,49,115,93,125,87,253,192,26,87,15,25,175,186,132,79,30,231,6,115,48,241, -213,159,118,151,108,119,166,207,250,164,111,201,125,47,43,175,202,95,73,147, -89,139,88,230,249,227,241,150,102,198,122,223,91,153,167,119,255,143,90,174, -181,230,83,123,203,121,87,63,229,88,35,226,65,15,14,59,115,221,153,247,100, -249,227,146,62,51,243,87,121,156,185,144,175,105,159,188,129,205,26,49,39,231, -43,167,238,91,157,77,170,133,48,92,207,7,156,203,88,67,190,218,44,59,39,6,106, -184,125,173,185,70,214,247,65,205,170,181,187,222,207,195,140,37,52,203,186, -133,117,94,237,202,119,108,237,168,215,236,137,61,88,241,101,255,193,149,3, -199,201,222,154,159,25,135,247,133,120,111,175,238,3,201,248,183,158,55,135, -245,219,124,241,211,229,90,79,247,29,151,195,154,147,189,183,218,60,70,159,90, -43,229,201,83,127,140,38,5,34,245,154,223,247,161,235,97,233,201,159,215,205, -17,149,239,245,188,208,30,187,240,43,164,27,121,82,104,187,222,99,46,191,24, -175,107,64,248,181,163,121,255,58,87,20,49,54,157,159,219,234,59,215,87,31,73, -239,207,26,181,239,215,122,75,87,185,247,121,90,175,246,189,199,166,248,107, -47,129,77,157,247,158,36,201,216,130,214,58,137,125,148,113,98,131,251,32,50, -236,34,239,123,183,106,1,30,219,138,213,49,138,165,230,23,86,136,233,139,116, -112,229,70,215,156,59,216,88,246,179,27,56,75,56,138,88,6,88,28,9,63,161,221, -77,157,69,94,7,245,193,96,53,238,56,28,67,158,201,230,231,159,7,134,185,245, -176,170,159,140,123,3,170,25,8,90,5,151,148,185,253,77,86,56,108,232,160,90, -155,6,223,221,6,54,181,126,226,146,133,173,66,104,61,205,237,184,111,249,211, -199,202,157,251,42,28,107,239,30,12,203,174,36,110,175,143,251,188,137,131,21, -163,227,42,79,112,74,175,106,140,77,228,142,213,92,223,120,194,62,171,181,176, -242,203,165,165,211,191,200,163,17,63,149,139,212,87,15,72,190,250,145,62,227, -15,18,126,66,119,55,84,94,170,21,227,122,136,103,94,193,164,95,96,25,175,223, -252,87,126,137,143,181,213,83,126,136,245,67,19,94,49,138,19,27,222,207,253, -160,47,255,229,123,49,126,106,111,186,180,98,201,56,114,126,175,81,197,61,107, -15,158,241,236,147,138,179,164,251,184,174,240,19,35,156,246,200,49,74,10,84, -234,175,253,132,25,239,122,175,173,29,54,165,185,218,143,149,51,151,107,109, -88,243,214,62,204,220,178,30,18,114,206,126,216,253,150,105,214,101,205,199, -138,73,123,30,55,215,187,51,125,87,159,156,79,238,122,61,21,91,234,137,47,53, -153,235,187,63,135,138,120,147,2,229,184,235,154,229,124,201,246,55,70,199, -227,31,54,230,183,188,172,239,184,93,253,228,155,70,216,65,15,78,222,22,238, -234,190,82,107,59,182,219,197,15,48,194,133,54,62,133,95,207,129,25,31,107, -114,175,91,125,171,124,101,125,42,127,189,23,221,167,22,107,200,187,205,172, -75,246,108,177,247,163,206,38,239,169,92,123,251,91,137,243,170,214,238,250, -121,102,118,237,186,15,88,215,113,202,155,199,172,30,115,46,255,214,125,74, -204,232,29,183,251,211,219,153,155,172,111,143,71,185,1,139,157,125,158,97, -159,47,201,190,167,122,44,215,121,78,220,62,95,171,159,202,249,15,75,62,224, -153,191,185,23,175,215,218,199,112,160,156,24,155,110,209,67,129,72,253,218, -111,93,15,123,206,75,46,91,26,225,155,158,27,221,111,217,22,207,120,114,190, -62,139,60,41,180,93,31,152,243,170,245,194,249,113,220,26,188,209,192,158,82, -17,99,211,101,44,181,143,92,175,154,237,251,167,242,171,243,199,231,73,135, -239,58,67,215,121,149,215,167,186,218,239,90,79,156,190,65,146,207,122,212, -121,89,190,250,26,126,157,72,88,249,96,14,204,181,214,118,140,242,67,156,232, -176,197,203,31,246,246,185,246,156,200,46,68,239,243,165,63,63,161,118,159, -116,3,97,20,10,105,202,149,52,28,76,34,24,21,172,230,138,229,104,254,191,56, -16,55,235,94,32,88,54,211,65,8,123,61,65,235,186,96,88,187,63,64,245,27,86, -146,10,225,135,132,146,89,197,240,66,246,70,76,170,111,156,19,151,44,251,106, -104,49,177,172,49,124,251,63,38,146,241,247,152,37,255,255,127,81,219,231,73, -7,249,172,113,217,228,31,93,73,82,142,60,247,240,211,90,195,107,238,203,214, -234,91,63,84,86,255,123,14,87,63,246,189,222,55,189,122,156,177,62,19,131,191, -138,123,206,153,121,232,216,244,115,254,11,70,121,149,251,135,159,189,215,229, -15,107,56,105,205,142,209,141,241,144,196,190,151,6,198,143,158,27,213,51,247, -117,210,250,208,93,113,207,90,236,207,130,138,195,169,234,235,113,221,225,29, -35,156,246,200,49,74,58,228,101,171,252,132,193,57,169,167,29,1,107,237,87,45, -195,166,52,90,203,177,176,239,171,46,207,30,211,58,107,31,100,238,84,91,113, -198,61,207,130,93,93,254,186,193,248,254,222,217,39,7,79,95,212,96,240,107, -158,42,175,59,191,180,222,90,211,230,79,82,160,28,119,221,91,80,237,195,53, -159,175,94,48,102,172,184,82,178,238,127,104,62,216,202,55,141,88,143,188,18, -171,188,45,220,213,121,9,109,95,74,204,110,206,145,127,161,141,79,195,159,87, -217,23,94,203,251,249,94,187,154,67,44,228,208,123,192,125,106,177,134,124, -181,185,163,222,35,85,67,199,147,243,181,47,106,84,107,119,61,180,203,47,164, -216,29,171,250,250,186,194,140,243,53,233,148,164,253,221,111,106,103,143,99, -123,141,67,235,102,126,161,253,89,168,126,105,251,45,252,208,103,218,243,62, -189,58,91,167,127,87,251,15,223,244,92,212,229,224,123,253,36,79,187,235,121, -161,250,226,155,98,88,215,34,46,214,154,103,34,62,96,179,203,143,217,78,140, -77,183,232,161,64,164,190,30,236,213,99,49,35,62,57,130,136,7,127,61,78,217, -210,168,124,246,28,75,206,188,159,119,189,27,243,245,89,228,73,161,237,250, -192,156,87,229,151,164,11,246,52,179,165,129,61,165,34,198,166,203,158,162, -222,107,15,75,87,190,248,62,152,243,220,110,205,211,189,199,115,39,93,245,221, -157,206,215,211,30,201,188,59,225,131,203,251,125,82,125,137,205,58,175,197, -185,143,246,123,72,190,248,153,177,126,17,35,219,91,126,147,107,136,159,174, -45,182,26,184,129,48,10,133,52,229,87,78,204,67,11,86,18,87,246,162,195,59, -155,211,222,243,117,251,200,89,31,141,166,61,247,105,239,119,21,117,106,174, -226,156,190,49,238,178,188,218,219,254,186,221,146,119,201,158,119,246,92,159, -60,113,87,53,129,61,159,176,111,80,199,193,19,187,183,171,195,117,74,119,190, -230,213,78,231,107,205,117,158,198,55,113,115,84,82,215,116,221,142,103,30, -118,254,195,251,24,216,224,28,74,28,78,90,57,53,87,118,60,142,129,73,122,201, -102,204,79,124,19,247,209,228,167,49,31,28,254,232,83,210,29,126,250,10,27,46, -233,24,57,78,178,28,77,126,99,19,110,243,239,240,83,55,236,124,38,39,111,109, -193,79,48,59,158,243,224,49,183,197,12,175,115,250,104,199,250,148,100,179,6, -116,140,58,110,142,58,115,206,112,179,213,13,215,53,102,63,236,150,166,251,95, -123,171,115,175,207,106,227,165,137,79,73,174,236,193,179,230,119,118,225,105, -123,142,222,177,207,31,249,110,220,235,121,233,83,200,191,104,179,233,156,221, -94,74,124,212,237,136,159,175,251,169,250,66,13,3,207,154,93,173,173,79,73, -158,173,187,197,133,31,95,181,247,212,63,221,75,214,63,51,207,249,51,143,87, -114,120,250,54,125,210,115,1,247,246,254,82,120,109,51,114,144,20,218,27,61, -20,136,212,251,179,214,33,89,244,194,160,211,75,72,201,133,45,20,15,244,215, -191,125,157,113,230,124,125,22,121,82,104,187,62,48,139,68,210,69,115,154,217, -210,192,158,82,17,99,211,101,44,251,23,82,189,236,18,191,94,118,61,214,122, -233,208,139,154,215,79,243,234,57,208,109,106,189,202,187,231,85,243,202,166, -175,55,251,235,138,103,31,61,157,55,235,88,243,180,71,118,152,99,116,71,129, -118,124,217,36,126,255,34,37,137,181,218,60,55,112,154,93,12,159,210,78,3,243, -89,236,169,41,10,196,27,12,20,168,7,56,40,144,23,184,166,83,226,72,142,18,36, -166,73,214,63,75,18,159,86,58,33,55,76,224,206,143,198,181,177,215,77,47,62, -45,117,10,212,192,157,31,151,133,252,9,129,179,57,151,243,2,245,0,7,5,210,177, -190,65,15,137,211,130,61,70,78,167,116,255,162,102,216,146,172,186,164,208,94, -232,135,110,59,31,10,212,231,113,167,244,154,6,254,153,93,29,140,245,77,222, -107,102,124,158,219,185,192,36,13,236,83,155,151,184,164,64,127,103,124,32,58, -230,9,238,148,238,105,96,223,206,65,103,184,134,231,167,201,94,242,164,208, -222,232,157,2,249,6,27,136,55,152,29,197,172,62,239,237,92,244,134,125,139, -135,98,198,131,57,129,122,130,115,4,60,111,210,23,243,160,64,190,193,61,193, -64,3,247,221,176,80,160,63,129,159,20,179,31,204,125,138,131,158,98,191,136, -91,176,161,237,250,5,227,132,206,112,151,216,64,253,118,246,126,255,184,252, -83,173,139,125,19,210,103,242,151,46,137,177,233,32,61,240,250,67,187,120,143, -63,229,73,161,117,125,61,83,21,123,28,249,172,117,234,182,54,252,133,161,228, -129,133,78,73,98,254,184,197,76,155,167,46,164,27,121,82,104,187,126,193,36, -33,55,76,240,169,218,210,192,158,82,17,99,211,249,203,195,250,75,4,213,140, -216,175,190,20,70,15,245,223,190,150,92,95,158,121,93,106,61,106,35,219,41, -145,15,204,209,243,184,175,119,92,61,161,49,231,155,230,181,145,36,11,230,142, -2,61,240,109,116,197,54,207,167,156,102,23,195,167,180,211,192,124,22,123,106, -138,2,241,6,3,5,234,1,14,10,228,5,174,233,106,235,209,52,73,106,158,245,64, -129,79,43,157,144,27,38,112,231,71,99,29,26,144,26,250,226,176,154,20,168,129, -59,63,46,11,249,19,2,103,115,46,231,5,234,1,14,10,164,99,117,176,253,237,69, -237,134,6,254,153,221,58,252,238,110,62,33,155,244,4,147,52,176,79,109,94,226, -146,2,253,157,241,129,232,152,39,184,83,186,167,129,125,59,7,157,225,26,158, -159,38,123,201,147,66,123,163,119,10,228,27,108,32,222,96,118,20,179,250,188, -183,115,209,27,246,45,30,138,25,15,230,4,234,1,110,82,204,122,56,47,144,111, -112,79,48,208,192,125,55,44,20,232,79,224,39,197,236,7,115,159,226,160,167, -216,47,226,22,108,104,187,126,193,56,161,51,220,37,54,80,191,157,189,223,63, -78,95,254,253,16,207,65,46,63,231,135,244,153,252,165,75,98,108,186,47,175, -149,20,90,215,247,103,182,164,250,51,244,92,239,224,164,99,52,109,60,121,81, -19,247,103,182,19,113,237,119,72,55,242,164,208,118,253,130,73,66,110,152,224, -83,181,165,129,61,165,34,198,166,11,125,27,121,156,150,195,96,159,235,175,173, -240,221,188,94,243,174,123,186,222,113,245,132,198,156,239,58,47,16,111,48,78, -129,254,4,62,41,102,5,254,227,227,255,0,188,211,66,64,172,137,134,157,0,0,0,0, -73, 69, 78, 68, 174, 66, 96, 130 -}; - +default_font_bitmap[] = +{ 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,3,106,0,0,0,14,8,6,0,0,0,94, +166,239,218,0,0,25,42,73,68,65,84,120,156,237,157,95,136,94,215,113,192,127, +155,7,233,101,45,138,172,128,220,10,245,37,180,176,130,74,235,7,199,47,66,13, +98,101,43,216,237,131,45,131,170,66,188,11,94,25,194,174,11,254,220,52,168, +177,22,215,33,117,245,229,65,43,10,90,25,190,181,193,174,65,78,30,26,183,36, +146,80,19,71,144,38,134,106,165,130,4,133,190,212,8,108,176,36,90,69,133,72, +47,183,15,115,230,158,255,247,158,251,253,81,234,54,3,159,180,223,189,115,207, +153,51,103,102,206,156,153,57,247,155,170,168,42,128,41,166,166,112,32,119,61, +133,163,80,138,155,195,43,193,233,130,231,226,166,240,74,198,24,246,55,12,109, +37,52,140,210,110,201,243,227,236,247,65,226,150,140,177,109,30,39,197,255, +174,125,77,186,221,113,225,12,75,219,184,219,237,130,95,170,11,195,142,191, +228,153,38,252,182,49,140,91,119,186,242,56,245,92,233,179,195,244,53,41,217, +26,230,185,113,234,205,164,236,229,48,248,185,231,199,193,143,73,181,217,69, +79,198,209,222,184,233,251,188,227,141,114,61,215,231,184,250,42,189,239,226, +116,181,143,163,216,130,113,140,167,180,239,174,184,195,240,113,88,223,249,65, +223,203,193,36,215,142,7,101,187,245,185,47,56,23,104,251,59,104,32,190,86,85, +131,170,170,250,149,47,75,17,110,242,217,22,156,170,170,234,246,219,218,74, +221,171,14,85,218,70,191,18,24,116,109,195,161,165,108,156,85,117,183,170,170, +121,247,190,161,97,190,170,170,207,170,170,154,11,240,231,204,245,121,183,237, +68,187,125,151,254,146,113,52,210,89,56,199,93,248,52,14,220,54,57,49,188,44, +199,111,147,177,17,249,80,162,55,147,106,119,88,28,229,161,251,73,210,118,60, +198,171,170,138,234,80,122,12,73,220,20,126,174,221,46,116,28,79,204,123,11, +94,87,58,83,109,122,207,55,209,112,60,230,81,19,253,77,60,105,195,45,229,89, +125,175,35,31,219,158,137,198,150,250,76,74,182,186,202,110,64,139,179,70,100, +233,24,121,110,58,224,150,226,183,241,36,146,253,194,49,116,153,251,226,54, +155,228,35,97,15,91,229,51,55,103,169,246,74,230,55,177,190,100,229,177,160, +189,198,49,151,234,125,136,87,218,111,7,250,194,177,55,94,207,216,181,228,24, +18,246,161,83,95,67,172,217,222,28,166,230,51,164,73,252,174,179,149,227,143, +101,245,49,103,47,114,235,90,219,28,167,120,216,193,31,42,133,72,22,218,100, +180,73,183,155,108,102,211,115,129,158,13,213,95,203,250,146,227,85,163,125, +42,179,25,189,202,248,252,157,215,165,156,172,119,161,197,189,236,49,35,113, +61,236,44,106,186,97,3,19,146,80,208,158,127,95,174,74,251,45,109,37,219,92, +172,84,33,101,35,116,178,125,140,35,143,211,108,212,60,214,203,95,245,70,45, +192,207,110,212,2,188,126,85,85,131,212,212,150,64,201,124,116,193,155,20,110, +146,247,41,195,91,42,87,251,130,150,246,141,151,15,37,122,51,169,118,135,197, +113,228,241,94,37,198,168,54,18,9,217,188,83,249,208,171,142,7,120,62,143,251, +173,248,210,103,8,253,236,28,165,241,123,145,156,196,125,223,171,210,186,152, +162,179,31,209,105,251,62,91,85,213,108,85,121,252,75,235,163,171,207,161,9, +110,182,3,179,166,159,94,229,211,24,142,193,239,67,105,202,207,93,138,118,28, +158,166,248,168,247,6,193,157,218,185,201,204,191,142,193,5,25,79,60,167,41, +220,65,139,108,13,2,124,43,51,105,123,233,194,61,229,151,71,203,241,122,92, +174,156,251,50,155,166,213,210,236,247,107,231,183,77,94,108,187,253,202,231, +115,14,127,80,197,115,210,55,180,207,57,215,98,25,147,121,176,60,8,109,64,59, +77,253,74,101,169,89,47,171,154,158,120,14,221,57,145,113,132,114,177,152,24, +87,200,153,197,164,172,165,219,59,238,141,179,170,199,176,88,37,109,103,196, +151,197,100,123,161,28,14,162,126,211,99,246,249,103,231,52,5,189,68,191,46, +191,101,46,67,125,137,241,132,135,225,56,200,216,141,220,117,215,62,197,246, +194,213,159,212,156,117,235,43,244,3,187,251,146,161,173,75,233,82,108,203,74, +124,177,197,122,254,251,17,79,155,109,251,59,85,85,157,170,82,50,144,25,83, +102,236,141,78,70,66,22,102,13,189,115,13,182,53,103,47,234,181,35,193,3,149, +177,59,137,231,170,74,229,211,229,145,237,111,16,241,33,244,71,210,62,156,171, +199,158,45,107,145,217,202,27,75,184,214,134,207,29,175,101,70,33,94,151,252, +111,175,27,90,230,171,170,58,157,108,179,121,29,75,174,77,95,104,154,232,255, +83,240,8,0,59,128,115,192,21,110,63,128,62,143,50,205,81,214,19,119,214,129, +47,114,148,11,15,128,138,223,128,194,239,3,48,15,124,6,204,153,239,255,111,65, +141,26,176,11,248,37,240,24,48,219,240,200,61,96,1,152,50,255,191,202,10,243, +30,134,240,116,22,56,11,236,4,30,53,248,143,2,51,172,224,101,145,13,188,239, +224,77,1,91,205,243,179,153,57,242,241,143,210,79,98,137,158,105,155,155,61, +93,220,87,255,53,8,232,148,178,132,21,122,153,54,127,29,208,3,22,129,167,88, +73,218,147,18,184,7,60,9,236,7,111,238,103,129,61,200,252,231,224,151,192,17, +67,71,51,88,29,251,57,240,49,150,167,7,128,87,129,62,127,152,125,250,21,172, +172,76,179,18,204,171,180,61,7,220,49,87,166,28,252,157,200,92,186,115,235, +130,43,11,167,128,131,132,242,37,178,249,125,224,53,167,221,223,101,197,209, +137,163,108,0,207,97,117,224,166,25,219,20,71,89,200,142,172,13,86,217,64,248, +181,19,95,7,103,205,181,235,193,19,215,129,233,0,119,43,240,16,176,219,185, +182,11,248,128,85,103,173,89,165,15,188,11,236,117,240,246,2,167,204,61,151, +166,143,16,217,83,189,85,122,62,50,247,5,68,7,167,240,231,228,125,224,53,86, +156,190,133,223,42,207,7,208,185,78,201,197,26,61,160,2,182,35,242,155,131,35, +134,78,43,59,208,143,108,135,204,239,94,224,113,131,39,207,62,18,55,232,232, +199,94,96,19,64,132,39,114,49,141,149,91,149,9,31,100,92,125,100,126,20,239, +57,35,75,22,142,214,182,85,63,175,32,60,188,24,244,59,143,232,146,226,139,60, +175,4,182,59,198,59,3,28,102,87,60,222,49,194,211,192,51,166,191,239,1,135,39, +218,91,55,152,3,190,6,92,106,197,20,125,121,27,209,31,87,30,44,60,146,249,219, +194,57,196,62,164,224,191,128,251,185,238,189,109,128,179,1,25,26,196,150,126, +19,184,13,124,141,21,252,138,44,187,110,239,7,254,220,211,89,177,9,31,35,122, +230,219,87,59,238,117,96,139,231,211,202,115,7,80,123,237,242,200,218,242,105, +224,77,207,150,172,178,14,28,3,102,162,254,44,157,7,13,142,111,207,49,115,21, +175,1,71,176,235,145,29,139,189,158,246,33,196,15,216,9,124,11,248,46,240,47, +145,207,99,251,154,5,126,27,184,1,60,12,252,59,32,150,206,5,177,7,243,136,77, +187,141,175,243,79,1,39,9,236,97,209,70,45,41,52,233,197,48,249,76,132,187,47, +110,51,26,76,128,211,149,190,168,223,173,193,67,193,247,108,27,33,93,93,198, +57,34,148,210,80,195,98,65,58,53,69,103,230,185,84,191,163,182,89,42,15,217, +113,59,237,2,112,180,185,29,175,175,112,129,10,191,151,242,161,4,175,96,46, +198,217,110,103,28,11,179,136,35,244,215,192,87,16,167,189,4,110,144,114,158, +132,167,106,4,191,3,181,1,222,0,22,10,131,19,11,192,93,224,72,155,83,49,53,53, +37,238,71,11,78,132,103,157,167,233,128,78,128,94,195,230,239,65,131,58,91,47, +1,23,248,201,72,109,189,77,188,25,215,249,254,65,195,115,63,2,254,202,208,145, +218,104,91,144,249,18,167,223,223,216,93,64,198,176,24,45,116,49,232,6,193, +183,210,210,246,19,136,3,184,16,224,191,9,60,11,244,10,2,48,215,16,89,223,22, +92,223,129,240,65,29,227,13,96,201,115,168,207,24,153,75,65,139,28,54,194,237, +154,174,39,241,117,112,143,161,245,106,240,196,173,0,87,157,158,247,17,125,86, +216,10,220,246,2,147,215,0,120,15,229,151,124,158,5,206,153,123,46,222,69,100, +254,117,243,183,223,252,127,209,195,141,249,114,4,209,225,190,39,179,50,135, +51,242,4,23,176,115,189,51,218,104,216,205,159,191,81,113,225,223,192,208,175, +250,170,27,222,173,145,243,44,182,103,193,224,88,188,0,28,127,163,135,108,210, +222,207,246,47,206,246,173,134,251,186,65,220,137,240,60,164,221,130,207,67, +13,160,252,144,149,96,67,39,240,3,224,138,249,59,39,207,187,16,93,209,224,206, +57,96,154,229,22,29,46,131,244,184,143,178,12,181,141,143,195,225,102,109,202, +173,125,197,190,206,112,176,27,248,49,150,111,121,176,250,184,157,230,224,37, +192,167,137,107,55,104,216,136,25,184,155,153,91,133,57,36,96,57,250,124,189, +69,15,248,33,176,4,92,225,173,32,160,32,186,178,31,161,121,221,211,89,225,197, +57,68,134,155,3,220,174,13,108,74,134,216,196,201,125,224,166,135,43,127,223, +66,116,47,23,172,117,225,83,196,214,108,32,118,96,144,120,102,26,106,139,165, +243,53,143,204,239,187,144,181,235,219,77,219,191,50,223,255,54,147,124,25,0, +151,77,155,231,129,19,230,115,150,181,40,128,50,135,108,198,142,153,190,207, +34,1,169,59,72,32,225,25,196,30,214,235,103,251,70,205,143,60,87,230,51,104, +136,138,110,118,58,174,128,94,132,235,239,40,5,111,45,136,214,10,78,15,219,78, +101,158,41,161,47,142,198,47,211,51,56,71,128,203,230,123,83,27,167,129,207, +88,203,58,21,238,56,239,1,243,145,112,172,113,55,243,252,188,105,187,77,1,7, +192,189,6,26,194,254,52,91,244,58,46,255,69,120,245,123,42,114,57,231,60,167, +115,18,11,88,154,79,50,246,178,54,239,0,115,25,121,8,231,186,98,45,225,44,175, +49,64,230,230,142,161,113,16,180,227,203,169,11,86,6,182,1,231,89,14,238,175, +57,217,54,129,89,211,71,47,192,235,163,50,230,227,245,29,156,176,173,94,61, +126,253,190,22,245,223,15,112,6,132,243,16,247,45,120,126,223,154,117,112,249, +121,39,35,111,251,17,131,120,17,248,0,141,178,183,7,29,210,139,222,178,19,113, +55,155,31,221,40,149,110,170,12,92,7,118,154,246,178,208,37,152,226,225,173, +196,116,118,133,145,163,156,237,240,91,136,65,127,13,117,182,62,28,169,189, +255,32,222,140,239,69,230,176,205,169,248,71,74,34,228,226,4,62,141,89,20,235, +121,23,184,130,56,253,15,23,208,186,61,186,178,236,103,151,130,182,47,24,250, +182,103,162,219,46,236,69,100,253,66,224,44,223,0,254,8,187,25,17,24,101,3,86, +10,159,0,150,63,110,120,34,206,136,225,225,42,47,213,233,249,87,108,86,206, +155,139,26,100,204,23,16,185,250,134,249,188,70,200,15,249,91,55,82,143,153, +246,30,67,117,38,216,104,4,27,156,69,116,99,226,202,172,204,225,166,128,166, +91,164,54,26,37,124,255,48,146,3,149,145,216,77,244,233,181,178,244,137,115, +213,218,189,57,132,47,255,220,208,251,54,68,94,116,205,201,85,1,236,70,230, +230,5,154,252,34,60,30,166,157,102,208,140,195,125,172,156,238,2,222,78,200, +72,10,190,130,200,202,100,192,242,56,157,9,94,75,172,149,114,125,30,89,163, +202,124,157,14,224,240,116,134,48,19,156,3,171,143,155,8,237,65,9,104,80,32, +206,154,110,0,127,10,252,37,240,226,136,129,55,170,184,172,91,193,231,239,243, +204,3,127,131,100,108,102,120,62,89,29,177,29,213,27,87,103,133,23,55,17,153, +219,81,96,95,199,11,113,127,106,147,78,32,186,244,42,97,16,36,126,230,46,214, +174,234,218,162,107,223,6,100,51,113,215,144,61,195,76,125,37,12,176,8,44,152, +207,26,146,173,95,71,178,137,113,230,92,236,193,247,16,191,124,9,155,233,59, +131,240,248,130,25,95,221,103,105,233,99,15,81,56,45,97,121,186,33,42,186,136, +236,220,243,229,81,242,253,52,54,117,25,151,47,197,105,251,3,164,202,115,108, +100,220,77,33,126,12,44,121,203,157,164,97,23,144,29,236,163,94,137,135,31,93, +215,18,168,187,192,150,204,24,195,113,74,25,201,120,75,10,148,158,199,59,150, +59,109,65,210,175,90,58,113,194,92,215,249,200,69,180,55,3,191,135,148,133,28, +192,41,147,170,193,110,132,180,189,41,100,14,79,102,74,218,220,54,85,16,95,40, +40,209,88,160,217,113,252,19,36,234,240,28,110,100,93,34,16,238,28,250,81,35, +43,3,82,174,180,58,116,169,210,57,124,135,87,163,222,231,28,156,43,230,187,46, +138,95,50,255,107,100,122,134,112,17,91,165,135,40,240,19,200,102,126,19,240, +157,32,234,22,246,61,143,56,99,182,111,89,36,182,96,245,230,38,240,146,87,206, +96,13,210,12,162,47,27,134,158,103,201,71,205,54,99,157,146,19,192,71,188,213, +188,232,101,179,15,237,144,118,222,4,14,33,209,43,9,20,228,23,247,121,218,55, +170,46,216,77,126,42,72,16,247,173,159,151,91,218,29,22,142,97,13,250,40,188, +84,184,133,100,213,180,228,77,101,39,204,214,228,224,18,165,37,144,105,216,64, +236,106,188,9,243,97,14,177,175,97,185,95,18,28,190,220,38,145,33,49,224,202, +194,117,212,54,184,14,201,74,189,121,57,129,27,48,25,115,165,68,18,252,77,145, +110,180,52,219,125,41,218,118,216,82,73,93,204,119,33,145,226,95,152,239,219, +112,75,253,221,205,136,29,243,69,36,216,242,1,154,145,250,48,137,119,21,209, +197,125,136,93,190,24,225,90,152,67,108,185,108,252,98,216,134,216,183,177,65, +80,117,179,100,254,127,215,27,179,5,13,8,94,70,120,157,42,175,157,69,54,85, +111,0,63,203,118,236,219,89,245,25,150,18,126,192,118,196,110,168,191,240,10, +226,23,229,236,145,102,211,164,68,47,31,156,81,71,245,101,210,89,157,79,17, +125,85,251,184,155,102,159,102,116,176,252,251,38,240,113,84,190,220,21,130, +234,144,17,50,110,214,214,93,107,67,37,212,199,25,232,24,152,211,236,104,24, +108,56,19,4,46,83,115,155,27,99,226,250,212,212,84,111,42,13,190,141,62,106, +142,219,80,111,32,253,121,217,90,255,27,203,145,229,197,125,202,130,108,237, +32,253,61,140,150,21,187,186,106,255,126,2,216,150,176,232,179,72,192,232,166, +249,108,198,250,89,82,65,16,195,57,132,131,21,98,95,255,211,92,223,78,83,240, +68,124,239,23,17,61,90,34,149,148,176,190,146,150,59,170,207,34,101,175,241, +198,110,59,178,6,105,21,132,250,110,46,239,111,225,248,192,237,27,53,187,137, +185,133,100,70,206,27,66,114,19,118,10,155,106,95,71,28,141,16,119,23,178,185, +177,14,72,28,61,11,211,246,26,49,245,193,70,198,95,198,119,156,166,189,104, +124,56,117,238,247,116,116,253,28,246,44,68,10,220,113,94,143,250,27,13,246, +27,122,164,36,171,91,212,229,14,54,186,112,21,17,22,53,77,233,114,53,129,123, +200,66,178,129,27,157,118,97,165,142,208,186,53,222,97,105,76,174,77,176,2, +217,86,162,177,142,73,71,103,64,203,102,66,184,138,108,48,63,68,157,44,119, +195,209,36,3,93,64,34,151,54,251,36,255,191,29,156,3,217,64,20,111,151,161, +101,19,18,209,154,193,42,168,239,32,11,61,239,33,6,229,52,194,91,127,254,109, +237,188,246,29,71,220,173,46,185,14,135,31,153,181,53,226,207,98,13,132,210, +179,59,19,116,112,207,168,61,10,60,198,243,19,43,17,124,24,113,34,83,53,254, +238,25,181,205,153,82,4,240,207,37,109,41,40,187,212,177,53,5,70,194,243,116, +83,72,237,250,36,224,91,136,156,12,96,108,25,188,107,200,156,207,163,114,155, +214,165,20,172,35,118,239,85,224,119,134,232,91,207,244,164,156,74,176,142, +231,121,228,108,83,145,108,57,124,201,45,210,96,101,225,187,228,74,56,69,63, +180,220,238,140,161,163,169,122,100,124,16,111,138,246,96,179,221,87,162,77, +135,45,205,218,132,140,101,187,249,126,1,217,48,236,70,116,232,62,97,246,203, +110,60,143,152,251,211,232,230,59,189,41,85,155,115,12,39,2,237,129,125,238, +48,205,193,133,155,248,1,173,209,192,207,128,233,122,253,28,137,140,159,1,247, +44,221,12,48,240,162,239,182,116,251,46,225,38,46,116,24,29,167,219,192,37, +224,233,76,105,225,187,88,187,146,94,51,237,88,236,188,167,96,185,46,85,61, +128,27,16,95,142,2,226,125,68,95,53,0,181,135,230,50,206,209,65,120,169,252, +235,69,190,139,158,241,60,74,106,35,177,37,178,229,97,117,72,88,221,210,6,150, +167,178,78,198,89,244,52,248,250,56,205,56,202,15,75,97,173,174,128,58,143, +108,240,207,211,28,60,108,135,112,131,24,250,219,54,211,29,151,179,90,94,220, +166,61,200,86,6,34,171,223,64,74,214,83,193,222,117,196,111,121,193,243,171, +69,63,53,11,245,69,243,121,17,169,60,121,29,13,90,135,246,210,15,170,188,9, +252,1,240,83,68,171,31,69,116,104,79,148,68,248,73,77,203,49,68,119,78,71,231, +215,215,234,234,64,45,119,60,143,172,175,151,73,7,53,213,146,216,210,79,1,155, +209,116,55,177,148,108,212,86,234,23,3,28,196,30,194,45,85,118,93,152,27,97, +76,181,201,238,129,94,57,172,219,92,255,251,191,21,54,35,155,141,39,73,103,19, +62,207,176,3,113,66,38,3,171,181,50,190,4,252,3,169,242,205,113,128,168,146, +44,202,240,60,26,21,185,22,225,104,141,251,151,205,149,95,24,220,221,192,237, +194,82,21,31,174,213,255,62,141,44,214,113,196,221,46,78,106,208,226,104,185, +61,239,243,16,190,131,252,16,240,88,65,208,33,125,198,35,136,244,15,115,230, +211,128,100,250,90,202,84,134,62,163,22,103,36,58,103,172,198,144,225,130,230, +3,231,191,194,158,189,146,57,28,61,187,163,193,179,47,147,42,139,107,135,119, +17,39,243,171,201,187,54,136,81,31,194,119,230,116,15,98,215,114,103,122,92, +27,222,79,148,124,37,101,203,128,13,58,164,51,41,33,253,146,213,137,15,170,43, +244,104,175,30,105,131,27,230,255,29,74,111,1,184,252,179,217,238,208,185,252, +164,110,255,9,108,105,157,58,246,234,80,217,172,189,171,251,246,232,193,34, +178,105,248,8,221,188,6,153,116,71,198,175,33,114,122,53,184,238,182,169,27, +136,247,146,56,22,54,225,7,111,155,130,50,205,96,95,94,243,125,196,238,47,212, +125,135,217,138,184,74,64,108,184,155,217,90,174,179,185,154,129,189,140,56, +203,39,162,82,249,240,188,116,30,114,129,137,20,125,154,45,104,42,201,118,207, +248,65,174,164,88,244,167,135,213,169,139,14,126,59,12,115,110,44,212,189,112, +14,114,153,166,28,132,89,203,174,103,135,109,64,210,190,68,164,91,249,184,6, +62,98,123,145,206,2,141,14,71,235,57,59,128,248,218,250,178,162,200,233,47,46, +125,108,131,213,134,140,153,29,115,58,227,54,12,172,58,27,177,244,25,64,187, +145,115,125,128,116,233,244,58,146,193,63,134,6,30,19,231,63,29,56,140,125, +249,144,4,178,108,249,191,239,115,251,54,227,83,220,151,156,248,99,121,28,91, +238,248,10,18,16,148,117,44,6,181,207,106,191,247,96,171,72,182,98,109,64,93, +81,82,82,250,184,13,89,92,213,112,236,71,12,87,14,220,55,68,237,55,207,134, +165,53,110,84,23,96,158,53,190,30,224,132,105,251,121,236,75,10,44,172,212, +139,183,123,72,94,14,72,151,102,162,86,235,146,28,183,141,39,152,116,153,64, +26,238,33,19,253,26,178,248,196,103,186,126,93,16,103,146,32,63,199,32,155, +206,240,205,98,169,243,22,101,115,221,6,203,124,221,60,171,233,234,92,233,156, +64,156,82,191,97,104,118,15,206,199,178,110,235,215,127,140,40,226,93,66,227, +224,59,82,127,134,31,237,254,11,224,110,20,251,23,122,14,35,102,229,24,169,55, +211,73,31,235,200,60,124,149,84,196,221,47,229,181,153,73,119,193,181,231,125, +220,172,147,70,103,195,23,26,164,32,125,22,68,204,231,57,68,191,7,1,254,160, +160,252,16,243,156,208,222,178,141,24,58,200,147,160,243,1,156,57,19,176,244, +238,2,238,183,108,70,245,37,28,75,100,206,181,184,80,200,143,75,136,158,124, +64,115,246,48,5,27,72,150,252,143,17,57,241,225,90,221,254,18,254,34,165,7, +168,207,180,149,114,103,203,130,154,101,235,5,52,147,211,28,49,87,250,197,25, +119,249,185,86,159,97,29,15,88,123,89,191,145,12,187,65,138,222,60,23,156,207, +92,68,198,41,163,14,121,97,207,153,125,128,117,28,84,142,174,33,186,185,137, +148,93,94,169,223,154,118,6,153,127,205,240,12,255,70,192,149,184,228,49,115, +54,212,61,243,166,229,157,178,49,25,38,176,106,95,94,163,99,65,251,142,244,96, +205,123,233,136,62,231,175,71,113,57,163,6,166,95,137,74,229,197,150,185,231, +148,15,2,31,120,37,230,2,87,177,47,110,129,220,154,41,217,168,109,206,51,185, +205,174,202,135,218,210,116,0,196,119,50,149,190,43,17,159,115,27,178,53,115, +174,58,180,217,171,230,156,213,106,86,143,123,104,105,113,230,37,99,137,190, +210,103,212,218,50,65,109,32,60,45,127,137,136,3,65,166,84,94,42,226,242,84, +218,94,32,247,198,192,97,33,55,198,196,245,226,210,199,54,176,171,120,156,49, +179,1,132,214,164,75,199,254,108,121,95,250,13,154,18,196,116,61,12,187,161, +116,253,74,181,33,160,94,84,24,148,177,114,168,124,209,57,211,55,231,238,65, +236,165,31,44,146,44,166,203,75,127,147,6,106,161,221,114,199,47,225,156,209, +78,4,6,206,33,129,131,29,200,102,117,128,248,250,203,136,157,184,76,80,54,92, +146,81,187,128,136,136,70,221,219,210,231,127,103,58,173,128,111,19,158,141, +145,54,117,7,172,41,249,131,132,181,224,113,218,254,96,178,95,27,53,186,139, +61,59,50,67,168,60,97,196,195,253,46,140,62,101,190,105,27,211,52,151,62,78, +26,250,104,249,205,168,117,222,227,2,203,167,105,108,153,233,171,192,51,137, +197,9,100,211,249,223,14,238,52,112,42,114,190,75,231,186,29,126,102,158,213, +23,137,188,225,209,229,111,176,226,151,137,148,202,186,95,191,254,16,169,72, +157,239,72,253,19,118,145,184,110,158,185,22,201,228,178,179,65,177,209,207, +37,15,199,246,113,29,113,250,226,131,253,146,1,88,162,249,44,151,46,238,151, +192,91,148,52,227,226,26,66,5,247,140,154,26,19,127,65,176,227,222,135,47,39, +63,7,46,101,228,36,60,247,117,155,230,242,37,31,127,152,146,16,75,167,6,99, +220,51,103,242,6,188,73,129,45,109,145,23,46,180,231,180,180,244,226,68,198, +22,184,243,82,177,198,217,150,246,174,0,127,79,225,25,176,12,61,233,210,100, +27,72,120,10,123,38,192,150,51,118,9,160,165,219,78,201,214,101,100,227,40, +122,216,254,150,48,149,113,255,149,230,43,245,89,103,151,230,55,134,254,73, +132,244,186,50,64,202,58,155,218,212,141,211,143,200,57,151,177,29,112,231,82, +159,137,29,15,129,37,68,247,85,198,117,243,122,196,123,201,86,55,56,140,159, +157,79,159,13,181,229,165,186,94,139,29,73,101,80,75,96,185,118,32,221,163,15, +233,151,97,173,212,175,200,207,175,71,113,57,163,133,180,158,126,136,149,193, +187,192,66,52,142,149,58,216,242,109,154,252,34,89,15,52,72,152,207,46,174,56, +190,129,125,241,217,75,145,76,249,101,131,246,76,94,72,159,172,11,239,20,87, +159,44,155,118,83,178,34,58,154,122,225,149,246,53,107,250,26,251,75,67,146, +32,110,187,123,14,123,24,80,125,218,227,109,40,108,181,89,91,112,232,243,2, +215,81,142,197,175,224,183,1,132,113,102,15,75,32,237,171,135,246,255,35,236, +79,115,228,124,2,205,210,233,209,160,117,36,73,112,25,61,106,18,6,49,196,191, +153,65,236,218,203,230,154,31,176,177,235,146,190,81,246,69,154,2,160,162,247, +186,65,3,61,154,1,111,97,131,68,254,58,233,254,104,155,115,205,94,15,127,36, +88,63,241,143,38,186,63,80,233,127,242,63,0,153,111,175,188,223,252,43,208, +155,198,225,210,148,166,59,253,131,133,77,227,12,105,91,140,174,53,183,61,124, +187,205,207,151,180,87,130,151,155,147,212,28,7,63,24,217,89,30,210,63,110, +158,166,181,233,158,219,87,216,207,184,101,142,42,53,215,229,60,43,209,31,75, +99,219,143,80,54,143,35,192,169,117,191,171,140,36,126,52,124,44,99,54,52,5, +60,77,227,183,232,66,210,174,25,123,151,165,179,64,191,26,249,229,226,183,241, +178,3,79,138,230,165,116,238,70,29,115,250,153,246,126,90,230,52,51,95,109, +109,235,15,160,198,63,10,30,200,66,150,254,156,254,251,243,147,151,155,144, +222,46,246,178,77,30,187,241,162,249,249,114,249,202,210,20,205,79,135,54,135, +30,99,215,53,175,212,190,39,230,55,57,238,82,61,45,149,131,130,117,48,169,7, +165,237,149,210,39,107,73,191,58,153,121,62,103,79,82,243,209,228,103,73,95, +115,149,172,237,179,133,109,122,62,110,68,123,112,63,194,73,253,232,124,60, +254,248,7,175,99,217,151,31,202,118,121,228,242,55,167,207,45,244,38,238,231, +117,36,129,27,13,222,111,187,188,95,251,195,241,239,84,225,143,167,159,172, +199,223,143,198,106,127,84,125,16,205,159,60,103,253,64,183,205,197,250,158, +240,253,100,244,156,109,179,201,135,27,85,247,203,117,178,151,28,127,70,6,27, +121,109,219,116,127,28,222,133,232,199,183,211,6,42,225,208,180,118,222,13, +119,40,156,46,120,109,227,240,238,237,171,39,162,231,180,60,168,66,197,28,130, +54,239,154,85,236,88,233,71,105,183,80,96,30,32,175,171,42,216,168,117,105, +215,225,127,188,81,75,45,164,229,114,53,81,62,52,245,53,182,118,197,48,206,86, +98,224,250,129,68,140,141,190,73,200,200,164,240,75,117,97,196,241,119,147, +127,7,191,85,222,71,209,179,17,108,233,168,99,30,182,175,177,235,93,72,113, +139,179,215,208,199,208,56,93,232,237,138,59,12,254,152,198,240,64,219,28,66, +79,198,194,227,113,207,239,231,14,175,170,78,87,85,53,159,211,155,92,187,37, +243,145,232,75,28,222,227,221,250,202,182,215,22,168,82,95,203,220,203,208, +148,221,168,65,109,95,20,103,95,18,167,156,71,109,115,214,101,126,199,183,81, +179,163,138,147,8,237,65,225,94,37,112,39,241,92,85,105,240,44,29,20,27,212, +109,219,231,52,232,22,109,88,114,188,41,224,213,208,207,197,179,211,173,237, +162,54,83,31,231,185,36,3,74,24,51,162,128,13,205,216,46,76,106,26,135,119, +239,144,39,52,10,34,60,177,65,233,68,155,119,205,30,252,20,129,206,24,171,206, +237,78,72,136,71,224,117,85,253,102,163,150,229,213,72,237,90,227,215,180,248, +140,76,223,36,100,100,82,248,165,186,48,226,248,187,201,191,131,223,42,239, +163,232,217,8,182,116,212,49,15,219,215,164,100,107,152,231,198,169,55,227, +158,199,81,240,199,52,134,7,218,230,16,122,50,22,30,143,123,126,63,119,120, +199,205,95,135,210,207,231,218,45,153,143,113,245,149,109,207,247,217,20,6,81, +127,85,195,166,170,108,163,38,31,223,103,107,229,253,56,101,58,133,155,68,180, +248,157,214,156,236,56,143,71,152,246,222,161,14,207,249,115,62,92,127,133, +118,175,141,239,163,60,215,181,237,113,208,242,63,69,3,131,245,164,177,74,98, +0,0,0,0,73,69,78,68,174,66,96,130 }; static const char* default_charset = R"( abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789,.!?;:-_/|\!'"+=*()[]{}&%$#@)"; |