summaryrefslogtreecommitdiffstats
path: root/libmscgen/gdfontt.c
blob: e7bb3458e1633e9def3a445a83fa6fd7be85e46e (plain)
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
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613


/*
   This is a header file for gd font, generated using
   bdftogd version 0.5 by Jan Pazdziora, adelton@fi.muni.cz
   from bdf font
   -Misc-Fixed-Medium-R-Normal--8-80-75-75-C-50-ISO8859-2
   at Thu Jan  8 13:49:54 1998.
   The original bdf was holding following copyright:
   "Libor Skarvada, libor@informatics.muni.cz"
 */

/**
 * File: Tiny Font
 *
 * A very small ISO-8859-2 raster font (5x8 pixels).
 *
 * The font is supposed to be used with <gdImageChar> and <gdImageString>
 * and their variants.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "gdfontt.h"

char gdFontTinyData[] = {
	/* Char 0 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 1 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	1, 1, 1, 1, 1,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 2 */
	0, 1, 0, 1, 0,
	1, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	1, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	1, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	1, 0, 1, 0, 0,

	/* Char 3 */
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 1, 1,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,

	/* Char 4 */
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 0, 0, 0,
	1, 0, 1, 1, 1,
	1, 0, 1, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 5 */
	0, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 1,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 1,

	/* Char 6 */
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 0,

	/* Char 7 */
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	1, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 8 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 9 */
	1, 0, 0, 1, 0,
	1, 1, 0, 1, 0,
	1, 0, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 1, 1,

	/* Char 10 */
	1, 0, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 1, 1,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,

	/* Char 11 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 12 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 13 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 14 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 15 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 16 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 17 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 18 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 19 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 20 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 21 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 22 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 23 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 24 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 25 */
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,

	/* Char 26 */
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 27 */
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 28 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 29 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 1,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 30 */
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 1, 0, 0, 1,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 1,
	1, 0, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 31 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 32 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 33 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 34 */
	0, 0, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 35 */
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	1, 1, 1, 1, 1,
	0, 1, 0, 1, 0,
	1, 1, 1, 1, 1,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 36 */
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 1,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 37 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 0, 0, 1,
	1, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 1,
	1, 0, 0, 1, 1,
	0, 0, 0, 0, 0,

	/* Char 38 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 1,
	0, 0, 0, 0, 0,

	/* Char 39 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 40 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 41 */
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 42 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	1, 1, 1, 1, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 43 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 44 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 45 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 46 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 47 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 1,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 48 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 49 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 50 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 51 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 52 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 53 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 54 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 55 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 56 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 57 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 58 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 59 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,

	/* Char 60 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 61 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 62 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 63 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 64 */
	0, 0, 1, 1, 0,
	0, 1, 0, 0, 1,
	1, 0, 0, 1, 1,
	1, 0, 1, 0, 1,
	1, 0, 1, 0, 1,
	1, 0, 0, 1, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 1, 0,

	/* Char 65 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 66 */
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 67 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 68 */
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 69 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 70 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 71 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 72 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 73 */
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 74 */
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 75 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 76 */
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 77 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 78 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 1, 1, 0,
	1, 0, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 79 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 80 */
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 81 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 1, 0,

	/* Char 82 */
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 83 */
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 84 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 85 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 86 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 87 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 88 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 89 */
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 1,
	1, 0, 0, 0, 1,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 90 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 91 */
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 92 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 0, 1,
	0, 0, 0, 0, 0,

	/* Char 93 */
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 94 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 95 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,

	/* Char 96 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 97 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 98 */
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 99 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 100 */
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 101 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 102 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 103 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,

	/* Char 104 */
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 105 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 106 */
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,

	/* Char 107 */
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 108 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 109 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 1, 0, 1,
	1, 0, 1, 0, 1,
	1, 0, 0, 0, 1,
	0, 0, 0, 0, 0,

	/* Char 110 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 111 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 112 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,

	/* Char 113 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 0, 0, 1, 0,

	/* Char 114 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 115 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 0, 1, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 116 */
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 117 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 118 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 119 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 1,
	1, 0, 1, 0, 1,
	1, 0, 1, 0, 1,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 120 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 121 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,

	/* Char 122 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 123 */
	0, 0, 1, 1, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	1, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 124 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 125 */
	0, 1, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 126 */
	0, 0, 0, 0, 0,
	0, 1, 0, 1, 0,
	1, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 127 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 128 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 129 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 130 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 131 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 132 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 133 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 134 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 135 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 136 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 137 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 138 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 139 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 140 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 141 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 142 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 143 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 144 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 145 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 146 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 147 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 148 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 149 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 150 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 151 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 152 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 153 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 154 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 155 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 156 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 157 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 158 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 159 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 160 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 161 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 0, 0, 1, 1,

	/* Char 162 */
	1, 0, 0, 0, 1,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 163 */
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 0, 0, 0,
	0, 1, 1, 1, 1,
	0, 0, 0, 0, 0,

	/* Char 164 */
	0, 0, 0, 0, 0,
	1, 0, 0, 0, 1,
	0, 1, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 1,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 165 */
	0, 0, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 166 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 167 */
	0, 0, 0, 0, 0,
	0, 0, 1, 1, 0,
	0, 1, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,

	/* Char 168 */
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 169 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 170 */
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,

	/* Char 171 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 172 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 173 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 174 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 175 */
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 176 */
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 177 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 1, 1,

	/* Char 178 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 1, 1,

	/* Char 179 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 180 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 181 */
	0, 0, 0, 1, 1,
	1, 1, 0, 0, 1,
	0, 1, 0, 1, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 182 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 0, 1, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 183 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 184 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,

	/* Char 185 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 0, 1, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 186 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 0, 1, 1, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,

	/* Char 187 */
	0, 0, 0, 1, 1,
	0, 1, 0, 0, 1,
	0, 1, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 188 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 189 */
	0, 1, 0, 0, 1,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 190 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 191 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 192 */
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 193 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 194 */
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 195 */
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 196 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 197 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 198 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 199 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	1, 1, 0, 0, 0,

	/* Char 200 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 201 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 202 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 1, 1,

	/* Char 203 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 204 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 205 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 206 */
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 207 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 208 */
	0, 0, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 1, 0,
	1, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	0, 1, 0, 1, 0,
	1, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 209 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 210 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 0, 1, 0,
	1, 1, 1, 1, 0,
	1, 0, 1, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 211 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 212 */
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 213 */
	0, 1, 0, 0, 1,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 214 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 215 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 216 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 217 */
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 218 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 219 */
	0, 1, 0, 0, 1,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 220 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 221 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	1, 0, 0, 0, 1,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 222 */
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 1,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 0, 0, 0,

	/* Char 223 */
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 1, 0, 1, 0,
	1, 0, 1, 0, 0,
	1, 0, 0, 0, 0,

	/* Char 224 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 225 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 226 */
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 227 */
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 228 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 229 */
	0, 0, 0, 0, 1,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 230 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 231 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 1, 1, 0, 0,

	/* Char 232 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 233 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 234 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 1,

	/* Char 235 */
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 236 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 1, 1, 0,
	1, 1, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 237 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 238 */
	0, 0, 1, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 239 */
	0, 0, 0, 1, 1,
	0, 0, 1, 0, 1,
	0, 0, 1, 0, 1,
	0, 1, 1, 0, 0,
	1, 0, 1, 0, 0,
	1, 0, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 240 */
	0, 0, 0, 1, 0,
	0, 0, 1, 1, 1,
	0, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 241 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 242 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 243 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 244 */
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 245 */
	0, 1, 0, 0, 1,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 246 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 247 */
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 1, 1, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 248 */
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 1, 0, 0,
	1, 1, 0, 1, 0,
	1, 0, 0, 0, 0,
	1, 0, 0, 0, 0,
	0, 0, 0, 0, 0,

	/* Char 249 */
	0, 1, 1, 0, 0,
	0, 1, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 250 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 251 */
	0, 1, 0, 0, 1,
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 252 */
	1, 0, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	1, 0, 1, 1, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,

	/* Char 253 */
	0, 0, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	1, 0, 0, 1, 0,
	1, 0, 0, 1, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
	0, 1, 1, 0, 0,

	/* Char 254 */
	0, 0, 0, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 0, 0,
	1, 1, 1, 0, 0,
	0, 1, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 1, 0, 0,
	0, 1, 1, 0, 0,

	/* Char 255 */
	0, 0, 0, 0, 0,
	0, 0, 1, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,
	0, 0, 0, 0, 0,


};

gdFont gdFontTinyRep = {
	256,
	0,
	5,
	8,
	gdFontTinyData
};

BGD_EXPORT_DATA_PROT gdFontPtr gdFontTiny = &gdFontTinyRep;

/**
 * Function: gdFontGetTiny
 *
 * Returns the built-in tiny font.
 */
BGD_DECLARE(gdFontPtr)
gdFontGetTiny (void)
{
	return gdFontTiny;
}

/* This file has not been truncated. */
c.test: * tests/fileName.test: * tests/io.test: fixed some test failures when tests are run from a directory containing spaces. * tests/fileSystem.test: * generic/tclTest.c: added regression test for the modification date setting of cross-platform file copies. 2003-02-03 Kevin Kenny <kennykb@users.sourceforge.net> * generic/tclBasic.c: Changed [trace add command] so that 'rename' callbacks get fully qualified names of the command. [Bug 651271]. ***POTENTIAL INCOMPATIBILITY*** * tests/trace.test: Modified the test cases for [trace add command] to expect fully qualified names on the 'rename' callbacks. Added a case for renaming a proc within a namespace. * doc/trace.n: Added language about use of fully qualified names in trace callbacks. 2003-02-01 Kevin Kenny <kennykb@users.sourceforge.net> * generic/tclCompCmds.c: Removed an unused variable that caused compiler warnings on SGI. [Bug 664379] * generic/tclLoad.c: Changed the code so that if Tcl_StaticPackage is called to report the same package as being loaded in two interps, it shows up in [info loaded {}] in both of them (previously, it didn't appear in the static package list in the second. * tests/load.test Added regression test for the above bug. [Bug 670042] * generic/tclClock.c: Fixed a bug that incorrectly allowed [clock clicks {}] and [clock clicks -] to be accepted as if they were [clock clicks -milliseconds]. * tests/clock.test: Added regression tests for the above bug. [Bug 675356] * tests/unixNotfy.test: Added cleanup of working files [Bug 675609] * doc/Tcl.n: Added headings to the eleven paragraphs, to improve formatting in the tools that attempt to extract tables of contents from the manual pages. [Bug 627455] * generic/tclClock.c: Expanded mutex protection around the setting of env(TZ) and the thread-unsafe call to tzset(). [Bug 656660] 2003-01-31 Don Porter <dgp@users.sourceforge.net> * tests/tcltest.test: Cleaned up management of file/directory creation/deletion to improve "-debug 1" output. [Bug 675614] The utility [slave] command failed to properly [list]-quote a constructed [open] command, causing failure when the pathname contained whitespace. [Bug 678415] * tests/main.test: Stopped main.test from deleting existing file. Test suite should not delete files that already exist. [Bug 675660] 2003-01-28 Don Porter <dgp@users.sourceforge.net> * tests/main.test: Constrain tests that do not work on Windows. [Bug 674387] 2003-01-28 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclIOUtil.c: fix to setting modification date in TclCrossFilesystemCopy. Also added 'panic' in Tcl_FSGetFileSystemForPath under illegal calling circumstances which lead to hard-to-track-down bugs. * generic/tclTest.c: added test suite code to allow exercising a vfs-crash-on-exit bug in Tcl's finalization caused by the encodings being cleaned up before unloading occurs. * tests/fileSystem.test: added new 'knownBug' test 7.1 to demonstrate the crash on exit. 2003-01-28 Mo DeJong <mdejong@users.sourceforge.net> * generic/tcl.h: Add TCL_PREFIX_IDENT and TCL_DEBUG_IDENT, used only by TclpCreateProcess. * unix/Makefile.in: Define TCL_DBGX. * win/Makefile.in: Define TCL_DBGX. * win/tclWinPipe.c (TclpCreateProcess): Check that the Tcl pipe dll actually exists in the Tcl bin directory and panic if it is not found. Incorporate TCL_DBGX into the Tcl pipe dll name. This fixes a really mysterious error that would show up when exec'ing a 16 bit application under Win95 or Win98 when Tcl was compiled with symbols. The error seemed to indicate that the executable could not be found, but it was actually the Tcl pipe dll that could not be found. 2003-01-26 Mo DeJong <mdejong@users.sourceforge.net> * win/README: Update msys+mingw URL to release 6. This version bundles gcc 3. 2003-01-26 Mo DeJong <mdejong@users.sourceforge.net> * win/configure: Regen. * win/configure.in: Add test that checks to see if the compiler can cast to a union type. * win/tclWinTime.c: Squelch compiler warning about union initializer by casting to union type when compiling with gcc. 2003-01-25 Mo DeJong <mdejong@users.sourceforge.net> * generic/tclIO.c (Tcl_CutChannel, Tcl_SpliceChannel): Invoke TclpCutFileChannel and TclpSpliceFileChannel. * generic/tclInt.h: Declare TclpCutFileChannel and TclpSpliceFileChannel. * unix/tclUnixChan.c (FileCloseProc, TclpOpenFileChannel, (Tcl_MakeFileChannel, TclpCutFileChannel, (TclpSpliceFileChannel): Implement thread load data cut and splice for file channels. This avoids an invalid memory ref when compiled with -DDEPRECATED. * win/tclWinChan.c (FileCloseProc, TclpCutFileChannel, (TclpSpliceFileChannel): Implement thread load data cut and splice for file channels. This avoids an invalid memory ref that was showing up in the thread extension. 2003-01-25 Mo DeJong <mdejong@users.sourceforge.net> * win/tclWin32Dll.c (TclpCheckStackSpace, squelch_warnings): * win/tclWinChan.c (Tcl_MakeFileChannel, squelch_warnings): * win/tclWinFCmd.c (DoRenameFile, DoCopyFile, squelch_warnings): Re-implement inline ASM SEH handlers for gcc. The esp and ebp registers are now saved on the stack instead of in global variables so that the code is thread safe. Add additional checks when TCL_MEM_DEBUG is defined to be sure the values were recovered from the stack properly. Remove squelch_warnings functions and add a dummy call in the handler methods to squelch compiler warnings. 2003-01-25 Mo DeJong <mdejong@users.sourceforge.net> * win/configure: * win/configure.in: Define HAVE_ALLOCA_GCC_INLINE when we detect that no alloca function is found in malloc.h and we are compiling with GCC. Remove HAVE_NO_ALLOC_DECL define. * win/tclWin32Dll.c (TclpCheckStackSpace): Don't define alloca as a cdecl function. Doing this caused a tricky runtime bug because the _alloca function expects the size argument to be passed in a register and not on the stack. To fix this problem, we use inline ASM when compiling with gcc to invoke _alloca with the size argument loaded into a register. 2003-01-24 Jeff Hobbs <jeffh@ActiveState.com> * win/tclWinDde.c (Dde_Init): clarified use of tsdPtr. (DdeServerProc): better refcount handling of returnPackagePtr. * generic/tclEvent.c (Tcl_Finalize): revert finalize change on 2002-12-04 to correct the issue with extensions that have TSD needing to finalize that before they are unloaded. This issue needs further clarification. * tests/unixFCmd.test: only do groups check on unix 2003-01-24 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclStringObj.c: proper fixes for Tcl_SetObjLength and Tcl_AttemptSetObjectLength dealing with string objects with both pure-unicode and normal internal representations. Previous fix didn't handle all cases correctly. * generic/tclIO.c: Add 'Tcl_GetString()' to ensure the object has a valid 'objPtr->bytes' field before manipulating it directly. This fixes [Bug 635200] and [Bug 671138], but may reduce performance of Unicode string handling in some cases. A further patch will be applied to address this, once the code is known to be correct. 2003-01-24 Mo DeJong <mdejong@users.sourceforge.net> * win/configure: Regen. * win/configure.in: Add test to see if alloca is undefined in malloc.h. * win/tclWin32Dll.c (TclpCheckStackSpace): Rework the SEH exception handler logic to avoid using the stack since alloca will modify the stack. This was causing a nasty bug that would set the exception handler to 0 because it tried to pop the previous exception handler off the top of the stack. 2003-01-23 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/lset.n: Fixed fault in return values from lset in documentation examples [Bug 658463] and tidied up a bit at the same time. 2003-01-21 Joe English <jenglish@users.sourceforge.net> * doc/namespace.n (namespace inscope): Clarified documentation [Patch 670110] 2003-01-21 Mo DeJong <mdejong@users.sourceforge.net> * win/configure: Regen. * win/tcl.m4 (SC_CONFIG_CFLAGS): Set SHLIB_SUFFIX so that TCL_SHLIB_SUFFIX will be set to a useful value in the generated tclConfig.sh. Set SHLIB_LD_LIBS to "" or '${LIBS}' based on the --enable-shared flag. This matches the UNIX implementation. 2003-01-18 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclCkalloc.c: change %ud to %u as appropriate. 2003-01-17 Mo DeJong <mdejong@users.sourceforge.net> * win/tclWinDde.c (DdeServerProc): Deallocate the Tcl_Obj returned by ExecuteRemoteObject if it was not saved in a connection object. 2003-01-17 Mo DeJong <mdejong@users.sourceforge.net> * generic/tcl.h: Revert earlier change that defined TCL_WIDE_INT_TYPE as long long and TCL_LL_MODIFIER as L when compiling with mingw. This change ended up causing some test case failures when compiling with mingw. * generic/tclObj.c (UpdateStringOfWideInt): Describe the warning generated by mingw and why it needs to be ignored so that someone is not tempted to "fix" this problem again in the future. 2003-01-16 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclStringObj.c: Tcl_SetObjLength fix for when the object has a unicode string rep. Fixes [Bug 635200] * tests/stringObj.test: removed 'knownBug' constraint from test 14.1 now that this bug is fixed. * generic/tclInt.h: * generic/tclBasic.c: * generic/tclCmdMZ.z: * tests/trace.test: execution and command tracing bug fixes and cleanup. In particular fixed [Bugs 655645, 615043, 571385] - fixed some subtle cleanup problems with tracing. This required replacing Tcl_Preserve/Tcl_Release with a more robust refCount approach. Solves at least one known crash caused by memory corruption. - fixed some confusion in the code between new style traces (Tcl 8.4) and the very limited 'Tcl_CreateTrace' which existed before. - made behaviour consistent with documentation (several tests even contradicted the documentation before). - fixed some minor error message details - added a number of new tests 2003-01-16 Jeff Hobbs <jeffh@ActiveState.com> * win/tclWinSerial.c (SerialOutputProc): add casts for bytesWritten to allow strict compilation (no warnings). * tests/winDde.test: * win/tclWinDde.c (Tcl_DdeObjCmd): Prevent crash when empty service name is passed to 'dde eval' and goto errorNoResult in request and poke error cases to free up any allocated data. 2003-01-16 Mo DeJong <mdejong@users.sourceforge.net> * win/tclWin32Dll.c (squelch_warnings): Squelch compiler warnings from SEH ASM code. * win/tclWinChan.c (squelch_warnings): Squelch compiler warnings from SEH ASM code. * win/tclWinDde.c: Add casts to avoid compiler warnings. Pass pointer to DWORD instead of int to avoid compiler warnings. * win/tclWinFCmd.c (squelch_warnings): Add casts and fixup decls to avoid compiler warnings. Squelch compiler warnings from SEH ASM code. * win/tclWinFile.c: Add casts and fixup decls to avoid compiler warnings. Remove unused variable. * win/tclWinNotify.c: Declare as DWORD instead of int to avoid compiler warning. * win/tclWinReg.c: Add casts to avoid compiler warning. Fix assignment in if expression bug. * win/tclWinSerial.c: Add casts to avoid compiler warnings. Remove unused variable. * win/tclWinSock.c: Add casts and fixup decls to avoid compiler warnings. 2003-01-14 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclClock.c (FormatClock): corrected typo that incorrectly conditionally defined savedTZEnv and savedTimeZone. 2003-01-13 Mo DeJong <mdejong@users.sourceforge.net> Fix mingw build problems and compiler warnings. * generic/tcl.h: Add if defined(__MINGW32__) check to code that sets the TCL_WIDE_INT_TYPE and TCL_LL_MODIFIER. * generic/tclClock.c (FormatClock): Don't define savedTimeZone and savedTZEnv if we are not going to use them. * generic/tclEnv.c: Add cast to avoid warning. * win/tclWinChan.c: Use DWORD instead of int to avoid compiler warning * win/tclWinThrd.c: Only define allocLock, allocLockPtr, and dataKey when TCL_THREADS is defined. This avoid a compiler warning about unused variables. 2003-01-12 Mo DeJong <mdejong@users.sourceforge.net> * win/README: Update msys + mingw URL, the new release includes the released 1.0.8 version of msys which includes a number of bug fixes. 2003-01-12 Mo DeJong <mdejong@users.sourceforge.net> * win/configure: Regen. * win/tcl.m4 (SC_CONFIG_CFLAGS): Pull in addition of shell32.lib to LIBS_GUI that was added to the Tk tcl.m4 but never made it back into the Tcl version. 2003-01-12 Mo DeJong <mdejong@users.sourceforge.net> * generic/tcl.h: Skip Tcl's define of CHAR, SHORT, and LONG when HAVE_WINNT_IGNORE_VOID is defined. This avoids a bunch of compiler warnings when building with Cygwin or Mingw. * win/configure: Regen. * win/configure.in: Define HAVE_WINNT_IGNORE_VOID when we detect a winnt.h that still defines CHAR, SHORT, and LONG when VOID has already been defined. * win/tcl.m4 (SC_LOAD_TCLCONFIG): Subst the TCL_DEFS loaded from tclConfig.sh so that Tcl defines can make it into the Tk Makefile. 2003-01-12 Mo DeJong <mdejong@users.sourceforge.net> * win/configure: Regen. * win/configure.in: Check for typedefs like LPFN_ACCEPT in winsock2.h and define HAVE_NO_LPFN_DECLS if not found. * win/tclWinSock.c: Define LPFN_* typedefs if HAVE_NO_LPFN_DECLS is defined. This fixes the build under Mingw and Cygwin, it was broken by the changes made on 2002-11-26. 2003-01-10 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclIOUtil.c: * win/tclWinInt.h: * win/tclWinInit.c: fix to new WinTcl crash on exit with vfs, introduced on 2002-12-06. Encodings must be cleaned up after the filesystem. * win/makefile.vc: fix to minor VC++ 5.2 syntax problem 2003-01-09 Don Porter <dgp@users.sourceforge.net> * generic/tclCompCmds.c (TclCompilerReturnCmd): Corrected off-by-one problem with recent commit. [Bug 633204] 2003-01-09 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclFileName.c: remove unused variable 'macSpecialCase' [Bug 664749] * generic/tclIOUtil.c: * generic/tclInt.h: * unix/tclUnixFile.c: * mac/tclMacFile.c: * win/tclWinFile.c: * win/tclWinInt.h: * win/tclWin32Dll.c: * tests/cmdAH.test: fix to non-ascii chars in paths when setting mtime and atime through 'file (a|m)time $path $time'. [Bug 634151] 2003-01-08 Don Porter <dgp@users.sourceforge.net> * generic/tclExecute.c (TclExprFloatError): Use the IS_NAN macro for greater clarity of code. 2003-01-07 Don Porter <dgp@users.sourceforge.net> * generic/tclCompCmds.c (TclCompileReturnCmd): * tests/compile.test: Corrects failure of bytecompiled [catch {return}] to have result TCL_RETURN (not TCL_OK) [Bug 633204]. This patch is a workaround for 8.4.X. A new opcode INST_RETURN is a better long term solution for 8.5 and later. 2003-01-04 David Gravereaux <davygrvy@pobox.com> * win/makefile.vc: * win/rules.vc: Fixed INSTALLDIR macro problem that blanked itself by accident causing the install target to put the tree at the root of the drive built on. Whoops.. Renamed the 'linkexten' option to be 'staticpkg'. Added 'thrdalloc' to allow the switching _on_ of the thread allocator. Under testing, I found it not to be benificial under windows for the purpose of the application I was using it for. It was more important for this app that resources for tcl threads be returned to the system rather than saved/moved to the global recycler. Be extra clean or extra fast for the default threaded build? Let's move to clean and allow it to be switched on for users who find it benificial for their use of threads. 2002-12-18 David Gravereaux <davygrvy@pobox.com> * win/makefile.vc: some uses of xcopy swapped to the @$(CPY) macro. Reported by Joe Mistachkin <joe@mistachkin.com>. 2002-12-17 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclNotify.c (TclFinalizeNotifier, Tcl_SetServiceMode): (Tcl_ThreadAlert): Check that the stub functions are non-NULL before calling them. They could be set to NULL by Tcl_SetNotifier. 2002-12-16 David Gravereaux <davygrvy@pobox.com> * generic/tclPipe.c (TclCleanupChildren): * tests/winPipe.test: * win/tclWinPipe.c (Tcl_WaitPid): * win/tclWinTest.c: Gave Tcl_WaitPid the ability to return a Win32 exception code translated into a posix style SIG*. This allows [close] to report "CHILDKILLED" without the meaning getting lost in a truncated exit code. In TclCleanupChildren(), TclpGetPid() had to get moved to before Tcl_WaitPid() as the the handle is removed from the list taking away the ability to get the process id after the wait is done. This shouldn't effect the unix implimentaion unless waitpid is called with a pid of zero, meaning "any". I don't think it is.. 2002-12-13 Don Porter <dgp@users.sourceforge.net> * unix/configure.in: Updated configure of CVS snapshots to reflect * win/configure.in: the 8.4.1.1 patchlevel. * unix/configure: autoconf * win/configure autoconf 2002-12-11 Don Porter <dgp@users.sourceforge.net> * generic/tclProc.c (ProcessProcResultCode): Fix failure to propagate negative return codes up the call stack. [Bug 647307] * tests/proc.test (proc-6.1): Test for Bug 647307 * generic/tclParseExpr.c (TclParseInteger): Return 1 for the string "0x" (recognize leading "0" as an integer). [Bug 648441]. * tests/parseExpr.test (parseExpr-19.1): Test for Bug 648441. 2002-12-09 Jeff Hobbs <jeffh@ActiveState.com> * win/tclWinThrd.c (TclpMasterUnlock): * generic/tclThread.c (TclFinalizeThreadData): TclpMasterUnlock must exist and be called unconditional of TCL_THREADS. [Bug 651139] 2002-12-08 David Gravereaux <davygrvy@pobox.com> * win/tclWinSock.c (SocketThreadExitHandler, InitSockets): Check that the tsdPtr is valid before dereferencing as we call it from the exit handler, too [Bug 650353]. Another WSAStartup() loaded version comparison byte swap issue fixed. Although 0x0101 byte swapped is still 0x0101, properly claiming which is major/minor is more correct. 2002-12-06 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclStubInit.c: regen * generic/tclIntPlatDecls.h: regen * generic/tclInt.decls: added TclWinResetInterface * win/tclWin32Dll.c (TclWinResetInterfaces): * win/tclWinInit.c (TclpSetInitialEncodings, WinEncodingsCleanup): add exit handler that resets the encoding information to a state where we can reuse Tcl. Following these changes, it is possible to reuse Tcl (following Tcl_FindExecutable or Tcl_CreateInterp) following a Tcl_Finalize. * generic/tclIOUtil.c (TclFinalizeFilesystem): reset statics to their original values on finalize to allow reuse of the library. 2002-12-04 David Gravereaux <davygrvy@pobox.com> * win/tclWinPipe.c: reverted back to -r1.27 due to numerous test failures that need to be resolved first. The idea was good, but the details aren't. 2002-12-04 David Gravereaux <davygrvy@pobox.com> * win/tclWinPipe.c (Tcl_WaitPid): When a process exits with an exception, pass this notice on to the caller with a SIG* code rather than truncating the exit code and missing the meaning. This allows TclCleanupChildren() to report "CHILDKILLED". This has a different behavior than unix in that closing the read pipe to a process sends the SIGPIPE signal which is returned as a SIGPIPE exit status. On windows, we send the process a CTRL_BREAK_EVENT and get back a CONTROL_C_EXIT which is documented to mean a SIGINT which seems wrong as a system, but is the correct exit status. 2002-12-04 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclIOUtil.c: fix to redirected 'load' in virtual filesystem for some Unix systems. * generic/tclEvent.c: the filesystem must be cleaned up before the encoding subsystem because it needs access to encodings. Fixes crash on exit observed in embedded applications. * generic/tclTestObj.c: patch omitted from previous change of 2002-11-13 2002-12-03 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclStubLib.c (Tcl_InitStubs): prevent the cached check of tclStubsPtr to allow for repeated load/unload of the Tcl dll by hosting apps. [Bug 615304] 2002-12-03 David Gravereaux <davygrvy@pobox.com> * win/tclAppInit.c (sigHandler): Protect from trying to close a NULL handle. * win/tclWinPipe.c (PipeClose2Proc, TclpCreateProcess): Send a real Win32 signal (CTRL_C_EVENT) when the read channel is brought down to alert the child to close on its side. Start the process with CREATE_NEW_PROCESS_GROUP to allow the ability to send these signals. The following test case now brings down the child without the use of an external [kill] command. % set p [open "|[info name]" w+] file8d5380 % pid $p 2876 % close $p <- now doesn't block in Tcl_WaitPid() % * win/tclWinPipe.c (PipeClose2Proc): Changed CTRL_C_EVENT to CTRL_BREAK_EVENT as it can't be ignored by the child and proved to work on [open "|netstat 1" w+] where CTRL_C_EVENT didn't. 2002-11-27 David Gravereaux <davygrvy@pobox.com> * win/tclWinPort.h: Don't turn off winsock prototypes! TclX didn't like it. Even though the core doesn't use the prototypes, do offer them. * win/tclWinSock.c: Removed shutdown() from the function table as it wasn't referenced anywhere and cleaned-up some casting that that wasn't needed. * win/tclWinSock.c: WSAStartup() loaded version comparison error which resulted in 2.0 looking less than 1.1. * win/tclWinChan.c (Tcl_MakeFileChannel): return of DuplicateHandle() incorrectly used [Bug 618852]. 2002-11-26 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclEncoding.c (TclFinalizeEncodingSubsystem): properly cleanup all encodings by using Tcl_FirstHashEntry in the while loop. * unix/Makefile.in (valgrind): add simple valgrind target * tests/exec.test: unset path var to allow singleproc testing * generic/tclInterp.c (AliasCreate): preserve/release interps to prevent possible FMR error in bad alias cases. 2002-11-26 David Gravereaux <davygrvy@pobox.com> * win/tclWinPort.h: * win/tclWinSock.c: This patch does two things: 1) Cleans-up the winsock typedefs by using the typedefs provided by winsock2.h. This has no effect on how winsock is initialized; just makes the source code easier to read. [Patch 561305, 561301] 2) Revamps how the socket message handler thread is brought up and down to allow for cleaner exits without the use of TerminateThread(). TerminateThread is evil. No attempt has been made to resolve [Bug 593810] which may need a new channel driver version for adding a registering function within the transfered thread to init the handler thread. IOW, initialization of the TSD structure is getting bypassed through the thread extension's [thread::transfer] command. 2002-11-26 David Gravereaux <davygrvy@pobox.com> * win/tclWinConsole.c: * win/tclWinPipe.c: * win/tclWinSerial.c: * win/tclWinSock.c: * win/tclWinThrd.c: * win/tclWinTime.c: General cleanup of all worker threads used by the channel drivers. Eliminates the normal case where the worker thread is terminated ('cept the winsock one). Instead, use kernel events to signal a clean exit. Only when the worker thread is blocked on an I/O call is the thread terminated. Essentially, this makes all other channel worker threads behave like the PipeReaderThread() function for it's cleaner exit behavior. This appears to fix [Bug 597924] but needs 3rd party confirmation to close the issue. 2002-11-26 Mo DeJong <mdejong@users.sourceforge.net> * win/README: Update msys build env URL. This release #4 build both tcl and tk without problems. 2002-11-22 Jeff Hobbs <jeffh@ActiveState.com> * library/init.tcl: code cleanup to reduce use of * library/opt/optparse.tcl: string compare * tests/interp.test: interp-14.4 * generic/tclInterp.c (TclPreventAliasLoop): prevent seg fault when creating an alias command over the interp name. [Bug 641195] 2002-11-18 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclUtil.c (SetEndOffsetFromAny): handle integer offset after the "end-" prefix. * generic/get.test: * generic/string.test: * generic/tclObj.c (SetIntFromAny, SetWideIntFromAny): * generic/tclGet.c (TclGetLong, Tcl_GetInt): simplify sign handling before calling strtoul(l). [Bug 634856] 2002-11-18 David Gravereaux <davygrvy@pobox.com> * win/tclWinThrd.c (Tcl_CreateThread/TclpThreadExit): Fixed improper compiler macros that missed the VC++ compiler. This resulted in VC++ builds using CreateThread()/ExitThread() in place of the proper _beginthreadex()/_endthreadex(). This was a large error and am surprised I missed seeing it earlier. 2002-11-13 Jeff Hobbs <jeffh@ActiveState.com> * generic/regexpComp.test: added tests 22.* * generic/tclCompCmds.c (TclCompileRegexpCmd): add left and right anchoring (^ and $) recognition and check starting or ending .* to extend the number of REs that can be compiled to string match or string equal. 2002-11-13 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclCmdMZ.c: * tests/trace.test: applied patch from Hemang Levana to fix [Bug 615043] in execution traces with 'return -code error'. * generic/tclTestObj.c: * tests/stringObj.test: added 'knownBug' test for [Bug 635200] * generic/tclStringObj.c: corrected typos in comments * generic/tclFileName.c: * tests/fileName.test: applied patch for bug reported against tclvfs concerning handling of Windows serial ports like 'com1', 'lpt3' by the virtual filesystem code. * doc/RegExp.3: clarification of the 'extendMatch' return values. 2002-11-11 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclUtil.c (Tcl_Backslash): use TclUtfToUniChar. (Tcl_StringCaseMatch): use TclUtfToUniChar and add further optimizations for the one-byte/char case. * generic/tclUtf.c: make use of TclUtfToUniChar macro throughout the functions, and add extra optimization to Tcl_NumUtfChars for one-byte/char case. * generic/tclVar.c (DisposeTraceResult, CallVarTraces): add proper static declarations. * generic/tclStringObj.c (Tcl_GetCharLength): optimize for the ascii char case. (Tcl_GetUniChar): remove unnecessary use of Tcl_UtfToUniChar. (FillUnicodeRep): Use TclUtfToUniChar. * generic/tclHash.c (HashStringKey): move string++ lower to save an instruction. * generic/tclExecute.c (TclExecuteByteCode): improve INST_STR_CMP to use memcmp in the one-byte/char case, also use direct index for INST_STR_INDEX in that case. * generic/tclEncoding.c (UtfToUtfProc, UtfToUnicodeProc): (TableFromUtfProc, EscapeFromUtfProc): Use TclUtfToUniChar. (UnicodeToUtfProc, TableToUtfProc): add 1-byte char optimizations for Tcl_UniCharToUtf call. These improve encoded channel conversion speeds by up to 20%. * tests/split.test: added 1-char string split tests * generic/tclCmdMZ.c (Tcl_SplitObjCmd): Use TclUtfToUniChar. Also added a special case for single-ascii-char splits. (Tcl_StringObjCmd): Use TclUtfToUniChar. For STR_RANGE, support getting ranges of ByteArrays (reverts change from 2000-05-26). (TraceExecutionProc) add proper static declaration. * generic/tclInt.h: add macro version of Tcl_UtfToUniChar (TclUtfToUniChar) that does the one-byte utf-char check without calling Tcl_UtfToUniChar, for use by the core. This brings notable speedups for primarily ascii string handling. * generic/tcl.h (TCL_PATCH_LEVEL): bump to 8.4.1.1 for patchlevel only. This interim number will only be reflected by [info patchlevel] 2002-11-11 Kevin Kenny <kennykb@acm.org> * doc/Tcl.n: Corrected indentation of the new language. Oops. 2002-11-10 Kevin Kenny <kennykb@acm.org> * doc/Tcl.n: Added language to the Endekalogue to make it clear that substitutions always take place from left to right. [Bug 635644] 2002-11-06 Mo DeJong <mdejong@users.sourceforge.net> * changes: Note TclInExit TclInThreadExit changes. * generic/tclEvent.c (TclInExit, TclInThreadExit): Split out functionality of TclInExit to make it clear which one should be called in each situation. * generic/tclInt.decls: Declare TclInThreadExit. * generic/tclIntDecls.h: Regen. * generic/tclStubInit.c: Regen. * mac/tclMacChan.c (StdIOClose): * unix/tclUnixChan.c (FileCloseProc): * win/tclWinChan.c (FileCloseProc): * win/tclWinConsole.c (ConsoleCloseProc): * win/tclWinPipe.c (TclpCloseFile): * win/tclWinSerial.c (SerialCloseProc): Invoke the new TclInThreadExit method instead of TclInExit. 2002-11-06 Mo DeJong <mdejong@users.sourceforge.net> * unix/configure: Regen. * unix/tcl.m4 (SC_CONFIG_CFLAGS): Generate a fatal configure error if no ar program can be found on the path. [Bug 582039] * win/configure: Regen. * win/configure.in: Check that AR, RANLIB, and RC are found on the path when building with gcc. 2002-11-03 David Gravereaux <davygrvy@pobox.com> * win/tclAppInit.c: Calls Registry_Init() and Dde_Init() when STATIC_BUILD and TCL_USE_STATIC_PACKAGES macros are set. * win/makefile.vc: * win/rules.vc: linkexten option now sets the TCL_USE_STATIC_PACKAGES macro which also adds the registry and dde object files to the link of the shell. [Patch 479697] Also factored some additional macros that will be helpful for extension authors. Version grepping of tcl.h will need to be added to complete this. * win/buildall.vc.bat: Added more descriptive commentary. 2002-11-01 David Gravereaux <davygrvy@pobox.com> * win/tclWinReg.c: Changed the Tcl_PkgProvide() line to declare the registry extension at version 1.1 from 1.0. 2002-10-31 Andreas Kupries <andreask@activestate.com> * library/word.tcl: Changed $tcl_platform to $::tcl_platform to avoid possible scope trouble. 2002-10-29 Vince Darley <vincentdarley@users.sourceforge.net> * win/tclWinInt.h: * win/tclWin32Dll.c: added comments about certain NULL function pointers which will be filled in when Tcl_FindExecutable is called, so that users don't report invalid bugs on this topic. (No code changes at all). 2002-10-29 Daniel Steffen <das@users.sourceforge.net> * unix/tclLoadDyld.c (TclpFindSymbol): pass all dyld error messages upstream [Bug 627546]. 2002-10-28 Andreas Kupries <andreask@activestate.com> * library/dde/pkgIndex.tcl: * library/reg/pkgIndex.tcl: Changed the hardwired debug suffix (d) to the correct suffix (g). 2002-10-28 Don Porter <dgp@users.sourceforge.net> * library/auto.tcl: Converted the Mac-specific [package unknown] * library/init.tcl: behavior to use a chaining mechanism to extend * library/package.tcl: the default [tclPkgUnknown]. [Bug 627660] * library/tclIndex: [Patch 624509] (steffen) 2002-10-26 David Gravereaux <davygrvy@pobox.com> * win/makefile.vc: xcopy on NT 4.0 doesn't support the /Y switch (overwrite). Added logic to handle this. [Bug 618019] 2002-10-23 Donal K. Fellows <fellowsd@cs.man.ac.uk> * generic/tclInt.h: Removed definitions of obsolete HistoryEvent and HistoryRev structures (the history mechanism has been written in Tcl for some time now). 2002-10-22 Jeff Hobbs <jeffh@ActiveState.com> *** 8.4.1 TAGGED FOR RELEASE *** * changes: updated for 8.4.1 release * win/Makefile.in: removed @MEM_DEBUG_FLAGS@ subst. * win/configure: regen * win/configure.in: removed SC_ENABLE_MEMDEBUG call * win/tcl.m4: replaced SC_ENABLE_MEMDEBUG with a more intelligent SC_ENABLE_SYMBOLS that takes yes|no|mem|compile|all as options now. 2002-10-22 Daniel Steffen <das@users.sourceforge.net> * library/auto.tcl (tcl_findLibrary): * library/package.tcl (tclPkgUnknown): on macosx, search inside the Resources/Scripts subdirectory of any potential package directory * macosx/Tcl.pbproj/project.pbxproj: add standard Frameworks dirs to TCL_PACKAGE_PATH make argument. * unix/tclUnixInit.c (TclpSetVariables): on macosx, add embedded framework dirs to tcl_pkgPath: @executable_path/../Frameworks and @executable_path/../PrivateFrameworks (if they exist), as well as the dirs in DYLD_FRAMEWORK_PATH (if set). [Patch 624509] use standard MAXPATHLEN instead of literal 1024 2002-10-22 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/StringObj.3, doc/Object.3: Documented that Tcl_Obj's standard string form is a modified UTF-8; apparently, this was not mentioned anywhere in the main docs, and lead to [Bug 624919]. 2002-10-21 Daniel Steffen <das@users.sourceforge.net> * macosx/Tcl.pbproj/project.pbxproj: bumped version to 8.4.1 * generic/tcl.h: Added reminder comment to edit macosx/Tcl.pbproj/project.pbxproj when version number changes. 2002-10-18 Jeff Hobbs <jeffh@ActiveState.com> * library/reg/pkgIndex.tcl: * win/configure: * win/configure.in: * win/Makefile.in: * win/makefile.vc: * win/makefile.bc: Updated to reg1.1 * doc/registry.n: Added support for broadcasting changes to the * tests/registry.test: registry Environment. Noted proper code in ths * win/tclWinReg.c: docs. [Patch 625453] * unix/Makefile.in (dist): add any mac/tcl*.sea.hqx files 2002-10-17 Don Porter <dgp@users.sourceforge.net> * generic/tclVar.c: Fixed code that check for proper # of args to * tests/var.test: [array names]. Added test. [Bug 624755] 2002-10-16 Jeff Hobbs <jeffh@ActiveState.com> * win/configure: add workaround for cygwin windres * win/tcl.m4 (SC_CONFIG_CFLAGS): problem. [Patch 624010] (howell) 2002-10-15 Jeff Hobbs <jeffh@ActiveState.com> * README: added archives.tcl.tk note * unix/configure: * unix/tcl.m4: Correct AIX-5 ppc build flags. Correct HP 11 64-bit gcc building. [Patch 601051] (martin) 2002-10-15 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclCmdMZ.c: * tests/trace.test: applied patch from Hemang Levana to fix [Bug 615043] in execution traces with idle tasks firing. 2002-10-14 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclEnv.c (Tcl_PutEnv): correct possible mem leak. [Patch 623269] (brouwers) 2002-10-11 Donal K. Fellows <fellowsd@cs.man.ac.uk> * generic/tcl.h: Need a different strategy through the maze of #defines to let people building with Cygwin build correctly. Also made some comments less misleading... 2002-10-10 Jeff Hobbs <jeffh@ActiveState.com> * README: fixed minor nits [Bug 607776] (virden) * win/configure: * win/tcl.m4: enable USE_THREAD_ALLOC (new threaded allocator) by default in cygwin configure on Windows. 2002-10-10 Don Porter <dgp@users.sourceforge.net> * doc/Tcl.n: Clarified that namespace separators are legal in the variable names during $-subtitution. [Bug 615139] * doc/regexp.n: Typo correction. Thanks Ronnie Brunner. [Bug 606826] 2002-10-10 Vince Darley <vincentdarley@users.sourceforge.net> * unix/tclLoadAout.c * unix/tclLoadDl.c * unix/tclLoadDld.c * unix/tclLoadDyld.c * unix/tclLoadNext.c * unix/tclLoadOSF.c * unix/tclLoadShl.c * win/tclWinLoad.c: allow either full paths or simply dll names to be specified when loading files (the latter will be looked up by the OS on your PATH/LD_LIBRARY_PATH as appropriate). Fixes [Bug 611108] 2002-10-09 Jeff Hobbs <jeffh@ActiveState.com> * unix/README: doc'ed --enable-symbols options. * unix/Makefile.in: removed @MEM_DEBUG_FLAGS@ subst. * unix/configure: regen * unix/configure.in: removed SC_ENABLE_MEMDEBUG call * unix/tcl.m4: replaced SC_ENABLE_MEMDEBUG with a more intelligent SC_ENABLE_SYMBOLS that takes yes|no|mem|compile|all as options now. 2002-10-09 Kevin B. Kenny <kennykb@acm.org> * win/tclWinTime.c: Added code to set an exit handler that terminates the thread that calibrates the performance counter, so that the thread won't outlive unloading the Tcl DLL. [Bug 620735]. 2002-10-09 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/binary.n: More clarification of [binary scan]'s behaviour. 2002-10-09 Daniel Steffen <das@users.sourceforge.net> * generic/tclIntDecls.h: fixed botched regen. 2002-10-09 Daniel Steffen <das@users.sourceforge.net> * generic/tclInt.decls: made TclSetPreInitScript() declaration generic as it is used on mac & aqua as well. * generic/tclIntDecls.h: * generic/tclStubInit.c: regen. * generic/tclCompile.h: added prototype for TclCompileVariableCmd. * mac/tclMacPort.h: removed incorrect <fcntl.h> definitions and obsolete <stat.h> definitions. * mac/tclMacChan.c: removed obsolete GetOpenMode() and replaced associated constants with the <fcntl.h> analogues (they existing defs were inconsistent with <fcntl.h> which was causing havoc when Tcl_GetOpenMode was used instead of private GetOpenMode). * mac/tclMacFCmd.c: removed GenerateUniqueName(), use equivalent (and identically named) routine from MoreFiles instead. * mac/tclMacLoad.c: CONSTification, fixes to Vince's last changes. * mac/tclMacFile.c: * mac/tclMacTest.c: * mac/tclMacUnix.c: CONSTification. * mac/tclMacOSA.c: CONSTification, sprintf fixes, UH 3.4.x changes; fix for missing autoname token from TclOSACompileCmd. (bdesgraupes) * mac/AppleScript.html(AppleScript delete): doc fix. (bdesgraupes) * mac/tcltkMacBuildSupport.sea.hqx: updated MoreFiles to 1.5.3, updated build instructions for 8.4. * mac/tclMacProjects.sea.hqx: rebuilt archive. 2002-10-09 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/Alloc.3: Added a note to mention that attempting to allocate a zero-length block can return NULL. [Tk Bug 619544] 2002-10-04 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/binary.n: Doc improvements [Patch 616480] * tests/fCmd.test, tests/winFCmd.test: * tools/eolFix.tcl, tools/genStubs.tcl: [file exist] -> [file exists] Thanks to David Welton. 2002-10-03 Don Porter <dgp@users.sourceforge.net> * doc/tcltest.n: fixed typo [Bug 618018]. Thanks to "JJM". 2002-10-03 Donal K. Fellows <fellowsd@cs.man.ac.uk> * tools/man2help2.tcl: * tests/http.test, tests/httpd, tests/httpold.test: * tests/env.test, tests/binary.test, tests/autoMkindex.test: * library/init.tcl, library/http/http.tcl: [info exist] should really be [info exists]. [Bug 602566] * doc/lsearch.n: Better specification of what happens when -sorted is mixed with other options. [Bug 617816] 2002-10-01 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclProc.c (TclCreateProc): mask out VAR_UNDEFINED for precompiled locals to support 8.3 precompiled code. (Tcl_ProcObjCmd): correct 2002-09-26 fix to look for tclProcBodyType. 2002-10-01 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/socket.n: Mentioned that ports may be specified as serivce names as well as integers. [Bug 616843] 2002-09-30 Jeff Hobbs <jeffh@ActiveState.com> * generic/tclCompCmds.c (TclCompileRegexpCmd): correct the checking for bad re's that didn't terminate the re string. Resultant compiles were correct, but much slower than necessary. 2002-09-29 David Gravereaux <davygrvy@pobox.com> * win/tclAppInit.c: Added proper exiting conditions using Win32 console signals. This handles the existing lack of a Ctrl+C exit to call exit handlers when built for thread support. Also, properly handles exits from other conditions such as CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT, and CTRL_SHUTDOWN_EVENT signals. In all cases, exit handlers will be called. [Bug 219355] * win/makefile.vc: Added missing tclThreadAlloc.c to the build rules and defines USE_THREAD_ALLOC when TCL_THREADS is defined to get the new behavior by default. 2002-09-27 Don Porter <dgp@users.sourceforge.net> * README: Bumped to version 8.4.1 to avoid confusion * generic/tcl.h: of CVS snapshots with the actual 8.4.0 * tools/tcl.wse.in: release. * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf * win/configure: 2002-09-26 Jeff Hobbs <jeffh@ActiveState.com> * unix/configure: regen. * unix/tcl.m4: improve AIX-4/5 64bit compilation support. * generic/tclProc.c (Tcl_ProcObjCmd): correct overeager optimization of noop proc to handle the precompiled case. (sofer) * unix/ldAix (nmopts): add -X32_64 to make it work for 32 or 64bit mode compilation. * library/encoding/koi8-u.enc: removed extraneous spaces that confused encoding reader. [Bug 615115] * unix/Makefile.in: generate source dists with -src designator and do not generate .Z anymore (just .gz and .zip). 2002-09-18 Mumit Khan <khan@nanotech.wisc.edu> Added basic Cygwin support. * win/tcl.m4 (SC_PATH_TCLCONFIG): Support one-tree build. (SC_PATH_TKCONFIG): Likewise. (SC_PROG_TCLSH): Likewise. (SC_CONFIG_CFLAGS): Assume real Cygwin port and remove -mno-cygwin flags. Add -mwin32 to extra_cflags and extra_ldflags. Remove ``-e _WinMain@16'' from LDFLAGS_WINDOW. * win/configure.in: Allow Cygwin build. (SEH test): Define to be 1 instead of empty value. (EXCEPTION_DISPOSITION): Add test. * win/configure: Regenerate. * generic/tcl.h: Don't explicitly define __WIN32__ for Cygwin, let the user decide whether to use Windows or POSIX personality. (TCL_WIDE_INT_TYPE, TCL_LL_MODIFIER, struct Tcl_StatBuf): Define for Cygwin. * generic/tclEnv.c (Tcl_CygwinPutenv): putenv replacement for Cygwin. * generic/tclFileName.c (Tcl_TranslateFileName): Convert POSIX to native format. (TclDoGlob): Likewise. * generic/tclPlatDecls.h (TCHAR): Define for Cygwin. * win/tclWinPort.h (putenv, TclpSysAlloc, TclpSysFree) (TclpSysRealloc): Define for Cygwin. 2002-09-26 Daniel Steffen <das@users.sourceforge.net> * macosx/Makefile: preserve environment value of INSTALL_ROOT. When embedding only use deployment build. Force relink before embedded build to ensure new linker flags are picked up. * macosx/Tcl.pbproj/project.pbxproj: add symbolic links to debug lib, stub libs and tclConfig.sh in framework toplevel. Configure target dependency fix. Fix to 'clean' action. Added private tcl headers to framework. Install tclsh symbolic link. Html doc build works when no installed tclsh available. Made html doc structure in framework more like in Apple frameworks. 2002-09-24 Donal K. Fellows <fellowsd@cs.man.ac.uk> * unix/tcl.m4 (SC_TCL_64BIT_FLAGS): Yet more robust 64-bit value detection to close [Bug 613117] on more systems. * generic/tclCompile.c (TclPrintSource): More CONSTifying. * generic/tclExecute.c (EvalStatsCmd): Object-ify to reduce warnings.