File: akzidgrostdlig.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 (1886 lines) | stat: -rwxr-xr-x 126,216 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
1884
1885
1886
<?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_stdlight" horiz-adv-x="1067" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="528" />
<glyph unicode="&#xfb01;" d="M47 874v103h215v270q0 34 2.5 58.5t14.5 59t34 56.5t64.5 38t101.5 16q41 0 125 -15v-119q-1 0 -19 7t-28 10t-30 6.5t-40 3.5q-60 0 -82 -36.5t-22 -98.5v-256h221v-103h-221v-874h-121v874h-215zM795 0v977h118v-977h-118zM795 1206v187h118v-187h-118z" />
<glyph unicode="&#xfb02;" d="M47 874v103h215v270q0 34 2.5 58.5t14.5 59t34 56.5t64.5 38t101.5 16q41 0 125 -15v-119q-1 0 -19 7t-28 10t-30 6.5t-40 3.5q-60 0 -82 -36.5t-22 -98.5v-256h221v-103h-221v-874h-121v874h-215zM793 0v1446h122v-1446h-122z" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="682" />
<glyph unicode=" "  horiz-adv-x="528" />
<glyph unicode="&#x09;" horiz-adv-x="528" />
<glyph unicode="&#xa0;" horiz-adv-x="528" />
<glyph unicode="!" horiz-adv-x="425" d="M176 0v238h156v-238h-156zM188 629v829h131v-829l-18 -269h-96z" />
<glyph unicode="&#x22;" horiz-adv-x="731" d="M104 1522h170l-53 -596h-61zM457 1522h170l-54 -596h-61z" />
<glyph unicode="#" horiz-adv-x="1366" d="M86 530v111h358l27 199h-342v116h356l66 494h129l-70 -494h205l64 494h122l-67 -494h344v-116h-358l-27 -199h344v-111h-358l-72 -530h-127l78 530h-207l-78 -530h-119l74 530h-342zM565 641h207l27 199h-205z" />
<glyph unicode="$" horiz-adv-x="1236" d="M53 365l146 14q48 -103 137 -169t207 -83v582q-404 109 -404 372q0 64 18 117.5t45.5 90t66 65t75.5 44.5t78 27t68.5 15t52.5 6v127h119v-127q151 -13 256.5 -94.5t146.5 -239.5l-137 -14q-22 61 -57 106t-74 67.5t-71 32.5t-64 13v-506q62 -18 104.5 -31.5t96 -34 t88.5 -41.5t72 -50.5t58.5 -63t35 -78t13.5 -96.5q0 -34 -7.5 -72.5t-27 -88.5t-64 -99.5t-107.5 -85.5q-118 -65 -262 -70v-188h-119v188q-353 36 -490 365zM274 1092q0 -172 269 -244v473q-65 -3 -115 -21t-78 -42.5t-46 -56t-24 -57.5t-6 -52zM662 123q78 0 139 22 t95.5 53.5t57 72t30 72.5t7.5 60q0 57 -24 100.5t-73 74.5t-101.5 51t-130.5 41v-547z" />
<glyph unicode="%" horiz-adv-x="1792" d="M63 999q0 90 18 169.5t55 147t101.5 107t149.5 39.5q67 0 120 -23.5t86.5 -65t57 -89.5t34.5 -105.5t15.5 -103t4.5 -92.5q0 -203 -85 -330t-237 -127q-90 0 -155.5 44.5t-99.5 118t-49.5 150.5t-15.5 160zM168 991q0 -22 1 -43t5.5 -60.5t12.5 -72.5t24 -71t38.5 -64.5 t57.5 -44t78 -17.5q54 0 94.5 27t62.5 66.5t36 94t18 98.5t4 91q0 173 -58 275t-155 102q-59 0 -103 -31.5t-68.5 -86.5t-36 -120.5t-11.5 -142.5zM502 -43l719 1577l86 -39l-723 -1575zM1085 457q0 90 18 169.5t55 147t101.5 107t149.5 39.5q80 0 140 -35.5t92.5 -86 t52.5 -120.5t26 -125t6 -113q0 -203 -84.5 -329.5t-236.5 -126.5q-90 0 -155.5 44.5t-99.5 118t-49.5 150.5t-15.5 160zM1190 449q0 -22 1 -43t5.5 -60.5t12.5 -72.5t24 -71t38.5 -64.5t57.5 -44t78 -17.5q54 0 94.5 27t62.5 66.5t36 94t18 98.5t4 91q0 173 -58 274.5 t-155 101.5q-59 0 -103 -31.5t-68.5 -86t-36 -120t-11.5 -142.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1323" d="M113 385q0 74 25 143t58.5 117t89 97.5t94 76t95.5 62.5q-117 152 -117 309q0 127 79 205t208 78q122 0 202.5 -67t80.5 -187q0 -64 -24 -122.5t-68 -106t-88 -82.5t-101 -70q29 -47 88.5 -135t77.5 -115q90 -134 148 -203q22 59 33.5 111t14 79t3.5 72h129 q-7 -91 -23.5 -161.5t-31.5 -105t-48 -99.5q83 -104 126.5 -139.5t105.5 -35.5v-124q-96 0 -164.5 47.5t-144.5 140.5q-146 -186 -398 -186q-168 0 -287 86q-163 122 -163 315zM254 391q0 -60 20.5 -110t53 -82.5t74.5 -55t82.5 -32t78.5 -9.5q195 0 328 160 q-73 99 -195.5 283.5t-152.5 228.5q-52 -33 -86.5 -57.5t-76.5 -62.5t-67 -74t-42 -85.5t-17 -103.5zM483 1190q0 -21 5 -44.5t10 -40t19 -44t19.5 -37.5t24 -41.5t21.5 -36.5q91 42 155 109t64 155q0 20 -6.5 42t-21.5 47.5t-48 42t-78 16.5q-41 0 -72.5 -13t-48 -31 t-27 -43t-13.5 -43.5t-3 -37.5z" />
<glyph unicode="'" horiz-adv-x="378" d="M104 1522h170l-53 -596h-61z" />
<glyph unicode="(" horiz-adv-x="630" d="M88 666q0 293 128.5 554t363.5 412l49 -67q-200 -165 -295.5 -383t-95.5 -508q0 -122 23 -248.5t69.5 -252t125.5 -238.5t181 -191l-51 -76q-243 184 -370.5 440.5t-127.5 557.5z" />
<glyph unicode=")" horiz-adv-x="641" d="M16 1565l52 75q241 -186 368 -441t127 -554q0 -193 -55.5 -374t-168.5 -338t-271 -257l-50 66q202 167 298 385.5t96 509.5q0 276 -99.5 522.5t-296.5 405.5z" />
<glyph unicode="*" horiz-adv-x="731" d="M68 1202l28 88l217 -57v223h99v-227l221 74l31 -84l-226 -80l137 -187l-75 -55l-140 184l-124 -184l-78 55l127 189z" />
<glyph unicode="+" horiz-adv-x="1482" d="M193 539v123h487v485h123v-485h487v-123h-487v-488h-123v488h-487z" />
<glyph unicode="," horiz-adv-x="342" d="M90 0v238h162v-201q0 -125 -17 -198.5t-77 -162.5l-68 48q47 76 62.5 131t15.5 145h-78z" />
<glyph unicode="-" horiz-adv-x="698" d="M78 541v123h543v-123h-543z" />
<glyph unicode="." horiz-adv-x="342" d="M90 0v238h162v-238h-162z" />
<glyph unicode="/" horiz-adv-x="980" d="M20 0l789 1446h152l-785 -1446h-156z" />
<glyph unicode="0" horiz-adv-x="1193" d="M90 735q0 58 5.5 119.5t21 135.5t39.5 140.5t64 131t91.5 110.5t126 74.5t162.5 28.5q79 0 146.5 -22t116 -57.5t87.5 -88t63.5 -104.5t43 -116.5t27.5 -115.5t14.5 -109t6.5 -90t1 -65q0 -41 -3.5 -90t-17 -123t-34.5 -142t-60.5 -139t-91.5 -122.5t-130.5 -84.5 t-174.5 -33q-164 0 -279 100t-170 269t-55 393zM227 727q0 -80 7 -152.5t23 -146.5t44.5 -134t68 -107t98 -73t130.5 -26q79 0 142 32.5t105.5 89t70.5 136.5t40.5 170.5t12.5 194.5q0 134 -21 247.5t-63.5 206t-116 145t-170.5 52.5q-66 0 -121.5 -25.5t-93 -66.5 t-66.5 -98t-45.5 -114.5t-27 -121.5t-14 -113.5t-3.5 -95.5z" />
<glyph unicode="1" horiz-adv-x="1193" d="M330 1116v111q16 0 34.5 1.5t52 7t61.5 18.5t55 32t43 52.5t16 76.5v31h125v-1446h-125v1174q-30 -26 -98 -42t-129 -16h-35z" />
<glyph unicode="2" horiz-adv-x="1193" d="M121 1053q0 85 29.5 160t86 134t148.5 93.5t209 34.5q70 0 137 -14.5t132 -49.5t113.5 -86.5t78.5 -131.5t30 -179q0 -163 -98 -318q-62 -99 -170.5 -205t-218.5 -186t-180.5 -126t-106.5 -66h725v-113h-913v113q172 104 352.5 242t288.5 251q186 194 186 416 q0 153 -96.5 248.5t-261.5 95.5q-145 0 -248.5 -89t-103.5 -237q0 -130 100 -245l-168 20q-51 128 -51 238z" />
<glyph unicode="3" horiz-adv-x="1193" d="M88 414l137 45q0 -98 28 -171t78.5 -115.5t115.5 -62.5t145 -20q82 0 145 20.5t99.5 51.5t60 73.5t31.5 80t8 77.5q0 159 -100 238q-38 29 -90 44t-88 17t-101 2h-201v113h205q352 0 352 270q0 74 -28.5 131.5t-75.5 90.5t-101.5 50t-113.5 17q-65 0 -120 -18t-90 -44 t-61.5 -61t-39.5 -64t-19 -57q-6 -24 -6 -78l-143 39q16 67 40 122t63 106.5t90 86.5t124 56t162 21q193 0 319 -103q129 -103 129 -299q0 -98 -39.5 -172.5t-123.5 -109.5q-52 -22 -152 -35q92 -4 164 -37q31 -14 59.5 -36.5t58 -59.5t47 -94t17.5 -126q0 -105 -39 -188.5 t-106.5 -135.5t-153.5 -79t-184 -27q-87 0 -160.5 19t-124 51.5t-84 64.5t-55.5 68q-64 99 -78 238z" />
<glyph unicode="4" horiz-adv-x="1193" d="M115 362v105l635 979h135v-971h225v-113h-225v-362h-125v362h-645zM256 475h504v768z" />
<glyph unicode="5" horiz-adv-x="1193" d="M109 381l133 39q2 -145 91.5 -239.5t250.5 -94.5q173 0 263.5 112t90.5 294q0 62 -12 119.5t-39 109t-66 89.5t-97 60.5t-128 22.5q-112 0 -199 -73t-114 -204l-105 13q23 766 25 817h764v-121h-645l-29 -498q36 74 115.5 124t205.5 50q199 0 329 -136.5t130 -368.5 q0 -146 -54.5 -263.5t-166.5 -189.5t-264 -72q-200 0 -325.5 106t-153.5 304z" />
<glyph unicode="6" horiz-adv-x="1193" d="M117 678q0 413 155 612q143 185 390 185q95 0 171.5 -26.5t127.5 -73.5t83.5 -101t51.5 -119l-135 -47q-3 33 -10.5 63.5t-28.5 66.5t-51.5 61.5t-83.5 43t-121 17.5q-69 0 -126 -18t-98 -48t-72.5 -76t-51.5 -94t-35 -111t-22.5 -118.5t-12.5 -124.5q140 199 393 199 q177 0 301 -99q55 -44 91.5 -103.5t51.5 -120.5t20 -101t5 -78q0 -216 -130 -355t-359 -139q-91 0 -165.5 24t-126 63.5t-90.5 97t-61.5 118t-37 133.5t-19 136t-4.5 133zM254 510q0 -38 7 -80t22.5 -91.5t44.5 -93t68.5 -80t98.5 -58t130 -21.5q85 0 150.5 29t102 70.5 t60 96.5t30.5 99t7 86q0 186 -93 288.5t-251 102.5q-52 0 -104.5 -13.5t-101.5 -42.5t-87 -69.5t-61 -98t-23 -124.5z" />
<glyph unicode="7" horiz-adv-x="1193" d="M129 1001v445h918v-121q-135 -183 -218 -334q-66 -121 -117.5 -251.5t-79.5 -226t-49 -210t-27.5 -168t-14.5 -135.5h-138q34 520 316 1004q69 121 211 321h-684v-324h-117z" />
<glyph unicode="8" horiz-adv-x="1193" d="M92 403q0 122 74.5 223.5t222.5 143.5q-30 11 -60.5 27.5t-64 45t-59 63t-42 84t-16.5 104.5q0 77 29 144.5t84 121t143.5 84.5t198.5 31q129 0 232 -43t165 -129t62 -203q0 -130 -70 -215t-180 -115q44 -11 91 -38.5t93.5 -72t76.5 -114t30 -150.5q0 -184 -138 -303 t-364 -119q-104 0 -190 25t-144 67t-98 98t-58 116.5t-18 123.5zM229 403q0 -42 11 -83.5t38.5 -84t68.5 -74t106 -51.5t145 -20q173 0 271 87.5t98 228.5q0 127 -100 215t-269 88q-56 0 -108.5 -11.5t-100 -36t-83 -60t-56.5 -86.5t-21 -112zM276 1087q0 -81 47.5 -143 t121 -92.5t159.5 -30.5q39 0 78.5 6.5t85.5 25t81 47.5t58 78.5t23 113.5q0 37 -9 72.5t-32.5 72t-59.5 63.5t-94.5 44.5t-132.5 17.5q-91 0 -158 -27.5t-101.5 -71t-50.5 -88t-16 -88.5z" />
<glyph unicode="9" horiz-adv-x="1193" d="M82 973q0 221 131 361.5t350 140.5q516 0 516 -711q0 -69 -3.5 -130.5t-17 -144.5t-36 -151t-64 -138.5t-97.5 -118t-140.5 -78t-188.5 -30.5q-332 0 -430 320l142 51q26 -258 295 -258q58 0 107 12t86 31.5t67.5 51.5t51.5 64.5t37 78.5t26 86.5t17 95.5t10.5 97t6.5 99 q-50 -100 -153 -161.5t-248 -61.5q-95 0 -179 33.5t-148 95t-101 156t-37 209.5zM219 975q0 -58 10 -110t34.5 -102.5t63 -87t100 -59t140.5 -22.5q85 0 157 28.5t117.5 75.5t71 106t25.5 122q0 85 -23 162t-67.5 140.5t-118.5 101.5t-168 38q-161 0 -251.5 -106t-90.5 -287 z" />
<glyph unicode=":" horiz-adv-x="425" d="M176 0v238h162v-238h-162zM176 721v237h162v-237h-162z" />
<glyph unicode=";" horiz-adv-x="425" d="M176 0v238h162v-236q0 -104 -20 -172.5t-76 -153.5l-66 48q47 77 62.5 131t15.5 145h-78zM176 721v237h162v-237h-162z" />
<glyph unicode="&#x3c;" horiz-adv-x="1482" d="M233 524v140l955 489v-131l-838 -426l838 -422v-133z" />
<glyph unicode="=" horiz-adv-x="1482" d="M203 354v119h1077v-119h-1077zM203 715v121h1077v-121h-1077z" />
<glyph unicode="&#x3e;" horiz-adv-x="1482" d="M297 35v133l838 426l-838 422v131l952 -483v-138z" />
<glyph unicode="?" horiz-adv-x="980" d="M137 1085q0 74 18.5 134.5t47 99.5t68 68.5t76 44.5t77.5 24.5t66 11.5t47 2q98 0 177 -33.5t129 -90.5t76.5 -129.5t26.5 -153.5q0 -119 -63 -219q-16 -26 -42.5 -57t-45 -49t-58 -55t-49.5 -46q-82 -79 -103.5 -120t-21.5 -97v-74h-127v72q0 76 16.5 127t71.5 108 q25 26 75 72t81 78t66 76.5t52 93t17 102.5q0 13 -2.5 31t-11 52.5t-28 65.5t-48.5 60.5t-79.5 47.5t-113.5 18q-130 0 -200 -80t-70 -197q0 -106 51 -199l-153 46q-23 111 -23 165zM422 0v238h160v-238h-160z" />
<glyph unicode="@" horiz-adv-x="1835" d="M141 477q0 193 73.5 373t198.5 313.5t301 214t371 80.5q275 0 442 -158.5t167 -431.5q0 -144 -43 -279.5t-110 -231t-150.5 -153t-163.5 -57.5q-164 0 -164 191q-59 -85 -137.5 -136.5t-171.5 -51.5q-67 0 -118.5 27.5t-81.5 74t-45 103t-15 120.5q0 94 30 194.5 t83 187.5t136 142.5t179 55.5q172 0 243 -195l33 148h121l-66 -299q-4 -16 -16.5 -69t-17.5 -77.5t-13 -67.5t-11 -78.5t-3 -70.5q0 -38 19.5 -69t56.5 -31q48 0 114 61q101 91 159 250.5t58 308.5q0 236 -142.5 369t-379.5 133q-174 0 -331.5 -74t-269 -196.5 t-177.5 -284.5t-66 -334q0 -200 92.5 -347t248 -220.5t352.5 -73.5q191 0 372 79t320 218l55 -65q-170 -157 -352 -240.5t-395 -83.5q-163 0 -306 51t-249.5 144t-168 231.5t-61.5 304.5zM633 483q0 -94 44.5 -158.5t133.5 -64.5q73 0 135 47.5t99 119t57 149t20 145.5 q0 93 -49 159t-139 66q-71 0 -131 -48.5t-95.5 -122t-55 -150.5t-19.5 -142z" />
<glyph unicode="A" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM383 547h561l-278 739z" />
<glyph unicode="B" horiz-adv-x="1366" d="M166 0v1446h649q243 0 350 -146q70 -96 70 -215q0 -38 -9 -76t-29 -76.5t-49 -69.5t-74 -54t-99 -31q148 -29 227.5 -124.5t79.5 -245.5q0 -34 -5.5 -70.5t-23 -91.5t-61 -106t-107.5 -85q-65 -34 -142 -44.5t-181 -10.5h-596zM303 125h514q152 0 240 70.5t88 207.5 q0 26 -4.5 53t-18 65.5t-45 76t-78.5 64.5q-42 25 -97.5 37t-92.5 14t-104 2h-402v-590zM303 834h469q168 0 244 69.5t76 183.5q0 84 -43 142q-25 33 -59 54t-79.5 28.5t-75.5 9.5t-83 2h-449v-489z" />
<glyph unicode="C" horiz-adv-x="1366" d="M102 715q0 69 7 137t26 145.5t49 145.5t78.5 131.5t111 109t151 72.5t194.5 27q101 0 184 -21t140 -54t104 -84.5t76.5 -101t56.5 -114.5l-139 -70q-14 64 -41.5 117.5t-75 102t-124.5 76.5t-177 28q-88 0 -160 -25t-120.5 -65t-85 -96.5t-57.5 -113t-33.5 -121 t-16.5 -113t-4 -97.5q0 -645 504 -645q151 0 252 83t139 224l129 -78q-88 -182 -214 -267t-323 -85q-106 0 -195.5 25t-153 67t-113.5 101.5t-81.5 125t-51.5 142t-28 147t-8 144.5z" />
<glyph unicode="D" horiz-adv-x="1409" d="M166 0v1446h448q71 0 114 -2t102 -10.5t101.5 -24.5t90.5 -47t90 -76q48 -51 88 -117.5t73.5 -186t33.5 -255.5q0 -45 -5 -95t-21.5 -133.5t-59 -171t-105.5 -157.5q-85 -92 -186 -131q-67 -26 -144 -32.5t-243 -6.5h-377zM305 123h217q153 0 241 9.5t144 35.5 q69 32 121.5 95t81.5 141.5t43 158.5t14 160q0 40 -5 85.5t-16 104t-33 114.5t-52 108t-78 93.5t-106 63.5q-55 20 -116 24.5t-202 4.5h-254v-1198z" />
<glyph unicode="E" horiz-adv-x="1236" d="M166 0v1446h944v-125h-807v-516h731v-127h-731v-551h858v-127h-995z" />
<glyph unicode="F" horiz-adv-x="1150" d="M166 0v1446h946v-121h-813v-489h729v-119h-729v-717h-133z" />
<glyph unicode="G" horiz-adv-x="1449" d="M102 713q0 106 18.5 207.5t66 205.5t118.5 181.5t186.5 126.5t260.5 49q75 0 141.5 -14.5t114 -35.5t90 -55t69 -63.5t52 -71t37.5 -66.5t28 -61l-129 -69q-17 66 -46.5 120t-75 101t-114.5 73.5t-155 26.5q-105 0 -196.5 -40t-164 -117.5t-114 -204t-41.5 -287.5 q0 -306 129 -469.5t348 -163.5q27 0 51.5 2t70.5 13.5t84 31.5t81.5 61t73 96.5t49.5 143.5t20 197h-532v125h651v-756h-119v242q-39 -100 -111.5 -164.5t-152 -89.5t-172.5 -25q-129 0 -234 42t-175.5 113.5t-118 168.5t-68.5 203.5t-21 222.5z" />
<glyph unicode="H" horiz-adv-x="1492" d="M166 0v1446h135v-645h889v645h137v-1446h-137v678h-889v-678h-135z" />
<glyph unicode="I" horiz-adv-x="468" d="M166 0v1446h137v-1446h-137z" />
<glyph unicode="J" horiz-adv-x="1024" d="M27 397l145 33q-2 -23 -2 -68q0 -134 66 -200q76 -74 231 -74q148 0 211 98q21 33 31.5 87.5t12 89.5t1.5 94v989h135v-1004q0 -87 -9 -153t-35 -129t-70 -103.5t-117 -65t-172 -24.5q-316 0 -400 240q-9 27 -15.5 60.5t-8 56.5t-3 47t-1.5 26z" />
<glyph unicode="K" horiz-adv-x="1366" d="M166 0v1446h139v-807l787 807h188l-565 -574l614 -872h-168l-540 782l-316 -317v-465h-139z" />
<glyph unicode="L" horiz-adv-x="1150" d="M166 0v1446h139v-1319h799v-127h-938z" />
<glyph unicode="M" horiz-adv-x="1622" d="M166 0v1446h162l489 -1227l469 1227h170v-1446h-135l10 1229l-471 -1229h-94l-481 1229q16 -1204 16 -1229h-135z" />
<glyph unicode="N" horiz-adv-x="1449" d="M166 0v1446h135l858 -1237q-10 1206 -10 1237h135v-1446h-135l-848 1249v-1249h-135z" />
<glyph unicode="O" horiz-adv-x="1449" d="M102 727q0 62 7.5 126.5t26.5 140.5t49 143.5t80 132t113 111t153.5 74.5t197.5 28q288 0 453.5 -197t165.5 -545q0 -116 -20.5 -224t-67.5 -210t-117 -177.5t-176.5 -121t-237.5 -45.5q-103 0 -190 26t-150.5 70.5t-113.5 106.5t-82 129.5t-53 144t-29.5 147t-8.5 140.5 zM248 723q0 -46 4 -94.5t17.5 -113t34.5 -122t58 -115t85 -99t119 -67.5t157 -26q78 0 144 22t114.5 59t86.5 89.5t63 110.5t41 124t23 128.5t7 125.5q0 51 -6 104.5t-21.5 115t-39 117t-61.5 108t-85.5 90.5t-114.5 61t-145 23q-87 0 -160 -26.5t-124.5 -74t-90 -109 t-61.5 -134.5t-34 -147t-11 -150z" />
<glyph unicode="P" horiz-adv-x="1280" d="M166 0v1446h579q189 0 272 -23.5t144 -91.5q94 -108 94 -280q0 -155 -81 -263q-30 -39 -69 -65t-77.5 -40t-100 -21.5t-111.5 -9t-136 -1.5h-383v-651h-131zM297 772h506q319 0 319 281q0 96 -41 164q-20 32 -47 54.5t-52.5 34t-63.5 17.5t-63.5 7t-68.5 1h-489v-559z " />
<glyph unicode="Q" horiz-adv-x="1449" d="M102 709q0 220 73 393.5t219.5 277t346.5 103.5q132 0 239 -47t175 -122t113.5 -174.5t64.5 -199t19 -201.5q0 -285 -123 -499l194 -181l-86 -92l-182 168q-172 -172 -426 -172q-138 0 -248.5 47.5t-179.5 123t-115.5 175.5t-65 199t-18.5 201zM246 713q0 -45 4.5 -94 t18 -112.5t34.5 -121t59 -114.5t86.5 -98.5t121 -67t159.5 -25.5q224 0 353.5 172t129.5 463q0 50 -4.5 102t-18 117.5t-34.5 124t-58.5 115.5t-85.5 98t-119 66.5t-157 25.5q-110 0 -197.5 -42.5t-140.5 -108.5t-88.5 -154.5t-49 -173.5t-13.5 -172z" />
<glyph unicode="R" horiz-adv-x="1323" d="M166 0v1446h561q136 0 241 -30.5t171 -110.5q92 -111 92 -273q0 -184 -123 -287.5t-305 -103.5l469 -641h-172l-457 641h-338v-641h-139zM305 760h432q58 0 105 6t96 24t82.5 48t54.5 81t21 119q0 93 -43 162q-46 76 -119 99.5t-182 23.5h-447v-563z" />
<glyph unicode="S" horiz-adv-x="1236" d="M100 365l138 71q5 -103 32 -162q36 -79 127.5 -134.5t241.5 -55.5q190 0 294.5 88t104.5 219q0 116 -73.5 182t-233.5 107l-166 43q-61 16 -105 31t-102 46.5t-95 69.5t-63 100t-26 138q0 77 29 143.5t85.5 119t149.5 82.5t213 30q381 0 498 -318l-127 -67 q-24 78 -59 125q-40 57 -119 102t-197 45q-90 0 -158 -23t-106.5 -61t-57 -82t-18.5 -92q0 -39 10.5 -72t25.5 -56.5t42 -44.5t49 -33.5t59 -26t59.5 -20.5t61.5 -17l140 -37q208 -56 316 -152t108 -258q0 -199 -179 -329q-149 -103 -360 -103q-216 0 -356 98.5t-183 303.5z " />
<glyph unicode="T" horiz-adv-x="1110" d="M31 1325v121h1048v-121h-456v-1325h-138v1325h-454z" />
<glyph unicode="U" horiz-adv-x="1409" d="M164 510v936h135v-973q0 -93 27 -164t67.5 -111.5t97.5 -65.5t108.5 -33.5t107.5 -8.5q199 0 300 99.5t101 318.5v938h137v-907q0 -100 -15.5 -182.5t-53.5 -157.5t-98.5 -125.5t-155 -80.5t-217.5 -30q-29 0 -56 1.5t-68.5 8.5t-78.5 17.5t-80.5 31.5t-79 48.5 t-69.5 69.5t-57.5 93.5t-37.5 122.5t-14 154z" />
<glyph unicode="V" horiz-adv-x="1236" d="M20 1446h152l444 -1258l455 1258h146l-543 -1446h-123z" />
<glyph unicode="W" horiz-adv-x="1792" d="M20 1446h148l340 -1200l344 1200h94l357 -1200l329 1200h137l-411 -1446h-111l-346 1169l-344 -1169h-108z" />
<glyph unicode="X" horiz-adv-x="1366" d="M43 0l549 778l-473 668h174l393 -584l401 584h166l-475 -668l545 -778h-170l-467 692l-485 -692h-158z" />
<glyph unicode="Y" horiz-adv-x="1280" d="M20 1446h162l447 -719l465 719h166l-566 -848v-598h-135v598z" />
<glyph unicode="Z" horiz-adv-x="1193" d="M59 0v90l891 1233h-837v123h1022v-94l-881 -1229h868v-123h-1063z" />
<glyph unicode="[" horiz-adv-x="555" d="M152 -295v1890h348v-104h-224v-1684h224v-102h-348z" />
<glyph unicode="\" horiz-adv-x="980" d="M20 1446h156l785 -1446h-152z" />
<glyph unicode="]" horiz-adv-x="555" d="M53 -190h223v1685h-223v102h348v-1890h-348v103z" />
<glyph unicode="^" horiz-adv-x="1482" d="M262 592l408 854h139l412 -854h-131l-349 737l-348 -737h-131z" />
<glyph unicode="_" horiz-adv-x="1024" d="M-20 -301h1064v-121h-1064v121z" />
<glyph unicode="`" horiz-adv-x="555" d="M47 1430h229l232 -287h-109z" />
<glyph unicode="a" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5 t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5z" />
<glyph unicode="b" d="M154 0v1446h116v-635q13 30 36 59.5t58.5 59.5t89 48.5t115.5 18.5q85 0 154.5 -31.5t116 -83t78 -120.5t45.5 -141.5t14 -147.5q0 -64 -10 -127t-38.5 -131.5t-71.5 -119.5t-116 -84.5t-166 -33.5q-118 0 -193.5 56.5t-111.5 140.5v-174h-116zM270 492q0 -53 6 -102.5 t25 -107t49.5 -99t84.5 -69.5t126 -28q137 0 212 99.5t75 283.5q0 87 -17 160.5t-51.5 132.5t-93 93t-135.5 34q-136 0 -208.5 -102.5t-72.5 -294.5z" />
<glyph unicode="c" horiz-adv-x="980" d="M90 481q0 237 130.5 378.5t338.5 141.5q147 0 238 -67t133 -178l-113 -27q-31 79 -102.5 121.5t-161.5 42.5q-108 0 -185 -58t-112 -148t-35 -200q0 -114 33 -203t107.5 -145.5t181.5 -56.5q176 0 264 164l123 -29q-114 -242 -391 -242q-205 0 -327 139t-122 367z" />
<glyph unicode="d" d="M90 489q0 145 51 260t148 181.5t223 66.5q98 0 177 -47.5t106 -128.5v625h118v-1446h-118v176q-33 -94 -116 -146.5t-185 -52.5q-180 0 -292 145t-112 367zM221 489q0 -105 23.5 -183.5t65 -124t92.5 -67.5t110 -22q127 0 206 94t79 285v53q0 92 -20.5 161.5t-49.5 106.5 t-70 60t-72.5 29t-66.5 6q-137 0 -217 -108t-80 -290z" />
<glyph unicode="e" d="M90 498q0 121 38.5 219t102.5 158.5t143.5 93t166.5 32.5q100 0 184.5 -41.5t139.5 -111t85.5 -158t30.5 -184.5v-19h-758v-28q0 -48 8 -95t31 -98.5t58 -90t95 -64t136 -25.5q31 0 58 3t64 15.5t68.5 33.5t65.5 60.5t61 92.5l113 -33q-127 -283 -424 -283 q-82 0 -150.5 20.5t-116 53.5t-84 78.5t-58 93t-35 100t-18.5 95t-5 82.5zM225 588h617q-8 72 -32.5 128t-56 88.5t-71 53.5t-74 28t-69.5 7q-60 0 -110.5 -18.5t-85.5 -49t-61 -71t-39.5 -82t-17.5 -84.5z" />
<glyph unicode="f" horiz-adv-x="641" d="M47 874v103h215v270q0 34 2.5 58.5t14.5 59t34 56.5t64.5 38t101.5 16q41 0 125 -15v-119q-1 0 -19 7t-28 10t-30 6.5t-40 3.5q-60 0 -82 -36.5t-22 -98.5v-256h221v-103h-221v-874h-121v874h-215z" />
<glyph unicode="g" horiz-adv-x="1110" d="M90 494q0 130 35.5 229.5t96 157.5t135 87t159.5 29q115 0 206.5 -55.5t115.5 -144.5v180h116v-1038q0 -70 -8 -125.5t-35.5 -116.5t-73 -102t-126.5 -68t-191 -27q-113 0 -197 31t-130.5 83.5t-69.5 110.5t-25 123l127 23q6 -42 13 -70.5t28 -69t51.5 -65t87 -43 t132.5 -18.5q90 0 149.5 23.5t92.5 75t46 119.5t13 169v196q-3 -17 -13 -40t-35 -53.5t-59.5 -55t-91 -42t-125.5 -17.5q-192 0 -308 140t-116 374zM213 498q0 -120 31.5 -210t103 -145t176.5 -55q168 0 239 107.5t71 308.5q0 389 -304 389q-143 0 -230 -102t-87 -293z" />
<glyph unicode="h" d="M154 0v1446h122v-625q14 29 35 55t56.5 55.5t90.5 47.5t122 18q24 0 50 -3.5t67 -14t81.5 -37t69.5 -65.5q39 -53 51 -120.5t12 -205.5v-551h-118v618q0 41 -4.5 75.5t-19.5 72t-39 63t-67 42t-100 16.5q-98 0 -157 -41.5t-89 -95.5q-27 -53 -34 -119t-7 -209v-422h-122z " />
<glyph unicode="i" horiz-adv-x="425" d="M154 0v977h118v-977h-118zM154 1206v187h118v-187h-118z" />
<glyph unicode="j" horiz-adv-x="425" d="M-98 -369l20 -12q68 -37 141 -37q61 0 76 35t15 137v1223h118v-1200q0 -89 -6.5 -137t-25.5 -82q-44 -82 -162 -82q-96 0 -176 41v114zM154 1206v187h118v-187h-118z" />
<glyph unicode="k" horiz-adv-x="1024" d="M154 0v1446h118v-983l549 514h152l-408 -389l436 -588h-147l-373 506l-209 -199v-307h-118z" />
<glyph unicode="l" horiz-adv-x="425" d="M152 0v1446h122v-1446h-122z" />
<glyph unicode="m" horiz-adv-x="1579" d="M154 0v977h120v-203q18 107 102 165t189 58q55 0 100.5 -14.5t74 -38.5t46 -47t27.5 -47q17 -41 21 -96q16 62 38 98q14 25 33.5 47.5t51 46t78.5 37.5t104 14q108 0 176 -49q73 -51 91.5 -139.5t18.5 -278.5v-530h-120v612q0 99 -13 153t-55 87q-45 35 -121 35 q-155 0 -229 -158q-26 -55 -32.5 -118t-6.5 -203v-408h-119v543q0 111 -5.5 167t-25.5 93q-47 84 -157 84q-146 0 -217 -131q-33 -62 -41.5 -134.5t-8.5 -228.5v-393h-120z" />
<glyph unicode="n" d="M154 0v977h120v-174q4 14 12 31t31.5 48t55 55t87 42t122.5 18q65 0 118 -16t88 -43t56.5 -53.5t34.5 -55.5q23 -48 28.5 -103t5.5 -171v-555h-120v508q0 81 -1 118t-6 79t-16 69q-25 63 -82.5 89t-120.5 26q-98 0 -165.5 -46t-97.5 -119t-30 -165v-559h-120z" />
<glyph unicode="o" d="M90 477q0 232 120 378t327 146q110 0 196 -44t137.5 -117.5t78 -161t28.5 -184.5q0 -106 -26.5 -194t-70.5 -147t-102.5 -100t-121 -59.5t-128.5 -18.5q-193 0 -315.5 135t-122.5 367zM219 477q0 -108 26.5 -188t72 -123.5t98.5 -63.5t114 -20q48 0 91.5 12.5t85.5 43 t73 76t49.5 117.5t18.5 163q0 89 -18 159.5t-47.5 116t-71 75t-85 42t-91.5 12.5q-140 0 -228 -106t-88 -316z" />
<glyph unicode="p" d="M154 -518v1495h118v-160q13 31 34.5 59.5t55.5 57.5t87 46t118 17q101 0 178.5 -40.5t120 -98.5t69 -133t34.5 -132t8 -108q0 -41 -7.5 -89t-23.5 -107.5t-47.5 -113t-74.5 -99t-109.5 -72.5t-147.5 -27q-116 0 -191 56t-104 131v-682h-118zM272 453q0 -106 24 -179 t83 -122q70 -58 170 -58q65 0 117.5 24.5t86.5 64.5t57 94t32.5 110t9.5 115q0 72 -16.5 137t-50.5 122.5t-95.5 91.5t-142.5 34q-68 0 -119 -26.5t-80 -65.5t-47 -93.5t-23.5 -101.5t-5.5 -98v-49z" />
<glyph unicode="q" horiz-adv-x="1024" d="M90 496q0 240 116 370.5t294 130.5q62 0 119.5 -17.5t106 -58.5t69.5 -100v156h116v-1495h-116v686q-26 -62 -69 -104t-90.5 -59t-79 -22.5t-60.5 -5.5q-80 0 -152.5 34t-129.5 98t-90.5 164t-33.5 223zM215 500q0 -107 31.5 -197.5t102.5 -151.5t171 -61q90 0 154 51 q50 39 78.5 101.5t36 117t8.5 127.5q0 73 -6 126t-33 116.5t-76 101.5q-76 56 -166 56q-80 0 -141 -35.5t-94.5 -93.5t-49.5 -123t-16 -135z" />
<glyph unicode="r" horiz-adv-x="641" d="M154 0v977h120v-156q38 85 107 127.5t162 42.5q49 0 84 -4v-108q-37 6 -78 6q-275 0 -275 -350v-535h-120z" />
<glyph unicode="s" horiz-adv-x="937" d="M70 238l118 41q7 -29 24.5 -59.5t48.5 -62t83.5 -51.5t116.5 -20q67 0 117.5 17t78.5 46t41 61t13 66q0 66 -47 109t-164 68l-115 24q-122 27 -188 84.5t-66 159.5q0 124 84 199q47 42 119.5 61.5t146.5 19.5q150 0 240 -63q81 -57 106 -158l-114 -30q-16 77 -83.5 111 t-154.5 34q-57 0 -99.5 -11.5t-66 -28.5t-37.5 -41t-18 -43t-4 -40q0 -33 14 -59t33 -41.5t50.5 -28t53 -18t54.5 -11.5l102 -20q130 -26 200 -99t70 -186q0 -36 -11 -74t-38.5 -78t-67.5 -70.5t-104 -50.5t-143 -20q-284 0 -393 263z" />
<glyph unicode="t" horiz-adv-x="598" d="M31 874v103h205v416h116v-416h215v-103h-215v-667q0 -19 1.5 -33.5t6 -31.5t13 -28t23.5 -18.5t36 -7.5q50 0 135 62v-123q-61 -45 -161 -45q-124 0 -156 88q-14 41 -14 159v645h-205z" />
<glyph unicode="u" d="M154 498v479h122v-506q0 -171 17 -238q39 -143 203 -143q151 0 231 109q40 56 53 124.5t13 159.5v494h120v-977h-120v176q-87 -199 -312 -199q-105 0 -187.5 54.5t-113.5 152.5q-26 88 -26 314z" />
<glyph unicode="v" horiz-adv-x="854" d="M20 977h121l271 -795l301 795h118l-374 -977h-99z" />
<glyph unicode="w" horiz-adv-x="1409" d="M43 977h117l262 -789l240 789h102l242 -789l243 789h117l-309 -977h-101l-241 805l-240 -805h-102z" />
<glyph unicode="x" horiz-adv-x="937" d="M43 0l358 508l-329 469h141l256 -373l264 373h129l-327 -469l358 -508h-137l-287 416l-297 -416h-129z" />
<glyph unicode="y" horiz-adv-x="894" d="M23 -334q66 -47 127 -47q49 0 73 30.5t58 117.5l90 233l-338 977h117l284 -832l318 832h122l-460 -1167q-63 -161 -94 -210q-51 -82 -132 -94q-17 -2 -36 -2q-73 0 -129 39v123z" />
<glyph unicode="z" horiz-adv-x="811" d="M57 0v76l529 796h-484v105h654v-72l-529 -796h543v-109h-713z" />
<glyph unicode="{" horiz-adv-x="548" d="M39 598v104q56 7 84.5 15t51.5 30.5t30.5 61.5t7.5 106v390q0 53 3.5 90t18 80t41 68.5t74.5 43t115 17.5h57v-101h-43q-34 0 -58.5 -6t-40 -20t-24.5 -27.5t-12.5 -39.5t-4.5 -44t-1 -51v-389q0 -127 -33.5 -183t-132.5 -94q94 -28 130 -87.5t36 -186.5v-379 q0 -87 13.5 -128t45.5 -56t101 -15h24v-100h-24q-152 0 -218.5 63.5t-66.5 221.5v399q0 69 -6 107t-27.5 62t-51.5 32.5t-89 15.5z" />
<glyph unicode="|" horiz-adv-x="468" d="M170 -293v1886h125v-1886h-125z" />
<glyph unicode="}" horiz-adv-x="548" d="M25 -203h43q40 0 67.5 10.5t42 24.5t22 42.5t8.5 50t1 61.5v389q0 126 33.5 182t132.5 94q-94 28 -130 87.5t-36 187.5v379q0 126 -30 162t-130 36h-24v101h24q153 0 220 -63.5t67 -221.5v-399q0 -70 5.5 -107.5t26.5 -62t51 -33.5t89 -15v-104q-45 -5 -70 -11.5 t-47.5 -19t-33 -35.5t-16 -58t-5.5 -89v-389q0 -51 -4.5 -90t-20 -80.5t-42.5 -68t-74.5 -43.5t-112.5 -17h-57v100z" />
<glyph unicode="~" horiz-adv-x="1482" d="M154 545q79 111 152.5 159t168.5 48q59 0 108 -15t175 -71l84 -37q72 -31 102.5 -41t59.5 -10q62 0 116 34t129 123l82 -84q-87 -110 -166.5 -156t-171.5 -46q-93 0 -243 75l-74 37q-124 62 -213 62q-58 0 -96 -28.5t-131 -133.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="425" d="M96 1221v237h154v-237h-154zM106 0v829l19 269h96l19 -269v-829h-134z" />
<glyph unicode="&#xa2;" horiz-adv-x="980" d="M90 485q0 100 25 184t65 140.5t93.5 98t108 62.5t110.5 27v191h102v-189q20 0 46 -3.5t70 -18.5t82.5 -39.5t77.5 -72t60 -109.5l-113 -29q-50 138 -223 164v-805q45 8 80.5 24.5t60.5 41.5t40 44.5t32 49.5l123 -27q-15 -37 -40 -73t-64 -73.5t-99.5 -63.5t-132.5 -32 v-208h-102v208q-85 9 -154 42.5t-114.5 83t-76 113t-44 130.5t-13.5 139zM221 485q0 -27 3.5 -59.5t14.5 -87t40.5 -106.5t72.5 -87q17 -13 35 -23.5t36 -16.5t29.5 -9.5t25.5 -6.5l14 -3v801q-63 -14 -111.5 -45.5t-78 -71t-48.5 -90t-26 -98t-7 -97.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1236" d="M86 154q0 27 11 53t33 49.5t62.5 38t94.5 14.5q37 0 102.5 -12.5t122.5 -44.5q39 86 39 149q0 95 -82 177h-270v106h190q-51 45 -87.5 82.5t-75.5 89t-60 107.5t-21 114q0 155 130 262t327 107q88 0 166.5 -23t143.5 -68t107 -121t50 -175l-135 -27q-3 76 -25 125 q-14 29 -37.5 56t-60 53t-92 41.5t-121.5 15.5q-78 0 -146.5 -25t-116.5 -82t-48 -137q0 -58 32 -117.5t71 -99t95 -93t82 -85.5h312v-106h-248q55 -89 55 -185q0 -102 -53 -180q187 -98 260 -98t101 64t28 206l135 -14q-1 -9 -3.5 -43.5t-4.5 -57.5t-9.5 -61t-18.5 -64 t-31.5 -57t-47.5 -49.5t-68 -31.5t-91 -13q-30 0 -60 5t-51.5 10.5t-54 19t-47.5 21t-52.5 26.5t-50.5 26q-56 -58 -119 -85t-145 -27q-112 0 -164.5 49t-52.5 115zM193 150q0 -33 30.5 -46.5t67.5 -13.5q109 0 178 62q-84 51 -182 51q-94 0 -94 -53z" />
<glyph unicode="&#xa4;" horiz-adv-x="1366" d="M117 223l153 150q-62 85 -87 158t-25 167q0 92 25.5 164t86.5 154l-149 149l92 92l149 -147q80 59 155 85t165 26q93 0 177.5 -29t144.5 -82l151 150l94 -95l-151 -151q110 -142 110 -320q0 -91 -26 -165t-86 -156l151 -154l-94 -92l-152 154q-78 -60 -151.5 -85.5 t-169.5 -25.5q-94 0 -163 24t-155 87l-153 -150zM285 696q0 -173 116 -289t289 -116q166 0 277.5 115.5t111.5 287.5q0 175 -112.5 290.5t-282.5 115.5q-169 0 -284 -117t-115 -287z" />
<glyph unicode="&#xa5;" horiz-adv-x="1280" d="M20 1446h162l447 -713l465 713h166l-420 -629h321v-115h-397l-70 -108h467v-115h-467v-479h-135v479h-440v115h440l-65 108h-375v115h301z" />
<glyph unicode="&#xa6;" horiz-adv-x="468" d="M172 -293v811h125v-811h-125zM172 784v809h125v-809h-125z" />
<glyph unicode="&#xa7;" d="M80 33l96 94q72 -74 173.5 -120t201.5 -46q95 0 165 49t70 140q0 26 -8 49t-25.5 42.5t-33 33t-45 29t-44.5 23t-48.5 21t-42.5 17.5q-252 109 -344.5 195.5t-92.5 207.5q0 108 66 195.5t170 121.5q-70 47 -106.5 101t-36.5 131q0 51 20.5 100.5t59 92t101.5 68.5t140 26 q109 0 199.5 -45.5t189.5 -131.5l-94 -92q-84 71 -151.5 107.5t-151.5 36.5q-78 0 -128 -42.5t-50 -119.5q0 -48 35.5 -87t92 -67t124.5 -55.5t136.5 -60.5t125 -73.5t92 -103t35.5 -141.5q0 -212 -213 -321q83 -47 124.5 -106t41.5 -148q0 -102 -56.5 -177t-141.5 -110 t-185 -35q-129 0 -249 53t-212 148zM236 772q0 -34 10 -57t35 -51q38 -42 170 -108.5t208 -90.5q68 37 124.5 110t56.5 142q0 76 -56 135q-66 71 -342 170q-85 -37 -145.5 -102t-60.5 -148z" />
<glyph unicode="&#xa8;" horiz-adv-x="555" d="M39 1192v188h125v-188h-125zM391 1192v188h125v-188h-125z" />
<glyph unicode="&#xa9;" horiz-adv-x="1705" d="M125 723q0 152 56.5 287.5t154 232t233 153t287.5 56.5q148 0 282.5 -57t232 -153t155 -229.5t57.5 -279.5q0 -205 -96 -374.5t-263.5 -267t-369.5 -97.5q-151 0 -286.5 56.5t-232.5 153.5t-153.5 232.5t-56.5 286.5zM190 721q0 -181 88.5 -333t241 -240.5t334.5 -88.5 q181 0 333 88.5t240.5 240.5t88.5 333q0 138 -51 261.5t-138.5 212t-210 140t-260.5 51.5q-183 0 -336 -88t-241.5 -241t-88.5 -336zM455 707q0 220 117.5 356.5t306.5 136.5q138 0 227.5 -71.5t126.5 -210.5l-111 -25q-32 108 -92 156.5t-162 48.5q-138 0 -216.5 -100.5 t-78.5 -280.5q0 -175 77.5 -272t217.5 -97q103 0 171.5 59t93.5 171l108 -13q-35 -155 -133.5 -238t-247.5 -83q-184 0 -294.5 126.5t-110.5 336.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="641" d="M53 989q0 36 12 65.5t35.5 50.5t52 37t67 28.5t76 22t83.5 19.5q7 1 10 2l64 15v22q0 24 -4.5 43.5t-17.5 40t-41.5 32t-70.5 11.5q-51 0 -83.5 -12.5t-45 -38t-15.5 -44.5t-3 -52l-102 18q6 58 28.5 100.5t57 66.5t74 35t85.5 11q99 0 163.5 -43t64.5 -133v-256 q0 -33 0.5 -45.5t3.5 -31.5t9.5 -25t19 -11.5t32.5 -5.5h25v-80h-21q-28 0 -49.5 2.5t-46.5 10t-40 25.5t-19 46q-31 -51 -88.5 -73.5t-116.5 -22.5q-54 0 -94.5 16.5t-62.5 43t-32 54t-10 56.5zM147 995q0 -36 26.5 -63t82.5 -27q77 0 137 50.5t60 131.5v58l-183 -51 q-59 -15 -91 -38t-32 -61z" />
<glyph unicode="&#xab;" horiz-adv-x="768" d="M78 633l241 379l99 -62l-205 -317l205 -289l-99 -63zM354 633l244 379l96 -62l-202 -317l202 -289l-96 -63z" />
<glyph unicode="&#xac;" horiz-adv-x="1482" d="M145 539v123h1160v-662h-125v539h-1035z" />
<glyph unicode="&#xad;" horiz-adv-x="698" d="M78 541v123h543v-123h-543z" />
<glyph unicode="&#xae;" horiz-adv-x="1705" d="M125 723q0 152 56.5 287.5t154 232t233 153t287.5 56.5q148 0 282.5 -57t232 -153t155 -229.5t57.5 -279.5q0 -205 -96 -374.5t-263.5 -267t-369.5 -97.5q-151 0 -286.5 56.5t-232.5 153.5t-153.5 232.5t-56.5 286.5zM190 721q0 -181 88.5 -333t241 -240.5t334.5 -88.5 q181 0 333 88.5t240.5 240.5t88.5 333q0 138 -51 261.5t-138.5 212t-210 140t-260.5 51.5q-183 0 -336 -88t-241.5 -241t-88.5 -336zM584 262v922h272q149 0 218 -64.5t69 -193.5q0 -101 -46.5 -164t-135.5 -82l194 -418h-121l-188 406h-152v-406h-110zM694 764h160 q97 0 137.5 37t40.5 125q0 89 -41.5 123t-150.5 34h-146v-319z" />
<glyph unicode="&#xaf;" horiz-adv-x="555" d="M-2 1192v127h559v-127h-559z" />
<glyph unicode="&#xb0;" horiz-adv-x="724" d="M61 1231q0 125 88.5 213t212.5 88q123 0 212.5 -89t89.5 -212q0 -124 -88.5 -212.5t-213.5 -88.5q-124 0 -212.5 88t-88.5 213zM184 1231q0 -73 52 -125.5t126 -52.5q73 0 125 52t52 126t-52 126t-125 52q-74 0 -126 -52.5t-52 -125.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="1482" d="M193 0v123h1097v-123h-1097zM193 713v123h487v467h123v-467h487v-123h-487v-469h-123v469h-487z" />
<glyph unicode="&#xb2;" horiz-adv-x="768" d="M82 1192q0 89 44.5 152t111 90.5t145.5 27.5q136 0 222.5 -77.5t86.5 -213.5q0 -65 -28.5 -131t-69 -118t-105 -109t-116.5 -95t-123 -85h414v-90h-580v86q150 93 270 190.5t168 163.5q66 92 66 193q0 93 -57 146.5t-148 53.5q-58 0 -101 -20t-64.5 -51t-31.5 -61 t-10 -58q0 -19 4.5 -38t9.5 -32.5t15.5 -30t16 -23.5t17.5 -21.5t13 -16.5l-135 16q-1 3 -8 20.5t-10 27.5t-8 28t-7 37t-2 39z" />
<glyph unicode="&#xb3;" horiz-adv-x="768" d="M61 815l107 35v-23q0 -53 16 -92.5t38.5 -60.5t54 -33.5t55 -16t47.5 -3.5q56 0 97 16t62.5 42t31.5 54.5t10 59.5q0 83 -45 129.5t-140 46.5h-170v90h117q35 0 59 1.5t57.5 10t54.5 23t36.5 44t15.5 70.5q0 82 -52 126t-132 44q-44 0 -79.5 -14t-56.5 -34t-35 -45.5 t-19 -47t-5 -39.5v-18l-110 28q10 38 20.5 66.5t34.5 66.5t54 63t81 42.5t115 17.5q124 0 205.5 -64.5t81.5 -191.5q0 -146 -140 -190q65 -15 111.5 -71t46.5 -144q0 -32 -8.5 -66.5t-30 -72.5t-54 -67.5t-87 -49t-121.5 -19.5q-20 0 -40 1.5t-61 11.5t-74 27t-68.5 54 t-55.5 87q-20 47 -25 106z" />
<glyph unicode="&#xb4;" horiz-adv-x="555" d="M49 1143l230 287h227l-348 -287h-109z" />
<glyph unicode="&#xb5;" horiz-adv-x="1097" d="M166 -442v1407h125v-504q0 -111 10.5 -172t36.5 -101q29 -44 81 -71t109 -27q72 0 132.5 39.5t95.5 108.5q25 47 33 99.5t8 162.5v465h125v-732q0 -90 13 -119.5t54 -29.5q23 0 55 14v-102q-42 -12 -75 -12q-83 0 -121 39t-43 127q-51 -93 -116 -134t-161 -41 q-80 0 -136 28.5t-103 92.5q8 -499 8 -538h-131z" />
<glyph unicode="&#xb6;" horiz-adv-x="1316" d="M162 1051q0 181 115.5 288t330.5 107h453v-90h-68v-1698h-94v1698h-321v-1698h-95v1020q-149 19 -235 118t-86 255z" />
<glyph unicode="&#xb7;" horiz-adv-x="382" d="M109 483v222h165v-222h-165z" />
<glyph unicode="&#xb8;" horiz-adv-x="555" d="M135 -143l84 143h49l-49 -96q24 6 60 6q62 -2 101.5 -36t39.5 -95q0 -81 -63 -124.5t-146 -43.5q-39 0 -76 6v55q46 -4 66 -4q57 0 85.5 24t28.5 58q0 29 -25.5 52.5t-76.5 23.5q-35 0 -78 -21v52z" />
<glyph unicode="&#xb9;" horiz-adv-x="768" d="M209 1223v90q86 0 123 29t37 88v16h98v-903h-98v706q-53 -26 -138 -26h-22z" />
<glyph unicode="&#xba;" horiz-adv-x="681" d="M59 1135q0 49 9.5 95t31.5 88.5t54.5 74t80.5 50.5t107 19q71 0 127 -28.5t88.5 -75.5t49 -101.5t16.5 -113.5q0 -141 -78 -233.5t-207 -92.5q-57 0 -104.5 18.5t-79 49t-53.5 72t-32 86.5t-10 92zM160 1133q0 -119 51 -174.5t129 -55.5q77 0 129.5 57t52.5 175 q0 115 -43.5 179t-134.5 64q-83 0 -133.5 -61t-50.5 -184z" />
<glyph unicode="&#xbb;" horiz-adv-x="768" d="M74 342l202 317l-202 289l96 64l244 -353l-244 -378zM350 342l203 317l-203 289l99 64l241 -353l-241 -378z" />
<glyph unicode="&#xbc;" horiz-adv-x="1792" d="M209 1223v90q86 0 123 29t37 88v16h98v-903h-98v706q-53 -26 -138 -26h-22zM502 -43l719 1577l86 -39l-723 -1575zM1104 221v78l391 606h100v-594h136v-90h-136v-221h-98v221h-393zM1221 311h276v422z" />
<glyph unicode="&#xbd;" horiz-adv-x="1792" d="M209 1223v90q86 0 123 29t37 88v16h98v-903h-98v706q-53 -26 -138 -26h-22zM453 -43l721 1577l83 -39l-722 -1575zM1106 649q0 132 88 201.5t213 69.5q137 0 223 -78t86 -213q0 -129 -102.5 -255t-339.5 -284h414v-90h-580v86q149 93 271.5 193t166.5 161q66 93 66 193 q0 92 -56 146.5t-149 54.5q-58 0 -101 -20.5t-64.5 -52t-31.5 -60.5t-10 -54q0 -23 5.5 -45t16.5 -42t18 -31.5t21 -29t15 -18.5l-135 17q-1 4 -8 20.5t-10 27l-8 28t-7 36.5t-2 39z" />
<glyph unicode="&#xbe;" horiz-adv-x="1792" d="M61 815l107 35v-23q0 -53 16 -92.5t38.5 -60.5t54 -33.5t55 -16t47.5 -3.5q56 0 97 16t62.5 42t31.5 54.5t10 59.5q0 83 -45 129.5t-140 46.5h-170v90h117q35 0 59 1.5t57.5 10t54.5 23t36.5 44t15.5 70.5q0 82 -52 126t-132 44q-44 0 -79.5 -14t-56.5 -34t-35 -45.5 t-19 -47t-5 -39.5v-18l-110 28q10 38 20.5 66.5t34.5 66.5t54 63t81 42.5t115 17.5q124 0 205.5 -64.5t81.5 -191.5q0 -146 -140 -190q65 -15 111.5 -71t46.5 -144q0 -32 -8.5 -66.5t-30 -72.5t-54 -67.5t-87 -49t-121.5 -19.5q-20 0 -40 1.5t-61 11.5t-74 27t-68.5 54 t-55.5 87q-20 47 -25 106zM573 -43l721 1577l84 -39l-723 -1575zM1104 221v78l391 606h100v-594h136v-90h-136v-221h-98v221h-393zM1221 311h276v422z" />
<glyph unicode="&#xbf;" horiz-adv-x="980" d="M35 377q0 125 63 225q17 26 44.5 57.5t43 47.5t59 56.5t48.5 45.5q87 84 106 118t19 99v74h127v-72q0 -76 -16.5 -127t-71.5 -108q-25 -26 -75 -72t-81 -78t-66 -76.5t-52 -93t-17 -102.5q0 -13 2.5 -31t11 -52.5t28 -65.5t48.5 -60.5t79.5 -47.5t113.5 -18q130 0 200 80 t70 197q0 105 -51 198l153 -45q1 -4 6.5 -26.5t8.5 -39.5t6.5 -45.5t3.5 -54.5q0 -74 -18.5 -134.5t-47 -99.5t-68.5 -68.5t-76.5 -44.5t-78 -24.5t-66.5 -11.5t-47 -2q-98 0 -177.5 34t-129 90.5t-76 128t-26.5 149.5zM399 1208v238h160v-238h-160z" />
<glyph unicode="&#xc0;" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM375 1833h217l203 -256h-119zM383 547h561l-278 739z" />
<glyph unicode="&#xc1;" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM383 547h561l-278 739zM530 1577l203 256h215l-301 -256h-117z" />
<glyph unicode="&#xc2;" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM383 547h561l-278 739zM410 1581l215 252h86l213 -252h-101l-159 115l-158 -115h-96z" />
<glyph unicode="&#xc3;" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM344 1612q5 18 11.5 36t23.5 52.5t36.5 59t51.5 44t68 19.5q42 0 95 -27.5t99.5 -54.5t73.5 -27q20 0 35 7.5t28.5 26.5t19.5 29.5t19 37.5l80 -39q-15 -34 -20 -45t-19 -38.5t-21.5 -37.5t-22.5 -27.5 t-28.5 -24t-32.5 -12.5t-40 -6q-40 0 -97 26.5t-106.5 52.5t-73.5 26q-20 0 -34.5 -8t-26 -26t-17.5 -31t-16 -40zM383 547h561l-278 739z" />
<glyph unicode="&#xc4;" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM377 1606v198h137v-198h-137zM383 547h561l-278 739zM825 1606v198h138v-198h-138z" />
<glyph unicode="&#xc5;" horiz-adv-x="1323" d="M20 0l590 1446h115l575 -1446h-149l-166 436h-647l-166 -436h-152zM383 547h561l-278 739zM510 1694q0 67 47 114t115 47t115 -47t47 -114q0 -68 -47 -115t-115 -47t-115 47t-47 115zM586 1694q0 -35 25.5 -60.5t60.5 -25.5t60.5 25.5t25.5 60.5t-25.5 60.5t-60.5 25.5 t-60.5 -25.5t-25.5 -60.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="2048" d="M0 0l926 1446h1022v-125h-842v-520h758v-127h-758v-551h881v-123h-1016v418h-545l-264 -418h-162zM508 547h463v747z" />
<glyph unicode="&#xc7;" horiz-adv-x="1366" d="M102 715q0 69 7 137t26 145.5t49 145.5t78.5 131.5t111 109t151 72.5t194.5 27q101 0 184 -21t140 -54t104 -84.5t76.5 -101t56.5 -114.5l-139 -70q-14 64 -41.5 117.5t-75 102t-124.5 76.5t-177 28q-88 0 -160 -25t-120.5 -65t-85 -96.5t-57.5 -113t-33.5 -121 t-16.5 -113t-4 -97.5q0 -645 504 -645q151 0 252 83t139 224l129 -78q-88 -180 -211 -264.5t-316 -87.5l-30 -59q48 6 61 6q59 0 99 -34.5t40 -96.5q0 -82 -61.5 -125t-140.5 -43q-44 0 -80 6v55q33 -4 69 -4q52 1 80.5 24t28.5 58q0 32 -26 54t-74 22q-43 0 -78 -21v52 l61 106q-137 8 -243.5 59t-170.5 125.5t-105 174.5t-56 195t-15 198z" />
<glyph unicode="&#xc8;" horiz-adv-x="1236" d="M166 0v1446h944v-125h-807v-516h731v-127h-731v-551h858v-127h-995zM326 1833h217l202 -256h-118z" />
<glyph unicode="&#xc9;" horiz-adv-x="1236" d="M166 0v1446h944v-125h-807v-516h731v-127h-731v-551h858v-127h-995zM528 1577l203 256h215l-301 -256h-117z" />
<glyph unicode="&#xca;" horiz-adv-x="1236" d="M166 0v1446h944v-125h-807v-516h731v-127h-731v-551h858v-127h-995zM367 1581l215 252h86l213 -252h-101l-159 115l-158 -115h-96z" />
<glyph unicode="&#xcb;" horiz-adv-x="1236" d="M166 0v1446h944v-125h-807v-516h731v-127h-731v-551h858v-127h-995zM328 1606v198h137v-198h-137zM776 1606v198h137v-198h-137z" />
<glyph unicode="&#xcc;" horiz-adv-x="468" d="M-63 1833h217l202 -256h-118zM166 0v1446h137v-1446h-137z" />
<glyph unicode="&#xcd;" horiz-adv-x="468" d="M111 1577l202 256h215l-301 -256h-116zM166 0v1446h137v-1446h-137z" />
<glyph unicode="&#xce;" horiz-adv-x="468" d="M-16 1581l215 252h86l213 -252h-101l-159 115l-158 -115h-96zM166 0v1446h137v-1446h-137z" />
<glyph unicode="&#xcf;" horiz-adv-x="468" d="M-57 1606v198h137v-198h-137zM166 0v1446h137v-1446h-137zM391 1606v198h137v-198h-137z" />
<glyph unicode="&#xd0;" horiz-adv-x="1409" d="M0 721v110h166v615h387q154 0 243.5 -9t151.5 -34q155 -65 257 -245t102 -429q0 -261 -108 -445.5t-271 -244.5q-104 -39 -371 -39h-391v721h-166zM305 123h277q238 0 327 45q111 56 184.5 205.5t73.5 345.5q0 71 -12 145.5t-40 161t-87 157t-141 105.5q-54 23 -118.5 28 t-209.5 5h-254v-490h453v-110h-453v-598z" />
<glyph unicode="&#xd1;" horiz-adv-x="1449" d="M166 0v1446h135l858 -1237q-10 1206 -10 1237h135v-1446h-135l-848 1249v-1249h-135zM410 1612q5 18 11.5 36t23.5 52.5t36.5 59t51 44t67.5 19.5q42 0 95 -27.5t99.5 -54.5t73.5 -27q20 0 35.5 8t29 26.5t20 30t18.5 36.5l80 -39q-16 -37 -23.5 -52t-22.5 -43.5 t-26.5 -41t-29 -27.5t-38 -21t-45.5 -6q-40 0 -96.5 26.5t-106 52.5t-73.5 26q-20 0 -34.5 -8t-26 -26t-17.5 -31t-16 -40z" />
<glyph unicode="&#xd2;" horiz-adv-x="1449" d="M102 727q0 62 7.5 126.5t26.5 140.5t49 143.5t80 132t113 111t153.5 74.5t197.5 28q288 0 453.5 -197t165.5 -545q0 -116 -20.5 -224t-67.5 -210t-117 -177.5t-176.5 -121t-237.5 -45.5q-103 0 -190 26t-150.5 70.5t-113.5 106.5t-82 129.5t-53 144t-29.5 147t-8.5 140.5 zM248 723q0 -46 4 -94.5t17.5 -113t34.5 -122t58 -115t85 -99t119 -67.5t157 -26q78 0 144 22t114.5 59t86.5 89.5t63 110.5t41 124t23 128.5t7 125.5q0 51 -6 104.5t-21.5 115t-39 117t-61.5 108t-85.5 90.5t-114.5 61t-145 23q-87 0 -160 -26.5t-124.5 -74t-90 -109 t-61.5 -134.5t-34 -147t-11 -150zM426 1833h217l203 -256h-119z" />
<glyph unicode="&#xd3;" horiz-adv-x="1449" d="M102 727q0 62 7.5 126.5t26.5 140.5t49 143.5t80 132t113 111t153.5 74.5t197.5 28q288 0 453.5 -197t165.5 -545q0 -116 -20.5 -224t-67.5 -210t-117 -177.5t-176.5 -121t-237.5 -45.5q-103 0 -190 26t-150.5 70.5t-113.5 106.5t-82 129.5t-53 144t-29.5 147t-8.5 140.5 zM248 723q0 -46 4 -94.5t17.5 -113t34.5 -122t58 -115t85 -99t119 -67.5t157 -26q78 0 144 22t114.5 59t86.5 89.5t63 110.5t41 124t23 128.5t7 125.5q0 51 -6 104.5t-21.5 115t-39 117t-61.5 108t-85.5 90.5t-114.5 61t-145 23q-87 0 -160 -26.5t-124.5 -74t-90 -109 t-61.5 -134.5t-34 -147t-11 -150zM596 1577l203 256h215l-301 -256h-117z" />
<glyph unicode="&#xd4;" horiz-adv-x="1449" d="M102 727q0 62 7.5 126.5t26.5 140.5t49 143.5t80 132t113 111t153.5 74.5t197.5 28q288 0 453.5 -197t165.5 -545q0 -116 -20.5 -224t-67.5 -210t-117 -177.5t-176.5 -121t-237.5 -45.5q-103 0 -190 26t-150.5 70.5t-113.5 106.5t-82 129.5t-53 144t-29.5 147t-8.5 140.5 zM248 723q0 -46 4 -94.5t17.5 -113t34.5 -122t58 -115t85 -99t119 -67.5t157 -26q78 0 144 22t114.5 59t86.5 89.5t63 110.5t41 124t23 128.5t7 125.5q0 51 -6 104.5t-21.5 115t-39 117t-61.5 108t-85.5 90.5t-114.5 61t-145 23q-87 0 -160 -26.5t-124.5 -74t-90 -109 t-61.5 -134.5t-34 -147t-11 -150zM473 1581l215 252h86l213 -252h-100l-160 115l-158 -115h-96z" />
<glyph unicode="&#xd5;" horiz-adv-x="1449" d="M102 727q0 62 7.5 126.5t26.5 140.5t49 143.5t80 132t113 111t153.5 74.5t197.5 28q288 0 453.5 -197t165.5 -545q0 -116 -20.5 -224t-67.5 -210t-117 -177.5t-176.5 -121t-237.5 -45.5q-103 0 -190 26t-150.5 70.5t-113.5 106.5t-82 129.5t-53 144t-29.5 147t-8.5 140.5 zM248 723q0 -46 4 -94.5t17.5 -113t34.5 -122t58 -115t85 -99t119 -67.5t157 -26q78 0 144 22t114.5 59t86.5 89.5t63 110.5t41 124t23 128.5t7 125.5q0 51 -6 104.5t-21.5 115t-39 117t-61.5 108t-85.5 90.5t-114.5 61t-145 23q-87 0 -160 -26.5t-124.5 -74t-90 -109 t-61.5 -134.5t-34 -147t-11 -150zM410 1612q5 18 11.5 36t23.5 52.5t36.5 59t51 44t67.5 19.5q42 0 95 -27.5t99.5 -54.5t73.5 -27q20 0 35.5 8t29 26.5t20 30t18.5 36.5l80 -39q-16 -37 -23.5 -52t-22.5 -43.5t-26.5 -41t-29 -27.5t-38 -21t-45.5 -6q-40 0 -96.5 26.5 t-106 52.5t-73.5 26q-20 0 -34.5 -8t-26 -26t-17.5 -31t-16 -40z" />
<glyph unicode="&#xd6;" horiz-adv-x="1449" d="M102 727q0 62 7.5 126.5t26.5 140.5t49 143.5t80 132t113 111t153.5 74.5t197.5 28q288 0 453.5 -197t165.5 -545q0 -116 -20.5 -224t-67.5 -210t-117 -177.5t-176.5 -121t-237.5 -45.5q-103 0 -190 26t-150.5 70.5t-113.5 106.5t-82 129.5t-53 144t-29.5 147t-8.5 140.5 zM248 723q0 -46 4 -94.5t17.5 -113t34.5 -122t58 -115t85 -99t119 -67.5t157 -26q78 0 144 22t114.5 59t86.5 89.5t63 110.5t41 124t23 128.5t7 125.5q0 51 -6 104.5t-21.5 115t-39 117t-61.5 108t-85.5 90.5t-114.5 61t-145 23q-87 0 -160 -26.5t-124.5 -74t-90 -109 t-61.5 -134.5t-34 -147t-11 -150zM436 1606v198h137v-198h-137zM885 1606v198h137v-198h-137z" />
<glyph unicode="&#xd7;" horiz-adv-x="1482" d="M307 254l344 344l-344 344l88 88l344 -344l344 344l86 -88l-344 -344l346 -344l-88 -88l-344 346l-346 -344z" />
<glyph unicode="&#xd8;" horiz-adv-x="1449" d="M102 729q0 118 21.5 225.5t70.5 205t121 168.5t180 113t240 42q271 0 426 -172l123 151l80 -63l-137 -168q35 -60 59 -114t46 -157t22 -221q0 -39 -1.5 -75t-14.5 -120t-35.5 -154t-71.5 -153t-117 -141q-154 -133 -391 -133q-248 0 -408 160l-120 -143l-76 63l131 160 q-148 226 -148 526zM248 725q0 -236 94 -412l725 887q-108 160 -326 160q-106 0 -183 -29t-144 -100q-166 -174 -166 -506zM401 229q111 -145 328 -145q196 0 320 129q157 170 157 496q0 243 -80 401z" />
<glyph unicode="&#xd9;" horiz-adv-x="1409" d="M164 510v936h135v-973q0 -93 27 -164t67.5 -111.5t97.5 -65.5t108.5 -33.5t107.5 -8.5q199 0 300 99.5t101 318.5v938h137v-907q0 -100 -15.5 -182.5t-53.5 -157.5t-98.5 -125.5t-155 -80.5t-217.5 -30q-29 0 -56 1.5t-68.5 8.5t-78.5 17.5t-80.5 31.5t-79 48.5 t-69.5 69.5t-57.5 93.5t-37.5 122.5t-14 154zM395 1833h217l203 -256h-119z" />
<glyph unicode="&#xda;" horiz-adv-x="1409" d="M164 510v936h135v-973q0 -93 27 -164t67.5 -111.5t97.5 -65.5t108.5 -33.5t107.5 -8.5q199 0 300 99.5t101 318.5v938h137v-907q0 -100 -15.5 -182.5t-53.5 -157.5t-98.5 -125.5t-155 -80.5t-217.5 -30q-29 0 -56 1.5t-68.5 8.5t-78.5 17.5t-80.5 31.5t-79 48.5 t-69.5 69.5t-57.5 93.5t-37.5 122.5t-14 154zM590 1577l203 256h215l-301 -256h-117z" />
<glyph unicode="&#xdb;" horiz-adv-x="1409" d="M164 510v936h135v-973q0 -93 27 -164t67.5 -111.5t97.5 -65.5t108.5 -33.5t107.5 -8.5q199 0 300 99.5t101 318.5v938h137v-907q0 -100 -15.5 -182.5t-53.5 -157.5t-98.5 -125.5t-155 -80.5t-217.5 -30q-29 0 -56 1.5t-68.5 8.5t-78.5 17.5t-80.5 31.5t-79 48.5 t-69.5 69.5t-57.5 93.5t-37.5 122.5t-14 154zM453 1581l215 252h86l213 -252h-101l-159 115l-158 -115h-96z" />
<glyph unicode="&#xdc;" horiz-adv-x="1409" d="M164 510v936h135v-973q0 -93 27 -164t67.5 -111.5t97.5 -65.5t108.5 -33.5t107.5 -8.5q199 0 300 99.5t101 318.5v938h137v-907q0 -100 -15.5 -182.5t-53.5 -157.5t-98.5 -125.5t-155 -80.5t-217.5 -30q-29 0 -56 1.5t-68.5 8.5t-78.5 17.5t-80.5 31.5t-79 48.5 t-69.5 69.5t-57.5 93.5t-37.5 122.5t-14 154zM414 1606v198h137v-198h-137zM862 1606v198h137v-198h-137z" />
<glyph unicode="&#xdd;" horiz-adv-x="1280" d="M20 1446h162l447 -719l465 719h166l-566 -848v-598h-135v598zM528 1577l203 256h215l-301 -256h-117z" />
<glyph unicode="&#xde;" horiz-adv-x="1280" d="M166 0v1446h131v-223h424q78 0 123.5 -1.5t101 -8.5t91 -20.5t72 -38t65.5 -60.5q81 -101 81 -265q0 -163 -77 -260q-68 -86 -164.5 -113.5t-237.5 -27.5h-479v-428h-131zM297 549h475q62 0 106.5 4.5t93.5 22t79.5 48t50.5 86t20 132.5q0 110 -59 180q-47 54 -112 70 t-179 16h-475v-559z" />
<glyph unicode="&#xdf;" horiz-adv-x="1024" d="M152 0v1008q0 176 30 260q38 106 127.5 160.5t206.5 54.5q77 0 138 -24t98.5 -60.5t62 -85t34 -93t9.5 -87.5q0 -153 -98 -238q-63 -54 -144 -66q86 -10 151.5 -54t102 -109t54.5 -137.5t18 -151.5q0 -155 -68 -260q-94 -148 -264 -148q-110 0 -221 64v139q1 0 10.5 -6.5 t21.5 -14.5t29 -18t36 -19t39.5 -17t42.5 -12.5t42 -4.5q37 0 81 19.5t75 72.5q45 76 45 207q0 62 -11 115.5t-38.5 103t-70.5 84t-110.5 55.5t-154.5 21h-64v116h27q159 0 240 52q39 27 69.5 79.5t30.5 131.5q0 92 -56 160.5t-163 68.5q-44 0 -79.5 -9.5t-60 -28.5 t-42.5 -39.5t-29 -52t-17.5 -56t-9.5 -61t-3.5 -57t-0.5 -54.5v-1008h-116z" />
<glyph unicode="&#xe0;" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM186 1430h230l231 -287h-108zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25 q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5 t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5zM403 1143l230 287h227l-348 -287h-109z" />
<glyph unicode="&#xe2;" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5 t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5zM225 1143l262 282h54l276 -282h-104l-201 133l-182 -133h-105z" />
<glyph unicode="&#xe3;" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5 t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5zM209 1208q62 181 176 181q59 0 154 -58q58 -37 96 -37q26 0 46.5 16.5t28 31.5t17.5 40l84 -20q-31 -102 -70 -143t-108 -41q-55 0 -174 65q-59 33 -82 33q-27 0 -46 -22t-38 -68z" />
<glyph unicode="&#xe4;" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5 t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5zM250 1192v188h125v-188h-125zM602 1192v188h125v-188h-125z" />
<glyph unicode="&#xe5;" horiz-adv-x="1024" d="M92 246q0 58 21 103t57.5 78.5t100 62t135 49.5t176.5 45l163 37v75q0 38 -10.5 71t-35 63t-71 47.5t-110.5 17.5q-146 0 -205 -56.5t-59 -179.5l-133 23q19 151 117.5 235t265.5 84q358 0 358 -294v-428q0 -47 1.5 -70.5t7.5 -49.5t19.5 -37t37 -18.5t59.5 -7.5h21v-96 h-25q-126 0 -182 39t-56 139q-9 -30 -34.5 -62.5t-66.5 -64t-105.5 -51.5t-139.5 -20q-147 0 -227 77t-80 189zM209 248q0 -61 49.5 -111.5t147.5 -50.5q60 0 122.5 22t114.5 65t76 97q26 59 26 172v74l-61 -16q-34 -9 -95 -25q-64 -16 -93.5 -24t-76.5 -22t-67.5 -22.5 t-51 -22.5t-42.5 -26t-26 -29.5t-18.5 -37t-4.5 -43.5zM332 1292q0 68 47 115t115 47q67 0 114 -47t47 -115t-47 -115t-114 -47q-68 0 -115 47t-47 115zM406 1292q0 -35 25.5 -60.5t60.5 -25.5t60.5 25.5t25.5 60.5t-25.5 60.5t-60.5 25.5t-60.5 -25.5t-25.5 -60.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1705" d="M78 242q0 128 108 204q52 36 144.5 65.5t271.5 74.5l146 37v100q0 79 -50.5 122.5t-177.5 43.5q-137 0 -203 -47q-73 -50 -73 -183l-135 19q5 41 15 77.5t38.5 84t70.5 81t116.5 57t170.5 23.5q253 0 330 -161q51 83 139 122t193 39q203 0 319 -135q113 -131 121 -370 v-11h-754q0 -3 -1 -18t-1 -27q0 -220 146 -307q88 -51 184 -51q203 0 315 221l111 -22q-32 -85 -82 -144t-94 -90q-104 -72 -258 -72q-124 0 -209.5 45.5t-130.5 102.5q-29 36 -51 90q-29 -56 -64 -96q-48 -54 -133.5 -95.5t-208.5 -41.5q-62 0 -115.5 13.5t-99 42.5 t-72 81.5t-26.5 124.5zM197 250q0 -66 43 -113t147 -47q71 0 133 19t102 48.5t64.5 57.5t36.5 53q25 53 25 166v80q-80 -17 -236 -60t-209 -67q-106 -46 -106 -137zM868 586h611q-26 307 -297 307q-35 0 -70 -6t-77.5 -26t-75.5 -52.5t-58.5 -90t-32.5 -132.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="980" d="M90 481q0 237 130.5 378.5t338.5 141.5q147 0 238 -67t133 -178l-113 -27q-31 79 -102.5 121.5t-161.5 42.5q-108 0 -185 -58t-112 -148t-35 -200q0 -114 33 -203t107.5 -145.5t181.5 -56.5q176 0 264 164l123 -29q-109 -232 -371 -242l-37 -71q24 6 60 6 q62 0 101.5 -35.5t39.5 -95.5q0 -81 -63 -124.5t-146 -43.5q-1 0 -76 6v55q46 -4 66 -4q57 0 85.5 24t28.5 58q0 29 -25.5 52.5t-76.5 23.5q-35 0 -78 -21v52l70 118q-191 10 -304.5 148.5t-113.5 357.5z" />
<glyph unicode="&#xe8;" d="M90 498q0 121 38.5 219t102.5 158.5t143.5 93t166.5 32.5q100 0 184.5 -41.5t139.5 -111t85.5 -158t30.5 -184.5v-19h-758v-28q0 -48 8 -95t31 -98.5t58 -90t95 -64t136 -25.5q31 0 58 3t64 15.5t68.5 33.5t65.5 60.5t61 92.5l113 -33q-127 -283 -424 -283 q-82 0 -150.5 20.5t-116 53.5t-84 78.5t-58 93t-35 100t-18.5 95t-5 82.5zM182 1430h230l231 -287h-108zM225 588h617q-8 72 -32.5 128t-56 88.5t-71 53.5t-74 28t-69.5 7q-60 0 -110.5 -18.5t-85.5 -49t-61 -71t-39.5 -82t-17.5 -84.5z" />
<glyph unicode="&#xe9;" d="M90 498q0 121 38.5 219t102.5 158.5t143.5 93t166.5 32.5q100 0 184.5 -41.5t139.5 -111t85.5 -158t30.5 -184.5v-19h-758v-28q0 -48 8 -95t31 -98.5t58 -90t95 -64t136 -25.5q31 0 58 3t64 15.5t68.5 33.5t65.5 60.5t61 92.5l113 -33q-127 -283 -424 -283 q-82 0 -150.5 20.5t-116 53.5t-84 78.5t-58 93t-35 100t-18.5 95t-5 82.5zM225 588h617q-8 72 -32.5 128t-56 88.5t-71 53.5t-74 28t-69.5 7q-60 0 -110.5 -18.5t-85.5 -49t-61 -71t-39.5 -82t-17.5 -84.5zM420 1143l229 287h228l-349 -287h-108z" />
<glyph unicode="&#xea;" d="M90 498q0 121 38.5 219t102.5 158.5t143.5 93t166.5 32.5q100 0 184.5 -41.5t139.5 -111t85.5 -158t30.5 -184.5v-19h-758v-28q0 -48 8 -95t31 -98.5t58 -90t95 -64t136 -25.5q31 0 58 3t64 15.5t68.5 33.5t65.5 60.5t61 92.5l113 -33q-127 -283 -424 -283 q-82 0 -150.5 20.5t-116 53.5t-84 78.5t-58 93t-35 100t-18.5 95t-5 82.5zM225 588h617q-8 72 -32.5 128t-56 88.5t-71 53.5t-74 28t-69.5 7q-60 0 -110.5 -18.5t-85.5 -49t-61 -71t-39.5 -82t-17.5 -84.5zM246 1143l262 282h53l277 -282h-105l-201 133l-182 -133h-104z" />
<glyph unicode="&#xeb;" d="M90 498q0 121 38.5 219t102.5 158.5t143.5 93t166.5 32.5q100 0 184.5 -41.5t139.5 -111t85.5 -158t30.5 -184.5v-19h-758v-28q0 -48 8 -95t31 -98.5t58 -90t95 -64t136 -25.5q31 0 58 3t64 15.5t68.5 33.5t65.5 60.5t61 92.5l113 -33q-127 -283 -424 -283 q-82 0 -150.5 20.5t-116 53.5t-84 78.5t-58 93t-35 100t-18.5 95t-5 82.5zM225 588h617q-8 72 -32.5 128t-56 88.5t-71 53.5t-74 28t-69.5 7q-60 0 -110.5 -18.5t-85.5 -49t-61 -71t-39.5 -82t-17.5 -84.5zM297 1192v188h125v-188h-125zM649 1192v188h125v-188h-125z" />
<glyph unicode="&#xec;" horiz-adv-x="425" d="M-139 1430h229l232 -287h-109zM154 0v977h118v-977h-118z" />
<glyph unicode="&#xed;" horiz-adv-x="425" d="M106 1143l230 287h227l-348 -287h-109zM154 0v977h118v-977h-118z" />
<glyph unicode="&#xee;" horiz-adv-x="425" d="M-74 1143l262 282h54l276 -282h-104l-201 133l-182 -133h-105zM154 0v977h118v-977h-118z" />
<glyph unicode="&#xef;" horiz-adv-x="425" d="M-25 1192v188h125v-188h-125zM154 0v977h118v-977h-118zM328 1192v188h125v-188h-125z" />
<glyph unicode="&#xf0;" d="M90 477q0 128 35.5 230.5t96.5 167.5t140.5 99t169.5 34q104 0 169 -40.5t118 -109.5q-40 168 -137 320l-326 -105l-32 76l311 98q-16 22 -32.5 42t-28 33t-27.5 30t-23.5 24.5l-24.5 24.5l-22 22l88 54q99 -105 168 -197l187 59l30 -77l-166 -54q38 -68 64.5 -123 t60 -142t51 -186.5t17.5 -205.5q0 -147 -27 -243.5t-98 -182.5q-119 -143 -326 -143q-109 0 -194.5 42.5t-137 113.5t-78 157.5t-26.5 181.5zM219 481q0 -104 25.5 -182.5t69.5 -123t97 -66t115 -21.5q63 0 118.5 22t102 68t74 128t27.5 190q0 205 -85.5 307t-223.5 102 q-157 0 -238.5 -112.5t-81.5 -311.5z" />
<glyph unicode="&#xf1;" d="M154 0v977h120v-174q4 14 12 31t31.5 48t55 55t87 42t122.5 18q65 0 118 -16t88 -43t56.5 -53.5t34.5 -55.5q23 -48 28.5 -103t5.5 -171v-555h-120v508q0 81 -1 118t-6 79t-16 69q-25 63 -82.5 89t-120.5 26q-98 0 -165.5 -46t-97.5 -119t-30 -165v-559h-120zM231 1208 q62 181 177 181q58 0 153 -58q58 -37 96 -37q20 0 36 8t27 23.5t17 27t13 29.5l84 -20q-31 -102 -70.5 -143t-108.5 -41q-55 0 -174 65q-59 33 -82 33q-27 0 -46 -22t-38 -68z" />
<glyph unicode="&#xf2;" d="M90 477q0 232 120 378t327 146q110 0 196 -44t137.5 -117.5t78 -161t28.5 -184.5q0 -106 -26.5 -194t-70.5 -147t-102.5 -100t-121 -59.5t-128.5 -18.5q-193 0 -315.5 135t-122.5 367zM180 1430h230l231 -287h-109zM219 477q0 -108 26.5 -188t72 -123.5t98.5 -63.5 t114 -20q48 0 91.5 12.5t85.5 43t73 76t49.5 117.5t18.5 163q0 89 -18 159.5t-47.5 116t-71 75t-85 42t-91.5 12.5q-140 0 -228 -106t-88 -316z" />
<glyph unicode="&#xf3;" d="M90 477q0 232 120 378t327 146q110 0 196 -44t137.5 -117.5t78 -161t28.5 -184.5q0 -106 -26.5 -194t-70.5 -147t-102.5 -100t-121 -59.5t-128.5 -18.5q-193 0 -315.5 135t-122.5 367zM219 477q0 -108 26.5 -188t72 -123.5t98.5 -63.5t114 -20q48 0 91.5 12.5t85.5 43 t73 76t49.5 117.5t18.5 163q0 89 -18 159.5t-47.5 116t-71 75t-85 42t-91.5 12.5q-140 0 -228 -106t-88 -316zM426 1143l229 287h228l-348 -287h-109z" />
<glyph unicode="&#xf4;" d="M90 477q0 232 120 378t327 146q110 0 196 -44t137.5 -117.5t78 -161t28.5 -184.5q0 -106 -26.5 -194t-70.5 -147t-102.5 -100t-121 -59.5t-128.5 -18.5q-193 0 -315.5 135t-122.5 367zM219 477q0 -108 26.5 -188t72 -123.5t98.5 -63.5t114 -20q48 0 91.5 12.5t85.5 43 t73 76t49.5 117.5t18.5 163q0 89 -18 159.5t-47.5 116t-71 75t-85 42t-91.5 12.5q-140 0 -228 -106t-88 -316zM246 1143l262 282h53l277 -282h-105l-201 133l-182 -133h-104z" />
<glyph unicode="&#xf5;" d="M90 477q0 232 120 378t327 146q110 0 196 -44t137.5 -117.5t78 -161t28.5 -184.5q0 -106 -26.5 -194t-70.5 -147t-102.5 -100t-121 -59.5t-128.5 -18.5q-193 0 -315.5 135t-122.5 367zM219 477q0 -108 26.5 -188t72 -123.5t98.5 -63.5t114 -20q48 0 91.5 12.5t85.5 43 t73 76t49.5 117.5t18.5 163q0 89 -18 159.5t-47.5 116t-71 75t-85 42t-91.5 12.5q-140 0 -228 -106t-88 -316zM231 1208q62 181 177 181q58 0 153 -58q58 -37 96 -37q20 0 36 8t27 23.5t17 27t13 29.5l84 -20q-31 -102 -70.5 -143t-108.5 -41q-55 0 -174 65q-59 33 -82 33 q-27 0 -46 -22t-38 -68z" />
<glyph unicode="&#xf6;" d="M90 477q0 232 120 378t327 146q110 0 196 -44t137.5 -117.5t78 -161t28.5 -184.5q0 -106 -26.5 -194t-70.5 -147t-102.5 -100t-121 -59.5t-128.5 -18.5q-193 0 -315.5 135t-122.5 367zM219 477q0 -108 26.5 -188t72 -123.5t98.5 -63.5t114 -20q48 0 91.5 12.5t85.5 43 t73 76t49.5 117.5t18.5 163q0 89 -18 159.5t-47.5 116t-71 75t-85 42t-91.5 12.5q-140 0 -228 -106t-88 -316zM295 1192v188h125v-188h-125zM647 1192v188h125v-188h-125z" />
<glyph unicode="&#xf7;" horiz-adv-x="1482" d="M162 537v122h1159v-122h-1159zM674 195v192h139v-192h-139zM674 811v193h139v-193h-139z" />
<glyph unicode="&#xf8;" d="M90 485q0 100 29.5 191.5t84 164.5t140.5 116.5t191 43.5q113 0 204 -53l47 84l80 -47l-53 -92q22 -19 44.5 -46.5t52.5 -76.5t48.5 -122t18.5 -156q0 -125 -39 -228q-13 -33 -29 -64t-50.5 -74t-76.5 -74.5t-107.5 -54t-142.5 -22.5q-68 0 -125 16.5t-85 37.5l-43 -74 l-76 45l43 78q-156 165 -156 407zM213 481q0 -162 92 -299l383 674q-67 41 -149 41t-147 -38t-102.5 -99.5t-57 -133t-19.5 -145.5zM373 123q74 -41 153 -41q147 0 232 98q94 106 94 307q0 188 -92 314z" />
<glyph unicode="&#xf9;" d="M154 498v479h122v-506q0 -171 17 -238q39 -143 203 -143q151 0 231 109q40 56 53 124.5t13 159.5v494h120v-977h-120v176q-87 -199 -312 -199q-105 0 -187.5 54.5t-113.5 152.5q-26 88 -26 314zM180 1430h230l231 -287h-109z" />
<glyph unicode="&#xfa;" d="M154 498v479h122v-506q0 -171 17 -238q39 -143 203 -143q151 0 231 109q40 56 53 124.5t13 159.5v494h120v-977h-120v176q-87 -199 -312 -199q-105 0 -187.5 54.5t-113.5 152.5q-26 88 -26 314zM426 1143l229 287h228l-348 -287h-109z" />
<glyph unicode="&#xfb;" d="M154 498v479h122v-506q0 -171 17 -238q39 -143 203 -143q151 0 231 109q40 56 53 124.5t13 159.5v494h120v-977h-120v176q-87 -199 -312 -199q-105 0 -187.5 54.5t-113.5 152.5q-26 88 -26 314zM246 1143l262 282h53l277 -282h-105l-201 133l-182 -133h-104z" />
<glyph unicode="&#xfc;" d="M154 498v479h122v-506q0 -171 17 -238q39 -143 203 -143q151 0 231 109q40 56 53 124.5t13 159.5v494h120v-977h-120v176q-87 -199 -312 -199q-105 0 -187.5 54.5t-113.5 152.5q-26 88 -26 314zM295 1192v188h125v-188h-125zM647 1192v188h125v-188h-125z" />
<glyph unicode="&#xfd;" horiz-adv-x="894" d="M23 -334q66 -47 127 -47q49 0 73 30.5t58 117.5l90 233l-338 977h117l284 -832l318 832h122l-460 -1167q-63 -161 -94 -210q-51 -82 -132 -94q-17 -2 -36 -2q-73 0 -129 39v123zM340 1143l229 287h228l-348 -287h-109z" />
<glyph unicode="&#xfe;" d="M154 -518v1964h118v-629q23 50 59 86.5t68 54t71 27t57.5 11t39.5 1.5q81 0 147.5 -26.5t109.5 -71t74.5 -97.5t47.5 -113t23.5 -109t7.5 -93q0 -68 -13.5 -137t-45 -137t-77 -120t-115 -84t-153.5 -32q-115 0 -196 55.5t-105 131.5v-682h-118zM272 440 q0 -157 72.5 -252.5t202.5 -95.5q69 0 124 27.5t88 70t55 98.5t30 107.5t8 102.5q0 194 -87.5 291.5t-215.5 97.5q-69 0 -121.5 -27t-81 -66t-46.5 -94.5t-23 -101.5t-5 -96v-62z" />
<glyph unicode="&#xff;" horiz-adv-x="894" d="M23 -334q66 -47 127 -47q49 0 73 30.5t58 117.5l90 233l-338 977h117l284 -832l318 832h122l-460 -1167q-63 -161 -94 -210q-51 -82 -132 -94q-17 -2 -36 -2q-73 0 -129 39v123zM211 1192v188h125v-188h-125zM563 1192v188h125v-188h-125z" />
<glyph unicode="&#x152;" horiz-adv-x="2174" d="M102 721q0 150 43 285q29 89 73.5 162.5t93.5 121t108.5 83.5t111.5 55.5t110 31t97 14.5t78 3q34 0 67 -2t64.5 -6.5t50 -7.5t46.5 -9t30 -6h975v-119h-836v-524h758v-127h-758v-553h887v-123h-1005q-140 -37 -283 -37q-169 0 -303 57q-105 45 -185 119.5t-128 167.5 t-71.5 196.5t-23.5 217.5zM246 709q0 -27 1 -50t6.5 -68t15.5 -84.5t30.5 -90t48 -92t71.5 -84.5t99 -74q138 -80 330 -80q114 0 227 37v1204q-2 0 -48 7t-94 11.5t-95 4.5q-164 0 -274 -51t-173 -123q-60 -69 -102.5 -186.5t-42.5 -280.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1835" d="M90 481q0 63 11.5 127.5t43.5 137t80.5 127.5t131 91.5t186.5 36.5q46 0 89.5 -7.5t100.5 -29t106 -71t79 -123.5q23 45 55.5 83.5t78.5 73t110 54.5t138 20q176 0 289 -102q68 -61 114 -163t46 -249h-760q-2 -12 -2 -51q0 -49 11 -97.5t35.5 -95.5t60.5 -82t91 -57 t122 -22q24 0 48 2.5t64.5 15t75 33.5t72.5 62.5t65 97.5l117 -31q-20 -44 -42 -79.5t-60 -76t-83 -67.5t-111.5 -45.5t-145.5 -18.5q-71 0 -132 17t-100 40t-72.5 58t-50.5 61t-34 58q-40 -111 -146.5 -172.5t-236.5 -61.5q-199 0 -322 141t-123 365zM221 494 q0 -104 25 -182.5t60.5 -120.5t82.5 -68.5t82 -33.5t68 -7q70 0 126 23t92 61t59.5 91t33.5 108.5t10 117.5q0 52 -7.5 103t-29 108.5t-54.5 100.5t-90.5 71.5t-131.5 28.5q-145 0 -235.5 -105t-90.5 -296zM989 590h621q-1 37 -10.5 76t-33 80t-57 73.5t-86 53t-116.5 20.5 q-134 0 -215.5 -83.5t-102.5 -219.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1280" d="M20 1446h162l447 -719l465 719h166l-566 -848v-598h-135v598zM348 1606v198h137v-198h-137zM797 1606v198h137v-198h-137z" />
<glyph unicode="&#x2c6;" horiz-adv-x="555" d="M-18 1143l262 282h53l276 -282h-104l-201 133l-182 -133h-104z" />
<glyph unicode="&#x2dc;" horiz-adv-x="555" d="M-23 1208q62 181 177 181q58 0 153 -58q58 -37 96 -37q20 0 36 8t27 23.5t17 27t13 29.5l84 -20q-31 -102 -70.5 -143t-108.5 -41q-55 0 -174 65q-59 33 -82 33q-27 0 -46 -22t-38 -68z" />
<glyph unicode="&#x2000;" horiz-adv-x="927" />
<glyph unicode="&#x2001;" horiz-adv-x="1855" />
<glyph unicode="&#x2002;" horiz-adv-x="927" />
<glyph unicode="&#x2003;" horiz-adv-x="1855" />
<glyph unicode="&#x2004;" horiz-adv-x="618" />
<glyph unicode="&#x2005;" horiz-adv-x="463" />
<glyph unicode="&#x2006;" horiz-adv-x="309" />
<glyph unicode="&#x2007;" horiz-adv-x="309" />
<glyph unicode="&#x2008;" horiz-adv-x="231" />
<glyph unicode="&#x2009;" horiz-adv-x="371" />
<glyph unicode="&#x200a;" horiz-adv-x="103" />
<glyph unicode="&#x2010;" horiz-adv-x="698" d="M78 541v123h543v-123h-543z" />
<glyph unicode="&#x2011;" horiz-adv-x="698" d="M78 541v123h543v-123h-543z" />
<glyph unicode="&#x2012;" horiz-adv-x="698" d="M78 541v123h543v-123h-543z" />
<glyph unicode="&#x2013;" horiz-adv-x="1157" d="M78 541v123h1001v-123h-1001z" />
<glyph unicode="&#x2014;" horiz-adv-x="1726" d="M78 541v123h1571v-123h-1571z" />
<glyph unicode="&#x2018;" horiz-adv-x="342" d="M90 885v190q0 127 17 205t77 166l66 -45q-46 -78 -62 -133t-16 -144h78v-239h-160z" />
<glyph unicode="&#x2019;" horiz-adv-x="342" d="M90 932q47 76 62.5 131t15.5 145h-78v238h162v-201q0 -124 -17 -196.5t-77 -163.5z" />
<glyph unicode="&#x201a;" horiz-adv-x="342" d="M90 0v238h162v-201q0 -125 -17 -198.5t-77 -162.5l-68 48q47 76 62.5 131t15.5 145h-78z" />
<glyph unicode="&#x201c;" horiz-adv-x="598" d="M90 885v190q0 127 17 204t77 167l68 -45q-80 -100 -80 -277h80v-239h-162zM346 885v227q0 105 19.5 179t74.5 155l68 -45q-47 -76 -62.5 -131t-15.5 -146h78v-239h-162z" />
<glyph unicode="&#x201d;" horiz-adv-x="598" d="M90 932q44 65 61 127.5t17 148.5h-78v238h162v-246q0 -101 -19.5 -166.5t-74.5 -148.5zM346 932q44 65 61 126t17 150h-78v238h162v-246q0 -101 -19.5 -166.5t-74.5 -148.5z" />
<glyph unicode="&#x201e;" horiz-adv-x="598" d="M90 0v238h162v-246q0 -101 -19.5 -167.5t-74.5 -148.5l-68 48q44 65 61 127.5t17 148.5h-78zM346 0v238h162v-246q0 -101 -19.5 -167.5t-74.5 -148.5l-68 48q44 65 61 126t17 150h-78z" />
<glyph unicode="&#x2022;" horiz-adv-x="681" d="M117 506v446h450v-446h-450z" />
<glyph unicode="&#x2026;" horiz-adv-x="2048" d="M256 0v168h168v-168h-168zM938 0v168h170v-168h-170zM1622 0v168h170v-168h-170z" />
<glyph unicode="&#x202f;" horiz-adv-x="371" />
<glyph unicode="&#x2039;" horiz-adv-x="512" d="M88 633l244 379l96 -62l-203 -317l203 -289l-96 -63z" />
<glyph unicode="&#x203a;" horiz-adv-x="512" d="M84 342l203 317l-203 289l96 64l244 -353l-244 -378z" />
<glyph unicode="&#x205f;" horiz-adv-x="463" />
<glyph unicode="&#x20ac;" horiz-adv-x="1298" d="M43 555l41 109h106q0 69 5 120h-152l39 109h125q33 253 196.5 404t417.5 151q285 0 436 -178l-55 -135q-122 196 -401 196q-98 0 -177.5 -33t-134.5 -93t-90.5 -138.5t-52.5 -173.5h766l-39 -109h-737q-4 -20 -4 -59q0 -41 2 -61h692l-39 -109h-645q26 -212 149 -342.5 t330 -130.5q109 0 217.5 43t173.5 121v-158q-96 -69 -188.5 -97t-214.5 -28q-263 0 -420.5 161.5t-189.5 430.5h-156z" />
<glyph unicode="&#x2122;" horiz-adv-x="1398" d="M45 1362v84h504v-84h-201v-596h-98v596h-205zM625 766v680h137l176 -557l174 557h139v-680h-94l4 584l-182 -584h-86l-182 582q8 -549 8 -582h-94z" />
<glyph unicode="&#x25fc;" horiz-adv-x="972" d="M0 0v973h973v-973h-973z" />
<hkern u1="&#x2c;" u2="w" k="84" />
<hkern u1="&#x2c;" u2="v" k="84" />
<hkern u1="&#x2c;" u2="&#x37;" k="127" />
<hkern u1="&#x2c;" u2="&#x2a;" k="211" />
<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="S" k="-86" />
<hkern u1="&#x2d;" u2="Q" k="-86" />
<hkern u1="&#x2d;" u2="G" k="-86" />
<hkern u1="&#x2e;" u2="w" k="84" />
<hkern u1="&#x2e;" u2="v" k="84" />
<hkern u1="&#x2e;" u2="&#x37;" k="127" />
<hkern u1="&#x2e;" u2="&#x2a;" k="211" />
<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="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="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="&#x34;" 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="&#x31;" k="143" />
<hkern u1="&#x31;" u2="&#x39;" k="188" />
<hkern u1="&#x31;" u2="&#x38;" k="201" />
<hkern u1="&#x31;" u2="&#x37;" k="233" />
<hkern u1="&#x31;" u2="&#x36;" k="221" />
<hkern u1="&#x31;" u2="&#x35;" k="217" />
<hkern u1="&#x31;" u2="&#x34;" k="225" />
<hkern u1="&#x31;" u2="&#x33;" k="197" />
<hkern u1="&#x31;" u2="&#x32;" k="225" />
<hkern u1="&#x31;" u2="&#x31;" k="434" />
<hkern u1="&#x31;" u2="&#x30;" k="143" />
<hkern u1="&#x32;" u2="&#x31;" k="74" />
<hkern u1="&#x33;" u2="&#x39;" k="-43" />
<hkern u1="&#x33;" u2="&#x38;" k="-43" />
<hkern u1="&#x33;" u2="&#x36;" k="-43" />
<hkern u1="&#x33;" u2="&#x31;" k="106" />
<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="&#x31;" k="217" />
<hkern u1="&#x34;" u2="&#x30;" k="-43" />
<hkern u1="&#x35;" u2="&#x37;" k="84" />
<hkern u1="&#x35;" u2="&#x31;" k="270" />
<hkern u1="&#x36;" u2="&#x39;" k="-43" />
<hkern u1="&#x36;" u2="&#x38;" k="-43" />
<hkern u1="&#x36;" u2="&#x37;" k="41" />
<hkern u1="&#x36;" u2="&#x36;" k="-43" />
<hkern u1="&#x36;" u2="&#x31;" k="53" />
<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="127" />
<hkern u1="&#x37;" u2="&#x38;" k="127" />
<hkern u1="&#x37;" u2="&#x37;" k="84" />
<hkern u1="&#x37;" u2="&#x36;" k="127" />
<hkern u1="&#x37;" u2="&#x35;" k="84" />
<hkern u1="&#x37;" u2="&#x34;" k="254" />
<hkern u1="&#x37;" u2="&#x33;" k="127" />
<hkern u1="&#x37;" u2="&#x32;" k="127" />
<hkern u1="&#x37;" u2="&#x31;" k="164" />
<hkern u1="&#x37;" u2="&#x30;" k="127" />
<hkern u1="&#x37;" u2="&#x2f;" k="254" />
<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="&#x31;" k="82" />
<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="&#x31;" k="111" />
<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="t" k="41" />
<hkern u1="A" u2="f" k="41" />
<hkern u1="A" u2="Y" k="211" />
<hkern u1="A" u2="W" k="84" />
<hkern u1="A" u2="V" k="84" />
<hkern u1="A" u2="T" k="211" />
<hkern u1="A" u2="S" k="41" />
<hkern u1="A" u2="Q" k="41" />
<hkern u1="A" u2="G" k="41" />
<hkern u1="A" u2="&#x3f;" k="127" />
<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="-43" />
<hkern u1="B" u2="&#xd6;" k="-43" />
<hkern u1="B" u2="&#xd5;" k="-43" />
<hkern u1="B" u2="&#xd4;" k="-43" />
<hkern u1="B" u2="&#xd3;" k="-43" />
<hkern u1="B" u2="&#xd2;" k="-43" />
<hkern u1="B" u2="&#xc7;" k="-43" />
<hkern u1="B" u2="Z" k="-86" />
<hkern u1="B" u2="Y" k="84" />
<hkern u1="B" u2="X" k="41" />
<hkern u1="B" u2="U" k="-86" />
<hkern u1="B" u2="T" k="41" />
<hkern u1="B" u2="S" k="-43" />
<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="-43" />
<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="-43" />
<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="-43" />
<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="X" k="84" />
<hkern u1="C" u2="W" k="41" />
<hkern u1="C" u2="V" k="41" />
<hkern u1="C" u2="T" k="41" />
<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="84" />
<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="R" k="-86" />
<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="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="84" />
<hkern u1="F" u2="&#xff;" k="41" />
<hkern u1="F" u2="&#xfd;" k="41" />
<hkern u1="F" u2="&#xfc;" k="41" />
<hkern u1="F" u2="&#xfb;" k="41" />
<hkern u1="F" u2="&#xfa;" k="41" />
<hkern u1="F" u2="&#xf9;" k="41" />
<hkern u1="F" u2="&#xf8;" k="84" />
<hkern u1="F" u2="&#xf6;" k="84" />
<hkern u1="F" u2="&#xf5;" k="84" />
<hkern u1="F" u2="&#xf4;" k="84" />
<hkern u1="F" u2="&#xf3;" k="84" />
<hkern u1="F" u2="&#xf2;" k="84" />
<hkern u1="F" u2="&#xf1;" k="41" />
<hkern u1="F" u2="&#xeb;" k="84" />
<hkern u1="F" u2="&#xea;" k="84" />
<hkern u1="F" u2="&#xe9;" k="84" />
<hkern u1="F" u2="&#xe8;" k="84" />
<hkern u1="F" u2="&#xe7;" k="84" />
<hkern u1="F" u2="&#xe5;" k="41" />
<hkern u1="F" u2="&#xe4;" k="41" />
<hkern u1="F" u2="&#xe3;" k="41" />
<hkern u1="F" u2="&#xe2;" k="41" />
<hkern u1="F" u2="&#xe1;" k="41" />
<hkern u1="F" u2="&#xe0;" 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="168" />
<hkern u1="F" u2="&#xc5;" k="168" />
<hkern u1="F" u2="&#xc4;" k="168" />
<hkern u1="F" u2="&#xc3;" k="168" />
<hkern u1="F" u2="&#xc2;" k="168" />
<hkern u1="F" u2="&#xc1;" k="168" />
<hkern u1="F" u2="&#xc0;" k="168" />
<hkern u1="F" u2="z" k="41" />
<hkern u1="F" u2="y" k="41" />
<hkern u1="F" u2="x" k="41" />
<hkern u1="F" u2="w" k="41" />
<hkern u1="F" u2="v" k="41" />
<hkern u1="F" u2="u" k="41" />
<hkern u1="F" u2="s" k="41" />
<hkern u1="F" u2="r" k="41" />
<hkern u1="F" u2="q" k="84" />
<hkern u1="F" u2="p" k="41" />
<hkern u1="F" u2="o" k="84" />
<hkern u1="F" u2="n" k="41" />
<hkern u1="F" u2="m" k="41" />
<hkern u1="F" u2="g" k="84" />
<hkern u1="F" u2="e" k="84" />
<hkern u1="F" u2="d" k="84" />
<hkern u1="F" u2="c" k="84" />
<hkern u1="F" u2="a" k="41" />
<hkern u1="F" u2="Z" k="-43" />
<hkern u1="F" u2="X" k="41" />
<hkern u1="F" u2="U" k="-43" />
<hkern u1="F" u2="R" 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="254" />
<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="168" />
<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="-43" />
<hkern u1="G" u2="&#xd6;" k="-43" />
<hkern u1="G" u2="&#xd5;" k="-43" />
<hkern u1="G" u2="&#xd4;" k="-43" />
<hkern u1="G" u2="&#xd3;" k="-43" />
<hkern u1="G" u2="&#xd2;" k="-43" />
<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="U" k="-86" />
<hkern u1="G" u2="T" k="84" />
<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="-43" />
<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="-86" />
<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="-86" />
<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="&#xc6;" k="41" />
<hkern u1="J" u2="&#xc5;" k="41" />
<hkern u1="J" u2="&#xc4;" k="41" />
<hkern u1="J" u2="&#xc3;" k="41" />
<hkern u1="J" u2="&#xc2;" k="41" />
<hkern u1="J" u2="&#xc1;" k="41" />
<hkern u1="J" u2="&#xc0;" k="41" />
<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="A" k="41" />
<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="&#xe5;" k="41" />
<hkern u1="K" u2="&#xe4;" k="41" />
<hkern u1="K" u2="&#xe3;" k="41" />
<hkern u1="K" u2="&#xe2;" k="41" />
<hkern u1="K" u2="&#xe1;" k="41" />
<hkern u1="K" u2="&#xe0;" 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="a" k="41" />
<hkern u1="K" u2="Z" k="-43" />
<hkern u1="K" u2="Y" k="41" />
<hkern u1="K" u2="W" k="41" />
<hkern u1="K" u2="V" k="41" />
<hkern u1="K" u2="U" k="-43" />
<hkern u1="K" u2="T" k="41" />
<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="J" k="41" />
<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="q" k="41" />
<hkern u1="L" u2="g" k="41" />
<hkern u1="L" u2="d" k="41" />
<hkern u1="L" u2="Z" k="41" />
<hkern u1="L" u2="Y" k="340" />
<hkern u1="L" u2="X" k="41" />
<hkern u1="L" u2="W" k="254" />
<hkern u1="L" u2="V" k="297" />
<hkern u1="L" u2="T" k="297" />
<hkern u1="L" u2="S" k="127" />
<hkern u1="L" u2="R" k="41" />
<hkern u1="L" u2="Q" k="127" />
<hkern u1="L" u2="P" k="41" />
<hkern u1="L" u2="N" k="41" />
<hkern u1="L" u2="M" k="41" />
<hkern u1="L" u2="L" k="41" />
<hkern u1="L" u2="K" k="41" />
<hkern u1="L" u2="I" k="41" />
<hkern u1="L" u2="H" k="41" />
<hkern u1="L" u2="G" k="127" />
<hkern u1="L" u2="F" k="41" />
<hkern u1="L" u2="E" k="41" />
<hkern u1="L" u2="D" k="41" />
<hkern u1="L" u2="B" k="41" />
<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="-86" />
<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="-86" />
<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="Y" k="84" />
<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="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="41" />
<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="84" />
<hkern u1="P" u2="&#xfc;" k="41" />
<hkern u1="P" u2="&#xfb;" k="41" />
<hkern u1="P" u2="&#xfa;" k="41" />
<hkern u1="P" u2="&#xf9;" k="41" />
<hkern u1="P" u2="&#xf8;" k="84" />
<hkern u1="P" u2="&#xf6;" k="84" />
<hkern u1="P" u2="&#xf5;" k="84" />
<hkern u1="P" u2="&#xf4;" k="84" />
<hkern u1="P" u2="&#xf3;" k="84" />
<hkern u1="P" u2="&#xf2;" k="84" />
<hkern u1="P" u2="&#xf1;" k="41" />
<hkern u1="P" u2="&#xeb;" k="84" />
<hkern u1="P" u2="&#xea;" k="84" />
<hkern u1="P" u2="&#xe9;" k="84" />
<hkern u1="P" u2="&#xe8;" k="84" />
<hkern u1="P" u2="&#xe7;" k="84" />
<hkern u1="P" u2="&#xe5;" k="41" />
<hkern u1="P" u2="&#xe4;" k="41" />
<hkern u1="P" u2="&#xe3;" k="41" />
<hkern u1="P" u2="&#xe2;" k="41" />
<hkern u1="P" u2="&#xe1;" k="41" />
<hkern u1="P" u2="&#xe0;" 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="&#xc6;" k="168" />
<hkern u1="P" u2="&#xc5;" k="168" />
<hkern u1="P" u2="&#xc4;" k="168" />
<hkern u1="P" u2="&#xc3;" k="168" />
<hkern u1="P" u2="&#xc2;" k="168" />
<hkern u1="P" u2="&#xc1;" k="168" />
<hkern u1="P" u2="&#xc0;" k="168" />
<hkern u1="P" u2="z" k="41" />
<hkern u1="P" u2="x" k="41" />
<hkern u1="P" u2="w" k="41" />
<hkern u1="P" u2="v" k="41" />
<hkern u1="P" u2="u" k="41" />
<hkern u1="P" u2="s" k="41" />
<hkern u1="P" u2="r" k="41" />
<hkern u1="P" u2="q" k="84" />
<hkern u1="P" u2="p" k="41" />
<hkern u1="P" u2="o" k="84" />
<hkern u1="P" u2="n" k="41" />
<hkern u1="P" u2="m" k="41" />
<hkern u1="P" u2="g" k="84" />
<hkern u1="P" u2="e" k="84" />
<hkern u1="P" u2="d" k="84" />
<hkern u1="P" u2="c" k="84" />
<hkern u1="P" u2="a" k="41" />
<hkern u1="P" u2="Z" k="84" />
<hkern u1="P" u2="Y" k="41" />
<hkern u1="P" u2="X" k="41" />
<hkern u1="P" u2="U" k="-43" />
<hkern u1="P" u2="R" k="-43" />
<hkern u1="P" u2="P" 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="254" />
<hkern u1="P" u2="I" k="-43" />
<hkern u1="P" u2="H" 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="B" k="-43" />
<hkern u1="P" u2="A" k="168" />
<hkern u1="P" u2="&#x2e;" k="211" />
<hkern u1="P" u2="&#x2c;" k="211" />
<hkern u1="Q" u2="&#x2014;" k="-86" />
<hkern u1="Q" u2="&#x2013;" k="-86" />
<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="&#xad;" k="-86" />
<hkern u1="Q" u2="U" k="-43" />
<hkern u1="Q" u2="&#x2d;" k="-86" />
<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="&#xc6;" k="-43" />
<hkern u1="R" u2="&#xc5;" k="-43" />
<hkern u1="R" u2="&#xc4;" k="-43" />
<hkern u1="R" u2="&#xc3;" k="-43" />
<hkern u1="R" u2="&#xc2;" k="-43" />
<hkern u1="R" u2="&#xc1;" k="-43" />
<hkern u1="R" u2="&#xc0;" k="-43" />
<hkern u1="R" u2="Z" k="-86" />
<hkern u1="R" u2="Y" k="41" />
<hkern u1="R" u2="X" k="-43" />
<hkern u1="R" u2="U" k="-86" />
<hkern u1="R" u2="S" k="-43" />
<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="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="A" k="-43" />
<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="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="-43" />
<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="127" />
<hkern u1="T" u2="&#x2013;" k="127" />
<hkern u1="T" u2="&#x153;" k="254" />
<hkern u1="T" u2="&#xff;" k="297" />
<hkern u1="T" u2="&#xfd;" k="297" />
<hkern u1="T" u2="&#xfc;" k="254" />
<hkern u1="T" u2="&#xfb;" k="254" />
<hkern u1="T" u2="&#xfa;" k="254" />
<hkern u1="T" u2="&#xf9;" k="254" />
<hkern u1="T" u2="&#xf8;" k="254" />
<hkern u1="T" u2="&#xf6;" k="254" />
<hkern u1="T" u2="&#xf5;" k="254" />
<hkern u1="T" u2="&#xf4;" k="254" />
<hkern u1="T" u2="&#xf3;" k="254" />
<hkern u1="T" u2="&#xf2;" k="254" />
<hkern u1="T" u2="&#xf1;" k="211" />
<hkern u1="T" u2="&#xeb;" k="254" />
<hkern u1="T" u2="&#xea;" k="254" />
<hkern u1="T" u2="&#xe9;" k="254" />
<hkern u1="T" u2="&#xe8;" k="254" />
<hkern u1="T" u2="&#xe7;" k="254" />
<hkern u1="T" u2="&#xe5;" k="254" />
<hkern u1="T" u2="&#xe4;" k="254" />
<hkern u1="T" u2="&#xe3;" k="254" />
<hkern u1="T" u2="&#xe2;" k="254" />
<hkern u1="T" u2="&#xe1;" k="254" />
<hkern u1="T" u2="&#xe0;" k="254" />
<hkern u1="T" u2="&#xd8;" k="84" />
<hkern u1="T" u2="&#xd6;" k="84" />
<hkern u1="T" u2="&#xd5;" k="84" />
<hkern u1="T" u2="&#xd4;" k="84" />
<hkern u1="T" u2="&#xd3;" k="84" />
<hkern u1="T" u2="&#xd2;" k="84" />
<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="127" />
<hkern u1="T" u2="z" k="211" />
<hkern u1="T" u2="y" k="297" />
<hkern u1="T" u2="x" k="211" />
<hkern u1="T" u2="w" k="211" />
<hkern u1="T" u2="v" k="211" />
<hkern u1="T" u2="u" k="254" />
<hkern u1="T" u2="t" k="41" />
<hkern u1="T" u2="s" k="211" />
<hkern u1="T" u2="r" k="211" />
<hkern u1="T" u2="q" k="254" />
<hkern u1="T" u2="p" k="211" />
<hkern u1="T" u2="o" k="254" />
<hkern u1="T" u2="n" k="211" />
<hkern u1="T" u2="m" k="211" />
<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="254" />
<hkern u1="T" u2="f" k="41" />
<hkern u1="T" u2="e" k="254" />
<hkern u1="T" u2="d" k="254" />
<hkern u1="T" u2="c" k="254" />
<hkern u1="T" u2="b" k="41" />
<hkern u1="T" u2="a" k="254" />
<hkern u1="T" u2="X" k="41" />
<hkern u1="T" u2="S" k="84" />
<hkern u1="T" u2="Q" k="84" />
<hkern u1="T" u2="O" k="84" />
<hkern u1="T" u2="J" k="297" />
<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="&#x2e;" k="168" />
<hkern u1="T" u2="&#x2d;" k="127" />
<hkern u1="T" u2="&#x2c;" k="168" />
<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="168" />
<hkern u1="V" u2="&#xe4;" k="168" />
<hkern u1="V" u2="&#xe3;" k="168" />
<hkern u1="V" u2="&#xe2;" k="168" />
<hkern u1="V" u2="&#xe1;" k="168" />
<hkern u1="V" u2="&#xe0;" k="168" />
<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="168" />
<hkern u1="V" u2="X" k="41" />
<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="84" />
<hkern u1="W" u2="&#xff;" k="84" />
<hkern u1="W" u2="&#xfd;" k="84" />
<hkern u1="W" u2="&#xfc;" k="84" />
<hkern u1="W" u2="&#xfb;" k="84" />
<hkern u1="W" u2="&#xfa;" k="84" />
<hkern u1="W" u2="&#xf9;" k="84" />
<hkern u1="W" u2="&#xf8;" k="84" />
<hkern u1="W" u2="&#xf6;" k="84" />
<hkern u1="W" u2="&#xf5;" k="84" />
<hkern u1="W" u2="&#xf4;" k="84" />
<hkern u1="W" u2="&#xf3;" k="84" />
<hkern u1="W" u2="&#xf2;" k="84" />
<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="&#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="84" />
<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="84" />
<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="X" k="41" />
<hkern u1="W" u2="Q" k="41" />
<hkern u1="W" u2="J" k="168" />
<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="&#xe5;" k="41" />
<hkern u1="X" u2="&#xe4;" k="41" />
<hkern u1="X" u2="&#xe3;" k="41" />
<hkern u1="X" u2="&#xe2;" k="41" />
<hkern u1="X" u2="&#xe1;" k="41" />
<hkern u1="X" u2="&#xe0;" k="41" />
<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="a" k="41" />
<hkern u1="X" u2="Z" k="-43" />
<hkern u1="X" u2="Y" k="41" />
<hkern u1="X" u2="W" k="41" />
<hkern u1="X" u2="V" k="41" />
<hkern u1="X" u2="T" k="41" />
<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="J" k="41" />
<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="127" />
<hkern u1="Y" u2="&#x2013;" k="127" />
<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="211" />
<hkern u1="Y" u2="&#xfb;" k="211" />
<hkern u1="Y" u2="&#xfa;" k="211" />
<hkern u1="Y" u2="&#xf9;" k="211" />
<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="211" />
<hkern u1="Y" u2="&#xeb;" k="297" />
<hkern u1="Y" u2="&#xea;" k="297" />
<hkern u1="Y" u2="&#xe9;" k="297" />
<hkern u1="Y" u2="&#xe8;" k="297" />
<hkern u1="Y" u2="&#xe7;" k="254" />
<hkern u1="Y" u2="&#xe5;" k="254" />
<hkern u1="Y" u2="&#xe4;" k="254" />
<hkern u1="Y" u2="&#xe3;" k="254" />
<hkern u1="Y" u2="&#xe2;" k="254" />
<hkern u1="Y" u2="&#xe1;" k="254" />
<hkern u1="Y" u2="&#xe0;" k="254" />
<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="127" />
<hkern u1="Y" u2="z" k="211" />
<hkern u1="Y" u2="y" k="211" />
<hkern u1="Y" u2="x" k="211" />
<hkern u1="Y" u2="w" k="211" />
<hkern u1="Y" u2="v" k="211" />
<hkern u1="Y" u2="u" k="211" />
<hkern u1="Y" u2="t" k="41" />
<hkern u1="Y" u2="s" k="211" />
<hkern u1="Y" u2="r" k="211" />
<hkern u1="Y" u2="q" k="254" />
<hkern u1="Y" u2="p" k="211" />
<hkern u1="Y" u2="o" k="254" />
<hkern u1="Y" u2="n" k="211" />
<hkern u1="Y" u2="m" k="211" />
<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="254" />
<hkern u1="Y" u2="f" k="41" />
<hkern u1="Y" u2="e" k="297" />
<hkern u1="Y" u2="d" k="254" />
<hkern u1="Y" u2="c" k="254" />
<hkern u1="Y" u2="b" k="41" />
<hkern u1="Y" u2="a" k="254" />
<hkern u1="Y" u2="X" k="41" />
<hkern u1="Y" u2="S" k="160" />
<hkern u1="Y" u2="Q" k="84" />
<hkern u1="Y" u2="O" k="84" />
<hkern u1="Y" u2="J" k="297" />
<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="&#x2e;" k="168" />
<hkern u1="Y" u2="&#x2d;" k="127" />
<hkern u1="Y" u2="&#x2c;" k="168" />
<hkern u1="Z" u2="Z" k="-86" />
<hkern u1="Z" u2="X" k="-43" />
<hkern u1="Z" u2="W" k="-43" />
<hkern u1="Z" u2="V" 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="e" u2="x" 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="e" k="41" />
<hkern u1="o" u2="x" k="41" />
<hkern u1="r" u2="&#x201d;" k="-82" />
<hkern u1="r" u2="&#x2019;" k="-82" />
<hkern u1="r" u2="&#x2e;" k="84" />
<hkern u1="r" u2="&#x2c;" k="84" />
<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="&#xad;" u2="Y" k="127" />
<hkern u1="&#xad;" u2="X" k="127" />
<hkern u1="&#xad;" u2="T" k="127" />
<hkern u1="&#xad;" u2="S" k="-86" />
<hkern u1="&#xad;" u2="Q" k="-86" />
<hkern u1="&#xad;" u2="G" k="-86" />
<hkern u1="&#xc0;" u2="w" k="41" />
<hkern u1="&#xc0;" u2="v" k="41" />
<hkern u1="&#xc0;" u2="t" k="41" />
<hkern u1="&#xc0;" u2="f" k="41" />
<hkern u1="&#xc0;" u2="Y" k="211" />
<hkern u1="&#xc0;" u2="W" k="84" />
<hkern u1="&#xc0;" u2="V" k="84" />
<hkern u1="&#xc0;" u2="T" k="211" />
<hkern u1="&#xc0;" u2="S" k="41" />
<hkern u1="&#xc0;" u2="Q" k="41" />
<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="t" k="41" />
<hkern u1="&#xc1;" u2="f" k="41" />
<hkern u1="&#xc1;" u2="Y" k="211" />
<hkern u1="&#xc1;" u2="W" k="84" />
<hkern u1="&#xc1;" u2="V" k="84" />
<hkern u1="&#xc1;" u2="T" k="211" />
<hkern u1="&#xc1;" u2="S" k="41" />
<hkern u1="&#xc1;" u2="Q" k="41" />
<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="t" k="41" />
<hkern u1="&#xc2;" u2="f" k="41" />
<hkern u1="&#xc2;" u2="Y" k="211" />
<hkern u1="&#xc2;" u2="W" k="84" />
<hkern u1="&#xc2;" u2="V" k="84" />
<hkern u1="&#xc2;" u2="T" k="211" />
<hkern u1="&#xc2;" u2="S" k="41" />
<hkern u1="&#xc2;" u2="Q" k="41" />
<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="t" k="41" />
<hkern u1="&#xc3;" u2="f" k="41" />
<hkern u1="&#xc3;" u2="Y" k="211" />
<hkern u1="&#xc3;" u2="W" k="84" />
<hkern u1="&#xc3;" u2="V" k="84" />
<hkern u1="&#xc3;" u2="T" k="211" />
<hkern u1="&#xc3;" u2="S" k="41" />
<hkern u1="&#xc3;" u2="Q" k="41" />
<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="t" k="41" />
<hkern u1="&#xc4;" u2="f" k="41" />
<hkern u1="&#xc4;" u2="Y" k="211" />
<hkern u1="&#xc4;" u2="W" k="84" />
<hkern u1="&#xc4;" u2="V" k="84" />
<hkern u1="&#xc4;" u2="T" k="211" />
<hkern u1="&#xc4;" u2="S" k="41" />
<hkern u1="&#xc4;" u2="Q" k="41" />
<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="t" k="41" />
<hkern u1="&#xc5;" u2="f" k="41" />
<hkern u1="&#xc5;" u2="Y" k="211" />
<hkern u1="&#xc5;" u2="W" k="84" />
<hkern u1="&#xc5;" u2="V" k="84" />
<hkern u1="&#xc5;" u2="T" k="211" />
<hkern u1="&#xc5;" u2="S" k="41" />
<hkern u1="&#xc5;" u2="Q" k="41" />
<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="R" k="-86" />
<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="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="X" k="84" />
<hkern u1="&#xc7;" u2="W" k="41" />
<hkern u1="&#xc7;" u2="V" k="41" />
<hkern u1="&#xc7;" u2="T" k="41" />
<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="R" k="-86" />
<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="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="R" k="-86" />
<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="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="R" k="-86" />
<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="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="R" k="-86" />
<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="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="84" />
<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="-86" />
<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="Y" k="84" />
<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="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="41" />
<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="Y" k="84" />
<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="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="41" />
<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="Y" k="84" />
<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="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="41" />
<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="Y" k="84" />
<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="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="41" />
<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="Y" k="84" />
<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="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="41" />
<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="Y" k="84" />
<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="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="41" />
<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="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="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="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="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="&#xe8;" u2="x" k="41" />
<hkern u1="&#xe9;" u2="x" k="41" />
<hkern u1="&#xea;" u2="x" k="41" />
<hkern u1="&#xeb;" u2="x" 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="R" k="-86" />
<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="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="S" k="-86" />
<hkern u1="&#x2013;" u2="Q" k="-86" />
<hkern u1="&#x2013;" u2="G" k="-86" />
<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="S" k="-86" />
<hkern u1="&#x2014;" u2="Q" k="-86" />
<hkern u1="&#x2014;" u2="G" k="-86" />
<hkern u1="&#x2018;" u2="J" k="254" />
<hkern u1="&#x2019;" u2="s" k="80" />
<hkern u1="&#x201c;" u2="J" k="254" />
<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="C,Ccedilla" 	g2="hyphen,uni00AD,endash,emdash" 	k="-86" />
<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="D,Eth" 	g2="hyphen,uni00AD,endash,emdash" 	k="-86" />
<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="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="84" />
<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="168" />
<hkern g1="L" 	g2="c,ccedilla" 	k="41" />
<hkern g1="L" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="41" />
<hkern g1="L" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="41" />
<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="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="hyphen,uni00AD,endash,emdash" 	k="-86" />
<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="hyphen,uni00AD,endash,emdash" 	k="-86" />
<hkern g1="S" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	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="84" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	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="41" />
<hkern g1="b,thorn" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-43" />
<hkern g1="y,yacute,ydieresis" 	g2="comma,period" 	k="127" />
<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="C,Ccedilla" 	k="-86" />
<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-86" />
<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="168" />
<hkern g1="comma,period" 	g2="quoteright,quotedblright" 	k="211" />
<hkern g1="comma,period" 	g2="y,yacute,ydieresis" 	k="84" />
</font>
</defs></svg>