aboutsummaryrefslogtreecommitdiff
path: root/bold/curieBold.sfd
blob: d9e8c2d3d85545ebd8bce0df02df9d166014298d (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
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
SplineFontDB: 3.0
FontName: curieBold
FullName: curie Bold
FamilyName: curie
Weight: Bold
Copyright: Copyright (C) 2018 nerdypepper
UComments: "2018-4-5: Created with FontForge (http://fontforge.org)"
Version: 001.000
ItalicAngle: 0
UnderlinePosition: -100
UnderlineWidth: 50
Ascent: 833
Descent: 167
InvalidEm: 0
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
XUID: [1021 527 -758485900 14296998]
FSType: 0
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1522941122
ModificationTime: 1523167766
PfmFamily: 17
TTFWeight: 500
TTFWidth: 5
LineGap: 90
VLineGap: 0
OS2TypoAscent: 0
OS2TypoAOffset: 1
OS2TypoDescent: 0
OS2TypoDOffset: 1
OS2TypoLinegap: 90
OS2WinAscent: 0
OS2WinAOffset: 1
OS2WinDescent: 0
OS2WinDOffset: 1
HheadAscent: 0
HheadAOffset: 1
HheadDescent: 0
HheadDOffset: 1
OS2Vendor: 'PfEd'
OS2CodePages: ffffffff.ffffffff
OS2UnicodeRanges: ffffffff.ffffffff.ffffffff.ffffffff
MarkAttachClasses: 1
DEI: 91125
Encoding: UnicodeBmp
Compacted: 1
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: 12
AntiAlias: 1
FitToEm: 0
WinInfo: 0 38 12
OnlyBitmaps: 1
BeginPrivate: 0
EndPrivate
BeginChars: 65536 433

StartChar: space
Encoding: 32 32 0
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: exclam
Encoding: 33 33 1
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quotedbl
Encoding: 34 34 2
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: numbersign
Encoding: 35 35 3
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dollar
Encoding: 36 36 4
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: percent
Encoding: 37 37 5
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ampersand
Encoding: 38 38 6
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quotesingle
Encoding: 39 39 7
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: parenleft
Encoding: 40 40 8
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: parenright
Encoding: 41 41 9
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: asterisk
Encoding: 42 42 10
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: plus
Encoding: 43 43 11
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: comma
Encoding: 44 44 12
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: hyphen
Encoding: 45 45 13
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: period
Encoding: 46 46 14
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: slash
Encoding: 47 47 15
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: zero
Encoding: 48 48 16
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: one
Encoding: 49 49 17
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: two
Encoding: 50 50 18
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: three
Encoding: 51 51 19
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: four
Encoding: 52 52 20
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: five
Encoding: 53 53 21
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: six
Encoding: 54 54 22
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: seven
Encoding: 55 55 23
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: eight
Encoding: 56 56 24
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: nine
Encoding: 57 57 25
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: colon
Encoding: 58 58 26
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: semicolon
Encoding: 59 59 27
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: less
Encoding: 60 60 28
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: equal
Encoding: 61 61 29
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: greater
Encoding: 62 62 30
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: question
Encoding: 63 63 31
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: at
Encoding: 64 64 32
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: A
Encoding: 65 65 33
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: B
Encoding: 66 66 34
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: C
Encoding: 67 67 35
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: D
Encoding: 68 68 36
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: E
Encoding: 69 69 37
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: F
Encoding: 70 70 38
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: G
Encoding: 71 71 39
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: H
Encoding: 72 72 40
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: I
Encoding: 73 73 41
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: J
Encoding: 74 74 42
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: K
Encoding: 75 75 43
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: L
Encoding: 76 76 44
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: M
Encoding: 77 77 45
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: N
Encoding: 78 78 46
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: O
Encoding: 79 79 47
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: P
Encoding: 80 80 48
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Q
Encoding: 81 81 49
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: R
Encoding: 82 82 50
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: S
Encoding: 83 83 51
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: T
Encoding: 84 84 52
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: U
Encoding: 85 85 53
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: V
Encoding: 86 86 54
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: W
Encoding: 87 87 55
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: X
Encoding: 88 88 56
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Y
Encoding: 89 89 57
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Z
Encoding: 90 90 58
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: bracketleft
Encoding: 91 91 59
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: backslash
Encoding: 92 92 60
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: bracketright
Encoding: 93 93 61
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: asciicircum
Encoding: 94 94 62
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: underscore
Encoding: 95 95 63
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: grave
Encoding: 96 96 64
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: a
Encoding: 97 97 65
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: b
Encoding: 98 98 66
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: c
Encoding: 99 99 67
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: d
Encoding: 100 100 68
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: e
Encoding: 101 101 69
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: f
Encoding: 102 102 70
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: g
Encoding: 103 103 71
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: h
Encoding: 104 104 72
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: i
Encoding: 105 105 73
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: j
Encoding: 106 106 74
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: k
Encoding: 107 107 75
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: l
Encoding: 108 108 76
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: m
Encoding: 109 109 77
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: n
Encoding: 110 110 78
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: o
Encoding: 111 111 79
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: p
Encoding: 112 112 80
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: q
Encoding: 113 113 81
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: r
Encoding: 114 114 82
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: s
Encoding: 115 115 83
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: t
Encoding: 116 116 84
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: u
Encoding: 117 117 85
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: v
Encoding: 118 118 86
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: w
Encoding: 119 119 87
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: x
Encoding: 120 120 88
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: y
Encoding: 121 121 89
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: z
Encoding: 122 122 90
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: braceleft
Encoding: 123 123 91
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: bar
Encoding: 124 124 92
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: braceright
Encoding: 125 125 93
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: asciitilde
Encoding: 126 126 94
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni00A0
Encoding: 160 160 95
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: exclamdown
Encoding: 161 161 96
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: cent
Encoding: 162 162 97
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: sterling
Encoding: 163 163 98
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: currency
Encoding: 164 164 99
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: yen
Encoding: 165 165 100
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: brokenbar
Encoding: 166 166 101
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: section
Encoding: 167 167 102
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dieresis
Encoding: 168 168 103
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: copyright
Encoding: 169 169 104
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ordfeminine
Encoding: 170 170 105
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: guillemotleft
Encoding: 171 171 106
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: logicalnot
Encoding: 172 172 107
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni00AD
Encoding: 173 173 108
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: registered
Encoding: 174 174 109
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: macron
Encoding: 175 175 110
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: degree
Encoding: 176 176 111
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: plusminus
Encoding: 177 177 112
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni00B2
Encoding: 178 178 113
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni00B3
Encoding: 179 179 114
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: acute
Encoding: 180 180 115
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: mu
Encoding: 181 181 116
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: paragraph
Encoding: 182 182 117
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: periodcentered
Encoding: 183 183 118
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: cedilla
Encoding: 184 184 119
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni00B9
Encoding: 185 185 120
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ordmasculine
Encoding: 186 186 121
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: guillemotright
Encoding: 187 187 122
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: onequarter
Encoding: 188 188 123
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: onehalf
Encoding: 189 189 124
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: threequarters
Encoding: 190 190 125
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: questiondown
Encoding: 191 191 126
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Agrave
Encoding: 192 192 127
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Aacute
Encoding: 193 193 128
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Acircumflex
Encoding: 194 194 129
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Atilde
Encoding: 195 195 130
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Adieresis
Encoding: 196 196 131
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Aring
Encoding: 197 197 132
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: AE
Encoding: 198 198 133
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ccedilla
Encoding: 199 199 134
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Egrave
Encoding: 200 200 135
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Eacute
Encoding: 201 201 136
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ecircumflex
Encoding: 202 202 137
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Edieresis
Encoding: 203 203 138
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Igrave
Encoding: 204 204 139
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Iacute
Encoding: 205 205 140
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Icircumflex
Encoding: 206 206 141
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Idieresis
Encoding: 207 207 142
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Eth
Encoding: 208 208 143
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ntilde
Encoding: 209 209 144
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ograve
Encoding: 210 210 145
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Oacute
Encoding: 211 211 146
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ocircumflex
Encoding: 212 212 147
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Otilde
Encoding: 213 213 148
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Odieresis
Encoding: 214 214 149
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: multiply
Encoding: 215 215 150
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Oslash
Encoding: 216 216 151
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ugrave
Encoding: 217 217 152
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Uacute
Encoding: 218 218 153
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ucircumflex
Encoding: 219 219 154
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Udieresis
Encoding: 220 220 155
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Yacute
Encoding: 221 221 156
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Thorn
Encoding: 222 222 157
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: germandbls
Encoding: 223 223 158
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: agrave
Encoding: 224 224 159
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: aacute
Encoding: 225 225 160
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: acircumflex
Encoding: 226 226 161
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: atilde
Encoding: 227 227 162
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: adieresis
Encoding: 228 228 163
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: aring
Encoding: 229 229 164
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ae
Encoding: 230 230 165
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ccedilla
Encoding: 231 231 166
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: egrave
Encoding: 232 232 167
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: eacute
Encoding: 233 233 168
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ecircumflex
Encoding: 234 234 169
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: edieresis
Encoding: 235 235 170
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: igrave
Encoding: 236 236 171
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: iacute
Encoding: 237 237 172
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: icircumflex
Encoding: 238 238 173
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: idieresis
Encoding: 239 239 174
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: eth
Encoding: 240 240 175
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ntilde
Encoding: 241 241 176
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ograve
Encoding: 242 242 177
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: oacute
Encoding: 243 243 178
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ocircumflex
Encoding: 244 244 179
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: otilde
Encoding: 245 245 180
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: odieresis
Encoding: 246 246 181
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: divide
Encoding: 247 247 182
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: oslash
Encoding: 248 248 183
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ugrave
Encoding: 249 249 184
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uacute
Encoding: 250 250 185
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ucircumflex
Encoding: 251 251 186
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: udieresis
Encoding: 252 252 187
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: yacute
Encoding: 253 253 188
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: thorn
Encoding: 254 254 189
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ydieresis
Encoding: 255 255 190
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Amacron
Encoding: 256 256 191
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: amacron
Encoding: 257 257 192
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Abreve
Encoding: 258 258 193
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: abreve
Encoding: 259 259 194
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Aogonek
Encoding: 260 260 195
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: aogonek
Encoding: 261 261 196
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Cacute
Encoding: 262 262 197
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: cacute
Encoding: 263 263 198
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ccircumflex
Encoding: 264 264 199
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ccircumflex
Encoding: 265 265 200
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Cdotaccent
Encoding: 266 266 201
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: cdotaccent
Encoding: 267 267 202
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ccaron
Encoding: 268 268 203
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ccaron
Encoding: 269 269 204
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Dcaron
Encoding: 270 270 205
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dcaron
Encoding: 271 271 206
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Dcroat
Encoding: 272 272 207
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dcroat
Encoding: 273 273 208
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: OE
Encoding: 338 338 209
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: oe
Encoding: 339 339 210
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Scaron
Encoding: 352 352 211
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: scaron
Encoding: 353 353 212
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Ydieresis
Encoding: 376 376 213
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Zcaron
Encoding: 381 381 214
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: zcaron
Encoding: 382 382 215
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: longs
Encoding: 383 383 216
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: florin
Encoding: 402 402 217
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: circumflex
Encoding: 710 710 218
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: tilde
Encoding: 732 732 219
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Lambda
Encoding: 923 923 220
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Xi
Encoding: 926 926 221
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni03A2
Encoding: 930 930 222
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Sigma
Encoding: 931 931 223
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Phi
Encoding: 934 934 224
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Psi
Encoding: 936 936 225
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni03A9
Encoding: 937 937 226
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: lambda
Encoding: 955 955 227
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni03BC
Encoding: 956 956 228
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: pi
Encoding: 960 960 229
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: endash
Encoding: 8211 8211 230
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: emdash
Encoding: 8212 8212 231
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quoteleft
Encoding: 8216 8216 232
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quoteright
Encoding: 8217 8217 233
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quotesinglbase
Encoding: 8218 8218 234
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quotedblleft
Encoding: 8220 8220 235
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quotedblright
Encoding: 8221 8221 236
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: quotedblbase
Encoding: 8222 8222 237
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dagger
Encoding: 8224 8224 238
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: daggerdbl
Encoding: 8225 8225 239
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: bullet
Encoding: 8226 8226 240
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2023
Encoding: 8227 8227 241
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: onedotenleader
Encoding: 8228 8228 242
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: twodotenleader
Encoding: 8229 8229 243
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ellipsis
Encoding: 8230 8230 244
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: perthousand
Encoding: 8240 8240 245
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: guilsinglleft
Encoding: 8249 8249 246
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: guilsinglright
Encoding: 8250 8250 247
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Euro
Encoding: 8364 8364 248
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: trademark
Encoding: 8482 8482 249
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2160
Encoding: 8544 8544 250
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2161
Encoding: 8545 8545 251
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2162
Encoding: 8546 8546 252
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2163
Encoding: 8547 8547 253
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2164
Encoding: 8548 8548 254
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2165
Encoding: 8549 8549 255
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowleft
Encoding: 8592 8592 256
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowup
Encoding: 8593 8593 257
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowright
Encoding: 8594 8594 258
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowdown
Encoding: 8595 8595 259
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowboth
Encoding: 8596 8596 260
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowupdn
Encoding: 8597 8597 261
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2196
Encoding: 8598 8598 262
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2197
Encoding: 8599 8599 263
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2198
Encoding: 8600 8600 264
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2199
Encoding: 8601 8601 265
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B0
Encoding: 8624 8624 266
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B1
Encoding: 8625 8625 267
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B2
Encoding: 8626 8626 268
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B3
Encoding: 8627 8627 269
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B4
Encoding: 8628 8628 270
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: carriagereturn
Encoding: 8629 8629 271
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B6
Encoding: 8630 8630 272
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni21B7
Encoding: 8631 8631 273
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowdblleft
Encoding: 8656 8656 274
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: arrowdblright
Encoding: 8658 8658 275
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: Delta
Encoding: 8710 8710 276
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: element
Encoding: 8712 8712 277
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni220A
Encoding: 8714 8714 278
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: asteriskmath
Encoding: 8727 8727 279
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2218
Encoding: 8728 8728 280
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2219
Encoding: 8729 8729 281
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: radical
Encoding: 8730 8730 282
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: logicaland
Encoding: 8743 8743 283
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: logicalor
Encoding: 8744 8744 284
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: therefore
Encoding: 8756 8756 285
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2235
Encoding: 8757 8757 286
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2236
Encoding: 8758 8758 287
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2237
Encoding: 8759 8759 288
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: notequal
Encoding: 8800 8800 289
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: equivalence
Encoding: 8801 8801 290
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: lessequal
Encoding: 8804 8804 291
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: greaterequal
Encoding: 8805 8805 292
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni22C4
Encoding: 8900 8900 293
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dotmath
Encoding: 8901 8901 294
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni22C6
Encoding: 8902 8902 295
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: house
Encoding: 8962 8962 296
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni23BA
Encoding: 9146 9146 297
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni23BB
Encoding: 9147 9147 298
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni23BC
Encoding: 9148 9148 299
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni23BD
Encoding: 9149 9149 300
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2409
Encoding: 9225 9225 301
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni240A
Encoding: 9226 9226 302
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni240B
Encoding: 9227 9227 303
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni240C
Encoding: 9228 9228 304
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni240D
Encoding: 9229 9229 305
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2424
Encoding: 9252 9252 306
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF100000
Encoding: 9472 9472 307
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2501
Encoding: 9473 9473 308
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF110000
Encoding: 9474 9474 309
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2503
Encoding: 9475 9475 310
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF010000
Encoding: 9484 9484 311
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni250F
Encoding: 9487 9487 312
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF030000
Encoding: 9488 9488 313
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2513
Encoding: 9491 9491 314
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF020000
Encoding: 9492 9492 315
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2517
Encoding: 9495 9495 316
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF040000
Encoding: 9496 9496 317
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni251B
Encoding: 9499 9499 318
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF080000
Encoding: 9500 9500 319
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni251D
Encoding: 9501 9501 320
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni251E
Encoding: 9502 9502 321
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni251F
Encoding: 9503 9503 322
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2520
Encoding: 9504 9504 323
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2521
Encoding: 9505 9505 324
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2522
Encoding: 9506 9506 325
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2523
Encoding: 9507 9507 326
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF090000
Encoding: 9508 9508 327
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni252B
Encoding: 9515 9515 328
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF060000
Encoding: 9516 9516 329
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2533
Encoding: 9523 9523 330
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF070000
Encoding: 9524 9524 331
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni253B
Encoding: 9531 9531 332
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: SF050000
Encoding: 9532 9532 333
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni253D
Encoding: 9533 9533 334
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni253E
Encoding: 9534 9534 335
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni253F
Encoding: 9535 9535 336
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2540
Encoding: 9536 9536 337
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2541
Encoding: 9537 9537 338
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2542
Encoding: 9538 9538 339
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2543
Encoding: 9539 9539 340
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2544
Encoding: 9540 9540 341
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2545
Encoding: 9541 9541 342
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2546
Encoding: 9542 9542 343
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2547
Encoding: 9543 9543 344
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2548
Encoding: 9544 9544 345
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2549
Encoding: 9545 9545 346
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni254A
Encoding: 9546 9546 347
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni254B
Encoding: 9547 9547 348
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni256D
Encoding: 9581 9581 349
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni256E
Encoding: 9582 9582 350
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni256F
Encoding: 9583 9583 351
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2570
Encoding: 9584 9584 352
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni257C
Encoding: 9596 9596 353
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni257E
Encoding: 9598 9598 354
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2581
Encoding: 9601 9601 355
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2582
Encoding: 9602 9602 356
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2583
Encoding: 9603 9603 357
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dnblock
Encoding: 9604 9604 358
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2585
Encoding: 9605 9605 359
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2586
Encoding: 9606 9606 360
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2587
Encoding: 9607 9607 361
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: block
Encoding: 9608 9608 362
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2589
Encoding: 9609 9609 363
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni258A
Encoding: 9610 9610 364
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni258B
Encoding: 9611 9611 365
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: lfblock
Encoding: 9612 9612 366
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni258D
Encoding: 9613 9613 367
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni258E
Encoding: 9614 9614 368
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni258F
Encoding: 9615 9615 369
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: rtblock
Encoding: 9616 9616 370
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: ltshade
Encoding: 9617 9617 371
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: shade
Encoding: 9618 9618 372
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: dkshade
Encoding: 9619 9619 373
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: H18543
Encoding: 9642 9642 374
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: H18551
Encoding: 9643 9643 375
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25AE
Encoding: 9646 9646 376
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: triagup
Encoding: 9650 9650 377
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B3
Encoding: 9651 9651 378
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B4
Encoding: 9652 9652 379
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B5
Encoding: 9653 9653 380
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B6
Encoding: 9654 9654 381
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B7
Encoding: 9655 9655 382
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B8
Encoding: 9656 9656 383
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25B9
Encoding: 9657 9657 384
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25C6
Encoding: 9670 9670 385
Width: 500
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25C7
Encoding: 9671 9671 386
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25FC
Encoding: 9724 9724 387
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25FD
Encoding: 9725 9725 388
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni25FE
Encoding: 9726 9726 389
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2630
Encoding: 9776 9776 390
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2631
Encoding: 9777 9777 391
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2632
Encoding: 9778 9778 392
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2633
Encoding: 9779 9779 393
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2634
Encoding: 9780 9780 394
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2635
Encoding: 9781 9781 395
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2636
Encoding: 9782 9782 396
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2637
Encoding: 9783 9783 397
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2661
Encoding: 9825 9825 398
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: heart
Encoding: 9829 9829 399
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2669
Encoding: 9833 9833 400
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: musicalnote
Encoding: 9834 9834 401
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: musicalnotedbl
Encoding: 9835 9835 402
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni266C
Encoding: 9836 9836 403
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni26AA
Encoding: 9898 9898 404
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni26AB
Encoding: 9899 9899 405
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni26AC
Encoding: 9900 9900 406
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni26DA
Encoding: 9946 9946 407
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2713
Encoding: 10003 10003 408
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2714
Encoding: 10004 10004 409
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2715
Encoding: 10005 10005 410
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2716
Encoding: 10006 10006 411
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2717
Encoding: 10007 10007 412
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2718
Encoding: 10008 10008 413
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni276C
Encoding: 10092 10092 414
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni276D
Encoding: 10093 10093 415
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni2801
Encoding: 10241 10241 416
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni28FD
Encoding: 10493 10493 417
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni28FE
Encoding: 10494 10494 418
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uni28FF
Encoding: 10495 10495 419
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE09E
Encoding: 57502 57502 420
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE09F
Encoding: 57503 57503 421
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0A0
Encoding: 57504 57504 422
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0A1
Encoding: 57505 57505 423
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0A2
Encoding: 57506 57506 424
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0B0
Encoding: 57520 57520 425
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0B1
Encoding: 57521 57521 426
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0B2
Encoding: 57522 57522 427
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0B3
Encoding: 57523 57523 428
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0C3
Encoding: 57539 57539 429
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0C4
Encoding: 57540 57540 430
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0C5
Encoding: 57541 57541 431
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar

StartChar: uniE0C6
Encoding: 57542 57542 432
Width: 1000
VWidth: 0
Flags: W
LayerCount: 2
EndChar
EndChars
BitmapFont: 12 434 10 2 1 nerdypepper
BDFStartProperties: 30
FONT 1 "-nerdypepper-curie-Bold-R-Normal--12-120-72-72-C-60-ISO10646-1"
SIZE 0 "12 72 72"
FONTBOUNDINGBOX 1 "6 12 0 -2"
COMMENT 0 "Generated by fontforge, http://fontforge.sourceforge.net"
COMMENT 0 "Generated by gdbfed"
SIZE 16 "12 72 72"
FONTBOUNDINGBOX 16 "6 12 0 -2"
FAMILY_NAME 16 "curie"
FOUNDRY 16 "nerdypepper"
SETWIDTH_NAME 16 "Bold"
ADD_STYLE_NAME 16 ""
COPYRIGHT 16 "Copyright (C) 2018 nerdypepper"
WEIGHT_NAME 16 "Bold"
SLANT 16 "R"
PIXEL_SIZE 18 12
POINT_SIZE 18 120
RESOLUTION_X 19 72
RESOLUTION_Y 19 72
SPACING 16 "C"
AVERAGE_WIDTH 18 60
CHARSET_REGISTRY 16 "ISO10646"
CHARSET_ENCODING 16 "1"
MIN_SPACE 18 6
WEIGHT 19 10
RESOLUTION 19 99
X_HEIGHT 18 10
QUAD_WIDTH 18 6
FONT_ASCENT 18 10
FONT_DESCENT 18 2
_GBDFED_INFO 16 "Edited with gbdfed 1.5."
BDFEndProperties
Resolution: 72
BDFChar: 0 32 6 5 5 -2 -2
z
BDFChar: 1 33 6 2 3 0 7
^qdb$^];0c
BDFChar: 2 34 6 1 4 6 8
Yct>3
BDFChar: 3 35 6 0 5 0 7
=BPK'=Su9'
BDFChar: 4 36 6 0 4 -2 8
+<YpM^i1-Xn/rhR
BDFChar: 5 37 6 0 5 0 7
aN+o(+<X?O
BDFChar: 6 38 6 0 4 0 7
@*l\Skch:)
BDFChar: 7 39 6 2 3 6 8
^qd_c
BDFChar: 8 40 6 1 4 -1 8
0OV]3^qdb$?n_Q\
BDFChar: 9 41 6 1 4 -1 8
^gJiM0JG17@))aB
BDFChar: 10 42 6 0 4 1 5
fPpV)fDkmO
BDFChar: 11 43 6 0 5 1 6
0JNG&0JEJ,
BDFChar: 12 44 6 1 3 -1 1
?spbM
BDFChar: 13 45 6 0 5 3 4
r;6Np
BDFChar: 14 46 6 2 3 0 1
^q]pM
BDFChar: 15 47 6 0 5 0 8
$j[[]0Haag^]4?7
BDFChar: 16 48 6 0 4 0 7
E7ih<pt45<
BDFChar: 17 49 6 1 4 0 7
@,PF#?smC3
BDFChar: 18 50 6 0 4 0 7
E7c!E0OV]k
BDFChar: 19 51 6 0 4 0 7
E7c"H(`:nE
BDFChar: 20 52 6 0 5 0 7
(cZcmR/@d<
BDFChar: 21 53 6 0 4 0 7
pqX]7(`:nE
BDFChar: 22 54 6 0 4 0 7
E7htqf\"hq
BDFChar: 23 55 6 0 4 0 7
p]q]J0Haag
BDFChar: 24 56 6 0 4 0 7
E7if^f\"hq
BDFChar: 25 57 6 0 4 0 7
E7igqGSo(P
BDFChar: 26 58 6 2 3 0 5
^q]pM^q]pM
BDFChar: 27 59 6 1 3 -1 5
?sis7?spbM
BDFChar: 28 60 6 1 4 1 5
0OV\(0E;(Q
BDFChar: 29 61 6 0 5 2 4
quHWp
BDFChar: 30 62 6 1 4 1 5
^gJj(^]4?7
BDFChar: 31 63 6 0 5 0 7
Gg+A;0JEJ\
BDFChar: 32 64 6 0 5 0 7
G`9;:XLs(2
BDFChar: 33 65 6 0 4 0 7
E7ih<f\"j/
BDFChar: 34 66 6 0 4 0 7
nCZC_f\"jG
BDFChar: 35 67 6 0 4 0 7
E7htA^qeTA
BDFChar: 36 68 6 0 4 0 7
nCZCGf\"jG
BDFChar: 37 69 6 0 4 0 7
pqX]7^qdb\
BDFChar: 38 70 6 0 4 0 7
pqX]7^qdb$
BDFChar: 39 71 6 0 4 0 7
E6,iIaN2GA
BDFChar: 40 72 6 0 4 0 7
f\"jOf\"j/
BDFChar: 41 73 6 1 4 0 7
n6fX3?smC3
BDFChar: 42 74 6 0 4 0 7
GSh87(`:nM
BDFChar: 43 75 6 0 4 0 7
f\"R/d+I"'
BDFChar: 44 76 6 0 4 0 7
^qdb$^qdb\
BDFChar: 45 77 6 0 5 0 7
psdgCeAT;D
BDFChar: 46 78 6 0 4 0 7
aN3T/f\"9d
BDFChar: 47 79 6 0 4 0 7
E7igqf\"hq
BDFChar: 48 80 6 0 4 0 7
nCZC_^qdb$
BDFChar: 49 81 6 0 4 -2 7
E7igqf\"hq(^L*A
BDFChar: 50 82 6 0 4 0 7
nCZC_f\"j/
BDFChar: 51 83 6 0 4 0 7
E7hsF(`:nE
BDFChar: 52 84 6 0 5 0 7
r%KfY0JG17
BDFChar: 53 85 6 0 4 0 7
f\"j/f\"hq
BDFChar: 54 86 6 0 4 0 7
f\"j/fPkdP
BDFChar: 55 87 6 0 5 0 7
`5KUDeC<"C
BDFChar: 56 88 6 0 4 0 7
f\"hqf\"j/
BDFChar: 57 89 6 0 4 0 7
f\"j/3#L:m
BDFChar: 58 90 6 0 4 0 7
p_Xi%@)0SQ
BDFChar: 59 91 6 1 3 -1 8
i5!.D^qdb$^u,1m
BDFChar: 60 92 6 0 5 0 8
^d)9M0G#',$ig8-
BDFChar: 61 93 6 1 3 -1 8
i*]r#?smAM@,M"b
BDFChar: 62 94 6 0 4 6 9
+E5th
BDFChar: 63 95 6 0 5 -1 -1
qu?]s
BDFChar: 64 96 6 1 4 7 9
^gJhr
BDFChar: 65 97 6 0 4 0 5
GhC[$fOt6b
BDFChar: 66 98 6 0 4 0 8
^qdbTf\"j/n,NFg
BDFChar: 67 99 6 0 4 0 5
E7htAfPgfj
BDFChar: 68 100 6 0 4 0 8
(`4*7f\"j/GQ7^D
BDFChar: 69 101 6 0 4 0 5
E6.giaD_+Z
BDFChar: 70 102 6 0 4 0 8
3+-.h?smAM?iU0,
BDFChar: 71 103 6 0 4 -2 5
GhC[$fQ\6P
BDFChar: 72 104 6 0 4 0 8
^qdbTf\"j/fDkmO
BDFChar: 73 105 6 0 4 0 8
+<U[B?smAM2uipY
BDFChar: 74 106 6 0 3 -2 8
&.eh\0JG170JMDb
BDFChar: 75 107 6 0 4 0 8
^qdb,f^SC_a8c2?
BDFChar: 76 108 6 0 4 0 8
i*]r#?smAM2uipY
BDFChar: 77 109 6 0 5 0 5
psdgCeC4Hu
BDFChar: 78 110 6 0 4 0 5
nCZCGf[p0(
BDFChar: 79 111 6 0 4 0 5
E7igqfPgfj
BDFChar: 80 112 6 0 4 -2 5
nCZCGf^Q\l
BDFChar: 81 113 6 0 4 -2 5
GhC[$fQ\5M
BDFChar: 82 114 6 0 4 0 5
nCYOl^q]pM
BDFChar: 83 115 6 0 4 0 5
E56E0fPgfj
BDFChar: 84 116 6 0 4 0 8
?smC;?smAM2uipY
BDFChar: 85 117 6 0 4 0 5
f\"j/fQ[Ar
BDFChar: 86 118 6 0 4 0 5
f\"hqE$,,\
BDFChar: 87 119 6 0 5 0 5
`5L0TeG'"D
BDFChar: 88 120 6 0 4 0 5
f[t/qf[p0(
BDFChar: 89 121 6 0 4 -2 5
f\"j/fQ\6P
BDFChar: 90 122 6 0 4 0 5
p_Y\m_"[m0
BDFChar: 91 123 6 1 4 -1 8
0OS9r^gLPX?n_Q\
BDFChar: 92 124 6 2 3 -1 8
^qdb$^qdb$^q]pM
BDFChar: 93 125 6 1 4 -1 8
^gLPX0OS9r@))aB
BDFChar: 94 126 6 0 4 2 4
i2AU8
BDFChar: 95 160 6 5 5 -2 -2
z
BDFChar: 96 161 6 2 2 0 7
J:IWMJ:N0#
BDFChar: 97 162 6 0 4 -1 6
+E49PTVufP
BDFChar: 98 163 6 0 4 0 7
3']au5X9"M
BDFChar: 99 164 6 0 5 1 6
KQp$YG_?%s
BDFChar: 100 165 6 0 4 0 7
LknkME$0*B
BDFChar: 101 166 6 2 2 0 7
J:N.M!.]TM
BDFChar: 102 167 6 1 4 0 8
@$!XHOAI']?iU0,
BDFChar: 103 168 6 1 3 8 9
TV)8b
BDFChar: 104 169 6 0 5 0 7
G_EH"UpPf"
BDFChar: 105 170 6 1 4 3 9
?k@:=DufA-
BDFChar: 106 171 6 0 5 1 5
,Y4"f,QIfE
BDFChar: 107 172 6 1 4 2 4
n.6-2
BDFChar: 108 173 6 1 4 3 3
n,NFg
BDFChar: 109 174 6 0 5 0 7
G_EH2UpPf"
BDFChar: 110 175 6 1 3 9 9
huE`W
BDFChar: 111 176 6 1 3 6 8
5bL@B
BDFChar: 112 177 6 0 4 0 5
+<^G%+SYp:
BDFChar: 113 178 6 1 4 4 8
@#uKrn,NFg
BDFChar: 114 179 6 1 4 4 8
i"09-huE`W
BDFChar: 115 180 6 2 4 8 9
@))aB
BDFChar: 116 181 6 0 4 -2 5
OH>QcOSF?V
BDFChar: 117 182 6 0 4 0 7
Gc7R>BIG8W
BDFChar: 118 183 6 2 3 3 4
^q]pM
BDFChar: 119 184 6 1 3 -2 0
?spbM
BDFChar: 120 185 6 1 2 5 8
5eoWM
BDFChar: 121 186 6 1 4 3 9
@$$J3?i]Zr
BDFChar: 122 187 6 0 5 1 5
O@UWfO8o7\
BDFChar: 123 188 6 0 4 -2 9
5eoWU&0ON2.!Q"'
BDFChar: 124 189 6 0 5 -2 9
5eocY&0O6*,R=rD
BDFChar: 125 190 6 0 5 -2 9
^`^E<a:KUjPWT'O
BDFChar: 126 191 6 1 4 0 7
+<UY,5`h(8
BDFChar: 127 192 6 1 4 0 9
5TjHrOHAsnOH9GB
BDFChar: 128 193 6 1 4 0 9
+@'=rOHAsnOH9GB
BDFChar: 129 194 6 1 4 0 9
@$"cXOHAsnOH9GB
BDFChar: 130 195 6 1 4 0 9
:nV3XOHAsnOH9GB
BDFChar: 131 196 6 1 4 0 9
O8r[MOHAsnOH9GB
BDFChar: 132 197 6 1 4 0 9
@$"cXOHAsnOH9GB
BDFChar: 133 198 6 0 4 0 7
GbC`)TV.sf
BDFChar: 134 199 6 1 4 -2 7
@$#nhJ:N_h5_&h7
BDFChar: 135 200 6 1 4 0 9
5ToQHJDbs.JFEO=
BDFChar: 136 201 6 1 4 0 9
+@,FHJDbs.JFEO=
BDFChar: 137 202 6 1 4 0 9
+AhQXJDbs.JFEO=
BDFChar: 138 203 6 1 4 0 9
O9"d#JDbs.JFEO=
BDFChar: 139 204 6 1 3 0 9
J3`$X5X7S"5i;VB
BDFChar: 140 205 6 1 3 0 9
+@+jM5X7S"5i;VB
BDFChar: 141 206 6 1 3 0 9
5bR%#5X7S"5i;VB
BDFChar: 142 207 6 1 3 0 9
TE*n85X7S"5i;VB
BDFChar: 143 208 6 0 4 0 7
?r0DX84ZQb
BDFChar: 144 209 6 1 4 0 9
:nWo3d*T#$OH9GB
BDFChar: 145 210 6 1 4 0 9
J3[M(OH>QcOC/%g
BDFChar: 146 211 6 1 4 0 9
+@'=rOH>QcOC/%g
BDFChar: 147 212 6 1 4 0 9
5bJ*bOH>QcOC/%g
BDFChar: 148 213 6 1 4 0 9
:nRerOH>QcOC/%g
BDFChar: 149 214 6 1 4 0 9
O8r[MOH>QcOC/%g
BDFChar: 150 215 6 0 4 1 5
Leo3jL]@DT
BDFChar: 151 216 6 0 5 0 7
1e:_NBP9r@
BDFChar: 152 217 6 1 4 0 9
5Tl/MOH>QcOC/%g
BDFChar: 153 218 6 1 4 0 9
+@)$MOH>QcOC/%g
BDFChar: 154 219 6 1 4 0 9
@#tAMOH>QcOC/%g
BDFChar: 155 220 6 1 4 0 9
O8tB(OH>QcOC/%g
BDFChar: 156 221 6 1 4 0 9
&0R'rOH=DmODk1"
BDFChar: 157 222 6 1 4 0 7
JDcNNOPkY>
BDFChar: 158 223 6 1 4 -1 7
^n@@YOH@h^J,fQL
BDFChar: 159 224 6 1 4 0 8
5Tg&GOH>QcDu]k<
BDFChar: 160 225 6 1 4 0 8
+@#pGOH>QcDu]k<
BDFChar: 161 226 6 1 4 0 8
5bJ*rOH>QcDu]k<
BDFChar: 162 227 6 1 4 0 8
:nRf-OH>QcDu]k<
BDFChar: 163 228 6 1 4 0 7
TE&qmOH>QC
BDFChar: 164 229 6 1 4 0 8
5bJ*rOH>QcDu]k<
BDFChar: 165 230 6 0 4 0 5
E%#D(TQgG:
BDFChar: 166 231 6 1 4 -2 5
@$#nhOC1>(
BDFChar: 167 232 6 1 4 0 8
5Tg&7ORRd^?iU0,
BDFChar: 168 233 6 1 4 0 8
+@#p7ORRd^?iU0,
BDFChar: 169 234 6 1 4 0 8
+A`&GORRd^?iU0,
BDFChar: 170 235 6 1 4 0 7
O8r[Mn:6U.
BDFChar: 171 236 6 1 3 0 8
J3X+M5X7S"+92BA
BDFChar: 172 237 6 1 3 0 8
+@#qB5X7S"+92BA
BDFChar: 173 238 6 1 3 0 8
5bJ+m5X7S"+92BA
BDFChar: 174 239 6 1 3 0 7
TE)bm5X7RW
BDFChar: 175 240 6 1 4 0 8
TKo/XOH>Qc?iU0,
BDFChar: 176 241 6 1 4 0 8
:nRgHOH>QcO8o7\
BDFChar: 177 242 6 1 4 0 8
J3X*BOH>Qc?iU0,
BDFChar: 178 243 6 1 4 0 8
+@#p7OH>Qc?iU0,
BDFChar: 179 244 6 1 4 0 8
5bJ*bOH>Qc?iU0,
BDFChar: 180 245 6 1 4 0 8
:nRerOH>Qc?iU0,
BDFChar: 181 246 6 1 4 0 7
O8r[MOH>Q3
BDFChar: 182 247 6 0 4 0 6
+<U[Z!$EBa
BDFChar: 183 248 6 0 5 0 5
1e:_^8?`'o
BDFChar: 184 249 6 1 4 0 8
5Tg&gOH>QcDu]k<
BDFChar: 185 250 6 1 4 0 8
+@#pgOH>QcDu]k<
BDFChar: 186 251 6 1 4 0 8
+A`'"OH>QcDu]k<
BDFChar: 187 252 6 1 4 0 7
O8tB(OH>QC
BDFChar: 188 253 6 1 4 -2 8
+@#pgOH>QcE"Lq-
BDFChar: 189 254 6 1 4 -2 7
J:QR>OH>R^J:IV"
BDFChar: 190 255 6 1 4 -2 7
O8tB(OH>QCOC/%g
BDFChar: 191 256 12 1 4 0 9
n,QjXOHAsnOH9GB
BDFChar: 192 257 12 1 4 0 7
n,REhOH>QC
BDFChar: 193 258 12 1 4 0 9
OC/&rOHAsnOH9GB
BDFChar: 194 259 12 1 4 0 8
OC/'-OH>QcDu]k<
BDFChar: 195 260 12 1 4 -2 7
@$$J3n;r`n+><cq
BDFChar: 196 261 12 1 4 -2 5
@$$J3ODl<r
BDFChar: 197 262 12 1 4 0 9
+@'=rJ:N0#OC/%g
BDFChar: 198 263 12 1 4 0 7
+@'=rJ:N_h
BDFChar: 199 264 12 1 4 0 9
5bJ*bOFVk3OC/%g
BDFChar: 200 265 12 1 4 0 7
+@'=rJ:N_h
BDFChar: 201 266 12 1 4 0 9
5QG2RJ:N0#OC/%g
BDFChar: 202 267 12 1 4 0 7
5QG2RJ:N_h
BDFChar: 203 268 12 1 4 0 9
TKiKbOFVk3OC/%g
BDFChar: 204 269 12 1 4 0 7
TKlnHJ:N_h
BDFChar: 205 270 12 1 4 0 9
TKqFsOH>QcOPg*=
BDFChar: 206 271 12 0 5 0 7
'GPYNOH>QC
BDFChar: 207 272 12 0 4 0 7
E(EO`84Z9j
BDFChar: 208 273 12 1 5 0 8
&3(5?OH>QcDu]k<
BDFChar: 209 338 6 0 4 0 7
GbC_>TV.s&
BDFChar: 210 339 6 0 4 0 5
E2]_>TQgG:
BDFChar: 211 352 6 1 4 0 9
OC2IXJ7&p"OC/%g
BDFChar: 212 353 6 1 4 0 7
TKmIH?k<n-
BDFChar: 213 376 6 0 4 0 9
L]E6eLj012Lj/n"
BDFChar: 214 381 6 1 4 0 9
OC7Ph&0O5gJFEO=
BDFChar: 215 382 6 1 4 0 7
:a#6=+@(JH
BDFChar: 216 383 12 1 4 0 7
0L3E=5X7S"
BDFChar: 217 402 6 0 4 -2 7
&1AZ?+<VdLTKiJW
BDFChar: 218 710 6 1 3 8 9
5bJ)W
BDFChar: 219 732 6 1 4 8 9
:nRdg
BDFChar: 220 923 12 0 4 0 5
+<XKWLkl$2
BDFChar: 221 926 12 0 4 0 8
pkSnMp](;Mp](9o
BDFChar: 222 930 12 1 4 0 6
n;omX5`kI8
BDFChar: 223 931 12 0 4 0 8
pkXGc+@(I5p](9o
BDFChar: 224 934 12 0 4 0 7
+<YX%W,Nk%
BDFChar: 225 936 12 1 5 0 6
Lo@8NE$-8'
BDFChar: 226 937 12 0 1 0 0
^]4?7
BDFChar: 227 955 12 0 4 0 6
5bK5r:l'o-
BDFChar: 228 956 12 0 4 -2 5
OH>QcOSF?V
BDFChar: 229 960 6 0 5 0 5
r('@L84W^\
BDFChar: 230 8211 6 0 4 3 3
p](9o
BDFChar: 231 8212 6 0 4 3 3
p](9o
BDFChar: 232 8216 6 2 3 6 8
5_+@b
BDFChar: 233 8217 6 1 2 6 8
5X9i"
BDFChar: 234 8218 6 1 2 -1 1
5X9i"
BDFChar: 235 8220 6 1 4 6 8
:nXH]
BDFChar: 236 8221 6 0 3 6 8
:f*eb
BDFChar: 237 8222 6 0 3 -1 1
:f*eb
BDFChar: 238 8224 6 1 3 0 7
5i=mm5X7S"
BDFChar: 239 8225 6 1 3 0 7
5i=mm5X=6m
BDFChar: 240 8226 6 1 4 2 5
@.<Yn
BDFChar: 241 8227 12 1 2 2 5
JAAsN
BDFChar: 242 8228 12 2 2 0 1
J:IV"
BDFChar: 243 8229 12 1 3 0 1
TV)8b
BDFChar: 244 8230 6 0 4 0 1
W2K[r
BDFChar: 245 8240 6 0 5 0 7
7&Wp)5c@X1
BDFChar: 246 8249 6 1 4 0 6
&0O5g5TgU<
BDFChar: 247 8250 6 1 4 0 6
J3Y4g+@(GW
BDFChar: 248 8364 6 0 4 0 6
0M(+ei(,O%
BDFChar: 249 8482 6 0 5 5 8
oNY?p
BDFChar: 250 8544 12 2 2 0 8
J:N0#J:N0#J,fQL
BDFChar: 251 8545 12 1 3 0 8
TV.sNTV.sNTE"rl
BDFChar: 252 8546 12 1 5 0 8
W2QYnW2QYnVuQet
BDFChar: 253 8547 12 0 5 0 8
Unjf^UnjfRQiI*d
BDFChar: 254 8548 12 1 4 0 8
OH>QcOH>Q3?iU0,
BDFChar: 255 8549 12 0 5 0 8
Pa%DsPa%DCA,lT0
BDFChar: 256 8592 12 0 5 1 5
0OXfd0E;(Q
BDFChar: 257 8593 12 0 4 0 6
+E7+S+<Vd,
BDFChar: 258 8594 12 0 5 1 5
0Gs^)0E;(Q
BDFChar: 259 8595 12 0 4 0 5
+<[WXE$,,\
BDFChar: 260 8596 12 0 5 2 4
8Gl!Y
BDFChar: 261 8597 12 1 3 0 5
5i=mmi'78B
BDFChar: 262 8598 12 0 5 0 5
^q_'(#Qt,-
BDFChar: 263 8599 12 0 5 0 5
$k*[i5_&h7
BDFChar: 264 8600 12 0 5 0 5
J3Y4g$k*+9
BDFChar: 265 8601 12 0 5 0 5
":,P]^q]pM
BDFChar: 266 8624 12 0 4 0 8
+@,]m-jU(a#QOi)
BDFChar: 267 8625 12 0 4 0 8
+;"=0TR_QCJ,fQL
BDFChar: 268 8626 12 0 4 0 8
#RC\A-qO+u+92BA
BDFChar: 269 8627 12 0 4 0 8
J:N0#TTJp[+92BA
BDFChar: 270 8628 12 0 4 0 7
i#j-b+K06%
BDFChar: 271 8629 12 0 4 0 8
#RC\A-qO+u+92BA
BDFChar: 272 8630 12 0 5 1 5
3(-0m5QCca
BDFChar: 273 8631 12 0 5 1 5
E/9;i#QOi)
BDFChar: 274 8656 12 0 5 1 5
+FLtP+92BA
BDFChar: 275 8658 12 0 5 1 5
&GQ\/&-)\1
BDFChar: 276 8710 12 0 4 0 6
+<XKWLktg+
BDFChar: 277 8712 12 0 5 0 6
4@"GlJ3Z3s
BDFChar: 278 8714 12 1 5 1 5
G_#R>GQ7^D
BDFChar: 279 8727 12 1 5 1 5
:a#NU:]LIq
BDFChar: 280 8728 12 1 4 2 5
@$$IX
BDFChar: 281 8729 12 1 4 2 5
@.<Yn
BDFChar: 282 8730 12 0 4 0 7
#RCtQ+J:tb
BDFChar: 283 8743 12 0 4 0 5
+<XKWLkl$2
BDFChar: 284 8744 12 0 4 0 5
Lknl(+<UXa
BDFChar: 285 8756 12 0 4 0 5
+92BA!/LUT
BDFChar: 286 8757 12 0 4 0 5
L]@DT!$D7A
BDFChar: 287 8758 12 2 2 1 5
J,fQLJ,fQL
BDFChar: 288 8759 12 1 4 1 5
O8o7\O8o7\
BDFChar: 289 8800 6 0 5 0 6
#RL>Nr'3LI
BDFChar: 290 8801 12 0 5 1 5
quHWpqu?]s
BDFChar: 291 8804 6 0 4 0 6
0OV\(0ECkJ
BDFChar: 292 8805 6 0 4 0 6
?n`EO?i]s%
BDFChar: 293 8900 12 1 5 1 5
+Adkj+92BA
BDFChar: 294 8901 12 1 3 2 4
5i=m-
BDFChar: 295 8902 12 1 3 2 4
TKo.M
BDFChar: 296 8962 6 0 4 0 6
+<XKWLktg+
BDFChar: 297 9146 6 0 5 9 9
qu?]s
BDFChar: 298 9147 6 0 5 6 6
qu?]s
BDFChar: 299 9148 6 0 5 1 1
qu?]s
BDFChar: 300 9149 6 0 5 -2 -2
qu?]s
BDFChar: 301 9225 6 0 5 -1 9
OHAsnO8sY>&.fBQ
BDFChar: 302 9226 6 0 5 -1 9
J:N0#n,PQn3$9=D
BDFChar: 303 9227 6 0 5 -1 9
Lkpj`+96d#&.fBQ
BDFChar: 304 9228 6 0 5 -1 9
n:9GIJ,h\S3$9=D
BDFChar: 305 9229 6 0 5 -1 9
@$#o#?iW/33%-$P
BDFChar: 306 9252 6 0 5 -1 9
OO14nO8pCG+<WcH
BDFChar: 307 9472 6 0 5 4 4
qu?]s
BDFChar: 308 9473 12 0 5 4 5
r;6Np
BDFChar: 309 9474 6 2 2 -2 9
J:N0#J:N0#J:N0#
BDFChar: 310 9475 12 2 3 -2 9
^qdb$^qdb$^qdb$
BDFChar: 311 9484 6 2 5 -2 4
n:6%>J:N.M
BDFChar: 312 9487 12 2 5 -2 5
nF46/^qdb$
BDFChar: 313 9488 6 0 2 -2 4
i#j-b+<Vd,
BDFChar: 314 9491 12 0 3 -2 5
nF/+c0JG17
BDFChar: 315 9492 6 2 5 4 9
J:N0#JFEO=
BDFChar: 316 9495 12 2 5 4 9
^qdb$nF-DX
BDFChar: 317 9496 6 0 2 4 9
+<VdL+Q*5"
BDFChar: 318 9499 12 0 3 4 9
0JG17nF-DX
BDFChar: 319 9500 6 2 5 -2 9
J:N0#JFJ)>J:N0#
BDFChar: 320 9501 12 2 5 -2 9
J:N0#nF1sYJ:N0#
BDFChar: 321 9502 12 2 5 -2 9
^qdb$_!ll)J:N0#
BDFChar: 322 9503 12 2 5 -2 9
J:N0#JFL@i^qdb$
BDFChar: 323 9504 12 2 5 -2 9
^qdb$_!o.T^qdb$
BDFChar: 324 9505 12 2 5 -2 9
^qdb$nF1sYJ:N0#
BDFChar: 325 9506 12 2 5 -2 9
J:N0#JFL@i^qdb$
BDFChar: 326 9507 12 2 5 -2 9
^qdb$nF46/^qdb$
BDFChar: 327 9508 6 0 2 -2 9
+<VdL+Q+@b+<VdL
BDFChar: 328 9515 12 0 3 -2 9
0JG17nF/+c0JG17
BDFChar: 329 9516 6 0 5 -2 4
r#d+)+<Vd,
BDFChar: 330 9523 12 0 5 -2 5
r;86&0JG17
BDFChar: 331 9524 6 0 5 4 9
+<VdL+T)3>
BDFChar: 332 9531 12 0 5 4 9
0JG17r;6Np
BDFChar: 333 9532 6 0 5 -2 9
+<VdL+T*?)+<VdL
BDFChar: 334 9533 6 0 5 -2 9
+<VdLi;=]?+<VdL
BDFChar: 335 9534 6 0 5 -2 9
+<VdL4T$<E+<VdL
BDFChar: 336 9535 6 0 5 -2 9
+<VdLr;7Z[+<VdL
BDFChar: 337 9536 6 0 5 -2 9
0JG170`3%9+<VdL
BDFChar: 338 9537 6 0 5 -2 9
+<VdL+T*oI0JG17
BDFChar: 339 9538 6 0 5 -2 9
0JG17r%KfY0JG17
BDFChar: 340 9539 6 0 5 -2 9
0JG17nGFCO+<VdL
BDFChar: 341 9540 6 0 5 -2 9
0JG174T$<E+<VdL
BDFChar: 342 9541 6 0 5 -2 9
+<VdLi;>8_0JG17
BDFChar: 343 9542 6 0 5 -2 9
+<VdL4T$le0JG17
BDFChar: 344 9543 6 0 5 -2 9
0JG17r;7Z[+<VdL
BDFChar: 345 9544 6 0 5 -2 9
+<VdLr;86&0JG17
BDFChar: 346 9545 6 0 5 -2 9
0JG17nGFso0JG17
BDFChar: 347 9546 6 0 5 -2 9
0JG174T$le0JG17
BDFChar: 348 9547 6 0 5 -2 9
0JG17r;86&0JG17
BDFChar: 349 9581 12 2 5 -2 4
E.EIhJ:N.M
BDFChar: 350 9582 12 0 2 -2 4
^`XaB+<Vd,
BDFChar: 351 9583 12 0 2 4 9
+<VdL+M[sW
BDFChar: 352 9584 12 2 5 4 9
J:N0#J8bJg
BDFChar: 353 9596 12 0 5 3 5
*;gcV
BDFChar: 354 9598 12 0 5 3 5
i;DL5
BDFChar: 355 9601 12 0 5 -2 -2
qu?]s
BDFChar: 356 9602 12 0 5 -2 -1
r;6Np
BDFChar: 357 9603 12 0 5 -2 0
r;?Hm
BDFChar: 358 9604 12 0 5 -2 1
r;?Kj
BDFChar: 359 9605 12 0 5 -2 3
r;?Kjr;6Np
BDFChar: 360 9606 12 0 5 -2 5
r;?Kjr;?Kj
BDFChar: 361 9607 12 0 5 -2 7
r;?Kjr;?Kjr;6Np
BDFChar: 362 9608 12 0 5 -2 9
r;?Kjr;?Kjr;?Kj
BDFChar: 363 9609 12 0 4 -2 9
q"XXZq"XXZq"XXZ
BDFChar: 364 9610 12 0 3 -2 9
nF5r:nF5r:nF5r:
BDFChar: 365 9611 12 0 2 -2 9
i8EPOi8EPOi8EPO
BDFChar: 366 9612 12 0 2 -2 9
i8EPOi8EPOi8EPO
BDFChar: 367 9613 12 0 1 -2 9
^qdb$^qdb$^qdb$
BDFChar: 368 9614 12 0 1 -2 9
^qdb$^qdb$^qdb$
BDFChar: 369 9615 12 0 0 -2 9
J:N0#J:N0#J:N0#
BDFChar: 370 9616 12 3 5 -2 9
i8EPOi8EPOi8EPO
BDFChar: 371 9617 6 0 4 -2 9
L`hKrL`hKrL`hKr
BDFChar: 372 9618 6 0 5 -2 9
W)T]pW)T]pW)T]p
BDFChar: 373 9619 12 0 5 -2 9
r,g_9giV=ngiV>!
BDFChar: 374 9642 12 1 4 1 4
nF5r:
BDFChar: 375 9643 12 1 4 1 4
n;rb$
BDFChar: 376 9646 6 0 4 0 7
q"XXZq"XXZ
BDFChar: 377 9650 12 0 4 0 5
+<YWBq"Ogh
BDFChar: 378 9651 12 0 4 0 5
+<XKWM"grM
BDFChar: 379 9652 12 1 3 1 3
5iCQ#
BDFChar: 380 9653 12 1 3 1 3
5bR$8
BDFChar: 381 9654 12 0 4 1 5
JDg4\J,fQL
BDFChar: 382 9655 12 0 4 1 5
JDcgQJ,fQL
BDFChar: 383 9656 12 1 3 1 5
JAC*YJ,fQL
BDFChar: 384 9657 12 1 3 1 5
JA@hnJ,fQL
BDFChar: 385 9670 6 0 4 2 6
+E7*p+92BA
BDFChar: 386 9671 12 0 4 2 6
+Adkj+92BA
BDFChar: 387 9724 12 1 5 1 5
q"XXZp](9o
BDFChar: 388 9725 12 1 5 1 5
pkX`^p](9o
BDFChar: 389 9726 12 2 4 2 4
i8EMn
BDFChar: 390 9776 12 0 4 0 6
p](<h!!)co
BDFChar: 391 9777 12 0 4 0 6
fDkpH!!)co
BDFChar: 392 9778 12 0 4 0 6
p](<H!!)co
BDFChar: 393 9779 12 0 4 0 6
fDkp(!!)co
BDFChar: 394 9780 12 0 4 0 6
p](<h!!(XO
BDFChar: 395 9781 12 0 4 0 6
fDkpH!!(XO
BDFChar: 396 9782 12 0 4 0 6
p](<H!!(XO
BDFChar: 397 9783 12 0 4 0 6
fDkp(!!(XO
BDFChar: 398 9825 12 1 5 1 5
:oK1H+92BA
BDFChar: 399 9829 12 1 5 1 5
;#'g)+92BA
BDFChar: 400 9833 12 0 2 0 8
+<VdL+<VfbhuE`W
BDFChar: 401 9834 12 0 4 0 8
+>>2d+<VfbhuE`W
BDFChar: 402 9835 12 0 5 0 8
0K:U/,in#+)uos=
BDFChar: 403 9836 12 0 5 0 7
Hpi?M6q#8C
BDFChar: 404 9898 12 1 5 1 5
E/9=+Du]k<
BDFChar: 405 9899 12 1 5 1 5
E;95'Du]k<
BDFChar: 406 9900 12 1 4 2 5
@$$IX
BDFChar: 407 9946 12 4 4 0 0
z
BDFChar: 408 10003 12 0 5 0 6
":,PmT\r'8
BDFChar: 409 10004 12 0 5 0 6
":,hUYi&mh
BDFChar: 410 10005 12 0 4 0 4
Leo3jL]@DT
BDFChar: 411 10006 12 0 5 0 5
bku^1r6,-@
BDFChar: 412 10007 12 0 4 0 7
#ak*h?uXbK
BDFChar: 413 10008 12 0 5 0 8
":1CaE,]dKL]@DT
BDFChar: 414 10092 12 0 5 0 8
$lh6Gi,CXq$ig8-
BDFChar: 415 10093 12 0 5 0 8
^u0/k*&qoq^]4?7
BDFChar: 416 10241 12 2 2 0 0
z
BDFChar: 417 10493 12 0 3 0 6
O8oglO8t@B
BDFChar: 418 10494 12 0 3 0 6
&-.dlO8t@B
BDFChar: 419 10495 12 0 3 0 6
O8t@BO8t@B
BDFChar: 420 57502 12 0 5 2 4
quHWp
BDFChar: 421 57503 12 0 5 3 3
qu?]s
BDFChar: 422 57504 12 1 5 -1 8
OLUC6OJ'C>J:IV"
BDFChar: 423 57505 12 1 5 1 9
J:N1>!(^d*8,rVi
BDFChar: 424 57506 12 1 4 1 8
@$$K>nBfPO
BDFChar: 425 57520 12 0 5 -2 9
JAC+4q#('bnDM*4
BDFChar: 426 57521 12 0 5 -2 9
J3Y4g#Qt89&0O5g
BDFChar: 427 57522 12 0 5 -2 9
":Q84I/Nni4<+b4
BDFChar: 428 57523 12 0 5 -2 9
":,P]5_+AM+:ne]
BDFChar: 429 57539 12 0 5 1 5
J:%?EJ,fQL
BDFChar: 430 57540 12 0 5 1 5
TNiUETE"rl
BDFChar: 431 57541 12 0 5 1 5
"S_ul"98E%
BDFChar: 432 57542 12 0 5 1 5
'^-+l'EA+5
EndBitmapFont
EndSplineFont