1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287
|
// Geometric Tools, LLC
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.0 (2010/01/01)
#include "Wm5GraphicsPCH.h"
#include "Wm5OpenGLBitmapFont.h"
namespace Wm5
{
static const unsigned char gsChar0[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar0(0,0,13,16,gsChar0);
static const unsigned char gsChar1[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x1E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar1(0,0,13,16,gsChar1);
static const unsigned char gsChar2[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar2(0,0,13,16,gsChar2);
static const unsigned char gsChar3[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x1E,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar3(0,0,13,16,gsChar3);
static const unsigned char gsChar4[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xF0,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar4(0,0,13,16,gsChar4);
static const unsigned char gsChar5[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar5(0,0,13,16,gsChar5);
static const unsigned char gsChar6[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar6(0,0,13,16,gsChar6);
static const unsigned char gsChar7[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x38,0x00,0x7C,0x00,
0x7C,0x00,0x7C,0x00,0x38,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar7(0,0,13,16,gsChar7);
static const unsigned char gsChar8[] =
{
0x00,0x00,0xFE,0x00,0xFE,0x00,0xFE,0x00,
0xFE,0x00,0xFE,0x00,0xC6,0x00,0x82,0x00,
0x82,0x00,0x82,0x00,0xC6,0x00,0xFE,0x00,
0xFE,0x00,0xFE,0x00,0xFE,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar8(0,0,13,16,gsChar8);
static const unsigned char gsChar9[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar9(0,0,13,16,gsChar9);
static const unsigned char gsChar10[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar10(0,0,13,16,gsChar10);
static const unsigned char gsChar11[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,
0x48,0x00,0x48,0x00,0x30,0x00,0x10,0x00,
0x10,0x00,0x0A,0x00,0x0A,0x00,0x06,0x00,
0x1E,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar11(0,0,13,16,gsChar11);
static const unsigned char gsChar12[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0xF0,
0x20,0x10,0x20,0x10,0x20,0x10,0x20,0x10,
0x20,0x10,0x20,0x10,0x20,0x10,0x20,0x10,
0x3F,0xF0,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar12(0,0,13,16,gsChar12);
static const unsigned char gsChar13[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar13(0,0,13,16,gsChar13);
static const unsigned char gsChar14[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,
0x66,0x00,0x26,0x00,0x22,0x00,0x22,0x00,
0x22,0x00,0x3A,0x00,0x26,0x00,0x3A,0x00,
0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar14(0,0,13,16,gsChar14);
static const unsigned char gsChar15[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x54,0x00,0x54,0x00,0x28,0x00,0x28,0x00,
0x6C,0x00,0x28,0x00,0x28,0x00,0x54,0x00,
0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar15(0,0,13,16,gsChar15);
static const unsigned char gsChar16[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0xFE,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar16(0,0,13,16,gsChar16);
static const unsigned char gsChar17[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,
0x06,0x00,0x0E,0x00,0x1E,0x00,0x3E,0x00,
0x7E,0x00,0x3E,0x00,0x1E,0x00,0x0E,0x00,
0x06,0x00,0x02,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar17(0,0,13,16,gsChar17);
static const unsigned char gsChar18[] =
{
0x00,0x00,0x00,0x00,0x10,0x00,0x38,0x00,
0x54,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x54,0x00,0x38,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar18(0,0,13,16,gsChar18);
static const unsigned char gsChar19[] =
{
0x00,0x00,0x00,0x00,0x24,0x00,0x24,0x00,
0x00,0x00,0x00,0x00,0x24,0x00,0x24,0x00,
0x24,0x00,0x24,0x00,0x24,0x00,0x24,0x00,
0x24,0x00,0x24,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar19(0,0,13,16,gsChar19);
static const unsigned char gsChar20[] =
{
0x00,0x00,0x00,0x00,0x14,0x00,0x14,0x00,
0x14,0x00,0x14,0x00,0x14,0x00,0x34,0x00,
0x54,0x00,0x54,0x00,0x54,0x00,0x54,0x00,
0x54,0x00,0x34,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar20(0,0,13,16,gsChar20);
static const unsigned char gsChar21[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFE,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar21(0,0,13,16,gsChar21);
static const unsigned char gsChar22[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar22(0,0,13,16,gsChar22);
static const unsigned char gsChar23[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0xF0,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar23(0,0,13,16,gsChar23);
static const unsigned char gsChar24[] =
{
0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x54,0x00,
0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar24(0,0,13,16,gsChar24);
static const unsigned char gsChar25[] =
{
0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x1E,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar25(0,0,13,16,gsChar25);
static const unsigned char gsChar26[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x08,0x00,0x04,0x00,0x7E,0x00,
0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar26(0,0,13,16,gsChar26);
static const unsigned char gsChar27[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x10,0x00,0x20,0x00,0x7E,0x00,
0x20,0x00,0x10,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar27(0,0,13,16,gsChar27);
static const unsigned char gsChar28[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar28(0,0,13,16,gsChar28);
static const unsigned char gsChar29[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar29(0,0,13,16,gsChar29);
static const unsigned char gsChar30[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar30(0,0,13,16,gsChar30);
static const unsigned char gsChar31[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar31(0,0,13,16,gsChar31);
static const unsigned char gsChar32[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar32(0,0,5,16,gsChar32);
static const unsigned char gsChar33[] =
{
0x00,0x00,0x00,0x20,0x20,0x00,0x20,0x20,
0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar33(0,0,5,16,gsChar33);
static const unsigned char gsChar34[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x50,0x50,0x50,0x50,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar34(0,0,5,16,gsChar34);
static const unsigned char gsChar35[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x24,0x00,0x24,0x00,0x7F,0x00,0x12,0x00,
0x12,0x00,0x3F,0x80,0x09,0x00,0x09,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar35(0,0,10,16,gsChar35);
static const unsigned char gsChar36[] =
{
0x00,0x10,0x10,0x7C,0x12,0x12,0x1C,0x30,
0x50,0x50,0x3E,0x10,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar36(0,0,8,16,gsChar36);
static const unsigned char gsChar37[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xE0,
0x09,0x10,0x05,0x10,0x05,0x10,0x3A,0xE0,
0x45,0x00,0x45,0x00,0x44,0x80,0x38,0x40,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar37(0,0,13,16,gsChar37);
static const unsigned char gsChar38[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x39,0x80,
0x46,0x00,0x42,0x00,0x45,0x00,0x38,0x80,
0x44,0x00,0x44,0x00,0x44,0x00,0x38,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar38(0,0,9,16,gsChar38);
static const unsigned char gsChar39[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x40,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar39(0,0,3,16,gsChar39);
static const unsigned char gsChar40[] =
{
0x08,0x10,0x20,0x20,0x40,0x40,0x40,0x40,
0x40,0x20,0x20,0x10,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar40(0,0,6,16,gsChar40);
static const unsigned char gsChar41[] =
{
0x40,0x20,0x10,0x10,0x08,0x08,0x08,0x08,
0x08,0x10,0x10,0x20,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar41(0,0,6,16,gsChar41);
static const unsigned char gsChar42[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x08,0x00,0x2A,0x00,0x1C,0x00,0x2A,0x00,
0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar42(0,0,9,16,gsChar42);
static const unsigned char gsChar43[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x7F,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar43(0,0,9,16,gsChar43);
static const unsigned char gsChar44[] =
{
0x00,0x40,0x20,0x20,0x20,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar44(0,0,5,16,gsChar44);
static const unsigned char gsChar45[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar45(0,0,7,16,gsChar45);
static const unsigned char gsChar46[] =
{
0x00,0x00,0x00,0x20,0x20,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar46(0,0,5,16,gsChar46);
static const unsigned char gsChar47[] =
{
0x00,0x80,0x80,0x40,0x40,0x20,0x20,0x10,
0x10,0x08,0x08,0x04,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar47(0,0,6,16,gsChar47);
static const unsigned char gsChar48[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar48(0,0,8,16,gsChar48);
static const unsigned char gsChar49[] =
{
0x00,0x00,0x00,0x3E,0x08,0x08,0x08,0x08,
0x08,0x08,0x38,0x08,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar49(0,0,8,16,gsChar49);
static const unsigned char gsChar50[] =
{
0x00,0x00,0x00,0x7E,0x40,0x20,0x18,0x04,
0x02,0x42,0x42,0x3C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar50(0,0,8,16,gsChar50);
static const unsigned char gsChar51[] =
{
0x00,0x00,0x00,0x3C,0x42,0x02,0x02,0x1C,
0x02,0x02,0x42,0x3C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar51(0,0,8,16,gsChar51);
static const unsigned char gsChar52[] =
{
0x00,0x00,0x00,0x04,0x04,0x04,0x7F,0x44,
0x24,0x14,0x0C,0x04,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar52(0,0,8,16,gsChar52);
static const unsigned char gsChar53[] =
{
0x00,0x00,0x00,0x3C,0x42,0x02,0x02,0x3C,
0x20,0x20,0x20,0x3E,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar53(0,0,8,16,gsChar53);
static const unsigned char gsChar54[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x7C,0x40,0x20,0x1C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar54(0,0,8,16,gsChar54);
static const unsigned char gsChar55[] =
{
0x00,0x00,0x00,0x10,0x10,0x10,0x08,0x08,
0x04,0x04,0x02,0x7E,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar55(0,0,8,16,gsChar55);
static const unsigned char gsChar56[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x3C,
0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar56(0,0,8,16,gsChar56);
static const unsigned char gsChar57[] =
{
0x00,0x00,0x00,0x38,0x04,0x02,0x3E,0x42,
0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar57(0,0,8,16,gsChar57);
static const unsigned char gsChar58[] =
{
0x00,0x00,0x00,0x20,0x20,0x00,0x00,0x00,
0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar58(0,0,6,16,gsChar58);
static const unsigned char gsChar59[] =
{
0x00,0x40,0x20,0x20,0x20,0x00,0x00,0x00,
0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar59(0,0,6,16,gsChar59);
static const unsigned char gsChar60[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,
0x0C,0x00,0x30,0x00,0x40,0x00,0x30,0x00,
0x0C,0x00,0x03,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar60(0,0,9,16,gsChar60);
static const unsigned char gsChar61[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x7F,0x00,0x00,0x00,0x00,0x00,
0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar61(0,0,9,16,gsChar61);
static const unsigned char gsChar62[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,
0x18,0x00,0x06,0x00,0x01,0x00,0x06,0x00,
0x18,0x00,0x60,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar62(0,0,9,16,gsChar62);
static const unsigned char gsChar63[] =
{
0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x10,
0x08,0x04,0x44,0x38,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar63(0,0,7,16,gsChar63);
static const unsigned char gsChar64[] =
{
0x00,0x00,0x0F,0x80,0x10,0x00,0x27,0xE0,
0x48,0x90,0x48,0x90,0x48,0x90,0x48,0x90,
0x48,0x90,0x27,0xA0,0x10,0x40,0x0F,0x80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar64(0,0,13,16,gsChar64);
static const unsigned char gsChar65[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar65(0,0,9,16,gsChar65);
static const unsigned char gsChar66[] =
{
0x00,0x00,0x00,0x7C,0x42,0x42,0x42,0x7C,
0x44,0x44,0x44,0x78,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar66(0,0,8,16,gsChar66);
static const unsigned char gsChar67[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x00,0x40,0x00,0x40,0x00,
0x40,0x00,0x40,0x00,0x21,0x00,0x1E,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar67(0,0,9,16,gsChar67);
static const unsigned char gsChar68[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x00,
0x42,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x42,0x00,0x7C,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar68(0,0,9,16,gsChar68);
static const unsigned char gsChar69[] =
{
0x00,0x00,0x00,0x7E,0x40,0x40,0x40,0x7E,
0x40,0x40,0x40,0x7E,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar69(0,0,8,16,gsChar69);
static const unsigned char gsChar70[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x7C,
0x40,0x40,0x40,0x7E,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar70(0,0,8,16,gsChar70);
static const unsigned char gsChar71[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x00,
0x21,0x00,0x41,0x00,0x47,0x00,0x40,0x00,
0x40,0x00,0x40,0x00,0x21,0x00,0x1E,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar71(0,0,9,16,gsChar71);
static const unsigned char gsChar72[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x7F,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar72(0,0,9,16,gsChar72);
static const unsigned char gsChar73[] =
{
0x00,0x00,0x00,0x70,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x70,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar73(0,0,5,16,gsChar73);
static const unsigned char gsChar74[] =
{
0x00,0x00,0x00,0xF0,0x08,0x08,0x08,0x08,
0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar74(0,0,6,16,gsChar74);
static const unsigned char gsChar75[] =
{
0x00,0x00,0x00,0x42,0x44,0x48,0x50,0x60,
0x50,0x48,0x44,0x42,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar75(0,0,8,16,gsChar75);
static const unsigned char gsChar76[] =
{
0x00,0x00,0x00,0x7E,0x40,0x40,0x40,0x40,
0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar76(0,0,7,16,gsChar76);
static const unsigned char gsChar77[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,
0x44,0x40,0x44,0x40,0x4A,0x40,0x4A,0x40,
0x51,0x40,0x51,0x40,0x60,0xC0,0x60,0xC0,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar77(0,0,11,16,gsChar77);
static const unsigned char gsChar78[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x00,
0x43,0x00,0x45,0x00,0x45,0x00,0x49,0x00,
0x51,0x00,0x51,0x00,0x61,0x00,0x61,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar78(0,0,9,16,gsChar78);
static const unsigned char gsChar79[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar79(0,0,10,16,gsChar79);
static const unsigned char gsChar80[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x7C,0x42,
0x42,0x42,0x42,0x7C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar80(0,0,8,16,gsChar80);
static const unsigned char gsChar81[] =
{
0x00,0x00,0x01,0x80,0x02,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar81(0,0,10,16,gsChar81);
static const unsigned char gsChar82[] =
{
0x00,0x00,0x00,0x41,0x42,0x44,0x78,0x44,
0x42,0x42,0x42,0x7C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar82(0,0,8,16,gsChar82);
static const unsigned char gsChar83[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0x00,
0x41,0x00,0x01,0x00,0x01,0x00,0x3E,0x00,
0x40,0x00,0x40,0x00,0x41,0x00,0x3E,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar83(0,0,9,16,gsChar83);
static const unsigned char gsChar84[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x7F,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar84(0,0,9,16,gsChar84);
static const unsigned char gsChar85[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x00,
0x22,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar85(0,0,9,16,gsChar85);
static const unsigned char gsChar86[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,
0x08,0x00,0x14,0x00,0x14,0x00,0x22,0x00,
0x22,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar86(0,0,9,16,gsChar86);
static const unsigned char gsChar87[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x40,
0x10,0x40,0x28,0xA0,0x28,0xA0,0x25,0x20,
0x45,0x10,0x45,0x10,0x42,0x10,0x42,0x10,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar87(0,0,13,16,gsChar87);
static const unsigned char gsChar88[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x22,0x00,0x14,0x00,0x08,0x00,
0x14,0x00,0x22,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar88(0,0,9,16,gsChar88);
static const unsigned char gsChar89[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x14,0x00,
0x14,0x00,0x22,0x00,0x22,0x00,0x41,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar89(0,0,9,16,gsChar89);
static const unsigned char gsChar90[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x00,
0x40,0x00,0x20,0x00,0x10,0x00,0x08,0x00,
0x04,0x00,0x02,0x00,0x01,0x00,0x7F,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar90(0,0,9,16,gsChar90);
static const unsigned char gsChar91[] =
{
0x00,0x38,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar91(0,0,6,16,gsChar91);
static const unsigned char gsChar92[] =
{
0x00,0x04,0x04,0x08,0x08,0x10,0x10,0x20,
0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar92(0,0,6,16,gsChar92);
static const unsigned char gsChar93[] =
{
0x00,0x70,0x10,0x10,0x10,0x10,0x10,0x10,
0x10,0x10,0x10,0x10,0x70,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar93(0,0,6,16,gsChar93);
static const unsigned char gsChar94[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,
0x20,0x80,0x11,0x00,0x0A,0x00,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar94(0,0,11,16,gsChar94);
static const unsigned char gsChar95[] =
{
0x00,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar95(0,0,8,16,gsChar95);
static const unsigned char gsChar96[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar96(0,0,8,16,gsChar96);
static const unsigned char gsChar97[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar97(0,0,8,16,gsChar97);
static const unsigned char gsChar98[] =
{
0x00,0x00,0x00,0x7C,0x42,0x42,0x42,0x42,
0x62,0x5C,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar98(0,0,8,16,gsChar98);
static const unsigned char gsChar99[] =
{
0x00,0x00,0x00,0x3C,0x42,0x40,0x40,0x40,
0x42,0x3C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar99(0,0,8,16,gsChar99);
static const unsigned char gsChar100[] =
{
0x00,0x00,0x00,0x3A,0x46,0x42,0x42,0x42,
0x42,0x3E,0x02,0x02,0x02,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar100(0,0,8,16,gsChar100);
static const unsigned char gsChar101[] =
{
0x00,0x00,0x00,0x3C,0x42,0x40,0x7E,0x42,
0x42,0x3C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar101(0,0,8,16,gsChar101);
static const unsigned char gsChar102[] =
{
0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,
0x20,0x78,0x20,0x20,0x18,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar102(0,0,5,16,gsChar102);
static const unsigned char gsChar103[] =
{
0x3C,0x02,0x02,0x3A,0x46,0x42,0x42,0x42,
0x42,0x3E,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar103(0,0,8,16,gsChar103);
static const unsigned char gsChar104[] =
{
0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,
0x62,0x5C,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar104(0,0,8,16,gsChar104);
static const unsigned char gsChar105[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x40,0x40,0x00,0x00,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar105(0,0,3,16,gsChar105);
static const unsigned char gsChar106[] =
{
0xC0,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x60,0x00,0x00,0x20,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar106(0,0,4,16,gsChar106);
static const unsigned char gsChar107[] =
{
0x00,0x00,0x00,0x44,0x48,0x50,0x60,0x50,
0x48,0x44,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar107(0,0,7,16,gsChar107);
static const unsigned char gsChar108[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar108(0,0,3,16,gsChar108);
static const unsigned char gsChar109[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x40,
0x44,0x40,0x44,0x40,0x44,0x40,0x44,0x40,
0x66,0x40,0x59,0x80,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar109(0,0,11,16,gsChar109);
static const unsigned char gsChar110[] =
{
0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,
0x62,0x5C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar110(0,0,8,16,gsChar110);
static const unsigned char gsChar111[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x3C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar111(0,0,8,16,gsChar111);
static const unsigned char gsChar112[] =
{
0x40,0x40,0x40,0x7C,0x42,0x42,0x42,0x42,
0x62,0x5C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar112(0,0,8,16,gsChar112);
static const unsigned char gsChar113[] =
{
0x02,0x02,0x02,0x3A,0x46,0x42,0x42,0x42,
0x42,0x3E,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar113(0,0,8,16,gsChar113);
static const unsigned char gsChar114[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x60,0x58,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar114(0,0,5,16,gsChar114);
static const unsigned char gsChar115[] =
{
0x00,0x00,0x00,0x78,0x04,0x04,0x38,0x40,
0x40,0x3C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar115(0,0,7,16,gsChar115);
static const unsigned char gsChar116[] =
{
0x00,0x00,0x00,0x18,0x20,0x20,0x20,0x20,
0x20,0x78,0x20,0x20,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar116(0,0,6,16,gsChar116);
static const unsigned char gsChar117[] =
{
0x00,0x00,0x00,0x3A,0x46,0x42,0x42,0x42,
0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar117(0,0,8,16,gsChar117);
static const unsigned char gsChar118[] =
{
0x00,0x00,0x00,0x18,0x18,0x24,0x24,0x24,
0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar118(0,0,8,16,gsChar118);
static const unsigned char gsChar119[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x00,
0x11,0x00,0x2A,0x80,0x2A,0x80,0x2A,0x80,
0x44,0x40,0x44,0x40,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar119(0,0,11,16,gsChar119);
static const unsigned char gsChar120[] =
{
0x00,0x00,0x00,0x44,0x44,0x28,0x10,0x28,
0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar120(0,0,7,16,gsChar120);
static const unsigned char gsChar121[] =
{
0x20,0x10,0x10,0x18,0x18,0x24,0x24,0x24,
0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar121(0,0,8,16,gsChar121);
static const unsigned char gsChar122[] =
{
0x00,0x00,0x00,0x7C,0x40,0x20,0x10,0x08,
0x04,0x7C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar122(0,0,7,16,gsChar122);
static const unsigned char gsChar123[] =
{
0x00,0x0C,0x10,0x10,0x10,0x10,0x10,0x60,
0x10,0x10,0x10,0x10,0x0C,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar123(0,0,8,16,gsChar123);
static const unsigned char gsChar124[] =
{
0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar124(0,0,7,16,gsChar124);
static const unsigned char gsChar125[] =
{
0x00,0x30,0x08,0x08,0x08,0x08,0x08,0x06,
0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar125(0,0,8,16,gsChar125);
static const unsigned char gsChar126[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x43,0x00,0x4C,0x80,
0x30,0x80,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar126(0,0,11,16,gsChar126);
static const unsigned char gsChar127[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x00,
0x42,0x00,0x42,0x00,0x42,0x00,0x42,0x00,
0x42,0x00,0x42,0x00,0x42,0x00,0x42,0x00,
0x42,0x00,0x7E,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar127(0,0,13,16,gsChar127);
static const unsigned char gsChar128[] =
{
0x00,0x00,0x00,0x1C,0x22,0x40,0xF0,0x40,
0xF8,0x40,0x22,0x1C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar128(0,0,8,16,gsChar128);
static const unsigned char gsChar129[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar129(0,0,13,16,gsChar129);
static const unsigned char gsChar130[] =
{
0x00,0x80,0x40,0x40,0x40,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar130(0,0,3,16,gsChar130);
static const unsigned char gsChar131[] =
{
0x00,0x00,0xC0,0x20,0x10,0x10,0x10,0x3E,
0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar131(0,0,8,16,gsChar131);
static const unsigned char gsChar132[] =
{
0x00,0x90,0x48,0x48,0x48,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar132(0,0,6,16,gsChar132);
static const unsigned char gsChar133[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x40,
0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar133(0,0,11,16,gsChar133);
static const unsigned char gsChar134[] =
{
0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,
0x08,0x08,0x7F,0x08,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar134(0,0,8,16,gsChar134);
static const unsigned char gsChar135[] =
{
0x00,0x00,0x00,0x00,0x08,0x08,0x7F,0x08,
0x08,0x08,0x7F,0x08,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar135(0,0,8,16,gsChar135);
static const unsigned char gsChar136[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x24,0x18,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar136(0,0,8,16,gsChar136);
static const unsigned char gsChar137[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x10,0xE3,0x80,0x09,0x14,0x40,0x05,
0x14,0x40,0x05,0x14,0x40,0x3A,0xE3,0x80,
0x45,0x00,0x00,0x45,0x00,0x00,0x44,0x80,
0x00,0x38,0x40,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar137(0,0,20,16,gsChar137);
static const unsigned char gsChar138[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0x00,
0x41,0x00,0x01,0x00,0x01,0x00,0x3E,0x00,
0x40,0x00,0x40,0x00,0x41,0x00,0x3E,0x00,
0x00,0x00,0x0C,0x00,0x12,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar138(0,0,9,16,gsChar138);
static const unsigned char gsChar139[] =
{
0x00,0x00,0x00,0x00,0x10,0x20,0x40,0x40,
0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar139(0,0,6,16,gsChar139);
static const unsigned char gsChar140[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0xF8,
0x21,0x00,0x41,0x00,0x41,0x00,0x41,0xF8,
0x41,0x00,0x41,0x00,0x21,0x00,0x1F,0xF8,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar140(0,0,14,16,gsChar140);
static const unsigned char gsChar141[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar141(0,0,13,16,gsChar141);
static const unsigned char gsChar142[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x00,
0x40,0x00,0x20,0x00,0x10,0x00,0x08,0x00,
0x04,0x00,0x02,0x00,0x01,0x00,0x7F,0x00,
0x00,0x00,0x0C,0x00,0x12,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar142(0,0,9,16,gsChar142);
static const unsigned char gsChar143[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar143(0,0,13,16,gsChar143);
static const unsigned char gsChar144[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar144(0,0,13,16,gsChar144);
static const unsigned char gsChar145[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x20,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar145(0,0,3,16,gsChar145);
static const unsigned char gsChar146[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x40,0x20,0x20,0x20,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar146(0,0,3,16,gsChar146);
static const unsigned char gsChar147[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x24,0x48,0x48,0x48,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar147(0,0,6,16,gsChar147);
static const unsigned char gsChar148[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x48,0x24,0x24,0x24,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar148(0,0,6,16,gsChar148);
static const unsigned char gsChar149[] =
{
0x00,0x00,0x00,0x00,0x00,0x38,0x7C,0x7C,
0x7C,0x38,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar149(0,0,7,16,gsChar149);
static const unsigned char gsChar150[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar150(0,0,8,16,gsChar150);
static const unsigned char gsChar151[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0xF0,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar151(0,0,13,16,gsChar151);
static const unsigned char gsChar152[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x2C,0x1A,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar152(0,0,8,16,gsChar152);
static const unsigned char gsChar153[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x12,0x20,0x12,0xA0,0x13,0x60,0x3A,0x20,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar153(0,0,13,16,gsChar153);
static const unsigned char gsChar154[] =
{
0x00,0x00,0x00,0x78,0x04,0x04,0x38,0x40,
0x40,0x3C,0x00,0x18,0x24,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar154(0,0,7,16,gsChar154);
static const unsigned char gsChar155[] =
{
0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x10,
0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar155(0,0,6,16,gsChar155);
static const unsigned char gsChar156[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x3D,0xE0,
0x42,0x10,0x42,0x00,0x43,0xF0,0x42,0x10,
0x42,0x10,0x3D,0xE0,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar156(0,0,13,16,gsChar156);
static const unsigned char gsChar157[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,
0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar157(0,0,13,16,gsChar157);
static const unsigned char gsChar158[] =
{
0x00,0x00,0x00,0x7C,0x40,0x20,0x10,0x08,
0x04,0x7C,0x00,0x18,0x24,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar158(0,0,7,16,gsChar158);
static const unsigned char gsChar159[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x14,0x00,
0x14,0x00,0x22,0x00,0x22,0x00,0x41,0x00,
0x00,0x00,0x22,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar159(0,0,9,16,gsChar159);
static const unsigned char gsChar160[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar160(0,0,5,16,gsChar160);
static const unsigned char gsChar161[] =
{
0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,
0x20,0x00,0x20,0x20,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar161(0,0,5,16,gsChar161);
static const unsigned char gsChar162[] =
{
0x00,0x08,0x08,0x3E,0x48,0x48,0x48,0x48,
0x48,0x3E,0x08,0x08,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar162(0,0,8,16,gsChar162);
static const unsigned char gsChar163[] =
{
0x00,0x00,0x00,0x7E,0x40,0x20,0x20,0x7C,
0x20,0x20,0x22,0x1C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar163(0,0,8,16,gsChar163);
static const unsigned char gsChar164[] =
{
0x00,0x00,0x00,0x00,0x42,0x3C,0x24,0x24,
0x3C,0x42,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar164(0,0,8,16,gsChar164);
static const unsigned char gsChar165[] =
{
0x00,0x00,0x00,0x08,0x08,0x3E,0x08,0x08,
0x14,0x22,0x22,0x41,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar165(0,0,8,16,gsChar165);
static const unsigned char gsChar166[] =
{
0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,
0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar166(0,0,7,16,gsChar166);
static const unsigned char gsChar167[] =
{
0x00,0x3C,0x42,0x02,0x1C,0x22,0x42,0x44,
0x38,0x40,0x42,0x3C,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar167(0,0,8,16,gsChar167);
static const unsigned char gsChar168[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar168(0,0,8,16,gsChar168);
static const unsigned char gsChar169[] =
{
0x00,0x00,0x0F,0x80,0x10,0x40,0x27,0x20,
0x48,0x90,0x48,0x10,0x48,0x10,0x48,0x10,
0x48,0x90,0x27,0x20,0x10,0x40,0x0F,0x80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar169(0,0,13,16,gsChar169);
static const unsigned char gsChar170[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x3C,0x44,
0x44,0x3C,0x04,0x38,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar170(0,0,7,16,gsChar170);
static const unsigned char gsChar171[] =
{
0x00,0x00,0x00,0x00,0x12,0x24,0x48,0x48,
0x24,0x12,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar171(0,0,8,16,gsChar171);
static const unsigned char gsChar172[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x01,0x00,0x01,0x00,0x01,0x00,0x7F,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar172(0,0,9,16,gsChar172);
static const unsigned char gsChar173[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar173(0,0,7,16,gsChar173);
static const unsigned char gsChar174[] =
{
0x00,0x00,0x0F,0x80,0x10,0x40,0x24,0x60,
0x44,0x90,0x45,0x10,0x47,0x10,0x44,0x90,
0x44,0x90,0x27,0x20,0x10,0x40,0x0F,0x80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar174(0,0,13,16,gsChar174);
static const unsigned char gsChar175[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0xFF,0x00,0x00
};
static const BitmapFontChar gsBFChar175(0,0,8,16,gsChar175);
static const unsigned char gsChar176[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,
0x44,0x44,0x44,0x38,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar176(0,0,7,16,gsChar176);
static const unsigned char gsChar177[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x7F,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
0x7F,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar177(0,0,9,16,gsChar177);
static const unsigned char gsChar178[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x20,
0x10,0x08,0x48,0x30,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar178(0,0,7,16,gsChar178);
static const unsigned char gsChar179[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x04,
0x04,0x38,0x04,0x78,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar179(0,0,7,16,gsChar179);
static const unsigned char gsChar180[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar180(0,0,8,16,gsChar180);
static const unsigned char gsChar181[] =
{
0x40,0x40,0x40,0x7E,0x42,0x42,0x42,0x42,
0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar181(0,0,8,16,gsChar181);
static const unsigned char gsChar182[] =
{
0x00,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x3A,
0x7A,0x7A,0x7A,0x3E,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar182(0,0,8,16,gsChar182);
static const unsigned char gsChar183[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar183(0,0,5,16,gsChar183);
static const unsigned char gsChar184[] =
{
0x30,0x08,0x08,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar184(0,0,8,16,gsChar184);
static const unsigned char gsChar185[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x10,
0x10,0x10,0x30,0x10,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar185(0,0,7,16,gsChar185);
static const unsigned char gsChar186[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x44,
0x44,0x44,0x44,0x38,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar186(0,0,7,16,gsChar186);
static const unsigned char gsChar187[] =
{
0x00,0x00,0x00,0x00,0x48,0x24,0x12,0x12,
0x24,0x48,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar187(0,0,8,16,gsChar187);
static const unsigned char gsChar188[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,
0x09,0xF0,0x09,0x20,0x24,0xA0,0x22,0x60,
0x22,0x20,0x21,0x00,0x61,0x00,0x20,0x80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar188(0,0,13,16,gsChar188);
static const unsigned char gsChar189[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xF0,
0x08,0x40,0x08,0x20,0x24,0x10,0x22,0x90,
0x22,0x60,0x21,0x00,0x61,0x00,0x20,0x80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar189(0,0,13,16,gsChar189);
static const unsigned char gsChar190[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,
0x09,0xF0,0x05,0x20,0x74,0xA0,0x0A,0x60,
0x09,0x20,0x31,0x00,0x08,0x80,0x70,0x80,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar190(0,0,13,16,gsChar190);
static const unsigned char gsChar191[] =
{
0x00,0x00,0x00,0x38,0x44,0x40,0x20,0x10,
0x10,0x00,0x10,0x10,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar191(0,0,7,16,gsChar191);
static const unsigned char gsChar192[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x04,0x00,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar192(0,0,9,16,gsChar192);
static const unsigned char gsChar193[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar193(0,0,9,16,gsChar193);
static const unsigned char gsChar194[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x12,0x00,0x0C,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar194(0,0,9,16,gsChar194);
static const unsigned char gsChar195[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x2C,0x00,0x1A,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar195(0,0,9,16,gsChar195);
static const unsigned char gsChar196[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x08,0x00,
0x00,0x00,0x22,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar196(0,0,9,16,gsChar196);
static const unsigned char gsChar197[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,
0x41,0x00,0x3E,0x00,0x22,0x00,0x22,0x00,
0x14,0x00,0x14,0x00,0x08,0x00,0x1C,0x00,
0x22,0x00,0x22,0x00,0x1C,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar197(0,0,9,16,gsChar197);
static const unsigned char gsChar198[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x43,0xE0,
0x42,0x00,0x42,0x00,0x3E,0x00,0x23,0xE0,
0x12,0x00,0x12,0x00,0x0A,0x00,0x0F,0xE0,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar198(0,0,12,16,gsChar198);
static const unsigned char gsChar199[] =
{
0x0C,0x00,0x02,0x00,0x02,0x00,0x1E,0x00,
0x21,0x00,0x40,0x00,0x40,0x00,0x40,0x00,
0x40,0x00,0x40,0x00,0x21,0x00,0x1E,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar199(0,0,9,16,gsChar199);
static const unsigned char gsChar200[] =
{
0x00,0x00,0x00,0x7E,0x40,0x40,0x40,0x7E,
0x40,0x40,0x40,0x7E,0x00,0x08,0x10,0x00
};
static const BitmapFontChar gsBFChar200(0,0,8,16,gsChar200);
static const unsigned char gsChar201[] =
{
0x00,0x00,0x00,0x7E,0x40,0x40,0x40,0x7E,
0x40,0x40,0x40,0x7E,0x00,0x10,0x08,0x00
};
static const BitmapFontChar gsBFChar201(0,0,8,16,gsChar201);
static const unsigned char gsChar202[] =
{
0x00,0x00,0x00,0x7E,0x40,0x40,0x40,0x7E,
0x40,0x40,0x40,0x7E,0x00,0x24,0x18,0x00
};
static const BitmapFontChar gsBFChar202(0,0,8,16,gsChar202);
static const unsigned char gsChar203[] =
{
0x00,0x00,0x00,0x7E,0x40,0x40,0x40,0x7E,
0x40,0x40,0x40,0x7E,0x00,0x24,0x00,0x00
};
static const BitmapFontChar gsBFChar203(0,0,8,16,gsChar203);
static const unsigned char gsChar204[] =
{
0x00,0x00,0x00,0x70,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x70,0x00,0x10,0x20,0x00
};
static const BitmapFontChar gsBFChar204(0,0,5,16,gsChar204);
static const unsigned char gsChar205[] =
{
0x00,0x00,0x00,0x70,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x70,0x00,0x20,0x10,0x00
};
static const BitmapFontChar gsBFChar205(0,0,5,16,gsChar205);
static const unsigned char gsChar206[] =
{
0x00,0x00,0x00,0x70,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x70,0x00,0x48,0x30,0x00
};
static const BitmapFontChar gsBFChar206(0,0,5,16,gsChar206);
static const unsigned char gsChar207[] =
{
0x00,0x00,0x00,0x70,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x70,0x00,0x88,0x00,0x00
};
static const BitmapFontChar gsBFChar207(0,0,5,16,gsChar207);
static const unsigned char gsChar208[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x00,
0x42,0x00,0x41,0x00,0x41,0x00,0xF1,0x00,
0x41,0x00,0x41,0x00,0x42,0x00,0x7C,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar208(0,0,9,16,gsChar208);
static const unsigned char gsChar209[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x00,
0x43,0x00,0x45,0x00,0x45,0x00,0x49,0x00,
0x51,0x00,0x51,0x00,0x61,0x00,0x61,0x00,
0x00,0x00,0x2C,0x00,0x1A,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar209(0,0,9,16,gsChar209);
static const unsigned char gsChar210[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x04,0x00,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar210(0,0,10,16,gsChar210);
static const unsigned char gsChar211[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar211(0,0,10,16,gsChar211);
static const unsigned char gsChar212[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x12,0x00,0x0C,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar212(0,0,10,16,gsChar212);
static const unsigned char gsChar213[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x16,0x00,0x0D,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar213(0,0,10,16,gsChar213);
static const unsigned char gsChar214[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x00,
0x21,0x00,0x40,0x80,0x40,0x80,0x40,0x80,
0x40,0x80,0x40,0x80,0x21,0x00,0x1E,0x00,
0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar214(0,0,10,16,gsChar214);
static const unsigned char gsChar215[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x20,0x80,0x11,0x00,0x0A,0x00,0x04,0x00,
0x0A,0x00,0x11,0x00,0x20,0x80,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar215(0,0,11,16,gsChar215);
static const unsigned char gsChar216[] =
{
0x00,0x00,0x00,0x00,0x40,0x00,0x3E,0x00,
0x21,0x00,0x50,0x80,0x48,0x80,0x48,0x80,
0x44,0x80,0x42,0x80,0x21,0x00,0x1F,0x00,
0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar216(0,0,10,16,gsChar216);
static const unsigned char gsChar217[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x00,
0x22,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x04,0x00,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar217(0,0,9,16,gsChar217);
static const unsigned char gsChar218[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x00,
0x22,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar218(0,0,9,16,gsChar218);
static const unsigned char gsChar219[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x00,
0x22,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x12,0x00,0x0C,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar219(0,0,9,16,gsChar219);
static const unsigned char gsChar220[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x00,
0x22,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x41,0x00,0x41,0x00,0x41,0x00,0x41,0x00,
0x00,0x00,0x22,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar220(0,0,9,16,gsChar220);
static const unsigned char gsChar221[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,
0x08,0x00,0x08,0x00,0x08,0x00,0x14,0x00,
0x14,0x00,0x22,0x00,0x22,0x00,0x41,0x00,
0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar221(0,0,9,16,gsChar221);
static const unsigned char gsChar222[] =
{
0x00,0x00,0x00,0x40,0x40,0x7C,0x42,0x42,
0x42,0x7C,0x40,0x40,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar222(0,0,8,16,gsChar222);
static const unsigned char gsChar223[] =
{
0x00,0x00,0x00,0x5C,0x42,0x42,0x42,0x44,
0x58,0x44,0x44,0x44,0x38,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar223(0,0,8,16,gsChar223);
static const unsigned char gsChar224[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x08,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar224(0,0,8,16,gsChar224);
static const unsigned char gsChar225[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x08,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar225(0,0,8,16,gsChar225);
static const unsigned char gsChar226[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x12,0x0C,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar226(0,0,8,16,gsChar226);
static const unsigned char gsChar227[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x2C,0x1A,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar227(0,0,8,16,gsChar227);
static const unsigned char gsChar228[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x24,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar228(0,0,8,16,gsChar228);
static const unsigned char gsChar229[] =
{
0x00,0x00,0x00,0x3E,0x42,0x42,0x3E,0x02,
0x02,0x3C,0x00,0x0C,0x12,0x12,0x0C,0x00
};
static const BitmapFontChar gsBFChar229(0,0,8,16,gsChar229);
static const unsigned char gsChar230[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x3B,0x80,
0x44,0x40,0x44,0x00,0x3F,0xC0,0x04,0x40,
0x04,0x40,0x3B,0x80,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar230(0,0,11,16,gsChar230);
static const unsigned char gsChar231[] =
{
0x18,0x04,0x04,0x3C,0x42,0x40,0x40,0x40,
0x42,0x3C,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar231(0,0,8,16,gsChar231);
static const unsigned char gsChar232[] =
{
0x00,0x00,0x00,0x3C,0x42,0x40,0x7E,0x42,
0x42,0x3C,0x00,0x08,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar232(0,0,8,16,gsChar232);
static const unsigned char gsChar233[] =
{
0x00,0x00,0x00,0x3C,0x42,0x40,0x7E,0x42,
0x42,0x3C,0x00,0x08,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar233(0,0,8,16,gsChar233);
static const unsigned char gsChar234[] =
{
0x00,0x00,0x00,0x3C,0x42,0x40,0x7E,0x42,
0x42,0x3C,0x00,0x24,0x18,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar234(0,0,8,16,gsChar234);
static const unsigned char gsChar235[] =
{
0x00,0x00,0x00,0x3C,0x42,0x40,0x7E,0x42,
0x42,0x3C,0x00,0x24,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar235(0,0,8,16,gsChar235);
static const unsigned char gsChar236[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x40,0x40,0x00,0x20,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar236(0,0,3,16,gsChar236);
static const unsigned char gsChar237[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x40,0x40,0x00,0x40,0x20,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar237(0,0,3,16,gsChar237);
static const unsigned char gsChar238[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x40,0x40,0x00,0xA0,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar238(0,0,3,16,gsChar238);
static const unsigned char gsChar239[] =
{
0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,
0x40,0x40,0x00,0xA0,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar239(0,0,3,16,gsChar239);
static const unsigned char gsChar240[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x3E,0x02,0x34,0x08,0x14,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar240(0,0,8,16,gsChar240);
static const unsigned char gsChar241[] =
{
0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,
0x62,0x5C,0x00,0x2C,0x1A,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar241(0,0,8,16,gsChar241);
static const unsigned char gsChar242[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x3C,0x00,0x08,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar242(0,0,8,16,gsChar242);
static const unsigned char gsChar243[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x3C,0x00,0x10,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar243(0,0,8,16,gsChar243);
static const unsigned char gsChar244[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x3C,0x00,0x24,0x18,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar244(0,0,8,16,gsChar244);
static const unsigned char gsChar245[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x3C,0x00,0x2C,0x1A,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar245(0,0,8,16,gsChar245);
static const unsigned char gsChar246[] =
{
0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,
0x42,0x3C,0x00,0x24,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar246(0,0,8,16,gsChar246);
static const unsigned char gsChar247[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x08,0x00,0x08,0x00,0x00,0x00,0x7F,0x00,
0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar247(0,0,9,16,gsChar247);
static const unsigned char gsChar248[] =
{
0x00,0x00,0x40,0x3C,0x62,0x52,0x52,0x4A,
0x46,0x3C,0x02,0x00,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar248(0,0,8,16,gsChar248);
static const unsigned char gsChar249[] =
{
0x00,0x00,0x00,0x3A,0x46,0x42,0x42,0x42,
0x42,0x42,0x00,0x08,0x10,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar249(0,0,8,16,gsChar249);
static const unsigned char gsChar250[] =
{
0x00,0x00,0x00,0x3A,0x46,0x42,0x42,0x42,
0x42,0x42,0x00,0x10,0x08,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar250(0,0,8,16,gsChar250);
static const unsigned char gsChar251[] =
{
0x00,0x00,0x00,0x3A,0x46,0x42,0x42,0x42,
0x42,0x42,0x00,0x24,0x18,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar251(0,0,8,16,gsChar251);
static const unsigned char gsChar252[] =
{
0x00,0x00,0x00,0x3A,0x46,0x42,0x42,0x42,
0x42,0x42,0x00,0x24,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar252(0,0,8,16,gsChar252);
static const unsigned char gsChar253[] =
{
0x20,0x10,0x10,0x18,0x18,0x24,0x24,0x24,
0x42,0x42,0x00,0x08,0x04,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar253(0,0,8,16,gsChar253);
static const unsigned char gsChar254[] =
{
0x40,0x40,0x40,0x7C,0x42,0x42,0x42,0x42,
0x62,0x5C,0x40,0x40,0x40,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar254(0,0,8,16,gsChar254);
static const unsigned char gsChar255[] =
{
0x20,0x10,0x10,0x18,0x18,0x24,0x24,0x24,
0x42,0x42,0x00,0x24,0x00,0x00,0x00,0x00
};
static const BitmapFontChar gsBFChar255(0,0,8,16,gsChar255);
static const BitmapFontChar* const gsBFChars[] =
{
&gsBFChar0,
&gsBFChar1,
&gsBFChar2,
&gsBFChar3,
&gsBFChar4,
&gsBFChar5,
&gsBFChar6,
&gsBFChar7,
&gsBFChar8,
&gsBFChar9,
&gsBFChar10,
&gsBFChar11,
&gsBFChar12,
&gsBFChar13,
&gsBFChar14,
&gsBFChar15,
&gsBFChar16,
&gsBFChar17,
&gsBFChar18,
&gsBFChar19,
&gsBFChar20,
&gsBFChar21,
&gsBFChar22,
&gsBFChar23,
&gsBFChar24,
&gsBFChar25,
&gsBFChar26,
&gsBFChar27,
&gsBFChar28,
&gsBFChar29,
&gsBFChar30,
&gsBFChar31,
&gsBFChar32,
&gsBFChar33,
&gsBFChar34,
&gsBFChar35,
&gsBFChar36,
&gsBFChar37,
&gsBFChar38,
&gsBFChar39,
&gsBFChar40,
&gsBFChar41,
&gsBFChar42,
&gsBFChar43,
&gsBFChar44,
&gsBFChar45,
&gsBFChar46,
&gsBFChar47,
&gsBFChar48,
&gsBFChar49,
&gsBFChar50,
&gsBFChar51,
&gsBFChar52,
&gsBFChar53,
&gsBFChar54,
&gsBFChar55,
&gsBFChar56,
&gsBFChar57,
&gsBFChar58,
&gsBFChar59,
&gsBFChar60,
&gsBFChar61,
&gsBFChar62,
&gsBFChar63,
&gsBFChar64,
&gsBFChar65,
&gsBFChar66,
&gsBFChar67,
&gsBFChar68,
&gsBFChar69,
&gsBFChar70,
&gsBFChar71,
&gsBFChar72,
&gsBFChar73,
&gsBFChar74,
&gsBFChar75,
&gsBFChar76,
&gsBFChar77,
&gsBFChar78,
&gsBFChar79,
&gsBFChar80,
&gsBFChar81,
&gsBFChar82,
&gsBFChar83,
&gsBFChar84,
&gsBFChar85,
&gsBFChar86,
&gsBFChar87,
&gsBFChar88,
&gsBFChar89,
&gsBFChar90,
&gsBFChar91,
&gsBFChar92,
&gsBFChar93,
&gsBFChar94,
&gsBFChar95,
&gsBFChar96,
&gsBFChar97,
&gsBFChar98,
&gsBFChar99,
&gsBFChar100,
&gsBFChar101,
&gsBFChar102,
&gsBFChar103,
&gsBFChar104,
&gsBFChar105,
&gsBFChar106,
&gsBFChar107,
&gsBFChar108,
&gsBFChar109,
&gsBFChar110,
&gsBFChar111,
&gsBFChar112,
&gsBFChar113,
&gsBFChar114,
&gsBFChar115,
&gsBFChar116,
&gsBFChar117,
&gsBFChar118,
&gsBFChar119,
&gsBFChar120,
&gsBFChar121,
&gsBFChar122,
&gsBFChar123,
&gsBFChar124,
&gsBFChar125,
&gsBFChar126,
&gsBFChar127,
&gsBFChar128,
&gsBFChar129,
&gsBFChar130,
&gsBFChar131,
&gsBFChar132,
&gsBFChar133,
&gsBFChar134,
&gsBFChar135,
&gsBFChar136,
&gsBFChar137,
&gsBFChar138,
&gsBFChar139,
&gsBFChar140,
&gsBFChar141,
&gsBFChar142,
&gsBFChar143,
&gsBFChar144,
&gsBFChar145,
&gsBFChar146,
&gsBFChar147,
&gsBFChar148,
&gsBFChar149,
&gsBFChar150,
&gsBFChar151,
&gsBFChar152,
&gsBFChar153,
&gsBFChar154,
&gsBFChar155,
&gsBFChar156,
&gsBFChar157,
&gsBFChar158,
&gsBFChar159,
&gsBFChar160,
&gsBFChar161,
&gsBFChar162,
&gsBFChar163,
&gsBFChar164,
&gsBFChar165,
&gsBFChar166,
&gsBFChar167,
&gsBFChar168,
&gsBFChar169,
&gsBFChar170,
&gsBFChar171,
&gsBFChar172,
&gsBFChar173,
&gsBFChar174,
&gsBFChar175,
&gsBFChar176,
&gsBFChar177,
&gsBFChar178,
&gsBFChar179,
&gsBFChar180,
&gsBFChar181,
&gsBFChar182,
&gsBFChar183,
&gsBFChar184,
&gsBFChar185,
&gsBFChar186,
&gsBFChar187,
&gsBFChar188,
&gsBFChar189,
&gsBFChar190,
&gsBFChar191,
&gsBFChar192,
&gsBFChar193,
&gsBFChar194,
&gsBFChar195,
&gsBFChar196,
&gsBFChar197,
&gsBFChar198,
&gsBFChar199,
&gsBFChar200,
&gsBFChar201,
&gsBFChar202,
&gsBFChar203,
&gsBFChar204,
&gsBFChar205,
&gsBFChar206,
&gsBFChar207,
&gsBFChar208,
&gsBFChar209,
&gsBFChar210,
&gsBFChar211,
&gsBFChar212,
&gsBFChar213,
&gsBFChar214,
&gsBFChar215,
&gsBFChar216,
&gsBFChar217,
&gsBFChar218,
&gsBFChar219,
&gsBFChar220,
&gsBFChar221,
&gsBFChar222,
&gsBFChar223,
&gsBFChar224,
&gsBFChar225,
&gsBFChar226,
&gsBFChar227,
&gsBFChar228,
&gsBFChar229,
&gsBFChar230,
&gsBFChar231,
&gsBFChar232,
&gsBFChar233,
&gsBFChar234,
&gsBFChar235,
&gsBFChar236,
&gsBFChar237,
&gsBFChar238,
&gsBFChar239,
&gsBFChar240,
&gsBFChar241,
&gsBFChar242,
&gsBFChar243,
&gsBFChar244,
&gsBFChar245,
&gsBFChar246,
&gsBFChar247,
&gsBFChar248,
&gsBFChar249,
&gsBFChar250,
&gsBFChar251,
&gsBFChar252,
&gsBFChar253,
&gsBFChar254,
&gsBFChar255
};
const BitmapFont gVerdanaS16B0I0("VerdanaS16B0I0", 256, gsBFChars);
}
|