File: akzidgrostdreg.svg

package info (click to toggle)
node-mongodb 3.6.4%2B~cs11.13.19-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 76,604 kB
  • sloc: javascript: 138,083; python: 429; sh: 52; makefile: 37
file content (1883 lines) | stat: -rwxr-xr-x 124,585 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="akzidenz-grotesk_std_regulaRg" horiz-adv-x="1067" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="555" />
<glyph unicode="&#xfb01;" horiz-adv-x="980" d="M23 829v136h159v84q0 114 4 163t21 91q52 133 229 133q48 0 119 -13v-129q-33 11 -90 11q-63 0 -93 -37.5t-30 -118.5v-184h182v-136h-182v-829h-160v829h-159zM694 0v965h158v-965h-158zM694 1257v189h158v-189h-158z" />
<glyph unicode="&#xfb02;" horiz-adv-x="980" d="M23 829v136h159v84q0 114 4 163t21 91q52 133 229 133q48 0 119 -13v-129q-33 11 -90 11q-63 0 -93 -37.5t-30 -118.5v-184h182v-136h-182v-829h-160v829h-159zM692 0v1446h156v-1446h-156z" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="682" />
<glyph unicode=" "  horiz-adv-x="555" />
<glyph unicode="&#x09;" horiz-adv-x="555" />
<glyph unicode="&#xa0;" horiz-adv-x="555" />
<glyph unicode="!" horiz-adv-x="555" d="M236 0v184h161v-184h-161zM236 879v567h161v-590l-49 -555h-63z" />
<glyph unicode="&#x22;" horiz-adv-x="710" d="M90 1522h182l-57 -602h-65zM438 1522h180l-57 -602h-63z" />
<glyph unicode="#" horiz-adv-x="1366" d="M86 469v158h305l33 221h-291v158h311l64 438h164l-64 -438h226l65 438h160l-62 -438h283v-158h-303l-33 -221h285v-158h-307l-68 -469h-162l68 469h-228l-67 -469h-166l72 469h-285zM553 627h229l31 221h-227z" />
<glyph unicode="$" horiz-adv-x="1280" d="M41 418l209 22q28 -123 113 -207t225 -108v518q-54 16 -96 31t-99.5 40.5t-100 57.5t-81.5 74t-59.5 98.5t-20.5 122.5q0 80 30.5 147t78 110.5t110 75t121.5 47t117 19.5v226h137v-228q53 -8 104 -23t110 -45t106.5 -71t87.5 -104.5t59 -141.5l-191 -18 q-31 99 -101.5 166.5t-174.5 81.5v-484q48 -14 83 -25t91.5 -33t97 -45t87.5 -58.5t76 -74.5t49 -92.5t20 -113.5q0 -121 -71 -218.5t-182 -149.5t-235 -52h-16v-244h-137v244q-197 27 -324 113q-173 117 -223 342zM338 1090q0 -42 17 -77t39.5 -57t60.5 -41.5t65.5 -29 t67.5 -21.5v451q-96 -3 -173 -64t-77 -161zM725 119q69 0 133.5 24t111 79t46.5 130q0 90 -68 146.5t-223 105.5v-485z" />
<glyph unicode="%" horiz-adv-x="1835" d="M53 926q0 63 10 125.5t35 126t62 112t96 79t131 30.5q66 0 126 -30.5t107 -88t75 -150t28 -206.5q0 -58 -8 -116t-31.5 -122.5t-59 -113.5t-96.5 -81t-139 -32q-156 0 -246 130t-90 337zM188 938q0 -22 0.5 -39.5t4.5 -57.5t11 -71t22 -69t35.5 -63t53.5 -42.5t74 -17.5 q91 0 146 82.5t55 261.5q0 92 -15.5 161t-37.5 106t-52 59t-53 28t-47 6q-67 0 -112.5 -48t-65 -123.5t-19.5 -172.5zM508 -6l651 1403l111 -54l-649 -1402zM1069 449q0 63 10 125.5t35 126t62 112t96 79t131 30.5q66 0 126 -30.5t107 -88.5t75 -150.5t28 -206.5 q0 -47 -6 -95t-20 -102t-39.5 -100.5t-61 -84.5t-89 -60t-118.5 -22q-156 0 -246 130t-90 337zM1204 461q0 -22 0.5 -40t4.5 -58t11 -70.5t22 -69t35.5 -63.5t53.5 -42.5t74 -17.5q91 0 146 82.5t55 261.5q0 78 -10.5 139t-28.5 99t-38.5 64t-45.5 38t-43.5 16.5t-38.5 4.5 q-67 0 -112.5 -48t-65 -123.5t-19.5 -172.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1236" d="M78 379q0 74 22.5 138.5t53 108t81 86t88.5 66t93 53.5q-3 7 -14.5 37.5t-14.5 39l-12 34t-11.5 38.5t-7.5 35t-6.5 42t-1.5 41q0 143 90.5 240.5t233.5 97.5q125 0 211 -81.5t86 -207.5q0 -49 -17.5 -97t-39.5 -80.5t-54.5 -64t-49.5 -45t-36 -26.5q-12 -8 -117 -70 q62 -140 205 -365q59 111 96 267h158q-29 -199 -156 -404q15 -21 35 -41.5t66 -42.5t98 -22q17 0 57 6v-170q-44 -8 -77 -8q-60 0 -111 15t-89 42.5t-57 45t-42 44.5q-66 -59 -144.5 -95t-128 -45t-92.5 -9q-47 0 -97.5 12.5t-104.5 42.5t-96.5 74t-69.5 113.5t-27 154.5z M252 399q0 -100 69.5 -179t184.5 -79q119 0 235 107q-24 34 -47.5 72.5t-52.5 88.5t-43 74q-90 152 -115 207q-67 -30 -115.5 -70t-72 -81t-33.5 -75t-10 -65zM512 1133q0 -87 68 -226q116 50 171.5 120t55.5 140q0 59 -38 101.5t-99 42.5q-22 0 -47.5 -9.5t-51 -28.5 t-42.5 -55.5t-17 -84.5z" />
<glyph unicode="'" horiz-adv-x="362" d="M90 1522h182l-57 -602h-65z" />
<glyph unicode="(" horiz-adv-x="645" d="M82 657q0 188 53 365t167.5 339t279.5 273l67 -82q-193 -169 -285 -383t-92 -497q0 -281 103 -527.5t278 -384.5l-65 -94q-242 180 -374 436t-132 555z" />
<glyph unicode=")" horiz-adv-x="653" d="M8 1546l68 94q244 -179 374 -436.5t130 -554.5q0 -294 -132 -557t-370 -420l-68 80q193 169 286 386t93 499t-102 526.5t-279 382.5z" />
<glyph unicode="*" horiz-adv-x="714" d="M37 1178l35 116l209 -55v211h127v-215l210 70l44 -111l-213 -76l129 -170l-99 -76l-135 175l-121 -175l-102 74l121 174z" />
<glyph unicode="+" horiz-adv-x="1482" d="M193 537v159h458v467h180v-467h461v-159h-461v-469h-180v469h-458z" />
<glyph unicode="," horiz-adv-x="468" d="M129 0v223h203v-123q0 -230 -84 -419h-96q67 191 67 319h-90z" />
<glyph unicode="-" horiz-adv-x="757" d="M92 537v155h574v-155h-574z" />
<glyph unicode="." horiz-adv-x="468" d="M131 0v231h203v-231h-203z" />
<glyph unicode="/" horiz-adv-x="681" d="M27 0l477 1438h153l-473 -1438h-157z" />
<glyph unicode="0" horiz-adv-x="1193" d="M100 684q0 205 58 364.5t171 252t265 92.5q217 0 359.5 -188.5t142.5 -508.5q0 -208 -56 -366.5t-170.5 -250t-273.5 -91.5q-47 0 -94 10t-96.5 34t-93.5 60t-83 92t-67.5 126t-45 166t-16.5 208zM283 676q0 -239 82 -384t235 -145q64 0 115 26.5t84 72.5t56 100.5 t34.5 119t16.5 118.5t5 108q0 34 -1.5 68.5t-9 90.5t-19.5 104.5t-35.5 101t-55.5 89.5t-81 61t-109 24q-76 0 -133.5 -33.5t-91.5 -86.5t-55.5 -128t-29 -148.5t-7.5 -158.5z" />
<glyph unicode="1" horiz-adv-x="1193" d="M242 1010v127q128 0 200 30t109 90q34 52 43 123h137v-1380h-192v1010h-297z" />
<glyph unicode="2" horiz-adv-x="1193" d="M158 961q0 210 129 325q122 107 317 107q176 0 297 -103q71 -59 109.5 -148t38.5 -186q0 -150 -91 -298.5t-249 -278.5q-132 -107 -306 -221h662v-158h-903v174q52 27 90.5 50.5t134 97t203.5 174.5q59 54 100.5 100t83 106t63 127.5t21.5 139.5q0 122 -69 193t-191 71 q-71 0 -123 -21.5t-81 -60.5t-42.5 -86t-13.5 -104q0 -66 24 -164h-180q-24 84 -24 164z" />
<glyph unicode="3" horiz-adv-x="1193" d="M82 457h184q4 -57 13 -98.5t30.5 -82.5t55.5 -66.5t91 -41.5t134 -16q19 0 34.5 0.5t48.5 5.5t59 13.5t57.5 27t52 44t35 66t14.5 90.5q0 110 -73.5 171t-229.5 61q-74 0 -135 -6v166q73 -5 104 -5q48 0 90 6t81.5 22t67.5 40.5t45 63.5t17 90q0 59 -26 105.5t-67.5 73 t-89 40.5t-95.5 14q-150 0 -222 -115q-18 -29 -28.5 -68t-13 -65.5t-5.5 -74.5l-182 8q6 114 27 182q20 64 54 114.5t76 80t82.5 49t85.5 28t72.5 11t55.5 2.5q213 0 336.5 -108t123.5 -277q0 -101 -39.5 -173t-128.5 -120q87 -35 148 -119.5t61 -210.5q0 -156 -106 -264 q-131 -133 -373 -133q-83 0 -157 15t-141.5 50.5t-116.5 88.5t-78 133.5t-29 181.5z" />
<glyph unicode="4" horiz-adv-x="1193" d="M86 332v166l659 882h144v-893h201v-155h-201v-332h-178v332h-625zM272 487h439l8 619z" />
<glyph unicode="5" horiz-adv-x="1193" d="M96 430l183 12q7 -56 26.5 -105t53.5 -94t91.5 -71.5t131.5 -26.5q32 0 66.5 7t78.5 29t77.5 58t57 101t23.5 149q0 140 -76.5 229t-222.5 89q-91 0 -161.5 -45t-111.5 -133h-166l46 751h784v-161h-645l-19 -363q126 111 305 111q109 0 198.5 -42t144.5 -111t84.5 -154.5 t29.5 -176.5q0 -96 -31 -183.5t-90 -157.5t-154 -112t-212 -42q-88 0 -162.5 22t-123.5 55t-88 77t-59.5 81.5t-33.5 75.5q-18 57 -25 131z" />
<glyph unicode="6" horiz-adv-x="1193" d="M127 674q0 118 16 221t53 195.5t93.5 159t141.5 105t192 38.5q156 0 266.5 -84t152.5 -273l-178 -24q-14 101 -76 163t-163 62q-73 0 -130 -30t-92.5 -78t-58.5 -114.5t-32 -132.5t-9 -139q45 67 134.5 117.5t207.5 50.5q74 0 147.5 -26.5t139 -78t106.5 -140t41 -199.5 q0 -62 -14.5 -125.5t-49.5 -128t-86 -114t-131 -80.5t-177 -31q-110 0 -213 50t-170 155q-62 95 -86.5 205t-24.5 276zM332 451q0 -128 83 -213.5t210 -85.5q123 0 198.5 87.5t75.5 209.5q0 34 -7.5 70.5t-27 77.5t-50 73t-81.5 53.5t-115 21.5q-62 0 -112 -19.5 t-81.5 -50.5t-53 -71t-30.5 -78t-9 -75z" />
<glyph unicode="7" horiz-adv-x="1193" d="M197 954v426h845v-198q0 -19 -2 -35t-4 -26t-11 -29t-13.5 -27.5t-22 -39t-26.5 -46.5l-72 -125q-284 -490 -330 -854h-217q47 366 418 944l61 96q46 71 57 99t11 78h-547v-263h-147z" />
<glyph unicode="8" horiz-adv-x="1193" d="M106 412q0 104 49.5 192.5t139.5 136.5q-80 54 -117 122t-37 163q0 175 117.5 271t341.5 96q87 0 157.5 -15.5t117 -39t81 -58t52.5 -67t29 -70.5t13.5 -64t2.5 -53q0 -192 -156 -285q31 -19 48.5 -31t49.5 -42t50 -61t32.5 -81.5t14.5 -109.5q0 -84 -29.5 -159t-87 -136 t-155 -97t-222.5 -36q-102 0 -186 25.5t-139.5 67.5t-94 97.5t-55.5 114t-17 119.5zM293 414q0 -71 29 -123.5t77 -80.5t99 -41t104 -13q40 0 78.5 7t79.5 25t71.5 46t50 74t19.5 104q0 56 -18 100t-47.5 71.5t-70.5 44.5t-83 24t-90 7q-84 0 -145.5 -23t-93 -61t-46 -78 t-14.5 -83zM324 1030q0 -28 5.5 -54t23 -57t46 -53.5t80 -37.5t119.5 -15q270 0 270 225q0 34 -14 66t-44 62.5t-87 49.5t-133 19q-115 0 -190.5 -50t-75.5 -155z" />
<glyph unicode="9" horiz-adv-x="1193" d="M106 909q0 67 15 131.5t50.5 128t87.5 111t133 77t181 29.5q251 0 376.5 -179t125.5 -509q0 -352 -153 -553q-121 -157 -359 -157q-91 0 -166 30.5t-123.5 82t-79 109.5t-44.5 122l178 33q47 -222 247 -222q113 0 189 74q66 65 100.5 182t34.5 224q-24 -30 -46 -52.5 t-64.5 -55t-102 -51t-129.5 -18.5q-200 0 -325.5 130.5t-125.5 332.5zM289 899q0 -72 24 -128.5t65.5 -91t92 -52t107.5 -17.5q78 0 138.5 26t95 68t52 90t17.5 97q0 90 -34 166t-106.5 126t-169.5 50q-67 0 -118.5 -23.5t-81.5 -59t-49.5 -82.5t-26 -88t-6.5 -81z" />
<glyph unicode=":" horiz-adv-x="555" d="M217 0v231h203v-231h-203zM217 772v229h203v-229h-203z" />
<glyph unicode=";" horiz-adv-x="555" d="M219 0v227h203v-125q0 -245 -80 -419h-92q51 158 51 317h-82zM219 778v226h203v-226h-203z" />
<glyph unicode="&#x3c;" horiz-adv-x="1482" d="M233 526v183l953 481v-180l-787 -389l787 -388v-186z" />
<glyph unicode="=" horiz-adv-x="1482" d="M203 334v158h1077v-158h-1077zM203 717v160h1077v-160h-1077z" />
<glyph unicode="&#x3e;" horiz-adv-x="1482" d="M295 43v182l786 387l-786 387v187l952 -477v-185z" />
<glyph unicode="?" horiz-adv-x="1150" d="M145 965v36q0 91 31.5 173t88.5 145.5t145.5 101t195.5 37.5q125 0 231.5 -53.5t173 -156t66.5 -232.5q0 -176 -111 -282.5t-278 -115.5v-311h-162v484h64q142 0 229.5 61.5t87.5 185.5q0 123 -90 195t-217 72q-64 0 -114 -20t-80 -51t-49 -73t-26 -82t-7 -82v-32h-179z M514 0v199h182v-199h-182z" />
<glyph unicode="@" horiz-adv-x="1835" d="M141 479q0 193 72.5 372.5t197 313t300.5 213.5t372 80q273 0 442 -159.5t169 -430.5q0 -153 -47 -299q-23 -70 -62 -141t-92.5 -136.5t-125 -107t-146.5 -41.5q-79 0 -124.5 47t-45.5 129q-134 -174 -295 -174q-89 0 -151 49.5t-89 122.5t-27 160q0 95 30.5 196.5 t84 188t137.5 142t181 55.5q83 0 144 -46.5t91 -125.5l31 127h139l-67 -307q-2 -9 -12.5 -55t-14 -62t-11.5 -56t-11 -63.5t-6 -56t-3 -60.5q0 -36 15 -62t49 -26q63 0 133 84q84 98 130 237t46 275q0 228 -136 357t-364 129q-136 0 -262.5 -46.5t-226 -129.5t-175 -191.5 t-115.5 -237.5t-40 -262q0 -193 89 -335.5t239.5 -214.5t341.5 -72q377 0 686 299l67 -84q-155 -155 -348 -241.5t-403 -86.5q-183 0 -357 72q-212 90 -321 260t-109 401zM651 487q0 -88 40.5 -149.5t123.5 -61.5q55 0 101 26.5t76.5 70t53.5 94t35.5 103.5t18.5 93t6 68 q0 81 -46.5 140t-125.5 59q-65 0 -120.5 -44.5t-90 -112t-53.5 -143.5t-19 -143z" />
<glyph unicode="A" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM449 604h432l-211 604z" />
<glyph unicode="B" horiz-adv-x="1409" d="M158 0v1446h694q63 0 123 -15t113 -46t93 -74.5t63.5 -104.5t23.5 -131q0 -111 -60.5 -197.5t-160.5 -115.5q264 -80 264 -363q0 -92 -30.5 -164.5t-77 -115.5t-109 -71t-120 -38t-116.5 -10h-700zM340 170h469q49 0 86.5 4t80.5 18.5t71 40t46.5 71.5t18.5 110 q0 127 -81 193.5t-216 66.5h-475v-504zM340 838h428q45 0 81 4t78.5 18t71 37.5t47.5 66.5t19 101q0 96 -60 153.5t-188 57.5h-477v-438z" />
<glyph unicode="C" horiz-adv-x="1564" d="M100 723q0 225 86 396.5t252.5 267.5t392.5 96q253 0 419.5 -115.5t240.5 -327.5l-195 -39q-20 64 -57.5 120t-93 104t-137.5 76t-179 28q-243 0 -379.5 -163.5t-136.5 -432.5q0 -151 39.5 -269t110.5 -191t164 -110.5t204 -37.5q180 0 313 107.5t167 316.5l209 -25 q-16 -75 -48.5 -148.5t-92.5 -149.5t-137.5 -133t-190.5 -93.5t-244 -36.5q-323 0 -515 209t-192 551z" />
<glyph unicode="D" horiz-adv-x="1449" d="M160 0v1446h573q132 0 243 -46.5t194.5 -135t130.5 -228t47 -315.5q0 -114 -19 -214t-67 -195t-122 -162.5t-192.5 -108.5t-269.5 -41h-518zM358 168h342q220 0 335.5 147t115.5 408q0 121 -26.5 219t-80.5 174t-144 118t-210 42h-332v-1108z" />
<glyph unicode="E" horiz-adv-x="1236" d="M162 0v1446h995v-170h-811v-447h705v-167h-705v-494h836v-168h-1020z" />
<glyph unicode="F" horiz-adv-x="1110" d="M160 0v1446h927v-172h-735v-426h684v-168h-684v-680h-192z" />
<glyph unicode="G" horiz-adv-x="1662" d="M102 705q0 179 57.5 327t158 246t236.5 151.5t294 53.5q74 0 144.5 -11.5t148.5 -41.5t144.5 -76t128 -121t104.5 -170l-201 -51q-45 147 -168.5 229t-294.5 82q-108 0 -198.5 -33.5t-152.5 -90.5t-105 -134t-63 -162t-20 -176q0 -150 44.5 -267t120 -187t170 -106 t200.5 -36q80 0 154 19t137 57.5t109.5 91.5t73 126t26.5 157v20h-504v162h672v-764h-168v203q-23 -39 -64.5 -78t-105.5 -77t-158 -61.5t-201 -23.5q-212 0 -376 94t-253.5 263t-89.5 385z" />
<glyph unicode="H" horiz-adv-x="1492" d="M162 0v1446h190v-615h787v615h194v-1446h-194v662h-787v-662h-190z" />
<glyph unicode="I" horiz-adv-x="468" d="M137 0v1446h195v-1446h-195z" />
<glyph unicode="J" horiz-adv-x="768" d="M18 -16v211q82 -41 191 -41q49 0 96.5 18.5t73.5 56.5q23 34 28 81.5t5 156.5v979h196v-1063q0 -74 -2.5 -111t-20.5 -88.5t-55 -93.5q-109 -127 -315 -127q-85 0 -197 21z" />
<glyph unicode="K" horiz-adv-x="1280" d="M137 0v1446h193v-707l686 707h237l-585 -598l610 -848h-236l-507 713l-205 -209v-504h-193z" />
<glyph unicode="L" d="M139 0v1446h193v-1274h700v-172h-893z" />
<glyph unicode="M" horiz-adv-x="1662" d="M139 0v1446h250l442 -1186l447 1186h250v-1446h-193l27 1212l-457 -1212h-149l-449 1194q21 -1151 21 -1194h-189z" />
<glyph unicode="N" horiz-adv-x="1449" d="M160 0v1446h182l782 -1159q-8 1114 -8 1159h174v-1446h-174l-792 1176q18 -1147 18 -1176h-182z" />
<glyph unicode="O" horiz-adv-x="1662" d="M104 725q0 154 40.5 281t109.5 214.5t163 147.5t198.5 87.5t218.5 27.5q163 0 299 -55.5t230 -154t146 -237t52 -301.5q0 -110 -23.5 -215.5t-79.5 -208t-138 -178.5t-209.5 -123t-283.5 -47q-114 0 -219 29t-197.5 90.5t-160.5 150t-107 215t-39 277.5zM313 723 q0 -281 140.5 -444.5t384.5 -163.5q110 0 202 37.5t162.5 111.5t110 194.5t39.5 276.5q0 90 -16 172t-54.5 160t-96.5 134.5t-148 91t-203 34.5q-111 0 -200.5 -34t-148.5 -91.5t-98.5 -136t-56.5 -163.5t-17 -179z" />
<glyph unicode="P" horiz-adv-x="1280" d="M156 0v1446h686q136 0 231.5 -55.5t139.5 -146t44 -206.5q0 -63 -13.5 -121.5t-45 -115t-78.5 -98t-120 -66.5t-164 -25h-494v-612h-186zM342 784h465q120 0 190 65t70 193q0 121 -70.5 179.5t-187.5 58.5h-467v-496z" />
<glyph unicode="Q" horiz-adv-x="1662" d="M96 723q0 115 27 223t86 206.5t144 171.5t209.5 116t273.5 43q158 0 291 -52t229.5 -148t150.5 -241.5t54 -324.5q0 -133 -31 -236.5t-103 -218.5l224 -192l-123 -144l-230 195q-113 -84 -223 -121t-250 -37q-152 0 -284 50t-231.5 144t-156.5 239.5t-57 326.5zM307 729 q0 -89 17 -173t56.5 -164.5t99 -140t151 -96t205.5 -36.5q109 0 198 35t147.5 93t98.5 137t57 162.5t17 172.5q0 97 -19.5 186t-61.5 167.5t-102.5 136t-148 91t-193.5 33.5q-107 0 -195.5 -34.5t-148 -93t-100.5 -136.5t-59.5 -163.5t-18.5 -176.5z" />
<glyph unicode="R" horiz-adv-x="1366" d="M160 0v1446h651q216 0 342.5 -105.5t126.5 -316.5q0 -70 -16.5 -131t-53.5 -116.5t-106 -94.5t-164 -55l406 -627h-230l-395 614h-373v-614h-188zM348 776h426q316 0 316 248q0 122 -76 192t-213 70h-453v-510z" />
<glyph unicode="S" horiz-adv-x="1366" d="M76 463l207 26q1 -21 3 -39t11 -59t24 -73.5t46.5 -72.5t73 -66.5t108.5 -45t149 -18.5q42 0 84.5 6.5t94 25.5t90.5 49.5t65.5 84t26.5 122.5q0 59 -20 101t-60.5 68.5t-85 42t-109.5 28.5l-131 27q-128 26 -218 58.5t-157.5 80.5t-100 115.5t-32.5 156.5q0 167 138 283 q144 119 374 119q122 0 220.5 -23.5t179.5 -85.5q88 -66 125 -142.5t59 -193.5l-194 -12q0 30 -7 64t-30.5 79t-62 80t-109.5 59.5t-164 24.5q-56 0 -110 -11t-105.5 -35t-83 -71t-31.5 -110q0 -50 21 -88t63.5 -63.5t89 -42.5t115.5 -33l264 -64q26 -6 42.5 -10.5t59.5 -20 t73 -33t69.5 -50t64 -70.5t42.5 -94t18 -121q0 -178 -121 -297q-160 -156 -457 -156q-240 0 -395 100q-190 123 -217 400z" />
<glyph unicode="T" horiz-adv-x="1110" d="M23 1278v168h1058v-168h-432v-1278h-192v1278h-434z" />
<glyph unicode="U" horiz-adv-x="1409" d="M156 457v989h192v-957q0 -77 18.5 -140t58 -114t108 -79.5t161.5 -28.5q98 0 170.5 31.5t113.5 87t60 122.5t19 148v930h194v-969q0 -80 -21 -154t-65.5 -140t-109 -114.5t-158 -77t-205.5 -28.5q-131 0 -235 39t-168.5 107t-98.5 156.5t-34 191.5z" />
<glyph unicode="V" horiz-adv-x="1236" d="M23 1446h204l383 -1208l398 1208h204l-510 -1446h-190z" />
<glyph unicode="W" horiz-adv-x="2091" d="M37 1446h203l342 -1198l366 1198h189l381 -1198l337 1198h199l-442 -1446h-189l-381 1198l-368 -1198h-193z" />
<glyph unicode="X" horiz-adv-x="1280" d="M43 0l481 758l-454 688h229l338 -520l324 520h227l-443 -688l494 -758h-227l-375 588l-371 -588h-223z" />
<glyph unicode="Y" horiz-adv-x="1280" d="M29 1446h227l381 -612l385 612h229l-520 -784v-662h-194v662z" />
<glyph unicode="Z" horiz-adv-x="1236" d="M37 0v188l893 1082h-821v176h1040v-180l-889 -1092h909v-174h-1132z" />
<glyph unicode="[" horiz-adv-x="567" d="M139 -295v1890h377v-120h-213v-1649h213v-121h-377z" />
<glyph unicode="\" horiz-adv-x="681" d="M27 1438h157l473 -1438h-153z" />
<glyph unicode="]" horiz-adv-x="565" d="M47 -172h213v1649h-213v118h377v-1888h-377v121z" />
<glyph unicode="^" horiz-adv-x="1482" d="M231 588l418 858h187l415 -858h-186l-320 694l-321 -694h-193z" />
<glyph unicode="_" horiz-adv-x="1024" d="M-20 -285h1064v-153h-1064v153z" />
<glyph unicode="`" horiz-adv-x="555" d="M143 1362h183l86 -295h-99z" />
<glyph unicode="a" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM246 254q0 -60 45.5 -101.5 t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5z" />
<glyph unicode="b" horiz-adv-x="1150" d="M133 0v1446h164v-615q55 82 143 123t189 41q193 0 318.5 -137.5t125.5 -374.5q0 -146 -48 -260t-150.5 -184t-247.5 -70q-211 0 -330 156v-125h-164zM293 479q0 -53 9.5 -102.5t32 -99t56.5 -86t88 -59.5t121 -23q41 0 80 10.5t80 38t71 69.5t49 112t19 159 q0 164 -86 256t-213 92q-54 0 -104 -18t-97.5 -57.5t-76.5 -115t-29 -176.5z" />
<glyph unicode="c" d="M80 475q0 110 30 203.5t87.5 164.5t147.5 111.5t204 40.5q84 0 155.5 -20.5t120 -53t85 -76t56 -86.5t27.5 -87l-180 -17q-19 106 -87 164t-175 58q-58 0 -108 -21t-92 -64.5t-66.5 -122t-24.5 -184.5q0 -177 78 -283t223 -106q243 0 275 269l176 -17 q-38 -200 -157.5 -289.5t-297.5 -89.5q-223 0 -350 140t-127 366z" />
<glyph unicode="d" horiz-adv-x="1150" d="M80 485q0 108 27 196.5t71.5 145.5t103 96t118.5 55.5t122 16.5q118 0 208 -51.5t124 -105.5v608h164v-1446h-164v123q-25 -29 -47.5 -49.5t-63 -47.5t-96.5 -42t-123 -15q-208 0 -326 143t-118 373zM256 479q0 -54 8.5 -103.5t30.5 -98t55 -83.5t86.5 -57t120.5 -22 q45 0 86.5 11t81.5 38.5t68.5 69.5t46.5 109.5t18 152.5q0 152 -81.5 251t-215.5 99q-64 0 -116.5 -21t-87 -56t-57.5 -82.5t-33.5 -99.5t-10.5 -108z" />
<glyph unicode="e" d="M80 492q0 106 29.5 193t77 143t109.5 95t125 55.5t126 16.5q66 0 127.5 -17t119 -57t100.5 -98t69 -146.5t26 -197.5v-26h-733v-13q0 -47 10 -94t34 -93.5t59 -81.5t89 -57t121 -22q60 0 107.5 22t76.5 58.5t45 71.5t25 73l166 -22q-8 -23 -14.5 -40t-25.5 -53.5 t-39.5 -64t-56 -61t-76.5 -55.5t-99 -37t-125 -15q-93 0 -175 29t-150 88.5t-108 164t-40 241.5zM260 571h551q0 123 -78 210t-198 87q-83 0 -144.5 -43t-92.5 -108t-38 -146z" />
<glyph unicode="f" horiz-adv-x="555" d="M23 829v136h159v84q0 114 4 163t21 91q52 133 229 133q48 0 119 -13v-129q-33 11 -90 11q-63 0 -93 -37.5t-30 -118.5v-184h182v-136h-182v-829h-160v829h-159z" />
<glyph unicode="g" horiz-adv-x="1150" d="M84 477q0 72 13 140.5t45.5 138.5t82 122t128.5 84.5t179 32.5q176 0 316 -161v131h170v-983q0 -103 -25.5 -183t-67.5 -130t-101.5 -81.5t-122 -44t-134.5 -12.5q-115 0 -207.5 36.5t-156 119t-74.5 202.5h184q0 -110 72.5 -167.5t194.5 -57.5q147 0 207.5 73t60.5 218 v186q-126 -172 -318 -172t-319 136.5t-127 371.5zM252 481q0 -163 77 -263.5t228 -100.5q150 0 223.5 105.5t73.5 273.5q0 163 -84 257.5t-219 94.5q-130 0 -214.5 -96t-84.5 -271z" />
<glyph unicode="h" d="M135 0v1446h164v-580q118 129 293 129q84 0 148 -23.5t100.5 -59.5t59.5 -87.5t30.5 -98.5t7.5 -101v-625h-166v565q0 107 -18 160q-23 63 -75 95t-120 32q-20 0 -43 -4t-55 -15t-63.5 -37.5t-53.5 -64.5q-21 -36 -31.5 -84t-12 -79.5t-1.5 -88.5v-479h-164z" />
<glyph unicode="i" horiz-adv-x="425" d="M141 0v965h158v-965h-158zM141 1257v189h158v-189h-158z" />
<glyph unicode="j" horiz-adv-x="425" d="M-47 -315q68 -7 74 -7q43 0 73 21q23 16 28 42.5t5 90.5v1133h160v-1178q0 -48 -1.5 -73t-13.5 -60.5t-36 -61.5q-57 -61 -166 -61q-68 0 -123 8v146zM133 1255v191h160v-191h-160z" />
<glyph unicode="k" horiz-adv-x="937" d="M133 0v1446h166v-891l385 410h201l-359 -381l441 -584h-205l-346 463l-117 -123v-340h-166z" />
<glyph unicode="l" horiz-adv-x="425" d="M137 0v1446h156v-1446h-156z" />
<glyph unicode="m" horiz-adv-x="1579" d="M131 0v965h154v-131q66 77 135.5 119t154.5 42q24 0 51.5 -4.5t72 -26.5t77.5 -59q24 -26 60 -88l37 37t55.5 50.5t59 41t82 38t89.5 11.5q79 0 136 -34.5t87 -71.5q41 -50 53.5 -109t12.5 -143v-637h-162v643q0 60 -18 102t-47 61.5t-56 27.5t-55 8q-71 0 -140.5 -46.5 t-90.5 -113.5q-13 -40 -13 -139v-543h-159v629q0 54 -13.5 94.5t-33 62t-46 34.5t-46.5 16.5t-40 3.5q-67 0 -136 -41t-93 -103q-14 -36 -14 -123v-573h-154z" />
<glyph unicode="n" d="M131 0v965h164v-142q39 68 115 120t188 52q23 0 50.5 -4.5t69 -16.5t83 -41t71.5 -71q37 -53 48.5 -111.5t11.5 -140.5v-610h-162v633q0 105 -63 157t-156 52q-106 0 -181 -73.5t-75 -197.5v-571h-164z" />
<glyph unicode="o" horiz-adv-x="1110" d="M82 481q0 55 10 114t42 133.5t82.5 131t142 96t210.5 39.5q69 0 134 -18.5t124.5 -59t104 -98.5t70.5 -142t26 -185q0 -126 -37.5 -227t-102.5 -165t-150 -97.5t-183 -33.5q-209 0 -341 135t-132 377zM260 473q0 -42 5.5 -84t24 -96.5t48.5 -95t86 -69t129 -28.5 q146 0 222.5 106.5t76.5 297.5q0 67 -14.5 127t-45.5 114.5t-89 86.5t-136 32q-63 0 -113 -19t-81.5 -47t-54.5 -69.5t-33.5 -75.5t-16.5 -76.5t-7 -62t-1 -41.5z" />
<glyph unicode="p" horiz-adv-x="1150" d="M133 -459v1424h160v-138q50 64 140.5 116t203.5 52q78 0 152.5 -31t138.5 -91t103.5 -162.5t39.5 -231.5q0 -70 -13.5 -138t-47 -136.5t-83.5 -120t-129.5 -83.5t-179.5 -32q-97 0 -185 36.5t-140 107.5v-572h-160zM293 465q0 -164 81 -258t222 -94q149 0 228 99.5 t79 272.5q0 93 -26.5 164.5t-71 112t-95 60.5t-104.5 20q-142 0 -227.5 -100t-85.5 -277z" />
<glyph unicode="q" horiz-adv-x="1150" d="M82 465q0 114 26.5 206t69.5 151.5t101.5 99.5t118.5 56.5t124 16.5q31 0 63.5 -5t82.5 -20.5t99 -53.5t85 -95v144h166v-1426h-166v576q-118 -146 -332 -146q-192 0 -315 127t-123 369zM260 469q0 -98 24.5 -171t68 -114.5t95.5 -61.5t113 -20q17 0 34.5 1.5t49 9 t59 20.5t58 39.5t52 61.5t36 90.5t14.5 124.5q0 39 -5 78t-17 85.5t-34.5 85.5t-54.5 72.5t-81.5 52.5t-110.5 19q-301 0 -301 -373z" />
<glyph unicode="r" horiz-adv-x="641" d="M133 0v965h164v-177q37 69 90 111q98 78 240 78v-176q-30 6 -64 6q-90 0 -159 -47.5t-93 -134.5q-14 -57 -14 -179v-446h-164z" />
<glyph unicode="s" horiz-adv-x="980" d="M63 311l187 27q0 -56 10.5 -95.5t42.5 -74.5q67 -74 217 -74q27 0 54 3.5t58.5 14.5t55 28t39.5 47t16 69q0 34 -13.5 59.5t-30.5 40.5t-48.5 26.5t-51.5 16.5t-56 11l-94 18q-189 37 -267 105.5t-78 175.5q0 61 22.5 110.5t59.5 81.5t86 54t101 31t106 9 q136 0 226 -51.5t135 -118.5q39 -59 51 -147l-176 -21q-3 63 -15 91q-22 47 -85 84.5t-158 37.5q-92 0 -141.5 -44t-49.5 -97q0 -31 15 -54t48 -40.5t71.5 -29.5t99.5 -27l94 -23q75 -18 127.5 -38t99.5 -52t70.5 -79.5t23.5 -111.5q0 -136 -114.5 -220.5t-288.5 -84.5 q-113 0 -196.5 26.5t-134.5 75t-78.5 107t-39.5 133.5z" />
<glyph unicode="t" horiz-adv-x="598" d="M33 829v136h155v305h168v-305h174v-136h-174v-620q0 -52 16.5 -74t55.5 -22q40 0 102 22v-135q-112 -16 -155 -16q-113 0 -150 41t-37 133v671h-155z" />
<glyph unicode="u" d="M133 344v621h162v-549q0 -66 0.5 -89.5t5.5 -53t16 -52.5q18 -37 62 -64.5t115 -27.5q20 0 43 3.5t58 13.5t69.5 34t58.5 60q22 33 33 76t12.5 72.5t1.5 82.5v494h160v-965h-162v147q-54 -79 -143 -125.5t-185 -46.5q-22 0 -46.5 3.5t-66 14t-80.5 39t-65 70.5 q-30 51 -39.5 108.5t-9.5 133.5z" />
<glyph unicode="v" horiz-adv-x="894" d="M25 965h170l256 -740l254 740h167l-348 -965h-147z" />
<glyph unicode="w" horiz-adv-x="1492" d="M23 965h176l241 -717l238 717h143l228 -717l251 717h173l-355 -965h-143l-232 719l-235 -719h-150z" />
<glyph unicode="x" horiz-adv-x="811" d="M18 0l299 489l-284 476h188l193 -332l194 332h185l-291 -476l291 -489h-185l-205 344l-200 -344h-185z" />
<glyph unicode="y" horiz-adv-x="894" d="M18 -309q53 -17 109 -17q72 0 109.5 40t78.5 161l41 119l-327 971h174l241 -766l256 766h170l-405 -1141q-32 -89 -56.5 -140.5t-59 -91t-78 -54.5t-107.5 -15q-73 0 -146 20v148z" />
<glyph unicode="z" horiz-adv-x="854" d="M27 0v135l555 688h-502v142h704v-131l-561 -699h574v-135h-770z" />
<glyph unicode="{" horiz-adv-x="575" d="M35 590v123q73 5 107.5 22.5t50.5 61.5t16 133v393q0 144 62.5 212.5t217.5 68.5h60v-119h-33q-34 0 -58 -5t-39.5 -18t-24.5 -26t-13 -39.5t-5 -47.5t-1 -59v-364q0 -126 -34 -182.5t-134 -94.5q94 -28 131 -87.5t37 -186.5v-402q0 -91 31 -124t122 -33h21v-119h-82 q-47 0 -83 7t-70 25.5t-56 49t-35.5 80.5t-13.5 118v394q0 69 -6.5 108t-27.5 63.5t-52 33.5t-88 14z" />
<glyph unicode="|" horiz-adv-x="483" d="M158 -293v1888h164v-1888h-164z" />
<glyph unicode="}" horiz-adv-x="575" d="M25 -184h38q47 0 75 11.5t41.5 40t17.5 59.5t4 85v361q0 127 33.5 183.5t132.5 94.5q-89 23 -127.5 84t-38.5 178v408q0 92 -31 127t-121 35h-24v119h90q55 0 97.5 -12.5t79 -43t56 -88t19.5 -141.5v-412q0 -106 33.5 -145.5t138.5 -48.5v-123q-72 -9 -105.5 -24.5 t-50 -55t-16.5 -117.5v-403q0 -148 -58 -219.5t-211 -71.5h-73v119z" />
<glyph unicode="~" horiz-adv-x="1482" d="M152 588q78 110 152 158.5t171 48.5q53 0 107 -17t166 -67l92 -41q76 -33 104 -42.5t57 -9.5q58 0 114 34t126 116l92 -123q-93 -108 -169 -156.5t-154 -48.5q-56 0 -108.5 15.5t-151.5 62.5l-72 35q-132 63 -213 63q-60 0 -97.5 -26.5t-111.5 -112.5l-12 -14z" />
<glyph unicode="&#xa1;" horiz-adv-x="555" d="M158 0v590l49 555h63l49 -578v-567h-161zM158 1262v184h161v-184h-161z" />
<glyph unicode="&#xa2;" horiz-adv-x="1024" d="M57 485q0 92 26 174.5t76 150.5t131 114.5t185 60.5v197h121v-195q40 -5 70.5 -12.5t79 -29.5t85.5 -54t76 -90.5t64 -136.5l-185 -17q-5 44 -21 79t-35 55.5t-46 37t-45.5 23t-42.5 12.5v-745q40 7 73.5 22.5t65.5 44t52 78t24 115.5l180 -17q-19 -87 -55 -155t-77 -108 t-91 -66t-90.5 -36t-81.5 -12v-211h-123v211q-130 13 -226.5 88t-143 184.5t-46.5 237.5zM231 485q0 -60 10.5 -115t36 -110.5t75.5 -95t120 -53.5v747q-109 -30 -175.5 -121t-66.5 -252z" />
<glyph unicode="&#xa3;" horiz-adv-x="1366" d="M74 575v134h268q-71 116 -98 193t-27 151q0 81 31 151.5t83.5 121t121.5 86.5t145.5 53.5t155.5 17.5q107 0 195.5 -30.5t144.5 -79t94.5 -111t55 -122.5t16.5 -118l-216 -21q3 21 3 39q0 33 -7.5 68.5t-29 77.5t-54 74t-89 53.5t-128.5 21.5q-130 0 -215.5 -71.5 t-85.5 -192.5q0 -53 16.5 -106t32 -82t55.5 -90t54 -84h428v-134h-354q3 -10 13.5 -39t13 -38.5t8 -31t7 -40t1.5 -41.5q0 -64 -23 -156q4 -2 24 -13t34 -18t40 -18t48 -18t51.5 -12t56.5 -5q95 0 148 62.5t55 157.5l190 -13q-5 -51 -17.5 -99.5t-39 -100.5t-63 -90 t-94.5 -62.5t-130 -24.5q-39 0 -79.5 6t-68 12.5t-68.5 22t-57 22.5t-58.5 27t-49.5 23q-136 -119 -288 -119q-55 0 -105.5 19t-87.5 63.5t-37 106.5q0 79 61.5 128.5t161.5 49.5q98 0 205 -37q4 16 4 35q0 50 -27 120t-63 121h-362zM256 143q0 -18 17.5 -33.5t48.5 -15.5 q71 0 143 64q-87 35 -143 35q-25 0 -45.5 -12.5t-20.5 -37.5z" />
<glyph unicode="&#xa4;" horiz-adv-x="1357" d="M92 223l156 152q-58 81 -82.5 154.5t-24.5 166.5q0 92 24 163t83 155l-152 151l113 113l151 -152q78 57 153.5 82t166.5 25q183 0 317 -107l154 154l115 -115l-154 -153q57 -85 81 -157.5t24 -160.5q0 -89 -25 -163t-82 -156l154 -156l-115 -113l-154 156 q-92 -62 -158.5 -84t-158.5 -22q-94 0 -163 23t-155 83l-155 -151zM317 696q0 -157 105.5 -261.5t263.5 -104.5q150 0 252 104.5t102 257.5q0 158 -102.5 263.5t-257.5 105.5q-154 0 -258.5 -105t-104.5 -260z" />
<glyph unicode="&#xa5;" horiz-adv-x="1280" d="M29 1386h229l379 -587l387 587h227l-350 -505h229v-148h-325l-78 -106h403v-148h-399v-479h-192v479h-398v148h398l-66 104h-332v146h232z" />
<glyph unicode="&#xa6;" horiz-adv-x="516" d="M174 -281v822h168v-822h-168zM174 784v824h168v-824h-168z" />
<glyph unicode="&#xa7;" horiz-adv-x="1280" d="M76 760q0 94 54 179t140 134q-43 43 -64.5 85t-21.5 97q0 101 62 176.5t154.5 111.5t197.5 36q124 0 244.5 -39.5t263.5 -109.5l-82 -146q-63 36 -102 56t-95.5 44t-111 35t-111.5 11q-35 0 -72.5 -7.5t-75 -23t-61.5 -45t-24 -68.5q0 -28 12 -51t25.5 -37t43 -29.5 t44 -21t47.5 -17.5q234 -85 352 -141q69 -33 118.5 -65t96.5 -77.5t71.5 -105.5t24.5 -133q0 -99 -52.5 -185t-139.5 -136q102 -92 102 -205q0 -53 -25.5 -109t-74.5 -107t-132.5 -83.5t-187.5 -32.5q-206 0 -534 166l82 152q98 -70 221 -113t237 -43q37 0 71.5 7.5t67 23.5 t52.5 47t20 73q0 21 -5.5 38.5t-18 32t-23.5 25t-32.5 21.5t-34 17t-38.5 17t-36 15q-8 3 -106.5 45.5t-140.5 63.5t-120.5 61.5t-128.5 78.5t-82 77q-71 86 -71 205zM262 780q0 -81 78 -149q33 -29 108.5 -69.5t133.5 -67.5t157 -70.5t111 -48.5q72 27 125 85.5t53 129.5 q0 34 -14 65.5t-34.5 56.5t-55.5 50.5t-65.5 43.5t-76.5 39t-76 32.5t-76.5 30t-66.5 26.5l-131 53q-65 -23 -117.5 -83t-52.5 -124z" />
<glyph unicode="&#xa8;" horiz-adv-x="555" d="M-14 1108v211h178v-211h-178zM387 1108v211h182v-211h-182z" />
<glyph unicode="&#xa9;" horiz-adv-x="1720" d="M131 723q0 200 97 367.5t265 264.5t369 97q117 0 227.5 -36.5t200 -103t157.5 -154.5t105 -197t37 -224q0 -157 -56 -295t-152.5 -236t-232.5 -155t-290 -57q-198 0 -365.5 97t-264.5 264.5t-97 367.5zM205 721q0 -181 86.5 -332t237 -238.5t331.5 -87.5q175 0 326.5 88 t240.5 237t89 321q0 189 -85.5 343t-236 242t-334.5 88q-133 0 -254.5 -52t-209 -140.5t-139.5 -211t-52 -257.5zM438 707q0 217 125.5 355t323.5 138q146 0 236 -67t139 -215l-138 -39q-43 106 -95 147t-144 41q-135 0 -215 -95.5t-80 -256.5q0 -154 75 -244t203 -90 q103 0 165.5 51.5t96.5 161.5l140 -29q-47 -164 -147 -242.5t-257 -78.5q-192 0 -310 128t-118 335z" />
<glyph unicode="&#xaa;" horiz-adv-x="641" d="M61 1020q0 47 18.5 81t48.5 55t80.5 35t101 20t122.5 10v22q0 33 -4 55.5t-15 44t-35 32.5t-61 11q-116 0 -116 -108v-12l-113 8q24 196 227 196q96 0 158 -48.5t62 -153.5v-224q0 -81 45 -81q17 0 30 10v-94q-32 -13 -59 -13q-80 0 -113 76q-37 -40 -80 -62t-108 -22 q-77 0 -133 41t-56 121zM180 1024q0 -40 30.5 -59t70.5 -19q25 0 49 7.5t48 25t39 52t15 81.5v35l-43 -6q-119 -18 -164 -42.5t-45 -74.5z" />
<glyph unicode="&#xab;" horiz-adv-x="811" d="M86 512v174l276 240v-187l-159 -139l159 -137v-182zM410 520v170l274 238v-183l-164 -145l164 -135v-176z" />
<glyph unicode="&#xac;" horiz-adv-x="1482" d="M143 535v163h1160v-686h-183v523h-977z" />
<glyph unicode="&#xad;" horiz-adv-x="757" d="M92 537v155h574v-155h-574z" />
<glyph unicode="&#xae;" horiz-adv-x="1720" d="M131 723q0 200 97 367.5t265 264.5t369 97q117 0 227.5 -36.5t200 -103t157.5 -154.5t105 -197t37 -224q0 -157 -56 -295t-152.5 -236t-232.5 -155t-290 -57q-198 0 -365.5 97t-264.5 264.5t-97 367.5zM207 721q0 -181 86.5 -332t236.5 -238.5t330 -87.5q175 0 326.5 88 t240.5 237t89 321q0 189 -85.5 343t-236 242t-334.5 88q-133 0 -254 -52t-208.5 -140.5t-139 -211t-51.5 -257.5zM575 262v922h267q169 0 247 -63t78 -201q0 -106 -47.5 -168t-148.5 -90l209 -400h-158l-195 387h-110v-387h-142zM719 774h117q98 0 143 34.5t45 109.5 t-48 108t-155 33h-102v-285z" />
<glyph unicode="&#xaf;" horiz-adv-x="555" d="M-14 1108v139h583v-139h-583z" />
<glyph unicode="&#xb0;" horiz-adv-x="724" d="M33 1217q0 137 96.5 233t232.5 96q139 0 234.5 -95.5t95.5 -233.5q0 -137 -96.5 -234.5t-233.5 -97.5t-233 97.5t-96 234.5zM201 1221q0 -66 47.5 -114t113.5 -48q68 0 115 47.5t47 114.5t-47 114t-115 47t-114.5 -47t-46.5 -114z" />
<glyph unicode="&#xb1;" horiz-adv-x="1482" d="M193 0v162h1097v-162h-1097zM193 727v160h458v444h180v-444h461v-160h-461v-448h-180v448h-458z" />
<glyph unicode="&#xb2;" horiz-adv-x="768" d="M90 477v125l21 12q106 64 217 157t166 179q59 90 59 168q0 76 -49 120t-125 44q-79 0 -119.5 -50t-40.5 -128q0 -30 17 -107h-134q-12 54 -12 109q0 134 82.5 213.5t218.5 79.5q127 0 212 -76.5t85 -206.5q0 -123 -97 -250.5t-321 -273.5h428v-115h-608z" />
<glyph unicode="&#xb3;" horiz-adv-x="768" d="M43 770h137q0 -100 55.5 -146t151.5 -46q100 0 144 43.5t44 111.5q0 83 -47 114.5t-127 31.5h-88v120h70q19 0 40 3.5t54.5 15t54.5 42t21 75.5q0 72 -52.5 109.5t-119.5 37.5q-93 0 -134.5 -55.5t-41.5 -147.5v-10h-133v25q0 34 6.5 69t26.5 79t52 77.5t89.5 56.5 t132.5 23q57 0 111 -16t99.5 -47t73 -83.5t27.5 -119.5q0 -142 -147 -187q78 -15 127 -67t49 -148q0 -48 -17.5 -94t-53 -87t-101.5 -66t-152 -25q-81 0 -144 19.5t-101.5 50.5t-63 73.5t-34 83t-9.5 84.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="555" d="M147 1069l84 295h177l-177 -295h-84z" />
<glyph unicode="&#xb5;" horiz-adv-x="1155" d="M176 -442v1405h164v-484q0 -117 9.5 -176.5t35.5 -97.5q28 -41 75 -65.5t101 -24.5q66 0 119 36.5t82 102.5q21 47 28 99.5t7 166.5v443h164v-711q0 -82 13.5 -110.5t53.5 -28.5q23 0 57 14v-131q-57 -14 -88 -14q-84 0 -126 38t-54 125q-46 -91 -105 -129.5t-153 -38.5 q-74 0 -126.5 28.5t-96.5 92.5q8 -481 8 -540h-168z" />
<glyph unicode="&#xb6;" horiz-adv-x="1314" d="M156 1042q0 185 114 294.5t322 109.5h483v-111h-67v-1677h-117v1677h-299v-1677h-117v1004q-147 17 -233 119t-86 261z" />
<glyph unicode="&#xb7;" horiz-adv-x="409" d="M100 467v254h209v-254h-209z" />
<glyph unicode="&#xb8;" horiz-adv-x="555" d="M139 -197l150 230l59 -15l-59 -106l49 -27q38 -21 58 -57t20 -68q0 -83 -74.5 -129.5t-175.5 -46.5h-10v47q6 -2 20 -2q35 0 60.5 21t25.5 55q0 19 -7.5 33.5t-23.5 25t-28 16t-35 13t-29 10.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="768" d="M164 1139v92q44 3 74.5 9.5t60.5 23t49 48.5t27 81h102v-916h-137v662h-176z" />
<glyph unicode="&#xba;" horiz-adv-x="681" d="M53 1149q0 83 26.5 146.5t70 99.5t92.5 53.5t102 17.5q134 0 209.5 -91t75.5 -218q0 -134 -77.5 -218.5t-211.5 -84.5q-130 0 -208.5 85.5t-78.5 209.5zM170 1157q0 -35 7.5 -68.5t25 -68t53.5 -55.5t86 -21q75 0 122.5 52t47.5 165q0 53 -15 98.5t-55.5 80t-101.5 34.5 q-74 0 -122 -53.5t-48 -163.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="811" d="M127 274v185l164 143l-164 137v174l274 -231v-170zM446 279v184l162 141l-162 135v183l277 -232v-172z" />
<glyph unicode="&#xbc;" horiz-adv-x="1792" d="M164 1139v92q44 3 74.5 9.5t60.5 23t49 48.5t27 81h102v-916h-137v662h-176zM508 -6l651 1403l111 -54l-649 -1402zM1069 223v119l438 580h109v-584h131v-115h-133v-223h-129v223h-416zM1206 338h281l4 391z" />
<glyph unicode="&#xbd;" horiz-adv-x="1792" d="M164 1139v92q44 3 74.5 9.5t60.5 23t49 48.5t27 81h102v-916h-137v662h-176zM459 -6l651 1403l111 -54l-650 -1402zM1114 0v125l23 12q124 67 224 161t148 161q68 99 68 184q0 22 -7.5 47t-24.5 53t-53 46t-85 18q-81 0 -122.5 -50t-41.5 -130q0 -24 2.5 -41.5t8.5 -39.5 t6 -24h-134q-12 54 -12 107q0 135 82.5 214t218.5 79q126 0 210.5 -76t84.5 -207q0 -124 -95.5 -250t-320.5 -272h428v-117h-608z" />
<glyph unicode="&#xbe;" horiz-adv-x="1792" d="M43 770h137q0 -100 55.5 -146t151.5 -46q100 0 144 43.5t44 111.5q0 83 -47 114.5t-127 31.5h-88v120h70q19 0 40 3.5t54.5 15t54.5 42t21 75.5q0 72 -52.5 109.5t-119.5 37.5q-93 0 -134.5 -55.5t-41.5 -147.5v-10h-133v25q0 34 6.5 69t26.5 79t52 77.5t89.5 56.5 t132.5 23q57 0 111 -16t99.5 -47t73 -83.5t27.5 -119.5q0 -142 -147 -187q78 -15 127 -67t49 -148q0 -48 -17.5 -94t-53 -87t-101.5 -66t-152 -25q-81 0 -144 19.5t-101.5 50.5t-63 73.5t-34 83t-9.5 84.5zM596 -6l651 1403l111 -54l-649 -1402zM1069 223v119l438 580h109 v-584h131v-115h-133v-223h-129v223h-416zM1206 338h281l4 391z" />
<glyph unicode="&#xbf;" horiz-adv-x="1150" d="M76 430q0 176 111 282t278 115v312h162v-484h-64q-142 0 -229.5 -61.5t-87.5 -185.5q0 -123 90 -195t217 -72q64 0 114 20t80 51t49 73t26 82t7 82v32h179v-37q0 -122 -53 -224.5t-160 -167t-248 -64.5q-125 0 -231.5 53.5t-173 156t-66.5 232.5zM455 1247v199h182v-199 h-182z" />
<glyph unicode="&#xc0;" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM446 1833h203l96 -254h-120zM449 604h432l-211 604z" />
<glyph unicode="&#xc1;" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM449 604h432l-211 604zM573 1579l99 254h202l-178 -254h-123z" />
<glyph unicode="&#xc2;" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM385 1579l207 254h133l219 -254h-158l-127 152l-120 -152h-154zM449 604h432l-211 604z" />
<glyph unicode="&#xc3;" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM375 1610q7 57 24 97.5t34.5 60t42.5 30.5t38.5 12.5t32.5 1.5q47 0 126 -33.5t122 -33.5q26 0 37.5 13.5t21.5 47.5h96q-4 -30 -8 -51t-15.5 -53t-27.5 -52t-44 -35.5t-64 -15.5q-49 0 -137 36t-119 36 q-46 0 -62 -61h-98zM449 604h432l-211 604z" />
<glyph unicode="&#xc4;" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM377 1599v209h178v-209h-178zM449 604h432l-211 604zM778 1599v209h180v-209h-180z" />
<glyph unicode="&#xc5;" horiz-adv-x="1323" d="M20 0l551 1446h201l526 -1446h-202l-158 442h-551l-162 -442h-205zM449 604h432l-211 604zM475 1739q0 80 57.5 136t139.5 56q80 0 137 -56.5t57 -137.5t-58 -138t-138 -57q-82 0 -138.5 57.5t-56.5 139.5zM567 1737q0 -43 31 -73t74 -30q41 0 71.5 31t30.5 74 t-30.5 72.5t-73.5 29.5t-73 -30.5t-30 -73.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="2134" d="M-4 0l989 1446h1067v-170h-809v-473h653v-162h-653v-473h834v-168h-1024v475h-516l-316 -475h-225zM649 641h404v619z" />
<glyph unicode="&#xc7;" horiz-adv-x="1564" d="M100 727q0 223 87 393.5t254 266.5t393 96q116 0 215.5 -26t170.5 -68.5t126.5 -101t89.5 -119.5t55 -128l-195 -41q-49 148 -166.5 239t-298.5 91q-75 0 -145 -18t-139 -62t-120 -110.5t-82.5 -172.5t-31.5 -239q0 -90 17 -173.5t56 -163t97 -138t147 -94t199 -35.5 q191 0 320.5 112.5t161.5 313.5l209 -25q-20 -104 -77.5 -203t-141.5 -177t-199 -126t-240 -49l-33 -57l23 -12q22 -11 34.5 -20.5t31.5 -26.5t28.5 -41t9.5 -52q0 -77 -69.5 -126.5t-190.5 -49.5v47q4 -2 15 -2q44 0 68 22.5t24 51.5q0 39 -28 58.5t-95 41.5l106 162 q-141 1 -264 51t-217.5 143.5t-149.5 240t-55 327.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1236" d="M162 0v1446h995v-170h-811v-447h705v-167h-705v-494h836v-168h-1020zM426 1833h203l96 -254h-121z" />
<glyph unicode="&#xc9;" horiz-adv-x="1236" d="M162 0v1446h995v-170h-811v-447h705v-167h-705v-494h836v-168h-1020zM553 1579l98 254h203l-178 -254h-123z" />
<glyph unicode="&#xca;" horiz-adv-x="1236" d="M162 0v1446h995v-170h-811v-447h705v-167h-705v-494h836v-168h-1020zM375 1579l207 254h133l219 -254h-158l-127 152l-121 -152h-153z" />
<glyph unicode="&#xcb;" horiz-adv-x="1236" d="M162 0v1446h995v-170h-811v-447h705v-167h-705v-494h836v-168h-1020zM360 1599v209h179v-209h-179zM762 1599v209h180v-209h-180z" />
<glyph unicode="&#xcc;" horiz-adv-x="468" d="M20 1833h203l96 -254h-120zM137 0v1446h195v-1446h-195z" />
<glyph unicode="&#xcd;" horiz-adv-x="468" d="M137 0v1446h195v-1446h-195zM150 1579l98 254h203l-179 -254h-122z" />
<glyph unicode="&#xce;" horiz-adv-x="468" d="M-41 1579l207 254h133l219 -254h-158l-127 152l-120 -152h-154zM137 0v1446h195v-1446h-195z" />
<glyph unicode="&#xcf;" horiz-adv-x="468" d="M-55 1599v209h178v-209h-178zM137 0v1446h195v-1446h-195zM346 1599v209h180v-209h-180z" />
<glyph unicode="&#xd0;" horiz-adv-x="1449" d="M27 698v123h133v625h508q61 0 94 -1t84 -8.5t94 -21.5q91 -31 164.5 -89t128.5 -143.5t85 -206t30 -267.5q0 -36 -1.5 -67t-11 -96.5t-26 -119.5t-51.5 -122.5t-83 -120t-124.5 -97.5t-171.5 -68q-85 -18 -220 -18h-499v698h-133zM358 168h256q187 0 271 35 q125 51 195.5 181.5t70.5 330.5q0 455 -313 540q-82 21 -222 21h-258v-455h344v-123h-344v-530z" />
<glyph unicode="&#xd1;" horiz-adv-x="1449" d="M160 0v1446h182l782 -1159q-8 1114 -8 1159h174v-1446h-174l-792 1176q18 -1147 18 -1176h-182zM438 1610q7 57 24 97.5t34.5 60t42.5 30.5t38.5 12.5t32.5 1.5q47 0 126 -33.5t122 -33.5q26 0 38 13.5t22 47.5h96q-5 -38 -12 -65.5t-23.5 -64t-48 -57t-76.5 -20.5 q-49 0 -137 36t-119 36q-23 0 -37.5 -13.5t-23.5 -47.5h-99z" />
<glyph unicode="&#xd2;" horiz-adv-x="1662" d="M104 725q0 154 40.5 281t109.5 214.5t163 147.5t198.5 87.5t218.5 27.5q163 0 299 -55.5t230 -154t146 -237t52 -301.5q0 -110 -23.5 -215.5t-79.5 -208t-138 -178.5t-209.5 -123t-283.5 -47q-114 0 -219 29t-197.5 90.5t-160.5 150t-107 215t-39 277.5zM313 723 q0 -281 140.5 -444.5t384.5 -163.5q110 0 202 37.5t162.5 111.5t110 194.5t39.5 276.5q0 90 -16 172t-54.5 160t-96.5 134.5t-148 91t-203 34.5q-111 0 -200.5 -34t-148.5 -91.5t-98.5 -136t-56.5 -163.5t-17 -179zM618 1833h203l97 -254h-121z" />
<glyph unicode="&#xd3;" horiz-adv-x="1662" d="M104 725q0 154 40.5 281t109.5 214.5t163 147.5t198.5 87.5t218.5 27.5q163 0 299 -55.5t230 -154t146 -237t52 -301.5q0 -110 -23.5 -215.5t-79.5 -208t-138 -178.5t-209.5 -123t-283.5 -47q-114 0 -219 29t-197.5 90.5t-160.5 150t-107 215t-39 277.5zM313 723 q0 -281 140.5 -444.5t384.5 -163.5q110 0 202 37.5t162.5 111.5t110 194.5t39.5 276.5q0 90 -16 172t-54.5 160t-96.5 134.5t-148 91t-203 34.5q-111 0 -200.5 -34t-148.5 -91.5t-98.5 -136t-56.5 -163.5t-17 -179zM745 1579l99 254h203l-179 -254h-123z" />
<glyph unicode="&#xd4;" horiz-adv-x="1662" d="M104 725q0 154 40.5 281t109.5 214.5t163 147.5t198.5 87.5t218.5 27.5q163 0 299 -55.5t230 -154t146 -237t52 -301.5q0 -110 -23.5 -215.5t-79.5 -208t-138 -178.5t-209.5 -123t-283.5 -47q-114 0 -219 29t-197.5 90.5t-160.5 150t-107 215t-39 277.5zM313 723 q0 -281 140.5 -444.5t384.5 -163.5q110 0 202 37.5t162.5 111.5t110 194.5t39.5 276.5q0 90 -16 172t-54.5 160t-96.5 134.5t-148 91t-203 34.5q-111 0 -200.5 -34t-148.5 -91.5t-98.5 -136t-56.5 -163.5t-17 -179zM555 1579l207 254h133l219 -254h-158l-127 152l-120 -152 h-154z" />
<glyph unicode="&#xd5;" horiz-adv-x="1662" d="M104 725q0 154 40.5 281t109.5 214.5t163 147.5t198.5 87.5t218.5 27.5q163 0 299 -55.5t230 -154t146 -237t52 -301.5q0 -110 -23.5 -215.5t-79.5 -208t-138 -178.5t-209.5 -123t-283.5 -47q-114 0 -219 29t-197.5 90.5t-160.5 150t-107 215t-39 277.5zM313 723 q0 -281 140.5 -444.5t384.5 -163.5q110 0 202 37.5t162.5 111.5t110 194.5t39.5 276.5q0 90 -16 172t-54.5 160t-96.5 134.5t-148 91t-203 34.5q-111 0 -200.5 -34t-148.5 -91.5t-98.5 -136t-56.5 -163.5t-17 -179zM545 1610q7 57 24 97.5t34.5 60t42.5 30.5t38.5 12.5 t32.5 1.5q47 0 126 -33.5t122 -33.5q26 0 37.5 13.5t21.5 47.5h96q-4 -30 -8 -51t-15.5 -53t-27.5 -52t-44 -35.5t-64 -15.5q-49 0 -137 36t-119 36q-46 0 -62 -61h-98z" />
<glyph unicode="&#xd6;" horiz-adv-x="1662" d="M104 725q0 154 40.5 281t109.5 214.5t163 147.5t198.5 87.5t218.5 27.5q163 0 299 -55.5t230 -154t146 -237t52 -301.5q0 -110 -23.5 -215.5t-79.5 -208t-138 -178.5t-209.5 -123t-283.5 -47q-114 0 -219 29t-197.5 90.5t-160.5 150t-107 215t-39 277.5zM313 723 q0 -281 140.5 -444.5t384.5 -163.5q110 0 202 37.5t162.5 111.5t110 194.5t39.5 276.5q0 90 -16 172t-54.5 160t-96.5 134.5t-148 91t-203 34.5q-111 0 -200.5 -34t-148.5 -91.5t-98.5 -136t-56.5 -163.5t-17 -179zM551 1599v209h178v-209h-178zM952 1599v209h181v-209h-181 z" />
<glyph unicode="&#xd7;" horiz-adv-x="1482" d="M270 940l127 127l334 -328l322 328l114 -113l-321 -327l334 -328l-125 -127l-334 326l-324 -328l-114 113l323 327z" />
<glyph unicode="&#xd8;" horiz-adv-x="1662" d="M96 121l142 135q-26 45 -42 76.5t-41.5 95t-39 138.5t-13.5 157q0 103 24 205.5t79.5 203.5t136.5 178t206.5 125t278.5 48q87 0 157 -12.5t130.5 -40.5t103.5 -56t105 -76l141 134l99 -105l-144 -139q144 -212 144 -461q0 -59 -10 -124t-35 -140.5t-62.5 -145.5 t-97.5 -135t-135 -113t-179.5 -77t-226.5 -29q-147 0 -257.5 42.5t-229.5 139.5l-133 -127zM315 717q0 -167 66 -322l807 774q-144 160 -367 160q-127 0 -226 -49.5t-159 -135t-90.5 -194t-30.5 -233.5zM459 268q84 -82 169.5 -117.5t202.5 -35.5q109 0 199 36.5t148 95.5 t98 136.5t57 156t17 158.5q0 192 -78 351z" />
<glyph unicode="&#xd9;" horiz-adv-x="1409" d="M156 457v989h192v-957q0 -77 18.5 -140t58 -114t108 -79.5t161.5 -28.5q98 0 170.5 31.5t113.5 87t60 122.5t19 148v930h194v-969q0 -80 -21 -154t-65.5 -140t-109 -114.5t-158 -77t-205.5 -28.5q-131 0 -235 39t-168.5 107t-98.5 156.5t-34 191.5zM489 1833h203l96 -254 h-120z" />
<glyph unicode="&#xda;" horiz-adv-x="1409" d="M156 457v989h192v-957q0 -77 18.5 -140t58 -114t108 -79.5t161.5 -28.5q98 0 170.5 31.5t113.5 87t60 122.5t19 148v930h194v-969q0 -80 -21 -154t-65.5 -140t-109 -114.5t-158 -77t-205.5 -28.5q-131 0 -235 39t-168.5 107t-98.5 156.5t-34 191.5zM618 1579l99 254h203 l-179 -254h-123z" />
<glyph unicode="&#xdb;" horiz-adv-x="1409" d="M156 457v989h192v-957q0 -77 18.5 -140t58 -114t108 -79.5t161.5 -28.5q98 0 170.5 31.5t113.5 87t60 122.5t19 148v930h194v-969q0 -80 -21 -154t-65.5 -140t-109 -114.5t-158 -77t-205.5 -28.5q-131 0 -235 39t-168.5 107t-98.5 156.5t-34 191.5zM428 1579l207 254h133 l219 -254h-158l-127 152l-120 -152h-154z" />
<glyph unicode="&#xdc;" horiz-adv-x="1409" d="M156 457v989h192v-957q0 -77 18.5 -140t58 -114t108 -79.5t161.5 -28.5q98 0 170.5 31.5t113.5 87t60 122.5t19 148v930h194v-969q0 -80 -21 -154t-65.5 -140t-109 -114.5t-158 -77t-205.5 -28.5q-131 0 -235 39t-168.5 107t-98.5 156.5t-34 191.5zM412 1599v209h178 v-209h-178zM813 1599v209h180v-209h-180z" />
<glyph unicode="&#xdd;" horiz-adv-x="1280" d="M29 1446h227l381 -612l385 612h229l-520 -784v-662h-194v662zM553 1579l98 254h203l-178 -254h-123z" />
<glyph unicode="&#xde;" horiz-adv-x="1280" d="M156 0v1446h186v-264h510q106 0 187 -36.5t127 -97t68.5 -131t22.5 -147.5q0 -63 -14 -121.5t-47 -114t-81 -96t-121.5 -65.5t-164.5 -25h-487v-348h-186zM342 518h453q36 0 62.5 3t59 13t60.5 33t51 58q39 59 39 149q0 64 -21 111t-49 71t-69 38t-69 17t-60 3h-457v-496 z" />
<glyph unicode="&#xdf;" horiz-adv-x="1110" d="M131 0v1036q0 68 2.5 108.5t18.5 97t47 99.5q99 142 331 142q163 0 263 -72q129 -92 129 -258q0 -19 -3 -42t-14 -59.5t-30 -68t-54.5 -63t-83.5 -50.5q57 -8 104 -31.5t76 -51t51 -63t32 -60t16 -48.5q14 -59 14 -141q0 -321 -199 -436q-107 -62 -245 -62q-84 0 -193 31 v172q3 -1 23 -8t35.5 -11.5t40 -11t51 -9.5t53.5 -3q138 0 207 94q61 85 61 228q0 132 -69 213q-55 64 -139 88t-246 24v162q29 -4 84 -4q132 0 198 59t66 146q0 89 -63 136.5t-154 47.5q-49 0 -88.5 -9.5t-65 -24.5t-44 -39t-28 -46t-15 -53.5t-6.5 -54t-1 -53.5v-1051 h-162z" />
<glyph unicode="&#xe0;" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM246 254q0 -60 45.5 -101.5 t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5zM305 1362h182l86 -295h-98z" />
<glyph unicode="&#xe1;" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM246 254q0 -60 45.5 -101.5 t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5zM444 1069l84 295h177l-177 -295h-84z" />
<glyph unicode="&#xe2;" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM225 1071l193 309h137 l213 -309h-154l-125 195l-120 -195h-144zM246 254q0 -60 45.5 -101.5t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM225 1104q24 203 168 203 q47 0 131 -34t111 -34q24 0 38.5 13.5t17.5 25t3 22.5h103q-5 -40 -12.5 -70t-24 -63.5t-48 -52t-75.5 -18.5q-46 0 -132.5 34.5t-115.5 34.5q-33 0 -48 -22t-15 -39h-101zM246 254q0 -60 45.5 -101.5t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76 q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM215 1108v211h178v-211h-178 zM246 254q0 -60 45.5 -101.5t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5zM616 1108v211h183v-211h-183z" />
<glyph unicode="&#xe5;" horiz-adv-x="1024" d="M66 250q0 130 104 209q120 90 391 108l148 11v32q0 26 -0.5 43t-5 47.5t-12 50.5t-23.5 44.5t-38 39.5t-57 25t-79 10q-101 0 -155 -48.5t-54 -139.5v-14l-170 10q0 14 2.5 32.5t11.5 50.5t24 62t43.5 62t65.5 55.5t95 39t128 15.5q145 0 242 -57q50 -29 80 -61.5t44 -80 t17.5 -90.5t3.5 -118v-340q0 -22 0.5 -34.5t4.5 -29.5t11.5 -26t22 -16t35.5 -7q13 0 49 8v-137q-55 -18 -104 -18q-69 0 -103 24q-27 20 -45 57t-20 62q-21 -22 -34.5 -36t-47 -40t-65.5 -41.5t-81 -28t-102 -12.5q-145 0 -236 76.5t-91 200.5zM246 254q0 -60 45.5 -101.5 t136.5 -41.5q32 0 64 5.5t73 23.5t72 47.5t52.5 83t21.5 124.5v76q-8 -1 -55.5 -8t-79 -12.5t-76.5 -13.5t-79 -17.5t-56 -18.5q-16 -6 -32 -15.5t-38 -26.5t-35.5 -44.5t-13.5 -60.5zM311 1245q0 80 57 137.5t136 57.5q87 0 140.5 -60.5t53.5 -134.5q0 -82 -56 -138 t-138 -56q-81 0 -137 57t-56 137zM399 1247q0 -43 31 -74.5t74 -31.5q44 0 75 31.5t31 74.5t-31 74t-75 31t-74.5 -31t-30.5 -74z" />
<glyph unicode="&#xe6;" horiz-adv-x="1662" d="M68 242q0 89 51.5 160t134.5 108q62 27 136.5 37t191.5 10h149v39q0 112 -63.5 193t-171.5 81q-83 0 -142 -50t-65 -144l-172 12q10 85 41 139q23 41 60 75.5t110 63.5t164 29q226 0 325 -172q120 172 332 172q201 0 328 -155q118 -150 118 -391v-11h-700q0 -148 70 -239 q75 -97 206 -97q91 0 154.5 57t81.5 148l172 -26q-28 -110 -113 -191q-127 -121 -315 -121q-247 0 -363 203q-158 -203 -391 -203q-89 0 -162 29.5t-120 93t-47 150.5zM238 248q0 -54 48 -102t144 -48q73 0 133 30.5t95 78.5t54 103t19 108v20h-129q-161 0 -262.5 -49 t-101.5 -141zM893 557h528q-7 129 -73 207q-25 32 -77 64t-120 32q-47 0 -103 -25t-100 -90q-55 -82 -55 -188z" />
<glyph unicode="&#xe7;" d="M80 475q0 110 30 203.5t87.5 164.5t147.5 111.5t204 40.5q84 0 155.5 -20.5t120 -53t85 -76t56 -86.5t27.5 -87l-180 -17q-19 106 -87 164t-175 58q-58 0 -108 -21t-92 -64.5t-66.5 -122t-24.5 -184.5q0 -177 78 -283t223 -106q243 0 275 269l176 -17 q-37 -189 -144.5 -279.5t-267.5 -95.5l-37 -61l23 -11.5t35 -20t32.5 -26.5t28.5 -41t10 -53q0 -77 -69.5 -126.5t-190.5 -49.5v47q4 -2 14 -2q44 0 68.5 22.5t24.5 51.5q0 20 -8.5 35.5t-24.5 26t-29 16.5t-34 13l-27 9l106 168q-207 9 -324.5 148t-117.5 356z" />
<glyph unicode="&#xe8;" d="M80 492q0 106 29.5 193t77 143t109.5 95t125 55.5t126 16.5q66 0 127.5 -17t119 -57t100.5 -98t69 -146.5t26 -197.5v-26h-733v-13q0 -47 10 -94t34 -93.5t59 -81.5t89 -57t121 -22q60 0 107.5 22t76.5 58.5t45 71.5t25 73l166 -22q-8 -23 -14.5 -40t-25.5 -53.5 t-39.5 -64t-56 -61t-76.5 -55.5t-99 -37t-125 -15q-93 0 -175 29t-150 88.5t-108 164t-40 241.5zM260 571h551q0 123 -78 210t-198 87q-83 0 -144.5 -43t-92.5 -108t-38 -146zM352 1362h183l86 -295h-99z" />
<glyph unicode="&#xe9;" d="M80 492q0 106 29.5 193t77 143t109.5 95t125 55.5t126 16.5q66 0 127.5 -17t119 -57t100.5 -98t69 -146.5t26 -197.5v-26h-733v-13q0 -47 10 -94t34 -93.5t59 -81.5t89 -57t121 -22q60 0 107.5 22t76.5 58.5t45 71.5t25 73l166 -22q-8 -23 -14.5 -40t-25.5 -53.5 t-39.5 -64t-56 -61t-76.5 -55.5t-99 -37t-125 -15q-93 0 -175 29t-150 88.5t-108 164t-40 241.5zM260 571h551q0 123 -78 210t-198 87q-83 0 -144.5 -43t-92.5 -108t-38 -146zM467 1069l84 295h176l-176 -295h-84z" />
<glyph unicode="&#xea;" d="M80 492q0 106 29.5 193t77 143t109.5 95t125 55.5t126 16.5q66 0 127.5 -17t119 -57t100.5 -98t69 -146.5t26 -197.5v-26h-733v-13q0 -47 10 -94t34 -93.5t59 -81.5t89 -57t121 -22q60 0 107.5 22t76.5 58.5t45 71.5t25 73l166 -22q-8 -23 -14.5 -40t-25.5 -53.5 t-39.5 -64t-56 -61t-76.5 -55.5t-99 -37t-125 -15q-93 0 -175 29t-150 88.5t-108 164t-40 241.5zM260 571h551q0 123 -78 210t-198 87q-83 0 -144.5 -43t-92.5 -108t-38 -146zM268 1071l193 309h137l213 -309h-154l-125 195l-120 -195h-144z" />
<glyph unicode="&#xeb;" d="M80 492q0 106 29.5 193t77 143t109.5 95t125 55.5t126 16.5q66 0 127.5 -17t119 -57t100.5 -98t69 -146.5t26 -197.5v-26h-733v-13q0 -47 10 -94t34 -93.5t59 -81.5t89 -57t121 -22q60 0 107.5 22t76.5 58.5t45 71.5t25 73l166 -22q-8 -23 -14.5 -40t-25.5 -53.5 t-39.5 -64t-56 -61t-76.5 -55.5t-99 -37t-125 -15q-93 0 -175 29t-150 88.5t-108 164t-40 241.5zM260 571h551q0 123 -78 210t-198 87q-83 0 -144.5 -43t-92.5 -108t-38 -146zM266 1108v211h178v-211h-178zM668 1108v211h182v-211h-182z" />
<glyph unicode="&#xec;" horiz-adv-x="425" d="M33 1362h182l86 -295h-98zM137 0v965h158v-965h-158z" />
<glyph unicode="&#xed;" horiz-adv-x="425" d="M137 0v965h158v-965h-158zM141 1069l84 295h176l-176 -295h-84z" />
<glyph unicode="&#xee;" horiz-adv-x="425" d="M-51 1071l192 309h138l213 -309h-154l-125 195l-121 -195h-143zM137 0v965h158v-965h-158z" />
<glyph unicode="&#xef;" horiz-adv-x="425" d="M-76 1108v211h178v-211h-178zM137 0v965h158v-965h-158zM326 1108v211h182v-211h-182z" />
<glyph unicode="&#xf0;" horiz-adv-x="1110" d="M82 481q0 113 29.5 204t76 147.5t109 94.5t124.5 53t126 15q162 0 274 -116q-6 25 -16 61t-40.5 109t-66.5 122l-364 -118l-37 92l338 112q-18 24 -42 50.5t-41 43t-37.5 36t-25.5 24.5l127 59q19 -17 31 -28.5t26 -27t22 -25l32 -38t43 -51.5l174 60l39 -96l-152 -50 q109 -173 153 -342t44 -364q0 -71 -12.5 -140.5t-46 -143.5t-85 -129t-137 -90.5t-194.5 -35.5q-90 0 -163.5 23t-121 58.5t-83.5 85t-55 96t-30.5 99t-14.5 86t-3 64.5zM260 473q0 -73 16 -136.5t49.5 -118t93 -86.5t138.5 -32q132 0 213.5 96t81.5 302q0 188 -79.5 277 t-205.5 89q-71 0 -126.5 -24.5t-89 -62.5t-54.5 -91.5t-29 -104.5t-8 -108z" />
<glyph unicode="&#xf1;" d="M131 0v965h164v-142q39 68 115 120t188 52q23 0 50.5 -4.5t69 -16.5t83 -41t71.5 -71q37 -53 48.5 -111.5t11.5 -140.5v-610h-162v633q0 105 -63 157t-156 52q-106 0 -181 -73.5t-75 -197.5v-571h-164zM246 1104q24 203 168 203q47 0 130.5 -34t110.5 -34q24 0 38.5 13 t18 25t3.5 23h102q-5 -40 -12.5 -70t-24 -63.5t-48 -52t-75.5 -18.5q-46 0 -132 34.5t-115 34.5q-33 0 -48.5 -22t-15.5 -39h-100z" />
<glyph unicode="&#xf2;" horiz-adv-x="1110" d="M82 481q0 55 10 114t42 133.5t82.5 131t142 96t210.5 39.5q69 0 134 -18.5t124.5 -59t104 -98.5t70.5 -142t26 -185q0 -126 -37.5 -227t-102.5 -165t-150 -97.5t-183 -33.5q-209 0 -341 135t-132 377zM260 473q0 -42 5.5 -84t24 -96.5t48.5 -95t86 -69t129 -28.5 q146 0 222.5 106.5t76.5 297.5q0 67 -14.5 127t-45.5 114.5t-89 86.5t-136 32q-63 0 -113 -19t-81.5 -47t-54.5 -69.5t-33.5 -75.5t-16.5 -76.5t-7 -62t-1 -41.5zM358 1362h183l86 -295h-99z" />
<glyph unicode="&#xf3;" horiz-adv-x="1110" d="M82 481q0 55 10 114t42 133.5t82.5 131t142 96t210.5 39.5q69 0 134 -18.5t124.5 -59t104 -98.5t70.5 -142t26 -185q0 -126 -37.5 -227t-102.5 -165t-150 -97.5t-183 -33.5q-209 0 -341 135t-132 377zM260 473q0 -42 5.5 -84t24 -96.5t48.5 -95t86 -69t129 -28.5 q146 0 222.5 106.5t76.5 297.5q0 67 -14.5 127t-45.5 114.5t-89 86.5t-136 32q-63 0 -113 -19t-81.5 -47t-54.5 -69.5t-33.5 -75.5t-16.5 -76.5t-7 -62t-1 -41.5zM498 1069l84 295h176l-176 -295h-84z" />
<glyph unicode="&#xf4;" horiz-adv-x="1110" d="M82 481q0 55 10 114t42 133.5t82.5 131t142 96t210.5 39.5q69 0 134 -18.5t124.5 -59t104 -98.5t70.5 -142t26 -185q0 -126 -37.5 -227t-102.5 -165t-150 -97.5t-183 -33.5q-209 0 -341 135t-132 377zM260 473q0 -42 5.5 -84t24 -96.5t48.5 -95t86 -69t129 -28.5 q146 0 222.5 106.5t76.5 297.5q0 67 -14.5 127t-45.5 114.5t-89 86.5t-136 32q-63 0 -113 -19t-81.5 -47t-54.5 -69.5t-33.5 -75.5t-16.5 -76.5t-7 -62t-1 -41.5zM291 1071l192 309h138l213 -309h-154l-125 195l-121 -195h-143z" />
<glyph unicode="&#xf5;" horiz-adv-x="1110" d="M82 481q0 55 10 114t42 133.5t82.5 131t142 96t210.5 39.5q69 0 134 -18.5t124.5 -59t104 -98.5t70.5 -142t26 -185q0 -126 -37.5 -227t-102.5 -165t-150 -97.5t-183 -33.5q-209 0 -341 135t-132 377zM260 473q0 -42 5.5 -84t24 -96.5t48.5 -95t86 -69t129 -28.5 q146 0 222.5 106.5t76.5 297.5q0 67 -14.5 127t-45.5 114.5t-89 86.5t-136 32q-63 0 -113 -19t-81.5 -47t-54.5 -69.5t-33.5 -75.5t-16.5 -76.5t-7 -62t-1 -41.5zM270 1104q24 203 168 203q47 0 131 -34t111 -34q24 0 38.5 13.5t17.5 25t3 22.5h103q-5 -40 -12.5 -70 t-24 -63.5t-48 -52t-75.5 -18.5q-46 0 -132.5 34.5t-115.5 34.5q-33 0 -48 -22t-15 -39h-101z" />
<glyph unicode="&#xf6;" horiz-adv-x="1110" d="M82 481q0 55 10 114t42 133.5t82.5 131t142 96t210.5 39.5q69 0 134 -18.5t124.5 -59t104 -98.5t70.5 -142t26 -185q0 -126 -37.5 -227t-102.5 -165t-150 -97.5t-183 -33.5q-209 0 -341 135t-132 377zM260 473q0 -42 5.5 -84t24 -96.5t48.5 -95t86 -69t129 -28.5 q146 0 222.5 106.5t76.5 297.5q0 67 -14.5 127t-45.5 114.5t-89 86.5t-136 32q-63 0 -113 -19t-81.5 -47t-54.5 -69.5t-33.5 -75.5t-16.5 -76.5t-7 -62t-1 -41.5zM272 1108v211h179v-211h-179zM674 1108v211h182v-211h-182z" />
<glyph unicode="&#xf7;" horiz-adv-x="1482" d="M162 532v166h1159v-166h-1159zM651 168v225h183v-225h-183zM651 838v225h183v-225h-183z" />
<glyph unicode="&#xf8;" horiz-adv-x="1110" d="M78 92l88 86q-82 132 -82 299q0 122 41 223q56 136 172.5 215.5t261.5 79.5q174 0 315 -125l91 88l71 -73l-94 -94q88 -138 88 -312q0 -104 -31 -194q-13 -36 -31 -71t-55.5 -81.5t-84 -81t-118.5 -58.5t-157 -24q-197 0 -322 131l-81 -82zM256 496q0 -105 35 -193 l473 459q-17 19 -30 30.5t-41 31t-64 30t-78 10.5q-124 0 -209.5 -99.5t-85.5 -268.5zM346 211q9 -13 20.5 -26t37.5 -35t67 -36t88 -14q129 0 216 98.5t87 272.5q0 121 -41 201z" />
<glyph unicode="&#xf9;" d="M133 344v621h162v-549q0 -66 0.5 -89.5t5.5 -53t16 -52.5q18 -37 62 -64.5t115 -27.5q20 0 43 3.5t58 13.5t69.5 34t58.5 60q22 33 33 76t12.5 72.5t1.5 82.5v494h160v-965h-162v147q-54 -79 -143 -125.5t-185 -46.5q-22 0 -46.5 3.5t-66 14t-80.5 39t-65 70.5 q-30 51 -39.5 108.5t-9.5 133.5zM336 1362h182l86 -295h-98z" />
<glyph unicode="&#xfa;" d="M133 344v621h162v-549q0 -66 0.5 -89.5t5.5 -53t16 -52.5q18 -37 62 -64.5t115 -27.5q20 0 43 3.5t58 13.5t69.5 34t58.5 60q22 33 33 76t12.5 72.5t1.5 82.5v494h160v-965h-162v147q-54 -79 -143 -125.5t-185 -46.5q-22 0 -46.5 3.5t-66 14t-80.5 39t-65 70.5 q-30 51 -39.5 108.5t-9.5 133.5zM477 1069l84 295h176l-176 -295h-84z" />
<glyph unicode="&#xfb;" d="M133 344v621h162v-549q0 -66 0.5 -89.5t5.5 -53t16 -52.5q18 -37 62 -64.5t115 -27.5q20 0 43 3.5t58 13.5t69.5 34t58.5 60q22 33 33 76t12.5 72.5t1.5 82.5v494h160v-965h-162v147q-54 -79 -143 -125.5t-185 -46.5q-22 0 -46.5 3.5t-66 14t-80.5 39t-65 70.5 q-30 51 -39.5 108.5t-9.5 133.5zM268 1071l193 309h137l213 -309h-154l-125 195l-120 -195h-144z" />
<glyph unicode="&#xfc;" d="M133 344v621h162v-549q0 -66 0.5 -89.5t5.5 -53t16 -52.5q18 -37 62 -64.5t115 -27.5q20 0 43 3.5t58 13.5t69.5 34t58.5 60q22 33 33 76t12.5 72.5t1.5 82.5v494h160v-965h-162v147q-54 -79 -143 -125.5t-185 -46.5q-22 0 -46.5 3.5t-66 14t-80.5 39t-65 70.5 q-30 51 -39.5 108.5t-9.5 133.5zM238 1108v211h178v-211h-178zM639 1108v211h182v-211h-182z" />
<glyph unicode="&#xfd;" horiz-adv-x="894" d="M18 -309q53 -17 109 -17q72 0 109.5 40t78.5 161l41 119l-327 971h174l241 -766l256 766h170l-405 -1141q-32 -89 -56.5 -140.5t-59 -91t-78 -54.5t-107.5 -15q-73 0 -146 20v148zM401 1069l84 295h177l-177 -295h-84z" />
<glyph unicode="&#xfe;" horiz-adv-x="1150" d="M133 -459v1905h160v-621q142 170 346 170q54 0 110.5 -16t115 -55t103.5 -95.5t74 -145.5t29 -198q0 -103 -27.5 -194t-81 -164t-141.5 -115.5t-200 -42.5q-110 0 -194 40t-134 104v-572h-160zM293 461q0 -70 18 -131.5t54 -110.5t96 -77.5t137 -28.5q146 0 225.5 97.5 t79.5 272.5q0 69 -17 131t-51 114t-93 83t-136 31q-64 0 -119 -22.5t-99 -67.5t-69.5 -119.5t-25.5 -171.5z" />
<glyph unicode="&#xff;" horiz-adv-x="894" d="M18 -309q53 -17 109 -17q72 0 109.5 40t78.5 161l41 119l-327 971h174l241 -766l256 766h170l-405 -1141q-32 -89 -56.5 -140.5t-59 -91t-78 -54.5t-107.5 -15q-73 0 -146 20v148zM160 1108v211h178v-211h-178zM561 1108v211h182v-211h-182z" />
<glyph unicode="&#x152;" horiz-adv-x="2347" d="M102 729q0 175 55.5 319t151 238.5t221.5 145.5t269 51q299 0 467 -189v152h1003v-172h-819v-449h661v-168h-661v-489h842v-168h-1026v168q-189 -205 -475 -205q-106 0 -206 31t-187.5 94.5t-153.5 153.5t-104 215.5t-38 271.5zM307 721q0 -117 31.5 -223.5t91 -190.5 t154 -134t211.5 -50q35 0 73.5 6.5t91.5 24t106.5 58t94.5 99.5q61 89 83 193.5t22 234.5q0 142 -32 251.5t-80 172.5t-113 103t-122.5 53.5t-117.5 13.5q-218 0 -356 -166t-138 -446z" />
<glyph unicode="&#x153;" horiz-adv-x="1792" d="M86 483q0 186 82 310q21 33 50 63t76 64t114.5 54.5t146.5 20.5q213 0 350 -178q127 178 352 178q223 0 347 -166q38 -50 63 -113t34.5 -123t12 -92.5t2.5 -62.5h-727q0 -130 70 -223q88 -115 229 -115q50 0 92.5 17.5t68.5 41.5t46 56.5t28.5 53.5t14.5 42l166 -22 q-12 -35 -29.5 -70.5t-54 -83t-81 -82.5t-114 -59.5t-149.5 -24.5q-117 0 -213.5 51t-157.5 142q-126 -193 -356 -193q-88 0 -168.5 30t-147.5 89.5t-107 161.5t-40 233zM260 473q0 -170 79.5 -268.5t203.5 -98.5q133 0 207.5 105t74.5 266q0 173 -74.5 277t-207.5 104 q-54 0 -102.5 -22t-90 -66.5t-66 -121t-24.5 -175.5zM989 561h547q-7 73 -31 130t-53.5 88.5t-67 51.5t-66.5 26.5t-56 6.5q-65 0 -117 -27.5t-83.5 -73t-49.5 -96.5t-23 -106z" />
<glyph unicode="&#x178;" horiz-adv-x="1280" d="M29 1446h227l381 -612l385 612h229l-520 -784v-662h-194v662zM350 1599v209h178v-209h-178zM752 1599v209h180v-209h-180z" />
<glyph unicode="&#x2c6;" horiz-adv-x="555" d="M6 1071l193 309h137l213 -309h-154l-125 195l-120 -195h-144z" />
<glyph unicode="&#x2dc;" horiz-adv-x="555" d="M-8 1104q24 203 168 203q47 0 130.5 -34t110.5 -34q24 0 38.5 13t18 25t3.5 23h102q-5 -40 -12.5 -70t-24 -63.5t-48 -52t-75.5 -18.5q-46 0 -132 34.5t-115 34.5q-33 0 -48.5 -22t-15.5 -39h-100z" />
<glyph unicode="&#x2000;" horiz-adv-x="965" />
<glyph unicode="&#x2001;" horiz-adv-x="1931" />
<glyph unicode="&#x2002;" horiz-adv-x="965" />
<glyph unicode="&#x2003;" horiz-adv-x="1931" />
<glyph unicode="&#x2004;" horiz-adv-x="643" />
<glyph unicode="&#x2005;" horiz-adv-x="482" />
<glyph unicode="&#x2006;" horiz-adv-x="321" />
<glyph unicode="&#x2007;" horiz-adv-x="321" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="386" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="757" d="M92 537v155h574v-155h-574z" />
<glyph unicode="&#x2011;" horiz-adv-x="757" d="M92 537v155h574v-155h-574z" />
<glyph unicode="&#x2012;" horiz-adv-x="757" d="M92 537v155h574v-155h-574z" />
<glyph unicode="&#x2013;" horiz-adv-x="1228" d="M92 537v155h1045v-155h-1045z" />
<glyph unicode="&#x2014;" horiz-adv-x="1832" d="M92 537v155h1649v-155h-1649z" />
<glyph unicode="&#x2018;" horiz-adv-x="468" d="M129 901v105q0 131 18 216.5t68 223.5h96q-52 -154 -67 -322h88v-223h-203z" />
<glyph unicode="&#x2019;" horiz-adv-x="468" d="M129 1221v225h203v-107q0 -243 -84 -438h-96q67 191 67 320h-90z" />
<glyph unicode="&#x201a;" horiz-adv-x="468" d="M129 0v223h203v-123q0 -230 -84 -419h-96q67 191 67 319h-90z" />
<glyph unicode="&#x201c;" horiz-adv-x="768" d="M129 901v117q0 231 86 428h96q-67 -184 -67 -322h88v-223h-203zM434 901v117q0 231 86 428h94q-27 -63 -45 -155.5t-20 -166.5h88v-223h-203z" />
<glyph unicode="&#x201d;" horiz-adv-x="768" d="M129 1221v225h203v-125q0 -231 -84 -420h-96q67 191 67 320h-90zM434 1221v225h203v-137q0 -213 -86 -408h-94q30 88 43 153.5t22 166.5h-88z" />
<glyph unicode="&#x201e;" horiz-adv-x="768" d="M129 0v223h203v-123q0 -230 -84 -419h-96q67 191 67 319h-90zM434 0v223h203v-137q0 -206 -86 -405h-94q52 156 65 319h-88z" />
<glyph unicode="&#x2022;" horiz-adv-x="681" d="M109 494v464h466v-464h-466z" />
<glyph unicode="&#x2026;" horiz-adv-x="2048" d="M244 0v190h192v-190h-192zM926 0v190h194v-190h-194zM1610 0v190h194v-190h-194z" />
<glyph unicode="&#x202f;" horiz-adv-x="386" />
<glyph unicode="&#x2039;" horiz-adv-x="512" d="M98 520v170l275 238v-183l-164 -145l164 -135v-176z" />
<glyph unicode="&#x203a;" horiz-adv-x="512" d="M139 274v185l164 143l-164 137v174l275 -231v-170z" />
<glyph unicode="&#x205f;" horiz-adv-x="482" />
<glyph unicode="&#x20ac;" horiz-adv-x="1433" d="M47 547l47 127h103q0 67 4 100h-154l47 127h121q53 280 229.5 431t460.5 151q154 0 269 -32.5t215 -121.5l-66 -186q-77 98 -173 142t-224 44q-208 0 -334 -110.5t-168 -317.5h817l-45 -127h-786v-41q0 -11 1 -33t1 -26h749l-45 -127h-690q37 -202 167 -312t335 -110 q135 0 256 53t202 154v-217q-190 -152 -483 -152q-284 0 -466 152t-228 432h-162z" />
<glyph unicode="&#x2122;" horiz-adv-x="1421" d="M47 1346v100h512v-100h-194v-580h-121v580h-197zM629 766v680h159l168 -543l162 543h154v-680h-111l4 534l-159 -534h-111l-154 526q2 -456 2 -526h-114z" />
<glyph unicode="&#x25fc;" horiz-adv-x="962" d="M0 0v963h963v-963h-963z" />
<hkern u1="&#x2c;" u2="&#x37;" k="168" />
<hkern u1="&#x2c;" u2="&#x2a;" k="340" />
<hkern u1="&#x2d;" u2="Y" k="127" />
<hkern u1="&#x2d;" u2="X" k="127" />
<hkern u1="&#x2d;" u2="T" k="127" />
<hkern u1="&#x2d;" u2="J" k="84" />
<hkern u1="&#x2d;" u2="&#x37;" k="127" />
<hkern u1="&#x2e;" u2="&#x37;" k="168" />
<hkern u1="&#x2e;" u2="&#x2a;" k="340" />
<hkern u1="&#x2f;" u2="&#xdc;" k="-86" />
<hkern u1="&#x2f;" u2="&#xdb;" k="-86" />
<hkern u1="&#x2f;" u2="&#xda;" k="-86" />
<hkern u1="&#x2f;" u2="&#xd9;" k="-86" />
<hkern u1="&#x2f;" u2="&#xc6;" k="84" />
<hkern u1="&#x2f;" u2="&#xc5;" k="84" />
<hkern u1="&#x2f;" u2="&#xc4;" k="84" />
<hkern u1="&#x2f;" u2="&#xc3;" k="84" />
<hkern u1="&#x2f;" u2="&#xc2;" k="84" />
<hkern u1="&#x2f;" u2="&#xc1;" k="84" />
<hkern u1="&#x2f;" u2="&#xc0;" k="84" />
<hkern u1="&#x2f;" u2="Z" k="-86" />
<hkern u1="&#x2f;" u2="U" k="-86" />
<hkern u1="&#x2f;" u2="R" k="-86" />
<hkern u1="&#x2f;" u2="P" k="-86" />
<hkern u1="&#x2f;" u2="N" k="-86" />
<hkern u1="&#x2f;" u2="M" k="-86" />
<hkern u1="&#x2f;" u2="L" k="-86" />
<hkern u1="&#x2f;" u2="K" k="-86" />
<hkern u1="&#x2f;" u2="J" k="127" />
<hkern u1="&#x2f;" u2="I" k="-86" />
<hkern u1="&#x2f;" u2="H" k="-86" />
<hkern u1="&#x2f;" u2="F" k="-86" />
<hkern u1="&#x2f;" u2="E" k="-86" />
<hkern u1="&#x2f;" u2="D" k="-86" />
<hkern u1="&#x2f;" u2="B" k="-86" />
<hkern u1="&#x2f;" u2="A" k="84" />
<hkern u1="&#x30;" u2="&#x39;" k="-43" />
<hkern u1="&#x30;" u2="&#x38;" k="-43" />
<hkern u1="&#x30;" u2="&#x37;" k="84" />
<hkern u1="&#x30;" u2="&#x36;" k="-43" />
<hkern u1="&#x30;" u2="&#x34;" k="-43" />
<hkern u1="&#x30;" u2="&#x31;" k="96" />
<hkern u1="&#x31;" u2="&#x37;" k="84" />
<hkern u1="&#x31;" u2="&#x30;" k="209" />
<hkern u1="&#x32;" u2="&#x37;" k="41" />
<hkern u1="&#x33;" u2="&#x39;" k="-43" />
<hkern u1="&#x33;" u2="&#x38;" k="-43" />
<hkern u1="&#x33;" u2="&#x37;" k="84" />
<hkern u1="&#x33;" u2="&#x36;" k="-43" />
<hkern u1="&#x33;" u2="&#x34;" k="-43" />
<hkern u1="&#x33;" u2="&#x30;" k="-43" />
<hkern u1="&#x34;" u2="&#x39;" k="-43" />
<hkern u1="&#x34;" u2="&#x38;" k="-43" />
<hkern u1="&#x34;" u2="&#x37;" k="84" />
<hkern u1="&#x34;" u2="&#x36;" k="-43" />
<hkern u1="&#x34;" u2="&#x34;" k="-43" />
<hkern u1="&#x34;" u2="&#x30;" k="-43" />
<hkern u1="&#x35;" u2="&#x39;" k="-43" />
<hkern u1="&#x35;" u2="&#x38;" k="-43" />
<hkern u1="&#x35;" u2="&#x37;" k="84" />
<hkern u1="&#x35;" u2="&#x36;" k="-43" />
<hkern u1="&#x35;" u2="&#x34;" k="-43" />
<hkern u1="&#x35;" u2="&#x30;" k="-43" />
<hkern u1="&#x36;" u2="&#x39;" k="-43" />
<hkern u1="&#x36;" u2="&#x38;" k="-43" />
<hkern u1="&#x36;" u2="&#x37;" k="84" />
<hkern u1="&#x36;" u2="&#x36;" k="-43" />
<hkern u1="&#x36;" u2="&#x34;" k="-43" />
<hkern u1="&#x36;" u2="&#x30;" k="-43" />
<hkern u1="&#x37;" u2="&#x2014;" k="84" />
<hkern u1="&#x37;" u2="&#x2013;" k="84" />
<hkern u1="&#x37;" u2="&#xad;" k="84" />
<hkern u1="&#x37;" u2="&#x39;" k="84" />
<hkern u1="&#x37;" u2="&#x38;" k="84" />
<hkern u1="&#x37;" u2="&#x37;" k="84" />
<hkern u1="&#x37;" u2="&#x36;" k="84" />
<hkern u1="&#x37;" u2="&#x34;" k="168" />
<hkern u1="&#x37;" u2="&#x33;" k="84" />
<hkern u1="&#x37;" u2="&#x32;" k="84" />
<hkern u1="&#x37;" u2="&#x30;" k="84" />
<hkern u1="&#x37;" u2="&#x2f;" k="127" />
<hkern u1="&#x37;" u2="&#x2e;" k="297" />
<hkern u1="&#x37;" u2="&#x2d;" k="84" />
<hkern u1="&#x37;" u2="&#x2c;" k="297" />
<hkern u1="&#x38;" u2="&#x39;" k="-43" />
<hkern u1="&#x38;" u2="&#x38;" k="-43" />
<hkern u1="&#x38;" u2="&#x37;" k="84" />
<hkern u1="&#x38;" u2="&#x36;" k="-43" />
<hkern u1="&#x38;" u2="&#x34;" k="-43" />
<hkern u1="&#x38;" u2="&#x30;" k="-43" />
<hkern u1="&#x39;" u2="&#x39;" k="-43" />
<hkern u1="&#x39;" u2="&#x38;" k="-43" />
<hkern u1="&#x39;" u2="&#x37;" k="84" />
<hkern u1="&#x39;" u2="&#x36;" k="-43" />
<hkern u1="&#x39;" u2="&#x34;" k="-43" />
<hkern u1="&#x39;" u2="&#x30;" k="-43" />
<hkern u1="A" u2="w" k="41" />
<hkern u1="A" u2="v" k="41" />
<hkern u1="A" u2="Z" k="-43" />
<hkern u1="A" u2="Y" k="168" />
<hkern u1="A" u2="W" k="84" />
<hkern u1="A" u2="V" k="84" />
<hkern u1="A" u2="T" k="168" />
<hkern u1="A" u2="S" k="41" />
<hkern u1="A" u2="Q" k="41" />
<hkern u1="A" u2="J" k="-43" />
<hkern u1="A" u2="G" k="41" />
<hkern u1="A" u2="&#x3f;" k="127" />
<hkern u1="B" u2="&#x153;" k="-43" />
<hkern u1="B" u2="&#xf8;" k="-43" />
<hkern u1="B" u2="&#xf6;" k="-43" />
<hkern u1="B" u2="&#xf5;" k="-43" />
<hkern u1="B" u2="&#xf4;" k="-43" />
<hkern u1="B" u2="&#xf3;" k="-43" />
<hkern u1="B" u2="&#xf2;" k="-43" />
<hkern u1="B" u2="&#xe5;" k="-43" />
<hkern u1="B" u2="&#xe4;" k="-43" />
<hkern u1="B" u2="&#xe3;" k="-43" />
<hkern u1="B" u2="&#xe2;" k="-43" />
<hkern u1="B" u2="&#xe1;" k="-43" />
<hkern u1="B" u2="&#xe0;" k="-43" />
<hkern u1="B" u2="&#xdc;" k="-86" />
<hkern u1="B" u2="&#xdb;" k="-86" />
<hkern u1="B" u2="&#xda;" k="-86" />
<hkern u1="B" u2="&#xd9;" k="-86" />
<hkern u1="B" u2="&#xd8;" k="-86" />
<hkern u1="B" u2="&#xd6;" k="-86" />
<hkern u1="B" u2="&#xd5;" k="-86" />
<hkern u1="B" u2="&#xd4;" k="-86" />
<hkern u1="B" u2="&#xd3;" k="-86" />
<hkern u1="B" u2="&#xd2;" k="-86" />
<hkern u1="B" u2="&#xc7;" k="-86" />
<hkern u1="B" u2="o" k="-43" />
<hkern u1="B" u2="a" k="-43" />
<hkern u1="B" u2="Z" k="-43" />
<hkern u1="B" u2="Y" k="84" />
<hkern u1="B" u2="X" k="-43" />
<hkern u1="B" u2="U" k="-86" />
<hkern u1="B" u2="S" k="-86" />
<hkern u1="B" u2="R" k="-86" />
<hkern u1="B" u2="Q" k="-43" />
<hkern u1="B" u2="P" k="-86" />
<hkern u1="B" u2="O" k="-86" />
<hkern u1="B" u2="N" k="-86" />
<hkern u1="B" u2="M" k="-86" />
<hkern u1="B" u2="L" k="-86" />
<hkern u1="B" u2="K" k="-86" />
<hkern u1="B" u2="I" k="-86" />
<hkern u1="B" u2="H" k="-86" />
<hkern u1="B" u2="G" k="-86" />
<hkern u1="B" u2="F" k="-86" />
<hkern u1="B" u2="E" k="-86" />
<hkern u1="B" u2="D" k="-86" />
<hkern u1="B" u2="C" k="-86" />
<hkern u1="B" u2="B" k="-86" />
<hkern u1="B" u2="&#x2f;" k="-86" />
<hkern u1="C" u2="Z" k="-43" />
<hkern u1="C" u2="Y" k="84" />
<hkern u1="C" u2="T" k="41" />
<hkern u1="C" u2="S" k="-43" />
<hkern u1="C" u2="R" k="-43" />
<hkern u1="C" u2="Q" k="-43" />
<hkern u1="C" u2="P" k="-43" />
<hkern u1="C" u2="N" k="-43" />
<hkern u1="C" u2="M" k="-43" />
<hkern u1="C" u2="L" k="-43" />
<hkern u1="C" u2="K" k="-43" />
<hkern u1="C" u2="J" k="41" />
<hkern u1="C" u2="I" k="-43" />
<hkern u1="C" u2="H" k="-43" />
<hkern u1="C" u2="G" k="-43" />
<hkern u1="C" u2="F" k="-43" />
<hkern u1="C" u2="E" k="-43" />
<hkern u1="C" u2="D" k="-43" />
<hkern u1="C" u2="B" k="-43" />
<hkern u1="D" u2="Z" k="-43" />
<hkern u1="D" u2="Y" k="127" />
<hkern u1="D" u2="X" k="84" />
<hkern u1="D" u2="W" k="41" />
<hkern u1="D" u2="V" k="41" />
<hkern u1="D" u2="T" k="84" />
<hkern u1="D" u2="S" k="-43" />
<hkern u1="D" u2="R" k="-43" />
<hkern u1="D" u2="Q" k="-43" />
<hkern u1="D" u2="P" k="-43" />
<hkern u1="D" u2="N" k="-43" />
<hkern u1="D" u2="M" k="-43" />
<hkern u1="D" u2="L" k="-43" />
<hkern u1="D" u2="K" k="-43" />
<hkern u1="D" u2="J" k="41" />
<hkern u1="D" u2="I" k="-43" />
<hkern u1="D" u2="H" k="-43" />
<hkern u1="D" u2="G" k="-43" />
<hkern u1="D" u2="F" k="-43" />
<hkern u1="D" u2="E" k="-43" />
<hkern u1="D" u2="D" k="-43" />
<hkern u1="D" u2="B" k="-43" />
<hkern u1="E" u2="Z" k="-86" />
<hkern u1="E" u2="X" k="-43" />
<hkern u1="E" u2="S" k="-43" />
<hkern u1="E" u2="R" k="-86" />
<hkern u1="E" u2="Q" k="-43" />
<hkern u1="E" u2="P" k="-86" />
<hkern u1="E" u2="N" k="-86" />
<hkern u1="E" u2="M" k="-86" />
<hkern u1="E" u2="L" k="-86" />
<hkern u1="E" u2="K" k="-86" />
<hkern u1="E" u2="I" k="-86" />
<hkern u1="E" u2="H" k="-86" />
<hkern u1="E" u2="G" k="-43" />
<hkern u1="E" u2="F" k="-86" />
<hkern u1="E" u2="E" k="-86" />
<hkern u1="E" u2="D" k="-86" />
<hkern u1="E" u2="B" k="-86" />
<hkern u1="E" u2="&#x2f;" k="-86" />
<hkern u1="F" u2="&#x153;" k="41" />
<hkern u1="F" u2="&#xff;" k="41" />
<hkern u1="F" u2="&#xfd;" k="41" />
<hkern u1="F" u2="&#xf8;" k="41" />
<hkern u1="F" u2="&#xf6;" k="41" />
<hkern u1="F" u2="&#xf5;" k="41" />
<hkern u1="F" u2="&#xf4;" k="41" />
<hkern u1="F" u2="&#xf3;" k="41" />
<hkern u1="F" u2="&#xf2;" k="41" />
<hkern u1="F" u2="&#xeb;" k="41" />
<hkern u1="F" u2="&#xea;" k="41" />
<hkern u1="F" u2="&#xe9;" k="41" />
<hkern u1="F" u2="&#xe8;" k="41" />
<hkern u1="F" u2="&#xe7;" k="41" />
<hkern u1="F" u2="&#xdc;" k="-43" />
<hkern u1="F" u2="&#xdb;" k="-43" />
<hkern u1="F" u2="&#xda;" k="-43" />
<hkern u1="F" u2="&#xd9;" k="-43" />
<hkern u1="F" u2="&#xc6;" k="127" />
<hkern u1="F" u2="&#xc5;" k="127" />
<hkern u1="F" u2="&#xc4;" k="127" />
<hkern u1="F" u2="&#xc3;" k="127" />
<hkern u1="F" u2="&#xc2;" k="127" />
<hkern u1="F" u2="&#xc1;" k="127" />
<hkern u1="F" u2="&#xc0;" k="127" />
<hkern u1="F" u2="y" k="41" />
<hkern u1="F" u2="w" k="41" />
<hkern u1="F" u2="v" k="41" />
<hkern u1="F" u2="q" k="41" />
<hkern u1="F" u2="o" k="41" />
<hkern u1="F" u2="g" k="41" />
<hkern u1="F" u2="e" k="41" />
<hkern u1="F" u2="d" k="41" />
<hkern u1="F" u2="c" k="41" />
<hkern u1="F" u2="Z" k="-43" />
<hkern u1="F" u2="X" k="41" />
<hkern u1="F" u2="W" k="-43" />
<hkern u1="F" u2="V" k="-43" />
<hkern u1="F" u2="U" k="-43" />
<hkern u1="F" u2="S" k="-43" />
<hkern u1="F" u2="R" k="-43" />
<hkern u1="F" u2="Q" k="-43" />
<hkern u1="F" u2="P" k="-43" />
<hkern u1="F" u2="N" k="-43" />
<hkern u1="F" u2="M" k="-43" />
<hkern u1="F" u2="L" k="-43" />
<hkern u1="F" u2="K" k="-43" />
<hkern u1="F" u2="J" k="168" />
<hkern u1="F" u2="I" k="-43" />
<hkern u1="F" u2="H" k="-43" />
<hkern u1="F" u2="F" k="-43" />
<hkern u1="F" u2="E" k="-43" />
<hkern u1="F" u2="D" k="-43" />
<hkern u1="F" u2="B" k="-43" />
<hkern u1="F" u2="A" k="127" />
<hkern u1="F" u2="&#x2e;" k="211" />
<hkern u1="F" u2="&#x2c;" k="211" />
<hkern u1="G" u2="&#xdc;" k="-86" />
<hkern u1="G" u2="&#xdb;" k="-86" />
<hkern u1="G" u2="&#xda;" k="-86" />
<hkern u1="G" u2="&#xd9;" k="-86" />
<hkern u1="G" u2="&#xd8;" k="-86" />
<hkern u1="G" u2="&#xd6;" k="-86" />
<hkern u1="G" u2="&#xd5;" k="-86" />
<hkern u1="G" u2="&#xd4;" k="-86" />
<hkern u1="G" u2="&#xd3;" k="-86" />
<hkern u1="G" u2="&#xd2;" k="-86" />
<hkern u1="G" u2="&#xc7;" k="-43" />
<hkern u1="G" u2="Z" k="-86" />
<hkern u1="G" u2="Y" k="84" />
<hkern u1="G" u2="X" k="-43" />
<hkern u1="G" u2="U" k="-86" />
<hkern u1="G" u2="T" k="41" />
<hkern u1="G" u2="S" k="-43" />
<hkern u1="G" u2="R" k="-86" />
<hkern u1="G" u2="Q" k="-43" />
<hkern u1="G" u2="P" k="-86" />
<hkern u1="G" u2="O" k="-86" />
<hkern u1="G" u2="N" k="-86" />
<hkern u1="G" u2="M" k="-86" />
<hkern u1="G" u2="L" k="-86" />
<hkern u1="G" u2="K" k="-86" />
<hkern u1="G" u2="I" k="-86" />
<hkern u1="G" u2="H" k="-86" />
<hkern u1="G" u2="G" k="-43" />
<hkern u1="G" u2="F" k="-86" />
<hkern u1="G" u2="E" k="-86" />
<hkern u1="G" u2="D" k="-86" />
<hkern u1="G" u2="C" k="-43" />
<hkern u1="G" u2="B" k="-86" />
<hkern u1="G" u2="&#x2f;" k="-86" />
<hkern u1="H" u2="&#xdc;" k="-86" />
<hkern u1="H" u2="&#xdb;" k="-86" />
<hkern u1="H" u2="&#xda;" k="-86" />
<hkern u1="H" u2="&#xd9;" k="-86" />
<hkern u1="H" u2="&#xd8;" k="-43" />
<hkern u1="H" u2="&#xd6;" k="-43" />
<hkern u1="H" u2="&#xd5;" k="-43" />
<hkern u1="H" u2="&#xd4;" k="-43" />
<hkern u1="H" u2="&#xd3;" k="-43" />
<hkern u1="H" u2="&#xd2;" k="-43" />
<hkern u1="H" u2="&#xc7;" k="-43" />
<hkern u1="H" u2="Z" k="-43" />
<hkern u1="H" u2="X" k="-43" />
<hkern u1="H" u2="U" k="-86" />
<hkern u1="H" u2="S" k="-43" />
<hkern u1="H" u2="R" k="-86" />
<hkern u1="H" u2="Q" k="-43" />
<hkern u1="H" u2="P" k="-86" />
<hkern u1="H" u2="O" k="-43" />
<hkern u1="H" u2="N" k="-86" />
<hkern u1="H" u2="M" k="-86" />
<hkern u1="H" u2="L" k="-86" />
<hkern u1="H" u2="K" k="-86" />
<hkern u1="H" u2="I" k="-86" />
<hkern u1="H" u2="H" k="-86" />
<hkern u1="H" u2="G" k="-43" />
<hkern u1="H" u2="F" k="-86" />
<hkern u1="H" u2="E" k="-86" />
<hkern u1="H" u2="D" k="-86" />
<hkern u1="H" u2="C" k="-43" />
<hkern u1="H" u2="B" k="-86" />
<hkern u1="H" u2="&#x2f;" k="-86" />
<hkern u1="I" u2="&#xdc;" k="-86" />
<hkern u1="I" u2="&#xdb;" k="-86" />
<hkern u1="I" u2="&#xda;" k="-86" />
<hkern u1="I" u2="&#xd9;" k="-86" />
<hkern u1="I" u2="&#xd8;" k="-43" />
<hkern u1="I" u2="&#xd6;" k="-43" />
<hkern u1="I" u2="&#xd5;" k="-43" />
<hkern u1="I" u2="&#xd4;" k="-43" />
<hkern u1="I" u2="&#xd3;" k="-43" />
<hkern u1="I" u2="&#xd2;" k="-43" />
<hkern u1="I" u2="&#xc7;" k="-43" />
<hkern u1="I" u2="Z" k="-43" />
<hkern u1="I" u2="X" k="-43" />
<hkern u1="I" u2="U" k="-86" />
<hkern u1="I" u2="S" k="-43" />
<hkern u1="I" u2="R" k="-86" />
<hkern u1="I" u2="Q" k="-43" />
<hkern u1="I" u2="P" k="-86" />
<hkern u1="I" u2="O" k="-43" />
<hkern u1="I" u2="N" k="-86" />
<hkern u1="I" u2="M" k="-86" />
<hkern u1="I" u2="L" k="-86" />
<hkern u1="I" u2="K" k="-86" />
<hkern u1="I" u2="I" k="-86" />
<hkern u1="I" u2="H" k="-86" />
<hkern u1="I" u2="G" k="-43" />
<hkern u1="I" u2="F" k="-86" />
<hkern u1="I" u2="E" k="-86" />
<hkern u1="I" u2="D" k="-86" />
<hkern u1="I" u2="C" k="-43" />
<hkern u1="I" u2="B" k="-86" />
<hkern u1="I" u2="&#x2f;" k="-86" />
<hkern u1="J" u2="&#xdc;" k="-86" />
<hkern u1="J" u2="&#xdb;" k="-86" />
<hkern u1="J" u2="&#xda;" k="-86" />
<hkern u1="J" u2="&#xd9;" k="-86" />
<hkern u1="J" u2="&#xd8;" k="-43" />
<hkern u1="J" u2="&#xd6;" k="-43" />
<hkern u1="J" u2="&#xd5;" k="-43" />
<hkern u1="J" u2="&#xd4;" k="-43" />
<hkern u1="J" u2="&#xd3;" k="-43" />
<hkern u1="J" u2="&#xd2;" k="-43" />
<hkern u1="J" u2="&#xc7;" k="-43" />
<hkern u1="J" u2="Z" k="-86" />
<hkern u1="J" u2="X" k="-43" />
<hkern u1="J" u2="U" k="-86" />
<hkern u1="J" u2="S" k="-43" />
<hkern u1="J" u2="R" k="-86" />
<hkern u1="J" u2="Q" k="-43" />
<hkern u1="J" u2="P" k="-86" />
<hkern u1="J" u2="O" k="-43" />
<hkern u1="J" u2="N" k="-86" />
<hkern u1="J" u2="M" k="-86" />
<hkern u1="J" u2="L" k="-86" />
<hkern u1="J" u2="K" k="-86" />
<hkern u1="J" u2="I" k="-86" />
<hkern u1="J" u2="H" k="-86" />
<hkern u1="J" u2="G" k="-43" />
<hkern u1="J" u2="F" k="-86" />
<hkern u1="J" u2="E" k="-86" />
<hkern u1="J" u2="D" k="-86" />
<hkern u1="J" u2="C" k="-43" />
<hkern u1="J" u2="B" k="-86" />
<hkern u1="J" u2="&#x2f;" k="-86" />
<hkern u1="K" u2="&#x2014;" k="127" />
<hkern u1="K" u2="&#x2013;" k="127" />
<hkern u1="K" u2="&#x153;" k="41" />
<hkern u1="K" u2="&#xff;" k="127" />
<hkern u1="K" u2="&#xfd;" k="127" />
<hkern u1="K" u2="&#xfc;" k="41" />
<hkern u1="K" u2="&#xfb;" k="41" />
<hkern u1="K" u2="&#xfa;" k="41" />
<hkern u1="K" u2="&#xf9;" k="41" />
<hkern u1="K" u2="&#xf8;" k="41" />
<hkern u1="K" u2="&#xf6;" k="41" />
<hkern u1="K" u2="&#xf5;" k="41" />
<hkern u1="K" u2="&#xf4;" k="41" />
<hkern u1="K" u2="&#xf3;" k="41" />
<hkern u1="K" u2="&#xf2;" k="41" />
<hkern u1="K" u2="&#xf1;" k="41" />
<hkern u1="K" u2="&#xeb;" k="41" />
<hkern u1="K" u2="&#xea;" k="41" />
<hkern u1="K" u2="&#xe9;" k="41" />
<hkern u1="K" u2="&#xe8;" k="41" />
<hkern u1="K" u2="&#xe7;" k="41" />
<hkern u1="K" u2="&#xdc;" k="-43" />
<hkern u1="K" u2="&#xdb;" k="-43" />
<hkern u1="K" u2="&#xda;" k="-43" />
<hkern u1="K" u2="&#xd9;" k="-43" />
<hkern u1="K" u2="&#xd8;" k="41" />
<hkern u1="K" u2="&#xd6;" k="41" />
<hkern u1="K" u2="&#xd5;" k="41" />
<hkern u1="K" u2="&#xd4;" k="41" />
<hkern u1="K" u2="&#xd3;" k="41" />
<hkern u1="K" u2="&#xd2;" k="41" />
<hkern u1="K" u2="&#xc7;" k="41" />
<hkern u1="K" u2="&#xad;" k="127" />
<hkern u1="K" u2="z" k="41" />
<hkern u1="K" u2="y" k="127" />
<hkern u1="K" u2="x" k="41" />
<hkern u1="K" u2="w" k="127" />
<hkern u1="K" u2="v" k="127" />
<hkern u1="K" u2="u" k="41" />
<hkern u1="K" u2="s" k="41" />
<hkern u1="K" u2="r" k="41" />
<hkern u1="K" u2="q" k="41" />
<hkern u1="K" u2="p" k="41" />
<hkern u1="K" u2="o" k="41" />
<hkern u1="K" u2="n" k="41" />
<hkern u1="K" u2="m" k="41" />
<hkern u1="K" u2="g" k="41" />
<hkern u1="K" u2="e" k="41" />
<hkern u1="K" u2="d" k="41" />
<hkern u1="K" u2="c" k="41" />
<hkern u1="K" u2="Z" k="-43" />
<hkern u1="K" u2="Y" k="41" />
<hkern u1="K" u2="U" k="-43" />
<hkern u1="K" u2="S" k="41" />
<hkern u1="K" u2="R" k="-43" />
<hkern u1="K" u2="Q" k="41" />
<hkern u1="K" u2="P" k="-43" />
<hkern u1="K" u2="O" k="41" />
<hkern u1="K" u2="N" k="-43" />
<hkern u1="K" u2="M" k="-43" />
<hkern u1="K" u2="L" k="-43" />
<hkern u1="K" u2="K" k="-43" />
<hkern u1="K" u2="I" k="-43" />
<hkern u1="K" u2="H" k="-43" />
<hkern u1="K" u2="G" k="41" />
<hkern u1="K" u2="F" k="-43" />
<hkern u1="K" u2="E" k="-43" />
<hkern u1="K" u2="D" k="-43" />
<hkern u1="K" u2="C" k="41" />
<hkern u1="K" u2="B" k="-43" />
<hkern u1="K" u2="&#x2d;" k="127" />
<hkern u1="L" u2="w" k="127" />
<hkern u1="L" u2="v" k="127" />
<hkern u1="L" u2="Y" k="297" />
<hkern u1="L" u2="X" k="41" />
<hkern u1="L" u2="W" k="211" />
<hkern u1="L" u2="V" k="254" />
<hkern u1="L" u2="T" k="254" />
<hkern u1="L" u2="S" k="41" />
<hkern u1="L" u2="Q" k="127" />
<hkern u1="L" u2="J" k="-43" />
<hkern u1="L" u2="G" k="127" />
<hkern u1="L" u2="&#x3f;" k="211" />
<hkern u1="M" u2="&#xdc;" k="-86" />
<hkern u1="M" u2="&#xdb;" k="-86" />
<hkern u1="M" u2="&#xda;" k="-86" />
<hkern u1="M" u2="&#xd9;" k="-86" />
<hkern u1="M" u2="&#xd8;" k="-43" />
<hkern u1="M" u2="&#xd6;" k="-43" />
<hkern u1="M" u2="&#xd5;" k="-43" />
<hkern u1="M" u2="&#xd4;" k="-43" />
<hkern u1="M" u2="&#xd3;" k="-43" />
<hkern u1="M" u2="&#xd2;" k="-43" />
<hkern u1="M" u2="&#xc7;" k="-43" />
<hkern u1="M" u2="Z" k="-43" />
<hkern u1="M" u2="X" k="-43" />
<hkern u1="M" u2="U" k="-86" />
<hkern u1="M" u2="S" k="-43" />
<hkern u1="M" u2="R" k="-86" />
<hkern u1="M" u2="Q" k="-43" />
<hkern u1="M" u2="P" k="-86" />
<hkern u1="M" u2="O" k="-43" />
<hkern u1="M" u2="N" k="-86" />
<hkern u1="M" u2="M" k="-86" />
<hkern u1="M" u2="L" k="-86" />
<hkern u1="M" u2="K" k="-86" />
<hkern u1="M" u2="I" k="-86" />
<hkern u1="M" u2="H" k="-86" />
<hkern u1="M" u2="G" k="-43" />
<hkern u1="M" u2="F" k="-86" />
<hkern u1="M" u2="E" k="-86" />
<hkern u1="M" u2="D" k="-86" />
<hkern u1="M" u2="C" k="-43" />
<hkern u1="M" u2="B" k="-86" />
<hkern u1="M" u2="&#x2f;" k="-86" />
<hkern u1="N" u2="Z" k="-43" />
<hkern u1="N" u2="X" k="-43" />
<hkern u1="N" u2="S" k="-43" />
<hkern u1="N" u2="R" k="-86" />
<hkern u1="N" u2="Q" k="-43" />
<hkern u1="N" u2="P" k="-86" />
<hkern u1="N" u2="N" k="-86" />
<hkern u1="N" u2="M" k="-86" />
<hkern u1="N" u2="L" k="-86" />
<hkern u1="N" u2="K" k="-86" />
<hkern u1="N" u2="I" k="-86" />
<hkern u1="N" u2="H" k="-86" />
<hkern u1="N" u2="G" k="-43" />
<hkern u1="N" u2="F" k="-86" />
<hkern u1="N" u2="E" k="-86" />
<hkern u1="N" u2="D" k="-86" />
<hkern u1="N" u2="B" k="-86" />
<hkern u1="N" u2="&#x2f;" k="-86" />
<hkern u1="O" u2="Z" k="-43" />
<hkern u1="O" u2="Y" k="127" />
<hkern u1="O" u2="X" k="84" />
<hkern u1="O" u2="W" k="41" />
<hkern u1="O" u2="V" k="41" />
<hkern u1="O" u2="T" k="84" />
<hkern u1="O" u2="S" k="-43" />
<hkern u1="O" u2="R" k="-43" />
<hkern u1="O" u2="Q" k="-43" />
<hkern u1="O" u2="P" k="-43" />
<hkern u1="O" u2="N" k="-43" />
<hkern u1="O" u2="M" k="-43" />
<hkern u1="O" u2="L" k="-43" />
<hkern u1="O" u2="K" k="-43" />
<hkern u1="O" u2="J" k="84" />
<hkern u1="O" u2="I" k="-43" />
<hkern u1="O" u2="H" k="-43" />
<hkern u1="O" u2="G" k="-43" />
<hkern u1="O" u2="F" k="-43" />
<hkern u1="O" u2="E" k="-43" />
<hkern u1="O" u2="D" k="-43" />
<hkern u1="O" u2="B" k="-43" />
<hkern u1="P" u2="&#x153;" k="41" />
<hkern u1="P" u2="&#xff;" k="-43" />
<hkern u1="P" u2="&#xfd;" k="-43" />
<hkern u1="P" u2="&#xf8;" k="41" />
<hkern u1="P" u2="&#xf6;" k="41" />
<hkern u1="P" u2="&#xf5;" k="41" />
<hkern u1="P" u2="&#xf4;" k="41" />
<hkern u1="P" u2="&#xf3;" k="41" />
<hkern u1="P" u2="&#xf2;" k="41" />
<hkern u1="P" u2="&#xeb;" k="41" />
<hkern u1="P" u2="&#xea;" k="41" />
<hkern u1="P" u2="&#xe9;" k="41" />
<hkern u1="P" u2="&#xe8;" k="41" />
<hkern u1="P" u2="&#xe7;" k="41" />
<hkern u1="P" u2="&#xdc;" k="-43" />
<hkern u1="P" u2="&#xdb;" k="-43" />
<hkern u1="P" u2="&#xda;" k="-43" />
<hkern u1="P" u2="&#xd9;" k="-43" />
<hkern u1="P" u2="&#xd8;" k="-43" />
<hkern u1="P" u2="&#xd6;" k="-43" />
<hkern u1="P" u2="&#xd5;" k="-43" />
<hkern u1="P" u2="&#xd4;" k="-43" />
<hkern u1="P" u2="&#xd3;" k="-43" />
<hkern u1="P" u2="&#xd2;" k="-43" />
<hkern u1="P" u2="&#xc7;" k="-43" />
<hkern u1="P" u2="&#xc6;" k="127" />
<hkern u1="P" u2="&#xc5;" k="127" />
<hkern u1="P" u2="&#xc4;" k="127" />
<hkern u1="P" u2="&#xc3;" k="127" />
<hkern u1="P" u2="&#xc2;" k="127" />
<hkern u1="P" u2="&#xc1;" k="127" />
<hkern u1="P" u2="&#xc0;" k="127" />
<hkern u1="P" u2="y" k="-43" />
<hkern u1="P" u2="w" k="41" />
<hkern u1="P" u2="v" k="41" />
<hkern u1="P" u2="q" k="41" />
<hkern u1="P" u2="o" k="41" />
<hkern u1="P" u2="g" k="41" />
<hkern u1="P" u2="e" k="41" />
<hkern u1="P" u2="d" k="41" />
<hkern u1="P" u2="c" k="41" />
<hkern u1="P" u2="Z" k="-43" />
<hkern u1="P" u2="X" k="41" />
<hkern u1="P" u2="W" k="-43" />
<hkern u1="P" u2="V" k="-43" />
<hkern u1="P" u2="U" k="-43" />
<hkern u1="P" u2="S" k="-43" />
<hkern u1="P" u2="R" k="-43" />
<hkern u1="P" u2="Q" k="-43" />
<hkern u1="P" u2="P" k="-43" />
<hkern u1="P" u2="O" k="-43" />
<hkern u1="P" u2="N" k="-43" />
<hkern u1="P" u2="M" k="-43" />
<hkern u1="P" u2="L" k="-43" />
<hkern u1="P" u2="K" k="-43" />
<hkern u1="P" u2="J" k="168" />
<hkern u1="P" u2="I" k="-43" />
<hkern u1="P" u2="H" k="-43" />
<hkern u1="P" u2="G" k="-43" />
<hkern u1="P" u2="F" k="-43" />
<hkern u1="P" u2="E" k="-43" />
<hkern u1="P" u2="D" k="-43" />
<hkern u1="P" u2="C" k="-43" />
<hkern u1="P" u2="B" k="-43" />
<hkern u1="P" u2="A" k="127" />
<hkern u1="P" u2="&#x2e;" k="211" />
<hkern u1="P" u2="&#x2c;" k="211" />
<hkern u1="Q" u2="&#xdc;" k="-43" />
<hkern u1="Q" u2="&#xdb;" k="-43" />
<hkern u1="Q" u2="&#xda;" k="-43" />
<hkern u1="Q" u2="&#xd9;" k="-43" />
<hkern u1="Q" u2="U" k="-43" />
<hkern u1="R" u2="&#xdc;" k="-86" />
<hkern u1="R" u2="&#xdb;" k="-86" />
<hkern u1="R" u2="&#xda;" k="-86" />
<hkern u1="R" u2="&#xd9;" k="-86" />
<hkern u1="R" u2="&#xd8;" k="-43" />
<hkern u1="R" u2="&#xd6;" k="-43" />
<hkern u1="R" u2="&#xd5;" k="-43" />
<hkern u1="R" u2="&#xd4;" k="-43" />
<hkern u1="R" u2="&#xd3;" k="-43" />
<hkern u1="R" u2="&#xd2;" k="-43" />
<hkern u1="R" u2="&#xc7;" k="-43" />
<hkern u1="R" u2="Z" k="-86" />
<hkern u1="R" u2="Y" k="84" />
<hkern u1="R" u2="X" k="-43" />
<hkern u1="R" u2="U" k="-86" />
<hkern u1="R" u2="S" k="-86" />
<hkern u1="R" u2="R" k="-86" />
<hkern u1="R" u2="Q" k="-43" />
<hkern u1="R" u2="P" k="-86" />
<hkern u1="R" u2="O" k="-43" />
<hkern u1="R" u2="N" k="-86" />
<hkern u1="R" u2="M" k="-86" />
<hkern u1="R" u2="L" k="-86" />
<hkern u1="R" u2="K" k="-86" />
<hkern u1="R" u2="J" k="-43" />
<hkern u1="R" u2="I" k="-86" />
<hkern u1="R" u2="H" k="-86" />
<hkern u1="R" u2="G" k="-43" />
<hkern u1="R" u2="F" k="-86" />
<hkern u1="R" u2="E" k="-86" />
<hkern u1="R" u2="D" k="-86" />
<hkern u1="R" u2="C" k="-43" />
<hkern u1="R" u2="B" k="-86" />
<hkern u1="R" u2="&#x2f;" k="-86" />
<hkern u1="S" u2="Z" k="-43" />
<hkern u1="S" u2="Y" k="84" />
<hkern u1="S" u2="X" k="84" />
<hkern u1="S" u2="W" k="41" />
<hkern u1="S" u2="V" k="41" />
<hkern u1="S" u2="T" k="41" />
<hkern u1="S" u2="S" k="-43" />
<hkern u1="S" u2="R" k="-43" />
<hkern u1="S" u2="Q" k="-43" />
<hkern u1="S" u2="P" k="-43" />
<hkern u1="S" u2="N" k="-43" />
<hkern u1="S" u2="M" k="-43" />
<hkern u1="S" u2="L" k="-43" />
<hkern u1="S" u2="K" k="-43" />
<hkern u1="S" u2="J" k="41" />
<hkern u1="S" u2="I" k="-43" />
<hkern u1="S" u2="H" k="-43" />
<hkern u1="S" u2="G" k="-43" />
<hkern u1="S" u2="F" k="-43" />
<hkern u1="S" u2="E" k="-43" />
<hkern u1="S" u2="D" k="-43" />
<hkern u1="S" u2="B" k="-43" />
<hkern u1="T" u2="&#x2014;" k="211" />
<hkern u1="T" u2="&#x2013;" k="211" />
<hkern u1="T" u2="&#x153;" k="211" />
<hkern u1="T" u2="&#xff;" k="211" />
<hkern u1="T" u2="&#xfd;" k="211" />
<hkern u1="T" u2="&#xfc;" k="211" />
<hkern u1="T" u2="&#xfb;" k="211" />
<hkern u1="T" u2="&#xfa;" k="211" />
<hkern u1="T" u2="&#xf9;" k="211" />
<hkern u1="T" u2="&#xf8;" k="211" />
<hkern u1="T" u2="&#xf6;" k="211" />
<hkern u1="T" u2="&#xf5;" k="211" />
<hkern u1="T" u2="&#xf4;" k="211" />
<hkern u1="T" u2="&#xf3;" k="211" />
<hkern u1="T" u2="&#xf2;" k="211" />
<hkern u1="T" u2="&#xf1;" k="168" />
<hkern u1="T" u2="&#xeb;" k="211" />
<hkern u1="T" u2="&#xea;" k="211" />
<hkern u1="T" u2="&#xe9;" k="211" />
<hkern u1="T" u2="&#xe8;" k="211" />
<hkern u1="T" u2="&#xe7;" k="211" />
<hkern u1="T" u2="&#xe5;" k="211" />
<hkern u1="T" u2="&#xe4;" k="211" />
<hkern u1="T" u2="&#xe3;" k="211" />
<hkern u1="T" u2="&#xe2;" k="211" />
<hkern u1="T" u2="&#xe1;" k="211" />
<hkern u1="T" u2="&#xe0;" k="211" />
<hkern u1="T" u2="&#xd8;" k="127" />
<hkern u1="T" u2="&#xd6;" k="127" />
<hkern u1="T" u2="&#xd5;" k="127" />
<hkern u1="T" u2="&#xd4;" k="127" />
<hkern u1="T" u2="&#xd3;" k="127" />
<hkern u1="T" u2="&#xd2;" k="127" />
<hkern u1="T" u2="&#xc7;" k="84" />
<hkern u1="T" u2="&#xc6;" k="211" />
<hkern u1="T" u2="&#xc5;" k="211" />
<hkern u1="T" u2="&#xc4;" k="211" />
<hkern u1="T" u2="&#xc3;" k="211" />
<hkern u1="T" u2="&#xc2;" k="211" />
<hkern u1="T" u2="&#xc1;" k="211" />
<hkern u1="T" u2="&#xc0;" k="211" />
<hkern u1="T" u2="&#xad;" k="211" />
<hkern u1="T" u2="z" k="168" />
<hkern u1="T" u2="y" k="211" />
<hkern u1="T" u2="x" k="168" />
<hkern u1="T" u2="w" k="211" />
<hkern u1="T" u2="v" k="211" />
<hkern u1="T" u2="u" k="211" />
<hkern u1="T" u2="t" k="41" />
<hkern u1="T" u2="s" k="168" />
<hkern u1="T" u2="r" k="168" />
<hkern u1="T" u2="q" k="211" />
<hkern u1="T" u2="p" k="168" />
<hkern u1="T" u2="o" k="211" />
<hkern u1="T" u2="n" k="168" />
<hkern u1="T" u2="m" k="168" />
<hkern u1="T" u2="l" k="41" />
<hkern u1="T" u2="k" k="41" />
<hkern u1="T" u2="j" k="41" />
<hkern u1="T" u2="i" k="41" />
<hkern u1="T" u2="h" k="41" />
<hkern u1="T" u2="g" k="211" />
<hkern u1="T" u2="f" k="41" />
<hkern u1="T" u2="e" k="211" />
<hkern u1="T" u2="d" k="211" />
<hkern u1="T" u2="c" k="211" />
<hkern u1="T" u2="b" k="41" />
<hkern u1="T" u2="a" k="211" />
<hkern u1="T" u2="S" k="41" />
<hkern u1="T" u2="Q" k="84" />
<hkern u1="T" u2="O" k="127" />
<hkern u1="T" u2="J" k="211" />
<hkern u1="T" u2="G" k="84" />
<hkern u1="T" u2="C" k="84" />
<hkern u1="T" u2="A" k="211" />
<hkern u1="T" u2="&#x2f;" k="84" />
<hkern u1="T" u2="&#x2e;" k="168" />
<hkern u1="T" u2="&#x2d;" k="211" />
<hkern u1="T" u2="&#x2c;" k="168" />
<hkern u1="U" u2="X" k="-43" />
<hkern u1="U" u2="S" k="-43" />
<hkern u1="U" u2="R" k="-86" />
<hkern u1="U" u2="Q" k="-43" />
<hkern u1="U" u2="P" k="-86" />
<hkern u1="U" u2="N" k="-86" />
<hkern u1="U" u2="M" k="-86" />
<hkern u1="U" u2="L" k="-86" />
<hkern u1="U" u2="K" k="-86" />
<hkern u1="U" u2="I" k="-86" />
<hkern u1="U" u2="H" k="-86" />
<hkern u1="U" u2="G" k="-43" />
<hkern u1="U" u2="F" k="-86" />
<hkern u1="U" u2="E" k="-86" />
<hkern u1="U" u2="D" k="-86" />
<hkern u1="U" u2="B" k="-86" />
<hkern u1="U" u2="&#x2f;" k="-86" />
<hkern u1="V" u2="&#x153;" k="127" />
<hkern u1="V" u2="&#xff;" k="84" />
<hkern u1="V" u2="&#xfd;" k="84" />
<hkern u1="V" u2="&#xfc;" k="127" />
<hkern u1="V" u2="&#xfb;" k="127" />
<hkern u1="V" u2="&#xfa;" k="127" />
<hkern u1="V" u2="&#xf9;" k="127" />
<hkern u1="V" u2="&#xf8;" k="127" />
<hkern u1="V" u2="&#xf6;" k="127" />
<hkern u1="V" u2="&#xf5;" k="127" />
<hkern u1="V" u2="&#xf4;" k="127" />
<hkern u1="V" u2="&#xf3;" k="127" />
<hkern u1="V" u2="&#xf2;" k="127" />
<hkern u1="V" u2="&#xf1;" k="127" />
<hkern u1="V" u2="&#xeb;" k="127" />
<hkern u1="V" u2="&#xea;" k="127" />
<hkern u1="V" u2="&#xe9;" k="127" />
<hkern u1="V" u2="&#xe8;" k="127" />
<hkern u1="V" u2="&#xe7;" k="127" />
<hkern u1="V" u2="&#xe5;" k="127" />
<hkern u1="V" u2="&#xe4;" k="127" />
<hkern u1="V" u2="&#xe3;" k="127" />
<hkern u1="V" u2="&#xe2;" k="127" />
<hkern u1="V" u2="&#xe1;" k="127" />
<hkern u1="V" u2="&#xe0;" k="127" />
<hkern u1="V" u2="&#xd8;" k="41" />
<hkern u1="V" u2="&#xd6;" k="41" />
<hkern u1="V" u2="&#xd5;" k="41" />
<hkern u1="V" u2="&#xd4;" k="41" />
<hkern u1="V" u2="&#xd3;" k="41" />
<hkern u1="V" u2="&#xd2;" k="41" />
<hkern u1="V" u2="&#xc7;" k="41" />
<hkern u1="V" u2="&#xc6;" k="84" />
<hkern u1="V" u2="&#xc5;" k="84" />
<hkern u1="V" u2="&#xc4;" k="84" />
<hkern u1="V" u2="&#xc3;" k="84" />
<hkern u1="V" u2="&#xc2;" k="84" />
<hkern u1="V" u2="&#xc1;" k="84" />
<hkern u1="V" u2="&#xc0;" k="84" />
<hkern u1="V" u2="z" k="127" />
<hkern u1="V" u2="y" k="84" />
<hkern u1="V" u2="x" k="127" />
<hkern u1="V" u2="w" k="84" />
<hkern u1="V" u2="v" k="84" />
<hkern u1="V" u2="u" k="127" />
<hkern u1="V" u2="t" k="84" />
<hkern u1="V" u2="s" k="127" />
<hkern u1="V" u2="r" k="127" />
<hkern u1="V" u2="q" k="127" />
<hkern u1="V" u2="p" k="127" />
<hkern u1="V" u2="o" k="127" />
<hkern u1="V" u2="n" k="127" />
<hkern u1="V" u2="m" k="127" />
<hkern u1="V" u2="l" k="84" />
<hkern u1="V" u2="k" k="84" />
<hkern u1="V" u2="j" k="84" />
<hkern u1="V" u2="i" k="84" />
<hkern u1="V" u2="h" k="84" />
<hkern u1="V" u2="g" k="127" />
<hkern u1="V" u2="f" k="84" />
<hkern u1="V" u2="e" k="127" />
<hkern u1="V" u2="d" k="127" />
<hkern u1="V" u2="c" k="127" />
<hkern u1="V" u2="b" k="84" />
<hkern u1="V" u2="a" k="127" />
<hkern u1="V" u2="S" k="41" />
<hkern u1="V" u2="Q" k="41" />
<hkern u1="V" u2="O" k="41" />
<hkern u1="V" u2="J" k="168" />
<hkern u1="V" u2="G" k="41" />
<hkern u1="V" u2="C" k="41" />
<hkern u1="V" u2="A" k="84" />
<hkern u1="V" u2="&#x2e;" k="168" />
<hkern u1="V" u2="&#x2c;" k="168" />
<hkern u1="W" u2="&#x153;" k="127" />
<hkern u1="W" u2="&#xff;" k="84" />
<hkern u1="W" u2="&#xfd;" k="84" />
<hkern u1="W" u2="&#xfc;" k="127" />
<hkern u1="W" u2="&#xfb;" k="127" />
<hkern u1="W" u2="&#xfa;" k="127" />
<hkern u1="W" u2="&#xf9;" k="127" />
<hkern u1="W" u2="&#xf8;" k="127" />
<hkern u1="W" u2="&#xf6;" k="127" />
<hkern u1="W" u2="&#xf5;" k="127" />
<hkern u1="W" u2="&#xf4;" k="127" />
<hkern u1="W" u2="&#xf3;" k="127" />
<hkern u1="W" u2="&#xf2;" k="127" />
<hkern u1="W" u2="&#xf1;" k="127" />
<hkern u1="W" u2="&#xeb;" k="127" />
<hkern u1="W" u2="&#xea;" k="127" />
<hkern u1="W" u2="&#xe9;" k="127" />
<hkern u1="W" u2="&#xe8;" k="127" />
<hkern u1="W" u2="&#xe7;" k="127" />
<hkern u1="W" u2="&#xe5;" k="127" />
<hkern u1="W" u2="&#xe4;" k="127" />
<hkern u1="W" u2="&#xe3;" k="127" />
<hkern u1="W" u2="&#xe2;" k="127" />
<hkern u1="W" u2="&#xe1;" k="127" />
<hkern u1="W" u2="&#xe0;" k="127" />
<hkern u1="W" u2="&#xdc;" k="-43" />
<hkern u1="W" u2="&#xdb;" k="-43" />
<hkern u1="W" u2="&#xda;" k="-43" />
<hkern u1="W" u2="&#xd9;" k="-43" />
<hkern u1="W" u2="&#xd8;" k="41" />
<hkern u1="W" u2="&#xd6;" k="41" />
<hkern u1="W" u2="&#xd5;" k="41" />
<hkern u1="W" u2="&#xd4;" k="41" />
<hkern u1="W" u2="&#xd3;" k="41" />
<hkern u1="W" u2="&#xd2;" k="41" />
<hkern u1="W" u2="&#xc7;" k="41" />
<hkern u1="W" u2="&#xc6;" k="84" />
<hkern u1="W" u2="&#xc5;" k="84" />
<hkern u1="W" u2="&#xc4;" k="84" />
<hkern u1="W" u2="&#xc3;" k="84" />
<hkern u1="W" u2="&#xc2;" k="84" />
<hkern u1="W" u2="&#xc1;" k="84" />
<hkern u1="W" u2="&#xc0;" k="84" />
<hkern u1="W" u2="z" k="127" />
<hkern u1="W" u2="y" k="84" />
<hkern u1="W" u2="x" k="127" />
<hkern u1="W" u2="v" k="84" />
<hkern u1="W" u2="u" k="127" />
<hkern u1="W" u2="t" k="84" />
<hkern u1="W" u2="s" k="127" />
<hkern u1="W" u2="r" k="127" />
<hkern u1="W" u2="q" k="127" />
<hkern u1="W" u2="p" k="127" />
<hkern u1="W" u2="o" k="127" />
<hkern u1="W" u2="n" k="127" />
<hkern u1="W" u2="m" k="127" />
<hkern u1="W" u2="l" k="84" />
<hkern u1="W" u2="k" k="84" />
<hkern u1="W" u2="j" k="84" />
<hkern u1="W" u2="i" k="84" />
<hkern u1="W" u2="h" k="84" />
<hkern u1="W" u2="g" k="127" />
<hkern u1="W" u2="f" k="84" />
<hkern u1="W" u2="e" k="127" />
<hkern u1="W" u2="d" k="127" />
<hkern u1="W" u2="c" k="127" />
<hkern u1="W" u2="b" k="84" />
<hkern u1="W" u2="a" k="127" />
<hkern u1="W" u2="U" k="-43" />
<hkern u1="W" u2="S" k="41" />
<hkern u1="W" u2="Q" k="41" />
<hkern u1="W" u2="O" k="41" />
<hkern u1="W" u2="J" k="168" />
<hkern u1="W" u2="I" k="-43" />
<hkern u1="W" u2="G" k="41" />
<hkern u1="W" u2="E" k="-43" />
<hkern u1="W" u2="C" k="41" />
<hkern u1="W" u2="A" k="84" />
<hkern u1="W" u2="&#x2e;" k="168" />
<hkern u1="W" u2="&#x2c;" k="168" />
<hkern u1="X" u2="&#x2014;" k="127" />
<hkern u1="X" u2="&#x2013;" k="127" />
<hkern u1="X" u2="&#x153;" k="41" />
<hkern u1="X" u2="&#xff;" k="127" />
<hkern u1="X" u2="&#xfd;" k="127" />
<hkern u1="X" u2="&#xfc;" k="41" />
<hkern u1="X" u2="&#xfb;" k="41" />
<hkern u1="X" u2="&#xfa;" k="41" />
<hkern u1="X" u2="&#xf9;" k="41" />
<hkern u1="X" u2="&#xf8;" k="41" />
<hkern u1="X" u2="&#xf6;" k="41" />
<hkern u1="X" u2="&#xf5;" k="41" />
<hkern u1="X" u2="&#xf4;" k="41" />
<hkern u1="X" u2="&#xf3;" k="41" />
<hkern u1="X" u2="&#xf2;" k="41" />
<hkern u1="X" u2="&#xf1;" k="41" />
<hkern u1="X" u2="&#xeb;" k="41" />
<hkern u1="X" u2="&#xea;" k="41" />
<hkern u1="X" u2="&#xe9;" k="41" />
<hkern u1="X" u2="&#xe8;" k="41" />
<hkern u1="X" u2="&#xe7;" k="41" />
<hkern u1="X" u2="&#xdc;" k="-43" />
<hkern u1="X" u2="&#xdb;" k="-43" />
<hkern u1="X" u2="&#xda;" k="-43" />
<hkern u1="X" u2="&#xd9;" k="-43" />
<hkern u1="X" u2="&#xd8;" k="41" />
<hkern u1="X" u2="&#xd6;" k="41" />
<hkern u1="X" u2="&#xd5;" k="41" />
<hkern u1="X" u2="&#xd4;" k="41" />
<hkern u1="X" u2="&#xd3;" k="41" />
<hkern u1="X" u2="&#xd2;" k="41" />
<hkern u1="X" u2="&#xc7;" k="41" />
<hkern u1="X" u2="&#xad;" k="127" />
<hkern u1="X" u2="z" k="41" />
<hkern u1="X" u2="y" k="127" />
<hkern u1="X" u2="x" k="41" />
<hkern u1="X" u2="w" k="127" />
<hkern u1="X" u2="v" k="127" />
<hkern u1="X" u2="u" k="41" />
<hkern u1="X" u2="s" k="41" />
<hkern u1="X" u2="r" k="41" />
<hkern u1="X" u2="q" k="41" />
<hkern u1="X" u2="p" k="41" />
<hkern u1="X" u2="o" k="41" />
<hkern u1="X" u2="n" k="41" />
<hkern u1="X" u2="m" k="41" />
<hkern u1="X" u2="g" k="41" />
<hkern u1="X" u2="e" k="41" />
<hkern u1="X" u2="d" k="41" />
<hkern u1="X" u2="c" k="41" />
<hkern u1="X" u2="Z" k="-43" />
<hkern u1="X" u2="Y" k="41" />
<hkern u1="X" u2="U" k="-43" />
<hkern u1="X" u2="S" k="41" />
<hkern u1="X" u2="R" k="-43" />
<hkern u1="X" u2="Q" k="41" />
<hkern u1="X" u2="P" k="-43" />
<hkern u1="X" u2="O" k="41" />
<hkern u1="X" u2="N" k="-43" />
<hkern u1="X" u2="M" k="-43" />
<hkern u1="X" u2="L" k="-43" />
<hkern u1="X" u2="K" k="-43" />
<hkern u1="X" u2="I" k="-43" />
<hkern u1="X" u2="H" k="-43" />
<hkern u1="X" u2="G" k="41" />
<hkern u1="X" u2="F" k="-43" />
<hkern u1="X" u2="E" k="-43" />
<hkern u1="X" u2="D" k="-43" />
<hkern u1="X" u2="C" k="41" />
<hkern u1="X" u2="B" k="-43" />
<hkern u1="X" u2="&#x2d;" k="127" />
<hkern u1="Y" u2="&#x2014;" k="211" />
<hkern u1="Y" u2="&#x2013;" k="211" />
<hkern u1="Y" u2="&#x153;" k="254" />
<hkern u1="Y" u2="&#xff;" k="211" />
<hkern u1="Y" u2="&#xfd;" k="211" />
<hkern u1="Y" u2="&#xfc;" k="168" />
<hkern u1="Y" u2="&#xfb;" k="168" />
<hkern u1="Y" u2="&#xfa;" k="168" />
<hkern u1="Y" u2="&#xf9;" k="168" />
<hkern u1="Y" u2="&#xf8;" k="254" />
<hkern u1="Y" u2="&#xf6;" k="254" />
<hkern u1="Y" u2="&#xf5;" k="254" />
<hkern u1="Y" u2="&#xf4;" k="254" />
<hkern u1="Y" u2="&#xf3;" k="254" />
<hkern u1="Y" u2="&#xf2;" k="254" />
<hkern u1="Y" u2="&#xf1;" k="168" />
<hkern u1="Y" u2="&#xeb;" k="254" />
<hkern u1="Y" u2="&#xea;" k="254" />
<hkern u1="Y" u2="&#xe9;" k="254" />
<hkern u1="Y" u2="&#xe8;" k="254" />
<hkern u1="Y" u2="&#xe7;" k="211" />
<hkern u1="Y" u2="&#xe5;" k="211" />
<hkern u1="Y" u2="&#xe4;" k="211" />
<hkern u1="Y" u2="&#xe3;" k="211" />
<hkern u1="Y" u2="&#xe2;" k="211" />
<hkern u1="Y" u2="&#xe1;" k="211" />
<hkern u1="Y" u2="&#xe0;" k="211" />
<hkern u1="Y" u2="&#xd8;" k="84" />
<hkern u1="Y" u2="&#xd6;" k="84" />
<hkern u1="Y" u2="&#xd5;" k="84" />
<hkern u1="Y" u2="&#xd4;" k="84" />
<hkern u1="Y" u2="&#xd3;" k="84" />
<hkern u1="Y" u2="&#xd2;" k="84" />
<hkern u1="Y" u2="&#xc7;" k="84" />
<hkern u1="Y" u2="&#xc6;" k="211" />
<hkern u1="Y" u2="&#xc5;" k="211" />
<hkern u1="Y" u2="&#xc4;" k="211" />
<hkern u1="Y" u2="&#xc3;" k="211" />
<hkern u1="Y" u2="&#xc2;" k="211" />
<hkern u1="Y" u2="&#xc1;" k="211" />
<hkern u1="Y" u2="&#xc0;" k="211" />
<hkern u1="Y" u2="&#xad;" k="211" />
<hkern u1="Y" u2="z" k="168" />
<hkern u1="Y" u2="y" k="211" />
<hkern u1="Y" u2="x" k="168" />
<hkern u1="Y" u2="w" k="211" />
<hkern u1="Y" u2="v" k="211" />
<hkern u1="Y" u2="u" k="168" />
<hkern u1="Y" u2="t" k="41" />
<hkern u1="Y" u2="s" k="168" />
<hkern u1="Y" u2="r" k="168" />
<hkern u1="Y" u2="q" k="211" />
<hkern u1="Y" u2="p" k="211" />
<hkern u1="Y" u2="o" k="254" />
<hkern u1="Y" u2="n" k="168" />
<hkern u1="Y" u2="m" k="168" />
<hkern u1="Y" u2="l" k="41" />
<hkern u1="Y" u2="k" k="41" />
<hkern u1="Y" u2="j" k="41" />
<hkern u1="Y" u2="i" k="41" />
<hkern u1="Y" u2="h" k="41" />
<hkern u1="Y" u2="g" k="211" />
<hkern u1="Y" u2="f" k="41" />
<hkern u1="Y" u2="e" k="254" />
<hkern u1="Y" u2="d" k="211" />
<hkern u1="Y" u2="c" k="211" />
<hkern u1="Y" u2="b" k="41" />
<hkern u1="Y" u2="a" k="211" />
<hkern u1="Y" u2="S" k="84" />
<hkern u1="Y" u2="Q" k="84" />
<hkern u1="Y" u2="O" k="84" />
<hkern u1="Y" u2="J" k="211" />
<hkern u1="Y" u2="G" k="84" />
<hkern u1="Y" u2="C" k="84" />
<hkern u1="Y" u2="A" k="211" />
<hkern u1="Y" u2="&#x2f;" k="84" />
<hkern u1="Y" u2="&#x2e;" k="168" />
<hkern u1="Y" u2="&#x2d;" k="211" />
<hkern u1="Y" u2="&#x2c;" k="168" />
<hkern u1="Z" u2="w" k="84" />
<hkern u1="Z" u2="Z" k="-86" />
<hkern u1="Z" u2="X" k="-43" />
<hkern u1="Z" u2="S" k="-43" />
<hkern u1="Z" u2="R" k="-86" />
<hkern u1="Z" u2="Q" k="-43" />
<hkern u1="Z" u2="P" k="-86" />
<hkern u1="Z" u2="N" k="-86" />
<hkern u1="Z" u2="M" k="-86" />
<hkern u1="Z" u2="L" k="-86" />
<hkern u1="Z" u2="K" k="-86" />
<hkern u1="Z" u2="I" k="-86" />
<hkern u1="Z" u2="H" k="-86" />
<hkern u1="Z" u2="G" k="-43" />
<hkern u1="Z" u2="F" k="-86" />
<hkern u1="Z" u2="E" k="-86" />
<hkern u1="Z" u2="D" k="-86" />
<hkern u1="Z" u2="B" k="-86" />
<hkern u1="Z" u2="&#x2f;" k="-86" />
<hkern u1="c" u2="k" k="41" />
<hkern u1="c" u2="h" k="41" />
<hkern u1="k" u2="&#xe5;" k="-43" />
<hkern u1="k" u2="&#xe4;" k="-43" />
<hkern u1="k" u2="&#xe3;" k="-43" />
<hkern u1="k" u2="&#xe2;" k="-43" />
<hkern u1="k" u2="&#xe1;" k="-43" />
<hkern u1="k" u2="&#xe0;" k="-43" />
<hkern u1="k" u2="a" k="-43" />
<hkern u1="o" u2="x" k="41" />
<hkern u1="r" u2="&#x201d;" k="-47" />
<hkern u1="r" u2="&#x2019;" k="-47" />
<hkern u1="r" u2="&#x2e;" k="84" />
<hkern u1="r" u2="&#x2c;" k="84" />
<hkern u1="t" u2="&#xe5;" k="-43" />
<hkern u1="t" u2="&#xe4;" k="-43" />
<hkern u1="t" u2="&#xe3;" k="-43" />
<hkern u1="t" u2="&#xe2;" k="-43" />
<hkern u1="t" u2="&#xe1;" k="-43" />
<hkern u1="t" u2="&#xe0;" k="-43" />
<hkern u1="t" u2="a" k="-43" />
<hkern u1="v" u2="&#x2e;" k="84" />
<hkern u1="v" u2="&#x2c;" k="84" />
<hkern u1="w" u2="&#x2e;" k="84" />
<hkern u1="w" u2="&#x2c;" k="84" />
<hkern u1="x" u2="&#xe5;" k="-43" />
<hkern u1="x" u2="&#xe4;" k="-43" />
<hkern u1="x" u2="&#xe3;" k="-43" />
<hkern u1="x" u2="&#xe2;" k="-43" />
<hkern u1="x" u2="&#xe1;" k="-43" />
<hkern u1="x" u2="&#xe0;" k="-43" />
<hkern u1="x" u2="a" k="-43" />
<hkern u1="&#xad;" u2="Y" k="127" />
<hkern u1="&#xad;" u2="X" k="127" />
<hkern u1="&#xad;" u2="T" k="127" />
<hkern u1="&#xad;" u2="J" k="84" />
<hkern u1="&#xad;" u2="&#x37;" k="127" />
<hkern u1="&#xc0;" u2="w" k="41" />
<hkern u1="&#xc0;" u2="v" k="41" />
<hkern u1="&#xc0;" u2="Z" k="-43" />
<hkern u1="&#xc0;" u2="Y" k="168" />
<hkern u1="&#xc0;" u2="W" k="84" />
<hkern u1="&#xc0;" u2="V" k="84" />
<hkern u1="&#xc0;" u2="T" k="168" />
<hkern u1="&#xc0;" u2="S" k="41" />
<hkern u1="&#xc0;" u2="Q" k="41" />
<hkern u1="&#xc0;" u2="J" k="-43" />
<hkern u1="&#xc0;" u2="G" k="41" />
<hkern u1="&#xc0;" u2="&#x3f;" k="127" />
<hkern u1="&#xc1;" u2="w" k="41" />
<hkern u1="&#xc1;" u2="v" k="41" />
<hkern u1="&#xc1;" u2="Z" k="-43" />
<hkern u1="&#xc1;" u2="Y" k="168" />
<hkern u1="&#xc1;" u2="W" k="84" />
<hkern u1="&#xc1;" u2="V" k="84" />
<hkern u1="&#xc1;" u2="T" k="168" />
<hkern u1="&#xc1;" u2="S" k="41" />
<hkern u1="&#xc1;" u2="Q" k="41" />
<hkern u1="&#xc1;" u2="J" k="-43" />
<hkern u1="&#xc1;" u2="G" k="41" />
<hkern u1="&#xc1;" u2="&#x3f;" k="127" />
<hkern u1="&#xc2;" u2="w" k="41" />
<hkern u1="&#xc2;" u2="v" k="41" />
<hkern u1="&#xc2;" u2="Z" k="-43" />
<hkern u1="&#xc2;" u2="Y" k="168" />
<hkern u1="&#xc2;" u2="W" k="84" />
<hkern u1="&#xc2;" u2="V" k="84" />
<hkern u1="&#xc2;" u2="T" k="168" />
<hkern u1="&#xc2;" u2="S" k="41" />
<hkern u1="&#xc2;" u2="Q" k="41" />
<hkern u1="&#xc2;" u2="J" k="-43" />
<hkern u1="&#xc2;" u2="G" k="41" />
<hkern u1="&#xc2;" u2="&#x3f;" k="127" />
<hkern u1="&#xc3;" u2="w" k="41" />
<hkern u1="&#xc3;" u2="v" k="41" />
<hkern u1="&#xc3;" u2="Z" k="-43" />
<hkern u1="&#xc3;" u2="Y" k="168" />
<hkern u1="&#xc3;" u2="W" k="84" />
<hkern u1="&#xc3;" u2="V" k="84" />
<hkern u1="&#xc3;" u2="T" k="168" />
<hkern u1="&#xc3;" u2="S" k="41" />
<hkern u1="&#xc3;" u2="Q" k="41" />
<hkern u1="&#xc3;" u2="J" k="-43" />
<hkern u1="&#xc3;" u2="G" k="41" />
<hkern u1="&#xc3;" u2="&#x3f;" k="127" />
<hkern u1="&#xc4;" u2="w" k="41" />
<hkern u1="&#xc4;" u2="v" k="41" />
<hkern u1="&#xc4;" u2="Z" k="-43" />
<hkern u1="&#xc4;" u2="Y" k="168" />
<hkern u1="&#xc4;" u2="W" k="84" />
<hkern u1="&#xc4;" u2="V" k="84" />
<hkern u1="&#xc4;" u2="T" k="168" />
<hkern u1="&#xc4;" u2="S" k="41" />
<hkern u1="&#xc4;" u2="Q" k="41" />
<hkern u1="&#xc4;" u2="J" k="-43" />
<hkern u1="&#xc4;" u2="G" k="41" />
<hkern u1="&#xc4;" u2="&#x3f;" k="127" />
<hkern u1="&#xc5;" u2="w" k="41" />
<hkern u1="&#xc5;" u2="v" k="41" />
<hkern u1="&#xc5;" u2="Z" k="-43" />
<hkern u1="&#xc5;" u2="Y" k="168" />
<hkern u1="&#xc5;" u2="W" k="84" />
<hkern u1="&#xc5;" u2="V" k="84" />
<hkern u1="&#xc5;" u2="T" k="168" />
<hkern u1="&#xc5;" u2="S" k="41" />
<hkern u1="&#xc5;" u2="Q" k="41" />
<hkern u1="&#xc5;" u2="J" k="-43" />
<hkern u1="&#xc5;" u2="G" k="41" />
<hkern u1="&#xc5;" u2="&#x3f;" k="127" />
<hkern u1="&#xc6;" u2="Z" k="-86" />
<hkern u1="&#xc6;" u2="X" k="-43" />
<hkern u1="&#xc6;" u2="S" k="-43" />
<hkern u1="&#xc6;" u2="R" k="-86" />
<hkern u1="&#xc6;" u2="Q" k="-43" />
<hkern u1="&#xc6;" u2="P" k="-86" />
<hkern u1="&#xc6;" u2="N" k="-86" />
<hkern u1="&#xc6;" u2="M" k="-86" />
<hkern u1="&#xc6;" u2="L" k="-86" />
<hkern u1="&#xc6;" u2="K" k="-86" />
<hkern u1="&#xc6;" u2="I" k="-86" />
<hkern u1="&#xc6;" u2="H" k="-86" />
<hkern u1="&#xc6;" u2="G" k="-43" />
<hkern u1="&#xc6;" u2="F" k="-86" />
<hkern u1="&#xc6;" u2="E" k="-86" />
<hkern u1="&#xc6;" u2="D" k="-86" />
<hkern u1="&#xc6;" u2="B" k="-86" />
<hkern u1="&#xc6;" u2="&#x2f;" k="-86" />
<hkern u1="&#xc7;" u2="Z" k="-43" />
<hkern u1="&#xc7;" u2="Y" k="84" />
<hkern u1="&#xc7;" u2="T" k="41" />
<hkern u1="&#xc7;" u2="S" k="-43" />
<hkern u1="&#xc7;" u2="R" k="-43" />
<hkern u1="&#xc7;" u2="Q" k="-43" />
<hkern u1="&#xc7;" u2="P" k="-43" />
<hkern u1="&#xc7;" u2="N" k="-43" />
<hkern u1="&#xc7;" u2="M" k="-43" />
<hkern u1="&#xc7;" u2="L" k="-43" />
<hkern u1="&#xc7;" u2="K" k="-43" />
<hkern u1="&#xc7;" u2="J" k="41" />
<hkern u1="&#xc7;" u2="I" k="-43" />
<hkern u1="&#xc7;" u2="H" k="-43" />
<hkern u1="&#xc7;" u2="G" k="-43" />
<hkern u1="&#xc7;" u2="F" k="-43" />
<hkern u1="&#xc7;" u2="E" k="-43" />
<hkern u1="&#xc7;" u2="D" k="-43" />
<hkern u1="&#xc7;" u2="B" k="-43" />
<hkern u1="&#xc8;" u2="Z" k="-86" />
<hkern u1="&#xc8;" u2="X" k="-43" />
<hkern u1="&#xc8;" u2="S" k="-43" />
<hkern u1="&#xc8;" u2="R" k="-86" />
<hkern u1="&#xc8;" u2="Q" k="-43" />
<hkern u1="&#xc8;" u2="P" k="-86" />
<hkern u1="&#xc8;" u2="N" k="-86" />
<hkern u1="&#xc8;" u2="M" k="-86" />
<hkern u1="&#xc8;" u2="L" k="-86" />
<hkern u1="&#xc8;" u2="K" k="-86" />
<hkern u1="&#xc8;" u2="I" k="-86" />
<hkern u1="&#xc8;" u2="H" k="-86" />
<hkern u1="&#xc8;" u2="G" k="-43" />
<hkern u1="&#xc8;" u2="F" k="-86" />
<hkern u1="&#xc8;" u2="E" k="-86" />
<hkern u1="&#xc8;" u2="D" k="-86" />
<hkern u1="&#xc8;" u2="B" k="-86" />
<hkern u1="&#xc8;" u2="&#x2f;" k="-86" />
<hkern u1="&#xc9;" u2="Z" k="-86" />
<hkern u1="&#xc9;" u2="X" k="-43" />
<hkern u1="&#xc9;" u2="S" k="-43" />
<hkern u1="&#xc9;" u2="R" k="-86" />
<hkern u1="&#xc9;" u2="Q" k="-43" />
<hkern u1="&#xc9;" u2="P" k="-86" />
<hkern u1="&#xc9;" u2="N" k="-86" />
<hkern u1="&#xc9;" u2="M" k="-86" />
<hkern u1="&#xc9;" u2="L" k="-86" />
<hkern u1="&#xc9;" u2="K" k="-86" />
<hkern u1="&#xc9;" u2="I" k="-86" />
<hkern u1="&#xc9;" u2="H" k="-86" />
<hkern u1="&#xc9;" u2="G" k="-43" />
<hkern u1="&#xc9;" u2="F" k="-86" />
<hkern u1="&#xc9;" u2="E" k="-86" />
<hkern u1="&#xc9;" u2="D" k="-86" />
<hkern u1="&#xc9;" u2="B" k="-86" />
<hkern u1="&#xc9;" u2="&#x2f;" k="-86" />
<hkern u1="&#xca;" u2="Z" k="-86" />
<hkern u1="&#xca;" u2="X" k="-43" />
<hkern u1="&#xca;" u2="S" k="-43" />
<hkern u1="&#xca;" u2="R" k="-86" />
<hkern u1="&#xca;" u2="Q" k="-43" />
<hkern u1="&#xca;" u2="P" k="-86" />
<hkern u1="&#xca;" u2="N" k="-86" />
<hkern u1="&#xca;" u2="M" k="-86" />
<hkern u1="&#xca;" u2="L" k="-86" />
<hkern u1="&#xca;" u2="K" k="-86" />
<hkern u1="&#xca;" u2="I" k="-86" />
<hkern u1="&#xca;" u2="H" k="-86" />
<hkern u1="&#xca;" u2="G" k="-43" />
<hkern u1="&#xca;" u2="F" k="-86" />
<hkern u1="&#xca;" u2="E" k="-86" />
<hkern u1="&#xca;" u2="D" k="-86" />
<hkern u1="&#xca;" u2="B" k="-86" />
<hkern u1="&#xca;" u2="&#x2f;" k="-86" />
<hkern u1="&#xcb;" u2="Z" k="-86" />
<hkern u1="&#xcb;" u2="X" k="-43" />
<hkern u1="&#xcb;" u2="S" k="-43" />
<hkern u1="&#xcb;" u2="R" k="-86" />
<hkern u1="&#xcb;" u2="Q" k="-43" />
<hkern u1="&#xcb;" u2="P" k="-86" />
<hkern u1="&#xcb;" u2="N" k="-86" />
<hkern u1="&#xcb;" u2="M" k="-86" />
<hkern u1="&#xcb;" u2="L" k="-86" />
<hkern u1="&#xcb;" u2="K" k="-86" />
<hkern u1="&#xcb;" u2="I" k="-86" />
<hkern u1="&#xcb;" u2="H" k="-86" />
<hkern u1="&#xcb;" u2="G" k="-43" />
<hkern u1="&#xcb;" u2="F" k="-86" />
<hkern u1="&#xcb;" u2="E" k="-86" />
<hkern u1="&#xcb;" u2="D" k="-86" />
<hkern u1="&#xcb;" u2="B" k="-86" />
<hkern u1="&#xcb;" u2="&#x2f;" k="-86" />
<hkern u1="&#xd0;" u2="Z" k="-43" />
<hkern u1="&#xd0;" u2="Y" k="127" />
<hkern u1="&#xd0;" u2="X" k="84" />
<hkern u1="&#xd0;" u2="W" k="41" />
<hkern u1="&#xd0;" u2="V" k="41" />
<hkern u1="&#xd0;" u2="T" k="84" />
<hkern u1="&#xd0;" u2="S" k="-43" />
<hkern u1="&#xd0;" u2="R" k="-43" />
<hkern u1="&#xd0;" u2="Q" k="-43" />
<hkern u1="&#xd0;" u2="P" k="-43" />
<hkern u1="&#xd0;" u2="N" k="-43" />
<hkern u1="&#xd0;" u2="M" k="-43" />
<hkern u1="&#xd0;" u2="L" k="-43" />
<hkern u1="&#xd0;" u2="K" k="-43" />
<hkern u1="&#xd0;" u2="J" k="41" />
<hkern u1="&#xd0;" u2="I" k="-43" />
<hkern u1="&#xd0;" u2="H" k="-43" />
<hkern u1="&#xd0;" u2="G" k="-43" />
<hkern u1="&#xd0;" u2="F" k="-43" />
<hkern u1="&#xd0;" u2="E" k="-43" />
<hkern u1="&#xd0;" u2="D" k="-43" />
<hkern u1="&#xd0;" u2="B" k="-43" />
<hkern u1="&#xd1;" u2="Z" k="-43" />
<hkern u1="&#xd1;" u2="X" k="-43" />
<hkern u1="&#xd1;" u2="S" k="-43" />
<hkern u1="&#xd1;" u2="R" k="-86" />
<hkern u1="&#xd1;" u2="Q" k="-43" />
<hkern u1="&#xd1;" u2="P" k="-86" />
<hkern u1="&#xd1;" u2="N" k="-86" />
<hkern u1="&#xd1;" u2="M" k="-86" />
<hkern u1="&#xd1;" u2="L" k="-86" />
<hkern u1="&#xd1;" u2="K" k="-86" />
<hkern u1="&#xd1;" u2="I" k="-86" />
<hkern u1="&#xd1;" u2="H" k="-86" />
<hkern u1="&#xd1;" u2="G" k="-43" />
<hkern u1="&#xd1;" u2="F" k="-86" />
<hkern u1="&#xd1;" u2="E" k="-86" />
<hkern u1="&#xd1;" u2="D" k="-86" />
<hkern u1="&#xd1;" u2="B" k="-86" />
<hkern u1="&#xd1;" u2="&#x2f;" k="-86" />
<hkern u1="&#xd2;" u2="Z" k="-43" />
<hkern u1="&#xd2;" u2="Y" k="127" />
<hkern u1="&#xd2;" u2="X" k="84" />
<hkern u1="&#xd2;" u2="W" k="41" />
<hkern u1="&#xd2;" u2="V" k="41" />
<hkern u1="&#xd2;" u2="T" k="84" />
<hkern u1="&#xd2;" u2="S" k="-43" />
<hkern u1="&#xd2;" u2="R" k="-43" />
<hkern u1="&#xd2;" u2="Q" k="-43" />
<hkern u1="&#xd2;" u2="P" k="-43" />
<hkern u1="&#xd2;" u2="N" k="-43" />
<hkern u1="&#xd2;" u2="M" k="-43" />
<hkern u1="&#xd2;" u2="L" k="-43" />
<hkern u1="&#xd2;" u2="K" k="-43" />
<hkern u1="&#xd2;" u2="J" k="84" />
<hkern u1="&#xd2;" u2="I" k="-43" />
<hkern u1="&#xd2;" u2="H" k="-43" />
<hkern u1="&#xd2;" u2="G" k="-43" />
<hkern u1="&#xd2;" u2="F" k="-43" />
<hkern u1="&#xd2;" u2="E" k="-43" />
<hkern u1="&#xd2;" u2="D" k="-43" />
<hkern u1="&#xd2;" u2="B" k="-43" />
<hkern u1="&#xd3;" u2="Z" k="-43" />
<hkern u1="&#xd3;" u2="Y" k="127" />
<hkern u1="&#xd3;" u2="X" k="84" />
<hkern u1="&#xd3;" u2="W" k="41" />
<hkern u1="&#xd3;" u2="V" k="41" />
<hkern u1="&#xd3;" u2="T" k="84" />
<hkern u1="&#xd3;" u2="S" k="-43" />
<hkern u1="&#xd3;" u2="R" k="-43" />
<hkern u1="&#xd3;" u2="Q" k="-43" />
<hkern u1="&#xd3;" u2="P" k="-43" />
<hkern u1="&#xd3;" u2="N" k="-43" />
<hkern u1="&#xd3;" u2="M" k="-43" />
<hkern u1="&#xd3;" u2="L" k="-43" />
<hkern u1="&#xd3;" u2="K" k="-43" />
<hkern u1="&#xd3;" u2="J" k="84" />
<hkern u1="&#xd3;" u2="I" k="-43" />
<hkern u1="&#xd3;" u2="H" k="-43" />
<hkern u1="&#xd3;" u2="G" k="-43" />
<hkern u1="&#xd3;" u2="F" k="-43" />
<hkern u1="&#xd3;" u2="E" k="-43" />
<hkern u1="&#xd3;" u2="D" k="-43" />
<hkern u1="&#xd3;" u2="B" k="-43" />
<hkern u1="&#xd4;" u2="Z" k="-43" />
<hkern u1="&#xd4;" u2="Y" k="127" />
<hkern u1="&#xd4;" u2="X" k="84" />
<hkern u1="&#xd4;" u2="W" k="41" />
<hkern u1="&#xd4;" u2="V" k="41" />
<hkern u1="&#xd4;" u2="T" k="84" />
<hkern u1="&#xd4;" u2="S" k="-43" />
<hkern u1="&#xd4;" u2="R" k="-43" />
<hkern u1="&#xd4;" u2="Q" k="-43" />
<hkern u1="&#xd4;" u2="P" k="-43" />
<hkern u1="&#xd4;" u2="N" k="-43" />
<hkern u1="&#xd4;" u2="M" k="-43" />
<hkern u1="&#xd4;" u2="L" k="-43" />
<hkern u1="&#xd4;" u2="K" k="-43" />
<hkern u1="&#xd4;" u2="J" k="84" />
<hkern u1="&#xd4;" u2="I" k="-43" />
<hkern u1="&#xd4;" u2="H" k="-43" />
<hkern u1="&#xd4;" u2="G" k="-43" />
<hkern u1="&#xd4;" u2="F" k="-43" />
<hkern u1="&#xd4;" u2="E" k="-43" />
<hkern u1="&#xd4;" u2="D" k="-43" />
<hkern u1="&#xd4;" u2="B" k="-43" />
<hkern u1="&#xd5;" u2="Z" k="-43" />
<hkern u1="&#xd5;" u2="Y" k="127" />
<hkern u1="&#xd5;" u2="X" k="84" />
<hkern u1="&#xd5;" u2="W" k="41" />
<hkern u1="&#xd5;" u2="V" k="41" />
<hkern u1="&#xd5;" u2="T" k="84" />
<hkern u1="&#xd5;" u2="S" k="-43" />
<hkern u1="&#xd5;" u2="R" k="-43" />
<hkern u1="&#xd5;" u2="Q" k="-43" />
<hkern u1="&#xd5;" u2="P" k="-43" />
<hkern u1="&#xd5;" u2="N" k="-43" />
<hkern u1="&#xd5;" u2="M" k="-43" />
<hkern u1="&#xd5;" u2="L" k="-43" />
<hkern u1="&#xd5;" u2="K" k="-43" />
<hkern u1="&#xd5;" u2="J" k="84" />
<hkern u1="&#xd5;" u2="I" k="-43" />
<hkern u1="&#xd5;" u2="H" k="-43" />
<hkern u1="&#xd5;" u2="G" k="-43" />
<hkern u1="&#xd5;" u2="F" k="-43" />
<hkern u1="&#xd5;" u2="E" k="-43" />
<hkern u1="&#xd5;" u2="D" k="-43" />
<hkern u1="&#xd5;" u2="B" k="-43" />
<hkern u1="&#xd6;" u2="Z" k="-43" />
<hkern u1="&#xd6;" u2="Y" k="127" />
<hkern u1="&#xd6;" u2="X" k="84" />
<hkern u1="&#xd6;" u2="W" k="41" />
<hkern u1="&#xd6;" u2="V" k="41" />
<hkern u1="&#xd6;" u2="T" k="84" />
<hkern u1="&#xd6;" u2="S" k="-43" />
<hkern u1="&#xd6;" u2="R" k="-43" />
<hkern u1="&#xd6;" u2="Q" k="-43" />
<hkern u1="&#xd6;" u2="P" k="-43" />
<hkern u1="&#xd6;" u2="N" k="-43" />
<hkern u1="&#xd6;" u2="M" k="-43" />
<hkern u1="&#xd6;" u2="L" k="-43" />
<hkern u1="&#xd6;" u2="K" k="-43" />
<hkern u1="&#xd6;" u2="J" k="84" />
<hkern u1="&#xd6;" u2="I" k="-43" />
<hkern u1="&#xd6;" u2="H" k="-43" />
<hkern u1="&#xd6;" u2="G" k="-43" />
<hkern u1="&#xd6;" u2="F" k="-43" />
<hkern u1="&#xd6;" u2="E" k="-43" />
<hkern u1="&#xd6;" u2="D" k="-43" />
<hkern u1="&#xd6;" u2="B" k="-43" />
<hkern u1="&#xd8;" u2="Z" k="-43" />
<hkern u1="&#xd8;" u2="Y" k="127" />
<hkern u1="&#xd8;" u2="X" k="84" />
<hkern u1="&#xd8;" u2="W" k="41" />
<hkern u1="&#xd8;" u2="V" k="41" />
<hkern u1="&#xd8;" u2="T" k="84" />
<hkern u1="&#xd8;" u2="S" k="-43" />
<hkern u1="&#xd8;" u2="R" k="-43" />
<hkern u1="&#xd8;" u2="Q" k="-43" />
<hkern u1="&#xd8;" u2="P" k="-43" />
<hkern u1="&#xd8;" u2="N" k="-43" />
<hkern u1="&#xd8;" u2="M" k="-43" />
<hkern u1="&#xd8;" u2="L" k="-43" />
<hkern u1="&#xd8;" u2="K" k="-43" />
<hkern u1="&#xd8;" u2="J" k="84" />
<hkern u1="&#xd8;" u2="I" k="-43" />
<hkern u1="&#xd8;" u2="H" k="-43" />
<hkern u1="&#xd8;" u2="G" k="-43" />
<hkern u1="&#xd8;" u2="F" k="-43" />
<hkern u1="&#xd8;" u2="E" k="-43" />
<hkern u1="&#xd8;" u2="D" k="-43" />
<hkern u1="&#xd8;" u2="B" k="-43" />
<hkern u1="&#xd9;" u2="X" k="-43" />
<hkern u1="&#xd9;" u2="S" k="-43" />
<hkern u1="&#xd9;" u2="R" k="-86" />
<hkern u1="&#xd9;" u2="Q" k="-43" />
<hkern u1="&#xd9;" u2="P" k="-86" />
<hkern u1="&#xd9;" u2="N" k="-86" />
<hkern u1="&#xd9;" u2="M" k="-86" />
<hkern u1="&#xd9;" u2="L" k="-86" />
<hkern u1="&#xd9;" u2="K" k="-86" />
<hkern u1="&#xd9;" u2="I" k="-86" />
<hkern u1="&#xd9;" u2="H" k="-86" />
<hkern u1="&#xd9;" u2="G" k="-43" />
<hkern u1="&#xd9;" u2="F" k="-86" />
<hkern u1="&#xd9;" u2="E" k="-86" />
<hkern u1="&#xd9;" u2="D" k="-86" />
<hkern u1="&#xd9;" u2="B" k="-86" />
<hkern u1="&#xd9;" u2="&#x2f;" k="-86" />
<hkern u1="&#xda;" u2="X" k="-43" />
<hkern u1="&#xda;" u2="S" k="-43" />
<hkern u1="&#xda;" u2="R" k="-86" />
<hkern u1="&#xda;" u2="Q" k="-43" />
<hkern u1="&#xda;" u2="P" k="-86" />
<hkern u1="&#xda;" u2="N" k="-86" />
<hkern u1="&#xda;" u2="M" k="-86" />
<hkern u1="&#xda;" u2="L" k="-86" />
<hkern u1="&#xda;" u2="K" k="-86" />
<hkern u1="&#xda;" u2="I" k="-86" />
<hkern u1="&#xda;" u2="H" k="-86" />
<hkern u1="&#xda;" u2="G" k="-43" />
<hkern u1="&#xda;" u2="F" k="-86" />
<hkern u1="&#xda;" u2="E" k="-86" />
<hkern u1="&#xda;" u2="D" k="-86" />
<hkern u1="&#xda;" u2="B" k="-86" />
<hkern u1="&#xda;" u2="&#x2f;" k="-86" />
<hkern u1="&#xdb;" u2="X" k="-43" />
<hkern u1="&#xdb;" u2="S" k="-43" />
<hkern u1="&#xdb;" u2="R" k="-86" />
<hkern u1="&#xdb;" u2="Q" k="-43" />
<hkern u1="&#xdb;" u2="P" k="-86" />
<hkern u1="&#xdb;" u2="N" k="-86" />
<hkern u1="&#xdb;" u2="M" k="-86" />
<hkern u1="&#xdb;" u2="L" k="-86" />
<hkern u1="&#xdb;" u2="K" k="-86" />
<hkern u1="&#xdb;" u2="I" k="-86" />
<hkern u1="&#xdb;" u2="H" k="-86" />
<hkern u1="&#xdb;" u2="G" k="-43" />
<hkern u1="&#xdb;" u2="F" k="-86" />
<hkern u1="&#xdb;" u2="E" k="-86" />
<hkern u1="&#xdb;" u2="D" k="-86" />
<hkern u1="&#xdb;" u2="B" k="-86" />
<hkern u1="&#xdb;" u2="&#x2f;" k="-86" />
<hkern u1="&#xdc;" u2="X" k="-43" />
<hkern u1="&#xdc;" u2="S" k="-43" />
<hkern u1="&#xdc;" u2="R" k="-86" />
<hkern u1="&#xdc;" u2="Q" k="-43" />
<hkern u1="&#xdc;" u2="P" k="-86" />
<hkern u1="&#xdc;" u2="N" k="-86" />
<hkern u1="&#xdc;" u2="M" k="-86" />
<hkern u1="&#xdc;" u2="L" k="-86" />
<hkern u1="&#xdc;" u2="K" k="-86" />
<hkern u1="&#xdc;" u2="I" k="-86" />
<hkern u1="&#xdc;" u2="H" k="-86" />
<hkern u1="&#xdc;" u2="G" k="-43" />
<hkern u1="&#xdc;" u2="F" k="-86" />
<hkern u1="&#xdc;" u2="E" k="-86" />
<hkern u1="&#xdc;" u2="D" k="-86" />
<hkern u1="&#xdc;" u2="B" k="-86" />
<hkern u1="&#xdc;" u2="&#x2f;" k="-86" />
<hkern u1="&#xe7;" u2="k" k="41" />
<hkern u1="&#xe7;" u2="h" k="41" />
<hkern u1="&#xf2;" u2="x" k="41" />
<hkern u1="&#xf3;" u2="x" k="41" />
<hkern u1="&#xf4;" u2="x" k="41" />
<hkern u1="&#xf5;" u2="x" k="41" />
<hkern u1="&#xf6;" u2="x" k="41" />
<hkern u1="&#xf8;" u2="x" k="41" />
<hkern u1="&#x152;" u2="Z" k="-86" />
<hkern u1="&#x152;" u2="X" k="-43" />
<hkern u1="&#x152;" u2="S" k="-43" />
<hkern u1="&#x152;" u2="R" k="-86" />
<hkern u1="&#x152;" u2="Q" k="-43" />
<hkern u1="&#x152;" u2="P" k="-86" />
<hkern u1="&#x152;" u2="N" k="-86" />
<hkern u1="&#x152;" u2="M" k="-86" />
<hkern u1="&#x152;" u2="L" k="-86" />
<hkern u1="&#x152;" u2="K" k="-86" />
<hkern u1="&#x152;" u2="I" k="-86" />
<hkern u1="&#x152;" u2="H" k="-86" />
<hkern u1="&#x152;" u2="G" k="-43" />
<hkern u1="&#x152;" u2="F" k="-86" />
<hkern u1="&#x152;" u2="E" k="-86" />
<hkern u1="&#x152;" u2="D" k="-86" />
<hkern u1="&#x152;" u2="B" k="-86" />
<hkern u1="&#x152;" u2="&#x2f;" k="-86" />
<hkern u1="&#x153;" u2="x" k="41" />
<hkern u1="&#x2013;" u2="Y" k="127" />
<hkern u1="&#x2013;" u2="X" k="127" />
<hkern u1="&#x2013;" u2="T" k="127" />
<hkern u1="&#x2013;" u2="J" k="84" />
<hkern u1="&#x2013;" u2="&#x37;" k="127" />
<hkern u1="&#x2014;" u2="Y" k="127" />
<hkern u1="&#x2014;" u2="X" k="127" />
<hkern u1="&#x2014;" u2="T" k="127" />
<hkern u1="&#x2014;" u2="J" k="84" />
<hkern u1="&#x2014;" u2="&#x37;" k="127" />
<hkern u1="&#x2018;" u2="J" k="168" />
<hkern u1="&#x2019;" u2="s" k="127" />
<hkern u1="&#x201c;" u2="J" k="168" />
<hkern g1="C,Ccedilla" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="D,Eth" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="D,Eth" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="D,Eth" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-43" />
<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="L" 	g2="C,Ccedilla" 	k="127" />
<hkern g1="L" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="127" />
<hkern g1="L" 	g2="quoteright,quotedblright" 	k="254" />
<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="127" />
<hkern g1="L" 	g2="hyphen,uni00AD,endash,emdash" 	k="84" />
<hkern g1="N,Ntilde" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="N,Ntilde" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="N,Ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="S" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="S" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="S" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-43" />
<hkern g1="S" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="-43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="Z" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="Z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="Z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="84" />
<hkern g1="s" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="-43" />
<hkern g1="y,yacute,ydieresis" 	g2="comma,period" 	k="84" />
<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="168" />
<hkern g1="comma,period" 	g2="quoteright,quotedblright" 	k="340" />
</font>
</defs></svg>