├── .editorconfig ├── .envrc ├── .github ├── FUNDING.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── codegen.yml │ ├── dependabot-auto-merge.yml │ └── qa.yml ├── .gitignore ├── .typos.toml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── check_crate_size.sh ├── codegen ├── .gitignore ├── Cargo.toml ├── rust-toolchain.toml └── src │ ├── bin │ └── rasterize_chars_in_window.rs │ ├── bytes_outsourcer.rs │ ├── codegen_templates │ ├── Cargo.toml.txt │ ├── lib.rs.template.txt │ ├── size_mod.template.txt │ └── weight_mod.template.txt │ ├── font.rs │ ├── lib.rs │ ├── main.rs │ ├── res │ ├── NotoSansMono-Bold.ttf │ ├── NotoSansMono-Light.ttf │ ├── NotoSansMono-Regular.ttf │ └── NotoSansMono-Regular.ttf.license │ └── unicode.rs ├── codegen_n_build.sh ├── examples ├── minimal.rs ├── show_chars_in_window.rs └── transparent_background.rs ├── external ├── README.md ├── check-msrv │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── rust-toolchain.toml │ └── src │ │ └── main.rs └── check-size │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ └── src │ └── bin │ ├── check_size_all_features.rs │ ├── check_size_all_features_fixed_weight.rs │ ├── check_size_all_features_fixed_weight_and_raster_height.rs │ └── check_size_reference.rs ├── screenshot_bitmap_font.png ├── shell.nix └── src ├── bold ├── mod.rs ├── size_16.rs ├── size_20.rs ├── size_24.rs └── size_32.rs ├── lib.rs ├── light ├── mod.rs ├── size_16.rs ├── size_20.rs ├── size_24.rs └── size_32.rs ├── regular ├── mod.rs ├── size_16.rs ├── size_20.rs ├── size_24.rs └── size_32.rs └── res_rasterized_characters ├── 0x100_h16_wBold.txt ├── 0x100_h16_wLight.txt ├── 0x100_h16_wRegular.txt ├── 0x100_h20_wBold.txt ├── 0x100_h20_wLight.txt ├── 0x100_h20_wRegular.txt ├── 0x100_h24_wBold.txt ├── 0x100_h24_wLight.txt ├── 0x100_h24_wRegular.txt ├── 0x100_h32_wBold.txt ├── 0x100_h32_wLight.txt ├── 0x100_h32_wRegular.txt ├── 0x101_h16_wBold.txt ├── 0x101_h16_wLight.txt ├── 0x101_h16_wRegular.txt ├── 0x101_h20_wBold.txt ├── 0x101_h20_wLight.txt ├── 0x101_h20_wRegular.txt ├── 0x101_h24_wBold.txt ├── 0x101_h24_wLight.txt ├── 0x101_h24_wRegular.txt ├── 0x101_h32_wBold.txt ├── 0x101_h32_wLight.txt ├── 0x101_h32_wRegular.txt ├── 0x102_h16_wBold.txt ├── 0x102_h16_wLight.txt ├── 0x102_h16_wRegular.txt ├── 0x102_h20_wBold.txt ├── 0x102_h20_wLight.txt ├── 0x102_h20_wRegular.txt ├── 0x102_h24_wBold.txt ├── 0x102_h24_wLight.txt ├── 0x102_h24_wRegular.txt ├── 0x102_h32_wBold.txt ├── 0x102_h32_wLight.txt ├── 0x102_h32_wRegular.txt ├── 0x103_h16_wBold.txt ├── 0x103_h16_wLight.txt ├── 0x103_h16_wRegular.txt ├── 0x103_h20_wBold.txt ├── 0x103_h20_wLight.txt ├── 0x103_h20_wRegular.txt ├── 0x103_h24_wBold.txt ├── 0x103_h24_wLight.txt ├── 0x103_h24_wRegular.txt ├── 0x103_h32_wBold.txt ├── 0x103_h32_wLight.txt ├── 0x103_h32_wRegular.txt ├── 0x104_h16_wBold.txt ├── 0x104_h16_wLight.txt ├── 0x104_h16_wRegular.txt ├── 0x104_h20_wBold.txt ├── 0x104_h20_wLight.txt ├── 0x104_h20_wRegular.txt ├── 0x104_h24_wBold.txt ├── 0x104_h24_wLight.txt ├── 0x104_h24_wRegular.txt ├── 0x104_h32_wBold.txt ├── 0x104_h32_wLight.txt ├── 0x104_h32_wRegular.txt ├── 0x105_h16_wBold.txt ├── 0x105_h16_wLight.txt ├── 0x105_h16_wRegular.txt ├── 0x105_h20_wBold.txt ├── 0x105_h20_wLight.txt ├── 0x105_h20_wRegular.txt ├── 0x105_h24_wBold.txt ├── 0x105_h24_wLight.txt ├── 0x105_h24_wRegular.txt ├── 0x105_h32_wBold.txt ├── 0x105_h32_wLight.txt ├── 0x105_h32_wRegular.txt ├── 0x106_h16_wBold.txt ├── 0x106_h16_wLight.txt ├── 0x106_h16_wRegular.txt ├── 0x106_h20_wBold.txt ├── 0x106_h20_wLight.txt ├── 0x106_h20_wRegular.txt ├── 0x106_h24_wBold.txt ├── 0x106_h24_wLight.txt ├── 0x106_h24_wRegular.txt ├── 0x106_h32_wBold.txt ├── 0x106_h32_wLight.txt ├── 0x106_h32_wRegular.txt ├── 0x107_h16_wBold.txt ├── 0x107_h16_wLight.txt ├── 0x107_h16_wRegular.txt ├── 0x107_h20_wBold.txt ├── 0x107_h20_wLight.txt ├── 0x107_h20_wRegular.txt ├── 0x107_h24_wBold.txt ├── 0x107_h24_wLight.txt ├── 0x107_h24_wRegular.txt ├── 0x107_h32_wBold.txt ├── 0x107_h32_wLight.txt ├── 0x107_h32_wRegular.txt ├── 0x108_h16_wBold.txt ├── 0x108_h16_wLight.txt ├── 0x108_h16_wRegular.txt ├── 0x108_h20_wBold.txt ├── 0x108_h20_wLight.txt ├── 0x108_h20_wRegular.txt ├── 0x108_h24_wBold.txt ├── 0x108_h24_wLight.txt ├── 0x108_h24_wRegular.txt ├── 0x108_h32_wBold.txt ├── 0x108_h32_wLight.txt ├── 0x108_h32_wRegular.txt ├── 0x109_h16_wBold.txt ├── 0x109_h16_wLight.txt ├── 0x109_h16_wRegular.txt ├── 0x109_h20_wBold.txt ├── 0x109_h20_wLight.txt ├── 0x109_h20_wRegular.txt ├── 0x109_h24_wBold.txt ├── 0x109_h24_wLight.txt ├── 0x109_h24_wRegular.txt ├── 0x109_h32_wBold.txt ├── 0x109_h32_wLight.txt ├── 0x109_h32_wRegular.txt ├── 0x10a_h16_wBold.txt ├── 0x10a_h16_wLight.txt ├── 0x10a_h16_wRegular.txt ├── 0x10a_h20_wBold.txt ├── 0x10a_h20_wLight.txt ├── 0x10a_h20_wRegular.txt ├── 0x10a_h24_wBold.txt ├── 0x10a_h24_wLight.txt ├── 0x10a_h24_wRegular.txt ├── 0x10a_h32_wBold.txt ├── 0x10a_h32_wLight.txt ├── 0x10a_h32_wRegular.txt ├── 0x10b_h16_wBold.txt ├── 0x10b_h16_wLight.txt ├── 0x10b_h16_wRegular.txt ├── 0x10b_h20_wBold.txt ├── 0x10b_h20_wLight.txt ├── 0x10b_h20_wRegular.txt ├── 0x10b_h24_wBold.txt ├── 0x10b_h24_wLight.txt ├── 0x10b_h24_wRegular.txt ├── 0x10b_h32_wBold.txt ├── 0x10b_h32_wLight.txt ├── 0x10b_h32_wRegular.txt ├── 0x10c_h16_wBold.txt ├── 0x10c_h16_wLight.txt ├── 0x10c_h16_wRegular.txt ├── 0x10c_h20_wBold.txt ├── 0x10c_h20_wLight.txt ├── 0x10c_h20_wRegular.txt ├── 0x10c_h24_wBold.txt ├── 0x10c_h24_wLight.txt ├── 0x10c_h24_wRegular.txt ├── 0x10c_h32_wBold.txt ├── 0x10c_h32_wLight.txt ├── 0x10c_h32_wRegular.txt ├── 0x10d_h16_wBold.txt ├── 0x10d_h16_wLight.txt ├── 0x10d_h16_wRegular.txt ├── 0x10d_h20_wBold.txt ├── 0x10d_h20_wLight.txt ├── 0x10d_h20_wRegular.txt ├── 0x10d_h24_wBold.txt ├── 0x10d_h24_wLight.txt ├── 0x10d_h24_wRegular.txt ├── 0x10d_h32_wBold.txt ├── 0x10d_h32_wLight.txt ├── 0x10d_h32_wRegular.txt ├── 0x10e_h16_wBold.txt ├── 0x10e_h16_wLight.txt ├── 0x10e_h16_wRegular.txt ├── 0x10e_h20_wBold.txt ├── 0x10e_h20_wLight.txt ├── 0x10e_h20_wRegular.txt ├── 0x10e_h24_wBold.txt ├── 0x10e_h24_wLight.txt ├── 0x10e_h24_wRegular.txt ├── 0x10e_h32_wBold.txt ├── 0x10e_h32_wLight.txt ├── 0x10e_h32_wRegular.txt ├── 0x10f_h16_wBold.txt ├── 0x10f_h16_wLight.txt ├── 0x10f_h16_wRegular.txt ├── 0x10f_h20_wBold.txt ├── 0x10f_h20_wLight.txt ├── 0x10f_h20_wRegular.txt ├── 0x10f_h24_wBold.txt ├── 0x10f_h24_wLight.txt ├── 0x10f_h24_wRegular.txt ├── 0x10f_h32_wBold.txt ├── 0x10f_h32_wLight.txt ├── 0x10f_h32_wRegular.txt ├── 0x110_h16_wBold.txt ├── 0x110_h16_wLight.txt ├── 0x110_h16_wRegular.txt ├── 0x110_h20_wBold.txt ├── 0x110_h20_wLight.txt ├── 0x110_h20_wRegular.txt ├── 0x110_h24_wBold.txt ├── 0x110_h24_wLight.txt ├── 0x110_h24_wRegular.txt ├── 0x110_h32_wBold.txt ├── 0x110_h32_wLight.txt ├── 0x110_h32_wRegular.txt ├── 0x111_h16_wBold.txt ├── 0x111_h16_wLight.txt ├── 0x111_h16_wRegular.txt ├── 0x111_h20_wBold.txt ├── 0x111_h20_wLight.txt ├── 0x111_h20_wRegular.txt ├── 0x111_h24_wBold.txt ├── 0x111_h24_wLight.txt ├── 0x111_h24_wRegular.txt ├── 0x111_h32_wBold.txt ├── 0x111_h32_wLight.txt ├── 0x111_h32_wRegular.txt ├── 0x112_h16_wBold.txt ├── 0x112_h16_wLight.txt ├── 0x112_h16_wRegular.txt ├── 0x112_h20_wBold.txt ├── 0x112_h20_wLight.txt ├── 0x112_h20_wRegular.txt ├── 0x112_h24_wBold.txt ├── 0x112_h24_wLight.txt ├── 0x112_h24_wRegular.txt ├── 0x112_h32_wBold.txt ├── 0x112_h32_wLight.txt ├── 0x112_h32_wRegular.txt ├── 0x113_h16_wBold.txt ├── 0x113_h16_wLight.txt ├── 0x113_h16_wRegular.txt ├── 0x113_h20_wBold.txt ├── 0x113_h20_wLight.txt ├── 0x113_h20_wRegular.txt ├── 0x113_h24_wBold.txt ├── 0x113_h24_wLight.txt ├── 0x113_h24_wRegular.txt ├── 0x113_h32_wBold.txt ├── 0x113_h32_wLight.txt ├── 0x113_h32_wRegular.txt ├── 0x114_h16_wBold.txt ├── 0x114_h16_wLight.txt ├── 0x114_h16_wRegular.txt ├── 0x114_h20_wBold.txt ├── 0x114_h20_wLight.txt ├── 0x114_h20_wRegular.txt ├── 0x114_h24_wBold.txt ├── 0x114_h24_wLight.txt ├── 0x114_h24_wRegular.txt ├── 0x114_h32_wBold.txt ├── 0x114_h32_wLight.txt ├── 0x114_h32_wRegular.txt ├── 0x115_h16_wBold.txt ├── 0x115_h16_wLight.txt ├── 0x115_h16_wRegular.txt ├── 0x115_h20_wBold.txt ├── 0x115_h20_wLight.txt ├── 0x115_h20_wRegular.txt ├── 0x115_h24_wBold.txt ├── 0x115_h24_wLight.txt ├── 0x115_h24_wRegular.txt ├── 0x115_h32_wBold.txt ├── 0x115_h32_wLight.txt ├── 0x115_h32_wRegular.txt ├── 0x116_h16_wBold.txt ├── 0x116_h16_wLight.txt ├── 0x116_h16_wRegular.txt ├── 0x116_h20_wBold.txt ├── 0x116_h20_wLight.txt ├── 0x116_h20_wRegular.txt ├── 0x116_h24_wBold.txt ├── 0x116_h24_wLight.txt ├── 0x116_h24_wRegular.txt ├── 0x116_h32_wBold.txt ├── 0x116_h32_wLight.txt ├── 0x116_h32_wRegular.txt ├── 0x117_h16_wBold.txt ├── 0x117_h16_wLight.txt ├── 0x117_h16_wRegular.txt ├── 0x117_h20_wBold.txt ├── 0x117_h20_wLight.txt ├── 0x117_h20_wRegular.txt ├── 0x117_h24_wBold.txt ├── 0x117_h24_wLight.txt ├── 0x117_h24_wRegular.txt ├── 0x117_h32_wBold.txt ├── 0x117_h32_wLight.txt ├── 0x117_h32_wRegular.txt ├── 0x118_h16_wBold.txt ├── 0x118_h16_wLight.txt ├── 0x118_h16_wRegular.txt ├── 0x118_h20_wBold.txt ├── 0x118_h20_wLight.txt ├── 0x118_h20_wRegular.txt ├── 0x118_h24_wBold.txt ├── 0x118_h24_wLight.txt ├── 0x118_h24_wRegular.txt ├── 0x118_h32_wBold.txt ├── 0x118_h32_wLight.txt ├── 0x118_h32_wRegular.txt ├── 0x119_h16_wBold.txt ├── 0x119_h16_wLight.txt ├── 0x119_h16_wRegular.txt ├── 0x119_h20_wBold.txt ├── 0x119_h20_wLight.txt ├── 0x119_h20_wRegular.txt ├── 0x119_h24_wBold.txt ├── 0x119_h24_wLight.txt ├── 0x119_h24_wRegular.txt ├── 0x119_h32_wBold.txt ├── 0x119_h32_wLight.txt ├── 0x119_h32_wRegular.txt ├── 0x11a_h16_wBold.txt ├── 0x11a_h16_wLight.txt ├── 0x11a_h16_wRegular.txt ├── 0x11a_h20_wBold.txt ├── 0x11a_h20_wLight.txt ├── 0x11a_h20_wRegular.txt ├── 0x11a_h24_wBold.txt ├── 0x11a_h24_wLight.txt ├── 0x11a_h24_wRegular.txt ├── 0x11a_h32_wBold.txt ├── 0x11a_h32_wLight.txt ├── 0x11a_h32_wRegular.txt ├── 0x11b_h16_wBold.txt ├── 0x11b_h16_wLight.txt ├── 0x11b_h16_wRegular.txt ├── 0x11b_h20_wBold.txt ├── 0x11b_h20_wLight.txt ├── 0x11b_h20_wRegular.txt ├── 0x11b_h24_wBold.txt ├── 0x11b_h24_wLight.txt ├── 0x11b_h24_wRegular.txt ├── 0x11b_h32_wBold.txt ├── 0x11b_h32_wLight.txt ├── 0x11b_h32_wRegular.txt ├── 0x11c_h16_wBold.txt ├── 0x11c_h16_wLight.txt ├── 0x11c_h16_wRegular.txt ├── 0x11c_h20_wBold.txt ├── 0x11c_h20_wLight.txt ├── 0x11c_h20_wRegular.txt ├── 0x11c_h24_wBold.txt ├── 0x11c_h24_wLight.txt ├── 0x11c_h24_wRegular.txt ├── 0x11c_h32_wBold.txt ├── 0x11c_h32_wLight.txt ├── 0x11c_h32_wRegular.txt ├── 0x11d_h16_wBold.txt ├── 0x11d_h16_wLight.txt ├── 0x11d_h16_wRegular.txt ├── 0x11d_h20_wBold.txt ├── 0x11d_h20_wLight.txt ├── 0x11d_h20_wRegular.txt ├── 0x11d_h24_wBold.txt ├── 0x11d_h24_wLight.txt ├── 0x11d_h24_wRegular.txt ├── 0x11d_h32_wBold.txt ├── 0x11d_h32_wLight.txt ├── 0x11d_h32_wRegular.txt ├── 0x11e_h16_wBold.txt ├── 0x11e_h16_wLight.txt ├── 0x11e_h16_wRegular.txt ├── 0x11e_h20_wBold.txt ├── 0x11e_h20_wLight.txt ├── 0x11e_h20_wRegular.txt ├── 0x11e_h24_wBold.txt ├── 0x11e_h24_wLight.txt ├── 0x11e_h24_wRegular.txt ├── 0x11e_h32_wBold.txt ├── 0x11e_h32_wLight.txt ├── 0x11e_h32_wRegular.txt ├── 0x11f_h16_wBold.txt ├── 0x11f_h16_wLight.txt ├── 0x11f_h16_wRegular.txt ├── 0x11f_h20_wBold.txt ├── 0x11f_h20_wLight.txt ├── 0x11f_h20_wRegular.txt ├── 0x11f_h24_wBold.txt ├── 0x11f_h24_wLight.txt ├── 0x11f_h24_wRegular.txt ├── 0x11f_h32_wBold.txt ├── 0x11f_h32_wLight.txt ├── 0x11f_h32_wRegular.txt ├── 0x120_h16_wBold.txt ├── 0x120_h16_wLight.txt ├── 0x120_h16_wRegular.txt ├── 0x120_h20_wBold.txt ├── 0x120_h20_wLight.txt ├── 0x120_h20_wRegular.txt ├── 0x120_h24_wBold.txt ├── 0x120_h24_wLight.txt ├── 0x120_h24_wRegular.txt ├── 0x120_h32_wBold.txt ├── 0x120_h32_wLight.txt ├── 0x120_h32_wRegular.txt ├── 0x121_h16_wBold.txt ├── 0x121_h16_wLight.txt ├── 0x121_h16_wRegular.txt ├── 0x121_h20_wBold.txt ├── 0x121_h20_wLight.txt ├── 0x121_h20_wRegular.txt ├── 0x121_h24_wBold.txt ├── 0x121_h24_wLight.txt ├── 0x121_h24_wRegular.txt ├── 0x121_h32_wBold.txt ├── 0x121_h32_wLight.txt ├── 0x121_h32_wRegular.txt ├── 0x122_h16_wBold.txt ├── 0x122_h16_wLight.txt ├── 0x122_h16_wRegular.txt ├── 0x122_h20_wBold.txt ├── 0x122_h20_wLight.txt ├── 0x122_h20_wRegular.txt ├── 0x122_h24_wBold.txt ├── 0x122_h24_wLight.txt ├── 0x122_h24_wRegular.txt ├── 0x122_h32_wBold.txt ├── 0x122_h32_wLight.txt ├── 0x122_h32_wRegular.txt ├── 0x123_h16_wBold.txt ├── 0x123_h16_wLight.txt ├── 0x123_h16_wRegular.txt ├── 0x123_h20_wBold.txt ├── 0x123_h20_wLight.txt ├── 0x123_h20_wRegular.txt ├── 0x123_h24_wBold.txt ├── 0x123_h24_wLight.txt ├── 0x123_h24_wRegular.txt ├── 0x123_h32_wBold.txt ├── 0x123_h32_wLight.txt ├── 0x123_h32_wRegular.txt ├── 0x124_h16_wBold.txt ├── 0x124_h16_wLight.txt ├── 0x124_h16_wRegular.txt ├── 0x124_h20_wBold.txt ├── 0x124_h20_wLight.txt ├── 0x124_h20_wRegular.txt ├── 0x124_h24_wBold.txt ├── 0x124_h24_wLight.txt ├── 0x124_h24_wRegular.txt ├── 0x124_h32_wBold.txt ├── 0x124_h32_wLight.txt ├── 0x124_h32_wRegular.txt ├── 0x125_h16_wBold.txt ├── 0x125_h16_wLight.txt ├── 0x125_h16_wRegular.txt ├── 0x125_h20_wBold.txt ├── 0x125_h20_wLight.txt ├── 0x125_h20_wRegular.txt ├── 0x125_h24_wBold.txt ├── 0x125_h24_wLight.txt ├── 0x125_h24_wRegular.txt ├── 0x125_h32_wBold.txt ├── 0x125_h32_wLight.txt ├── 0x125_h32_wRegular.txt ├── 0x126_h16_wBold.txt ├── 0x126_h16_wLight.txt ├── 0x126_h16_wRegular.txt ├── 0x126_h20_wBold.txt ├── 0x126_h20_wLight.txt ├── 0x126_h20_wRegular.txt ├── 0x126_h24_wBold.txt ├── 0x126_h24_wLight.txt ├── 0x126_h24_wRegular.txt ├── 0x126_h32_wBold.txt ├── 0x126_h32_wLight.txt ├── 0x126_h32_wRegular.txt ├── 0x127_h16_wBold.txt ├── 0x127_h16_wLight.txt ├── 0x127_h16_wRegular.txt ├── 0x127_h20_wBold.txt ├── 0x127_h20_wLight.txt ├── 0x127_h20_wRegular.txt ├── 0x127_h24_wBold.txt ├── 0x127_h24_wLight.txt ├── 0x127_h24_wRegular.txt ├── 0x127_h32_wBold.txt ├── 0x127_h32_wLight.txt ├── 0x127_h32_wRegular.txt ├── 0x128_h16_wBold.txt ├── 0x128_h16_wLight.txt ├── 0x128_h16_wRegular.txt ├── 0x128_h20_wBold.txt ├── 0x128_h20_wLight.txt ├── 0x128_h20_wRegular.txt ├── 0x128_h24_wBold.txt ├── 0x128_h24_wLight.txt ├── 0x128_h24_wRegular.txt ├── 0x128_h32_wBold.txt ├── 0x128_h32_wLight.txt ├── 0x128_h32_wRegular.txt ├── 0x129_h16_wBold.txt ├── 0x129_h16_wLight.txt ├── 0x129_h16_wRegular.txt ├── 0x129_h20_wBold.txt ├── 0x129_h20_wLight.txt ├── 0x129_h20_wRegular.txt ├── 0x129_h24_wBold.txt ├── 0x129_h24_wLight.txt ├── 0x129_h24_wRegular.txt ├── 0x129_h32_wBold.txt ├── 0x129_h32_wLight.txt ├── 0x129_h32_wRegular.txt ├── 0x12a_h16_wBold.txt ├── 0x12a_h16_wLight.txt ├── 0x12a_h16_wRegular.txt ├── 0x12a_h20_wBold.txt ├── 0x12a_h20_wLight.txt ├── 0x12a_h20_wRegular.txt ├── 0x12a_h24_wBold.txt ├── 0x12a_h24_wLight.txt ├── 0x12a_h24_wRegular.txt ├── 0x12a_h32_wBold.txt ├── 0x12a_h32_wLight.txt ├── 0x12a_h32_wRegular.txt ├── 0x12b_h16_wBold.txt ├── 0x12b_h16_wLight.txt ├── 0x12b_h16_wRegular.txt ├── 0x12b_h20_wBold.txt ├── 0x12b_h20_wLight.txt ├── 0x12b_h20_wRegular.txt ├── 0x12b_h24_wBold.txt ├── 0x12b_h24_wLight.txt ├── 0x12b_h24_wRegular.txt ├── 0x12b_h32_wBold.txt ├── 0x12b_h32_wLight.txt ├── 0x12b_h32_wRegular.txt ├── 0x12c_h16_wBold.txt ├── 0x12c_h16_wLight.txt ├── 0x12c_h16_wRegular.txt ├── 0x12c_h20_wBold.txt ├── 0x12c_h20_wLight.txt ├── 0x12c_h20_wRegular.txt ├── 0x12c_h24_wBold.txt ├── 0x12c_h24_wLight.txt ├── 0x12c_h24_wRegular.txt ├── 0x12c_h32_wBold.txt ├── 0x12c_h32_wLight.txt ├── 0x12c_h32_wRegular.txt ├── 0x12d_h16_wBold.txt ├── 0x12d_h16_wLight.txt ├── 0x12d_h16_wRegular.txt ├── 0x12d_h20_wBold.txt ├── 0x12d_h20_wLight.txt ├── 0x12d_h20_wRegular.txt ├── 0x12d_h24_wBold.txt ├── 0x12d_h24_wLight.txt ├── 0x12d_h24_wRegular.txt ├── 0x12d_h32_wBold.txt ├── 0x12d_h32_wLight.txt ├── 0x12d_h32_wRegular.txt ├── 0x12e_h16_wBold.txt ├── 0x12e_h16_wLight.txt ├── 0x12e_h16_wRegular.txt ├── 0x12e_h20_wBold.txt ├── 0x12e_h20_wLight.txt ├── 0x12e_h20_wRegular.txt ├── 0x12e_h24_wBold.txt ├── 0x12e_h24_wLight.txt ├── 0x12e_h24_wRegular.txt ├── 0x12e_h32_wBold.txt ├── 0x12e_h32_wLight.txt ├── 0x12e_h32_wRegular.txt ├── 0x12f_h16_wBold.txt ├── 0x12f_h16_wLight.txt ├── 0x12f_h16_wRegular.txt ├── 0x12f_h20_wBold.txt ├── 0x12f_h20_wLight.txt ├── 0x12f_h20_wRegular.txt ├── 0x12f_h24_wBold.txt ├── 0x12f_h24_wLight.txt ├── 0x12f_h24_wRegular.txt ├── 0x12f_h32_wBold.txt ├── 0x12f_h32_wLight.txt ├── 0x12f_h32_wRegular.txt ├── 0x130_h16_wBold.txt ├── 0x130_h16_wLight.txt ├── 0x130_h16_wRegular.txt ├── 0x130_h20_wBold.txt ├── 0x130_h20_wLight.txt ├── 0x130_h20_wRegular.txt ├── 0x130_h24_wBold.txt ├── 0x130_h24_wLight.txt ├── 0x130_h24_wRegular.txt ├── 0x130_h32_wBold.txt ├── 0x130_h32_wLight.txt ├── 0x130_h32_wRegular.txt ├── 0x131_h16_wBold.txt ├── 0x131_h16_wLight.txt ├── 0x131_h16_wRegular.txt ├── 0x131_h20_wBold.txt ├── 0x131_h20_wLight.txt ├── 0x131_h20_wRegular.txt ├── 0x131_h24_wBold.txt ├── 0x131_h24_wLight.txt ├── 0x131_h24_wRegular.txt ├── 0x131_h32_wBold.txt ├── 0x131_h32_wLight.txt ├── 0x131_h32_wRegular.txt ├── 0x132_h16_wBold.txt ├── 0x132_h16_wLight.txt ├── 0x132_h16_wRegular.txt ├── 0x132_h20_wBold.txt ├── 0x132_h20_wLight.txt ├── 0x132_h20_wRegular.txt ├── 0x132_h24_wBold.txt ├── 0x132_h24_wLight.txt ├── 0x132_h24_wRegular.txt ├── 0x132_h32_wBold.txt ├── 0x132_h32_wLight.txt ├── 0x132_h32_wRegular.txt ├── 0x133_h16_wBold.txt ├── 0x133_h16_wLight.txt ├── 0x133_h16_wRegular.txt ├── 0x133_h20_wBold.txt ├── 0x133_h20_wLight.txt ├── 0x133_h20_wRegular.txt ├── 0x133_h24_wBold.txt ├── 0x133_h24_wLight.txt ├── 0x133_h24_wRegular.txt ├── 0x133_h32_wBold.txt ├── 0x133_h32_wLight.txt ├── 0x133_h32_wRegular.txt ├── 0x134_h16_wBold.txt ├── 0x134_h16_wLight.txt ├── 0x134_h16_wRegular.txt ├── 0x134_h20_wBold.txt ├── 0x134_h20_wLight.txt ├── 0x134_h20_wRegular.txt ├── 0x134_h24_wBold.txt ├── 0x134_h24_wLight.txt ├── 0x134_h24_wRegular.txt ├── 0x134_h32_wBold.txt ├── 0x134_h32_wLight.txt ├── 0x134_h32_wRegular.txt ├── 0x135_h16_wBold.txt ├── 0x135_h16_wLight.txt ├── 0x135_h16_wRegular.txt ├── 0x135_h20_wBold.txt ├── 0x135_h20_wLight.txt ├── 0x135_h20_wRegular.txt ├── 0x135_h24_wBold.txt ├── 0x135_h24_wLight.txt ├── 0x135_h24_wRegular.txt ├── 0x135_h32_wBold.txt ├── 0x135_h32_wLight.txt ├── 0x135_h32_wRegular.txt ├── 0x136_h16_wBold.txt ├── 0x136_h16_wLight.txt ├── 0x136_h16_wRegular.txt ├── 0x136_h20_wBold.txt ├── 0x136_h20_wLight.txt ├── 0x136_h20_wRegular.txt ├── 0x136_h24_wBold.txt ├── 0x136_h24_wLight.txt ├── 0x136_h24_wRegular.txt ├── 0x136_h32_wBold.txt ├── 0x136_h32_wLight.txt ├── 0x136_h32_wRegular.txt ├── 0x137_h16_wBold.txt ├── 0x137_h16_wLight.txt ├── 0x137_h16_wRegular.txt ├── 0x137_h20_wBold.txt ├── 0x137_h20_wLight.txt ├── 0x137_h20_wRegular.txt ├── 0x137_h24_wBold.txt ├── 0x137_h24_wLight.txt ├── 0x137_h24_wRegular.txt ├── 0x137_h32_wBold.txt ├── 0x137_h32_wLight.txt ├── 0x137_h32_wRegular.txt ├── 0x138_h16_wBold.txt ├── 0x138_h16_wLight.txt ├── 0x138_h16_wRegular.txt ├── 0x138_h20_wBold.txt ├── 0x138_h20_wLight.txt ├── 0x138_h20_wRegular.txt ├── 0x138_h24_wBold.txt ├── 0x138_h24_wLight.txt ├── 0x138_h24_wRegular.txt ├── 0x138_h32_wBold.txt ├── 0x138_h32_wLight.txt ├── 0x138_h32_wRegular.txt ├── 0x139_h16_wBold.txt ├── 0x139_h16_wLight.txt ├── 0x139_h16_wRegular.txt ├── 0x139_h20_wBold.txt ├── 0x139_h20_wLight.txt ├── 0x139_h20_wRegular.txt ├── 0x139_h24_wBold.txt ├── 0x139_h24_wLight.txt ├── 0x139_h24_wRegular.txt ├── 0x139_h32_wBold.txt ├── 0x139_h32_wLight.txt ├── 0x139_h32_wRegular.txt ├── 0x13a_h16_wBold.txt ├── 0x13a_h16_wLight.txt ├── 0x13a_h16_wRegular.txt ├── 0x13a_h20_wBold.txt ├── 0x13a_h20_wLight.txt ├── 0x13a_h20_wRegular.txt ├── 0x13a_h24_wBold.txt ├── 0x13a_h24_wLight.txt ├── 0x13a_h24_wRegular.txt ├── 0x13a_h32_wBold.txt ├── 0x13a_h32_wLight.txt ├── 0x13a_h32_wRegular.txt ├── 0x13b_h16_wBold.txt ├── 0x13b_h16_wLight.txt ├── 0x13b_h16_wRegular.txt ├── 0x13b_h20_wBold.txt ├── 0x13b_h20_wLight.txt ├── 0x13b_h20_wRegular.txt ├── 0x13b_h24_wBold.txt ├── 0x13b_h24_wLight.txt ├── 0x13b_h24_wRegular.txt ├── 0x13b_h32_wBold.txt ├── 0x13b_h32_wLight.txt ├── 0x13b_h32_wRegular.txt ├── 0x13c_h16_wBold.txt ├── 0x13c_h16_wLight.txt ├── 0x13c_h16_wRegular.txt ├── 0x13c_h20_wBold.txt ├── 0x13c_h20_wLight.txt ├── 0x13c_h20_wRegular.txt ├── 0x13c_h24_wBold.txt ├── 0x13c_h24_wLight.txt ├── 0x13c_h24_wRegular.txt ├── 0x13c_h32_wBold.txt ├── 0x13c_h32_wLight.txt ├── 0x13c_h32_wRegular.txt ├── 0x13d_h16_wBold.txt ├── 0x13d_h16_wLight.txt ├── 0x13d_h16_wRegular.txt ├── 0x13d_h20_wBold.txt ├── 0x13d_h20_wLight.txt ├── 0x13d_h20_wRegular.txt ├── 0x13d_h24_wBold.txt ├── 0x13d_h24_wLight.txt ├── 0x13d_h24_wRegular.txt ├── 0x13d_h32_wBold.txt ├── 0x13d_h32_wLight.txt ├── 0x13d_h32_wRegular.txt ├── 0x13e_h16_wBold.txt ├── 0x13e_h16_wLight.txt ├── 0x13e_h16_wRegular.txt ├── 0x13e_h20_wBold.txt ├── 0x13e_h20_wLight.txt ├── 0x13e_h20_wRegular.txt ├── 0x13e_h24_wBold.txt ├── 0x13e_h24_wLight.txt ├── 0x13e_h24_wRegular.txt ├── 0x13e_h32_wBold.txt ├── 0x13e_h32_wLight.txt ├── 0x13e_h32_wRegular.txt ├── 0x13f_h16_wBold.txt ├── 0x13f_h16_wLight.txt ├── 0x13f_h16_wRegular.txt ├── 0x13f_h20_wBold.txt ├── 0x13f_h20_wLight.txt ├── 0x13f_h20_wRegular.txt ├── 0x13f_h24_wBold.txt ├── 0x13f_h24_wLight.txt ├── 0x13f_h24_wRegular.txt ├── 0x13f_h32_wBold.txt ├── 0x13f_h32_wLight.txt ├── 0x13f_h32_wRegular.txt ├── 0x140_h16_wBold.txt ├── 0x140_h16_wLight.txt ├── 0x140_h16_wRegular.txt ├── 0x140_h20_wBold.txt ├── 0x140_h20_wLight.txt ├── 0x140_h20_wRegular.txt ├── 0x140_h24_wBold.txt ├── 0x140_h24_wLight.txt ├── 0x140_h24_wRegular.txt ├── 0x140_h32_wBold.txt ├── 0x140_h32_wLight.txt ├── 0x140_h32_wRegular.txt ├── 0x141_h16_wBold.txt ├── 0x141_h16_wLight.txt ├── 0x141_h16_wRegular.txt ├── 0x141_h20_wBold.txt ├── 0x141_h20_wLight.txt ├── 0x141_h20_wRegular.txt ├── 0x141_h24_wBold.txt ├── 0x141_h24_wLight.txt ├── 0x141_h24_wRegular.txt ├── 0x141_h32_wBold.txt ├── 0x141_h32_wLight.txt ├── 0x141_h32_wRegular.txt ├── 0x142_h16_wBold.txt ├── 0x142_h16_wLight.txt ├── 0x142_h16_wRegular.txt ├── 0x142_h20_wBold.txt ├── 0x142_h20_wLight.txt ├── 0x142_h20_wRegular.txt ├── 0x142_h24_wBold.txt ├── 0x142_h24_wLight.txt ├── 0x142_h24_wRegular.txt ├── 0x142_h32_wBold.txt ├── 0x142_h32_wLight.txt ├── 0x142_h32_wRegular.txt ├── 0x143_h16_wBold.txt ├── 0x143_h16_wLight.txt ├── 0x143_h16_wRegular.txt ├── 0x143_h20_wBold.txt ├── 0x143_h20_wLight.txt ├── 0x143_h20_wRegular.txt ├── 0x143_h24_wBold.txt ├── 0x143_h24_wLight.txt ├── 0x143_h24_wRegular.txt ├── 0x143_h32_wBold.txt ├── 0x143_h32_wLight.txt ├── 0x143_h32_wRegular.txt ├── 0x144_h16_wBold.txt ├── 0x144_h16_wLight.txt ├── 0x144_h16_wRegular.txt ├── 0x144_h20_wBold.txt ├── 0x144_h20_wLight.txt ├── 0x144_h20_wRegular.txt ├── 0x144_h24_wBold.txt ├── 0x144_h24_wLight.txt ├── 0x144_h24_wRegular.txt ├── 0x144_h32_wBold.txt ├── 0x144_h32_wLight.txt ├── 0x144_h32_wRegular.txt ├── 0x145_h16_wBold.txt ├── 0x145_h16_wLight.txt ├── 0x145_h16_wRegular.txt ├── 0x145_h20_wBold.txt ├── 0x145_h20_wLight.txt ├── 0x145_h20_wRegular.txt ├── 0x145_h24_wBold.txt ├── 0x145_h24_wLight.txt ├── 0x145_h24_wRegular.txt ├── 0x145_h32_wBold.txt ├── 0x145_h32_wLight.txt ├── 0x145_h32_wRegular.txt ├── 0x146_h16_wBold.txt ├── 0x146_h16_wLight.txt ├── 0x146_h16_wRegular.txt ├── 0x146_h20_wBold.txt ├── 0x146_h20_wLight.txt ├── 0x146_h20_wRegular.txt ├── 0x146_h24_wBold.txt ├── 0x146_h24_wLight.txt ├── 0x146_h24_wRegular.txt ├── 0x146_h32_wBold.txt ├── 0x146_h32_wLight.txt ├── 0x146_h32_wRegular.txt ├── 0x147_h16_wBold.txt ├── 0x147_h16_wLight.txt ├── 0x147_h16_wRegular.txt ├── 0x147_h20_wBold.txt ├── 0x147_h20_wLight.txt ├── 0x147_h20_wRegular.txt ├── 0x147_h24_wBold.txt ├── 0x147_h24_wLight.txt ├── 0x147_h24_wRegular.txt ├── 0x147_h32_wBold.txt ├── 0x147_h32_wLight.txt ├── 0x147_h32_wRegular.txt ├── 0x148_h16_wBold.txt ├── 0x148_h16_wLight.txt ├── 0x148_h16_wRegular.txt ├── 0x148_h20_wBold.txt ├── 0x148_h20_wLight.txt ├── 0x148_h20_wRegular.txt ├── 0x148_h24_wBold.txt ├── 0x148_h24_wLight.txt ├── 0x148_h24_wRegular.txt ├── 0x148_h32_wBold.txt ├── 0x148_h32_wLight.txt ├── 0x148_h32_wRegular.txt ├── 0x149_h16_wBold.txt ├── 0x149_h16_wLight.txt ├── 0x149_h16_wRegular.txt ├── 0x149_h20_wBold.txt ├── 0x149_h20_wLight.txt ├── 0x149_h20_wRegular.txt ├── 0x149_h24_wBold.txt ├── 0x149_h24_wLight.txt ├── 0x149_h24_wRegular.txt ├── 0x149_h32_wBold.txt ├── 0x149_h32_wLight.txt ├── 0x149_h32_wRegular.txt ├── 0x14a_h16_wBold.txt ├── 0x14a_h16_wLight.txt ├── 0x14a_h16_wRegular.txt ├── 0x14a_h20_wBold.txt ├── 0x14a_h20_wLight.txt ├── 0x14a_h20_wRegular.txt ├── 0x14a_h24_wBold.txt ├── 0x14a_h24_wLight.txt ├── 0x14a_h24_wRegular.txt ├── 0x14a_h32_wBold.txt ├── 0x14a_h32_wLight.txt ├── 0x14a_h32_wRegular.txt ├── 0x14b_h16_wBold.txt ├── 0x14b_h16_wLight.txt ├── 0x14b_h16_wRegular.txt ├── 0x14b_h20_wBold.txt ├── 0x14b_h20_wLight.txt ├── 0x14b_h20_wRegular.txt ├── 0x14b_h24_wBold.txt ├── 0x14b_h24_wLight.txt ├── 0x14b_h24_wRegular.txt ├── 0x14b_h32_wBold.txt ├── 0x14b_h32_wLight.txt ├── 0x14b_h32_wRegular.txt ├── 0x14c_h16_wBold.txt ├── 0x14c_h16_wLight.txt ├── 0x14c_h16_wRegular.txt ├── 0x14c_h20_wBold.txt ├── 0x14c_h20_wLight.txt ├── 0x14c_h20_wRegular.txt ├── 0x14c_h24_wBold.txt ├── 0x14c_h24_wLight.txt ├── 0x14c_h24_wRegular.txt ├── 0x14c_h32_wBold.txt ├── 0x14c_h32_wLight.txt ├── 0x14c_h32_wRegular.txt ├── 0x14d_h16_wBold.txt ├── 0x14d_h16_wLight.txt ├── 0x14d_h16_wRegular.txt ├── 0x14d_h20_wBold.txt ├── 0x14d_h20_wLight.txt ├── 0x14d_h20_wRegular.txt ├── 0x14d_h24_wBold.txt ├── 0x14d_h24_wLight.txt ├── 0x14d_h24_wRegular.txt ├── 0x14d_h32_wBold.txt ├── 0x14d_h32_wLight.txt ├── 0x14d_h32_wRegular.txt ├── 0x14e_h16_wBold.txt ├── 0x14e_h16_wLight.txt ├── 0x14e_h16_wRegular.txt ├── 0x14e_h20_wBold.txt ├── 0x14e_h20_wLight.txt ├── 0x14e_h20_wRegular.txt ├── 0x14e_h24_wBold.txt ├── 0x14e_h24_wLight.txt ├── 0x14e_h24_wRegular.txt ├── 0x14e_h32_wBold.txt ├── 0x14e_h32_wLight.txt ├── 0x14e_h32_wRegular.txt ├── 0x14f_h16_wBold.txt ├── 0x14f_h16_wLight.txt ├── 0x14f_h16_wRegular.txt ├── 0x14f_h20_wBold.txt ├── 0x14f_h20_wLight.txt ├── 0x14f_h20_wRegular.txt ├── 0x14f_h24_wBold.txt ├── 0x14f_h24_wLight.txt ├── 0x14f_h24_wRegular.txt ├── 0x14f_h32_wBold.txt ├── 0x14f_h32_wLight.txt ├── 0x14f_h32_wRegular.txt ├── 0x150_h16_wBold.txt ├── 0x150_h16_wLight.txt ├── 0x150_h16_wRegular.txt ├── 0x150_h20_wBold.txt ├── 0x150_h20_wLight.txt ├── 0x150_h20_wRegular.txt ├── 0x150_h24_wBold.txt ├── 0x150_h24_wLight.txt ├── 0x150_h24_wRegular.txt ├── 0x150_h32_wBold.txt ├── 0x150_h32_wLight.txt ├── 0x150_h32_wRegular.txt ├── 0x151_h16_wBold.txt ├── 0x151_h16_wLight.txt ├── 0x151_h16_wRegular.txt ├── 0x151_h20_wBold.txt ├── 0x151_h20_wLight.txt ├── 0x151_h20_wRegular.txt ├── 0x151_h24_wBold.txt ├── 0x151_h24_wLight.txt ├── 0x151_h24_wRegular.txt ├── 0x151_h32_wBold.txt ├── 0x151_h32_wLight.txt ├── 0x151_h32_wRegular.txt ├── 0x152_h16_wBold.txt ├── 0x152_h16_wLight.txt ├── 0x152_h16_wRegular.txt ├── 0x152_h20_wBold.txt ├── 0x152_h20_wLight.txt ├── 0x152_h20_wRegular.txt ├── 0x152_h24_wBold.txt ├── 0x152_h24_wLight.txt ├── 0x152_h24_wRegular.txt ├── 0x152_h32_wBold.txt ├── 0x152_h32_wLight.txt ├── 0x152_h32_wRegular.txt ├── 0x153_h16_wBold.txt ├── 0x153_h16_wLight.txt ├── 0x153_h16_wRegular.txt ├── 0x153_h20_wBold.txt ├── 0x153_h20_wLight.txt ├── 0x153_h20_wRegular.txt ├── 0x153_h24_wBold.txt ├── 0x153_h24_wLight.txt ├── 0x153_h24_wRegular.txt ├── 0x153_h32_wBold.txt ├── 0x153_h32_wLight.txt ├── 0x153_h32_wRegular.txt ├── 0x154_h16_wBold.txt ├── 0x154_h16_wLight.txt ├── 0x154_h16_wRegular.txt ├── 0x154_h20_wBold.txt ├── 0x154_h20_wLight.txt ├── 0x154_h20_wRegular.txt ├── 0x154_h24_wBold.txt ├── 0x154_h24_wLight.txt ├── 0x154_h24_wRegular.txt ├── 0x154_h32_wBold.txt ├── 0x154_h32_wLight.txt ├── 0x154_h32_wRegular.txt ├── 0x155_h16_wBold.txt ├── 0x155_h16_wLight.txt ├── 0x155_h16_wRegular.txt ├── 0x155_h20_wBold.txt ├── 0x155_h20_wLight.txt ├── 0x155_h20_wRegular.txt ├── 0x155_h24_wBold.txt ├── 0x155_h24_wLight.txt ├── 0x155_h24_wRegular.txt ├── 0x155_h32_wBold.txt ├── 0x155_h32_wLight.txt ├── 0x155_h32_wRegular.txt ├── 0x156_h16_wBold.txt ├── 0x156_h16_wLight.txt ├── 0x156_h16_wRegular.txt ├── 0x156_h20_wBold.txt ├── 0x156_h20_wLight.txt ├── 0x156_h20_wRegular.txt ├── 0x156_h24_wBold.txt ├── 0x156_h24_wLight.txt ├── 0x156_h24_wRegular.txt ├── 0x156_h32_wBold.txt ├── 0x156_h32_wLight.txt ├── 0x156_h32_wRegular.txt ├── 0x157_h16_wBold.txt ├── 0x157_h16_wLight.txt ├── 0x157_h16_wRegular.txt ├── 0x157_h20_wBold.txt ├── 0x157_h20_wLight.txt ├── 0x157_h20_wRegular.txt ├── 0x157_h24_wBold.txt ├── 0x157_h24_wLight.txt ├── 0x157_h24_wRegular.txt ├── 0x157_h32_wBold.txt ├── 0x157_h32_wLight.txt ├── 0x157_h32_wRegular.txt ├── 0x158_h16_wBold.txt ├── 0x158_h16_wLight.txt ├── 0x158_h16_wRegular.txt ├── 0x158_h20_wBold.txt ├── 0x158_h20_wLight.txt ├── 0x158_h20_wRegular.txt ├── 0x158_h24_wBold.txt ├── 0x158_h24_wLight.txt ├── 0x158_h24_wRegular.txt ├── 0x158_h32_wBold.txt ├── 0x158_h32_wLight.txt ├── 0x158_h32_wRegular.txt ├── 0x159_h16_wBold.txt ├── 0x159_h16_wLight.txt ├── 0x159_h16_wRegular.txt ├── 0x159_h20_wBold.txt ├── 0x159_h20_wLight.txt ├── 0x159_h20_wRegular.txt ├── 0x159_h24_wBold.txt ├── 0x159_h24_wLight.txt ├── 0x159_h24_wRegular.txt ├── 0x159_h32_wBold.txt ├── 0x159_h32_wLight.txt ├── 0x159_h32_wRegular.txt ├── 0x15a_h16_wBold.txt ├── 0x15a_h16_wLight.txt ├── 0x15a_h16_wRegular.txt ├── 0x15a_h20_wBold.txt ├── 0x15a_h20_wLight.txt ├── 0x15a_h20_wRegular.txt ├── 0x15a_h24_wBold.txt ├── 0x15a_h24_wLight.txt ├── 0x15a_h24_wRegular.txt ├── 0x15a_h32_wBold.txt ├── 0x15a_h32_wLight.txt ├── 0x15a_h32_wRegular.txt ├── 0x15b_h16_wBold.txt ├── 0x15b_h16_wLight.txt ├── 0x15b_h16_wRegular.txt ├── 0x15b_h20_wBold.txt ├── 0x15b_h20_wLight.txt ├── 0x15b_h20_wRegular.txt ├── 0x15b_h24_wBold.txt ├── 0x15b_h24_wLight.txt ├── 0x15b_h24_wRegular.txt ├── 0x15b_h32_wBold.txt ├── 0x15b_h32_wLight.txt ├── 0x15b_h32_wRegular.txt ├── 0x15c_h16_wBold.txt ├── 0x15c_h16_wLight.txt ├── 0x15c_h16_wRegular.txt ├── 0x15c_h20_wBold.txt ├── 0x15c_h20_wLight.txt ├── 0x15c_h20_wRegular.txt ├── 0x15c_h24_wBold.txt ├── 0x15c_h24_wLight.txt ├── 0x15c_h24_wRegular.txt ├── 0x15c_h32_wBold.txt ├── 0x15c_h32_wLight.txt ├── 0x15c_h32_wRegular.txt ├── 0x15d_h16_wBold.txt ├── 0x15d_h16_wLight.txt ├── 0x15d_h16_wRegular.txt ├── 0x15d_h20_wBold.txt ├── 0x15d_h20_wLight.txt ├── 0x15d_h20_wRegular.txt ├── 0x15d_h24_wBold.txt ├── 0x15d_h24_wLight.txt ├── 0x15d_h24_wRegular.txt ├── 0x15d_h32_wBold.txt ├── 0x15d_h32_wLight.txt ├── 0x15d_h32_wRegular.txt ├── 0x15e_h16_wBold.txt ├── 0x15e_h16_wLight.txt ├── 0x15e_h16_wRegular.txt ├── 0x15e_h20_wBold.txt ├── 0x15e_h20_wLight.txt ├── 0x15e_h20_wRegular.txt ├── 0x15e_h24_wBold.txt ├── 0x15e_h24_wLight.txt ├── 0x15e_h24_wRegular.txt ├── 0x15e_h32_wBold.txt ├── 0x15e_h32_wLight.txt ├── 0x15e_h32_wRegular.txt ├── 0x15f_h16_wBold.txt ├── 0x15f_h16_wLight.txt ├── 0x15f_h16_wRegular.txt ├── 0x15f_h20_wBold.txt ├── 0x15f_h20_wLight.txt ├── 0x15f_h20_wRegular.txt ├── 0x15f_h24_wBold.txt ├── 0x15f_h24_wLight.txt ├── 0x15f_h24_wRegular.txt ├── 0x15f_h32_wBold.txt ├── 0x15f_h32_wLight.txt ├── 0x15f_h32_wRegular.txt ├── 0x160_h16_wBold.txt ├── 0x160_h16_wLight.txt ├── 0x160_h16_wRegular.txt ├── 0x160_h20_wBold.txt ├── 0x160_h20_wLight.txt ├── 0x160_h20_wRegular.txt ├── 0x160_h24_wBold.txt ├── 0x160_h24_wLight.txt ├── 0x160_h24_wRegular.txt ├── 0x160_h32_wBold.txt ├── 0x160_h32_wLight.txt ├── 0x160_h32_wRegular.txt ├── 0x161_h16_wBold.txt ├── 0x161_h16_wLight.txt ├── 0x161_h16_wRegular.txt ├── 0x161_h20_wBold.txt ├── 0x161_h20_wLight.txt ├── 0x161_h20_wRegular.txt ├── 0x161_h24_wBold.txt ├── 0x161_h24_wLight.txt ├── 0x161_h24_wRegular.txt ├── 0x161_h32_wBold.txt ├── 0x161_h32_wLight.txt ├── 0x161_h32_wRegular.txt ├── 0x162_h16_wBold.txt ├── 0x162_h16_wLight.txt ├── 0x162_h16_wRegular.txt ├── 0x162_h20_wBold.txt ├── 0x162_h20_wLight.txt ├── 0x162_h20_wRegular.txt ├── 0x162_h24_wBold.txt ├── 0x162_h24_wLight.txt ├── 0x162_h24_wRegular.txt ├── 0x162_h32_wBold.txt ├── 0x162_h32_wLight.txt ├── 0x162_h32_wRegular.txt ├── 0x163_h16_wBold.txt ├── 0x163_h16_wLight.txt ├── 0x163_h16_wRegular.txt ├── 0x163_h20_wBold.txt ├── 0x163_h20_wLight.txt ├── 0x163_h20_wRegular.txt ├── 0x163_h24_wBold.txt ├── 0x163_h24_wLight.txt ├── 0x163_h24_wRegular.txt ├── 0x163_h32_wBold.txt ├── 0x163_h32_wLight.txt ├── 0x163_h32_wRegular.txt ├── 0x164_h16_wBold.txt ├── 0x164_h16_wLight.txt ├── 0x164_h16_wRegular.txt ├── 0x164_h20_wBold.txt ├── 0x164_h20_wLight.txt ├── 0x164_h20_wRegular.txt ├── 0x164_h24_wBold.txt ├── 0x164_h24_wLight.txt ├── 0x164_h24_wRegular.txt ├── 0x164_h32_wBold.txt ├── 0x164_h32_wLight.txt ├── 0x164_h32_wRegular.txt ├── 0x165_h16_wBold.txt ├── 0x165_h16_wLight.txt ├── 0x165_h16_wRegular.txt ├── 0x165_h20_wBold.txt ├── 0x165_h20_wLight.txt ├── 0x165_h20_wRegular.txt ├── 0x165_h24_wBold.txt ├── 0x165_h24_wLight.txt ├── 0x165_h24_wRegular.txt ├── 0x165_h32_wBold.txt ├── 0x165_h32_wLight.txt ├── 0x165_h32_wRegular.txt ├── 0x166_h16_wBold.txt ├── 0x166_h16_wLight.txt ├── 0x166_h16_wRegular.txt ├── 0x166_h20_wBold.txt ├── 0x166_h20_wLight.txt ├── 0x166_h20_wRegular.txt ├── 0x166_h24_wBold.txt ├── 0x166_h24_wLight.txt ├── 0x166_h24_wRegular.txt ├── 0x166_h32_wBold.txt ├── 0x166_h32_wLight.txt ├── 0x166_h32_wRegular.txt ├── 0x167_h16_wBold.txt ├── 0x167_h16_wLight.txt ├── 0x167_h16_wRegular.txt ├── 0x167_h20_wBold.txt ├── 0x167_h20_wLight.txt ├── 0x167_h20_wRegular.txt ├── 0x167_h24_wBold.txt ├── 0x167_h24_wLight.txt ├── 0x167_h24_wRegular.txt ├── 0x167_h32_wBold.txt ├── 0x167_h32_wLight.txt ├── 0x167_h32_wRegular.txt ├── 0x168_h16_wBold.txt ├── 0x168_h16_wLight.txt ├── 0x168_h16_wRegular.txt ├── 0x168_h20_wBold.txt ├── 0x168_h20_wLight.txt ├── 0x168_h20_wRegular.txt ├── 0x168_h24_wBold.txt ├── 0x168_h24_wLight.txt ├── 0x168_h24_wRegular.txt ├── 0x168_h32_wBold.txt ├── 0x168_h32_wLight.txt ├── 0x168_h32_wRegular.txt ├── 0x169_h16_wBold.txt ├── 0x169_h16_wLight.txt ├── 0x169_h16_wRegular.txt ├── 0x169_h20_wBold.txt ├── 0x169_h20_wLight.txt ├── 0x169_h20_wRegular.txt ├── 0x169_h24_wBold.txt ├── 0x169_h24_wLight.txt ├── 0x169_h24_wRegular.txt ├── 0x169_h32_wBold.txt ├── 0x169_h32_wLight.txt ├── 0x169_h32_wRegular.txt ├── 0x16a_h16_wBold.txt ├── 0x16a_h16_wLight.txt ├── 0x16a_h16_wRegular.txt ├── 0x16a_h20_wBold.txt ├── 0x16a_h20_wLight.txt ├── 0x16a_h20_wRegular.txt ├── 0x16a_h24_wBold.txt ├── 0x16a_h24_wLight.txt ├── 0x16a_h24_wRegular.txt ├── 0x16a_h32_wBold.txt ├── 0x16a_h32_wLight.txt ├── 0x16a_h32_wRegular.txt ├── 0x16b_h16_wBold.txt ├── 0x16b_h16_wLight.txt ├── 0x16b_h16_wRegular.txt ├── 0x16b_h20_wBold.txt ├── 0x16b_h20_wLight.txt ├── 0x16b_h20_wRegular.txt ├── 0x16b_h24_wBold.txt ├── 0x16b_h24_wLight.txt ├── 0x16b_h24_wRegular.txt ├── 0x16b_h32_wBold.txt ├── 0x16b_h32_wLight.txt ├── 0x16b_h32_wRegular.txt ├── 0x16c_h16_wBold.txt ├── 0x16c_h16_wLight.txt ├── 0x16c_h16_wRegular.txt ├── 0x16c_h20_wBold.txt ├── 0x16c_h20_wLight.txt ├── 0x16c_h20_wRegular.txt ├── 0x16c_h24_wBold.txt ├── 0x16c_h24_wLight.txt ├── 0x16c_h24_wRegular.txt ├── 0x16c_h32_wBold.txt ├── 0x16c_h32_wLight.txt ├── 0x16c_h32_wRegular.txt ├── 0x16d_h16_wBold.txt ├── 0x16d_h16_wLight.txt ├── 0x16d_h16_wRegular.txt ├── 0x16d_h20_wBold.txt ├── 0x16d_h20_wLight.txt ├── 0x16d_h20_wRegular.txt ├── 0x16d_h24_wBold.txt ├── 0x16d_h24_wLight.txt ├── 0x16d_h24_wRegular.txt ├── 0x16d_h32_wBold.txt ├── 0x16d_h32_wLight.txt ├── 0x16d_h32_wRegular.txt ├── 0x16e_h16_wBold.txt ├── 0x16e_h16_wLight.txt ├── 0x16e_h16_wRegular.txt ├── 0x16e_h20_wBold.txt ├── 0x16e_h20_wLight.txt ├── 0x16e_h20_wRegular.txt ├── 0x16e_h24_wBold.txt ├── 0x16e_h24_wLight.txt ├── 0x16e_h24_wRegular.txt ├── 0x16e_h32_wBold.txt ├── 0x16e_h32_wLight.txt ├── 0x16e_h32_wRegular.txt ├── 0x16f_h16_wBold.txt ├── 0x16f_h16_wLight.txt ├── 0x16f_h16_wRegular.txt ├── 0x16f_h20_wBold.txt ├── 0x16f_h20_wLight.txt ├── 0x16f_h20_wRegular.txt ├── 0x16f_h24_wBold.txt ├── 0x16f_h24_wLight.txt ├── 0x16f_h24_wRegular.txt ├── 0x16f_h32_wBold.txt ├── 0x16f_h32_wLight.txt ├── 0x16f_h32_wRegular.txt ├── 0x170_h16_wBold.txt ├── 0x170_h16_wLight.txt ├── 0x170_h16_wRegular.txt ├── 0x170_h20_wBold.txt ├── 0x170_h20_wLight.txt ├── 0x170_h20_wRegular.txt ├── 0x170_h24_wBold.txt ├── 0x170_h24_wLight.txt ├── 0x170_h24_wRegular.txt ├── 0x170_h32_wBold.txt ├── 0x170_h32_wLight.txt ├── 0x170_h32_wRegular.txt ├── 0x171_h16_wBold.txt ├── 0x171_h16_wLight.txt ├── 0x171_h16_wRegular.txt ├── 0x171_h20_wBold.txt ├── 0x171_h20_wLight.txt ├── 0x171_h20_wRegular.txt ├── 0x171_h24_wBold.txt ├── 0x171_h24_wLight.txt ├── 0x171_h24_wRegular.txt ├── 0x171_h32_wBold.txt ├── 0x171_h32_wLight.txt ├── 0x171_h32_wRegular.txt ├── 0x172_h16_wBold.txt ├── 0x172_h16_wLight.txt ├── 0x172_h16_wRegular.txt ├── 0x172_h20_wBold.txt ├── 0x172_h20_wLight.txt ├── 0x172_h20_wRegular.txt ├── 0x172_h24_wBold.txt ├── 0x172_h24_wLight.txt ├── 0x172_h24_wRegular.txt ├── 0x172_h32_wBold.txt ├── 0x172_h32_wLight.txt ├── 0x172_h32_wRegular.txt ├── 0x173_h16_wBold.txt ├── 0x173_h16_wLight.txt ├── 0x173_h16_wRegular.txt ├── 0x173_h20_wBold.txt ├── 0x173_h20_wLight.txt ├── 0x173_h20_wRegular.txt ├── 0x173_h24_wBold.txt ├── 0x173_h24_wLight.txt ├── 0x173_h24_wRegular.txt ├── 0x173_h32_wBold.txt ├── 0x173_h32_wLight.txt ├── 0x173_h32_wRegular.txt ├── 0x174_h16_wBold.txt ├── 0x174_h16_wLight.txt ├── 0x174_h16_wRegular.txt ├── 0x174_h20_wBold.txt ├── 0x174_h20_wLight.txt ├── 0x174_h20_wRegular.txt ├── 0x174_h24_wBold.txt ├── 0x174_h24_wLight.txt ├── 0x174_h24_wRegular.txt ├── 0x174_h32_wBold.txt ├── 0x174_h32_wLight.txt ├── 0x174_h32_wRegular.txt ├── 0x175_h16_wBold.txt ├── 0x175_h16_wLight.txt ├── 0x175_h16_wRegular.txt ├── 0x175_h20_wBold.txt ├── 0x175_h20_wLight.txt ├── 0x175_h20_wRegular.txt ├── 0x175_h24_wBold.txt ├── 0x175_h24_wLight.txt ├── 0x175_h24_wRegular.txt ├── 0x175_h32_wBold.txt ├── 0x175_h32_wLight.txt ├── 0x175_h32_wRegular.txt ├── 0x176_h16_wBold.txt ├── 0x176_h16_wLight.txt ├── 0x176_h16_wRegular.txt ├── 0x176_h20_wBold.txt ├── 0x176_h20_wLight.txt ├── 0x176_h20_wRegular.txt ├── 0x176_h24_wBold.txt ├── 0x176_h24_wLight.txt ├── 0x176_h24_wRegular.txt ├── 0x176_h32_wBold.txt ├── 0x176_h32_wLight.txt ├── 0x176_h32_wRegular.txt ├── 0x177_h16_wBold.txt ├── 0x177_h16_wLight.txt ├── 0x177_h16_wRegular.txt ├── 0x177_h20_wBold.txt ├── 0x177_h20_wLight.txt ├── 0x177_h20_wRegular.txt ├── 0x177_h24_wBold.txt ├── 0x177_h24_wLight.txt ├── 0x177_h24_wRegular.txt ├── 0x177_h32_wBold.txt ├── 0x177_h32_wLight.txt ├── 0x177_h32_wRegular.txt ├── 0x178_h16_wBold.txt ├── 0x178_h16_wLight.txt ├── 0x178_h16_wRegular.txt ├── 0x178_h20_wBold.txt ├── 0x178_h20_wLight.txt ├── 0x178_h20_wRegular.txt ├── 0x178_h24_wBold.txt ├── 0x178_h24_wLight.txt ├── 0x178_h24_wRegular.txt ├── 0x178_h32_wBold.txt ├── 0x178_h32_wLight.txt ├── 0x178_h32_wRegular.txt ├── 0x179_h16_wBold.txt ├── 0x179_h16_wLight.txt ├── 0x179_h16_wRegular.txt ├── 0x179_h20_wBold.txt ├── 0x179_h20_wLight.txt ├── 0x179_h20_wRegular.txt ├── 0x179_h24_wBold.txt ├── 0x179_h24_wLight.txt ├── 0x179_h24_wRegular.txt ├── 0x179_h32_wBold.txt ├── 0x179_h32_wLight.txt ├── 0x179_h32_wRegular.txt ├── 0x17a_h16_wBold.txt ├── 0x17a_h16_wLight.txt ├── 0x17a_h16_wRegular.txt ├── 0x17a_h20_wBold.txt ├── 0x17a_h20_wLight.txt ├── 0x17a_h20_wRegular.txt ├── 0x17a_h24_wBold.txt ├── 0x17a_h24_wLight.txt ├── 0x17a_h24_wRegular.txt ├── 0x17a_h32_wBold.txt ├── 0x17a_h32_wLight.txt ├── 0x17a_h32_wRegular.txt ├── 0x17b_h16_wBold.txt ├── 0x17b_h16_wLight.txt ├── 0x17b_h16_wRegular.txt ├── 0x17b_h20_wBold.txt ├── 0x17b_h20_wLight.txt ├── 0x17b_h20_wRegular.txt ├── 0x17b_h24_wBold.txt ├── 0x17b_h24_wLight.txt ├── 0x17b_h24_wRegular.txt ├── 0x17b_h32_wBold.txt ├── 0x17b_h32_wLight.txt ├── 0x17b_h32_wRegular.txt ├── 0x17c_h16_wBold.txt ├── 0x17c_h16_wLight.txt ├── 0x17c_h16_wRegular.txt ├── 0x17c_h20_wBold.txt ├── 0x17c_h20_wLight.txt ├── 0x17c_h20_wRegular.txt ├── 0x17c_h24_wBold.txt ├── 0x17c_h24_wLight.txt ├── 0x17c_h24_wRegular.txt ├── 0x17c_h32_wBold.txt ├── 0x17c_h32_wLight.txt ├── 0x17c_h32_wRegular.txt ├── 0x17d_h16_wBold.txt ├── 0x17d_h16_wLight.txt ├── 0x17d_h16_wRegular.txt ├── 0x17d_h20_wBold.txt ├── 0x17d_h20_wLight.txt ├── 0x17d_h20_wRegular.txt ├── 0x17d_h24_wBold.txt ├── 0x17d_h24_wLight.txt ├── 0x17d_h24_wRegular.txt ├── 0x17d_h32_wBold.txt ├── 0x17d_h32_wLight.txt ├── 0x17d_h32_wRegular.txt ├── 0x17e_h16_wBold.txt ├── 0x17e_h16_wLight.txt ├── 0x17e_h16_wRegular.txt ├── 0x17e_h20_wBold.txt ├── 0x17e_h20_wLight.txt ├── 0x17e_h20_wRegular.txt ├── 0x17e_h24_wBold.txt ├── 0x17e_h24_wLight.txt ├── 0x17e_h24_wRegular.txt ├── 0x17e_h32_wBold.txt ├── 0x17e_h32_wLight.txt ├── 0x17e_h32_wRegular.txt ├── 0x17f_h16_wBold.txt ├── 0x17f_h16_wLight.txt ├── 0x17f_h16_wRegular.txt ├── 0x17f_h20_wBold.txt ├── 0x17f_h20_wLight.txt ├── 0x17f_h20_wRegular.txt ├── 0x17f_h24_wBold.txt ├── 0x17f_h24_wLight.txt ├── 0x17f_h24_wRegular.txt ├── 0x17f_h32_wBold.txt ├── 0x17f_h32_wLight.txt ├── 0x17f_h32_wRegular.txt ├── 0x20_h16_wBold.txt ├── 0x20_h16_wLight.txt ├── 0x20_h16_wRegular.txt ├── 0x20_h20_wBold.txt ├── 0x20_h20_wLight.txt ├── 0x20_h20_wRegular.txt ├── 0x20_h24_wBold.txt ├── 0x20_h24_wLight.txt ├── 0x20_h24_wRegular.txt ├── 0x20_h32_wBold.txt ├── 0x20_h32_wLight.txt ├── 0x20_h32_wRegular.txt ├── 0x21_h16_wBold.txt ├── 0x21_h16_wLight.txt ├── 0x21_h16_wRegular.txt ├── 0x21_h20_wBold.txt ├── 0x21_h20_wLight.txt ├── 0x21_h20_wRegular.txt ├── 0x21_h24_wBold.txt ├── 0x21_h24_wLight.txt ├── 0x21_h24_wRegular.txt ├── 0x21_h32_wBold.txt ├── 0x21_h32_wLight.txt ├── 0x21_h32_wRegular.txt ├── 0x22_h16_wBold.txt ├── 0x22_h16_wLight.txt ├── 0x22_h16_wRegular.txt ├── 0x22_h20_wBold.txt ├── 0x22_h20_wLight.txt ├── 0x22_h20_wRegular.txt ├── 0x22_h24_wBold.txt ├── 0x22_h24_wLight.txt ├── 0x22_h24_wRegular.txt ├── 0x22_h32_wBold.txt ├── 0x22_h32_wLight.txt ├── 0x22_h32_wRegular.txt ├── 0x23_h16_wBold.txt ├── 0x23_h16_wLight.txt ├── 0x23_h16_wRegular.txt ├── 0x23_h20_wBold.txt ├── 0x23_h20_wLight.txt ├── 0x23_h20_wRegular.txt ├── 0x23_h24_wBold.txt ├── 0x23_h24_wLight.txt ├── 0x23_h24_wRegular.txt ├── 0x23_h32_wBold.txt ├── 0x23_h32_wLight.txt ├── 0x23_h32_wRegular.txt ├── 0x24_h16_wBold.txt ├── 0x24_h16_wLight.txt ├── 0x24_h16_wRegular.txt ├── 0x24_h20_wBold.txt ├── 0x24_h20_wLight.txt ├── 0x24_h20_wRegular.txt ├── 0x24_h24_wBold.txt ├── 0x24_h24_wLight.txt ├── 0x24_h24_wRegular.txt ├── 0x24_h32_wBold.txt ├── 0x24_h32_wLight.txt ├── 0x24_h32_wRegular.txt ├── 0x25_h16_wBold.txt ├── 0x25_h16_wLight.txt ├── 0x25_h16_wRegular.txt ├── 0x25_h20_wBold.txt ├── 0x25_h20_wLight.txt ├── 0x25_h20_wRegular.txt ├── 0x25_h24_wBold.txt ├── 0x25_h24_wLight.txt ├── 0x25_h24_wRegular.txt ├── 0x25_h32_wBold.txt ├── 0x25_h32_wLight.txt ├── 0x25_h32_wRegular.txt ├── 0x26_h16_wBold.txt ├── 0x26_h16_wLight.txt ├── 0x26_h16_wRegular.txt ├── 0x26_h20_wBold.txt ├── 0x26_h20_wLight.txt ├── 0x26_h20_wRegular.txt ├── 0x26_h24_wBold.txt ├── 0x26_h24_wLight.txt ├── 0x26_h24_wRegular.txt ├── 0x26_h32_wBold.txt ├── 0x26_h32_wLight.txt ├── 0x26_h32_wRegular.txt ├── 0x27_h16_wBold.txt ├── 0x27_h16_wLight.txt ├── 0x27_h16_wRegular.txt ├── 0x27_h20_wBold.txt ├── 0x27_h20_wLight.txt ├── 0x27_h20_wRegular.txt ├── 0x27_h24_wBold.txt ├── 0x27_h24_wLight.txt ├── 0x27_h24_wRegular.txt ├── 0x27_h32_wBold.txt ├── 0x27_h32_wLight.txt ├── 0x27_h32_wRegular.txt ├── 0x28_h16_wBold.txt ├── 0x28_h16_wLight.txt ├── 0x28_h16_wRegular.txt ├── 0x28_h20_wBold.txt ├── 0x28_h20_wLight.txt ├── 0x28_h20_wRegular.txt ├── 0x28_h24_wBold.txt ├── 0x28_h24_wLight.txt ├── 0x28_h24_wRegular.txt ├── 0x28_h32_wBold.txt ├── 0x28_h32_wLight.txt ├── 0x28_h32_wRegular.txt ├── 0x29_h16_wBold.txt ├── 0x29_h16_wLight.txt ├── 0x29_h16_wRegular.txt ├── 0x29_h20_wBold.txt ├── 0x29_h20_wLight.txt ├── 0x29_h20_wRegular.txt ├── 0x29_h24_wBold.txt ├── 0x29_h24_wLight.txt ├── 0x29_h24_wRegular.txt ├── 0x29_h32_wBold.txt ├── 0x29_h32_wLight.txt ├── 0x29_h32_wRegular.txt ├── 0x2a_h16_wBold.txt ├── 0x2a_h16_wLight.txt ├── 0x2a_h16_wRegular.txt ├── 0x2a_h20_wBold.txt ├── 0x2a_h20_wLight.txt ├── 0x2a_h20_wRegular.txt ├── 0x2a_h24_wBold.txt ├── 0x2a_h24_wLight.txt ├── 0x2a_h24_wRegular.txt ├── 0x2a_h32_wBold.txt ├── 0x2a_h32_wLight.txt ├── 0x2a_h32_wRegular.txt ├── 0x2b_h16_wBold.txt ├── 0x2b_h16_wLight.txt ├── 0x2b_h16_wRegular.txt ├── 0x2b_h20_wBold.txt ├── 0x2b_h20_wLight.txt ├── 0x2b_h20_wRegular.txt ├── 0x2b_h24_wBold.txt ├── 0x2b_h24_wLight.txt ├── 0x2b_h24_wRegular.txt ├── 0x2b_h32_wBold.txt ├── 0x2b_h32_wLight.txt ├── 0x2b_h32_wRegular.txt ├── 0x2c_h16_wBold.txt ├── 0x2c_h16_wLight.txt ├── 0x2c_h16_wRegular.txt ├── 0x2c_h20_wBold.txt ├── 0x2c_h20_wLight.txt ├── 0x2c_h20_wRegular.txt ├── 0x2c_h24_wBold.txt ├── 0x2c_h24_wLight.txt ├── 0x2c_h24_wRegular.txt ├── 0x2c_h32_wBold.txt ├── 0x2c_h32_wLight.txt ├── 0x2c_h32_wRegular.txt ├── 0x2d_h16_wBold.txt ├── 0x2d_h16_wLight.txt ├── 0x2d_h16_wRegular.txt ├── 0x2d_h20_wBold.txt ├── 0x2d_h20_wLight.txt ├── 0x2d_h20_wRegular.txt ├── 0x2d_h24_wBold.txt ├── 0x2d_h24_wLight.txt ├── 0x2d_h24_wRegular.txt ├── 0x2d_h32_wBold.txt ├── 0x2d_h32_wLight.txt ├── 0x2d_h32_wRegular.txt ├── 0x2e_h16_wBold.txt ├── 0x2e_h16_wLight.txt ├── 0x2e_h16_wRegular.txt ├── 0x2e_h20_wBold.txt ├── 0x2e_h20_wLight.txt ├── 0x2e_h20_wRegular.txt ├── 0x2e_h24_wBold.txt ├── 0x2e_h24_wLight.txt ├── 0x2e_h24_wRegular.txt ├── 0x2e_h32_wBold.txt ├── 0x2e_h32_wLight.txt ├── 0x2e_h32_wRegular.txt ├── 0x2f_h16_wBold.txt ├── 0x2f_h16_wLight.txt ├── 0x2f_h16_wRegular.txt ├── 0x2f_h20_wBold.txt ├── 0x2f_h20_wLight.txt ├── 0x2f_h20_wRegular.txt ├── 0x2f_h24_wBold.txt ├── 0x2f_h24_wLight.txt ├── 0x2f_h24_wRegular.txt ├── 0x2f_h32_wBold.txt ├── 0x2f_h32_wLight.txt ├── 0x2f_h32_wRegular.txt ├── 0x30_h16_wBold.txt ├── 0x30_h16_wLight.txt ├── 0x30_h16_wRegular.txt ├── 0x30_h20_wBold.txt ├── 0x30_h20_wLight.txt ├── 0x30_h20_wRegular.txt ├── 0x30_h24_wBold.txt ├── 0x30_h24_wLight.txt ├── 0x30_h24_wRegular.txt ├── 0x30_h32_wBold.txt ├── 0x30_h32_wLight.txt ├── 0x30_h32_wRegular.txt ├── 0x31_h16_wBold.txt ├── 0x31_h16_wLight.txt ├── 0x31_h16_wRegular.txt ├── 0x31_h20_wBold.txt ├── 0x31_h20_wLight.txt ├── 0x31_h20_wRegular.txt ├── 0x31_h24_wBold.txt ├── 0x31_h24_wLight.txt ├── 0x31_h24_wRegular.txt ├── 0x31_h32_wBold.txt ├── 0x31_h32_wLight.txt ├── 0x31_h32_wRegular.txt ├── 0x32_h16_wBold.txt ├── 0x32_h16_wLight.txt ├── 0x32_h16_wRegular.txt ├── 0x32_h20_wBold.txt ├── 0x32_h20_wLight.txt ├── 0x32_h20_wRegular.txt ├── 0x32_h24_wBold.txt ├── 0x32_h24_wLight.txt ├── 0x32_h24_wRegular.txt ├── 0x32_h32_wBold.txt ├── 0x32_h32_wLight.txt ├── 0x32_h32_wRegular.txt ├── 0x33_h16_wBold.txt ├── 0x33_h16_wLight.txt ├── 0x33_h16_wRegular.txt ├── 0x33_h20_wBold.txt ├── 0x33_h20_wLight.txt ├── 0x33_h20_wRegular.txt ├── 0x33_h24_wBold.txt ├── 0x33_h24_wLight.txt ├── 0x33_h24_wRegular.txt ├── 0x33_h32_wBold.txt ├── 0x33_h32_wLight.txt ├── 0x33_h32_wRegular.txt ├── 0x34_h16_wBold.txt ├── 0x34_h16_wLight.txt ├── 0x34_h16_wRegular.txt ├── 0x34_h20_wBold.txt ├── 0x34_h20_wLight.txt ├── 0x34_h20_wRegular.txt ├── 0x34_h24_wBold.txt ├── 0x34_h24_wLight.txt ├── 0x34_h24_wRegular.txt ├── 0x34_h32_wBold.txt ├── 0x34_h32_wLight.txt ├── 0x34_h32_wRegular.txt ├── 0x35_h16_wBold.txt ├── 0x35_h16_wLight.txt ├── 0x35_h16_wRegular.txt ├── 0x35_h20_wBold.txt ├── 0x35_h20_wLight.txt ├── 0x35_h20_wRegular.txt ├── 0x35_h24_wBold.txt ├── 0x35_h24_wLight.txt ├── 0x35_h24_wRegular.txt ├── 0x35_h32_wBold.txt ├── 0x35_h32_wLight.txt ├── 0x35_h32_wRegular.txt ├── 0x36_h16_wBold.txt ├── 0x36_h16_wLight.txt ├── 0x36_h16_wRegular.txt ├── 0x36_h20_wBold.txt ├── 0x36_h20_wLight.txt ├── 0x36_h20_wRegular.txt ├── 0x36_h24_wBold.txt ├── 0x36_h24_wLight.txt ├── 0x36_h24_wRegular.txt ├── 0x36_h32_wBold.txt ├── 0x36_h32_wLight.txt ├── 0x36_h32_wRegular.txt ├── 0x37_h16_wBold.txt ├── 0x37_h16_wLight.txt ├── 0x37_h16_wRegular.txt ├── 0x37_h20_wBold.txt ├── 0x37_h20_wLight.txt ├── 0x37_h20_wRegular.txt ├── 0x37_h24_wBold.txt ├── 0x37_h24_wLight.txt ├── 0x37_h24_wRegular.txt ├── 0x37_h32_wBold.txt ├── 0x37_h32_wLight.txt ├── 0x37_h32_wRegular.txt ├── 0x38_h16_wBold.txt ├── 0x38_h16_wLight.txt ├── 0x38_h16_wRegular.txt ├── 0x38_h20_wBold.txt ├── 0x38_h20_wLight.txt ├── 0x38_h20_wRegular.txt ├── 0x38_h24_wBold.txt ├── 0x38_h24_wLight.txt ├── 0x38_h24_wRegular.txt ├── 0x38_h32_wBold.txt ├── 0x38_h32_wLight.txt ├── 0x38_h32_wRegular.txt ├── 0x39_h16_wBold.txt ├── 0x39_h16_wLight.txt ├── 0x39_h16_wRegular.txt ├── 0x39_h20_wBold.txt ├── 0x39_h20_wLight.txt ├── 0x39_h20_wRegular.txt ├── 0x39_h24_wBold.txt ├── 0x39_h24_wLight.txt ├── 0x39_h24_wRegular.txt ├── 0x39_h32_wBold.txt ├── 0x39_h32_wLight.txt ├── 0x39_h32_wRegular.txt ├── 0x3a_h16_wBold.txt ├── 0x3a_h16_wLight.txt ├── 0x3a_h16_wRegular.txt ├── 0x3a_h20_wBold.txt ├── 0x3a_h20_wLight.txt ├── 0x3a_h20_wRegular.txt ├── 0x3a_h24_wBold.txt ├── 0x3a_h24_wLight.txt ├── 0x3a_h24_wRegular.txt ├── 0x3a_h32_wBold.txt ├── 0x3a_h32_wLight.txt ├── 0x3a_h32_wRegular.txt ├── 0x3b_h16_wBold.txt ├── 0x3b_h16_wLight.txt ├── 0x3b_h16_wRegular.txt ├── 0x3b_h20_wBold.txt ├── 0x3b_h20_wLight.txt ├── 0x3b_h20_wRegular.txt ├── 0x3b_h24_wBold.txt ├── 0x3b_h24_wLight.txt ├── 0x3b_h24_wRegular.txt ├── 0x3b_h32_wBold.txt ├── 0x3b_h32_wLight.txt ├── 0x3b_h32_wRegular.txt ├── 0x3c_h16_wBold.txt ├── 0x3c_h16_wLight.txt ├── 0x3c_h16_wRegular.txt ├── 0x3c_h20_wBold.txt ├── 0x3c_h20_wLight.txt ├── 0x3c_h20_wRegular.txt ├── 0x3c_h24_wBold.txt ├── 0x3c_h24_wLight.txt ├── 0x3c_h24_wRegular.txt ├── 0x3c_h32_wBold.txt ├── 0x3c_h32_wLight.txt ├── 0x3c_h32_wRegular.txt ├── 0x3d_h16_wBold.txt ├── 0x3d_h16_wLight.txt ├── 0x3d_h16_wRegular.txt ├── 0x3d_h20_wBold.txt ├── 0x3d_h20_wLight.txt ├── 0x3d_h20_wRegular.txt ├── 0x3d_h24_wBold.txt ├── 0x3d_h24_wLight.txt ├── 0x3d_h24_wRegular.txt ├── 0x3d_h32_wBold.txt ├── 0x3d_h32_wLight.txt ├── 0x3d_h32_wRegular.txt ├── 0x3e_h16_wBold.txt ├── 0x3e_h16_wLight.txt ├── 0x3e_h16_wRegular.txt ├── 0x3e_h20_wBold.txt ├── 0x3e_h20_wLight.txt ├── 0x3e_h20_wRegular.txt ├── 0x3e_h24_wBold.txt ├── 0x3e_h24_wLight.txt ├── 0x3e_h24_wRegular.txt ├── 0x3e_h32_wBold.txt ├── 0x3e_h32_wLight.txt ├── 0x3e_h32_wRegular.txt ├── 0x3f_h16_wBold.txt ├── 0x3f_h16_wLight.txt ├── 0x3f_h16_wRegular.txt ├── 0x3f_h20_wBold.txt ├── 0x3f_h20_wLight.txt ├── 0x3f_h20_wRegular.txt ├── 0x3f_h24_wBold.txt ├── 0x3f_h24_wLight.txt ├── 0x3f_h24_wRegular.txt ├── 0x3f_h32_wBold.txt ├── 0x3f_h32_wLight.txt ├── 0x3f_h32_wRegular.txt ├── 0x40_h16_wBold.txt ├── 0x40_h16_wLight.txt ├── 0x40_h16_wRegular.txt ├── 0x40_h20_wBold.txt ├── 0x40_h20_wLight.txt ├── 0x40_h20_wRegular.txt ├── 0x40_h24_wBold.txt ├── 0x40_h24_wLight.txt ├── 0x40_h24_wRegular.txt ├── 0x40_h32_wBold.txt ├── 0x40_h32_wLight.txt ├── 0x40_h32_wRegular.txt ├── 0x41_h16_wBold.txt ├── 0x41_h16_wLight.txt ├── 0x41_h16_wRegular.txt ├── 0x41_h20_wBold.txt ├── 0x41_h20_wLight.txt ├── 0x41_h20_wRegular.txt ├── 0x41_h24_wBold.txt ├── 0x41_h24_wLight.txt ├── 0x41_h24_wRegular.txt ├── 0x41_h32_wBold.txt ├── 0x41_h32_wLight.txt ├── 0x41_h32_wRegular.txt ├── 0x42_h16_wBold.txt ├── 0x42_h16_wLight.txt ├── 0x42_h16_wRegular.txt ├── 0x42_h20_wBold.txt ├── 0x42_h20_wLight.txt ├── 0x42_h20_wRegular.txt ├── 0x42_h24_wBold.txt ├── 0x42_h24_wLight.txt ├── 0x42_h24_wRegular.txt ├── 0x42_h32_wBold.txt ├── 0x42_h32_wLight.txt ├── 0x42_h32_wRegular.txt ├── 0x43_h16_wBold.txt ├── 0x43_h16_wLight.txt ├── 0x43_h16_wRegular.txt ├── 0x43_h20_wBold.txt ├── 0x43_h20_wLight.txt ├── 0x43_h20_wRegular.txt ├── 0x43_h24_wBold.txt ├── 0x43_h24_wLight.txt ├── 0x43_h24_wRegular.txt ├── 0x43_h32_wBold.txt ├── 0x43_h32_wLight.txt ├── 0x43_h32_wRegular.txt ├── 0x44_h16_wBold.txt ├── 0x44_h16_wLight.txt ├── 0x44_h16_wRegular.txt ├── 0x44_h20_wBold.txt ├── 0x44_h20_wLight.txt ├── 0x44_h20_wRegular.txt ├── 0x44_h24_wBold.txt ├── 0x44_h24_wLight.txt ├── 0x44_h24_wRegular.txt ├── 0x44_h32_wBold.txt ├── 0x44_h32_wLight.txt ├── 0x44_h32_wRegular.txt ├── 0x45_h16_wBold.txt ├── 0x45_h16_wLight.txt ├── 0x45_h16_wRegular.txt ├── 0x45_h20_wBold.txt ├── 0x45_h20_wLight.txt ├── 0x45_h20_wRegular.txt ├── 0x45_h24_wBold.txt ├── 0x45_h24_wLight.txt ├── 0x45_h24_wRegular.txt ├── 0x45_h32_wBold.txt ├── 0x45_h32_wLight.txt ├── 0x45_h32_wRegular.txt ├── 0x46_h16_wBold.txt ├── 0x46_h16_wLight.txt ├── 0x46_h16_wRegular.txt ├── 0x46_h20_wBold.txt ├── 0x46_h20_wLight.txt ├── 0x46_h20_wRegular.txt ├── 0x46_h24_wBold.txt ├── 0x46_h24_wLight.txt ├── 0x46_h24_wRegular.txt ├── 0x46_h32_wBold.txt ├── 0x46_h32_wLight.txt ├── 0x46_h32_wRegular.txt ├── 0x47_h16_wBold.txt ├── 0x47_h16_wLight.txt ├── 0x47_h16_wRegular.txt ├── 0x47_h20_wBold.txt ├── 0x47_h20_wLight.txt ├── 0x47_h20_wRegular.txt ├── 0x47_h24_wBold.txt ├── 0x47_h24_wLight.txt ├── 0x47_h24_wRegular.txt ├── 0x47_h32_wBold.txt ├── 0x47_h32_wLight.txt ├── 0x47_h32_wRegular.txt ├── 0x48_h16_wBold.txt ├── 0x48_h16_wLight.txt ├── 0x48_h16_wRegular.txt ├── 0x48_h20_wBold.txt ├── 0x48_h20_wLight.txt ├── 0x48_h20_wRegular.txt ├── 0x48_h24_wBold.txt ├── 0x48_h24_wLight.txt ├── 0x48_h24_wRegular.txt ├── 0x48_h32_wBold.txt ├── 0x48_h32_wLight.txt ├── 0x48_h32_wRegular.txt ├── 0x49_h16_wBold.txt ├── 0x49_h16_wLight.txt ├── 0x49_h16_wRegular.txt ├── 0x49_h20_wBold.txt ├── 0x49_h20_wLight.txt ├── 0x49_h20_wRegular.txt ├── 0x49_h24_wBold.txt ├── 0x49_h24_wLight.txt ├── 0x49_h24_wRegular.txt ├── 0x49_h32_wBold.txt ├── 0x49_h32_wLight.txt ├── 0x49_h32_wRegular.txt ├── 0x4a_h16_wBold.txt ├── 0x4a_h16_wLight.txt ├── 0x4a_h16_wRegular.txt ├── 0x4a_h20_wBold.txt ├── 0x4a_h20_wLight.txt ├── 0x4a_h20_wRegular.txt ├── 0x4a_h24_wBold.txt ├── 0x4a_h24_wLight.txt ├── 0x4a_h24_wRegular.txt ├── 0x4a_h32_wBold.txt ├── 0x4a_h32_wLight.txt ├── 0x4a_h32_wRegular.txt ├── 0x4b_h16_wBold.txt ├── 0x4b_h16_wLight.txt ├── 0x4b_h16_wRegular.txt ├── 0x4b_h20_wBold.txt ├── 0x4b_h20_wLight.txt ├── 0x4b_h20_wRegular.txt ├── 0x4b_h24_wBold.txt ├── 0x4b_h24_wLight.txt ├── 0x4b_h24_wRegular.txt ├── 0x4b_h32_wBold.txt ├── 0x4b_h32_wLight.txt ├── 0x4b_h32_wRegular.txt ├── 0x4c_h16_wBold.txt ├── 0x4c_h16_wLight.txt ├── 0x4c_h16_wRegular.txt ├── 0x4c_h20_wBold.txt ├── 0x4c_h20_wLight.txt ├── 0x4c_h20_wRegular.txt ├── 0x4c_h24_wBold.txt ├── 0x4c_h24_wLight.txt ├── 0x4c_h24_wRegular.txt ├── 0x4c_h32_wBold.txt ├── 0x4c_h32_wLight.txt ├── 0x4c_h32_wRegular.txt ├── 0x4d_h16_wBold.txt ├── 0x4d_h16_wLight.txt ├── 0x4d_h16_wRegular.txt ├── 0x4d_h20_wBold.txt ├── 0x4d_h20_wLight.txt ├── 0x4d_h20_wRegular.txt ├── 0x4d_h24_wBold.txt ├── 0x4d_h24_wLight.txt ├── 0x4d_h24_wRegular.txt ├── 0x4d_h32_wBold.txt ├── 0x4d_h32_wLight.txt ├── 0x4d_h32_wRegular.txt ├── 0x4e_h16_wBold.txt ├── 0x4e_h16_wLight.txt ├── 0x4e_h16_wRegular.txt ├── 0x4e_h20_wBold.txt ├── 0x4e_h20_wLight.txt ├── 0x4e_h20_wRegular.txt ├── 0x4e_h24_wBold.txt ├── 0x4e_h24_wLight.txt ├── 0x4e_h24_wRegular.txt ├── 0x4e_h32_wBold.txt ├── 0x4e_h32_wLight.txt ├── 0x4e_h32_wRegular.txt ├── 0x4f_h16_wBold.txt ├── 0x4f_h16_wLight.txt ├── 0x4f_h16_wRegular.txt ├── 0x4f_h20_wBold.txt ├── 0x4f_h20_wLight.txt ├── 0x4f_h20_wRegular.txt ├── 0x4f_h24_wBold.txt ├── 0x4f_h24_wLight.txt ├── 0x4f_h24_wRegular.txt ├── 0x4f_h32_wBold.txt ├── 0x4f_h32_wLight.txt ├── 0x4f_h32_wRegular.txt ├── 0x50_h16_wBold.txt ├── 0x50_h16_wLight.txt ├── 0x50_h16_wRegular.txt ├── 0x50_h20_wBold.txt ├── 0x50_h20_wLight.txt ├── 0x50_h20_wRegular.txt ├── 0x50_h24_wBold.txt ├── 0x50_h24_wLight.txt ├── 0x50_h24_wRegular.txt ├── 0x50_h32_wBold.txt ├── 0x50_h32_wLight.txt ├── 0x50_h32_wRegular.txt ├── 0x51_h16_wBold.txt ├── 0x51_h16_wLight.txt ├── 0x51_h16_wRegular.txt ├── 0x51_h20_wBold.txt ├── 0x51_h20_wLight.txt ├── 0x51_h20_wRegular.txt ├── 0x51_h24_wBold.txt ├── 0x51_h24_wLight.txt ├── 0x51_h24_wRegular.txt ├── 0x51_h32_wBold.txt ├── 0x51_h32_wLight.txt ├── 0x51_h32_wRegular.txt ├── 0x52_h16_wBold.txt ├── 0x52_h16_wLight.txt ├── 0x52_h16_wRegular.txt ├── 0x52_h20_wBold.txt ├── 0x52_h20_wLight.txt ├── 0x52_h20_wRegular.txt ├── 0x52_h24_wBold.txt ├── 0x52_h24_wLight.txt ├── 0x52_h24_wRegular.txt ├── 0x52_h32_wBold.txt ├── 0x52_h32_wLight.txt ├── 0x52_h32_wRegular.txt ├── 0x53_h16_wBold.txt ├── 0x53_h16_wLight.txt ├── 0x53_h16_wRegular.txt ├── 0x53_h20_wBold.txt ├── 0x53_h20_wLight.txt ├── 0x53_h20_wRegular.txt ├── 0x53_h24_wBold.txt ├── 0x53_h24_wLight.txt ├── 0x53_h24_wRegular.txt ├── 0x53_h32_wBold.txt ├── 0x53_h32_wLight.txt ├── 0x53_h32_wRegular.txt ├── 0x54_h16_wBold.txt ├── 0x54_h16_wLight.txt ├── 0x54_h16_wRegular.txt ├── 0x54_h20_wBold.txt ├── 0x54_h20_wLight.txt ├── 0x54_h20_wRegular.txt ├── 0x54_h24_wBold.txt ├── 0x54_h24_wLight.txt ├── 0x54_h24_wRegular.txt ├── 0x54_h32_wBold.txt ├── 0x54_h32_wLight.txt ├── 0x54_h32_wRegular.txt ├── 0x55_h16_wBold.txt ├── 0x55_h16_wLight.txt ├── 0x55_h16_wRegular.txt ├── 0x55_h20_wBold.txt ├── 0x55_h20_wLight.txt ├── 0x55_h20_wRegular.txt ├── 0x55_h24_wBold.txt ├── 0x55_h24_wLight.txt ├── 0x55_h24_wRegular.txt ├── 0x55_h32_wBold.txt ├── 0x55_h32_wLight.txt ├── 0x55_h32_wRegular.txt ├── 0x56_h16_wBold.txt ├── 0x56_h16_wLight.txt ├── 0x56_h16_wRegular.txt ├── 0x56_h20_wBold.txt ├── 0x56_h20_wLight.txt ├── 0x56_h20_wRegular.txt ├── 0x56_h24_wBold.txt ├── 0x56_h24_wLight.txt ├── 0x56_h24_wRegular.txt ├── 0x56_h32_wBold.txt ├── 0x56_h32_wLight.txt ├── 0x56_h32_wRegular.txt ├── 0x57_h16_wBold.txt ├── 0x57_h16_wLight.txt ├── 0x57_h16_wRegular.txt ├── 0x57_h20_wBold.txt ├── 0x57_h20_wLight.txt ├── 0x57_h20_wRegular.txt ├── 0x57_h24_wBold.txt ├── 0x57_h24_wLight.txt ├── 0x57_h24_wRegular.txt ├── 0x57_h32_wBold.txt ├── 0x57_h32_wLight.txt ├── 0x57_h32_wRegular.txt ├── 0x58_h16_wBold.txt ├── 0x58_h16_wLight.txt ├── 0x58_h16_wRegular.txt ├── 0x58_h20_wBold.txt ├── 0x58_h20_wLight.txt ├── 0x58_h20_wRegular.txt ├── 0x58_h24_wBold.txt ├── 0x58_h24_wLight.txt ├── 0x58_h24_wRegular.txt ├── 0x58_h32_wBold.txt ├── 0x58_h32_wLight.txt ├── 0x58_h32_wRegular.txt ├── 0x59_h16_wBold.txt ├── 0x59_h16_wLight.txt ├── 0x59_h16_wRegular.txt ├── 0x59_h20_wBold.txt ├── 0x59_h20_wLight.txt ├── 0x59_h20_wRegular.txt ├── 0x59_h24_wBold.txt ├── 0x59_h24_wLight.txt ├── 0x59_h24_wRegular.txt ├── 0x59_h32_wBold.txt ├── 0x59_h32_wLight.txt ├── 0x59_h32_wRegular.txt ├── 0x5a_h16_wBold.txt ├── 0x5a_h16_wLight.txt ├── 0x5a_h16_wRegular.txt ├── 0x5a_h20_wBold.txt ├── 0x5a_h20_wLight.txt ├── 0x5a_h20_wRegular.txt ├── 0x5a_h24_wBold.txt ├── 0x5a_h24_wLight.txt ├── 0x5a_h24_wRegular.txt ├── 0x5a_h32_wBold.txt ├── 0x5a_h32_wLight.txt ├── 0x5a_h32_wRegular.txt ├── 0x5b_h16_wBold.txt ├── 0x5b_h16_wLight.txt ├── 0x5b_h16_wRegular.txt ├── 0x5b_h20_wBold.txt ├── 0x5b_h20_wLight.txt ├── 0x5b_h20_wRegular.txt ├── 0x5b_h24_wBold.txt ├── 0x5b_h24_wLight.txt ├── 0x5b_h24_wRegular.txt ├── 0x5b_h32_wBold.txt ├── 0x5b_h32_wLight.txt ├── 0x5b_h32_wRegular.txt ├── 0x5c_h16_wBold.txt ├── 0x5c_h16_wLight.txt ├── 0x5c_h16_wRegular.txt ├── 0x5c_h20_wBold.txt ├── 0x5c_h20_wLight.txt ├── 0x5c_h20_wRegular.txt ├── 0x5c_h24_wBold.txt ├── 0x5c_h24_wLight.txt ├── 0x5c_h24_wRegular.txt ├── 0x5c_h32_wBold.txt ├── 0x5c_h32_wLight.txt ├── 0x5c_h32_wRegular.txt ├── 0x5d_h16_wBold.txt ├── 0x5d_h16_wLight.txt ├── 0x5d_h16_wRegular.txt ├── 0x5d_h20_wBold.txt ├── 0x5d_h20_wLight.txt ├── 0x5d_h20_wRegular.txt ├── 0x5d_h24_wBold.txt ├── 0x5d_h24_wLight.txt ├── 0x5d_h24_wRegular.txt ├── 0x5d_h32_wBold.txt ├── 0x5d_h32_wLight.txt ├── 0x5d_h32_wRegular.txt ├── 0x5e_h16_wBold.txt ├── 0x5e_h16_wLight.txt ├── 0x5e_h16_wRegular.txt ├── 0x5e_h20_wBold.txt ├── 0x5e_h20_wLight.txt ├── 0x5e_h20_wRegular.txt ├── 0x5e_h24_wBold.txt ├── 0x5e_h24_wLight.txt ├── 0x5e_h24_wRegular.txt ├── 0x5e_h32_wBold.txt ├── 0x5e_h32_wLight.txt ├── 0x5e_h32_wRegular.txt ├── 0x5f_h16_wBold.txt ├── 0x5f_h16_wLight.txt ├── 0x5f_h16_wRegular.txt ├── 0x5f_h20_wBold.txt ├── 0x5f_h20_wLight.txt ├── 0x5f_h20_wRegular.txt ├── 0x5f_h24_wBold.txt ├── 0x5f_h24_wLight.txt ├── 0x5f_h24_wRegular.txt ├── 0x5f_h32_wBold.txt ├── 0x5f_h32_wLight.txt ├── 0x5f_h32_wRegular.txt ├── 0x60_h16_wBold.txt ├── 0x60_h16_wLight.txt ├── 0x60_h16_wRegular.txt ├── 0x60_h20_wBold.txt ├── 0x60_h20_wLight.txt ├── 0x60_h20_wRegular.txt ├── 0x60_h24_wBold.txt ├── 0x60_h24_wLight.txt ├── 0x60_h24_wRegular.txt ├── 0x60_h32_wBold.txt ├── 0x60_h32_wLight.txt ├── 0x60_h32_wRegular.txt ├── 0x61_h16_wBold.txt ├── 0x61_h16_wLight.txt ├── 0x61_h16_wRegular.txt ├── 0x61_h20_wBold.txt ├── 0x61_h20_wLight.txt ├── 0x61_h20_wRegular.txt ├── 0x61_h24_wBold.txt ├── 0x61_h24_wLight.txt ├── 0x61_h24_wRegular.txt ├── 0x61_h32_wBold.txt ├── 0x61_h32_wLight.txt ├── 0x61_h32_wRegular.txt ├── 0x62_h16_wBold.txt ├── 0x62_h16_wLight.txt ├── 0x62_h16_wRegular.txt ├── 0x62_h20_wBold.txt ├── 0x62_h20_wLight.txt ├── 0x62_h20_wRegular.txt ├── 0x62_h24_wBold.txt ├── 0x62_h24_wLight.txt ├── 0x62_h24_wRegular.txt ├── 0x62_h32_wBold.txt ├── 0x62_h32_wLight.txt ├── 0x62_h32_wRegular.txt ├── 0x63_h16_wBold.txt ├── 0x63_h16_wLight.txt ├── 0x63_h16_wRegular.txt ├── 0x63_h20_wBold.txt ├── 0x63_h20_wLight.txt ├── 0x63_h20_wRegular.txt ├── 0x63_h24_wBold.txt ├── 0x63_h24_wLight.txt ├── 0x63_h24_wRegular.txt ├── 0x63_h32_wBold.txt ├── 0x63_h32_wLight.txt ├── 0x63_h32_wRegular.txt ├── 0x64_h16_wBold.txt ├── 0x64_h16_wLight.txt ├── 0x64_h16_wRegular.txt ├── 0x64_h20_wBold.txt ├── 0x64_h20_wLight.txt ├── 0x64_h20_wRegular.txt ├── 0x64_h24_wBold.txt ├── 0x64_h24_wLight.txt ├── 0x64_h24_wRegular.txt ├── 0x64_h32_wBold.txt ├── 0x64_h32_wLight.txt ├── 0x64_h32_wRegular.txt ├── 0x65_h16_wBold.txt ├── 0x65_h16_wLight.txt ├── 0x65_h16_wRegular.txt ├── 0x65_h20_wBold.txt ├── 0x65_h20_wLight.txt ├── 0x65_h20_wRegular.txt ├── 0x65_h24_wBold.txt ├── 0x65_h24_wLight.txt ├── 0x65_h24_wRegular.txt ├── 0x65_h32_wBold.txt ├── 0x65_h32_wLight.txt ├── 0x65_h32_wRegular.txt ├── 0x66_h16_wBold.txt ├── 0x66_h16_wLight.txt ├── 0x66_h16_wRegular.txt ├── 0x66_h20_wBold.txt ├── 0x66_h20_wLight.txt ├── 0x66_h20_wRegular.txt ├── 0x66_h24_wBold.txt ├── 0x66_h24_wLight.txt ├── 0x66_h24_wRegular.txt ├── 0x66_h32_wBold.txt ├── 0x66_h32_wLight.txt ├── 0x66_h32_wRegular.txt ├── 0x67_h16_wBold.txt ├── 0x67_h16_wLight.txt ├── 0x67_h16_wRegular.txt ├── 0x67_h20_wBold.txt ├── 0x67_h20_wLight.txt ├── 0x67_h20_wRegular.txt ├── 0x67_h24_wBold.txt ├── 0x67_h24_wLight.txt ├── 0x67_h24_wRegular.txt ├── 0x67_h32_wBold.txt ├── 0x67_h32_wLight.txt ├── 0x67_h32_wRegular.txt ├── 0x68_h16_wBold.txt ├── 0x68_h16_wLight.txt ├── 0x68_h16_wRegular.txt ├── 0x68_h20_wBold.txt ├── 0x68_h20_wLight.txt ├── 0x68_h20_wRegular.txt ├── 0x68_h24_wBold.txt ├── 0x68_h24_wLight.txt ├── 0x68_h24_wRegular.txt ├── 0x68_h32_wBold.txt ├── 0x68_h32_wLight.txt ├── 0x68_h32_wRegular.txt ├── 0x69_h16_wBold.txt ├── 0x69_h16_wLight.txt ├── 0x69_h16_wRegular.txt ├── 0x69_h20_wBold.txt ├── 0x69_h20_wLight.txt ├── 0x69_h20_wRegular.txt ├── 0x69_h24_wBold.txt ├── 0x69_h24_wLight.txt ├── 0x69_h24_wRegular.txt ├── 0x69_h32_wBold.txt ├── 0x69_h32_wLight.txt ├── 0x69_h32_wRegular.txt ├── 0x6a_h16_wBold.txt ├── 0x6a_h16_wLight.txt ├── 0x6a_h16_wRegular.txt ├── 0x6a_h20_wBold.txt ├── 0x6a_h20_wLight.txt ├── 0x6a_h20_wRegular.txt ├── 0x6a_h24_wBold.txt ├── 0x6a_h24_wLight.txt ├── 0x6a_h24_wRegular.txt ├── 0x6a_h32_wBold.txt ├── 0x6a_h32_wLight.txt ├── 0x6a_h32_wRegular.txt ├── 0x6b_h16_wBold.txt ├── 0x6b_h16_wLight.txt ├── 0x6b_h16_wRegular.txt ├── 0x6b_h20_wBold.txt ├── 0x6b_h20_wLight.txt ├── 0x6b_h20_wRegular.txt ├── 0x6b_h24_wBold.txt ├── 0x6b_h24_wLight.txt ├── 0x6b_h24_wRegular.txt ├── 0x6b_h32_wBold.txt ├── 0x6b_h32_wLight.txt ├── 0x6b_h32_wRegular.txt ├── 0x6c_h16_wBold.txt ├── 0x6c_h16_wLight.txt ├── 0x6c_h16_wRegular.txt ├── 0x6c_h20_wBold.txt ├── 0x6c_h20_wLight.txt ├── 0x6c_h20_wRegular.txt ├── 0x6c_h24_wBold.txt ├── 0x6c_h24_wLight.txt ├── 0x6c_h24_wRegular.txt ├── 0x6c_h32_wBold.txt ├── 0x6c_h32_wLight.txt ├── 0x6c_h32_wRegular.txt ├── 0x6d_h16_wBold.txt ├── 0x6d_h16_wLight.txt ├── 0x6d_h16_wRegular.txt ├── 0x6d_h20_wBold.txt ├── 0x6d_h20_wLight.txt ├── 0x6d_h20_wRegular.txt ├── 0x6d_h24_wBold.txt ├── 0x6d_h24_wLight.txt ├── 0x6d_h24_wRegular.txt ├── 0x6d_h32_wBold.txt ├── 0x6d_h32_wLight.txt ├── 0x6d_h32_wRegular.txt ├── 0x6e_h16_wBold.txt ├── 0x6e_h16_wLight.txt ├── 0x6e_h16_wRegular.txt ├── 0x6e_h20_wBold.txt ├── 0x6e_h20_wLight.txt ├── 0x6e_h20_wRegular.txt ├── 0x6e_h24_wBold.txt ├── 0x6e_h24_wLight.txt ├── 0x6e_h24_wRegular.txt ├── 0x6e_h32_wBold.txt ├── 0x6e_h32_wLight.txt ├── 0x6e_h32_wRegular.txt ├── 0x6f_h16_wBold.txt ├── 0x6f_h16_wLight.txt ├── 0x6f_h16_wRegular.txt ├── 0x6f_h20_wBold.txt ├── 0x6f_h20_wLight.txt ├── 0x6f_h20_wRegular.txt ├── 0x6f_h24_wBold.txt ├── 0x6f_h24_wLight.txt ├── 0x6f_h24_wRegular.txt ├── 0x6f_h32_wBold.txt ├── 0x6f_h32_wLight.txt ├── 0x6f_h32_wRegular.txt ├── 0x70_h16_wBold.txt ├── 0x70_h16_wLight.txt ├── 0x70_h16_wRegular.txt ├── 0x70_h20_wBold.txt ├── 0x70_h20_wLight.txt ├── 0x70_h20_wRegular.txt ├── 0x70_h24_wBold.txt ├── 0x70_h24_wLight.txt ├── 0x70_h24_wRegular.txt ├── 0x70_h32_wBold.txt ├── 0x70_h32_wLight.txt ├── 0x70_h32_wRegular.txt ├── 0x71_h16_wBold.txt ├── 0x71_h16_wLight.txt ├── 0x71_h16_wRegular.txt ├── 0x71_h20_wBold.txt ├── 0x71_h20_wLight.txt ├── 0x71_h20_wRegular.txt ├── 0x71_h24_wBold.txt ├── 0x71_h24_wLight.txt ├── 0x71_h24_wRegular.txt ├── 0x71_h32_wBold.txt ├── 0x71_h32_wLight.txt ├── 0x71_h32_wRegular.txt ├── 0x72_h16_wBold.txt ├── 0x72_h16_wLight.txt ├── 0x72_h16_wRegular.txt ├── 0x72_h20_wBold.txt ├── 0x72_h20_wLight.txt ├── 0x72_h20_wRegular.txt ├── 0x72_h24_wBold.txt ├── 0x72_h24_wLight.txt ├── 0x72_h24_wRegular.txt ├── 0x72_h32_wBold.txt ├── 0x72_h32_wLight.txt ├── 0x72_h32_wRegular.txt ├── 0x73_h16_wBold.txt ├── 0x73_h16_wLight.txt ├── 0x73_h16_wRegular.txt ├── 0x73_h20_wBold.txt ├── 0x73_h20_wLight.txt ├── 0x73_h20_wRegular.txt ├── 0x73_h24_wBold.txt ├── 0x73_h24_wLight.txt ├── 0x73_h24_wRegular.txt ├── 0x73_h32_wBold.txt ├── 0x73_h32_wLight.txt ├── 0x73_h32_wRegular.txt ├── 0x74_h16_wBold.txt ├── 0x74_h16_wLight.txt ├── 0x74_h16_wRegular.txt ├── 0x74_h20_wBold.txt ├── 0x74_h20_wLight.txt ├── 0x74_h20_wRegular.txt ├── 0x74_h24_wBold.txt ├── 0x74_h24_wLight.txt ├── 0x74_h24_wRegular.txt ├── 0x74_h32_wBold.txt ├── 0x74_h32_wLight.txt ├── 0x74_h32_wRegular.txt ├── 0x75_h16_wBold.txt ├── 0x75_h16_wLight.txt ├── 0x75_h16_wRegular.txt ├── 0x75_h20_wBold.txt ├── 0x75_h20_wLight.txt ├── 0x75_h20_wRegular.txt ├── 0x75_h24_wBold.txt ├── 0x75_h24_wLight.txt ├── 0x75_h24_wRegular.txt ├── 0x75_h32_wBold.txt ├── 0x75_h32_wLight.txt ├── 0x75_h32_wRegular.txt ├── 0x76_h16_wBold.txt ├── 0x76_h16_wLight.txt ├── 0x76_h16_wRegular.txt ├── 0x76_h20_wBold.txt ├── 0x76_h20_wLight.txt ├── 0x76_h20_wRegular.txt ├── 0x76_h24_wBold.txt ├── 0x76_h24_wLight.txt ├── 0x76_h24_wRegular.txt ├── 0x76_h32_wBold.txt ├── 0x76_h32_wLight.txt ├── 0x76_h32_wRegular.txt ├── 0x77_h16_wBold.txt ├── 0x77_h16_wLight.txt ├── 0x77_h16_wRegular.txt ├── 0x77_h20_wBold.txt ├── 0x77_h20_wLight.txt ├── 0x77_h20_wRegular.txt ├── 0x77_h24_wBold.txt ├── 0x77_h24_wLight.txt ├── 0x77_h24_wRegular.txt ├── 0x77_h32_wBold.txt ├── 0x77_h32_wLight.txt ├── 0x77_h32_wRegular.txt ├── 0x78_h16_wBold.txt ├── 0x78_h16_wLight.txt ├── 0x78_h16_wRegular.txt ├── 0x78_h20_wBold.txt ├── 0x78_h20_wLight.txt ├── 0x78_h20_wRegular.txt ├── 0x78_h24_wBold.txt ├── 0x78_h24_wLight.txt ├── 0x78_h24_wRegular.txt ├── 0x78_h32_wBold.txt ├── 0x78_h32_wLight.txt ├── 0x78_h32_wRegular.txt ├── 0x79_h16_wBold.txt ├── 0x79_h16_wLight.txt ├── 0x79_h16_wRegular.txt ├── 0x79_h20_wBold.txt ├── 0x79_h20_wLight.txt ├── 0x79_h20_wRegular.txt ├── 0x79_h24_wBold.txt ├── 0x79_h24_wLight.txt ├── 0x79_h24_wRegular.txt ├── 0x79_h32_wBold.txt ├── 0x79_h32_wLight.txt ├── 0x79_h32_wRegular.txt ├── 0x7a_h16_wBold.txt ├── 0x7a_h16_wLight.txt ├── 0x7a_h16_wRegular.txt ├── 0x7a_h20_wBold.txt ├── 0x7a_h20_wLight.txt ├── 0x7a_h20_wRegular.txt ├── 0x7a_h24_wBold.txt ├── 0x7a_h24_wLight.txt ├── 0x7a_h24_wRegular.txt ├── 0x7a_h32_wBold.txt ├── 0x7a_h32_wLight.txt ├── 0x7a_h32_wRegular.txt ├── 0x7b_h16_wBold.txt ├── 0x7b_h16_wLight.txt ├── 0x7b_h16_wRegular.txt ├── 0x7b_h20_wBold.txt ├── 0x7b_h20_wLight.txt ├── 0x7b_h20_wRegular.txt ├── 0x7b_h24_wBold.txt ├── 0x7b_h24_wLight.txt ├── 0x7b_h24_wRegular.txt ├── 0x7b_h32_wBold.txt ├── 0x7b_h32_wLight.txt ├── 0x7b_h32_wRegular.txt ├── 0x7c_h16_wBold.txt ├── 0x7c_h16_wLight.txt ├── 0x7c_h16_wRegular.txt ├── 0x7c_h20_wBold.txt ├── 0x7c_h20_wLight.txt ├── 0x7c_h20_wRegular.txt ├── 0x7c_h24_wBold.txt ├── 0x7c_h24_wLight.txt ├── 0x7c_h24_wRegular.txt ├── 0x7c_h32_wBold.txt ├── 0x7c_h32_wLight.txt ├── 0x7c_h32_wRegular.txt ├── 0x7d_h16_wBold.txt ├── 0x7d_h16_wLight.txt ├── 0x7d_h16_wRegular.txt ├── 0x7d_h20_wBold.txt ├── 0x7d_h20_wLight.txt ├── 0x7d_h20_wRegular.txt ├── 0x7d_h24_wBold.txt ├── 0x7d_h24_wLight.txt ├── 0x7d_h24_wRegular.txt ├── 0x7d_h32_wBold.txt ├── 0x7d_h32_wLight.txt ├── 0x7d_h32_wRegular.txt ├── 0x7e_h16_wBold.txt ├── 0x7e_h16_wLight.txt ├── 0x7e_h16_wRegular.txt ├── 0x7e_h20_wBold.txt ├── 0x7e_h20_wLight.txt ├── 0x7e_h20_wRegular.txt ├── 0x7e_h24_wBold.txt ├── 0x7e_h24_wLight.txt ├── 0x7e_h24_wRegular.txt ├── 0x7e_h32_wBold.txt ├── 0x7e_h32_wLight.txt ├── 0x7e_h32_wRegular.txt ├── 0xa1_h16_wBold.txt ├── 0xa1_h16_wLight.txt ├── 0xa1_h16_wRegular.txt ├── 0xa1_h20_wBold.txt ├── 0xa1_h20_wLight.txt ├── 0xa1_h20_wRegular.txt ├── 0xa1_h24_wBold.txt ├── 0xa1_h24_wLight.txt ├── 0xa1_h24_wRegular.txt ├── 0xa1_h32_wBold.txt ├── 0xa1_h32_wLight.txt ├── 0xa1_h32_wRegular.txt ├── 0xa2_h16_wBold.txt ├── 0xa2_h16_wLight.txt ├── 0xa2_h16_wRegular.txt ├── 0xa2_h20_wBold.txt ├── 0xa2_h20_wLight.txt ├── 0xa2_h20_wRegular.txt ├── 0xa2_h24_wBold.txt ├── 0xa2_h24_wLight.txt ├── 0xa2_h24_wRegular.txt ├── 0xa2_h32_wBold.txt ├── 0xa2_h32_wLight.txt ├── 0xa2_h32_wRegular.txt ├── 0xa3_h16_wBold.txt ├── 0xa3_h16_wLight.txt ├── 0xa3_h16_wRegular.txt ├── 0xa3_h20_wBold.txt ├── 0xa3_h20_wLight.txt ├── 0xa3_h20_wRegular.txt ├── 0xa3_h24_wBold.txt ├── 0xa3_h24_wLight.txt ├── 0xa3_h24_wRegular.txt ├── 0xa3_h32_wBold.txt ├── 0xa3_h32_wLight.txt ├── 0xa3_h32_wRegular.txt ├── 0xa4_h16_wBold.txt ├── 0xa4_h16_wLight.txt ├── 0xa4_h16_wRegular.txt ├── 0xa4_h20_wBold.txt ├── 0xa4_h20_wLight.txt ├── 0xa4_h20_wRegular.txt ├── 0xa4_h24_wBold.txt ├── 0xa4_h24_wLight.txt ├── 0xa4_h24_wRegular.txt ├── 0xa4_h32_wBold.txt ├── 0xa4_h32_wLight.txt ├── 0xa4_h32_wRegular.txt ├── 0xa5_h16_wBold.txt ├── 0xa5_h16_wLight.txt ├── 0xa5_h16_wRegular.txt ├── 0xa5_h20_wBold.txt ├── 0xa5_h20_wLight.txt ├── 0xa5_h20_wRegular.txt ├── 0xa5_h24_wBold.txt ├── 0xa5_h24_wLight.txt ├── 0xa5_h24_wRegular.txt ├── 0xa5_h32_wBold.txt ├── 0xa5_h32_wLight.txt ├── 0xa5_h32_wRegular.txt ├── 0xa6_h16_wBold.txt ├── 0xa6_h16_wLight.txt ├── 0xa6_h16_wRegular.txt ├── 0xa6_h20_wBold.txt ├── 0xa6_h20_wLight.txt ├── 0xa6_h20_wRegular.txt ├── 0xa6_h24_wBold.txt ├── 0xa6_h24_wLight.txt ├── 0xa6_h24_wRegular.txt ├── 0xa6_h32_wBold.txt ├── 0xa6_h32_wLight.txt ├── 0xa6_h32_wRegular.txt ├── 0xa7_h16_wBold.txt ├── 0xa7_h16_wLight.txt ├── 0xa7_h16_wRegular.txt ├── 0xa7_h20_wBold.txt ├── 0xa7_h20_wLight.txt ├── 0xa7_h20_wRegular.txt ├── 0xa7_h24_wBold.txt ├── 0xa7_h24_wLight.txt ├── 0xa7_h24_wRegular.txt ├── 0xa7_h32_wBold.txt ├── 0xa7_h32_wLight.txt ├── 0xa7_h32_wRegular.txt ├── 0xa8_h16_wBold.txt ├── 0xa8_h16_wLight.txt ├── 0xa8_h16_wRegular.txt ├── 0xa8_h20_wBold.txt ├── 0xa8_h20_wLight.txt ├── 0xa8_h20_wRegular.txt ├── 0xa8_h24_wBold.txt ├── 0xa8_h24_wLight.txt ├── 0xa8_h24_wRegular.txt ├── 0xa8_h32_wBold.txt ├── 0xa8_h32_wLight.txt ├── 0xa8_h32_wRegular.txt ├── 0xa9_h16_wBold.txt ├── 0xa9_h16_wLight.txt ├── 0xa9_h16_wRegular.txt ├── 0xa9_h20_wBold.txt ├── 0xa9_h20_wLight.txt ├── 0xa9_h20_wRegular.txt ├── 0xa9_h24_wBold.txt ├── 0xa9_h24_wLight.txt ├── 0xa9_h24_wRegular.txt ├── 0xa9_h32_wBold.txt ├── 0xa9_h32_wLight.txt ├── 0xa9_h32_wRegular.txt ├── 0xaa_h16_wBold.txt ├── 0xaa_h16_wLight.txt ├── 0xaa_h16_wRegular.txt ├── 0xaa_h20_wBold.txt ├── 0xaa_h20_wLight.txt ├── 0xaa_h20_wRegular.txt ├── 0xaa_h24_wBold.txt ├── 0xaa_h24_wLight.txt ├── 0xaa_h24_wRegular.txt ├── 0xaa_h32_wBold.txt ├── 0xaa_h32_wLight.txt ├── 0xaa_h32_wRegular.txt ├── 0xab_h16_wBold.txt ├── 0xab_h16_wLight.txt ├── 0xab_h16_wRegular.txt ├── 0xab_h20_wBold.txt ├── 0xab_h20_wLight.txt ├── 0xab_h20_wRegular.txt ├── 0xab_h24_wBold.txt ├── 0xab_h24_wLight.txt ├── 0xab_h24_wRegular.txt ├── 0xab_h32_wBold.txt ├── 0xab_h32_wLight.txt ├── 0xab_h32_wRegular.txt ├── 0xac_h16_wBold.txt ├── 0xac_h16_wLight.txt ├── 0xac_h16_wRegular.txt ├── 0xac_h20_wBold.txt ├── 0xac_h20_wLight.txt ├── 0xac_h20_wRegular.txt ├── 0xac_h24_wBold.txt ├── 0xac_h24_wLight.txt ├── 0xac_h24_wRegular.txt ├── 0xac_h32_wBold.txt ├── 0xac_h32_wLight.txt ├── 0xac_h32_wRegular.txt ├── 0xae_h16_wBold.txt ├── 0xae_h16_wLight.txt ├── 0xae_h16_wRegular.txt ├── 0xae_h20_wBold.txt ├── 0xae_h20_wLight.txt ├── 0xae_h20_wRegular.txt ├── 0xae_h24_wBold.txt ├── 0xae_h24_wLight.txt ├── 0xae_h24_wRegular.txt ├── 0xae_h32_wBold.txt ├── 0xae_h32_wLight.txt ├── 0xae_h32_wRegular.txt ├── 0xaf_h16_wBold.txt ├── 0xaf_h16_wLight.txt ├── 0xaf_h16_wRegular.txt ├── 0xaf_h20_wBold.txt ├── 0xaf_h20_wLight.txt ├── 0xaf_h20_wRegular.txt ├── 0xaf_h24_wBold.txt ├── 0xaf_h24_wLight.txt ├── 0xaf_h24_wRegular.txt ├── 0xaf_h32_wBold.txt ├── 0xaf_h32_wLight.txt ├── 0xaf_h32_wRegular.txt ├── 0xb0_h16_wBold.txt ├── 0xb0_h16_wLight.txt ├── 0xb0_h16_wRegular.txt ├── 0xb0_h20_wBold.txt ├── 0xb0_h20_wLight.txt ├── 0xb0_h20_wRegular.txt ├── 0xb0_h24_wBold.txt ├── 0xb0_h24_wLight.txt ├── 0xb0_h24_wRegular.txt ├── 0xb0_h32_wBold.txt ├── 0xb0_h32_wLight.txt ├── 0xb0_h32_wRegular.txt ├── 0xb1_h16_wBold.txt ├── 0xb1_h16_wLight.txt ├── 0xb1_h16_wRegular.txt ├── 0xb1_h20_wBold.txt ├── 0xb1_h20_wLight.txt ├── 0xb1_h20_wRegular.txt ├── 0xb1_h24_wBold.txt ├── 0xb1_h24_wLight.txt ├── 0xb1_h24_wRegular.txt ├── 0xb1_h32_wBold.txt ├── 0xb1_h32_wLight.txt ├── 0xb1_h32_wRegular.txt ├── 0xb2_h16_wBold.txt ├── 0xb2_h16_wLight.txt ├── 0xb2_h16_wRegular.txt ├── 0xb2_h20_wBold.txt ├── 0xb2_h20_wLight.txt ├── 0xb2_h20_wRegular.txt ├── 0xb2_h24_wBold.txt ├── 0xb2_h24_wLight.txt ├── 0xb2_h24_wRegular.txt ├── 0xb2_h32_wBold.txt ├── 0xb2_h32_wLight.txt ├── 0xb2_h32_wRegular.txt ├── 0xb3_h16_wBold.txt ├── 0xb3_h16_wLight.txt ├── 0xb3_h16_wRegular.txt ├── 0xb3_h20_wBold.txt ├── 0xb3_h20_wLight.txt ├── 0xb3_h20_wRegular.txt ├── 0xb3_h24_wBold.txt ├── 0xb3_h24_wLight.txt ├── 0xb3_h24_wRegular.txt ├── 0xb3_h32_wBold.txt ├── 0xb3_h32_wLight.txt ├── 0xb3_h32_wRegular.txt ├── 0xb4_h16_wBold.txt ├── 0xb4_h16_wLight.txt ├── 0xb4_h16_wRegular.txt ├── 0xb4_h20_wBold.txt ├── 0xb4_h20_wLight.txt ├── 0xb4_h20_wRegular.txt ├── 0xb4_h24_wBold.txt ├── 0xb4_h24_wLight.txt ├── 0xb4_h24_wRegular.txt ├── 0xb4_h32_wBold.txt ├── 0xb4_h32_wLight.txt ├── 0xb4_h32_wRegular.txt ├── 0xb5_h16_wBold.txt ├── 0xb5_h16_wLight.txt ├── 0xb5_h16_wRegular.txt ├── 0xb5_h20_wBold.txt ├── 0xb5_h20_wLight.txt ├── 0xb5_h20_wRegular.txt ├── 0xb5_h24_wBold.txt ├── 0xb5_h24_wLight.txt ├── 0xb5_h24_wRegular.txt ├── 0xb5_h32_wBold.txt ├── 0xb5_h32_wLight.txt ├── 0xb5_h32_wRegular.txt ├── 0xb6_h16_wBold.txt ├── 0xb6_h16_wLight.txt ├── 0xb6_h16_wRegular.txt ├── 0xb6_h20_wBold.txt ├── 0xb6_h20_wLight.txt ├── 0xb6_h20_wRegular.txt ├── 0xb6_h24_wBold.txt ├── 0xb6_h24_wLight.txt ├── 0xb6_h24_wRegular.txt ├── 0xb6_h32_wBold.txt ├── 0xb6_h32_wLight.txt ├── 0xb6_h32_wRegular.txt ├── 0xb7_h16_wBold.txt ├── 0xb7_h16_wLight.txt ├── 0xb7_h16_wRegular.txt ├── 0xb7_h20_wBold.txt ├── 0xb7_h20_wLight.txt ├── 0xb7_h20_wRegular.txt ├── 0xb7_h24_wBold.txt ├── 0xb7_h24_wLight.txt ├── 0xb7_h24_wRegular.txt ├── 0xb7_h32_wBold.txt ├── 0xb7_h32_wLight.txt ├── 0xb7_h32_wRegular.txt ├── 0xb8_h16_wBold.txt ├── 0xb8_h16_wLight.txt ├── 0xb8_h16_wRegular.txt ├── 0xb8_h20_wBold.txt ├── 0xb8_h20_wLight.txt ├── 0xb8_h20_wRegular.txt ├── 0xb8_h24_wBold.txt ├── 0xb8_h24_wLight.txt ├── 0xb8_h24_wRegular.txt ├── 0xb8_h32_wBold.txt ├── 0xb8_h32_wLight.txt ├── 0xb8_h32_wRegular.txt ├── 0xb9_h16_wBold.txt ├── 0xb9_h16_wLight.txt ├── 0xb9_h16_wRegular.txt ├── 0xb9_h20_wBold.txt ├── 0xb9_h20_wLight.txt ├── 0xb9_h20_wRegular.txt ├── 0xb9_h24_wBold.txt ├── 0xb9_h24_wLight.txt ├── 0xb9_h24_wRegular.txt ├── 0xb9_h32_wBold.txt ├── 0xb9_h32_wLight.txt ├── 0xb9_h32_wRegular.txt ├── 0xba_h16_wBold.txt ├── 0xba_h16_wLight.txt ├── 0xba_h16_wRegular.txt ├── 0xba_h20_wBold.txt ├── 0xba_h20_wLight.txt ├── 0xba_h20_wRegular.txt ├── 0xba_h24_wBold.txt ├── 0xba_h24_wLight.txt ├── 0xba_h24_wRegular.txt ├── 0xba_h32_wBold.txt ├── 0xba_h32_wLight.txt ├── 0xba_h32_wRegular.txt ├── 0xbb_h16_wBold.txt ├── 0xbb_h16_wLight.txt ├── 0xbb_h16_wRegular.txt ├── 0xbb_h20_wBold.txt ├── 0xbb_h20_wLight.txt ├── 0xbb_h20_wRegular.txt ├── 0xbb_h24_wBold.txt ├── 0xbb_h24_wLight.txt ├── 0xbb_h24_wRegular.txt ├── 0xbb_h32_wBold.txt ├── 0xbb_h32_wLight.txt ├── 0xbb_h32_wRegular.txt ├── 0xbc_h16_wBold.txt ├── 0xbc_h16_wLight.txt ├── 0xbc_h16_wRegular.txt ├── 0xbc_h20_wBold.txt ├── 0xbc_h20_wLight.txt ├── 0xbc_h20_wRegular.txt ├── 0xbc_h24_wBold.txt ├── 0xbc_h24_wLight.txt ├── 0xbc_h24_wRegular.txt ├── 0xbc_h32_wBold.txt ├── 0xbc_h32_wLight.txt ├── 0xbc_h32_wRegular.txt ├── 0xbd_h16_wBold.txt ├── 0xbd_h16_wLight.txt ├── 0xbd_h16_wRegular.txt ├── 0xbd_h20_wBold.txt ├── 0xbd_h20_wLight.txt ├── 0xbd_h20_wRegular.txt ├── 0xbd_h24_wBold.txt ├── 0xbd_h24_wLight.txt ├── 0xbd_h24_wRegular.txt ├── 0xbd_h32_wBold.txt ├── 0xbd_h32_wLight.txt ├── 0xbd_h32_wRegular.txt ├── 0xbe_h16_wBold.txt ├── 0xbe_h16_wLight.txt ├── 0xbe_h16_wRegular.txt ├── 0xbe_h20_wBold.txt ├── 0xbe_h20_wLight.txt ├── 0xbe_h20_wRegular.txt ├── 0xbe_h24_wBold.txt ├── 0xbe_h24_wLight.txt ├── 0xbe_h24_wRegular.txt ├── 0xbe_h32_wBold.txt ├── 0xbe_h32_wLight.txt ├── 0xbe_h32_wRegular.txt ├── 0xbf_h16_wBold.txt ├── 0xbf_h16_wLight.txt ├── 0xbf_h16_wRegular.txt ├── 0xbf_h20_wBold.txt ├── 0xbf_h20_wLight.txt ├── 0xbf_h20_wRegular.txt ├── 0xbf_h24_wBold.txt ├── 0xbf_h24_wLight.txt ├── 0xbf_h24_wRegular.txt ├── 0xbf_h32_wBold.txt ├── 0xbf_h32_wLight.txt ├── 0xbf_h32_wRegular.txt ├── 0xc0_h16_wBold.txt ├── 0xc0_h16_wLight.txt ├── 0xc0_h16_wRegular.txt ├── 0xc0_h20_wBold.txt ├── 0xc0_h20_wLight.txt ├── 0xc0_h20_wRegular.txt ├── 0xc0_h24_wBold.txt ├── 0xc0_h24_wLight.txt ├── 0xc0_h24_wRegular.txt ├── 0xc0_h32_wBold.txt ├── 0xc0_h32_wLight.txt ├── 0xc0_h32_wRegular.txt ├── 0xc1_h16_wBold.txt ├── 0xc1_h16_wLight.txt ├── 0xc1_h16_wRegular.txt ├── 0xc1_h20_wBold.txt ├── 0xc1_h20_wLight.txt ├── 0xc1_h20_wRegular.txt ├── 0xc1_h24_wBold.txt ├── 0xc1_h24_wLight.txt ├── 0xc1_h24_wRegular.txt ├── 0xc1_h32_wBold.txt ├── 0xc1_h32_wLight.txt ├── 0xc1_h32_wRegular.txt ├── 0xc2_h16_wBold.txt ├── 0xc2_h16_wLight.txt ├── 0xc2_h16_wRegular.txt ├── 0xc2_h20_wBold.txt ├── 0xc2_h20_wLight.txt ├── 0xc2_h20_wRegular.txt ├── 0xc2_h24_wBold.txt ├── 0xc2_h24_wLight.txt ├── 0xc2_h24_wRegular.txt ├── 0xc2_h32_wBold.txt ├── 0xc2_h32_wLight.txt ├── 0xc2_h32_wRegular.txt ├── 0xc3_h16_wBold.txt ├── 0xc3_h16_wLight.txt ├── 0xc3_h16_wRegular.txt ├── 0xc3_h20_wBold.txt ├── 0xc3_h20_wLight.txt ├── 0xc3_h20_wRegular.txt ├── 0xc3_h24_wBold.txt ├── 0xc3_h24_wLight.txt ├── 0xc3_h24_wRegular.txt ├── 0xc3_h32_wBold.txt ├── 0xc3_h32_wLight.txt ├── 0xc3_h32_wRegular.txt ├── 0xc4_h16_wBold.txt ├── 0xc4_h16_wLight.txt ├── 0xc4_h16_wRegular.txt ├── 0xc4_h20_wBold.txt ├── 0xc4_h20_wLight.txt ├── 0xc4_h20_wRegular.txt ├── 0xc4_h24_wBold.txt ├── 0xc4_h24_wLight.txt ├── 0xc4_h24_wRegular.txt ├── 0xc4_h32_wBold.txt ├── 0xc4_h32_wLight.txt ├── 0xc4_h32_wRegular.txt ├── 0xc5_h16_wBold.txt ├── 0xc5_h16_wLight.txt ├── 0xc5_h16_wRegular.txt ├── 0xc5_h20_wBold.txt ├── 0xc5_h20_wLight.txt ├── 0xc5_h20_wRegular.txt ├── 0xc5_h24_wBold.txt ├── 0xc5_h24_wLight.txt ├── 0xc5_h24_wRegular.txt ├── 0xc5_h32_wBold.txt ├── 0xc5_h32_wLight.txt ├── 0xc5_h32_wRegular.txt ├── 0xc6_h16_wBold.txt ├── 0xc6_h16_wLight.txt ├── 0xc6_h16_wRegular.txt ├── 0xc6_h20_wBold.txt ├── 0xc6_h20_wLight.txt ├── 0xc6_h20_wRegular.txt ├── 0xc6_h24_wBold.txt ├── 0xc6_h24_wLight.txt ├── 0xc6_h24_wRegular.txt ├── 0xc6_h32_wBold.txt ├── 0xc6_h32_wLight.txt ├── 0xc6_h32_wRegular.txt ├── 0xc7_h16_wBold.txt ├── 0xc7_h16_wLight.txt ├── 0xc7_h16_wRegular.txt ├── 0xc7_h20_wBold.txt ├── 0xc7_h20_wLight.txt ├── 0xc7_h20_wRegular.txt ├── 0xc7_h24_wBold.txt ├── 0xc7_h24_wLight.txt ├── 0xc7_h24_wRegular.txt ├── 0xc7_h32_wBold.txt ├── 0xc7_h32_wLight.txt ├── 0xc7_h32_wRegular.txt ├── 0xc8_h16_wBold.txt ├── 0xc8_h16_wLight.txt ├── 0xc8_h16_wRegular.txt ├── 0xc8_h20_wBold.txt ├── 0xc8_h20_wLight.txt ├── 0xc8_h20_wRegular.txt ├── 0xc8_h24_wBold.txt ├── 0xc8_h24_wLight.txt ├── 0xc8_h24_wRegular.txt ├── 0xc8_h32_wBold.txt ├── 0xc8_h32_wLight.txt ├── 0xc8_h32_wRegular.txt ├── 0xc9_h16_wBold.txt ├── 0xc9_h16_wLight.txt ├── 0xc9_h16_wRegular.txt ├── 0xc9_h20_wBold.txt ├── 0xc9_h20_wLight.txt ├── 0xc9_h20_wRegular.txt ├── 0xc9_h24_wBold.txt ├── 0xc9_h24_wLight.txt ├── 0xc9_h24_wRegular.txt ├── 0xc9_h32_wBold.txt ├── 0xc9_h32_wLight.txt ├── 0xc9_h32_wRegular.txt ├── 0xca_h16_wBold.txt ├── 0xca_h16_wLight.txt ├── 0xca_h16_wRegular.txt ├── 0xca_h20_wBold.txt ├── 0xca_h20_wLight.txt ├── 0xca_h20_wRegular.txt ├── 0xca_h24_wBold.txt ├── 0xca_h24_wLight.txt ├── 0xca_h24_wRegular.txt ├── 0xca_h32_wBold.txt ├── 0xca_h32_wLight.txt ├── 0xca_h32_wRegular.txt ├── 0xcb_h16_wBold.txt ├── 0xcb_h16_wLight.txt ├── 0xcb_h16_wRegular.txt ├── 0xcb_h20_wBold.txt ├── 0xcb_h20_wLight.txt ├── 0xcb_h20_wRegular.txt ├── 0xcb_h24_wBold.txt ├── 0xcb_h24_wLight.txt ├── 0xcb_h24_wRegular.txt ├── 0xcb_h32_wBold.txt ├── 0xcb_h32_wLight.txt ├── 0xcb_h32_wRegular.txt ├── 0xcc_h16_wBold.txt ├── 0xcc_h16_wLight.txt ├── 0xcc_h16_wRegular.txt ├── 0xcc_h20_wBold.txt ├── 0xcc_h20_wLight.txt ├── 0xcc_h20_wRegular.txt ├── 0xcc_h24_wBold.txt ├── 0xcc_h24_wLight.txt ├── 0xcc_h24_wRegular.txt ├── 0xcc_h32_wBold.txt ├── 0xcc_h32_wLight.txt ├── 0xcc_h32_wRegular.txt ├── 0xcd_h16_wBold.txt ├── 0xcd_h16_wLight.txt ├── 0xcd_h16_wRegular.txt ├── 0xcd_h20_wBold.txt ├── 0xcd_h20_wLight.txt ├── 0xcd_h20_wRegular.txt ├── 0xcd_h24_wBold.txt ├── 0xcd_h24_wLight.txt ├── 0xcd_h24_wRegular.txt ├── 0xcd_h32_wBold.txt ├── 0xcd_h32_wLight.txt ├── 0xcd_h32_wRegular.txt ├── 0xce_h16_wBold.txt ├── 0xce_h16_wLight.txt ├── 0xce_h16_wRegular.txt ├── 0xce_h20_wBold.txt ├── 0xce_h20_wLight.txt ├── 0xce_h20_wRegular.txt ├── 0xce_h24_wBold.txt ├── 0xce_h24_wLight.txt ├── 0xce_h24_wRegular.txt ├── 0xce_h32_wBold.txt ├── 0xce_h32_wLight.txt ├── 0xce_h32_wRegular.txt ├── 0xcf_h16_wBold.txt ├── 0xcf_h16_wLight.txt ├── 0xcf_h16_wRegular.txt ├── 0xcf_h20_wBold.txt ├── 0xcf_h20_wLight.txt ├── 0xcf_h20_wRegular.txt ├── 0xcf_h24_wBold.txt ├── 0xcf_h24_wLight.txt ├── 0xcf_h24_wRegular.txt ├── 0xcf_h32_wBold.txt ├── 0xcf_h32_wLight.txt ├── 0xcf_h32_wRegular.txt ├── 0xd0_h16_wBold.txt ├── 0xd0_h16_wLight.txt ├── 0xd0_h16_wRegular.txt ├── 0xd0_h20_wBold.txt ├── 0xd0_h20_wLight.txt ├── 0xd0_h20_wRegular.txt ├── 0xd0_h24_wBold.txt ├── 0xd0_h24_wLight.txt ├── 0xd0_h24_wRegular.txt ├── 0xd0_h32_wBold.txt ├── 0xd0_h32_wLight.txt ├── 0xd0_h32_wRegular.txt ├── 0xd1_h16_wBold.txt ├── 0xd1_h16_wLight.txt ├── 0xd1_h16_wRegular.txt ├── 0xd1_h20_wBold.txt ├── 0xd1_h20_wLight.txt ├── 0xd1_h20_wRegular.txt ├── 0xd1_h24_wBold.txt ├── 0xd1_h24_wLight.txt ├── 0xd1_h24_wRegular.txt ├── 0xd1_h32_wBold.txt ├── 0xd1_h32_wLight.txt ├── 0xd1_h32_wRegular.txt ├── 0xd2_h16_wBold.txt ├── 0xd2_h16_wLight.txt ├── 0xd2_h16_wRegular.txt ├── 0xd2_h20_wBold.txt ├── 0xd2_h20_wLight.txt ├── 0xd2_h20_wRegular.txt ├── 0xd2_h24_wBold.txt ├── 0xd2_h24_wLight.txt ├── 0xd2_h24_wRegular.txt ├── 0xd2_h32_wBold.txt ├── 0xd2_h32_wLight.txt ├── 0xd2_h32_wRegular.txt ├── 0xd3_h16_wBold.txt ├── 0xd3_h16_wLight.txt ├── 0xd3_h16_wRegular.txt ├── 0xd3_h20_wBold.txt ├── 0xd3_h20_wLight.txt ├── 0xd3_h20_wRegular.txt ├── 0xd3_h24_wBold.txt ├── 0xd3_h24_wLight.txt ├── 0xd3_h24_wRegular.txt ├── 0xd3_h32_wBold.txt ├── 0xd3_h32_wLight.txt ├── 0xd3_h32_wRegular.txt ├── 0xd4_h16_wBold.txt ├── 0xd4_h16_wLight.txt ├── 0xd4_h16_wRegular.txt ├── 0xd4_h20_wBold.txt ├── 0xd4_h20_wLight.txt ├── 0xd4_h20_wRegular.txt ├── 0xd4_h24_wBold.txt ├── 0xd4_h24_wLight.txt ├── 0xd4_h24_wRegular.txt ├── 0xd4_h32_wBold.txt ├── 0xd4_h32_wLight.txt ├── 0xd4_h32_wRegular.txt ├── 0xd5_h16_wBold.txt ├── 0xd5_h16_wLight.txt ├── 0xd5_h16_wRegular.txt ├── 0xd5_h20_wBold.txt ├── 0xd5_h20_wLight.txt ├── 0xd5_h20_wRegular.txt ├── 0xd5_h24_wBold.txt ├── 0xd5_h24_wLight.txt ├── 0xd5_h24_wRegular.txt ├── 0xd5_h32_wBold.txt ├── 0xd5_h32_wLight.txt ├── 0xd5_h32_wRegular.txt ├── 0xd6_h16_wBold.txt ├── 0xd6_h16_wLight.txt ├── 0xd6_h16_wRegular.txt ├── 0xd6_h20_wBold.txt ├── 0xd6_h20_wLight.txt ├── 0xd6_h20_wRegular.txt ├── 0xd6_h24_wBold.txt ├── 0xd6_h24_wLight.txt ├── 0xd6_h24_wRegular.txt ├── 0xd6_h32_wBold.txt ├── 0xd6_h32_wLight.txt ├── 0xd6_h32_wRegular.txt ├── 0xd7_h16_wBold.txt ├── 0xd7_h16_wLight.txt ├── 0xd7_h16_wRegular.txt ├── 0xd7_h20_wBold.txt ├── 0xd7_h20_wLight.txt ├── 0xd7_h20_wRegular.txt ├── 0xd7_h24_wBold.txt ├── 0xd7_h24_wLight.txt ├── 0xd7_h24_wRegular.txt ├── 0xd7_h32_wBold.txt ├── 0xd7_h32_wLight.txt ├── 0xd7_h32_wRegular.txt ├── 0xd8_h16_wBold.txt ├── 0xd8_h16_wLight.txt ├── 0xd8_h16_wRegular.txt ├── 0xd8_h20_wBold.txt ├── 0xd8_h20_wLight.txt ├── 0xd8_h20_wRegular.txt ├── 0xd8_h24_wBold.txt ├── 0xd8_h24_wLight.txt ├── 0xd8_h24_wRegular.txt ├── 0xd8_h32_wBold.txt ├── 0xd8_h32_wLight.txt ├── 0xd8_h32_wRegular.txt ├── 0xd9_h16_wBold.txt ├── 0xd9_h16_wLight.txt ├── 0xd9_h16_wRegular.txt ├── 0xd9_h20_wBold.txt ├── 0xd9_h20_wLight.txt ├── 0xd9_h20_wRegular.txt ├── 0xd9_h24_wBold.txt ├── 0xd9_h24_wLight.txt ├── 0xd9_h24_wRegular.txt ├── 0xd9_h32_wBold.txt ├── 0xd9_h32_wLight.txt ├── 0xd9_h32_wRegular.txt ├── 0xda_h16_wBold.txt ├── 0xda_h16_wLight.txt ├── 0xda_h16_wRegular.txt ├── 0xda_h20_wBold.txt ├── 0xda_h20_wLight.txt ├── 0xda_h20_wRegular.txt ├── 0xda_h24_wBold.txt ├── 0xda_h24_wLight.txt ├── 0xda_h24_wRegular.txt ├── 0xda_h32_wBold.txt ├── 0xda_h32_wLight.txt ├── 0xda_h32_wRegular.txt ├── 0xdb_h16_wBold.txt ├── 0xdb_h16_wLight.txt ├── 0xdb_h16_wRegular.txt ├── 0xdb_h20_wBold.txt ├── 0xdb_h20_wLight.txt ├── 0xdb_h20_wRegular.txt ├── 0xdb_h24_wBold.txt ├── 0xdb_h24_wLight.txt ├── 0xdb_h24_wRegular.txt ├── 0xdb_h32_wBold.txt ├── 0xdb_h32_wLight.txt ├── 0xdb_h32_wRegular.txt ├── 0xdc_h16_wBold.txt ├── 0xdc_h16_wLight.txt ├── 0xdc_h16_wRegular.txt ├── 0xdc_h20_wBold.txt ├── 0xdc_h20_wLight.txt ├── 0xdc_h20_wRegular.txt ├── 0xdc_h24_wBold.txt ├── 0xdc_h24_wLight.txt ├── 0xdc_h24_wRegular.txt ├── 0xdc_h32_wBold.txt ├── 0xdc_h32_wLight.txt ├── 0xdc_h32_wRegular.txt ├── 0xdd_h16_wBold.txt ├── 0xdd_h16_wLight.txt ├── 0xdd_h16_wRegular.txt ├── 0xdd_h20_wBold.txt ├── 0xdd_h20_wLight.txt ├── 0xdd_h20_wRegular.txt ├── 0xdd_h24_wBold.txt ├── 0xdd_h24_wLight.txt ├── 0xdd_h24_wRegular.txt ├── 0xdd_h32_wBold.txt ├── 0xdd_h32_wLight.txt ├── 0xdd_h32_wRegular.txt ├── 0xde_h16_wBold.txt ├── 0xde_h16_wLight.txt ├── 0xde_h16_wRegular.txt ├── 0xde_h20_wBold.txt ├── 0xde_h20_wLight.txt ├── 0xde_h20_wRegular.txt ├── 0xde_h24_wBold.txt ├── 0xde_h24_wLight.txt ├── 0xde_h24_wRegular.txt ├── 0xde_h32_wBold.txt ├── 0xde_h32_wLight.txt ├── 0xde_h32_wRegular.txt ├── 0xdf_h16_wBold.txt ├── 0xdf_h16_wLight.txt ├── 0xdf_h16_wRegular.txt ├── 0xdf_h20_wBold.txt ├── 0xdf_h20_wLight.txt ├── 0xdf_h20_wRegular.txt ├── 0xdf_h24_wBold.txt ├── 0xdf_h24_wLight.txt ├── 0xdf_h24_wRegular.txt ├── 0xdf_h32_wBold.txt ├── 0xdf_h32_wLight.txt ├── 0xdf_h32_wRegular.txt ├── 0xe0_h16_wBold.txt ├── 0xe0_h16_wLight.txt ├── 0xe0_h16_wRegular.txt ├── 0xe0_h20_wBold.txt ├── 0xe0_h20_wLight.txt ├── 0xe0_h20_wRegular.txt ├── 0xe0_h24_wBold.txt ├── 0xe0_h24_wLight.txt ├── 0xe0_h24_wRegular.txt ├── 0xe0_h32_wBold.txt ├── 0xe0_h32_wLight.txt ├── 0xe0_h32_wRegular.txt ├── 0xe1_h16_wBold.txt ├── 0xe1_h16_wLight.txt ├── 0xe1_h16_wRegular.txt ├── 0xe1_h20_wBold.txt ├── 0xe1_h20_wLight.txt ├── 0xe1_h20_wRegular.txt ├── 0xe1_h24_wBold.txt ├── 0xe1_h24_wLight.txt ├── 0xe1_h24_wRegular.txt ├── 0xe1_h32_wBold.txt ├── 0xe1_h32_wLight.txt ├── 0xe1_h32_wRegular.txt ├── 0xe2_h16_wBold.txt ├── 0xe2_h16_wLight.txt ├── 0xe2_h16_wRegular.txt ├── 0xe2_h20_wBold.txt ├── 0xe2_h20_wLight.txt ├── 0xe2_h20_wRegular.txt ├── 0xe2_h24_wBold.txt ├── 0xe2_h24_wLight.txt ├── 0xe2_h24_wRegular.txt ├── 0xe2_h32_wBold.txt ├── 0xe2_h32_wLight.txt ├── 0xe2_h32_wRegular.txt ├── 0xe3_h16_wBold.txt ├── 0xe3_h16_wLight.txt ├── 0xe3_h16_wRegular.txt ├── 0xe3_h20_wBold.txt ├── 0xe3_h20_wLight.txt ├── 0xe3_h20_wRegular.txt ├── 0xe3_h24_wBold.txt ├── 0xe3_h24_wLight.txt ├── 0xe3_h24_wRegular.txt ├── 0xe3_h32_wBold.txt ├── 0xe3_h32_wLight.txt ├── 0xe3_h32_wRegular.txt ├── 0xe4_h16_wBold.txt ├── 0xe4_h16_wLight.txt ├── 0xe4_h16_wRegular.txt ├── 0xe4_h20_wBold.txt ├── 0xe4_h20_wLight.txt ├── 0xe4_h20_wRegular.txt ├── 0xe4_h24_wBold.txt ├── 0xe4_h24_wLight.txt ├── 0xe4_h24_wRegular.txt ├── 0xe4_h32_wBold.txt ├── 0xe4_h32_wLight.txt ├── 0xe4_h32_wRegular.txt ├── 0xe5_h16_wBold.txt ├── 0xe5_h16_wLight.txt ├── 0xe5_h16_wRegular.txt ├── 0xe5_h20_wBold.txt ├── 0xe5_h20_wLight.txt ├── 0xe5_h20_wRegular.txt ├── 0xe5_h24_wBold.txt ├── 0xe5_h24_wLight.txt ├── 0xe5_h24_wRegular.txt ├── 0xe5_h32_wBold.txt ├── 0xe5_h32_wLight.txt ├── 0xe5_h32_wRegular.txt ├── 0xe6_h16_wBold.txt ├── 0xe6_h16_wLight.txt ├── 0xe6_h16_wRegular.txt ├── 0xe6_h20_wBold.txt ├── 0xe6_h20_wLight.txt ├── 0xe6_h20_wRegular.txt ├── 0xe6_h24_wBold.txt ├── 0xe6_h24_wLight.txt ├── 0xe6_h24_wRegular.txt ├── 0xe6_h32_wBold.txt ├── 0xe6_h32_wLight.txt ├── 0xe6_h32_wRegular.txt ├── 0xe7_h16_wBold.txt ├── 0xe7_h16_wLight.txt ├── 0xe7_h16_wRegular.txt ├── 0xe7_h20_wBold.txt ├── 0xe7_h20_wLight.txt ├── 0xe7_h20_wRegular.txt ├── 0xe7_h24_wBold.txt ├── 0xe7_h24_wLight.txt ├── 0xe7_h24_wRegular.txt ├── 0xe7_h32_wBold.txt ├── 0xe7_h32_wLight.txt ├── 0xe7_h32_wRegular.txt ├── 0xe8_h16_wBold.txt ├── 0xe8_h16_wLight.txt ├── 0xe8_h16_wRegular.txt ├── 0xe8_h20_wBold.txt ├── 0xe8_h20_wLight.txt ├── 0xe8_h20_wRegular.txt ├── 0xe8_h24_wBold.txt ├── 0xe8_h24_wLight.txt ├── 0xe8_h24_wRegular.txt ├── 0xe8_h32_wBold.txt ├── 0xe8_h32_wLight.txt ├── 0xe8_h32_wRegular.txt ├── 0xe9_h16_wBold.txt ├── 0xe9_h16_wLight.txt ├── 0xe9_h16_wRegular.txt ├── 0xe9_h20_wBold.txt ├── 0xe9_h20_wLight.txt ├── 0xe9_h20_wRegular.txt ├── 0xe9_h24_wBold.txt ├── 0xe9_h24_wLight.txt ├── 0xe9_h24_wRegular.txt ├── 0xe9_h32_wBold.txt ├── 0xe9_h32_wLight.txt ├── 0xe9_h32_wRegular.txt ├── 0xea_h16_wBold.txt ├── 0xea_h16_wLight.txt ├── 0xea_h16_wRegular.txt ├── 0xea_h20_wBold.txt ├── 0xea_h20_wLight.txt ├── 0xea_h20_wRegular.txt ├── 0xea_h24_wBold.txt ├── 0xea_h24_wLight.txt ├── 0xea_h24_wRegular.txt ├── 0xea_h32_wBold.txt ├── 0xea_h32_wLight.txt ├── 0xea_h32_wRegular.txt ├── 0xeb_h16_wBold.txt ├── 0xeb_h16_wLight.txt ├── 0xeb_h16_wRegular.txt ├── 0xeb_h20_wBold.txt ├── 0xeb_h20_wLight.txt ├── 0xeb_h20_wRegular.txt ├── 0xeb_h24_wBold.txt ├── 0xeb_h24_wLight.txt ├── 0xeb_h24_wRegular.txt ├── 0xeb_h32_wBold.txt ├── 0xeb_h32_wLight.txt ├── 0xeb_h32_wRegular.txt ├── 0xec_h16_wBold.txt ├── 0xec_h16_wLight.txt ├── 0xec_h16_wRegular.txt ├── 0xec_h20_wBold.txt ├── 0xec_h20_wLight.txt ├── 0xec_h20_wRegular.txt ├── 0xec_h24_wBold.txt ├── 0xec_h24_wLight.txt ├── 0xec_h24_wRegular.txt ├── 0xec_h32_wBold.txt ├── 0xec_h32_wLight.txt ├── 0xec_h32_wRegular.txt ├── 0xed_h16_wBold.txt ├── 0xed_h16_wLight.txt ├── 0xed_h16_wRegular.txt ├── 0xed_h20_wBold.txt ├── 0xed_h20_wLight.txt ├── 0xed_h20_wRegular.txt ├── 0xed_h24_wBold.txt ├── 0xed_h24_wLight.txt ├── 0xed_h24_wRegular.txt ├── 0xed_h32_wBold.txt ├── 0xed_h32_wLight.txt ├── 0xed_h32_wRegular.txt ├── 0xee_h16_wBold.txt ├── 0xee_h16_wLight.txt ├── 0xee_h16_wRegular.txt ├── 0xee_h20_wBold.txt ├── 0xee_h20_wLight.txt ├── 0xee_h20_wRegular.txt ├── 0xee_h24_wBold.txt ├── 0xee_h24_wLight.txt ├── 0xee_h24_wRegular.txt ├── 0xee_h32_wBold.txt ├── 0xee_h32_wLight.txt ├── 0xee_h32_wRegular.txt ├── 0xef_h16_wBold.txt ├── 0xef_h16_wLight.txt ├── 0xef_h16_wRegular.txt ├── 0xef_h20_wBold.txt ├── 0xef_h20_wLight.txt ├── 0xef_h20_wRegular.txt ├── 0xef_h24_wBold.txt ├── 0xef_h24_wLight.txt ├── 0xef_h24_wRegular.txt ├── 0xef_h32_wBold.txt ├── 0xef_h32_wLight.txt ├── 0xef_h32_wRegular.txt ├── 0xf0_h16_wBold.txt ├── 0xf0_h16_wLight.txt ├── 0xf0_h16_wRegular.txt ├── 0xf0_h20_wBold.txt ├── 0xf0_h20_wLight.txt ├── 0xf0_h20_wRegular.txt ├── 0xf0_h24_wBold.txt ├── 0xf0_h24_wLight.txt ├── 0xf0_h24_wRegular.txt ├── 0xf0_h32_wBold.txt ├── 0xf0_h32_wLight.txt ├── 0xf0_h32_wRegular.txt ├── 0xf1_h16_wBold.txt ├── 0xf1_h16_wLight.txt ├── 0xf1_h16_wRegular.txt ├── 0xf1_h20_wBold.txt ├── 0xf1_h20_wLight.txt ├── 0xf1_h20_wRegular.txt ├── 0xf1_h24_wBold.txt ├── 0xf1_h24_wLight.txt ├── 0xf1_h24_wRegular.txt ├── 0xf1_h32_wBold.txt ├── 0xf1_h32_wLight.txt ├── 0xf1_h32_wRegular.txt ├── 0xf2_h16_wBold.txt ├── 0xf2_h16_wLight.txt ├── 0xf2_h16_wRegular.txt ├── 0xf2_h20_wBold.txt ├── 0xf2_h20_wLight.txt ├── 0xf2_h20_wRegular.txt ├── 0xf2_h24_wBold.txt ├── 0xf2_h24_wLight.txt ├── 0xf2_h24_wRegular.txt ├── 0xf2_h32_wBold.txt ├── 0xf2_h32_wLight.txt ├── 0xf2_h32_wRegular.txt ├── 0xf3_h16_wBold.txt ├── 0xf3_h16_wLight.txt ├── 0xf3_h16_wRegular.txt ├── 0xf3_h20_wBold.txt ├── 0xf3_h20_wLight.txt ├── 0xf3_h20_wRegular.txt ├── 0xf3_h24_wBold.txt ├── 0xf3_h24_wLight.txt ├── 0xf3_h24_wRegular.txt ├── 0xf3_h32_wBold.txt ├── 0xf3_h32_wLight.txt ├── 0xf3_h32_wRegular.txt ├── 0xf4_h16_wBold.txt ├── 0xf4_h16_wLight.txt ├── 0xf4_h16_wRegular.txt ├── 0xf4_h20_wBold.txt ├── 0xf4_h20_wLight.txt ├── 0xf4_h20_wRegular.txt ├── 0xf4_h24_wBold.txt ├── 0xf4_h24_wLight.txt ├── 0xf4_h24_wRegular.txt ├── 0xf4_h32_wBold.txt ├── 0xf4_h32_wLight.txt ├── 0xf4_h32_wRegular.txt ├── 0xf5_h16_wBold.txt ├── 0xf5_h16_wLight.txt ├── 0xf5_h16_wRegular.txt ├── 0xf5_h20_wBold.txt ├── 0xf5_h20_wLight.txt ├── 0xf5_h20_wRegular.txt ├── 0xf5_h24_wBold.txt ├── 0xf5_h24_wLight.txt ├── 0xf5_h24_wRegular.txt ├── 0xf5_h32_wBold.txt ├── 0xf5_h32_wLight.txt ├── 0xf5_h32_wRegular.txt ├── 0xf6_h16_wBold.txt ├── 0xf6_h16_wLight.txt ├── 0xf6_h16_wRegular.txt ├── 0xf6_h20_wBold.txt ├── 0xf6_h20_wLight.txt ├── 0xf6_h20_wRegular.txt ├── 0xf6_h24_wBold.txt ├── 0xf6_h24_wLight.txt ├── 0xf6_h24_wRegular.txt ├── 0xf6_h32_wBold.txt ├── 0xf6_h32_wLight.txt ├── 0xf6_h32_wRegular.txt ├── 0xf7_h16_wBold.txt ├── 0xf7_h16_wLight.txt ├── 0xf7_h16_wRegular.txt ├── 0xf7_h20_wBold.txt ├── 0xf7_h20_wLight.txt ├── 0xf7_h20_wRegular.txt ├── 0xf7_h24_wBold.txt ├── 0xf7_h24_wLight.txt ├── 0xf7_h24_wRegular.txt ├── 0xf7_h32_wBold.txt ├── 0xf7_h32_wLight.txt ├── 0xf7_h32_wRegular.txt ├── 0xf8_h16_wBold.txt ├── 0xf8_h16_wLight.txt ├── 0xf8_h16_wRegular.txt ├── 0xf8_h20_wBold.txt ├── 0xf8_h20_wLight.txt ├── 0xf8_h20_wRegular.txt ├── 0xf8_h24_wBold.txt ├── 0xf8_h24_wLight.txt ├── 0xf8_h24_wRegular.txt ├── 0xf8_h32_wBold.txt ├── 0xf8_h32_wLight.txt ├── 0xf8_h32_wRegular.txt ├── 0xf9_h16_wBold.txt ├── 0xf9_h16_wLight.txt ├── 0xf9_h16_wRegular.txt ├── 0xf9_h20_wBold.txt ├── 0xf9_h20_wLight.txt ├── 0xf9_h20_wRegular.txt ├── 0xf9_h24_wBold.txt ├── 0xf9_h24_wLight.txt ├── 0xf9_h24_wRegular.txt ├── 0xf9_h32_wBold.txt ├── 0xf9_h32_wLight.txt ├── 0xf9_h32_wRegular.txt ├── 0xfa_h16_wBold.txt ├── 0xfa_h16_wLight.txt ├── 0xfa_h16_wRegular.txt ├── 0xfa_h20_wBold.txt ├── 0xfa_h20_wLight.txt ├── 0xfa_h20_wRegular.txt ├── 0xfa_h24_wBold.txt ├── 0xfa_h24_wLight.txt ├── 0xfa_h24_wRegular.txt ├── 0xfa_h32_wBold.txt ├── 0xfa_h32_wLight.txt ├── 0xfa_h32_wRegular.txt ├── 0xfb_h16_wBold.txt ├── 0xfb_h16_wLight.txt ├── 0xfb_h16_wRegular.txt ├── 0xfb_h20_wBold.txt ├── 0xfb_h20_wLight.txt ├── 0xfb_h20_wRegular.txt ├── 0xfb_h24_wBold.txt ├── 0xfb_h24_wLight.txt ├── 0xfb_h24_wRegular.txt ├── 0xfb_h32_wBold.txt ├── 0xfb_h32_wLight.txt ├── 0xfb_h32_wRegular.txt ├── 0xfc_h16_wBold.txt ├── 0xfc_h16_wLight.txt ├── 0xfc_h16_wRegular.txt ├── 0xfc_h20_wBold.txt ├── 0xfc_h20_wLight.txt ├── 0xfc_h20_wRegular.txt ├── 0xfc_h24_wBold.txt ├── 0xfc_h24_wLight.txt ├── 0xfc_h24_wRegular.txt ├── 0xfc_h32_wBold.txt ├── 0xfc_h32_wLight.txt ├── 0xfc_h32_wRegular.txt ├── 0xfd_h16_wBold.txt ├── 0xfd_h16_wLight.txt ├── 0xfd_h16_wRegular.txt ├── 0xfd_h20_wBold.txt ├── 0xfd_h20_wLight.txt ├── 0xfd_h20_wRegular.txt ├── 0xfd_h24_wBold.txt ├── 0xfd_h24_wLight.txt ├── 0xfd_h24_wRegular.txt ├── 0xfd_h32_wBold.txt ├── 0xfd_h32_wLight.txt ├── 0xfd_h32_wRegular.txt ├── 0xfe_h16_wBold.txt ├── 0xfe_h16_wLight.txt ├── 0xfe_h16_wRegular.txt ├── 0xfe_h20_wBold.txt ├── 0xfe_h20_wLight.txt ├── 0xfe_h20_wRegular.txt ├── 0xfe_h24_wBold.txt ├── 0xfe_h24_wLight.txt ├── 0xfe_h24_wRegular.txt ├── 0xfe_h32_wBold.txt ├── 0xfe_h32_wLight.txt ├── 0xfe_h32_wRegular.txt ├── 0xff_h16_wBold.txt ├── 0xff_h16_wLight.txt ├── 0xff_h16_wRegular.txt ├── 0xff_h20_wBold.txt ├── 0xff_h20_wLight.txt ├── 0xff_h20_wRegular.txt ├── 0xff_h24_wBold.txt ├── 0xff_h24_wLight.txt ├── 0xff_h24_wRegular.txt ├── 0xff_h32_wBold.txt ├── 0xff_h32_wLight.txt ├── 0xff_h32_wRegular.txt ├── 0xfffd_h16_wBold.txt ├── 0xfffd_h16_wLight.txt ├── 0xfffd_h16_wRegular.txt ├── 0xfffd_h20_wBold.txt ├── 0xfffd_h20_wLight.txt ├── 0xfffd_h20_wRegular.txt ├── 0xfffd_h24_wBold.txt ├── 0xfffd_h24_wLight.txt ├── 0xfffd_h24_wRegular.txt ├── 0xfffd_h32_wBold.txt ├── 0xfffd_h32_wLight.txt └── 0xfffd_h32_wRegular.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: phip1611 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.github/workflows/codegen.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/qa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.github/workflows/qa.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv 2 | /target 3 | /Cargo.lock 4 | -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/.typos.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/README.md -------------------------------------------------------------------------------- /check_crate_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/check_crate_size.sh -------------------------------------------------------------------------------- /codegen/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /codegen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/Cargo.toml -------------------------------------------------------------------------------- /codegen/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "stable" 3 | -------------------------------------------------------------------------------- /codegen/src/bin/rasterize_chars_in_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/bin/rasterize_chars_in_window.rs -------------------------------------------------------------------------------- /codegen/src/bytes_outsourcer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/bytes_outsourcer.rs -------------------------------------------------------------------------------- /codegen/src/codegen_templates/Cargo.toml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/codegen_templates/Cargo.toml.txt -------------------------------------------------------------------------------- /codegen/src/codegen_templates/lib.rs.template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/codegen_templates/lib.rs.template.txt -------------------------------------------------------------------------------- /codegen/src/codegen_templates/weight_mod.template.txt: -------------------------------------------------------------------------------- 1 | //! Module for letters with the font weight %FONT_WEIGHT%. 2 | -------------------------------------------------------------------------------- /codegen/src/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/font.rs -------------------------------------------------------------------------------- /codegen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/lib.rs -------------------------------------------------------------------------------- /codegen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/main.rs -------------------------------------------------------------------------------- /codegen/src/res/NotoSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/res/NotoSansMono-Bold.ttf -------------------------------------------------------------------------------- /codegen/src/res/NotoSansMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/res/NotoSansMono-Light.ttf -------------------------------------------------------------------------------- /codegen/src/res/NotoSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/res/NotoSansMono-Regular.ttf -------------------------------------------------------------------------------- /codegen/src/res/NotoSansMono-Regular.ttf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/res/NotoSansMono-Regular.ttf.license -------------------------------------------------------------------------------- /codegen/src/unicode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen/src/unicode.rs -------------------------------------------------------------------------------- /codegen_n_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/codegen_n_build.sh -------------------------------------------------------------------------------- /examples/minimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/examples/minimal.rs -------------------------------------------------------------------------------- /examples/show_chars_in_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/examples/show_chars_in_window.rs -------------------------------------------------------------------------------- /examples/transparent_background.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/examples/transparent_background.rs -------------------------------------------------------------------------------- /external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/external/README.md -------------------------------------------------------------------------------- /external/check-msrv/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock -------------------------------------------------------------------------------- /external/check-msrv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/external/check-msrv/Cargo.toml -------------------------------------------------------------------------------- /external/check-msrv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/external/check-msrv/README.md -------------------------------------------------------------------------------- /external/check-msrv/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/external/check-msrv/rust-toolchain.toml -------------------------------------------------------------------------------- /external/check-msrv/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | 3 | } -------------------------------------------------------------------------------- /external/check-size/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock -------------------------------------------------------------------------------- /external/check-size/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/external/check-size/Cargo.toml -------------------------------------------------------------------------------- /external/check-size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/external/check-size/README.md -------------------------------------------------------------------------------- /screenshot_bitmap_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/screenshot_bitmap_font.png -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/shell.nix -------------------------------------------------------------------------------- /src/bold/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/bold/mod.rs -------------------------------------------------------------------------------- /src/bold/size_16.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/bold/size_16.rs -------------------------------------------------------------------------------- /src/bold/size_20.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/bold/size_20.rs -------------------------------------------------------------------------------- /src/bold/size_24.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/bold/size_24.rs -------------------------------------------------------------------------------- /src/bold/size_32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/bold/size_32.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/light/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/light/mod.rs -------------------------------------------------------------------------------- /src/light/size_16.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/light/size_16.rs -------------------------------------------------------------------------------- /src/light/size_20.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/light/size_20.rs -------------------------------------------------------------------------------- /src/light/size_24.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/light/size_24.rs -------------------------------------------------------------------------------- /src/light/size_32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/light/size_32.rs -------------------------------------------------------------------------------- /src/regular/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/regular/mod.rs -------------------------------------------------------------------------------- /src/regular/size_16.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/regular/size_16.rs -------------------------------------------------------------------------------- /src/regular/size_20.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/regular/size_20.rs -------------------------------------------------------------------------------- /src/regular/size_24.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/regular/size_24.rs -------------------------------------------------------------------------------- /src/regular/size_32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/regular/size_32.rs -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x100_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x100_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x100_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x100_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x100_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x100_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x100_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x100_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x101_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x101_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x101_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x101_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x101_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x101_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x101_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x101_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x102_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x102_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x102_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x102_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x102_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x102_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x102_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x102_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x103_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x103_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x103_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x103_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x103_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x103_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x103_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x103_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x104_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x104_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x104_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x104_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x104_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x104_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x104_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x104_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x105_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x105_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x105_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x105_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x105_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x105_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x105_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x105_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x106_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x106_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x106_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x106_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x106_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x106_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x106_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x106_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x107_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x107_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x107_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x107_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x107_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x107_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x107_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x107_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x108_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x108_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x108_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x108_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x108_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x108_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x108_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x108_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x109_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x109_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x109_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x109_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x109_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x109_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x109_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x109_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x10f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x10f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x110_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x110_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x110_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x110_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x110_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x110_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x110_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x110_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x111_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x111_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x111_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x111_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x111_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x111_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x111_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x111_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x112_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x112_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x112_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x112_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x112_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x112_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x112_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x112_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x113_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x113_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x113_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x113_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x113_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x113_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x113_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x113_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x114_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x114_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x114_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x114_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x114_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x114_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x114_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x114_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x115_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x115_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x115_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x115_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x115_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x115_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x115_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x115_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x116_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x116_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x116_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x116_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x116_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x116_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x116_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x116_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x117_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x117_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x117_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x117_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x117_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x117_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x117_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x117_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x118_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x118_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x118_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x118_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x118_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x118_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x118_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x118_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x119_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x119_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x119_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x119_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x119_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x119_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x119_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x119_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x11f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x11f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x120_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x120_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x120_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x120_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x120_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x120_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x120_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x120_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x121_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x121_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x121_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x121_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x121_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x121_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x121_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x121_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x122_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x122_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x122_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x122_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x122_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x122_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x122_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x122_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x123_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x123_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x123_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x123_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x123_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x123_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x123_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x123_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x124_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x124_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x124_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x124_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x124_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x124_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x124_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x124_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x125_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x125_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x125_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x125_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x125_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x125_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x125_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x125_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x126_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x126_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x126_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x126_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x126_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x126_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x126_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x126_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x127_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x127_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x127_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x127_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x127_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x127_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x127_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x127_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x128_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x128_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x128_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x128_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x128_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x128_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x128_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x128_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x129_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x129_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x129_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x129_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x129_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x129_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x129_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x129_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x12f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x12f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x130_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x130_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x130_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x130_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x130_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x130_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x130_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x130_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x131_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x131_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x131_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x131_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x131_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x131_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x131_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x131_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x132_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x132_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x132_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x132_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x132_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x132_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x132_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x132_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x133_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x133_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x133_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x133_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x133_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x133_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x133_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x133_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x134_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x134_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x134_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x134_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x134_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x134_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x134_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x134_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x135_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x135_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x135_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x135_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x135_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x135_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x135_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x135_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x136_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x136_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x136_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x136_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x136_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x136_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x136_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x136_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x137_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x137_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x137_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x137_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x137_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x137_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x137_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x137_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x138_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x138_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x138_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x138_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x138_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x138_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x138_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x138_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x139_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x139_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x139_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x139_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x139_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x139_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x139_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x139_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x13f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x13f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x140_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x140_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x140_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x140_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x140_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x140_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x140_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x140_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x141_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x141_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x141_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x141_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x141_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x141_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x141_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x141_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x142_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x142_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x142_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x142_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x142_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x142_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x142_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x142_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x143_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x143_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x143_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x143_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x143_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x143_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x143_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x143_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x144_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x144_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x144_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x144_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x144_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x144_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x144_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x144_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x145_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x145_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x145_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x145_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x145_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x145_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x145_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x145_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x146_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x146_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x146_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x146_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x146_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x146_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x146_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x146_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x147_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x147_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x147_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x147_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x147_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x147_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x147_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x147_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x148_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x148_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x148_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x148_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x148_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x148_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x148_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x148_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x149_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x149_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x149_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x149_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x149_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x149_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x149_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x149_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x14f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x14f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x150_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x150_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x150_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x150_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x150_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x150_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x150_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x150_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x151_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x151_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x151_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x151_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x151_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x151_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x151_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x151_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x152_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x152_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x152_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x152_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x152_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x152_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x152_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x152_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x153_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x153_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x153_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x153_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x153_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x153_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x153_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x153_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x154_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x154_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x154_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x154_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x154_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x154_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x154_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x154_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x155_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x155_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x155_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x155_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x155_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x155_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x155_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x155_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x156_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x156_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x156_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x156_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x156_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x156_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x156_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x156_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x157_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x157_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x157_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x157_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x157_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x157_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x157_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x157_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x158_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x158_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x158_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x158_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x158_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x158_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x158_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x158_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x159_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x159_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x159_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x159_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x159_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x159_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x159_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x159_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x15f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x15f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x160_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x160_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x160_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x160_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x160_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x160_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x160_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x160_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x161_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x161_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x161_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x161_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x161_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x161_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x161_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x161_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x162_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x162_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x162_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x162_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x162_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x162_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x162_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x162_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x163_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x163_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x163_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x163_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x163_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x163_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x163_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x163_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x164_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x164_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x164_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x164_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x164_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x164_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x164_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x164_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x165_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x165_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x165_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x165_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x165_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x165_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x165_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x165_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x166_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x166_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x166_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x166_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x166_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x166_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x166_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x166_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x167_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x167_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x167_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x167_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x167_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x167_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x167_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x167_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x168_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x168_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x168_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x168_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x168_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x168_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x168_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x168_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x169_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x169_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x169_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x169_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x169_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x169_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x169_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x169_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x16f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x16f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x170_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x170_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x170_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x170_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x170_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x170_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x170_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x170_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x171_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x171_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x171_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x171_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x171_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x171_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x171_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x171_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x172_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x172_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x172_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x172_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x172_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x172_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x172_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x172_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x173_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x173_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x173_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x173_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x173_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x173_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x173_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x173_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x174_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x174_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x174_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x174_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x174_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x174_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x174_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x174_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x175_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x175_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x175_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x175_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x175_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x175_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x175_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x175_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x176_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x176_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x176_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x176_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x176_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x176_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x176_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x176_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x177_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x177_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x177_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x177_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x177_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x177_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x177_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x177_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x178_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x178_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x178_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x178_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x178_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x178_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x178_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x178_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x179_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x179_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x179_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x179_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x179_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x179_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x179_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x179_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x17f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x17f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x20_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x20_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x21_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x21_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x22_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x22_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x23_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x23_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x24_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x24_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x25_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x25_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x26_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x26_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x27_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x27_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x28_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x28_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x29_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x29_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2a_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2a_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2b_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2b_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2c_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2c_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2d_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2d_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2e_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2e_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x2f_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x2f_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x30_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x30_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x31_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x31_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x32_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x32_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x33_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x33_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h16_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h20_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h20_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h20_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h20_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h24_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h24_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h24_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h24_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h32_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h32_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x34_h32_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x34_h32_wLight.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x35_h16_wBold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x35_h16_wBold.txt -------------------------------------------------------------------------------- /src/res_rasterized_characters/0x35_h16_wLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phip1611/noto-sans-mono-bitmap-rs/HEAD/src/res_rasterized_characters/0x35_h16_wLight.txt --------------------------------------------------------------------------------