What changed, and why it matters
This commit removes support for the 'Leap' wallet from the Keystone 3 firmware. It deletes the Leap wallet icon and asset, removes Leap-related text strings from Chinese, Japanese, and Korean font files, and updates the Rust dependency versions for the UR (Uniform Resources) parsing libraries used by the firmware. There is no indication of a security fix or vulnerability being patched.
No security action required. Treat as routine product maintenance (sunsetting Leap wallet support) and dependency refresh. Verify downstream references to Leap wallet assets are removed to avoid build warnings.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit titled ‘leap sunset’ is a feature-removal/maintenance change. It deletes images/wallet/walletLeap.png and src/ui/gui_assets/wallet/walletLeap.c, strips Leap-related glyphs from generated CJK font bitmaps (cnText.c, jaText.c, koText.c), and updates rust/Cargo.toml/Cargo.lock to use published crates ur-registry 1.0.3 and ur-parse-lib 1.0.3 (replacing git-sourced versions), pulling in transitive updates such as keystone-ur, libflate 2.x, and hashbrown 0.16.1. The only functional C code change visible is a whitespace/indentation adjustment in IsHexString() in src/crypto/account_public_info.c, which does not alter behavior. No security-relevant bug fixes are present in the diff.
Changed components
images/wallet/walletLeap.pngsrc/ui/gui_assets/wallet/walletLeap.csrc/ui/gui_assets/font/cn/cnText.csrc/ui/gui_assets/font/ja/jaText.csrc/ui/gui_assets/font/ko/koText.crust/Cargo.tomlrust/Cargo.lockInspect captured patch +609 / −881
diff --git a/images/wallet/walletLeap.png b/images/wallet/walletLeap.png
deleted file mode 100644
index 5b41fe6..0000000
Binary files a/images/wallet/walletLeap.png and /dev/null differ
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 60824c1..afebcc1 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -67,6 +67,12 @@ dependencies = [
"memchr",
]
+[[package]]
+name = "allocator-api2"
+version = "0.2.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
+
[[package]]
name = "anstream"
version = "0.6.19"
@@ -1477,6 +1483,12 @@ dependencies = [
"syn 2.0.104",
]
+[[package]]
+name = "dary_heap"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b1e3a325bc115f096c8b77bbf027a7c2592230e70be2d985be950d3d5e60ebe"
+
[[package]]
name = "dbus"
version = "0.9.7"
@@ -1844,6 +1856,12 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+[[package]]
+name = "foldhash"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
+
[[package]]
name = "foreign-types"
version = "0.3.2"
@@ -2098,15 +2116,6 @@ version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-[[package]]
-name = "hashbrown"
-version = "0.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
-dependencies = [
- "ahash 0.8.12",
-]
-
[[package]]
name = "hashbrown"
version = "0.14.5"
@@ -2122,6 +2131,17 @@ version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
+[[package]]
+name = "hashbrown"
+version = "0.16.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
+dependencies = [
+ "allocator-api2",
+ "equivalent",
+ "foldhash",
+]
+
[[package]]
name = "heapless"
version = "0.7.17"
@@ -2409,6 +2429,19 @@ dependencies = [
"cpufeatures",
]
+[[package]]
+name = "keystone-ur"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0a08a7e0ccd113dac19485c5c0fe87c70b663f896c48e4493814e446175078d4"
+dependencies = [
+ "bitcoin_hashes 0.12.0",
+ "crc",
+ "minicbor",
+ "phf",
+ "rand_xoshiro",
+]
+
[[package]]
name = "keystore"
version = "0.1.0"
@@ -2464,22 +2497,25 @@ dependencies = [
[[package]]
name = "libflate"
-version = "1.3.0"
-source = "git+https://github.com/KeystoneHQ/libflate.git?tag=1.3.1#e6236f7417b9bd34dbbd4b3c821be10299c44a73"
+version = "2.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85f7ef5c7e3c2ed51f0fbc40e016c66558b699f16593521f30b98713bbb99cb8"
dependencies = [
"adler32",
- "core2",
"crc32fast",
+ "dary_heap",
"libflate_lz77",
+ "no_std_io2",
]
[[package]]
name = "libflate_lz77"
-version = "1.2.0"
-source = "git+https://github.com/KeystoneHQ/libflate.git?tag=1.3.1#e6236f7417b9bd34dbbd4b3c821be10299c44a73"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff7a10e427698aef6eef269482776debfef63384d30f13aad39a1a95e0e098fd"
dependencies = [
- "core2",
- "hashbrown 0.13.2",
+ "hashbrown 0.16.1",
+ "no_std_io2",
"rle-decode-fast",
]
@@ -2800,6 +2836,15 @@ dependencies = [
"pin-utils",
]
+[[package]]
+name = "no_std_io2"
+version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
+dependencies = [
+ "memchr",
+]
+
[[package]]
name = "nonempty"
version = "0.11.0"
@@ -4700,45 +4745,35 @@ version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
-[[package]]
-name = "ur"
-version = "0.3.0"
-source = "git+https://github.com/KeystoneHQ/ur-rs?tag=0.3.3#81b8bb3b6b3a823128489c81ffee5bb4001ba2ae"
-dependencies = [
- "bitcoin_hashes 0.12.0",
- "crc",
- "minicbor",
- "phf",
- "rand_xoshiro",
-]
-
[[package]]
name = "ur-parse-lib"
-version = "0.2.0"
-source = "git+https://git@github.com/KeystoneHQ/keystone-sdk-rust.git?tag=0.0.56#c526d9ccd9b47b978797a038d77ddd406ac91ec5"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f88434c87d748dfb765bc5debbbab61d020392d23b568fe73eb44eaca46daa04"
dependencies = [
"hex",
- "ur",
+ "keystone-ur",
"ur-registry",
]
[[package]]
name = "ur-registry"
-version = "0.1.1"
-source = "git+https://git@github.com/KeystoneHQ/keystone-sdk-rust.git?tag=0.0.56#c526d9ccd9b47b978797a038d77ddd406ac91ec5"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf91aff789fea1c05116a47b11fbe0bea32ef66e0c1f77b46550e1407efc4c6e"
dependencies = [
"bs58",
- "core2",
"hex",
+ "keystone-ur",
"libflate",
"minicbor",
+ "no_std_io2",
"paste",
"prost",
"prost-build",
"prost-types",
"serde",
"thiserror-core",
- "ur",
]
[[package]]
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 17b8782..c537f54 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -74,8 +74,8 @@ core2 = { version = "0.3.3", default-features = false, features = ["alloc"] }
thiserror = { version = "1.0", package = "thiserror-core", default-features = false }
rsa = { version = "0.8.2", default-features = false }
sha1 = { version = "0.10.5", default-features = false }
-ur-registry = { git = "https://git@github.com/KeystoneHQ/keystone-sdk-rust.git", tag = "0.0.56" }
-ur-parse-lib = { git = "https://git@github.com/KeystoneHQ/keystone-sdk-rust.git", tag = "0.0.56" }
+ur-registry = "1.0.3"
+ur-parse-lib = "1.0.3"
sui-transaction-types-core = { git = "https://github.com/KeystoneHQ/sui.git", tag = "mainnet-nostd-v1.69.2.1", default-features = false, features = ["alloc"] }
ed25519-bip32-core = { version = "0.1.1", default-features = false }
cryptoxide = "0.4"
diff --git a/src/crypto/account_public_info.c b/src/crypto/account_public_info.c
index af2f017..1a8553a 100644
--- a/src/crypto/account_public_info.c
+++ b/src/crypto/account_public_info.c
@@ -1016,8 +1016,8 @@ static bool IsHexString(const char *value)
for (size_t i = 0; i < len; i++) {
char c = value[i];
if (!((c >= '0' && c <= '9') ||
- (c >= 'a' && c <= 'f') ||
- (c >= 'A' && c <= 'F'))) {
+ (c >= 'a' && c <= 'f') ||
+ (c >= 'A' && c <= 'F'))) {
return false;
}
}
diff --git a/src/ui/gui_assets/font/cn/cnText.c b/src/ui/gui_assets/font/cn/cnText.c
index bb6afde..e46b3be 100644
--- a/src/ui/gui_assets/font/cn/cnText.c
+++ b/src/ui/gui_assets/font/cn/cnText.c
@@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 24 px
* Bpp: 2
- * Opts: --bpp 2 --size 24 --no-compress --font NotoSansSC-Regular.ttf --symbols "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~£¥·€、一三上不与个中为主么了二于互交产享亮什从代以件传体何作使例保信候允入全公共关准出分列创初删前办功加动助励包化升单卡即压取受变可号各同名后吗启和哈固在地址坊型基处备复多天太失奖好如始委子字安完定密导小屏展差已币希帐幕广序度建开异式引强当径待志忘快念态总恢息悉您情成我或户扩扫拒择持指振换捷接描播擦收改教数文新方日时明易是显暂更未本机条析查标校格检概模款正毕气永池派测消添点熵片版状理生用电白的盘相知短码确示禁私种秒称移程稍立端签简算管类系级纹络绝统继续维网置署脚自要解言计认记许设访证词试详语误请败账资路跳软载输过这进连退选通道重金钟钥钱链锁错键闭问除随隙页额验骰,:? --format lvgl -o ../gui_assets/font/cn/cnText.c
+ * Opts: --bpp 2 --size 24 --no-compress --font NotoSansSC-Regular.ttf --symbols "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~£¥·€、一三上不与个中为主么了二于互交产享亮什从代以件传体何作使例保信候允入全公共关准出分列创初删前办功加动助励包化升单卡即压取受变可号各同名后吗启和固在地址坊型基处备复多天太失奖好如始委子字安完定密导小屏展差已币帐幕广序度建开异式强当径待志忘快念态总恢息悉您情成我或户扩扫拒择持指振换捷接描播擦收改教数文新方日时明易是显暂更未本机条析查标校格检概模款正毕气永池派测消添熵片版状理生用电白的盘相知短码确示禁私种秒称移程稍立端签简算管类系级纹络绝统继续维网置署脚自要解言计认记许设访证词试详语误请败账资路跳软载输过这进连退选通道重金钟钥钱链锁错键闭问除随隙页额验骰,:? --format lvgl -o ../gui_assets/font/cn/cnText.c
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
@@ -2153,25 +2153,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x74, 0x0, 0xe0, 0x0, 0xe0, 0x0, 0x0,
0x0,
- /* U+54C8 "哈" */
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
- 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0,
- 0xf, 0xff, 0x0, 0xf, 0xe0, 0x0, 0xfa, 0xf0,
- 0x1, 0xe7, 0x40, 0xe, 0xb, 0x0, 0x3c, 0x3c,
- 0x0, 0xe0, 0xb0, 0xf, 0x40, 0xf0, 0xe, 0xb,
- 0x3, 0xe0, 0x7, 0xc0, 0xe0, 0xb0, 0xfc, 0x0,
- 0x2f, 0xe, 0xb, 0x7f, 0xff, 0xff, 0xbc, 0xe0,
- 0xb3, 0x8a, 0xaa, 0xa2, 0x4e, 0xb, 0x0, 0x0,
- 0x0, 0x0, 0xe0, 0xb0, 0x0, 0x0, 0x0, 0xe,
- 0xb, 0x3, 0xff, 0xff, 0x80, 0xe0, 0xb0, 0x3f,
- 0xff, 0xfc, 0xf, 0xff, 0x3, 0xc0, 0x3, 0xc0,
- 0xfa, 0xa0, 0x3c, 0x0, 0x3c, 0xe, 0x0, 0x3,
- 0xc0, 0x3, 0xc0, 0xe0, 0x0, 0x3c, 0x0, 0x3c,
- 0x0, 0x0, 0x3, 0xc0, 0x3, 0xc0, 0x0, 0x0,
- 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xea, 0xab,
- 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x3c, 0x0, 0x0,
- 0x0, 0x0, 0x0, 0x0,
-
/* U+56FA "固" */
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0xaa, 0xaa, 0xaa, 0xaf, 0xf0,
@@ -2776,25 +2757,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0,
- /* U+5E0C "希" */
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40,
- 0x0, 0x0, 0x74, 0x0, 0xb, 0xf9, 0x0, 0x1f,
- 0xd0, 0x0, 0x1, 0xbf, 0x97, 0xf4, 0x0, 0x0,
- 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1b, 0xfe,
- 0xbf, 0x40, 0x0, 0x6f, 0xff, 0xc0, 0x2f, 0xe0,
- 0x0, 0xf9, 0xf, 0x0, 0x7, 0xc0, 0x0, 0x0,
- 0x78, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xd1, 0xaa, 0xbe, 0xaa, 0xaa, 0xaa, 0x0,
- 0x1, 0xf0, 0x38, 0x0, 0x0, 0x0, 0x1f, 0x0,
- 0xe0, 0x0, 0x0, 0x1, 0xfe, 0xab, 0xea, 0xaa,
- 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x2, 0xff,
- 0x0, 0x38, 0x0, 0xe0, 0x3f, 0x2c, 0x0, 0xe0,
- 0x3, 0x80, 0x50, 0xb0, 0x3, 0x80, 0xe, 0x0,
- 0x2, 0xc0, 0xe, 0x0, 0x38, 0x0, 0xb, 0x0,
- 0x38, 0x1, 0xe0, 0x0, 0x2c, 0x0, 0xe0, 0xff,
- 0x80, 0x0, 0x60, 0x3, 0x81, 0x50, 0x0, 0x0,
- 0x0, 0xe, 0x0, 0x0, 0x0,
-
/* U+5E10 "帐" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x0,
0xa, 0x0, 0x0, 0x0, 0x2c, 0x0, 0x3c, 0x0,
@@ -2967,22 +2929,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x40, 0x1, 0xf0, 0xe7, 0xe4, 0x0, 0x0, 0xb,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x2f, 0x80,
- /* U+5F15 "引" */
- 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff, 0xf0,
- 0x0, 0xe6, 0xaa, 0xab, 0xc0, 0x3, 0x80, 0x0,
- 0xf, 0x0, 0xe, 0x0, 0x0, 0x3c, 0x0, 0x38,
- 0x0, 0x0, 0xf0, 0x0, 0xe1, 0xaa, 0xab, 0xc0,
- 0x3, 0x8b, 0xff, 0xff, 0x0, 0xe, 0x3c, 0x0,
- 0x0, 0x0, 0x38, 0xf0, 0x0, 0x0, 0x0, 0xe7,
- 0x80, 0x0, 0x0, 0x3, 0x9d, 0x0, 0x0, 0x0,
- 0xe, 0xbf, 0xff, 0xfc, 0x0, 0x3a, 0xaa, 0xaa,
- 0xf0, 0x0, 0xe0, 0x0, 0x3, 0xc0, 0x3, 0x80,
- 0x0, 0xf, 0x0, 0xe, 0x0, 0x0, 0x3c, 0x0,
- 0x38, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x0, 0x7,
- 0x80, 0x3, 0x80, 0x0, 0x3d, 0x0, 0xe, 0x1,
- 0xfb, 0xf0, 0x0, 0x38, 0x3, 0xff, 0x40, 0x0,
- 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
-
/* U+5F3A "强" */
0xbf, 0xff, 0xf, 0xff, 0xff, 0x1, 0xaa, 0xbc,
0x3e, 0xaa, 0xbc, 0x0, 0x0, 0xb0, 0xe0, 0x0,
@@ -4301,24 +4247,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
- /* U+70B9 "点" */
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
- 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
- 0x0, 0x0, 0x0, 0xfa, 0xaa, 0xa8, 0x0, 0x0,
- 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf0, 0x0,
- 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
- 0x0, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
- 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3,
- 0x80, 0x0, 0x0, 0x3c, 0x0, 0x38, 0x0, 0x0,
- 0x3, 0xc0, 0x3, 0x80, 0x0, 0x0, 0x3c, 0x0,
- 0x38, 0x0, 0x0, 0x3, 0xc0, 0x3, 0xff, 0xff,
- 0xff, 0xfc, 0x0, 0x2a, 0xaa, 0xaa, 0xaa, 0x80,
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x4,
- 0x1, 0x1, 0xc0, 0x7, 0x82, 0xc0, 0x74, 0x1e,
- 0x0, 0xf0, 0x1d, 0x3, 0x80, 0xb4, 0x2d, 0x1,
- 0xd0, 0x2c, 0x3, 0xc7, 0xc0, 0x1e, 0x1, 0xd0,
- 0x1e, 0x20, 0x0, 0x80, 0x4, 0x0, 0x40,
-
/* U+71B5 "熵" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xc0,
0x0, 0x34, 0x0, 0x0, 0xb, 0x0, 0x0, 0xf0,
@@ -6335,219 +6263,215 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
{.bitmap_index = 13343, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 2, .ofs_y = -3},
{.bitmap_index = 13459, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 13591, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 13712, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 13844, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 13954, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 14081, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 14219, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 14340, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 14484, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
- {.bitmap_index = 14605, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 14743, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 14881, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 15025, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 15163, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 15290, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 15411, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 15544, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 15682, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 15815, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 15953, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 16080, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 16218, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 16356, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 16477, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 16609, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 16736, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 16868, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 17012, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 17150, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 17277, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 17415, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 17548, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 17681, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 17808, .adv_w = 384, .box_w = 21, .box_h = 21, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 17919, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 18040, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 18173, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 18311, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 18449, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 18582, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 18726, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 18859, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 19003, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 19124, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 19251, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 19378, .adv_w = 384, .box_w = 19, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 19488, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 19615, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 19730, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 19863, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 20007, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 20134, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 20267, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 20411, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 20544, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 20677, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 20804, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 20942, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21075, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 21213, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 21346, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 21479, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 21623, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 21756, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21877, .adv_w = 384, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22003, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22136, .adv_w = 384, .box_w = 21, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 22262, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 22395, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22539, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22683, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22816, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22960, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23104, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23248, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23386, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23524, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23668, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23795, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23928, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24061, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 24205, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 24343, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 24481, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 24614, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 24746, .adv_w = 384, .box_w = 16, .box_h = 22, .ofs_x = 4, .ofs_y = -3},
- {.bitmap_index = 24834, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 24961, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 25082, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 25209, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 25347, .adv_w = 384, .box_w = 24, .box_h = 20, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 25467, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 25599, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 25726, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25858, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25996, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26140, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26284, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 26422, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 26560, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26698, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26836, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26980, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 27118, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27262, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27406, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27550, .adv_w = 384, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = -1},
- {.bitmap_index = 27660, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 27781, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 27919, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28052, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 28185, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 28323, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28456, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28589, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28727, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 28854, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 28987, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29119, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29257, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 29395, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 29521, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
- {.bitmap_index = 29642, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29763, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 3, .ofs_y = -2},
- {.bitmap_index = 29884, .adv_w = 384, .box_w = 18, .box_h = 24, .ofs_x = 3, .ofs_y = -3},
- {.bitmap_index = 29992, .adv_w = 384, .box_w = 21, .box_h = 24, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 30118, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 30245, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30383, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30510, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30648, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30775, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30907, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31034, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31172, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31310, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31443, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31576, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31709, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31847, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31974, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 32101, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
- {.bitmap_index = 32222, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32360, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 32493, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32631, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32769, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32907, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 33040, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 33167, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 33300, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 33433, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33577, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 33710, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 33848, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 33975, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 34108, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 34240, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 34345, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 34466, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 34593, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 34726, .adv_w = 384, .box_w = 18, .box_h = 24, .ofs_x = 3, .ofs_y = -3},
- {.bitmap_index = 34834, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 34961, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 35099, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 35231, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 35358, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 35491, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 35618, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 35751, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 35878, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 36010, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 36137, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 36264, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 36402, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 36535, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 36668, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 36806, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 36939, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 37071, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 37209, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 37330, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 37474, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 37612, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 37756, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 37894, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 38038, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 38165, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 38309, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 38436, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 38580, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 38707, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 38845, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 38983, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 39121, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 39242, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 39374, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 39507, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 39639, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 39777, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 39921, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 40059, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 40203, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 40347, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 40457, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 40572, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 40710, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 40848, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 40986, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 41107, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 41251, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 41395, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 41522, .adv_w = 384, .box_w = 5, .box_h = 9, .ofs_x = 3, .ofs_y = -3},
- {.bitmap_index = 41534, .adv_w = 384, .box_w = 4, .box_h = 17, .ofs_x = 4, .ofs_y = -1},
- {.bitmap_index = 41551, .adv_w = 384, .box_w = 12, .box_h = 20, .ofs_x = 0, .ofs_y = -1}
+ {.bitmap_index = 13712, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 13822, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 13949, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 14087, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 14208, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 14352, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
+ {.bitmap_index = 14473, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 14611, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 14749, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 14893, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 15031, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 15158, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 15279, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 15412, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 15550, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 15683, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 15821, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 15948, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 16086, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 16224, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 16345, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 16477, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 16604, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 16736, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 16880, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 17018, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 17145, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 17283, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 17416, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 17549, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 17676, .adv_w = 384, .box_w = 21, .box_h = 21, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 17787, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 17908, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 18046, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 18184, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 18317, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 18461, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 18594, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 18738, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 18859, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 18986, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 19113, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 19240, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 19355, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 19488, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 19632, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 19759, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 19892, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 20036, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20169, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 20302, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20429, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 20567, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 20700, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20838, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20971, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 21104, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 21248, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 21381, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 21502, .adv_w = 384, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 21628, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 21761, .adv_w = 384, .box_w = 21, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 21887, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 22020, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22164, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22308, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22441, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22585, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22729, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22873, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23011, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23149, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23293, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23420, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23553, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23686, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23830, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 23968, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 24106, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 24239, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 24371, .adv_w = 384, .box_w = 16, .box_h = 22, .ofs_x = 4, .ofs_y = -3},
+ {.bitmap_index = 24459, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 24586, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 24707, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 24834, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 24972, .adv_w = 384, .box_w = 24, .box_h = 20, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 25092, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 25224, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 25351, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25483, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25621, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 25765, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 25909, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 26047, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 26185, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 26323, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 26461, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 26605, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 26743, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 26887, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27031, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27175, .adv_w = 384, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = -1},
+ {.bitmap_index = 27285, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 27406, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 27544, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27677, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 27810, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 27948, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28081, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28214, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28352, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 28485, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28617, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28755, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 28893, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 29019, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
+ {.bitmap_index = 29140, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 29261, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 3, .ofs_y = -2},
+ {.bitmap_index = 29382, .adv_w = 384, .box_w = 18, .box_h = 24, .ofs_x = 3, .ofs_y = -3},
+ {.bitmap_index = 29490, .adv_w = 384, .box_w = 21, .box_h = 24, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 29616, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29743, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 29881, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30008, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30146, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30273, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30405, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30532, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30670, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30808, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30941, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31074, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 31207, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 31345, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31472, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 31599, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
+ {.bitmap_index = 31720, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 31858, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31991, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 32129, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 32267, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 32405, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 32538, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 32665, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 32798, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 32931, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 33075, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 33208, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 33346, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 33473, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 33606, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 33738, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 33843, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 33964, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 34091, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 34224, .adv_w = 384, .box_w = 18, .box_h = 24, .ofs_x = 3, .ofs_y = -3},
+ {.bitmap_index = 34332, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 34459, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 34597, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 34729, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 34856, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 34989, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 35116, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 35249, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 35376, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 35508, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 35635, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 35762, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 35900, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 36033, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 36166, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 36304, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 36437, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 36569, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 36707, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 36828, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 36972, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 37110, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 37254, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 37392, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 37536, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 37663, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 37807, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 37934, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 38078, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 38205, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 38343, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 38481, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 38619, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 38740, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 38872, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 39005, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 39137, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 39275, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 39419, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 39557, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 39701, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 39845, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 39955, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 40070, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 40208, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 40346, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 40484, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 40605, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 40749, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 40893, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 41020, .adv_w = 384, .box_w = 5, .box_h = 9, .ofs_x = 3, .ofs_y = -3},
+ {.bitmap_index = 41032, .adv_w = 384, .box_w = 4, .box_h = 17, .ofs_x = 4, .ofs_y = -1},
+ {.bitmap_index = 41049, .adv_w = 384, .box_w = 12, .box_h = 20, .ofs_x = 0, .ofs_y = -1}
};
/*---------------------
@@ -6564,34 +6488,33 @@ static const uint16_t unicode_list_1[] = {
0x517a, 0x517d, 0x51aa, 0x51fb, 0x51fc, 0x51fd, 0x5205, 0x5206,
0x520e, 0x5262, 0x5273, 0x52a4, 0x52b2, 0x52be, 0x52d0, 0x52e8,
0x5333, 0x5334, 0x5335, 0x534c, 0x5354, 0x5361, 0x5369, 0x536a,
- 0x536b, 0x5374, 0x538c, 0x53e9, 0x5425, 0x5657, 0x5685, 0x568d,
- 0x569d, 0x56a7, 0x56e8, 0x5757, 0x5861, 0x5864, 0x586a, 0x5877,
- 0x5886, 0x5887, 0x588e, 0x58b3, 0x58da, 0x58df, 0x5928, 0x5931,
- 0x5aad, 0x5ab4, 0x5ae6, 0x5ae9, 0x5af7, 0x5b23, 0x5b59, 0x5b6c,
- 0x5bac, 0x5bb2, 0x5d4b, 0x5d4f, 0x5d5e, 0x5d69, 0x5d6d, 0x5db2,
- 0x5ddc, 0x5dec, 0x5e03, 0x5e57, 0x5e5d, 0x5e5f, 0x5e6c, 0x5e72,
- 0x5e97, 0x5eb0, 0x5ee1, 0x5ee2, 0x5f34, 0x5f35, 0x5f48, 0x5f52,
- 0x5f5e, 0x5f98, 0x5fbf, 0x5fcc, 0x5fe6, 0x6005, 0x6022, 0x616d,
- 0x616e, 0x6173, 0x6194, 0x61c6, 0x61c8, 0x622f, 0x6246, 0x625e,
- 0x6264, 0x628c, 0x62bf, 0x62d4, 0x6302, 0x632c, 0x640a, 0x6443,
- 0x6493, 0x6496, 0x64b6, 0x64cd, 0x64e4, 0x650d, 0x6516, 0x6542,
- 0x6553, 0x656b, 0x6570, 0x658c, 0x659b, 0x65df, 0x6651, 0x6687,
- 0x6689, 0x6697, 0x66be, 0x66ed, 0x6742, 0x6764, 0x677e, 0x6799,
- 0x681d, 0x68df, 0x697e, 0x6a9b, 0x6ac0, 0x6b32, 0x6b71, 0x6b95,
- 0x6bbd, 0x6c9b, 0x6ca8, 0x6ce5, 0x6d58, 0x7016, 0x7112, 0x71a4,
- 0x71a5, 0x7213, 0x7363, 0x747c, 0x7485, 0x7492, 0x75da, 0x75e1,
- 0x7635, 0x7655, 0x7742, 0x774a, 0x775e, 0x77cb, 0x7897, 0x78de,
- 0x791e, 0x792a, 0x792f, 0x794d, 0x7958, 0x7968, 0x796a, 0x7a28,
- 0x7a4c, 0x7adb, 0x7add, 0x7af4, 0x7afe, 0x7bd8, 0x7c58, 0x7e04,
- 0x7e16, 0x7e39, 0x7e3a, 0x7e3c, 0x7e44, 0x7e4a, 0x7e51, 0x7eae,
- 0x7ecb, 0x7ecf, 0x8077, 0x8147, 0x88de, 0x8940, 0x895d, 0x8afe,
- 0x8b01, 0x8b0d, 0x8b15, 0x8b1b, 0x8b1c, 0x8b1e, 0x8b2a, 0x8b32,
- 0x8b43, 0x8b4a, 0x8b4c, 0x8b54, 0x8c82, 0x8c83, 0x8ca1, 0x8d4c,
- 0x8d50, 0x8ecc, 0x8eda, 0x8ef0, 0x8f24, 0x8f36, 0x8f38, 0x8f3b,
- 0x8f5d, 0x8f66, 0x8f77, 0x8fb0, 0x912a, 0x912e, 0x93fc, 0x9402,
- 0x940e, 0x945b, 0x945e, 0x9476, 0x948b, 0x954a, 0x954b, 0x95c1,
- 0x95ec, 0x95f6, 0x97d2, 0x97fa, 0x99e9, 0x9a0d, 0xfe69, 0xfe77,
- 0xfe7c
+ 0x536b, 0x5374, 0x538c, 0x53e9, 0x5657, 0x5685, 0x568d, 0x569d,
+ 0x56a7, 0x56e8, 0x5757, 0x5861, 0x5864, 0x586a, 0x5877, 0x5886,
+ 0x5887, 0x588e, 0x58b3, 0x58da, 0x58df, 0x5928, 0x5931, 0x5aad,
+ 0x5ab4, 0x5ae6, 0x5ae9, 0x5af7, 0x5b23, 0x5b59, 0x5b6c, 0x5bac,
+ 0x5bb2, 0x5d4b, 0x5d4f, 0x5d5e, 0x5d6d, 0x5db2, 0x5ddc, 0x5dec,
+ 0x5e03, 0x5e57, 0x5e5d, 0x5e5f, 0x5e6c, 0x5e97, 0x5eb0, 0x5ee1,
+ 0x5ee2, 0x5f34, 0x5f35, 0x5f48, 0x5f52, 0x5f5e, 0x5f98, 0x5fbf,
+ 0x5fcc, 0x5fe6, 0x6005, 0x6022, 0x616d, 0x616e, 0x6173, 0x6194,
+ 0x61c6, 0x61c8, 0x622f, 0x6246, 0x625e, 0x6264, 0x628c, 0x62bf,
+ 0x62d4, 0x6302, 0x632c, 0x640a, 0x6443, 0x6493, 0x6496, 0x64b6,
+ 0x64cd, 0x64e4, 0x650d, 0x6516, 0x6542, 0x6553, 0x656b, 0x6570,
+ 0x658c, 0x659b, 0x65df, 0x6651, 0x6687, 0x6689, 0x6697, 0x66be,
+ 0x66ed, 0x6742, 0x6764, 0x677e, 0x6799, 0x681d, 0x68df, 0x697e,
+ 0x6a9b, 0x6ac0, 0x6b32, 0x6b71, 0x6b95, 0x6bbd, 0x6c9b, 0x6ca8,
+ 0x6ce5, 0x6d58, 0x7112, 0x71a4, 0x71a5, 0x7213, 0x7363, 0x747c,
+ 0x7485, 0x7492, 0x75da, 0x75e1, 0x7635, 0x7655, 0x7742, 0x774a,
+ 0x775e, 0x77cb, 0x7897, 0x78de, 0x791e, 0x792a, 0x792f, 0x794d,
+ 0x7958, 0x7968, 0x796a, 0x7a28, 0x7a4c, 0x7adb, 0x7add, 0x7af4,
+ 0x7afe, 0x7bd8, 0x7c58, 0x7e04, 0x7e16, 0x7e39, 0x7e3a, 0x7e3c,
+ 0x7e44, 0x7e4a, 0x7e51, 0x7eae, 0x7ecb, 0x7ecf, 0x8077, 0x8147,
+ 0x88de, 0x8940, 0x895d, 0x8afe, 0x8b01, 0x8b0d, 0x8b15, 0x8b1b,
+ 0x8b1c, 0x8b1e, 0x8b2a, 0x8b32, 0x8b43, 0x8b4a, 0x8b4c, 0x8b54,
+ 0x8c82, 0x8c83, 0x8ca1, 0x8d4c, 0x8d50, 0x8ecc, 0x8eda, 0x8ef0,
+ 0x8f24, 0x8f36, 0x8f38, 0x8f3b, 0x8f5d, 0x8f66, 0x8f77, 0x8fb0,
+ 0x912a, 0x912e, 0x93fc, 0x9402, 0x940e, 0x945b, 0x945e, 0x9476,
+ 0x948b, 0x954a, 0x954b, 0x95c1, 0x95ec, 0x95f6, 0x97d2, 0x97fa,
+ 0x99e9, 0x9a0d, 0xfe69, 0xfe77, 0xfe7c
};
/*Collect the unicode lists and glyph_id offsets*/
@@ -6602,7 +6525,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = {
},
{
.range_start = 163, .range_length = 65149, .glyph_id_start = 96,
- .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 289, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
+ .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 285, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
}
};
@@ -6660,8 +6583,7 @@ static const uint8_t kern_left_class_mapping[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0,
- 0
+ 0, 0, 0, 0, 0
};
/*Map glyph_ids to kern right classes*/
@@ -6713,8 +6635,7 @@ static const uint8_t kern_right_class_mapping[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0,
- 0
+ 0, 0, 0, 0, 0
};
/*Kern values between classes*/
diff --git a/src/ui/gui_assets/font/ja/jaText.c b/src/ui/gui_assets/font/ja/jaText.c
index 1ca595c..442252a 100644
--- a/src/ui/gui_assets/font/ja/jaText.c
+++ b/src/ui/gui_assets/font/ja/jaText.c
@@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 24 px
* Bpp: 2
- * Opts: --bpp 2 --size 24 --no-compress --font NotoSansJP-Regular.ttf --symbols "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~£¥·€、「」いおかきくぐけこさしすせぜただちっつてでとなにのはびまみめよらりるれわをんァアィイウェエォオカガキギクグコサザシジスズセソタダチッツテデトドナヌネノバパビピフブプベペポマミムメモャュョラリルレロワンー一上不中了互今任住何作使例保備入公共再分初利削力功加効動化単参取受号合同名否器回圧在報変失始委定布度式引張強形待復忘情成所承択拒拡拭指振探接敗数新方日明時暗更有期本果検標機決法派済準点無照現理生産用画留番異知確示私秒算管約紋索細終結続署自行表複規解言計設証試詳認語読財資起転輝輸辞込追送通違選酬金鍵開間除電面額&? --format lvgl -o ../gui_assets/font/ja/jaText.c
+ * Opts: --bpp 2 --size 24 --no-compress --font NotoSansJP-Regular.ttf --symbols "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~£¥·€、「」いおかきくぐけこさしすせぜただちっつてでとなにのはびまみめよらりるれわをんァアィイウェエォオカガキギクグコサザシジスズセソタダチッツテデトドナヌネノバパビピフブプベペポマミムメモャュョラリルレロワンー一上不中了互今任住何作使例保備入公共再分初利削力功加効動化単取受号合同名否器回圧在報変失始委定布度式引張強形待復忘情成所承択拒拡拭指振探接敗数新方日明時暗更有期本果検標機決法派済準点無現理生産用画留番異知確示私秒算管約紋索細終結続署自行表複規解言計設証試詳認語読財資起転輝輸辞込追送通違選酬金鍵開間除電面額&? --format lvgl -o ../gui_assets/font/ja/jaText.c
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
@@ -2884,25 +2884,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
- /* U+53C2 "参" */
- 0x0, 0x0, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0,
- 0xf0, 0x2, 0x80, 0x0, 0x0, 0x2, 0xe0, 0x1,
- 0xf4, 0x0, 0x0, 0x7, 0x80, 0x0, 0x7e, 0x0,
- 0xb, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xea,
- 0xbf, 0x95, 0x56, 0xf0, 0x0, 0x0, 0x3c, 0x0,
- 0x0, 0x50, 0x1a, 0xaa, 0xbe, 0xaa, 0xaa, 0xa8,
- 0x2f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
- 0xd0, 0x3, 0xd0, 0x0, 0x0, 0xf, 0x40, 0xa0,
- 0xf4, 0x0, 0x0, 0x7d, 0xb, 0xd0, 0x3e, 0x0,
- 0x2, 0xf5, 0xfd, 0x0, 0xb, 0xd0, 0x2f, 0x87,
- 0x90, 0x7, 0x41, 0xfc, 0x2d, 0x0, 0x0, 0x7e,
- 0x0, 0x28, 0x0, 0x0, 0x1b, 0xe0, 0x0, 0x0,
- 0x0, 0xb, 0xfd, 0x0, 0x2e, 0x0, 0x0, 0x2,
- 0x40, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
- 0xd0, 0x0, 0x0, 0x0, 0x1b, 0xfd, 0x0, 0x0,
- 0x0, 0x2f, 0xfe, 0x40, 0x0, 0x0, 0x0, 0x2e,
- 0x40, 0x0, 0x0, 0x0,
-
/* U+53D6 "取" */
0x2a, 0xaa, 0xaa, 0x40, 0x0, 0x0, 0x3f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3, 0xc0, 0x3c, 0xff,
@@ -4085,25 +4066,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0xe0, 0x7c, 0x1, 0xd0, 0x3c, 0x3, 0xd1, 0xc0,
0x2, 0x40, 0x50, 0x7, 0x40,
- /* U+7167 "照" */
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc,
- 0xff, 0xff, 0xff, 0x43, 0xea, 0xf1, 0xab, 0xea,
- 0xad, 0xf, 0x2, 0xc0, 0xf, 0x0, 0xb0, 0x3c,
- 0xb, 0x0, 0xb4, 0x2, 0xc0, 0xf0, 0x2c, 0x7,
- 0xc0, 0xf, 0x3, 0xd5, 0xf1, 0xfc, 0xf, 0xf8,
- 0xf, 0xff, 0xcf, 0x40, 0x15, 0x40, 0x3c, 0xb,
- 0x5, 0x55, 0x55, 0x40, 0xf0, 0x2c, 0x3f, 0xff,
- 0xfe, 0x3, 0xc0, 0xb0, 0xe0, 0x0, 0x38, 0xf,
- 0x2, 0xc3, 0x80, 0x0, 0xe0, 0x3c, 0xb, 0xe,
- 0x0, 0x3, 0x80, 0xff, 0xfc, 0x38, 0x0, 0xe,
- 0x3, 0xea, 0xa0, 0xff, 0xff, 0xf8, 0xb, 0x0,
- 0x1, 0x55, 0x55, 0x50, 0x2, 0x0, 0x0, 0x10,
- 0x9, 0x0, 0x1d, 0xf, 0x1, 0xd0, 0x3c, 0x0,
- 0xf0, 0x3c, 0x3, 0xc0, 0x78, 0xb, 0x40, 0xb0,
- 0xb, 0x0, 0xf4, 0x7c, 0x2, 0xd0, 0x1d, 0x0,
- 0xf1, 0xc0, 0x6, 0x0, 0x24, 0x2, 0x80, 0x0,
- 0x0, 0x0, 0x0, 0x0, 0x0,
-
/* U+73FE "現" */
0x2a, 0xaa, 0x8b, 0xff, 0xff, 0xe0, 0x3f, 0xff,
0xcb, 0xaa, 0xaa, 0xe0, 0x0, 0xb0, 0xb, 0x0,
@@ -5539,133 +5501,131 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
{.bitmap_index = 17970, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 18108, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 18240, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 18367, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 18499, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 18625, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 18758, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 18885, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 19018, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 19123, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 19244, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 19371, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 19509, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 19625, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 19751, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 19878, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 20022, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 20155, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 20293, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 20431, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 20569, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 20702, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 20835, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 20973, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21100, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 21215, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 21348, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 21486, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 21624, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 21768, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 21906, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 22044, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 22177, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22321, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22459, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22591, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 22724, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 22862, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 23000, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 23138, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23271, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 23409, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23547, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 23691, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 23829, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 23967, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 24105, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 24237, .adv_w = 384, .box_w = 16, .box_h = 22, .ofs_x = 4, .ofs_y = -3},
- {.bitmap_index = 24325, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 24446, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 24578, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 24705, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 24832, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24959, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 25092, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25230, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25356, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 25500, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 25644, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25782, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 25920, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26058, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 26196, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26340, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 26473, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26600, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 26733, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 26866, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 26998, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 27124, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
- {.bitmap_index = 27245, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27383, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27504, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 27620, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27753, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 27891, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 28018, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 28145, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 28283, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28410, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28548, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28692, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28830, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 28968, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29106, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29250, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29377, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 29510, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29654, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29792, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 29936, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30063, .adv_w = 384, .box_w = 18, .box_h = 24, .ofs_x = 3, .ofs_y = -3},
- {.bitmap_index = 30171, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30309, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30447, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30585, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30723, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 30867, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 30988, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31126, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31264, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31396, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31540, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31678, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 31810, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 31948, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32092, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 32230, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 32357, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32501, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 32639, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 32771, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 32915, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 33048, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33186, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33324, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33462, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33600, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33744, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 33882, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 34009, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
- {.bitmap_index = 34141, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 34285, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 34400, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
- {.bitmap_index = 34515, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
- {.bitmap_index = 34653, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 34780, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 34896, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
- {.bitmap_index = 35040, .adv_w = 384, .box_w = 17, .box_h = 19, .ofs_x = 4, .ofs_y = -1},
- {.bitmap_index = 35121, .adv_w = 384, .box_w = 12, .box_h = 20, .ofs_x = 6, .ofs_y = -1}
+ {.bitmap_index = 18367, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 18493, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 18626, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 18753, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 18886, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 18991, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 19112, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 19239, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 19377, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 19493, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 19619, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 19746, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 19890, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 20023, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 20161, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 20299, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20437, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 20570, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20703, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 20841, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 20968, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 21083, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 21216, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 21354, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 21492, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 21636, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 21774, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 21912, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 22045, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22189, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22327, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22459, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 22592, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 22730, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 22868, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 23006, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23139, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 23277, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23415, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23559, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 23697, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 23835, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 23973, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 24105, .adv_w = 384, .box_w = 16, .box_h = 22, .ofs_x = 4, .ofs_y = -3},
+ {.bitmap_index = 24193, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 24314, .adv_w = 384, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 24446, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 24573, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 24700, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 24827, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 24960, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25098, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25224, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 25368, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 25512, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25650, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 25788, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 25926, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 26064, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 26208, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 26341, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26468, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 26601, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 26733, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 26859, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -1},
+ {.bitmap_index = 26980, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27118, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27239, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 27355, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27488, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 27626, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 27753, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 27880, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 28018, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28145, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28283, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28427, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28565, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28703, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28841, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 28985, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29112, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 29245, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 29389, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 29527, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 29671, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 29798, .adv_w = 384, .box_w = 18, .box_h = 24, .ofs_x = 3, .ofs_y = -3},
+ {.bitmap_index = 29906, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30044, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30182, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30320, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30458, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30602, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 30723, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30861, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 30999, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31131, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 31275, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31413, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31545, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 31683, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 31827, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 31965, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 32092, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 32236, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 32374, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 32506, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 32650, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 32783, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 32921, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 33059, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 33197, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 33335, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 33479, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 33617, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 33744, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -1},
+ {.bitmap_index = 33876, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 34020, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 34135, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
+ {.bitmap_index = 34250, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
+ {.bitmap_index = 34388, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 34515, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 34631, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
+ {.bitmap_index = 34775, .adv_w = 384, .box_w = 17, .box_h = 19, .ofs_x = 4, .ofs_y = -1},
+ {.bitmap_index = 34856, .adv_w = 384, .box_w = 12, .box_h = 20, .ofs_x = 6, .ofs_y = -1}
};
/*---------------------
@@ -5699,22 +5659,22 @@ static const uint16_t unicode_list_3[] = {
0x1da3, 0x1ddb, 0x1e0c, 0x1e60, 0x1e66, 0x1e6d, 0x1e90, 0x1e9c,
0x1eee, 0x1faa, 0x2076, 0x207d, 0x2082, 0x209e, 0x2117, 0x212e,
0x213a, 0x215b, 0x21ac, 0x21b0, 0x21b1, 0x21ca, 0x21e6, 0x2227,
- 0x2269, 0x22d3, 0x22e7, 0x22e8, 0x2308, 0x2319, 0x231d, 0x231e,
- 0x2337, 0x2579, 0x25ef, 0x2638, 0x2639, 0x2742, 0x281a, 0x2842,
- 0x28dc, 0x28e5, 0x2aab, 0x2d14, 0x2db7, 0x2e20, 0x2e26, 0x2e46,
- 0x2e48, 0x2e73, 0x2e96, 0x2eba, 0x2ee9, 0x2fd6, 0x3121, 0x3151,
- 0x3190, 0x31af, 0x31e3, 0x31f2, 0x31fe, 0x3218, 0x3240, 0x32b3,
- 0x32b6, 0x3468, 0x3481, 0x34c1, 0x34ca, 0x34f6, 0x351f, 0x3553,
- 0x35a8, 0x3605, 0x361a, 0x3630, 0x363d, 0x36ad, 0x382d, 0x392a,
- 0x3970, 0x3b8b, 0x3be6, 0x3c4f, 0x3d19, 0x3da7, 0x3fca, 0x4032,
- 0x4078, 0x430f, 0x4317, 0x4430, 0x4434, 0x4439, 0x444c, 0x446a,
- 0x447b, 0x4481, 0x46f6, 0x47cb, 0x484b, 0x48d2, 0x48e3, 0x4aa8,
- 0x4ab2, 0x4c15, 0x4c1c, 0x4c33, 0x4c41, 0x4c53, 0x4c61, 0x4cab,
- 0x4e83, 0x50fb, 0x575d, 0x5779, 0x5818, 0x58a0, 0x58f4, 0x5911,
- 0x5919, 0x593e, 0x594d, 0x5977, 0x5984, 0x599e, 0x59af, 0x59be,
- 0x5bb2, 0x5bd8, 0x5c88, 0x5df3, 0x5e2e, 0x5e49, 0x5eaf, 0x5ecd,
- 0x5f0e, 0x5f12, 0x5f2b, 0x5f66, 0x5f89, 0x607d, 0x60e2, 0x6286,
- 0x649c, 0x64a4, 0x6575, 0x660c, 0x6673, 0x675e, 0xce17, 0xce30
+ 0x2269, 0x22e7, 0x22e8, 0x2308, 0x2319, 0x231d, 0x231e, 0x2337,
+ 0x2579, 0x25ef, 0x2638, 0x2639, 0x2742, 0x281a, 0x2842, 0x28dc,
+ 0x28e5, 0x2aab, 0x2d14, 0x2db7, 0x2e20, 0x2e26, 0x2e46, 0x2e48,
+ 0x2e73, 0x2e96, 0x2eba, 0x2ee9, 0x2fd6, 0x3121, 0x3151, 0x3190,
+ 0x31af, 0x31e3, 0x31f2, 0x31fe, 0x3218, 0x3240, 0x32b3, 0x32b6,
+ 0x3468, 0x3481, 0x34c1, 0x34ca, 0x34f6, 0x351f, 0x3553, 0x35a8,
+ 0x3605, 0x361a, 0x3630, 0x363d, 0x36ad, 0x382d, 0x392a, 0x3970,
+ 0x3b8b, 0x3be6, 0x3c4f, 0x3d19, 0x3da7, 0x3fca, 0x4032, 0x430f,
+ 0x4317, 0x4430, 0x4434, 0x4439, 0x444c, 0x446a, 0x447b, 0x4481,
+ 0x46f6, 0x47cb, 0x484b, 0x48d2, 0x48e3, 0x4aa8, 0x4ab2, 0x4c15,
+ 0x4c1c, 0x4c33, 0x4c41, 0x4c53, 0x4c61, 0x4cab, 0x4e83, 0x50fb,
+ 0x575d, 0x5779, 0x5818, 0x58a0, 0x58f4, 0x5911, 0x5919, 0x593e,
+ 0x594d, 0x5977, 0x5984, 0x599e, 0x59af, 0x59be, 0x5bb2, 0x5bd8,
+ 0x5c88, 0x5df3, 0x5e2e, 0x5e49, 0x5eaf, 0x5ecd, 0x5f0e, 0x5f12,
+ 0x5f2b, 0x5f66, 0x5f89, 0x607d, 0x60e2, 0x6286, 0x649c, 0x64a4,
+ 0x6575, 0x660c, 0x6673, 0x675e, 0xce17, 0xce30
};
/*Collect the unicode lists and glyph_id offsets*/
@@ -5733,7 +5693,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = {
},
{
.range_start = 12527, .range_length = 52785, .glyph_id_start = 200,
- .unicode_list = unicode_list_3, .glyph_id_ofs_list = NULL, .list_length = 160, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
+ .unicode_list = unicode_list_3, .glyph_id_ofs_list = NULL, .list_length = 158, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
}
};
diff --git a/src/ui/gui_assets/font/ko/koText.c b/src/ui/gui_assets/font/ko/koText.c
index dbeb8eb..d1de0ac 100644
--- a/src/ui/gui_assets/font/ko/koText.c
+++ b/src/ui/gui_assets/font/ko/koText.c
@@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 24 px
* Bpp: 2
- * Opts: --bpp 2 --size 24 --no-compress --font NotoSansKR-Regular.ttf --symbols "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~£¥·€가간갑강개갭거건검겠결경계고공과관구국그글금기까내너네넷념노는니다단당대더덤덧데도동되된드디딩또뛰라락란래랜러레렛려력렸로료루류르른를름리린림립마만맷메면명모무문미밀및바반받밝방배백버번법변보복본부분붙브블비빠사삭산상새색생샤서선설섬성세션소속손송수스습시식신실십싱아안않알암압액약어언얼업없엇에엔여연예오옵완요용우움웃워원월웨웹위유으은을음의이인일임입있잊자작잘잠장재잭전점정제져조종주준중즈증지진차참체초총추출취치카캔켜코크큰키타탐태택터테템토톤튜트파패펌페포표프플피필하한할함합해행허현형호화확환활 --format lvgl -o ../gui_assets/font/ko/koText.c
+ * Opts: --bpp 2 --size 24 --no-compress --font NotoSansKR-Regular.ttf --symbols "!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~£¥·€가간갑강개갭거건검겠결경계고공과관구국그글금기까내너네넷념노는니다단당대더덤덧데도동되된드디딩또뛰라락란래랜러레렛려력렸로료루류르른를름리린림립마만맷메면명모무문미밀및바반받밝방배백버번법변보복본부분붙브블비빠사삭산상새색생샤서선설섬성세션소속손송수스습시식신실십싱아안않알암압액약어언얼업없엇에엔여연예오옵완요용우움워원월웨웹위유으은을음의이인일임입있잊자작잘잠장재잭전점정제져조종주준중즈증지진차체초총추출취치카캔켜코크큰키타탐태택터테템토톤튜트파패펌페포표프플피필하한할함합해행허현형호화확환활 --format lvgl -o ../gui_assets/font/ko/koText.c
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
@@ -3349,22 +3349,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x40, 0x0, 0x3, 0xc0, 0xb, 0xea, 0xaa, 0xab,
0xc0, 0xb, 0xff, 0xff, 0xff, 0xc0,
- /* U+C6C3 "웃" */
- 0x0, 0x1, 0x65, 0x40, 0x0, 0x0, 0xbf, 0xff,
- 0xfd, 0x0, 0x3, 0xf4, 0x0, 0x6f, 0x80, 0xb,
- 0x80, 0x0, 0x3, 0xc0, 0xb, 0x40, 0x0, 0x3,
- 0xd0, 0xb, 0x80, 0x0, 0x3, 0xc0, 0x3, 0xf5,
- 0x0, 0x6f, 0x40, 0x0, 0xbf, 0xff, 0xf9, 0x0,
- 0x0, 0x1, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0,
- 0x0, 0x0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xff,
- 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3c, 0x0,
- 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0,
- 0x14, 0x0, 0x0, 0x0, 0x0, 0x28, 0x0, 0x0,
- 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0xbd,
- 0x0, 0x0, 0x0, 0x2, 0xef, 0x40, 0x0, 0x0,
- 0x1f, 0x83, 0xf4, 0x0, 0xb, 0xfd, 0x0, 0xbf,
- 0xe0, 0xf, 0x90, 0x0, 0x6, 0xe0,
-
/* U+C6CC "워" */
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x6a, 0x40,
0x3, 0xc0, 0x2f, 0xff, 0xc0, 0xf, 0x2, 0xe0,
@@ -4020,23 +4004,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0,
- /* U+CC38 "참" */
- 0x0, 0x2d, 0x0, 0x3, 0xc0, 0x0, 0xb, 0x40,
- 0x0, 0xf0, 0x0, 0x2, 0xe0, 0x0, 0x3c, 0x0,
- 0xff, 0xff, 0xfd, 0xf, 0x0, 0x2a, 0xbe, 0xaa,
- 0x3, 0xc0, 0x0, 0xb, 0x80, 0x0, 0xfa, 0x80,
- 0x3, 0xf0, 0x0, 0x3f, 0xf0, 0x1, 0xfd, 0x0,
- 0xf, 0x0, 0x0, 0xf7, 0xd0, 0x3, 0xc0, 0x1,
- 0xf4, 0x7e, 0x0, 0xf0, 0x6, 0xf4, 0x3, 0xf8,
- 0x3c, 0x1, 0xf4, 0x0, 0x1c, 0xf, 0x0, 0x0,
- 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
- 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0xf,
- 0xaa, 0xaa, 0xaf, 0x0, 0x3, 0xc0, 0x0, 0x3,
- 0xc0, 0x0, 0xf0, 0x0, 0x0, 0xf0, 0x0, 0x3c,
- 0x0, 0x0, 0x3c, 0x0, 0xf, 0x0, 0x0, 0xf,
- 0x0, 0x3, 0xea, 0xaa, 0xab, 0xc0, 0x0, 0xff,
- 0xff, 0xff, 0xf0, 0x0,
-
/* U+CCB4 "체" */
0x0, 0x0, 0x0, 0x0, 0x28, 0x0, 0xe0, 0x2,
0xc0, 0xf0, 0x3, 0x80, 0xb, 0x3, 0xc0, 0xe,
@@ -5091,99 +5058,97 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
{.bitmap_index = 21145, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 21255, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 21360, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21470, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21580, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21685, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21790, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 21895, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 22005, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22110, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22209, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22314, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 21470, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 21575, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 21680, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 21785, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 21895, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22000, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22099, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22204, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 22294, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 22404, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 22514, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22624, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22734, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22833, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 22932, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23037, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23142, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23247, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22624, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22723, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22822, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 22927, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23032, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23137, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23242, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 23352, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23462, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23572, .adv_w = 353, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 23693, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23809, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 23925, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24041, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24162, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 24272, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24377, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24482, .adv_w = 353, .box_w = 19, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 24592, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23462, .adv_w = 353, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 23583, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23699, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23815, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 23931, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 24052, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 24162, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 24267, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 24372, .adv_w = 353, .box_w = 19, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 24482, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 24587, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 24697, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 24807, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 24917, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
- {.bitmap_index = 25007, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 25112, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 25217, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 25322, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 25427, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
- {.bitmap_index = 25512, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 25617, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25722, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 25827, .adv_w = 353, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 25948, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26064, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26169, .adv_w = 353, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = 1},
- {.bitmap_index = 26264, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26374, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26484, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26594, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 26699, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26798, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 26914, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 27019, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 27118, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
- {.bitmap_index = 27203, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
- {.bitmap_index = 27288, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 27393, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 27498, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 27608, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 27718, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 27817, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 27916, .adv_w = 353, .box_w = 17, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 28010, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 28109, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
- {.bitmap_index = 28208, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 1},
- {.bitmap_index = 28298, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 28408, .adv_w = 353, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 28519, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
- {.bitmap_index = 28609, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 28725, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 28835, .adv_w = 353, .box_w = 19, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 28945, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 29055, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
- {.bitmap_index = 29140, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
- {.bitmap_index = 29230, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
- {.bitmap_index = 29320, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29430, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29535, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29640, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29756, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29872, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 29993, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 30114, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 30235, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 30340, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 30445, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30550, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30660, .adv_w = 353, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
- {.bitmap_index = 30775, .adv_w = 353, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = 0},
- {.bitmap_index = 30875, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 30991, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 31112, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
- {.bitmap_index = 31228, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2}
+ {.bitmap_index = 24807, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
+ {.bitmap_index = 24897, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25002, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25107, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25212, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25317, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 25402, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25507, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25612, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25717, .adv_w = 353, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 25838, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 25943, .adv_w = 353, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 26038, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26148, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26258, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26368, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 26473, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26572, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26688, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26793, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 26892, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 26977, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 27062, .adv_w = 353, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 27167, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 27272, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27382, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27492, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27591, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27690, .adv_w = 353, .box_w = 17, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27784, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27883, .adv_w = 353, .box_w = 18, .box_h = 22, .ofs_x = 2, .ofs_y = -2},
+ {.bitmap_index = 27982, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 28072, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 28182, .adv_w = 353, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 28293, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
+ {.bitmap_index = 28383, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 28499, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 28609, .adv_w = 353, .box_w = 19, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 28719, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 28829, .adv_w = 353, .box_w = 20, .box_h = 17, .ofs_x = 1, .ofs_y = 1},
+ {.bitmap_index = 28914, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
+ {.bitmap_index = 29004, .adv_w = 353, .box_w = 20, .box_h = 18, .ofs_x = 1, .ofs_y = 0},
+ {.bitmap_index = 29094, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29204, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29309, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29414, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29530, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29646, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29767, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 29888, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 30009, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 30114, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 30219, .adv_w = 353, .box_w = 19, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30324, .adv_w = 353, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30434, .adv_w = 353, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
+ {.bitmap_index = 30549, .adv_w = 353, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = 0},
+ {.bitmap_index = 30649, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 30765, .adv_w = 353, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 30886, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
+ {.bitmap_index = 31002, .adv_w = 353, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2}
};
/*---------------------
@@ -5211,18 +5176,18 @@ static const uint16_t unicode_list_1[] = {
0xc24e, 0xc4a1, 0xc4a5, 0xc4a7, 0xc4a9, 0xc4b1, 0xc4b2, 0xc4be,
0xc4da, 0xc511, 0xc515, 0xc519, 0xc522, 0xc523, 0xc524, 0xc52d,
0xc531, 0xc549, 0xc54d, 0xc565, 0xc581, 0xc592, 0xc5a1, 0xc5f1,
- 0xc606, 0xc60d, 0xc61d, 0xc620, 0xc629, 0xc62d, 0xc631, 0xc645,
- 0xc656, 0xc661, 0xc67d, 0xc699, 0xc69d, 0xc6a1, 0xc6a9, 0xc6b5,
- 0xc6d1, 0xc6d5, 0xc6d9, 0xc6e1, 0xc6e2, 0xc6e5, 0xc6e7, 0xc6ed,
- 0xc6ee, 0xc6f5, 0xc6fd, 0xc702, 0xc709, 0xc70a, 0xc761, 0xc76d,
- 0xc772, 0xc779, 0xc795, 0xc7cd, 0xc7e2, 0xc859, 0xc85d, 0xc86e,
- 0xc8e5, 0xc8fa, 0xc91d, 0xc921, 0xcb85, 0xcb95, 0xcc11, 0xcc65,
- 0xcc7a, 0xccf1, 0xccf9, 0xcd45, 0xcdb5, 0xcdd1, 0xcdf1, 0xce79,
- 0xceb1, 0xcfc9, 0xcfcd, 0xd001, 0xd01d, 0xd02d, 0xd039, 0xd03a,
- 0xd08d, 0xd0a9, 0xd0b9, 0xd0fd, 0xd101, 0xd1f9, 0xd215, 0xd269,
- 0xd285, 0xd2e9, 0xd2f5, 0xd349, 0xd3b9, 0xd461, 0xd469, 0xd499,
- 0xd4a1, 0xd4b5, 0xd4b9, 0xd4bd, 0xd4c5, 0xd4c6, 0xd4d1, 0xd4e6,
- 0xd525, 0xd561, 0xd572, 0xd595, 0xd5b1, 0xd5b2, 0xd5b5, 0xd5b9
+ 0xc606, 0xc60d, 0xc61d, 0xc629, 0xc62d, 0xc631, 0xc645, 0xc656,
+ 0xc661, 0xc67d, 0xc699, 0xc69d, 0xc6a1, 0xc6a9, 0xc6b5, 0xc6d1,
+ 0xc6d5, 0xc6d9, 0xc6e1, 0xc6e2, 0xc6e5, 0xc6e7, 0xc6ed, 0xc6ee,
+ 0xc6f5, 0xc6fd, 0xc702, 0xc709, 0xc70a, 0xc761, 0xc76d, 0xc772,
+ 0xc779, 0xc795, 0xc7cd, 0xc7e2, 0xc859, 0xc85d, 0xc86e, 0xc8e5,
+ 0xc8fa, 0xc91d, 0xc921, 0xcb85, 0xcc11, 0xcc65, 0xcc7a, 0xccf1,
+ 0xccf9, 0xcd45, 0xcdb5, 0xcdd1, 0xcdf1, 0xce79, 0xceb1, 0xcfc9,
+ 0xcfcd, 0xd001, 0xd01d, 0xd02d, 0xd039, 0xd03a, 0xd08d, 0xd0a9,
+ 0xd0b9, 0xd0fd, 0xd101, 0xd1f9, 0xd215, 0xd269, 0xd285, 0xd2e9,
+ 0xd2f5, 0xd349, 0xd3b9, 0xd461, 0xd469, 0xd499, 0xd4a1, 0xd4b5,
+ 0xd4b9, 0xd4bd, 0xd4c5, 0xd4c6, 0xd4d1, 0xd4e6, 0xd525, 0xd561,
+ 0xd572, 0xd595, 0xd5b1, 0xd5b2, 0xd5b5, 0xd5b9
};
/*Collect the unicode lists and glyph_id offsets*/
@@ -5233,7 +5198,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = {
},
{
.range_start = 163, .range_length = 54714, .glyph_id_start = 96,
- .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 256, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
+ .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 254, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
}
};
@@ -5287,7 +5252,7 @@ static const uint8_t kern_left_class_mapping[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0
+ 0, 0, 0, 0, 0, 0
};
/*Map glyph_ids to kern right classes*/
@@ -5335,7 +5300,7 @@ static const uint8_t kern_right_class_mapping[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0
+ 0, 0, 0, 0, 0, 0
};
/*Kern values between classes*/
diff --git a/src/ui/gui_assets/wallet/walletLeap.c b/src/ui/gui_assets/wallet/walletLeap.c
deleted file mode 100644
index 342d1db..0000000
--- a/src/ui/gui_assets/wallet/walletLeap.c
+++ /dev/null
@@ -1,82 +0,0 @@
-#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
-#include "lvgl.h"
-#else
-#include "../lvgl/lvgl.h"
-#endif
-
-#ifndef LV_ATTRIBUTE_MEM_ALIGN
-#define LV_ATTRIBUTE_MEM_ALIGN
-#endif
-
-#ifndef LV_ATTRIBUTE_IMG_WALLETLEAP
-#define LV_ATTRIBUTE_IMG_WALLETLEAP
-#endif
-
-const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_WALLETLEAP uint8_t walletLeap_map[] = {
-#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0
- /*Pixel format: Blue: 5 bit Green: 6 bit, Red: 5 bit, Alpha 8 bit BUT the 2 color bytes are swapped*/
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x50, 0x36, 0xCE, 0x9F, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0x9F, 0x36, 0xCE, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x40, 0x36, 0xCE, 0x9F, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xAF, 0x36, 0xCE, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x0E, 0x20, 0x36, 0xCE, 0xCF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xDF, 0x3F, 0x0E, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x0E, 0x20, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xDF, 0x3F, 0x0E, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x0E, 0x20, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xFF, 0x46, 0xEF, 0xFF, 0x8F, 0x56, 0xFF, 0xB7, 0x99, 0xFF, 0x87, 0x54, 0xFF, 0x4F, 0x10, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x9F, 0x36, 0xCE, 0xCF, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xFF, 0x36, 0xEE, 0xEF, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xAF, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x4F, 0x10, 0xFF, 0x8F, 0x56, 0xFF, 0xAF, 0x78, 0xFF, 0x87, 0x54, 0xFF, 0x4F, 0x10, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xEF, 0x3F, 0x0E, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xFF, 0x87, 0x54, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xDE, 0xFF, 0x5F, 0x11, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x8F, 0x76, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xDE, 0xFF, 0x5F, 0x11, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xED, 0x50, 0x36, 0xCE, 0xFF, 0x4F, 0x10, 0xFF, 0xFF, 0xFF, 0xFF, 0xE7, 0x3C, 0xFF, 0x4A, 0xEA, 0xFF, 0x09, 0x22, 0xFF, 0x6B, 0xCD, 0xFF, 0xE7, 0x3C, 0xFF, 0xF7, 0xFF, 0xFF, 0x46, 0xEF, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x4F, 0x10, 0xFF, 0xFF, 0xFF, 0xFF, 0xE7, 0x3C, 0xFF, 0x4A, 0xEA, 0xFF, 0x19, 0xA4, 0xFF, 0x6B, 0xCD, 0xFF, 0xF7, 0x9E, 0xFF, 0xEF, 0xDE, 0xFF, 0x46, 0xEF, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xED, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x90, 0x36, 0xCE, 0xFF, 0xAF, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0x3A, 0x68, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x4A, 0xEA, 0xFF, 0xFF, 0xFF, 0xFF, 0x8F, 0x56, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0xB7, 0x99, 0xFF, 0xFF, 0xFF, 0xFF, 0x2A, 0x06, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x7C, 0x2F, 0xFF, 0xFF, 0xFF, 0xFF, 0x87, 0x54, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xFF, 0xB7, 0x99, 0xFF, 0xFF, 0xFF, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x2A, 0x06, 0xFF, 0xFF, 0xFF, 0xFF, 0x9F, 0x77, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0xCF, 0xBB, 0xFF, 0xF7, 0x9E, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x3A, 0x88, 0xFF, 0xFF, 0xFF, 0xFF, 0x9F, 0x77, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0xAF, 0x36, 0xCE, 0xFF, 0xAF, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0x4A, 0xEA, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x6B, 0xCD, 0xFF, 0xFF, 0xFF, 0xFF, 0x87, 0x54, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0xB7, 0x99, 0xFF, 0xFF, 0xFF, 0xFF, 0x2A, 0x06, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x6B, 0xCD, 0xFF, 0xFF, 0xFF, 0xFF, 0x77, 0x33, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x90, 0x36, 0xCE, 0xFF, 0x5F, 0x11, 0xFF, 0xFF, 0xFF, 0xFF, 0xE7, 0x3C, 0xFF, 0x4A, 0xEA, 0xFF, 0x19, 0xA4, 0xFF, 0x4A, 0xEA, 0xFF, 0xE7, 0x3C, 0xFF, 0xEF, 0xDE, 0xFF, 0x4F, 0x10, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x6F, 0x32, 0xFF, 0xFF, 0xFF, 0xFF, 0xE7, 0x3C, 0xFF, 0x3A, 0x68, 0xFF, 0x19, 0xA4, 0xFF, 0x4A, 0xEA, 0xFF, 0xF7, 0x9E, 0xFF, 0xEF, 0xDE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xED, 0x40, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x87, 0x54, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0x5F, 0x11, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x9F, 0x77, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0x5F, 0x11, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xED, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x0E, 0x10, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x4F, 0x10, 0xFF, 0x9F, 0x77, 0xFF, 0xB7, 0x99, 0xFF, 0x8F, 0x55, 0xFF, 0x46, 0xEF, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x4F, 0x10, 0xFF, 0x9F, 0x77, 0xFF, 0xB7, 0x99, 0xFF, 0x8F, 0x55, 0xFF, 0x46, 0xEF, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x60, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x90, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xA0, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xA0, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x6F, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0x9F, 0x3F, 0x0E, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x90, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x8D, 0xFF, 0x09, 0x83, 0xFF, 0x11, 0xE3, 0xFF, 0x12, 0x44, 0xFF, 0x12, 0x85, 0xFF, 0x1A, 0xE6, 0xFF, 0x1B, 0xA7, 0xFF, 0x24, 0x08, 0xFF, 0x24, 0xA9, 0xFF, 0x2D, 0x0A, 0xFF, 0x2D, 0x6B, 0xFF, 0x36, 0x2C, 0xFF, 0x36, 0x8D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x70, 0x36, 0xCE, 0xAF, 0x36, 0xCE, 0x9F, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x40, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x8F, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x2D, 0xCC, 0xBF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x8D, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x12, 0x85, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2D, 0xEC, 0xAF, 0x00, 0x00, 0x00, 0x3F, 0x0E, 0x20, 0x36, 0xCE, 0xCF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x60, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xDF, 0x2D, 0xCC, 0x7F, 0x25, 0x4B, 0xFF, 0x36, 0x6D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x12, 0x85, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x12, 0xA5, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xAD, 0xFF, 0x25, 0x4B, 0xFF, 0x2E, 0x2D, 0xAF, 0x36, 0xEE, 0xEF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x70, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCD, 0xFF, 0x2D, 0x8C, 0xFF, 0x2D, 0xAC, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x24, 0xA9, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x24, 0xA9, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2D, 0xEC, 0xFF, 0x2D, 0xEC, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x60, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCD, 0xFF, 0x2D, 0x8C, 0xFF, 0x2E, 0x2D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x12, 0x85, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x12, 0xA5, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2E, 0x0C, 0xFF, 0x2D, 0x8C, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x0D, 0x30, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xAD, 0xFF, 0x2D, 0x8C, 0xFF, 0x36, 0x4D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x8D, 0xFF, 0x12, 0x85, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x12, 0xA5, 0xFF, 0x36, 0x8D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x4D, 0xFF, 0x2D, 0x8C, 0xFF, 0x36, 0xAD, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x0E, 0x10, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x6D, 0xFF, 0x25, 0x4B, 0xFF, 0x2E, 0x0C, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x24, 0xA9, 0xFF, 0x12, 0x44, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x09, 0x22, 0xFF, 0x12, 0xA5, 0xFF, 0x24, 0xA9, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2E, 0x0C, 0xFF, 0x25, 0x4B, 0xFF, 0x36, 0x4D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xED, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xDF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2D, 0xCC, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0xAC, 0xFF, 0x36, 0xAD, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x2C, 0xFF, 0x36, 0x8D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xAD, 0xFF, 0x2D, 0xAC, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0x8C, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x90, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xAD, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0xEC, 0xFF, 0x36, 0xAD, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xAD, 0xFF, 0x2D, 0xEC, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x36, 0x4D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xED, 0x50, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2D, 0xAC, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0xAC, 0xFF, 0x36, 0x4D, 0xFF, 0x36, 0x8D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xAD, 0xFF, 0x2E, 0x2D, 0xFF, 0x2D, 0xAC, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0x8C, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x0E, 0x10, 0x36, 0xEE, 0xEF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x6D, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0x6B, 0xFF, 0x2D, 0xAC, 0xFF, 0x2D, 0xEC, 0xFF, 0x2E, 0x0C, 0xFF, 0x2E, 0x2D, 0xFF, 0x36, 0x4D, 0xFF, 0x36, 0x4D, 0xFF, 0x2E, 0x0C, 0xFF, 0x2D, 0xEC, 0xFF, 0x2D, 0xCC, 0xFF, 0x2D, 0x6B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0xEC, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xBF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCD, 0xFF, 0x2D, 0x6B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x36, 0x6D, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x70, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2D, 0xCC, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x36, 0xCD, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xEE, 0x40, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x2E, 0x2D, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0x6B, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x9F, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x4D, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0xAC, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xDF, 0x3F, 0x0E, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0xCF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0x8D, 0xBF, 0x25, 0x4B, 0xAF, 0x25, 0x4B, 0xEF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xEF, 0x25, 0x4B, 0xBF, 0x2E, 0x0C, 0x90, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xFF, 0x36, 0xCE, 0xDF, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x60, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xEE, 0x70, 0x37, 0x0E, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2D, 0x4B, 0x30, 0x2D, 0x4B, 0x60, 0x25, 0x4B, 0x90, 0x25, 0x4B, 0xAF, 0x25, 0x4B, 0xBF, 0x2D, 0x4B, 0xDF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x25, 0x4B, 0xFF, 0x2D, 0x4B, 0xDF, 0x25, 0x4B, 0xCF, 0x25, 0x4B, 0xAF, 0x25, 0x4B, 0x90, 0x2D, 0x4B, 0x60, 0x2D, 0x4B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xCE, 0x60, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x36, 0xCE, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-#endif
-};
-
-const lv_img_dsc_t walletLeap = {
- .header.always_zero = 0,
- .header.w = 54,
- .header.h = 54,
- .data_size = 2916 * LV_IMG_PX_SIZE_ALPHA_BYTE,
- .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
- .data = walletLeap_map,
-};
diff --git a/src/ui/gui_chain/multi/web3/gui_trx.c b/src/ui/gui_chain/multi/web3/gui_trx.c
index 47c9720..9f99b1b 100644
--- a/src/ui/gui_chain/multi/web3/gui_trx.c
+++ b/src/ui/gui_chain/multi/web3/gui_trx.c
@@ -54,11 +54,11 @@ void *GuiGetTrxData(void)
} else {
parseResult = tron_parse_keystone(data, urType, mfp, sizeof(mfp), trxXpub);
}
-
+
CHECK_CHAIN_BREAK(parseResult);
g_parseResult = (void *)parseResult;
} while (0);
-
+
return g_parseResult;
}
@@ -130,7 +130,8 @@ void GetTrxToken(void *indata, void *param, uint32_t maxLen)
strcpy_s((char *)indata, maxLen, trx->detail->token);
}
-static const char* map_thor_asset_name(const char* raw) {
+static const char* map_thor_asset_name(const char* raw)
+{
if (strcmp(raw, "b") == 0) return "BTC";
if (strcmp(raw, "e") == 0) return "ETH";
if (strcmp(raw, "r") == 0 || strcmp(raw, "rune") == 0) return "RUNE";
@@ -197,13 +198,13 @@ void GetTrxSwapDstAsset(void *indata, void *param, uint32_t maxLen)
strcpy_s(out, maxLen, final_name);
} else {
ConvertToUpperCase(temp);
- char *separator = strpbrk(temp, "./~-");
+ char *separator = strpbrk(temp, "./~-");
if (separator) {
size_t chainLen = separator - temp;
const char *assetPart = separator + 1;
if (strncmp(temp, assetPart, chainLen) == 0 && assetPart[chainLen] == '\0') {
- *separator = '\0';
+ *separator = '\0';
}
}
strcpy_s(out, maxLen, temp);
@@ -223,7 +224,7 @@ void GetTrxSwapDstAddress(void *indata, void *param, uint32_t maxLen)
if (second_colon) {
const char *start = second_colon + 1;
const char *third_colon = strchr(start, ':');
-
+
if (third_colon) {
size_t len = third_colon - start;
if (len >= maxLen) len = maxLen - 1;
@@ -265,13 +266,13 @@ void GetTrxValueRaw(void *indata, void *param, uint32_t maxLen)
void TrxCheckVault(lv_event_t *e)
{
if (lv_event_get_code(e) == LV_EVENT_CLICKED) {
- lv_obj_t *v_btn = lv_event_get_current_target(e);
-
+ lv_obj_t *v_btn = lv_event_get_current_target(e);
+
lv_obj_t *address_card = lv_obj_get_parent(v_btn);
if (!address_card) return;
lv_obj_t *t_val_obj = lv_obj_get_child(address_card, 3);
-
+
if (t_val_obj) {
const char *address = lv_label_get_text(t_val_obj);
if (address && strlen(address) > 10) {
@@ -289,14 +290,14 @@ static UREncodeResult *GuiGetTrxSignUrDataDynamic(bool unLimit)
bool enable = IsPreviousLockScreenEnable();
SetLockScreen(false);
UREncodeResult *encodeResult = NULL;
-
+
void *data = g_isMulti ? g_urMultiResult->data : g_urResult->data;
QRCodeType urType = g_isMulti ? g_urMultiResult->ur_type : g_urResult->ur_type;
uint8_t mfp[4];
GetMasterFingerPrint(mfp);
uint8_t seed[SEED_LEN];
uint32_t fragmentLen = unLimit ? FRAGMENT_UNLIMITED_LENGTH : FRAGMENT_MAX_LENGTH_DEFAULT;
-
+
do {
int ret = GetAccountSeed(GetCurrentAccountIndex(), seed, SecretCacheGetPassword());
if (ret != 0) {
@@ -306,16 +307,16 @@ static UREncodeResult *GuiGetTrxSignUrDataDynamic(bool unLimit)
encodeResult = tron_sign_request(data, seed, GetCurrentAccountSeedLen(), fragmentLen);
} else {
encodeResult = tron_sign_keystone(data, urType, mfp, sizeof(mfp), GetCurrentAccountPublicKey(XPUB_TYPE_TRX),
- SOFTWARE_VERSION, seed, GetCurrentAccountSeedLen());
+ SOFTWARE_VERSION, seed, GetCurrentAccountSeedLen());
}
-
+
CHECK_CHAIN_BREAK(encodeResult);
} while (0);
memset_s(seed, sizeof(seed), 0, sizeof(seed));
ClearSecretCache();
SetLockScreen(enable);
-
+
return encodeResult;
}
@@ -330,7 +331,7 @@ UREncodeResult *GuiGetTrxSignUrDataUnlimited(void)
}
void *GuiGetTrxPersonalMessage(void)
-{
+{
CHECK_FREE_PARSE_RESULT(g_parseResult);
uint8_t mfp[4];
@@ -344,10 +345,10 @@ void *GuiGetTrxPersonalMessage(void)
CHECK_CHAIN_BREAK(result);
PtrT_TransactionParseResult_DisplayTRONPersonalMessage parseResult = tron_parse_personal_message(data, trxXpub);
-
+
CHECK_CHAIN_BREAK(parseResult);
-
- g_parseResult = (void *)parseResult;
+
+ g_parseResult = (void *)parseResult;
} while (0);
free_TransactionCheckResult(result);
@@ -355,7 +356,7 @@ void *GuiGetTrxPersonalMessage(void)
}
void GetTrxPersonalMessageType(void *indata, void *param, uint32_t maxLen)
-{
+{
if (param == NULL) {
strcpy_s((char *)indata, maxLen, "raw_message");
return;
@@ -422,7 +423,7 @@ void GetTrxMessageRaw(void *indata, void *param, uint32_t maxLen)
}
bool GetTrxMessageFromExist(void *indata, void *param)
-{
+{
if (param == NULL) return false;
DisplayTRONPersonalMessage *trx = (DisplayTRONPersonalMessage *)param;
return trx->from != NULL;
diff --git a/src/ui/gui_components/gui_qr_hintbox.c b/src/ui/gui_components/gui_qr_hintbox.c
index e73a5d0..5c3c34a 100644
--- a/src/ui/gui_components/gui_qr_hintbox.c
+++ b/src/ui/gui_components/gui_qr_hintbox.c
@@ -188,7 +188,7 @@ void GuiNormalHitBoxOpen(const char *title, const char *content)
}
static void GuiQRCodeHintBoxOpenByLayout(const char *qrdata, const char *title, const char *subtitle,
- const GuiQrHintBoxLayoutParam_t *layout, uint8_t layoutType)
+ const GuiQrHintBoxLayoutParam_t *layout, uint8_t layoutType)
{
lv_obj_t *parent, *button, *qrCodeCont, *qrCode, *label;
if (g_qrHintBox != NULL && g_qrHintBoxLayout != layoutType) {
diff --git a/src/ui/gui_components/gui_status_bar.c b/src/ui/gui_components/gui_status_bar.c
index 2d38651..8ae1a2b 100644
--- a/src/ui/gui_components/gui_status_bar.c
+++ b/src/ui/gui_components/gui_status_bar.c
@@ -171,7 +171,6 @@ const static WalletInfo_t g_walletBtn[] = {
{WALLET_LIST_THORWALLET, "THORWallet", &walletThorWallet},
{WALLET_LIST_TONKEEPER, "Tonkeeper", &walletTonkeeper},
{WALLET_LIST_BEGIN, "Begin", &walletBegin},
- {WALLET_LIST_LEAP, "Leap", &walletLeap},
{WALLET_LIST_NIGHTLY, "Nightly", &walletNightly},
{WALLET_LIST_SUIET, "Suiet", &walletSuiet},
// {WALLET_LIST_CAKE, "Cake Wallet", &walletCake},
diff --git a/src/ui/gui_frame/gui_resource.h b/src/ui/gui_frame/gui_resource.h
index 7023417..b2671b8 100644
--- a/src/ui/gui_frame/gui_resource.h
+++ b/src/ui/gui_frame/gui_resource.h
@@ -275,7 +275,6 @@ LV_IMG_DECLARE(walletUniSat);
LV_IMG_DECLARE(walletXBull);
LV_IMG_DECLARE(walletTonkeeper);
LV_IMG_DECLARE(walletKeystone);
-LV_IMG_DECLARE(walletLeap);
LV_IMG_DECLARE(walletThorWallet);
LV_IMG_DECLARE(walletNightly);
LV_IMG_DECLARE(walletBegin);
diff --git a/src/ui/gui_wallet/multi/web3/gui_wallet.c b/src/ui/gui_wallet/multi/web3/gui_wallet.c
index ce47335..d95efa9 100644
--- a/src/ui/gui_wallet/multi/web3/gui_wallet.c
+++ b/src/ui/gui_wallet/multi/web3/gui_wallet.c
@@ -461,39 +461,6 @@ UREncodeResult *GuiGetKeplrDataByIndex(uint32_t index)
return urEncode;
}
-UREncodeResult *GuiGetLeapData(void)
-{
-#define CHAIN_AMOUNT 4
- uint8_t mfp[4] = {0};
- GetMasterFingerPrint(mfp);
- PtrT_CSliceFFI_KeplrAccount publicKeys = SRAM_MALLOC(sizeof(CSliceFFI_KeplrAccount));
- GuiChainCoinType chains[CHAIN_AMOUNT] = {
- CHAIN_ATOM,
- CHAIN_EVMOS,
- CHAIN_RUNE,
- CHAIN_SCRT
- };
- KeplrAccount keys[CHAIN_AMOUNT];
- publicKeys->data = keys;
- publicKeys->size = CHAIN_AMOUNT;
-
- for (uint8_t i = 0; i < CHAIN_AMOUNT; i++) {
- const CosmosChain_t *chain = GuiGetCosmosChain(chains[i]);
- keys[i].xpub = GetCurrentAccountPublicKey(chain->xpubType);
- keys[i].name = "Account-1";
- keys[i].path = SRAM_MALLOC(BUFFER_SIZE_32);
- snprintf_s(keys[i].path, BUFFER_SIZE_32, "M/44'/%u'/0'/0/0", chain->coinType);
- }
-
- UREncodeResult *urEncode = get_connect_keplr_wallet_ur(mfp, sizeof(mfp), publicKeys);
- CHECK_CHAIN_PRINT(urEncode);
- for (uint8_t i = 0; i < CHAIN_AMOUNT; i++) {
- SRAM_FREE(keys[i].path);
- }
- SRAM_FREE(publicKeys);
- return urEncode;
-}
-
UREncodeResult *GuiGetXrpToolkitDataByIndex(uint16_t index)
{
uint8_t mfp[4] = {0};
diff --git a/src/ui/gui_wallet/multi/web3/gui_wallet.h b/src/ui/gui_wallet/multi/web3/gui_wallet.h
index c3be1d3..4213be8 100644
--- a/src/ui/gui_wallet/multi/web3/gui_wallet.h
+++ b/src/ui/gui_wallet/multi/web3/gui_wallet.h
@@ -8,7 +8,6 @@
UREncodeResult *GuiGetStandardBtcData(void);
UREncodeResult *GuiGetKeplrDataByIndex(uint32_t index);
-UREncodeResult *GuiGetLeapData(void);
UREncodeResult *GuiGetWanderData(void);
UREncodeResult *GuiGetCompanionAppData(void);
UREncodeResult *GuiGetOkxWalletData(void);
diff --git a/src/ui/gui_widgets/gui_connect_wallet_widgets.h b/src/ui/gui_widgets/gui_connect_wallet_widgets.h
index 681153b..8444102 100644
--- a/src/ui/gui_widgets/gui_connect_wallet_widgets.h
+++ b/src/ui/gui_widgets/gui_connect_wallet_widgets.h
@@ -53,7 +53,7 @@ typedef enum {
WALLET_LIST_THORWALLET,
WALLET_LIST_TONKEEPER,
WALLET_LIST_BEGIN,
- WALLET_LIST_LEAP,
+ WALLET_LIST_RESERVED_0,
WALLET_LIST_NIGHTLY,
WALLET_LIST_SUIET,
WALLET_LIST_CAKE,
diff --git a/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c b/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c
index 98f3067..be987e3 100644
--- a/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c
+++ b/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c
@@ -328,14 +328,6 @@ static void WalletTutorialsInit()
g_tutorials[WALLET_LIST_KEYSTONE].items[0].qrTitle = _("connect_keystone_title");
g_tutorials[WALLET_LIST_KEYSTONE].items[0].qrUrl = _("connect_keystone_link");
- // WALLET_LIST_LEAP_WALLET
- g_tutorials[WALLET_LIST_LEAP].len = 1;
- g_tutorials[WALLET_LIST_LEAP].desc = _("connect_wallet_desc");
- g_tutorials[WALLET_LIST_LEAP].items[0].walletName = _("connect_leap_title");
- g_tutorials[WALLET_LIST_LEAP].items[0].url = _("connect_leap_link");
- g_tutorials[WALLET_LIST_LEAP].items[0].qrTitle = _("connect_leap_title");
- g_tutorials[WALLET_LIST_LEAP].items[0].qrUrl = _("connect_leap_link");
-
// WALLET_LIST_CAKE
g_tutorials[WALLET_LIST_CAKE].len = 1;
g_tutorials[WALLET_LIST_CAKE].desc = _("connect_wallet_desc");
diff --git a/src/ui/gui_widgets/multi/gui_key_derivation_request_widgets.c b/src/ui/gui_widgets/multi/gui_key_derivation_request_widgets.c
index 4ccb192..9bd7d86 100644
--- a/src/ui/gui_widgets/multi/gui_key_derivation_request_widgets.c
+++ b/src/ui/gui_widgets/multi/gui_key_derivation_request_widgets.c
@@ -148,8 +148,6 @@ static void RecalcCurrentWalletIndex(char *origin)
g_walletIndex = WALLET_LIST_ETERNL;
} else if (strcmp("Typhon Extension", origin) == 0) {
g_walletIndex = WALLET_LIST_TYPHON;
- } else if (strcmp("Leap Mobile", origin) == 0) {
- g_walletIndex = WALLET_LIST_LEAP;
} else if (strcmp("Begin", origin) == 0) {
g_walletIndex = WALLET_LIST_BEGIN;
} else if (strcmp("Medusa", origin) == 0) {
diff --git a/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c b/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c
index 641edf8..9b29351 100644
--- a/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c
+++ b/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c
@@ -122,11 +122,6 @@ static const lv_img_dsc_t *g_keplrCoinArray[8] = {
&coinXprt, &coinAxl, &coinBoot, &coinCro,
};
-static const lv_img_dsc_t *g_leapCoinArray[8] = {
- &coinAtom, &coinOsmo, &coinInj, &coinStrd,
- &coinStars, &coinJuno, &coinScrt, &coinDym
-};
-
static const lv_img_dsc_t *g_wanderCoinArray[1] = {
&coinAr,
};
@@ -243,7 +238,6 @@ WalletListItem_t g_walletListArray[] = {
{WALLET_LIST_THORWALLET, &walletThorWallet, "THORWallet", g_ThorWalletCoinArray, 2, true, WALLET_FILTER_ETH | WALLET_FILTER_OTHER},
{WALLET_LIST_PETRA, &walletPetra, "Petra", g_petraCoinArray, 1, true, WALLET_FILTER_OTHER},
{WALLET_LIST_KEPLR, &walletKeplr, "Keplr", g_keplrCoinArray, 8, true, WALLET_FILTER_OTHER},
- {WALLET_LIST_LEAP, &walletLeap, "Leap", g_leapCoinArray, 8, true, WALLET_FILTER_OTHER},
{WALLET_LIST_MINT_SCAN, &walletMintScan, "Mintscan", g_keplrCoinArray, 8, true, WALLET_FILTER_OTHER},
{WALLET_LIST_WANDER, &walletWander, "Wander", g_wanderCoinArray, 1, true, WALLET_FILTER_OTHER},
{WALLET_LIST_BEACON, &walletBeacon, "Beacon", g_beaconCoinArray, 2, true, WALLET_FILTER_OTHER},
@@ -1213,10 +1207,6 @@ void GuiConnectWalletSetQrdata(WALLET_LIST_INDEX_ENUM index)
func = GuiGetKeplrData;
AddKeplrCoinsAndAddressUI();
break;
- case WALLET_LIST_LEAP:
- func = GuiGetLeapData;
- AddCoinsFromArray(g_leapCoinArray, NUMBER_OF_ARRAYS(g_leapCoinArray), true, 32 * 8);
- break;
case WALLET_LIST_WANDER:
func = GuiGetWanderData;
AddCoinsFromArray(g_wanderCoinArray, NUMBER_OF_ARRAYS(g_wanderCoinArray), false, 0);
diff --git a/src/ui/lv_i18n/data.csv b/src/ui/lv_i18n/data.csv
index ce48022..af08196 100644
--- a/src/ui/lv_i18n/data.csv
+++ b/src/ui/lv_i18n/data.csv
@@ -910,8 +910,6 @@ Wallet Profile,24,wallet_profile_mid_btn,Wallet Profile,Профиль коше
,20,hardware_call_approve_notice,"Please note, if the path not saved on the device will require a password to be recalculated.","Обратите внимание, что если путь не сохранен на устройстве, потребуется пересчитать пароль.",주의사항: 경로가 기기에 저장되어 있지 않으면 비밀번호를 다시 계산해야 합니다.,"请注意,如果路径未保存在设备上,将需要重新计算密码。","Tenga en cuenta que, si la ruta no se guarda en el dispositivo, se requerirá recalcular la contraseña.","Bitte beachten Sie, dass wenn der Pfad nicht auf dem Gerät gespeichert ist, ein Passwort neu berechnet werden muss.",注意事項: デバイスにパスが保存されていない場合、パスワードを再計算する必要があります。
,20,invaild_account_path,Invalid Account Path,Недействительный путь учетной записи,잘못된 계정 경로,无效的账户路径,Ruta de cuenta no válida,Ungültiger Kontopfad,無効なアカウントパス
,20,invaild_account_path_notice,Please re-enter the path in the software wallet and try again.,"Пожалуйста, повторно введите путь в программный кошелек и попробуйте еще раз.",소프트웨어 지갑에 경로를 다시 입력하고 다시 시도하십시오.,请在软件钱包中重新输入路径并重试。,Vuelva a ingresar la ruta en la billetera de software e inténtelo de nuevo.,Bitte geben Sie den Pfad im Software-Wallet erneut ein und versuchen Sie es wieder.,ソフトウェアウォレットでパスを再入力してもう一度試してください。
-,20,connect_leap_title,Leap,Leap,Leap,Leap,Leap,Leap,Leap
-,20,connect_leap_link,https://keyst.one/t/3rd/leap,https://keyst.one/t/3rd/leap,https://keyst.one/t/3rd/leap,https://keyst.one/t/3rd/leap,https://keyst.one/t/3rd/leap,https://keyst.one/t/3rd/leap,https://keyst.one/t/3rd/leap
,20,solana_ata_desc,"The account receiving funds. An Associated Token Account (ATA) on Solana. Each user has one ATA per token type, and tokens are sent to the destination ATA.","Счет, получающий средства. Ассоциированный токеновый счет (ATA) на Solana. Каждый пользователь имеет один ATA на каждый тип токена, и токены отправляются на целевой ATA.","자금을 받는 계정. Solana의 연계 토큰 계정(ATA). 각 사용자는 토큰 유형당 하나의 ATA를 가지며, 토큰은 대상 ATA로 전송됩니다.","Solana上的关联代币帐户(ATA)。每个用户对每种代币类型都有一个ATA,代币被发送到目标ATA。","La cuenta que recibe los fondos. Una Cuenta de Token Asociada (ATA) en Solana. Cada usuario tiene una ATA por tipo de token, y los tokens se envían a la ATA de destino.","Das Konto, das Geld empfängt. Ein zugeordnetes Token-Konto (ATA) auf Solana. Jeder Benutzer hat ein ATA pro Token-Typ, und Tokens werden an das Ziel-ATA gesendet.",資金を受け取るアカウント。Solanaのアソシエイテッド・トークン・アカウント(ATA)。ユーザーはトークンタイプごとに1つのATAを持ち、トークンは宛先のATAに送信されます。
,20,solana_source_ata,The account sending funds.,"Счет, отправляющий средства, называется исходным счетом (source account) в блокчейне Solana.",자금을 보내는 계정을 Solana 블록체인에서는 소스 계정(source account)이라고 합니다.,发送资金的账户在 Solana 区块链中被称为源账户(source account)。,La cuenta que envía los fondos se conoce como cuenta de origen (source account) en la blockchain de Solana.,"Das Konto, das Geld sendet, wird in der Solana-Blockchain als Quellkonto (Source Account) bezeichnet.",資金を送信するアカウントは、Solanaブロックチェーンではソースアカウント(source account)と呼ばれています。
,20,solana_auth_account,The account with transaction authority.,"Аккаунт, обладающий полномочиями на проведение транзакций, называется аутентифицирующим аккаунтом (auth account) в блокчейне Solana.",트랜잭션 권한을 가진 계정을 Solana 블록체인에서는 인증 계정(auth account)이라고 합니다.,拥有交易权限的账户在 Solana 区块链中被称为授权账户(auth account)。,La cuenta con autoridad de transacción se conoce como cuenta de autorización (auth account) en la blockchain de Solana.,Das Konto mit Transaktionsberechtigung wird in der Solana-Blockchain als Autorisierungskonto (Auth Account) bezeichnet.,トランザクションの権限を持つアカウントは、Solanaブロックチェーンでは認証アカウント(auth account)と呼ばれています。
diff --git a/src/ui/lv_i18n/lv_i18n.c b/src/ui/lv_i18n/lv_i18n.c
index 269e1a5..f660eee 100644
--- a/src/ui/lv_i18n/lv_i18n.c
+++ b/src/ui/lv_i18n/lv_i18n.c
@@ -234,8 +234,6 @@ const static lv_i18n_phrase_t en_singulars[] = {
{"connect_keplr_title", "Keplr (Extension)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
@@ -1190,8 +1188,6 @@ const static lv_i18n_phrase_t de_singulars[] = {
{"connect_keplr_title", "Keplr (Erweiterung)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
@@ -2146,8 +2142,6 @@ const static lv_i18n_phrase_t es_singulars[] = {
{"connect_keplr_title", "Keplr (Extensión)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
@@ -3099,8 +3093,6 @@ const static lv_i18n_phrase_t ja_singulars[] = {
{"connect_keplr_title", "Keplr(エクステンション)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
@@ -4050,8 +4042,6 @@ const static lv_i18n_phrase_t ko_singulars[] = {
{"connect_keplr_title", "Keplr (확장)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
@@ -5001,8 +4991,6 @@ const static lv_i18n_phrase_t ru_singulars[] = {
{"connect_keplr_title", "Keplr (Расширение)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
@@ -5960,8 +5948,6 @@ const static lv_i18n_phrase_t zh_cn_singulars[] = {
{"connect_keplr_title", "Keplr(扩展程序端)"},
{"connect_keystone_link", "https://keyst.one/t/3rd/keystone"},
{"connect_keystone_title", "Keystone Nexus"},
- {"connect_leap_link", "https://keyst.one/t/3rd/leap"},
- {"connect_leap_title", "Leap"},
{"connect_medusa_link", "https://keyst.one/t/3rd/medusa"},
{"connect_medusa_title", "Medusa"},
{"connect_mintscan_link", "https://keyst.one/t/3rd/mintscan"},
diff --git a/src/utils/user_utils.c b/src/utils/user_utils.c
index 204a7b9..d49c410 100644
--- a/src/utils/user_utils.c
+++ b/src/utils/user_utils.c
@@ -169,7 +169,7 @@ void ConvertToUpperCase(char *str)
{
if (str == NULL) return;
while (*str) {
- *str = (char)toupper((unsigned char)*str);
+ *str = (char)toupper((unsigned char) * str);
str++;
}
}
diff --git a/src/webusb_protocol/protocol_parse.c b/src/webusb_protocol/protocol_parse.c
index e90e407..7d1e7fd 100644
--- a/src/webusb_protocol/protocol_parse.c
+++ b/src/webusb_protocol/protocol_parse.c
@@ -14,30 +14,30 @@
#define PROTOCOL_PARSE_OVERTIME 500
-void ProtocolReceivedData(const uint8_t *data, uint32_t len, ProtocolSendCallbackFunc_t sendFunc)
-{
- static uint32_t lastTick = 0;
- uint32_t tick;
- static const struct ProtocolParser *currentParser = NULL;
-
- if (data == NULL || len == 0) {
- return;
- }
-
- tick = osKernelGetTickCount();
- currentParser = NewInternalProtocolParser();
-#ifndef BTC_ONLY
+void ProtocolReceivedData(const uint8_t *data, uint32_t len, ProtocolSendCallbackFunc_t sendFunc)
+{
+ static uint32_t lastTick = 0;
+ uint32_t tick;
+ static const struct ProtocolParser *currentParser = NULL;
+
+ if (data == NULL || len == 0) {
+ return;
+ }
+
+ tick = osKernelGetTickCount();
+ currentParser = NewInternalProtocolParser();
+#ifndef BTC_ONLY
if (data[0] == EAPDU_PROTOCOL_HEADER && !GetIsReceivingFile()) {
currentParser = NewEApduProtocolParser();
}
#endif
- if (currentParser->getRcvCount() != 0) {
- if (tick - lastTick > PROTOCOL_PARSE_OVERTIME) {
- currentParser->resetRcvCount();
- }
- }
- lastTick = tick;
- currentParser->registerSendFunc(sendFunc);
+ if (currentParser->getRcvCount() != 0) {
+ if (tick - lastTick > PROTOCOL_PARSE_OVERTIME) {
+ currentParser->resetRcvCount();
+ }
+ }
+ lastTick = tick;
+ currentParser->registerSendFunc(sendFunc);
currentParser->parse(data, len);
-}
+}
diff --git a/src/webusb_protocol/services/service_file_trans.c b/src/webusb_protocol/services/service_file_trans.c
index 95b8e49..9ef40ae 100644
--- a/src/webusb_protocol/services/service_file_trans.c
+++ b/src/webusb_protocol/services/service_file_trans.c
@@ -113,10 +113,10 @@ static const uint8_t g_webUsbPubKey[] = {
};
static const uint8_t g_webUsbUpdatePubKey[] = {
- 0x04, 0x3F, 0xE7, 0x7F, 0xD7, 0xA1, 0x92, 0x27, 0xB2, 0x63, 0x48, 0x05, 0xEB, 0xED, 0x40, 0xCA,
- 0x22, 0x6A, 0xA4, 0x05, 0xB9, 0x7F, 0x8D, 0x61, 0xD4, 0xEA, 0x26, 0x65, 0x9D, 0xDA, 0xF1, 0x1F,
- 0xEB, 0xE9, 0xFB, 0x35, 0xE9, 0x33, 0x41, 0x44, 0x18, 0x27, 0xFF, 0x44, 0x17, 0x86, 0xA1, 0x64,
- 0x17, 0xD7, 0x4F, 0x38, 0xC7, 0x22, 0x2F, 0xA3, 0x91, 0xFF, 0x27, 0x5D, 0x57, 0x37, 0x13, 0xEF,
+ 0x04, 0x3F, 0xE7, 0x7F, 0xD7, 0xA1, 0x92, 0x27, 0xB2, 0x63, 0x48, 0x05, 0xEB, 0xED, 0x40, 0xCA,
+ 0x22, 0x6A, 0xA4, 0x05, 0xB9, 0x7F, 0x8D, 0x61, 0xD4, 0xEA, 0x26, 0x65, 0x9D, 0xDA, 0xF1, 0x1F,
+ 0xEB, 0xE9, 0xFB, 0x35, 0xE9, 0x33, 0x41, 0x44, 0x18, 0x27, 0xFF, 0x44, 0x17, 0x86, 0xA1, 0x64,
+ 0x17, 0xD7, 0x4F, 0x38, 0xC7, 0x22, 0x2F, 0xA3, 0x91, 0xFF, 0x27, 0x5D, 0x57, 0x37, 0x13, 0xEF,
0x99
};
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.