summaryrefslogtreecommitdiff
blob: c8635f503139117769393ef2391fd1f075a971ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
<?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="acorderegular" horiz-adv-x="1024" >
<font-face units-per-em="2048" ascent="1597" descent="-451" />
<missing-glyph horiz-adv-x="450" />
<glyph unicode="&#xfb01;" horiz-adv-x="1206" d="M53 909v135h164v160q0 145 89.5 229.5t254.5 84.5q85 0 152 -15l-27 -147q-62 16 -125 16q-95 0 -132.5 -44t-37.5 -138v-146h653v-1044h-174v909h-479v-909h-174v909h-164zM844 1362q0 50 33 82.5t81 32.5t81.5 -32.5t33.5 -82.5q0 -47 -34 -81t-81 -34t-80.5 34 t-33.5 81z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1214" d="M53 909v135h164v160q0 144 107.5 229t298.5 85q118 0 270 -31l154 12v-1102q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -78 -10q-107 0 -107 121v1222q-125 39 -249 39q-122 0 -177 -45.5t-55 -136.5v-146h314v-135h-314v-909h-174v909h-164z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1859" d="M53 909v135h164v160q0 145 89.5 229.5t254.5 84.5q105 0 211 -29l-27 -148q-88 31 -184 31q-95 0 -132.5 -44t-37.5 -138v-146h479v160q0 145 89.5 229.5t254.5 84.5q84 0 152 -15l-27 -147q-62 16 -125 16q-95 0 -132.5 -44t-37.5 -138v-146h654v-1044h-174v909h-480 v-909h-174v909h-479v-909h-174v909h-164zM1497 1362q0 50 33.5 82.5t81.5 32.5t81 -32.5t33 -82.5q0 -47 -33.5 -81t-80.5 -34t-81 34t-34 81z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1867" d="M53 909v135h164v160q0 145 89.5 229.5t254.5 84.5q105 0 211 -29l-27 -148q-88 31 -184 31q-95 0 -132.5 -44t-37.5 -138v-146h479v160q0 144 107.5 229t298.5 85q118 0 270 -31l154 12v-1102q0 -101 2.5 -200t5.5 -148l2 -49q-52 -10 -78 -10q-106 0 -106 121v1222 q-125 39 -250 39q-122 0 -177 -45.5t-55 -136.5v-146h314v-135h-314v-909h-174v909h-479v-909h-174v909h-164z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="2048" />
<glyph unicode=" "  horiz-adv-x="450" />
<glyph unicode="&#x09;" horiz-adv-x="450" />
<glyph unicode="&#xa0;" horiz-adv-x="450" />
<glyph unicode="!" horiz-adv-x="540" d="M147 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87zM170 1475h201l-21 -1106h-160z" />
<glyph unicode="&#x22;" horiz-adv-x="743" d="M109 1516h184l-23 -478h-139zM451 1516h184l-23 -478h-139z" />
<glyph unicode="#" horiz-adv-x="1368" d="M68 428v131h280l41 336h-244v131h261l49 408h159l-49 -408h312l49 408h159l-49 -408h264v-131h-280l-41 -336h244v-131h-260l-52 -428h-159l51 428h-311l-52 -428h-159l51 428h-264zM508 559h311l41 336h-311z" />
<glyph unicode="$" horiz-adv-x="1026" d="M68 53l34 164q176 -98 357 -98h10v551q-37 17 -54.5 25.5t-52 25.5t-52.5 28.5t-47.5 30.5t-45.5 35.5t-38 39.5t-33.5 46.5t-23.5 51.5t-17 60t-5 68q0 144 101 246.5t268 130.5v160h121v-152q179 -4 317 -57l-30 -168q-148 69 -287 74v-510q48 -22 77 -36t72.5 -38.5 t70 -45.5t57.5 -53.5t48.5 -66t29 -78.5t11.5 -96q0 -150 -99 -262t-267 -147v-166h-121v151h-23q-206 0 -378 86zM283 1092q0 -78 48 -131.5t138 -100.5v447q-186 -39 -186 -215zM590 135q88 25 136 86.5t48 153.5q0 81 -47.5 135.5t-136.5 101.5v-477z" />
<glyph unicode="%" horiz-adv-x="1802" d="M68 1075q0 165 96 269t258 104q179 0 266.5 -101t87.5 -272q0 -158 -97 -265.5t-257 -107.5q-168 0 -261 106t-93 267zM219 1075q0 -112 58.5 -178t144.5 -66q93 0 148 65t55 179q0 120 -54 182t-149 62t-149 -62t-54 -182zM371 -72l948 1643l111 -66l-949 -1642z M1024 358q0 165 96 269t258 104q179 0 267 -101t88 -272q0 -158 -97.5 -265t-257.5 -107q-168 0 -261 105.5t-93 266.5zM1176 358q0 -112 58 -177.5t144 -65.5q93 0 148 64.5t55 178.5q0 120 -54 182t-149 62t-148.5 -62t-53.5 -182z" />
<glyph unicode="&#x26;" horiz-adv-x="1523" d="M88 408q0 82 21 150.5t61.5 121t84 89.5t103.5 75q-102 162 -102 295q0 87 30 153t80.5 102.5t108 54t121.5 17.5q133 0 210 -66.5t77 -189.5q0 -215 -293 -397q168 -206 438 -405q83 154 107 329l172 -37q-10 -88 -46 -192t-96 -199q205 -136 351 -188l-78 -154 q-155 61 -377 211q-200 -203 -488 -203q-118 0 -212 35.5t-152.5 96t-89.5 137.5t-31 164zM266 432q0 -138 95 -224.5t243 -86.5q184 0 326 149q-310 232 -488 455q-86 -57 -131 -124.5t-45 -168.5zM428 1157q0 -100 78 -227q112 68 158.5 133.5t46.5 136.5 q0 66 -40.5 101.5t-97.5 35.5q-145 0 -145 -180z" />
<glyph unicode="'" horiz-adv-x="401" d="M109 1516h184l-23 -478h-139z" />
<glyph unicode="(" horiz-adv-x="612" d="M115 537q0 167 24 321.5t67 281.5t84.5 219t94.5 185h164q-49 -89 -90.5 -187t-81.5 -223.5t-63 -273.5t-23 -299q0 -147 23 -293t63 -270t81.5 -221.5t90.5 -186.5h-170q-264 465 -264 947z" />
<glyph unicode=")" horiz-adv-x="610" d="M63 -410q259 472 259 983q0 499 -259 971h170q265 -466 265 -946q0 -167 -24 -321.5t-67.5 -282t-85 -219t-94.5 -185.5h-164z" />
<glyph unicode="*" horiz-adv-x="972" d="M68 1153l49 150l301 -119l-19 332h166l-18 -334l309 118l49 -145l-323 -86l213 -262l-129 -94l-185 280l-180 -280l-125 94l209 258z" />
<glyph unicode="+" horiz-adv-x="1089" d="M68 446v154h393v404h168v-404h393v-154h-393v-405h-168v405h-393z" />
<glyph unicode="," horiz-adv-x="491" d="M68 -221q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36.5t34 -117.5q0 -148 -75 -253.5t-194 -133.5z" />
<glyph unicode="-" horiz-adv-x="794" d="M137 481v156h520v-156h-520z" />
<glyph unicode="." horiz-adv-x="491" d="M123 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode="/" horiz-adv-x="808" d="M68 -414l501 1872h172l-501 -1872h-172z" />
<glyph unicode="0" horiz-adv-x="1185" d="M94 522q0 238 136 392.5t362 154.5q129 0 226 -41.5t155.5 -116t87.5 -172.5t29 -217q0 -148 -59.5 -271.5t-174.5 -199.5t-264 -76q-120 0 -216.5 44t-157 120t-92.5 174t-32 209zM268 522q0 -181 94 -289t230 -108q148 0 235.5 105.5t87.5 291.5q0 196 -86.5 297 t-236.5 101q-151 0 -237.5 -101t-86.5 -297z" />
<glyph unicode="1" horiz-adv-x="714" d="M31 815l344 229h155v-1044h-174v674q0 100 11 186q-47 -41 -88 -63l-191 -107z" />
<glyph unicode="2" horiz-adv-x="999" d="M96 969q155 100 371 100q190 0 291.5 -80.5t101.5 -238.5q0 -46 -11 -91t-24.5 -79t-41.5 -73.5t-45 -61.5t-54 -57.5t-49.5 -46.5t-48.5 -42q-132 -112 -230 -164q110 10 265 10h301v-145h-820v129q230 151 381 287q42 39 69 66t61 69t51.5 85t17.5 87q0 98 -62.5 149.5 t-179.5 51.5q-166 0 -295 -95z" />
<glyph unicode="3" horiz-adv-x="991" d="M49 -328l27 156q144 -66 327 -66q157 0 243.5 75.5t86.5 203.5q0 119 -103 187.5t-278 68.5q-78 0 -139 -6l-14 139q239 0 361 72t122 225q0 197 -252 197q-166 0 -295 -95l-49 140q155 100 371 100q197 0 300 -78.5t103 -236.5q0 -135 -69 -228t-191 -137 q168 -30 239.5 -114t71.5 -230q0 -186 -147 -307t-367 -121q-210 0 -348 55z" />
<glyph unicode="4" horiz-adv-x="1075" d="M49 20v123l389 901h176l-303 -722q-40 -94 -82 -166q82 10 164 10h283v489h174v-489h180v-146h-180v-378h-174v378h-627z" />
<glyph unicode="5" horiz-adv-x="1021" d="M66 -328l26 156q144 -66 328 -66q163 0 251.5 81.5t88.5 215.5q0 135 -76 212t-217 77q-146 0 -250 -82l-113 60l58 718h731v-151h-264q-188 0 -310 12l-32 -403q-2 -25 -11 -70q108 68 254 68q85 0 158 -27t129.5 -77.5t88.5 -130.5t32 -179q0 -212 -147.5 -340.5 t-376.5 -128.5q-210 0 -348 55z" />
<glyph unicode="6" horiz-adv-x="1116" d="M102 610q0 166 34 301t95 230t147.5 160t191 95.5t225.5 30.5q86 0 159 -16l13 -154q-94 25 -170 25q-85 0 -154.5 -16t-133 -56.5t-109 -105.5t-76 -167t-39.5 -237q109 168 356 168q176 0 282.5 -107t106.5 -317q0 -212 -128.5 -340.5t-338.5 -128.5q-227 0 -344 150.5 t-117 484.5zM281 526q9 -203 93.5 -304t209.5 -101q126 0 197 79.5t71 217.5q0 154 -69.5 226.5t-186.5 72.5q-109 0 -188.5 -53t-126.5 -138z" />
<glyph unicode="7" horiz-adv-x="997" d="M51 893v151h914v-114l-232 -414q-105 -190 -214.5 -447.5t-151.5 -426.5h-179q31 158 115 360t221 479q134 273 252 424q-106 -12 -239 -12h-486z" />
<glyph unicode="8" horiz-adv-x="1114" d="M96 348q0 143 81.5 242t201.5 139q-108 62 -168.5 143t-60.5 197q0 105 60 188t156 126.5t207 43.5q195 0 301.5 -89.5t106.5 -250.5q0 -64 -23 -119.5t-63 -96.5t-83.5 -70t-94.5 -51q71 -35 119.5 -67t91.5 -76t64.5 -101.5t21.5 -128.5q0 -78 -31.5 -150t-89.5 -128.5 t-147 -90t-195 -33.5q-214 0 -334.5 99.5t-120.5 273.5zM274 369q0 -116 82.5 -182t202.5 -66q132 0 204.5 63t72.5 172q0 55 -20.5 99.5t-65 80.5t-95.5 63.5t-129 59.5l-12 5q-115 -30 -177.5 -104.5t-62.5 -190.5zM328 1077q0 -41 12.5 -75t31 -58t56 -48.5t69.5 -41 t89 -43.5q102 30 159.5 96.5t57.5 163.5q0 89 -65.5 150t-176.5 61q-106 0 -169.5 -54t-63.5 -151z" />
<glyph unicode="9" horiz-adv-x="1075" d="M59 600q0 212 128.5 340.5t338.5 128.5q227 0 344 -150.5t117 -484.5q0 -206 -51.5 -364t-145 -256t-218.5 -147.5t-277 -49.5q-87 0 -160 16l-12 154q94 -25 170 -25q85 0 153.5 16t132.5 56.5t109 105.5t76 167t41 237q-109 -168 -356 -168q-176 0 -283 107t-107 317z M238 627q0 -154 69.5 -226.5t186.5 -72.5q108 0 187 52t126 136q-9 205 -92.5 306.5t-208.5 101.5q-126 0 -197 -79.5t-71 -217.5z" />
<glyph unicode=":" horiz-adv-x="585" d="M170 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87zM170 801q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode=";" horiz-adv-x="585" d="M115 -221q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36.5t34 -117.5q0 -148 -75 -253.5t-194 -133.5zM170 801q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode="&#x3c;" horiz-adv-x="1091" d="M45 500v98l934 477v-174l-707 -352l707 -346v-180z" />
<glyph unicode="=" horiz-adv-x="1216" d="M131 281v151h954v-151h-954zM131 612v152h954v-152h-954z" />
<glyph unicode="&#x3e;" horiz-adv-x="1091" d="M113 23v174l706 350l-706 348v180l934 -477v-98z" />
<glyph unicode="?" horiz-adv-x="913" d="M57 1386q63 49 164 85t209 36q187 0 296.5 -89t109.5 -251q0 -55 -15.5 -105t-35.5 -85.5t-62 -80.5t-71.5 -71t-88.5 -75q-66 -56 -91.5 -120.5t-25.5 -144.5q0 -71 9 -108l-174 -17q-9 56 -9 134q0 100 43 196t138 166q116 86 158 146t42 153q0 95 -71 148t-181 53 q-148 0 -295 -111zM248 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode="@" horiz-adv-x="1769" d="M61 317q0 201 65 368t181 282.5t280.5 179t360.5 63.5q119 0 226.5 -25.5t200.5 -79.5t160.5 -132.5t106.5 -190.5t39 -247q0 -117 -39 -221.5t-104.5 -178.5t-154.5 -117t-187 -43q-93 0 -148 38t-55 112q0 31 13 72l45 135q-149 -357 -361 -357q-102 0 -157.5 60 t-55.5 203q0 164 60.5 303.5t175 225t258.5 85.5q156 0 276 -59l-98 -547q-8 -40 -8 -74q0 -44 21.5 -63t74.5 -19q44 0 91.5 29.5t89.5 82.5t68.5 138.5t26.5 185.5q0 130 -48 233t-132 167.5t-194 98.5t-238 34q-194 0 -344.5 -88t-234.5 -251.5t-84 -377.5 q0 -157 49.5 -279.5t136.5 -197t199.5 -112.5t244.5 -38q179 0 357 54l26 -129q-185 -64 -407 -64q-128 0 -241.5 26t-213.5 83.5t-172.5 142.5t-114 210t-41.5 279zM641 266q0 -79 21 -117t71 -38q94 0 190 139t134 356l16 92q-66 27 -135 27q-70 0 -128 -42.5t-94 -110.5 t-55.5 -147.5t-19.5 -158.5z" />
<glyph unicode="A" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM369 512h485l-160 477q-39 115 -73 252q-25 -88 -82 -252z" />
<glyph unicode="B" horiz-adv-x="1191" d="M188 4v1426q164 16 361 16q232 0 352.5 -81.5t120.5 -274.5q0 -98 -53 -184.5t-150 -139.5q271 -69 271 -342q0 -192 -144.5 -314t-396.5 -122q-197 0 -361 16zM367 143q82 -8 165 -8q184 0 279.5 63t95.5 203q0 79 -29 134t-82.5 84.5t-117.5 42t-146 12.5 q-104 0 -165 -6v-525zM367 813q41 -4 165 -4q308 0 308 262q0 68 -25 114.5t-71 70t-96.5 33t-115.5 9.5q-83 0 -165 -8v-477z" />
<glyph unicode="C" horiz-adv-x="1193" d="M102 717q0 221 84.5 391t240.5 264t361 94q191 0 345 -57l-41 -164q-55 27 -137 45.5t-162 18.5q-250 0 -377 -152t-127 -436q0 -286 138 -442t370 -156q166 0 295 61l41 -147q-137 -70 -345 -70q-336 0 -511 191.5t-175 558.5z" />
<glyph unicode="D" horiz-adv-x="1368" d="M188 4v1426q164 16 361 16q165 0 295 -39.5t226 -120t147 -212t51 -306.5q0 -185 -57 -334.5t-156 -246t-228.5 -148t-277.5 -51.5q-197 0 -361 16zM367 150q92 -9 165 -9q266 0 407.5 160.5t141.5 456.5q0 139 -42 243.5t-117.5 167t-173 93t-216.5 30.5q-83 0 -165 -8 v-1134z" />
<glyph unicode="E" horiz-adv-x="1130" d="M188 0v1434h822v-154h-643v-463h577v-147h-577v-516h649v-154h-828z" />
<glyph unicode="F" horiz-adv-x="1089" d="M188 0v1434h822v-154h-643v-483h591v-148h-591v-649h-179z" />
<glyph unicode="G" horiz-adv-x="1370" d="M102 717q0 223 86 392t250.5 263t386.5 94q220 0 385 -61l-41 -164q-56 28 -151 48t-189 20q-540 0 -540 -588q0 -287 139.5 -442.5t378.5 -155.5q145 0 260 41v452h-291v146h469v-682q-87 -51 -208 -82t-238 -31q-343 0 -520 191t-177 559z" />
<glyph unicode="H" horiz-adv-x="1425" d="M188 0v1434h179v-600h692v600h178v-1434h-178v680h-692v-680h-179z" />
<glyph unicode="I" horiz-adv-x="555" d="M188 0v1434h179v-1434h-179z" />
<glyph unicode="J" horiz-adv-x="555" d="M-41 -209q143 0 193 92q23 41 29.5 109t6.5 198v1244h179v-1258q0 -158 -13 -231.5t-51 -137.5q-91 -151 -321 -151z" />
<glyph unicode="K" horiz-adv-x="1189" d="M188 0v1434h179v-670l575 670h215l-604 -689l651 -745h-237l-600 711v-711h-179z" />
<glyph unicode="L" horiz-adv-x="1030" d="M188 0v1434h179v-1280h643v-154h-822z" />
<glyph unicode="M" horiz-adv-x="1808" d="M135 0l135 1434h191l370 -1020q41 -109 68 -213q42 131 72 213l385 1020h190l123 -1434h-180l-53 717q-18 231 -21 459q-42 -136 -86 -254l-352 -922h-164l-338 922q-47 128 -86 256q-8 -187 -29 -461l-59 -717h-166z" />
<glyph unicode="N" horiz-adv-x="1439" d="M188 0v1434h177l557 -869q73 -112 174 -309q-11 194 -11 502v676h166v-1434h-176l-557 868q-89 136 -174 310q10 -265 10 -502v-676h-166z" />
<glyph unicode="O" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -207 -78 -377t-226 -271.5t-340 -101.5q-154 0 -277.5 58.5t-202.5 161.5t-121 238t-42 292zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156 t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5z" />
<glyph unicode="P" horiz-adv-x="1132" d="M188 0v1430q164 16 361 16q264 0 393 -104t129 -326q0 -223 -148.5 -362.5t-402.5 -139.5q-92 0 -153 6v-520h-179zM367 668q61 -6 165 -6q357 0 357 335q0 301 -357 301q-83 0 -165 -8v-622z" />
<glyph unicode="Q" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -173 -55.5 -321.5t-161 -254.5t-246.5 -147q164 -92 399 -92q67 0 107 6l-21 -166q-30 -6 -76 -6q-183 0 -343.5 60.5t-239.5 170.5q-126 0 -232 38t-182.5 106.5 t-130 162.5t-79.5 206t-26 237zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5z" />
<glyph unicode="R" horiz-adv-x="1183" d="M188 0v1430q164 16 361 16q236 0 360.5 -91.5t124.5 -291.5q0 -126 -64.5 -217.5t-170.5 -138.5q64 -30 107.5 -92.5t76.5 -168.5l137 -446h-188l-123 406q-38 126 -98.5 169t-178.5 43q-104 0 -165 -6v-612h-179zM367 758q41 -4 165 -4q141 0 230.5 73.5t89.5 212.5 q0 258 -320 258q-83 0 -165 -8v-532z" />
<glyph unicode="S" horiz-adv-x="1058" d="M84 53l35 164q87 -48 170.5 -73t185.5 -25q149 0 232.5 67t83.5 189q0 54 -23 98t-62 75.5t-89.5 59t-106.5 52.5t-112 51.5t-106.5 60.5t-89.5 75.5t-62 101.5t-23 132q0 166 133 275.5t338 109.5q186 0 336 -57l-31 -168q-155 74 -313 74q-134 0 -207.5 -57t-73.5 -166 q0 -52 23 -94.5t62 -72.5t89.5 -56.5t106.5 -51.5t112 -51t106.5 -61t89.5 -77t62 -102.5t23 -134.5q0 -181 -140.5 -302.5t-369.5 -121.5q-207 0 -379 86z" />
<glyph unicode="T" horiz-adv-x="1087" d="M23 1280v154h1042v-154h-432v-1280h-178v1280h-432z" />
<glyph unicode="U" horiz-adv-x="1388" d="M172 487v947h178v-897q0 -208 89.5 -311t260.5 -103q163 0 252.5 96t89.5 285v930h175v-942q0 -87 -18.5 -163.5t-60 -143.5t-103 -115t-152 -75.5t-201.5 -27.5q-244 0 -377 136t-133 384z" />
<glyph unicode="V" horiz-adv-x="1232" d="M20 1434h191l332 -990q40 -119 69 -249q42 135 82 249l350 990h185l-537 -1434h-170z" />
<glyph unicode="W" horiz-adv-x="1933" d="M31 1434h184l274 -992q33 -124 56 -235q25 123 59 235l293 992h162l274 -992q33 -124 56 -235q25 123 59 235l293 992h178l-453 -1434h-180l-270 991q-25 96 -45 189q-17 -85 -47 -189l-295 -991h-180z" />
<glyph unicode="X" horiz-adv-x="1179" d="M31 0l448 748l-411 686h206l318 -543l315 543h197l-406 -674l457 -760h-207l-362 616l-359 -616h-196z" />
<glyph unicode="Y" horiz-adv-x="1124" d="M-2 1434h211l274 -543q48 -96 80 -178q26 66 86 178l285 543h203l-488 -869v-565h-178v565z" />
<glyph unicode="Z" horiz-adv-x="1171" d="M92 0v137l590 875q68 103 203 276q-98 -8 -199 -8h-594v154h987v-138l-590 -874q-96 -140 -204 -279q90 11 200 11h594v-154h-987z" />
<glyph unicode="[" horiz-adv-x="606" d="M174 -410v1954h373v-135h-209v-1683h209v-136h-373z" />
<glyph unicode="\" horiz-adv-x="808" d="M68 1458h172l501 -1872h-172z" />
<glyph unicode="]" horiz-adv-x="606" d="M59 -274h209v1683h-209v135h373v-1954h-373v136z" />
<glyph unicode="^" horiz-adv-x="1241" d="M113 594l430 881h166l409 -881h-190l-305 719l-328 -719h-182z" />
<glyph unicode="_" horiz-adv-x="1048" d="M12 -195h1024v-145h-1024v145z" />
<glyph unicode="`" d="M305 1399l111 139l305 -242l-84 -106z" />
<glyph unicode="a" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5z" />
<glyph unicode="b" horiz-adv-x="1146" d="M156 49v1438l174 12v-381q0 -120 -11 -213q113 164 334 164q84 0 155 -30.5t126.5 -91t87 -161t31.5 -231.5q0 -135 -42 -245.5t-116 -183t-173 -112t-214 -39.5q-179 0 -352 74zM330 160q83 -39 202 -39q146 0 244 107t98 302q0 192 -71.5 290t-200.5 98 q-161 0 -272 -156v-602z" />
<glyph unicode="c" horiz-adv-x="940" d="M92 522q0 238 146 392.5t368 154.5q152 0 264 -53l-34 -150q-110 52 -226 52q-155 0 -247.5 -96t-92.5 -300q0 -93 20.5 -164t54.5 -115t82.5 -72t98.5 -39t109 -11q111 0 199 49l36 -141q-123 -54 -266 -54q-92 0 -166 15.5t-140 54.5t-110.5 100t-70 156.5t-25.5 220.5 z" />
<glyph unicode="d" horiz-adv-x="1153" d="M94 489q0 135 42 245.5t116 183t173 112t214 39.5q93 0 186 -22q-8 65 -8 198v242l174 12v-1102q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -77 -10q-101 0 -101 121v22q-115 -158 -329 -158q-84 0 -155 30.5t-126.5 91t-87 161t-31.5 231.5zM272 514q0 -192 72 -289.5 t201 -97.5q160 0 272 154v604q-90 39 -203 39q-146 0 -244 -107.5t-98 -302.5z" />
<glyph unicode="e" horiz-adv-x="1056" d="M94 522q0 242 131 394.5t348 152.5q181 0 287.5 -113t106.5 -331q0 -53 -6 -105h-691q0 -92 21 -163t55.5 -115.5t84 -72.5t102 -39t114.5 -11q139 0 258 53l31 -137q-128 -60 -320 -60q-95 0 -171 15.5t-143 54.5t-112 100.5t-70.5 156.5t-25.5 220zM279 655h514 q0 122 -68.5 197.5t-169.5 75.5q-108 0 -181.5 -67t-94.5 -206z" />
<glyph unicode="f" horiz-adv-x="739" d="M53 909v135h164v160q0 145 89.5 229.5t254.5 84.5q105 0 211 -29l-27 -148q-88 31 -184 31q-95 0 -132.5 -44t-37.5 -138v-146h314v-135h-314v-909h-174v909h-164z" />
<glyph unicode="g" horiz-adv-x="1124" d="M78 -143q0 79 50.5 147.5t123.5 97.5q-129 52 -129 174q0 61 32.5 111t86.5 80q-92 96 -92 246q0 159 112 257.5t279 98.5q107 0 178 -27q175 0 360 9v-123q-66 -4 -114 -4q-60 0 -93 2q60 -85 60 -213q0 -155 -113 -256t-278 -101q-122 0 -215 41q-60 -24 -60 -84 q0 -36 34 -59.5t89.5 -33.5t126.5 -19.5t145.5 -16.5t145.5 -26.5t126.5 -47t89.5 -80.5t34 -126q0 -169 -138.5 -273t-379.5 -104q-118 0 -209 26.5t-144.5 73t-80.5 104.5t-27 126zM244 -131q0 -103 92 -157t229 -54q87 0 158 20t119.5 68.5t48.5 118.5q0 28 -7.5 51 t-25.5 40.5t-36.5 30.5t-52 22.5t-59 16t-70.5 12.5t-74 9t-82 8t-83 8q-157 -56 -157 -194zM317 713q0 -103 63.5 -166.5t160.5 -63.5q101 0 162 63t61 167q0 109 -60 169t-163 60t-163.5 -60t-60.5 -169z" />
<glyph unicode="h" horiz-adv-x="1146" d="M162 0v1487l174 12v-381q0 -128 -10 -213q113 164 333 164q69 0 127 -19t106.5 -59t76.5 -111.5t28 -168.5v-711h-174v664q0 254 -215 254q-161 0 -272 -156v-762h-174z" />
<glyph unicode="i" horiz-adv-x="497" d="M135 1362q0 50 33.5 82.5t81.5 32.5t81.5 -32.5t33.5 -82.5q0 -47 -34 -81t-81 -34t-81 34t-34 81zM162 0v1044h174v-1044h-174z" />
<glyph unicode="j" horiz-adv-x="497" d="M-61 -342q136 0 186 92q23 41 30 110t7 197v987h174v-997q0 -158 -13 -231.5t-51 -137.5q-91 -151 -311 -151zM135 1362q0 50 33.5 82.5t81.5 32.5t81.5 -32.5t33.5 -82.5q0 -47 -34 -81t-81 -34t-81 34t-34 81z" />
<glyph unicode="k" d="M162 0v1487l174 12v-893l409 438h216l-439 -458l498 -586h-229l-455 553v-553h-174z" />
<glyph unicode="l" horiz-adv-x="505" d="M164 111v1376l174 12v-1102q0 -101 2.5 -200t5.5 -148l2 -49q-52 -10 -78 -10q-106 0 -106 121z" />
<glyph unicode="m" horiz-adv-x="1794" d="M154 1044q57 11 77 11q101 0 101 -121v-21q112 156 325 156q99 0 177.5 -41t119.5 -129q128 170 357 170q69 0 126.5 -19t105.5 -59t75 -111.5t27 -168.5v-711h-175v664q0 133 -54 193.5t-156 60.5q-152 0 -273 -154q4 -32 4 -53v-711h-174v664q0 254 -211 254 q-162 0 -268 -154v-764h-174v647q0 101 -2.5 200t-5.5 148z" />
<glyph unicode="n" horiz-adv-x="1148" d="M154 1044q57 11 77 11q101 0 101 -121v-23q118 158 330 158q69 0 127 -19t106.5 -59t76 -111.5t27.5 -168.5v-711h-174v664q0 254 -215 254q-161 0 -272 -156v-762h-174v647q0 101 -2.5 200t-5.5 148z" />
<glyph unicode="o" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q128 0 222.5 -41.5t149 -117t80.5 -172t26 -216.5q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM272 522q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5 q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5z" />
<glyph unicode="p" horiz-adv-x="1155" d="M154 1044q57 11 77 11q101 0 101 -121v-23q118 158 330 158q84 0 155 -30.5t126.5 -91t86.5 -161t31 -231.5q0 -135 -42 -245.5t-116 -183t-173 -112t-214 -39.5q-92 0 -186 23q8 -98 8 -199v-241l-174 -13v1102q0 101 -2.5 200t-5.5 148zM338 160q83 -39 203 -39 q146 0 244 107t98 302q0 192 -72 290t-201 98q-161 0 -272 -156v-602z" />
<glyph unicode="q" horiz-adv-x="1146" d="M94 489q0 135 42 245.5t116 183t173 112t214 39.5q179 0 352 -74v-1437l-174 -13v381q0 129 10 211q-118 -162 -333 -162q-84 0 -155 30.5t-126.5 91t-87 161t-31.5 231.5zM272 514q0 -192 72 -289.5t201 -97.5q160 0 272 154v604q-90 39 -203 39q-146 0 -244 -107.5 t-98 -302.5z" />
<glyph unicode="r" horiz-adv-x="737" d="M154 1044q57 11 77 11q101 0 101 -121v-66q85 201 280 201q54 0 101 -14l-21 -174q-57 24 -121 24q-161 0 -233 -221v-684h-174v647q0 101 -2.5 200t-5.5 148z" />
<glyph unicode="s" horiz-adv-x="835" d="M82 35l31 151q128 -69 256 -69q96 0 149 35.5t53 107.5q0 48 -25.5 84.5t-66.5 60.5t-90.5 46t-99.5 48t-91 58t-66.5 83t-25.5 118q0 135 101.5 223t263.5 88q133 0 248 -45l-27 -154q-114 58 -231 58q-88 0 -134 -38t-46 -108q0 -44 26 -78t67 -56.5t91 -44 t100.5 -47.5t91.5 -58.5t67 -86t26 -122.5q0 -137 -108.5 -225.5t-276.5 -88.5q-160 0 -283 60z" />
<glyph unicode="t" horiz-adv-x="761" d="M53 909v135h164l16 254l150 41v-295h313v-135h-313v-600q0 -108 41 -148t115 -40q80 0 161 51l19 -131q-95 -66 -219 -66q-131 0 -211 65.5t-80 207.5v661h-156z" />
<glyph unicode="u" horiz-adv-x="1146" d="M150 334v710h174v-663q0 -254 215 -254q160 0 272 154v763h174v-647q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -77 -10q-101 0 -101 121v22q-115 -158 -330 -158q-69 0 -127 19t-106.5 59.5t-76 112t-27.5 168.5z" />
<glyph unicode="v" horiz-adv-x="1021" d="M27 1044h188l236 -665q32 -90 59 -211q29 122 63 211l240 665h184l-409 -1044h-170z" />
<glyph unicode="w" horiz-adv-x="1587" d="M33 1044h180l197 -667q27 -87 47 -213q19 102 53 213l201 667h172l196 -667q27 -87 47 -213q18 93 54 213l200 667h176l-348 -1044h-178l-192 668q-28 94 -45 200q-16 -80 -50 -200l-202 -668h-179z" />
<glyph unicode="x" horiz-adv-x="1009" d="M37 0l358 541l-334 503h209l240 -374l233 374h193l-324 -489l369 -555h-209l-274 424l-269 -424h-192z" />
<glyph unicode="y" d="M27 1044h188l236 -665q39 -111 65 -240q25 110 70 240l227 665h184l-385 -1044q-95 -257 -197.5 -365t-267.5 -108q-28 0 -49 6l-24 145q24 -6 55 -6q57 0 99 14t87 61t80 130l39 92q-24 47 -51 123z" />
<glyph unicode="z" horiz-adv-x="972" d="M94 0v123l461 649q55 77 107 135q-102 -8 -207 -8h-361v145h789v-100l-484 -672q-60 -82 -106 -137q82 10 207 10h383v-145h-789z" />
<glyph unicode="{" horiz-adv-x="661" d="M33 520v135q205 0 205 238v287q0 174 71.5 269t210.5 95h80v-135q-118 0 -158.5 -46.5t-40.5 -174.5v-234q0 -168 -39.5 -249.5t-125.5 -116.5q85 -29 125 -113t40 -254v-274q0 -128 40.5 -174.5t158.5 -46.5v-136h-80q-145 0 -213.5 83.5t-68.5 281.5v328 q0 115 -57.5 176t-147.5 61z" />
<glyph unicode="|" horiz-adv-x="489" d="M172 -455v1979h145v-1979h-145z" />
<glyph unicode="}" horiz-adv-x="661" d="M61 -274q118 0 158.5 46.5t40.5 174.5v274q0 168 40 250t126 117q-85 29 -125.5 113t-40.5 253v234q0 128 -40.5 174.5t-158.5 46.5v135h80q145 0 214 -83.5t69 -280.5v-287q0 -115 58 -176.5t147 -61.5v-135q-205 0 -205 -237v-328q0 -174 -72 -269.5t-211 -95.5h-80 v136z" />
<glyph unicode="~" horiz-adv-x="1234" d="M129 537q35 54 103 92.5t145 38.5q94 0 254 -44t223 -44q61 0 119 31.5t92 74.5l43 -135q-35 -54 -103 -92.5t-145 -38.5q-94 0 -254 44t-223 44q-61 0 -118.5 -32t-92.5 -75z" />
<glyph unicode="&#xa1;" horiz-adv-x="454" d="M104 950q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87zM127 -430l20 1106h160l21 -1106h-201z" />
<glyph unicode="&#xa2;" horiz-adv-x="923" d="M68 522q0 214 119 362t309 177v178h120v-172q129 -5 230 -51l-35 -150q-104 44 -195 49v-794q108 0 193 49l37 -141q-104 -47 -230 -52v-161h-120v164q-98 9 -173 41t-134 93.5t-90 164t-31 243.5zM246 522q0 -330 250 -389v774q-117 -25 -183.5 -119t-66.5 -266z" />
<glyph unicode="&#xa3;" horiz-adv-x="1060" d="M59 0v117q57 10 95 46.5t62 116t30 205.5l8 185h-166v147h174l12 215q12 212 126.5 323t291.5 111q149 0 279 -43l-21 -166q-133 58 -260 58q-46 0 -80.5 -9t-71.5 -35.5t-59.5 -84.5t-27.5 -146l-13 -223h457v-147h-465l-10 -219q-10 -198 -107 -310q102 13 187 13h467 v-154h-908z" />
<glyph unicode="&#xa4;" horiz-adv-x="1122" d="M82 66l156 180q-86 112 -86 276q0 162 86 275l-156 182l111 94l151 -184q98 53 217 53q128 0 221 -49l148 180l110 -94l-151 -176q82 -110 82 -281q0 -155 -90 -272l159 -184l-110 -95l-154 187q-94 -56 -215 -56q-124 0 -217 52l-151 -183zM315 522q0 -127 71.5 -203.5 t174.5 -76.5q112 0 179 75t67 205q0 139 -66 210t-180 71t-180 -71t-66 -210z" />
<glyph unicode="&#xa5;" horiz-adv-x="1275" d="M72 1434h211l274 -543q48 -96 80 -178q26 66 86 178l285 543h202l-305 -543q-58 -101 -127 -199h301v-135h-356v-129h356v-135h-356v-293h-178v293h-357v135h357v129h-357v135h299q-68 99 -120 199z" />
<glyph unicode="&#xa6;" horiz-adv-x="501" d="M178 262h146v-717h-146v717zM178 807v717h146v-717h-146z" />
<glyph unicode="&#xa7;" horiz-adv-x="903" d="M63 -319l25 163q63 -35 143.5 -58.5t151.5 -23.5q94 0 147.5 38.5t53.5 109.5q0 45 -28 89.5t-72.5 83.5t-98.5 80t-108 85.5t-98.5 92t-72.5 107t-28 123.5q0 107 49 187t147 119q-131 128 -131 274q0 136 103.5 225.5t269.5 89.5q149 0 279 -43l-21 -166 q-133 58 -260 58q-88 0 -140 -36.5t-52 -111.5q0 -45 28 -89.5t72.5 -83.5t98 -80t107.5 -85.5t98.5 -92t72.5 -107t28 -123.5q0 -105 -49.5 -186t-146.5 -121q131 -131 131 -273q0 -140 -104.5 -227.5t-280.5 -87.5q-177 0 -314 70zM250 598q0 -30 13 -59.5t29.5 -52.5 t50 -53t56.5 -48t68.5 -51.5t67.5 -50.5q58 24 89 76.5t31 117.5q0 30 -13 60t-28.5 52.5t-50.5 54t-56 48t-69 52.5t-67 51q-58 -24 -89.5 -77t-31.5 -120z" />
<glyph unicode="&#xa8;" d="M223 1354q0 46 31 76t76 30q44 0 75 -31t31 -75t-31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5zM588 1354q0 47 30.5 76.5t75.5 29.5t76 -30t31 -76q0 -44 -31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5z" />
<glyph unicode="&#xa9;" horiz-adv-x="1681" d="M70 717q0 218 103.5 395.5t279.5 276t387 98.5q220 0 396 -99t275 -275t99 -396q0 -218 -103.5 -395.5t-279.5 -276t-387 -98.5t-387 98.5t-279.5 276t-103.5 395.5zM219 717q0 -180 83 -325.5t225 -226.5t313 -81t313 81t224.5 226.5t82.5 325.5t-82.5 325.5 t-224.5 226.5t-313 81t-313 -81t-225 -226.5t-83 -325.5zM510 713q0 171 106.5 275t280.5 104q95 0 186 -27l-26 -123q-67 29 -148 29q-123 0 -186.5 -65.5t-63.5 -190.5q0 -124 69 -189t183 -65q83 0 146 26l26 -112q-81 -33 -192 -33q-381 0 -381 371z" />
<glyph unicode="&#xaa;" horiz-adv-x="868" d="M141 928q0 113 93.5 169t254.5 56q35 0 70 -6v53q0 131 -145 131q-118 0 -201 -59l-35 112q110 66 262 66q128 0 196.5 -52t68.5 -175v-201q0 -74 1.5 -143.5t3.5 -102.5l1 -33q-36 -8 -68 -8q-82 0 -82 92q-79 -102 -219 -102q-88 0 -144.5 51.5t-56.5 151.5zM145 514 v111h562v-111h-562zM291 938q0 -96 100 -96q97 0 168 100v111q-54 4 -90 4q-82 0 -130 -29t-48 -90z" />
<glyph unicode="&#xab;" horiz-adv-x="972" d="M82 522l242 428l143 -61l-203 -365l203 -368l-148 -62zM483 522l242 428l143 -61l-202 -365l202 -368l-147 -62z" />
<glyph unicode="&#xac;" horiz-adv-x="1015" d="M100 469v145h799v-454h-166v309h-633z" />
<glyph unicode="&#xad;" horiz-adv-x="794" d="M137 481v156h520v-156h-520z" />
<glyph unicode="&#xae;" horiz-adv-x="1681" d="M70 717q0 218 103.5 395.5t279.5 276t387 98.5q220 0 396 -99t275 -275t99 -396q0 -218 -103.5 -395.5t-279.5 -276t-387 -98.5t-387 98.5t-279.5 276t-103.5 395.5zM219 717q0 -180 83 -325.5t225 -226.5t313 -81t313 81t224.5 226.5t82.5 325.5t-82.5 325.5 t-224.5 226.5t-313 81t-313 -81t-225 -226.5t-83 -325.5zM590 358v715q108 8 211 8q150 0 224.5 -43t74.5 -149q0 -118 -123 -176q66 -28 102 -140l68 -215h-152l-61 195q-18 57 -45 76.5t-80 19.5q-38 0 -74 -4v-287h-145zM735 752q18 -2 74 -2q64 0 103.5 29.5t39.5 86.5 q0 109 -143 109q-38 0 -74 -4v-219z" />
<glyph unicode="&#xaf;" d="M231 1286v135h562v-135h-562z" />
<glyph unicode="&#xb0;" horiz-adv-x="753" d="M84 1280q0 127 86.5 203t206.5 76q138 0 215.5 -73.5t77.5 -205.5q0 -117 -88 -198t-205 -81q-126 0 -209.5 79.5t-83.5 199.5zM231 1280q0 -58 44.5 -101.5t101.5 -43.5q60 0 102.5 43t42.5 102q0 66 -41.5 105.5t-103.5 39.5t-104 -39.5t-42 -105.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="1089" d="M88 -57v153h913v-153h-913zM88 532v154h373v358h168v-358h372v-154h-372v-358h-168v358h-373z" />
<glyph unicode="&#xb2;" horiz-adv-x="706" d="M59 741v107q134 100 236 211q156 169 156 299q0 137 -162 137q-107 0 -187 -51l-32 115q104 57 252 57q284 0 284 -236q0 -111 -50.5 -200.5t-152.5 -198.5q-59 -62 -151 -127q82 10 186 10h209v-123h-588z" />
<glyph unicode="&#xb3;" horiz-adv-x="704" d="M57 760l17 125q93 -41 211 -41q92 0 142 40.5t50 106.5q0 64 -60.5 101.5t-164.5 37.5q-50 0 -94 -6l-8 111q296 0 296 160q0 104 -149 104q-106 0 -186 -51l-33 111q104 57 252 57q272 0 272 -193q0 -77 -44 -131.5t-120 -83.5q102 -20 148.5 -70.5t46.5 -136.5 q0 -119 -98.5 -196.5t-245.5 -77.5q-131 0 -232 33z" />
<glyph unicode="&#xb4;" d="M305 1296l305 242l111 -139l-332 -209z" />
<glyph unicode="&#xb5;" horiz-adv-x="1103" d="M113 -455v1499h174v-663q0 -135 60 -194.5t183 -59.5q154 0 265 156v761h174v-647q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-108 0 -203 62q19 -93 19 -205v-274z" />
<glyph unicode="&#xb6;" horiz-adv-x="1232" d="M66 1001q0 190 125 311.5t307 121.5h153v-1803h-153v938q-186 0 -309 115t-123 317zM811 -369v1803h352v-131h-198v-1672h-154z" />
<glyph unicode="&#xb7;" horiz-adv-x="532" d="M143 559q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode="&#xb8;" d="M315 -418l29 113q66 -41 133 -41q47 0 70.5 21t23.5 55q0 58 -61 80q-35 12 -109 16l29 194h121l-16 -120l26 -4q68 -11 108 -50.5t40 -107.5q0 -87 -61.5 -140t-166.5 -53q-84 0 -166 37z" />
<glyph unicode="&#xb9;" horiz-adv-x="528" d="M23 1452l249 150h134v-861h-154v586q0 65 8 135q-31 -35 -88 -61l-111 -51z" />
<glyph unicode="&#xba;" horiz-adv-x="956" d="M143 1087q0 161 89 262t245 101q175 0 254.5 -97.5t79.5 -265.5q0 -155 -89.5 -258.5t-244.5 -103.5q-83 0 -148 28.5t-105 78.5t-60.5 114.5t-20.5 140.5zM154 514v111h647v-111h-647zM297 1087q0 -113 50 -178t130 -65q88 0 134 63t46 180q0 244 -180 244t-180 -244z " />
<glyph unicode="&#xbb;" horiz-adv-x="972" d="M104 156l203 364l-203 369l148 61l237 -428l-241 -428zM506 156l203 364l-203 369l147 61l238 -428l-242 -428z" />
<glyph unicode="&#xbc;" horiz-adv-x="1716" d="M20 1284l250 150h133v-861h-153v586q0 65 8 135q-31 -35 -88 -61l-111 -51zM225 -72l949 1643l110 -66l-948 -1642zM1022 242v102l223 516h148l-170 -403q-24 -55 -49 -103q62 4 98 4h149v275h148v-275h104v-116h-104v-242h-148v242h-399z" />
<glyph unicode="&#xbd;" horiz-adv-x="1681" d="M20 1284l250 150h133v-861h-153v586q0 65 8 135q-31 -35 -88 -61l-111 -51zM225 -72l949 1643l110 -66l-948 -1642zM1034 0v106q134 100 236 211q155 168 155 299q0 138 -161 138q-106 0 -187 -52l-33 115q104 57 252 57q285 0 285 -235q0 -111 -50.5 -200.5 t-152.5 -198.5q-59 -62 -151 -127q82 10 186 10h209v-123h-588z" />
<glyph unicode="&#xbe;" horiz-adv-x="1894" d="M57 592l17 125q93 -41 211 -41q92 0 142 40.5t50 106.5q0 65 -60.5 102.5t-164.5 37.5q-43 0 -94 -7l-8 111q296 0 296 160q0 104 -149 104q-106 0 -186 -51l-33 111q104 57 252 57q272 0 272 -193q0 -77 -44 -131.5t-120 -83.5q102 -20 148.5 -70t46.5 -136 q0 -119 -98.5 -197t-245.5 -78q-131 0 -232 33zM403 -72l949 1643l110 -66l-948 -1642zM1200 242v102l223 516h148l-170 -403q-24 -55 -49 -103q62 4 98 4h149v275h148v-275h104v-116h-104v-242h-148v242h-399z" />
<glyph unicode="&#xbf;" horiz-adv-x="911" d="M102 -123q0 55 15.5 105t35.5 86t62 80.5t72 71t88 75.5q66 56 91.5 120t25.5 144q0 71 -9 109l174 16q9 -56 9 -133q0 -100 -43 -196.5t-138 -166.5q-116 -86 -158 -146.5t-42 -152.5q0 -95 71 -147.5t181 -52.5q148 0 294 110l50 -141q-63 -49 -164 -85t-209 -36 q-187 0 -296.5 89t-109.5 251zM444 950q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode="&#xc0;" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM369 512h485l-160 477q-39 115 -73 252q-25 -88 -82 -252zM412 1747l110 139l305 -241l-84 -107z" />
<glyph unicode="&#xc1;" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM369 512h485l-160 477q-39 115 -73 252q-25 -88 -82 -252zM469 1645l305 241l111 -139l-332 -209z" />
<glyph unicode="&#xc2;" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM301 1681l324 189l329 -184l-84 -117l-249 135l-236 -135zM369 512h485l-160 477q-39 115 -73 252q-25 -88 -82 -252z" />
<glyph unicode="&#xc3;" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM301 1722q68 95 176 95q63 0 153 -29t144 -29q82 0 141 62l41 -113q-29 -41 -74.5 -67.5t-101.5 -26.5q-63 0 -153 28.5t-144 28.5q-83 0 -141 -61zM369 512h485l-160 477q-39 115 -73 252 q-25 -88 -82 -252z" />
<glyph unicode="&#xc4;" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM340 1702q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31t31.5 -75t-31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5zM369 512h485l-160 477q-39 115 -73 252q-25 -88 -82 -252zM705 1702q0 47 30.5 76.5t75.5 29.5 t76 -30t31 -76q0 -44 -31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5z" />
<glyph unicode="&#xc5;" horiz-adv-x="1236" d="M6 0l537 1434h170l501 -1434h-188l-121 360h-590l-127 -360h-182zM369 512h485l-160 477q-39 115 -73 252q-25 -88 -82 -252zM434 1731q0 86 56.5 140t138.5 54q81 0 137.5 -54t56.5 -140q0 -80 -57.5 -137.5t-136.5 -57.5t-137 58t-58 137zM539 1731q0 -37 26.5 -64 t63.5 -27t63.5 27t26.5 64q0 40 -26 65t-64 25t-64 -25t-26 -65z" />
<glyph unicode="&#xc6;" horiz-adv-x="1785" d="M-35 0l823 1434h877v-154h-643v-463h577v-147h-577v-516h649v-154h-823v360h-490l-198 -360h-195zM442 512h406v307q0 255 8 451q-107 -210 -194 -365z" />
<glyph unicode="&#xc7;" horiz-adv-x="1193" d="M102 717q0 221 84.5 391t240.5 264t361 94q191 0 345 -57l-41 -164q-55 27 -137 45.5t-162 18.5q-250 0 -377 -152t-127 -436q0 -286 138 -442t370 -156q166 0 295 61l41 -147q-137 -70 -345 -70q-12 0 -32.5 1t-30.5 1l-10 -73l26 -5q68 -11 108 -50t40 -107 q0 -87 -61 -140t-166 -53q-84 0 -166 37l28 113q66 -41 133 -41q47 0 71 21t24 55q0 57 -62 79q-39 13 -108 17l22 162q-247 47 -374.5 233t-127.5 500z" />
<glyph unicode="&#xc8;" horiz-adv-x="1130" d="M188 0v1434h822v-154h-643v-463h577v-147h-577v-516h649v-154h-828zM356 1747l111 139l305 -241l-84 -107z" />
<glyph unicode="&#xc9;" horiz-adv-x="1130" d="M188 0v1434h822v-154h-643v-463h577v-147h-577v-516h649v-154h-828zM446 1645l306 241l110 -139l-332 -209z" />
<glyph unicode="&#xca;" horiz-adv-x="1130" d="M188 0v1434h822v-154h-643v-463h577v-147h-577v-516h649v-154h-828zM272 1681l324 189l330 -184l-84 -117l-250 135l-236 -135z" />
<glyph unicode="&#xcb;" horiz-adv-x="1130" d="M188 0v1434h822v-154h-643v-463h577v-147h-577v-516h649v-154h-828zM311 1702q0 46 31 76t76 30q44 0 75 -31t31 -75t-31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5zM676 1702q0 47 30.5 76.5t75.5 29.5t76 -30t31 -76q0 -44 -31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5z " />
<glyph unicode="&#xcc;" horiz-adv-x="555" d="M51 1747l111 139l305 -241l-84 -107zM188 0v1434h179v-1434h-179z" />
<glyph unicode="&#xcd;" horiz-adv-x="555" d="M109 1645l305 241l110 -139l-331 -209zM188 0v1434h179v-1434h-179z" />
<glyph unicode="&#xce;" horiz-adv-x="555" d="M-49 1681l323 189l330 -184l-84 -117l-250 135l-235 -135zM188 0v1434h179v-1434h-179z" />
<glyph unicode="&#xcf;" horiz-adv-x="555" d="M-10 1702q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31t31.5 -75t-31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5zM188 0v1434h179v-1434h-179zM354 1702q0 46 31 76t76 30t75.5 -29.5t30.5 -76.5q0 -44 -31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5z" />
<glyph unicode="&#xd0;" horiz-adv-x="1368" d="M41 686v148h147v596q164 16 361 16q165 0 295 -39.5t226 -120t147 -212t51 -306.5q0 -185 -57 -334.5t-156 -246t-228.5 -148t-277.5 -51.5q-197 0 -361 16v682h-147zM367 150q92 -9 165 -9q266 0 407.5 160.5t141.5 456.5q0 139 -42 243.5t-117.5 167t-173 93 t-216.5 30.5q-83 0 -165 -8v-450h317v-148h-317v-536z" />
<glyph unicode="&#xd1;" horiz-adv-x="1439" d="M188 0v1434h177l557 -869q73 -112 174 -309q-11 194 -11 502v676h166v-1434h-176l-557 868q-89 136 -174 310q10 -265 10 -502v-676h-166zM393 1722q68 95 176 95q63 0 153 -29t144 -29q83 0 142 62l41 -113q-29 -41 -75 -67.5t-102 -26.5q-63 0 -153 28.5t-144 28.5 q-83 0 -141 -61z" />
<glyph unicode="&#xd2;" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -207 -78 -377t-226 -271.5t-340 -101.5q-154 0 -277.5 58.5t-202.5 161.5t-121 238t-42 292zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156 t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5zM516 1747l111 139l305 -241l-84 -107z" />
<glyph unicode="&#xd3;" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -207 -78 -377t-226 -271.5t-340 -101.5q-154 0 -277.5 58.5t-202.5 161.5t-121 238t-42 292zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156 t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5zM600 1645l305 241l111 -139l-332 -209z" />
<glyph unicode="&#xd4;" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -207 -78 -377t-226 -271.5t-340 -101.5q-154 0 -277.5 58.5t-202.5 161.5t-121 238t-42 292zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156 t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5zM420 1681l323 189l330 -184l-84 -117l-250 135l-235 -135z" />
<glyph unicode="&#xd5;" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -207 -78 -377t-226 -271.5t-340 -101.5q-154 0 -277.5 58.5t-202.5 161.5t-121 238t-42 292zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156 t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5zM418 1722q68 95 176 95q63 0 153 -29t144 -29q82 0 141 62l41 -113q-29 -41 -74.5 -67.5t-101.5 -26.5q-63 0 -153 28.5t-144 28.5q-83 0 -141 -61z" />
<glyph unicode="&#xd6;" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q165 0 290 -55.5t201.5 -157t114.5 -236t38 -300.5q0 -207 -78 -377t-226 -271.5t-340 -101.5q-154 0 -277.5 58.5t-202.5 161.5t-121 238t-42 292zM289 717q0 -141 38 -256t102 -187.5t145 -111.5t171 -39q200 0 328.5 156 t128.5 438q0 150 -35 265.5t-97.5 186t-144.5 106.5t-180 36t-179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5zM457 1702q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31t31.5 -75t-31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5zM821 1702q0 46 31 76t76 30t75.5 -29.5t30.5 -76.5 q0 -44 -31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5z" />
<glyph unicode="&#xd7;" horiz-adv-x="970" d="M84 231l287 287l-285 285l119 119l284 -285l287 287l109 -109l-287 -287l287 -286l-119 -119l-287 287l-286 -287z" />
<glyph unicode="&#xd8;" horiz-adv-x="1490" d="M102 717q0 216 78 386t225 266.5t340 96.5q207 0 355 -90l133 205l104 -70l-139 -215q191 -194 191 -579q0 -207 -78 -377t-226 -271.5t-340 -101.5q-200 0 -348 96l-137 -210l-104 69l145 223q-97 102 -148 250t-51 322zM289 717q0 -252 114 -412l601 924 q-110 82 -259 82q-98 0 -179.5 -36t-144 -106.5t-97.5 -186t-35 -265.5zM494 211q110 -88 251 -88q200 0 328.5 156t128.5 438q0 264 -108 420z" />
<glyph unicode="&#xd9;" horiz-adv-x="1388" d="M172 487v947h178v-897q0 -208 89.5 -311t260.5 -103q163 0 252.5 96t89.5 285v930h175v-942q0 -87 -18.5 -163.5t-60 -143.5t-103 -115t-152 -75.5t-201.5 -27.5q-244 0 -377 136t-133 384zM451 1747l110 139l305 -241l-84 -107z" />
<glyph unicode="&#xda;" horiz-adv-x="1388" d="M172 487v947h178v-897q0 -208 89.5 -311t260.5 -103q163 0 252.5 96t89.5 285v930h175v-942q0 -87 -18.5 -163.5t-60 -143.5t-103 -115t-152 -75.5t-201.5 -27.5q-244 0 -377 136t-133 384zM547 1645l305 241l111 -139l-332 -209z" />
<glyph unicode="&#xdb;" horiz-adv-x="1388" d="M172 487v947h178v-897q0 -208 89.5 -311t260.5 -103q163 0 252.5 96t89.5 285v930h175v-942q0 -87 -18.5 -163.5t-60 -143.5t-103 -115t-152 -75.5t-201.5 -27.5q-244 0 -377 136t-133 384zM371 1681l323 189l330 -184l-84 -117l-250 135l-235 -135z" />
<glyph unicode="&#xdc;" horiz-adv-x="1388" d="M172 487v947h178v-897q0 -208 89.5 -311t260.5 -103q163 0 252.5 96t89.5 285v930h175v-942q0 -87 -18.5 -163.5t-60 -143.5t-103 -115t-152 -75.5t-201.5 -27.5q-244 0 -377 136t-133 384zM408 1702q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31t31.5 -75t-31.5 -75.5 t-75.5 -31.5t-75 31.5t-31 75.5zM772 1702q0 46 31 76t76 30t75.5 -29.5t30.5 -76.5q0 -44 -31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5z" />
<glyph unicode="&#xdd;" horiz-adv-x="1124" d="M-2 1434h211l274 -543q48 -96 80 -178q26 66 86 178l285 543h203l-488 -869v-565h-178v565zM469 1645l305 241l111 -139l-332 -209z" />
<glyph unicode="&#xde;" horiz-adv-x="1136" d="M188 0v1434h179v-217q110 4 182 4q264 0 393 -104t129 -326q0 -223 -148.5 -362.5t-402.5 -139.5q-92 0 -153 6v-295h-179zM367 442q62 -6 165 -6q357 0 357 336q0 301 -357 301q-83 0 -165 -8v-623z" />
<glyph unicode="&#xdf;" horiz-adv-x="1132" d="M162 0v1094q0 108 35 190.5t96.5 132.5t141.5 75.5t175 25.5q156 0 251 -77.5t95 -201.5q0 -96 -38 -161t-119 -130q-53 -41 -77 -79t-24 -87q0 -35 20.5 -64t53.5 -51.5t72.5 -45.5t79.5 -51.5t73 -63.5t53.5 -87.5t20.5 -117.5q0 -135 -102.5 -230.5t-266.5 -95.5 q-125 0 -233 43l31 150q104 -51 223 -51q77 0 123.5 44.5t46.5 110.5q0 54 -27.5 98t-68.5 72.5t-88.5 61t-88.5 63t-68.5 80.5t-27.5 111q0 78 33 140.5t117 125.5q57 42 80.5 82t23.5 100q0 75 -51 121.5t-139 46.5q-122 0 -187 -73t-65 -236v-1065h-174z" />
<glyph unicode="&#xe0;" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5zM272 1399l111 139l305 -242l-84 -106z" />
<glyph unicode="&#xe1;" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5zM360 1296l306 242l110 -139l-332 -209z" />
<glyph unicode="&#xe2;" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M178 1333l324 189l329 -185l-83 -116l-250 135l-236 -135zM256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M176 1374q29 41 74.5 67.5t101.5 26.5q63 0 153 -28.5t144 -28.5q83 0 142 62l40 -113q-29 -41 -74.5 -67.5t-101.5 -26.5q-63 0 -153 28.5t-144 28.5q-83 0 -141 -61zM256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5z " />
<glyph unicode="&#xe4;" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M215 1354q0 46 31 76t76 30q44 0 75 -31t31 -75t-31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5zM256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5zM580 1354q0 47 30.5 76.5t75.5 29.5t76 -30t31 -76q0 -44 -31.5 -75.5 t-75.5 -31.5t-75 31.5t-31 75.5z" />
<glyph unicode="&#xe5;" horiz-adv-x="1026" d="M78 281q0 109 66 184.5t177.5 110t262.5 34.5q63 0 121 -10v105q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q180 0 275 -77t95 -255v-340q0 -101 3 -200t5 -148l3 -49q-52 -10 -78 -10q-100 0 -100 121v22q-115 -158 -330 -158q-129 0 -214 77t-85 229z M256 289q0 -81 46 -126.5t126 -45.5q163 0 277 159v201q-62 6 -158 6q-131 0 -211 -46.5t-80 -147.5zM309 1382q0 86 57 140.5t138 54.5t137.5 -54.5t56.5 -140.5q0 -80 -57 -137t-137 -57t-137.5 57.5t-57.5 136.5zM414 1382q0 -37 26.5 -63.5t63.5 -26.5t63.5 26.5 t26.5 63.5q0 40 -26 65.5t-64 25.5t-64 -25.5t-26 -65.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1662" d="M80 281q0 165 140 259.5t366 94.5q63 0 121 -10v80q0 219 -228 219q-166 0 -295 -95l-49 140q155 100 371 100q133 0 211 -42.5t108 -139.5q119 182 353 182q182 0 287.5 -116.5t105.5 -348.5q0 -52 -6 -104h-691q2 -88 24 -155t57 -109t84 -69t100.5 -37.5t111.5 -10.5 q139 0 258 53l31 -137q-128 -60 -319 -60q-328 0 -443 203q-138 -203 -399 -203q-129 0 -214 77t-85 229zM258 289q0 -81 46 -126.5t126 -45.5q170 0 291 196q-14 79 -14 172v17q-61 6 -158 6q-126 0 -208.5 -58t-82.5 -161zM883 635h514q0 135 -68 214t-170 79 q-110 0 -183.5 -70.5t-92.5 -222.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="940" d="M92 522q0 238 146 392.5t368 154.5q152 0 264 -53l-34 -150q-110 52 -226 52q-155 0 -247.5 -96t-92.5 -300q0 -93 20.5 -164t54.5 -115t82.5 -72t98.5 -39t109 -11q111 0 199 49l36 -141q-123 -54 -266 -54h-22l-11 -75l27 -4q68 -11 107.5 -50.5t39.5 -107.5 q0 -87 -61 -140t-166 -53q-84 0 -166 37l29 113q66 -41 133 -41q47 0 70.5 21t23.5 55q0 58 -61 80q-35 12 -109 16l23 162q-85 14 -150.5 49.5t-115.5 98t-76.5 159.5t-26.5 227z" />
<glyph unicode="&#xe8;" horiz-adv-x="1056" d="M94 522q0 242 131 394.5t348 152.5q181 0 287.5 -113t106.5 -331q0 -53 -6 -105h-691q0 -92 21 -163t55.5 -115.5t84 -72.5t102 -39t114.5 -11q139 0 258 53l31 -137q-128 -60 -320 -60q-95 0 -171 15.5t-143 54.5t-112 100.5t-70.5 156.5t-25.5 220zM279 655h514 q0 122 -68.5 197.5t-169.5 75.5q-108 0 -181.5 -67t-94.5 -206zM350 1399l111 139l305 -242l-84 -106z" />
<glyph unicode="&#xe9;" horiz-adv-x="1056" d="M94 522q0 242 131 394.5t348 152.5q181 0 287.5 -113t106.5 -331q0 -53 -6 -105h-691q0 -92 21 -163t55.5 -115.5t84 -72.5t102 -39t114.5 -11q139 0 258 53l31 -137q-128 -60 -320 -60q-95 0 -171 15.5t-143 54.5t-112 100.5t-70.5 156.5t-25.5 220zM279 655h514 q0 122 -68.5 197.5t-169.5 75.5q-108 0 -181.5 -67t-94.5 -206zM414 1296l305 242l110 -139l-331 -209z" />
<glyph unicode="&#xea;" horiz-adv-x="1056" d="M94 522q0 242 131 394.5t348 152.5q181 0 287.5 -113t106.5 -331q0 -53 -6 -105h-691q0 -92 21 -163t55.5 -115.5t84 -72.5t102 -39t114.5 -11q139 0 258 53l31 -137q-128 -60 -320 -60q-95 0 -171 15.5t-143 54.5t-112 100.5t-70.5 156.5t-25.5 220zM246 1333l323 189 l330 -185l-84 -116l-250 135l-235 -135zM279 655h514q0 122 -68.5 197.5t-169.5 75.5q-108 0 -181.5 -67t-94.5 -206z" />
<glyph unicode="&#xeb;" horiz-adv-x="1056" d="M94 522q0 242 131 394.5t348 152.5q181 0 287.5 -113t106.5 -331q0 -53 -6 -105h-691q0 -92 21 -163t55.5 -115.5t84 -72.5t102 -39t114.5 -11q139 0 258 53l31 -137q-128 -60 -320 -60q-95 0 -171 15.5t-143 54.5t-112 100.5t-70.5 156.5t-25.5 220zM274 1354 q0 46 31 76t76 30q44 0 75 -31t31 -75t-31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5zM279 655h514q0 122 -68.5 197.5t-169.5 75.5q-108 0 -181.5 -67t-94.5 -206zM639 1354q0 47 30.5 76.5t75.5 29.5t76 -30t31 -76q0 -44 -31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5z" />
<glyph unicode="&#xec;" horiz-adv-x="497" d="M20 1399l111 139l305 -242l-84 -106zM162 0v1044h174v-1044h-174z" />
<glyph unicode="&#xed;" horiz-adv-x="497" d="M82 1296l305 242l111 -139l-332 -209zM162 0v1044h174v-1044h-174z" />
<glyph unicode="&#xee;" horiz-adv-x="497" d="M-78 1333l324 189l329 -185l-83 -116l-250 135l-236 -135zM162 0v1044h174v-1044h-174z" />
<glyph unicode="&#xef;" horiz-adv-x="497" d="M-39 1354q0 46 31 76t76 30q44 0 75 -31t31 -75t-31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5zM162 0v1044h174v-1044h-174zM326 1354q0 47 30.5 76.5t75.5 29.5t76 -30t31 -76q0 -44 -31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5z" />
<glyph unicode="&#xf0;" horiz-adv-x="1138" d="M94 498q0 223 125.5 367.5t345.5 144.5q157 0 244 -115q-68 177 -207 309l-246 -164l-71 111l213 141q-107 75 -230 125l101 117q159 -61 278 -152l230 152l73 -113l-200 -133q274 -281 274 -749q0 -159 -52 -285t-159 -202.5t-254 -76.5q-115 0 -205 41.5t-146 114 t-85 166t-29 201.5zM272 498q0 -172 81 -274.5t206 -102.5q135 0 211 101t76 276q0 366 -287 366t-287 -366z" />
<glyph unicode="&#xf1;" horiz-adv-x="1148" d="M154 1044q57 11 77 11q101 0 101 -121v-23q118 158 330 158q69 0 127 -19t106.5 -59t76 -111.5t27.5 -168.5v-711h-174v664q0 254 -215 254q-161 0 -272 -156v-762h-174v647q0 101 -2.5 200t-5.5 148zM254 1374q29 41 74.5 67.5t101.5 26.5q63 0 153 -28.5t144 -28.5 q82 0 141 62l41 -113q-29 -41 -74.5 -67.5t-101.5 -26.5q-63 0 -153 28.5t-144 28.5q-83 0 -141 -61z" />
<glyph unicode="&#xf2;" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q128 0 222.5 -41.5t149 -117t80.5 -172t26 -216.5q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM272 522q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5 q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5zM342 1399l111 139l305 -242l-84 -106z" />
<glyph unicode="&#xf3;" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q128 0 222.5 -41.5t149 -117t80.5 -172t26 -216.5q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM272 522q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5 q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5zM426 1296l305 242l111 -139l-332 -209z" />
<glyph unicode="&#xf4;" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q128 0 222.5 -41.5t149 -117t80.5 -172t26 -216.5q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM246 1333l323 189l330 -185l-84 -116l-250 135l-235 -135zM272 522 q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5z" />
<glyph unicode="&#xf5;" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q128 0 222.5 -41.5t149 -117t80.5 -172t26 -216.5q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM244 1374q29 41 74.5 67.5t101.5 26.5q63 0 153 -28.5t144 -28.5 q82 0 141 62l41 -113q-29 -41 -74.5 -67.5t-101.5 -26.5q-63 0 -153 28.5t-144 28.5q-83 0 -141 -61zM272 522q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q128 0 222.5 -41.5t149 -117t80.5 -172t26 -216.5q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM272 522q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5 q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5zM283 1354q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31t31.5 -75t-31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5zM647 1354q0 46 31 76t76 30t75.5 -29.5t30.5 -76.5q0 -44 -31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5z" />
<glyph unicode="&#xf7;" horiz-adv-x="1130" d="M88 446v154h954v-154h-954zM442 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87zM442 950q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87z" />
<glyph unicode="&#xf8;" horiz-adv-x="1142" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q143 0 250 -55l97 147l100 -65l-100 -156q131 -140 131 -418q0 -111 -32 -209.5t-91.5 -174t-151 -119.5t-203.5 -44q-136 0 -243 60l-99 -152l-100 66l104 160q-139 148 -139 413zM272 522q0 -158 60 -260l401 617 q-62 45 -162 45q-147 0 -223 -101.5t-76 -300.5zM416 170q64 -49 155 -49q145 0 222 105.5t77 295.5q0 164 -53 264z" />
<glyph unicode="&#xf9;" horiz-adv-x="1146" d="M150 334v710h174v-663q0 -254 215 -254q160 0 272 154v763h174v-647q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -77 -10q-101 0 -101 121v22q-115 -158 -330 -158q-69 0 -127 19t-106.5 59.5t-76 112t-27.5 168.5zM295 1399l111 139l305 -242l-84 -106z" />
<glyph unicode="&#xfa;" horiz-adv-x="1146" d="M150 334v710h174v-663q0 -254 215 -254q160 0 272 154v763h174v-647q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -77 -10q-101 0 -101 121v22q-115 -158 -330 -158q-69 0 -127 19t-106.5 59.5t-76 112t-27.5 168.5zM444 1296l306 242l110 -139l-332 -209z" />
<glyph unicode="&#xfb;" horiz-adv-x="1146" d="M150 334v710h174v-663q0 -254 215 -254q160 0 272 154v763h174v-647q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -77 -10q-101 0 -101 121v22q-115 -158 -330 -158q-69 0 -127 19t-106.5 59.5t-76 112t-27.5 168.5zM242 1333l323 189l330 -185l-84 -116l-250 135l-235 -135 z" />
<glyph unicode="&#xfc;" horiz-adv-x="1146" d="M150 334v710h174v-663q0 -254 215 -254q160 0 272 154v763h174v-647q0 -101 2.5 -200t4.5 -148l3 -49q-52 -10 -77 -10q-101 0 -101 121v22q-115 -158 -330 -158q-69 0 -127 19t-106.5 59.5t-76 112t-27.5 168.5zM279 1354q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31 t31.5 -75t-31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5zM643 1354q0 46 31 76t76 30t75.5 -29.5t30.5 -76.5q0 -44 -31 -75.5t-75 -31.5t-75.5 31.5t-31.5 75.5z" />
<glyph unicode="&#xfd;" d="M27 1044h188l236 -665q39 -111 65 -240q25 110 70 240l227 665h184l-385 -1044q-95 -257 -197.5 -365t-267.5 -108q-28 0 -49 6l-24 145q24 -6 55 -6q57 0 99 14t87 61t80 130l39 92q-24 47 -51 123zM395 1296l305 242l111 -139l-332 -209z" />
<glyph unicode="&#xfe;" horiz-adv-x="1153" d="M162 -455v1942l174 12v-381q0 -128 -10 -213q113 164 333 164q84 0 155 -30.5t126.5 -91t87 -161t31.5 -231.5q0 -135 -42 -245.5t-116 -183t-173 -112t-214 -39.5q-92 0 -186 23q8 -98 8 -199v-241zM336 160q83 -39 203 -39q146 0 244 107t98 302q0 192 -72 290t-201 98 q-161 0 -272 -156v-602z" />
<glyph unicode="&#xff;" d="M27 1044h188l236 -665q39 -111 65 -240q25 110 70 240l227 665h184l-385 -1044q-95 -257 -197.5 -365t-267.5 -108q-28 0 -49 6l-24 145q24 -6 55 -6q57 0 99 14t87 61t80 130l39 92q-24 47 -51 123zM225 1354q0 46 31 76t76 30q44 0 75 -31t31 -75t-31 -75.5t-75 -31.5 t-75.5 31.5t-31.5 75.5zM590 1354q0 47 30.5 76.5t75.5 29.5t76 -30t31 -76q0 -44 -31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5z" />
<glyph unicode="&#x152;" horiz-adv-x="1875" d="M104 717q0 216 78.5 383.5t225.5 261.5t340 94q109 0 219 -22h788v-154h-643v-463h578v-147h-578v-516h649v-154h-805q-115 -23 -208 -23q-124 0 -228.5 37t-180.5 104t-129.5 159.5t-79.5 203.5t-26 236zM291 717q0 -141 38 -254.5t102.5 -184t145.5 -108t171 -37.5 q102 0 190 25v1118q-84 24 -190 24q-98 0 -179.5 -34t-144.5 -103t-98 -182.5t-35 -263.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1832" d="M94 522q0 156 54.5 278.5t164 195.5t258.5 73q290 0 390 -227q58 108 157.5 167.5t231.5 59.5q181 0 287 -113t106 -331q0 -53 -6 -105h-690q0 -92 20.5 -163t55 -115.5t84 -72.5t102 -39t114.5 -11q139 0 258 53l31 -137q-128 -60 -319 -60q-165 0 -277.5 52.5 t-169.5 175.5q-56 -107 -151 -167.5t-224 -60.5q-120 0 -213 44t-149.5 120t-85.5 173t-29 210zM272 522q0 -185 83 -293t216 -108q145 0 222 105.5t77 295.5q0 199 -76 300.5t-223 101.5t-223 -101.5t-76 -300.5zM1055 655h514q0 122 -68.5 197.5t-169.5 75.5 q-108 0 -181.5 -67t-94.5 -206z" />
<glyph unicode="&#x178;" horiz-adv-x="1124" d="M-2 1434h211l274 -543q48 -96 80 -178q26 66 86 178l285 543h203l-488 -869v-565h-178v565zM283 1702q0 47 30.5 76.5t75.5 29.5q44 0 75.5 -31t31.5 -75t-31.5 -75.5t-75.5 -31.5t-75 31.5t-31 75.5zM647 1702q0 46 31 76t76 30t75.5 -29.5t30.5 -76.5q0 -44 -31 -75.5 t-75 -31.5t-75.5 31.5t-31.5 75.5z" />
<glyph unicode="&#x2c6;" d="M186 1333l324 189l330 -185l-84 -116l-250 135l-236 -135z" />
<glyph unicode="&#x2dc;" d="M184 1374q29 41 74.5 67.5t101.5 26.5q63 0 153 -28.5t144 -28.5q83 0 142 62l41 -113q-29 -41 -74.5 -67.5t-101.5 -26.5q-63 0 -153 28.5t-144 28.5q-84 0 -142 -61z" />
<glyph unicode="&#x2000;" horiz-adv-x="962" />
<glyph unicode="&#x2001;" horiz-adv-x="1925" />
<glyph unicode="&#x2002;" horiz-adv-x="962" />
<glyph unicode="&#x2003;" horiz-adv-x="1925" />
<glyph unicode="&#x2004;" horiz-adv-x="641" />
<glyph unicode="&#x2005;" horiz-adv-x="481" />
<glyph unicode="&#x2006;" horiz-adv-x="320" />
<glyph unicode="&#x2007;" horiz-adv-x="320" />
<glyph unicode="&#x2008;" horiz-adv-x="240" />
<glyph unicode="&#x2009;" horiz-adv-x="385" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="794" d="M137 481v156h520v-156h-520z" />
<glyph unicode="&#x2011;" horiz-adv-x="794" d="M137 481v156h520v-156h-520z" />
<glyph unicode="&#x2012;" horiz-adv-x="794" d="M137 481v156h520v-156h-520z" />
<glyph unicode="&#x2013;" horiz-adv-x="1298" d="M137 481v154h1024v-154h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2322" d="M137 481v154h2048v-154h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="440" d="M100 1190q0 148 75 253.5t194 133.5l32 -102q-65 -13 -101 -67.5t-36 -135.5q31 -5 56.5 -35t25.5 -78q0 -54 -35.5 -88.5t-87.5 -34.5q-55 0 -89 36.5t-34 117.5z" />
<glyph unicode="&#x2019;" horiz-adv-x="462" d="M88 1110q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36t34 -117q0 -149 -74.5 -254t-193.5 -133z" />
<glyph unicode="&#x201a;" horiz-adv-x="491" d="M68 -221q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36.5t34 -117.5q0 -148 -75 -253.5t-194 -133.5z" />
<glyph unicode="&#x201c;" horiz-adv-x="849" d="M100 1190q0 148 75 253.5t194 133.5l32 -102q-65 -13 -101 -67.5t-36 -135.5q31 -5 56.5 -35t25.5 -78q0 -54 -35.5 -88.5t-87.5 -34.5q-55 0 -89 36.5t-34 117.5zM510 1190q0 149 74.5 254t193.5 133l33 -102q-65 -13 -101 -67.5t-36 -135.5q31 -5 56.5 -35t25.5 -78 q0 -54 -35.5 -88.5t-87.5 -34.5q-55 0 -89 36.5t-34 117.5z" />
<glyph unicode="&#x201d;" horiz-adv-x="872" d="M88 1110q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36t34 -117q0 -149 -74.5 -254t-193.5 -133zM498 1110q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36t34 -117 q0 -148 -75 -253.5t-194 -133.5z" />
<glyph unicode="&#x201e;" horiz-adv-x="901" d="M68 -221q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36.5t34 -117.5q0 -148 -75 -253.5t-194 -133.5zM477 -221q65 13 101 67.5t36 135.5q-31 5 -56.5 34.5t-25.5 77.5q0 54 35.5 88.5t87.5 34.5q55 0 89 -36.5t34 -117.5 q0 -149 -74.5 -254t-193.5 -133z" />
<glyph unicode="&#x2022;" horiz-adv-x="733" d="M109 657q0 112 74.5 185t183.5 73t183.5 -73t74.5 -185q0 -107 -75.5 -182.5t-182.5 -75.5t-182.5 75.5t-75.5 182.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1466" d="M123 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87zM610 94q0 54 35.5 88.5t87.5 34.5t87.5 -34.5t35.5 -88.5q0 -51 -36 -87t-87 -36t-87 36t-36 87zM1098 94q0 54 35.5 88.5t87.5 34.5t87 -34t35 -89q0 -51 -35.5 -87 t-86.5 -36t-87 36t-36 87z" />
<glyph unicode="&#x202f;" horiz-adv-x="385" />
<glyph unicode="&#x2039;" horiz-adv-x="571" d="M82 522l242 428l143 -61l-203 -365l203 -368l-148 -62z" />
<glyph unicode="&#x203a;" horiz-adv-x="571" d="M104 156l203 364l-203 369l148 61l237 -428l-241 -428z" />
<glyph unicode="&#x205f;" horiz-adv-x="481" />
<glyph unicode="&#x20ac;" horiz-adv-x="1208" d="M63 518v135h136q-2 23 -2 64q0 42 2 65h-136v136h152q48 255 215 401.5t424 146.5q132 0 274 -43l-20 -168q-47 22 -118.5 38t-131.5 16q-393 0 -463 -391h590v-136h-604q-2 -20 -2 -65q0 -44 2 -64h604v-135h-588q41 -193 160.5 -294t304.5 -101q62 0 133 15t113 36 l20 -156q-119 -51 -274 -51q-564 0 -645 551h-146z" />
<glyph unicode="&#x2122;" horiz-adv-x="1693" d="M43 1321v113h596v-113h-225v-604h-146v604h-225zM700 717l76 717h158l162 -426q17 -46 39 -127q14 45 45 127l170 426h157l70 -717h-143l-21 305q-10 137 -10 233q-29 -96 -51 -151l-158 -387h-123l-149 387q-29 75 -54 162q0 -39 -14 -244l-25 -305h-129z" />
<glyph unicode="&#x25fc;" horiz-adv-x="1044" d="M0 0v1044h1044v-1044h-1044z" />
<hkern u1="&#x22;" u2="&#xee;" k="-16" />
<hkern u1="&#x24;" u2="&#x37;" k="20" />
<hkern u1="&#x26;" u2="&#x2019;" k="145" />
<hkern u1="&#x26;" u2="v" k="76" />
<hkern u1="&#x26;" u2="f" k="16" />
<hkern u1="&#x26;" u2="V" k="111" />
<hkern u1="&#x27;" u2="&#xee;" k="-16" />
<hkern u1="&#x28;" u2="&#xf0;" k="35" />
<hkern u1="&#x28;" u2="&#xdf;" k="25" />
<hkern u1="&#x28;" u2="v" k="29" />
<hkern u1="&#x28;" u2="p" k="33" />
<hkern u1="&#x28;" u2="j" k="-47" />
<hkern u1="&#x28;" u2="f" k="23" />
<hkern u1="&#x28;" u2="&#x38;" k="27" />
<hkern u1="&#x28;" u2="&#x36;" k="35" />
<hkern u1="&#x28;" u2="&#x34;" k="20" />
<hkern u1="&#x28;" u2="&#x32;" k="25" />
<hkern u1="&#x28;" u2="&#x31;" k="41" />
<hkern u1="&#x28;" u2="&#x30;" k="41" />
<hkern u1="&#x2a;" u2="&#xf0;" k="31" />
<hkern u1="&#x2a;" u2="&#xef;" k="-57" />
<hkern u1="&#x2a;" u2="&#xee;" k="-86" />
<hkern u1="&#x2b;" u2="&#x37;" k="39" />
<hkern u1="&#x2b;" u2="&#x33;" k="20" />
<hkern u1="&#x2b;" u2="&#x32;" k="33" />
<hkern u1="&#x2c;" u2="&#x39;" k="20" />
<hkern u1="&#x2c;" u2="&#x38;" k="25" />
<hkern u1="&#x2c;" u2="&#x37;" k="47" />
<hkern u1="&#x2c;" u2="&#x36;" k="41" />
<hkern u1="&#x2c;" u2="&#x31;" k="51" />
<hkern u1="&#x2d;" u2="&#x38;" k="41" />
<hkern u1="&#x2d;" u2="&#x37;" k="49" />
<hkern u1="&#x2d;" u2="&#x36;" k="31" />
<hkern u1="&#x2d;" u2="&#x33;" k="39" />
<hkern u1="&#x2d;" u2="&#x32;" k="33" />
<hkern u1="&#x2e;" u2="v" k="53" />
<hkern u1="&#x2e;" u2="f" k="27" />
<hkern u1="&#x2e;" u2="V" k="102" />
<hkern u1="&#x2e;" u2="&#x39;" k="25" />
<hkern u1="&#x2e;" u2="&#x38;" k="25" />
<hkern u1="&#x2e;" u2="&#x37;" k="49" />
<hkern u1="&#x2e;" u2="&#x36;" k="41" />
<hkern u1="&#x2e;" u2="&#x33;" k="25" />
<hkern u1="&#x2e;" u2="&#x31;" k="51" />
<hkern u1="&#x2f;" u2="&#xef;" k="-10" />
<hkern u1="&#x2f;" u2="&#xee;" k="-45" />
<hkern u1="&#x2f;" u2="&#x34;" k="39" />
<hkern u1="&#x2f;" u2="&#x30;" k="20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="436" />
<hkern u1="&#x30;" u2="&#xb0;" k="51" />
<hkern u1="&#x30;" u2="&#x7d;" k="37" />
<hkern u1="&#x30;" u2="]" k="35" />
<hkern u1="&#x30;" u2="&#x29;" k="41" />
<hkern u1="&#x31;" u2="&#xb0;" k="20" />
<hkern u1="&#x31;" u2="&#x7d;" k="33" />
<hkern u1="&#x31;" u2="]" k="33" />
<hkern u1="&#x31;" u2="\" k="20" />
<hkern u1="&#x31;" u2="&#x29;" k="35" />
<hkern u1="&#x32;" u2="&#xb0;" k="41" />
<hkern u1="&#x32;" u2="&#x29;" k="20" />
<hkern u1="&#x33;" u2="&#xb0;" k="53" />
<hkern u1="&#x33;" u2="&#x2d;" k="20" />
<hkern u1="&#x34;" u2="&#xb0;" k="70" />
<hkern u1="&#x34;" u2="\" k="41" />
<hkern u1="&#x34;" u2="&#x37;" k="35" />
<hkern u1="&#x34;" u2="&#x31;" k="33" />
<hkern u1="&#x35;" u2="&#xf7;" k="35" />
<hkern u1="&#x35;" u2="&#xb7;" k="39" />
<hkern u1="&#x35;" u2="&#xb0;" k="27" />
<hkern u1="&#x35;" u2="&#x2d;" k="43" />
<hkern u1="&#x36;" u2="&#x2e;" k="33" />
<hkern u1="&#x36;" u2="&#x2d;" k="29" />
<hkern u1="&#x36;" u2="&#x2c;" k="33" />
<hkern u1="&#x37;" u2="&#xf7;" k="33" />
<hkern u1="&#x37;" u2="&#xb7;" k="31" />
<hkern u1="&#x37;" u2="]" k="20" />
<hkern u1="&#x37;" u2="&#x34;" k="41" />
<hkern u1="&#x37;" u2="&#x2f;" k="45" />
<hkern u1="&#x37;" u2="&#x2e;" k="72" />
<hkern u1="&#x37;" u2="&#x2d;" k="37" />
<hkern u1="&#x37;" u2="&#x2c;" k="72" />
<hkern u1="&#x37;" u2="&#x29;" k="25" />
<hkern u1="&#x38;" u2="&#xb7;" k="23" />
<hkern u1="&#x38;" u2="&#x2e;" k="35" />
<hkern u1="&#x38;" u2="&#x2d;" k="39" />
<hkern u1="&#x38;" u2="&#x2c;" k="33" />
<hkern u1="&#x38;" u2="&#x29;" k="23" />
<hkern u1="&#x39;" u2="&#xb0;" k="61" />
<hkern u1="&#x39;" u2="&#x29;" k="25" />
<hkern u1="&#x3e;" u2="&#x37;" k="35" />
<hkern u1="&#x3e;" u2="&#x32;" k="31" />
<hkern u1="&#x40;" u2="&#x2019;" k="41" />
<hkern u1="&#x40;" u2="Y" k="55" />
<hkern u1="&#x40;" u2="W" k="27" />
<hkern u1="&#x40;" u2="V" k="37" />
<hkern u1="&#x40;" u2="T" k="70" />
<hkern u1="B" u2="x" k="10" />
<hkern u1="B" u2="&#x3b;" k="18" />
<hkern u1="B" u2="&#x3a;" k="18" />
<hkern u1="B" u2="&#x2c;" k="37" />
<hkern u1="B" u2="&#x29;" k="27" />
<hkern u1="C" u2="&#xf0;" k="45" />
<hkern u1="C" u2="&#xef;" k="-25" />
<hkern u1="C" u2="&#xee;" k="-49" />
<hkern u1="E" u2="&#xf0;" k="23" />
<hkern u1="E" u2="&#xdf;" k="12" />
<hkern u1="F" u2="&#xf0;" k="27" />
<hkern u1="F" u2="&#xef;" k="-14" />
<hkern u1="F" u2="&#xee;" k="-49" />
<hkern u1="F" u2="&#xdf;" k="20" />
<hkern u1="F" u2="x" k="57" />
<hkern u1="F" u2="v" k="12" />
<hkern u1="F" u2="p" k="45" />
<hkern u1="F" u2="b" k="10" />
<hkern u1="F" u2="&#x3b;" k="35" />
<hkern u1="F" u2="&#x3a;" k="35" />
<hkern u1="F" u2="&#x2f;" k="55" />
<hkern u1="F" u2="&#x2c;" k="96" />
<hkern u1="J" u2="&#xf0;" k="16" />
<hkern u1="J" u2="&#xdf;" k="14" />
<hkern u1="K" u2="&#xf0;" k="49" />
<hkern u1="K" u2="&#xef;" k="-47" />
<hkern u1="K" u2="&#xee;" k="-33" />
<hkern u1="L" u2="&#xf0;" k="12" />
<hkern u1="L" u2="&#xb7;" k="254" />
<hkern u1="M" u2="v" k="20" />
<hkern u1="P" u2="&#xf0;" k="29" />
<hkern u1="P" u2="p" k="10" />
<hkern u1="P" u2="X" k="12" />
<hkern u1="P" u2="&#x3b;" k="18" />
<hkern u1="P" u2="&#x3a;" k="18" />
<hkern u1="P" u2="&#x2f;" k="53" />
<hkern u1="P" u2="&#x2c;" k="145" />
<hkern u1="P" u2="&#x26;" k="12" />
<hkern u1="R" u2="&#xdf;" k="23" />
<hkern u1="T" u2="&#x2122;" k="-55" />
<hkern u1="T" u2="&#xf0;" k="82" />
<hkern u1="T" u2="&#xef;" k="-72" />
<hkern u1="T" u2="&#xee;" k="-109" />
<hkern u1="T" u2="&#xdf;" k="18" />
<hkern u1="T" u2="&#x40;" k="68" />
<hkern u1="U" u2="&#xf0;" k="14" />
<hkern u1="U" u2="&#xdf;" k="20" />
<hkern u1="V" u2="&#xf0;" k="57" />
<hkern u1="V" u2="&#xef;" k="-80" />
<hkern u1="V" u2="&#xee;" k="-98" />
<hkern u1="V" u2="&#xec;" k="-29" />
<hkern u1="V" u2="&#xdf;" k="18" />
<hkern u1="V" u2="x" k="12" />
<hkern u1="V" u2="p" k="66" />
<hkern u1="V" u2="&#x40;" k="43" />
<hkern u1="V" u2="&#x3b;" k="49" />
<hkern u1="V" u2="&#x3a;" k="49" />
<hkern u1="V" u2="&#x2f;" k="59" />
<hkern u1="V" u2="&#x2c;" k="106" />
<hkern u1="V" u2="&#x26;" k="18" />
<hkern u1="W" u2="&#xf0;" k="51" />
<hkern u1="W" u2="&#xef;" k="-72" />
<hkern u1="W" u2="&#xee;" k="-96" />
<hkern u1="W" u2="&#xec;" k="-20" />
<hkern u1="W" u2="&#xdf;" k="14" />
<hkern u1="W" u2="&#x40;" k="33" />
<hkern u1="X" u2="&#xf0;" k="33" />
<hkern u1="X" u2="v" k="59" />
<hkern u1="X" u2="p" k="10" />
<hkern u1="Y" u2="&#xf0;" k="74" />
<hkern u1="Y" u2="&#xef;" k="-92" />
<hkern u1="Y" u2="&#xee;" k="-100" />
<hkern u1="Y" u2="&#xec;" k="-41" />
<hkern u1="Y" u2="&#xdf;" k="18" />
<hkern u1="Y" u2="&#x40;" k="59" />
<hkern u1="Z" u2="&#xf0;" k="41" />
<hkern u1="Z" u2="&#xee;" k="-39" />
<hkern u1="Z" u2="&#xdf;" k="12" />
<hkern u1="[" u2="&#xf0;" k="29" />
<hkern u1="[" u2="&#xef;" k="-39" />
<hkern u1="[" u2="v" k="31" />
<hkern u1="[" u2="p" k="33" />
<hkern u1="[" u2="j" k="-63" />
<hkern u1="[" u2="&#x36;" k="27" />
<hkern u1="[" u2="&#x32;" k="25" />
<hkern u1="[" u2="&#x31;" k="35" />
<hkern u1="[" u2="&#x30;" k="35" />
<hkern u1="\" u2="&#x2019;" k="61" />
<hkern u1="\" u2="v" k="43" />
<hkern u1="\" u2="j" k="-41" />
<hkern u1="\" u2="V" k="59" />
<hkern u1="\" u2="&#x36;" k="23" />
<hkern u1="\" u2="&#x31;" k="37" />
<hkern u1="a" u2="Z" k="20" />
<hkern u1="a" u2="Y" k="135" />
<hkern u1="a" u2="W" k="70" />
<hkern u1="a" u2="V" k="92" />
<hkern u1="a" u2="T" k="174" />
<hkern u1="a" u2="M" k="10" />
<hkern u1="a" u2="J" k="16" />
<hkern u1="c" u2="&#xf0;" k="16" />
<hkern u1="c" u2="Y" k="33" />
<hkern u1="c" u2="W" k="10" />
<hkern u1="c" u2="V" k="20" />
<hkern u1="c" u2="T" k="82" />
<hkern u1="d" u2="J" k="14" />
<hkern u1="e" u2="Z" k="14" />
<hkern u1="e" u2="Y" k="158" />
<hkern u1="e" u2="W" k="55" />
<hkern u1="e" u2="V" k="76" />
<hkern u1="e" u2="T" k="184" />
<hkern u1="e" u2="J" k="10" />
<hkern u1="f" u2="&#x2122;" k="-98" />
<hkern u1="f" u2="&#xef;" k="-76" />
<hkern u1="f" u2="&#xee;" k="-123" />
<hkern u1="f" u2="&#xec;" k="-23" />
<hkern u1="f" u2="&#x7d;" k="-29" />
<hkern u1="f" u2="]" k="-33" />
<hkern u1="f" u2="\" k="-20" />
<hkern u1="f" u2="Y" k="-82" />
<hkern u1="f" u2="X" k="-10" />
<hkern u1="f" u2="W" k="-47" />
<hkern u1="f" u2="V" k="-55" />
<hkern u1="f" u2="T" k="-55" />
<hkern u1="f" u2="&#x3f;" k="-16" />
<hkern u1="f" u2="&#x2f;" k="39" />
<hkern u1="f" u2="&#x2c;" k="61" />
<hkern u1="f" u2="&#x26;" k="31" />
<hkern u1="g" u2="Y" k="10" />
<hkern u1="g" u2="T" k="43" />
<hkern u1="g" u2="J" k="-20" />
<hkern u1="k" u2="Y" k="18" />
<hkern u1="k" u2="T" k="123" />
<hkern u1="l" u2="&#xb7;" k="133" />
<hkern u1="l" u2="M" k="10" />
<hkern u1="l" u2="J" k="14" />
<hkern u1="o" u2="Z" k="41" />
<hkern u1="o" u2="Y" k="145" />
<hkern u1="o" u2="X" k="41" />
<hkern u1="o" u2="W" k="70" />
<hkern u1="o" u2="V" k="82" />
<hkern u1="o" u2="T" k="174" />
<hkern u1="o" u2="S" k="16" />
<hkern u1="o" u2="J" k="14" />
<hkern u1="q" u2="&#x7d;" k="33" />
<hkern u1="q" u2="]" k="33" />
<hkern u1="q" u2="Z" k="23" />
<hkern u1="q" u2="Y" k="133" />
<hkern u1="q" u2="X" k="10" />
<hkern u1="q" u2="W" k="63" />
<hkern u1="q" u2="V" k="72" />
<hkern u1="q" u2="T" k="158" />
<hkern u1="q" u2="J" k="14" />
<hkern u1="q" u2="&#x3f;" k="27" />
<hkern u1="q" u2="&#x2a;" k="20" />
<hkern u1="q" u2="&#x29;" k="33" />
<hkern u1="r" u2="&#xf0;" k="31" />
<hkern u1="r" u2="Z" k="55" />
<hkern u1="r" u2="Y" k="18" />
<hkern u1="r" u2="X" k="61" />
<hkern u1="r" u2="T" k="86" />
<hkern u1="r" u2="M" k="23" />
<hkern u1="r" u2="J" k="10" />
<hkern u1="r" u2="&#x40;" k="25" />
<hkern u1="s" u2="Z" k="10" />
<hkern u1="s" u2="Y" k="68" />
<hkern u1="s" u2="W" k="33" />
<hkern u1="s" u2="V" k="49" />
<hkern u1="s" u2="T" k="96" />
<hkern u1="s" u2="J" k="10" />
<hkern u1="t" u2="Y" k="33" />
<hkern u1="t" u2="W" k="10" />
<hkern u1="t" u2="V" k="14" />
<hkern u1="t" u2="T" k="123" />
<hkern u1="u" u2="Z" k="25" />
<hkern u1="u" u2="Y" k="106" />
<hkern u1="u" u2="X" k="10" />
<hkern u1="u" u2="W" k="59" />
<hkern u1="u" u2="V" k="68" />
<hkern u1="u" u2="T" k="156" />
<hkern u1="u" u2="J" k="14" />
<hkern u1="v" u2="&#xf0;" k="10" />
<hkern u1="v" u2="&#x7d;" k="29" />
<hkern u1="v" u2="]" k="31" />
<hkern u1="v" u2="Z" k="43" />
<hkern u1="v" u2="Y" k="23" />
<hkern u1="v" u2="X" k="57" />
<hkern u1="v" u2="T" k="98" />
<hkern u1="v" u2="M" k="23" />
<hkern u1="v" u2="J" k="12" />
<hkern u1="v" u2="&#x2f;" k="43" />
<hkern u1="v" u2="&#x2c;" k="55" />
<hkern u1="v" u2="&#x29;" k="29" />
<hkern u1="v" u2="&#x26;" k="23" />
<hkern u1="w" u2="&#xf0;" k="8" />
<hkern u1="w" u2="Z" k="41" />
<hkern u1="w" u2="Y" k="25" />
<hkern u1="w" u2="X" k="49" />
<hkern u1="w" u2="T" k="100" />
<hkern u1="w" u2="M" k="18" />
<hkern u1="w" u2="J" k="10" />
<hkern u1="x" u2="&#xf0;" k="18" />
<hkern u1="x" u2="Y" k="29" />
<hkern u1="x" u2="V" k="12" />
<hkern u1="x" u2="T" k="127" />
<hkern u1="x" u2="&#x26;" k="18" />
<hkern u1="y" u2="&#xf0;" k="8" />
<hkern u1="y" u2="Z" k="41" />
<hkern u1="y" u2="Y" k="23" />
<hkern u1="y" u2="X" k="55" />
<hkern u1="y" u2="T" k="98" />
<hkern u1="y" u2="M" k="20" />
<hkern u1="y" u2="J" k="10" />
<hkern u1="z" u2="&#xf0;" k="8" />
<hkern u1="z" u2="Y" k="35" />
<hkern u1="z" u2="W" k="20" />
<hkern u1="z" u2="V" k="25" />
<hkern u1="z" u2="T" k="78" />
<hkern u1="z" u2="J" k="10" />
<hkern u1="&#x7b;" u2="&#xf0;" k="31" />
<hkern u1="&#x7b;" u2="&#xef;" k="-37" />
<hkern u1="&#x7b;" u2="v" k="29" />
<hkern u1="&#x7b;" u2="p" k="33" />
<hkern u1="&#x7b;" u2="j" k="-61" />
<hkern u1="&#x7b;" u2="&#x38;" k="20" />
<hkern u1="&#x7b;" u2="&#x36;" k="29" />
<hkern u1="&#x7b;" u2="&#x32;" k="25" />
<hkern u1="&#x7b;" u2="&#x31;" k="37" />
<hkern u1="&#x7b;" u2="&#x30;" k="37" />
<hkern u1="&#xa1;" u2="V" k="20" />
<hkern u1="&#xb0;" u2="&#x39;" k="53" />
<hkern u1="&#xb0;" u2="&#x36;" k="35" />
<hkern u1="&#xb0;" u2="&#x35;" k="31" />
<hkern u1="&#xb0;" u2="&#x34;" k="74" />
<hkern u1="&#xb0;" u2="&#x33;" k="29" />
<hkern u1="&#xb0;" u2="&#x31;" k="39" />
<hkern u1="&#xb0;" u2="&#x30;" k="57" />
<hkern u1="&#xb7;" u2="l" k="131" />
<hkern u1="&#xb7;" u2="L" k="33" />
<hkern u1="&#xb7;" u2="&#x38;" k="23" />
<hkern u1="&#xb7;" u2="&#x37;" k="47" />
<hkern u1="&#xb7;" u2="&#x33;" k="37" />
<hkern u1="&#xb7;" u2="&#x32;" k="33" />
<hkern u1="&#xbf;" u2="j" k="-88" />
<hkern u1="&#xde;" u2="&#x7d;" k="27" />
<hkern u1="&#xde;" u2="]" k="23" />
<hkern u1="&#xde;" u2="X" k="37" />
<hkern u1="&#xde;" u2="&#x2f;" k="39" />
<hkern u1="&#xde;" u2="&#x2c;" k="76" />
<hkern u1="&#xde;" u2="&#x29;" k="35" />
<hkern u1="&#xdf;" u2="y" k="16" />
<hkern u1="&#xdf;" u2="w" k="10" />
<hkern u1="&#xdf;" u2="v" k="16" />
<hkern u1="&#xed;" u2="&#x3f;" k="-12" />
<hkern u1="&#xee;" u2="&#x201c;" k="-27" />
<hkern u1="&#xee;" u2="&#x2018;" k="-27" />
<hkern u1="&#xee;" u2="\" k="-47" />
<hkern u1="&#xee;" u2="&#x3f;" k="-74" />
<hkern u1="&#xee;" u2="&#x2a;" k="-86" />
<hkern u1="&#xee;" u2="&#x27;" k="-20" />
<hkern u1="&#xee;" u2="&#x22;" k="-20" />
<hkern u1="&#xef;" u2="&#x7d;" k="-39" />
<hkern u1="&#xef;" u2="]" k="-41" />
<hkern u1="&#xef;" u2="\" k="-20" />
<hkern u1="&#xef;" u2="&#x3f;" k="-41" />
<hkern u1="&#xef;" u2="&#x2a;" k="-55" />
<hkern u1="&#xf0;" u2="x" k="12" />
<hkern u1="&#xf0;" u2="&#x2c;" k="27" />
<hkern u1="&#xf0;" u2="&#x2a;" k="20" />
<hkern u1="&#xf0;" u2="&#x29;" k="27" />
<hkern u1="&#xf7;" u2="&#x37;" k="41" />
<hkern u1="&#xf7;" u2="&#x33;" k="33" />
<hkern u1="&#xf7;" u2="&#x32;" k="37" />
<hkern u1="&#x2018;" u2="&#xef;" k="-14" />
<hkern u1="&#x2019;" u2="&#xef;" k="-25" />
<hkern u1="&#x2019;" u2="&#xee;" k="-57" />
<hkern u1="&#x2019;" u2="&#x40;" k="90" />
<hkern u1="&#x2019;" u2="&#x2f;" k="78" />
<hkern u1="&#x2019;" u2="&#x26;" k="43" />
<hkern u1="&#x201c;" u2="&#xef;" k="-14" />
<hkern u1="&#x201d;" u2="&#xef;" k="-25" />
<hkern u1="&#x201d;" u2="&#xee;" k="-57" />
<hkern g1="zero" 	g2="quotedbl,quotesingle" 	k="39" />
<hkern g1="two" 	g2="quotedbl,quotesingle" 	k="29" />
<hkern g1="three" 	g2="quotedbl,quotesingle" 	k="41" />
<hkern g1="four" 	g2="quotedbl,quotesingle" 	k="51" />
<hkern g1="seven" 	g2="equal" 	k="23" />
<hkern g1="eight" 	g2="equal" 	k="20" />
<hkern g1="nine" 	g2="quotedbl,quotesingle" 	k="47" />
<hkern g1="equal" 	g2="three" 	k="23" />
<hkern g1="equal" 	g2="seven" 	k="35" />
<hkern g1="germandbls" 	g2="quoteright,quotedblright" 	k="18" />
<hkern g1="eth" 	g2="quotedbl,quotesingle" 	k="23" />
<hkern g1="eth" 	g2="quoteleft,quotedblleft" 	k="25" />
<hkern g1="eth" 	g2="quoteright,quotedblright" 	k="20" />
<hkern g1="eth" 	g2="period,ellipsis" 	k="27" />
<hkern g1="eth" 	g2="quotesinglbase,quotedblbase" 	k="27" />
<hkern g1="quotedbl,quotesingle" 	g2="C,G,Ccedilla" 	k="23" />
<hkern g1="quotedbl,quotesingle" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
<hkern g1="quotedbl,quotesingle" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="78" />
<hkern g1="quotedbl,quotesingle" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
<hkern g1="quotedbl,quotesingle" 	g2="J" 	k="16" />
<hkern g1="quotedbl,quotesingle" 	g2="M" 	k="25" />
<hkern g1="quotedbl,quotesingle" 	g2="AE" 	k="113" />
<hkern g1="quotedbl,quotesingle" 	g2="period,ellipsis" 	k="248" />
<hkern g1="quotedbl,quotesingle" 	g2="quotesinglbase,quotedblbase" 	k="248" />
<hkern g1="quotedbl,quotesingle" 	g2="ampersand" 	k="43" />
<hkern g1="quotedbl,quotesingle" 	g2="comma" 	k="248" />
<hkern g1="quotedbl,quotesingle" 	g2="slash" 	k="68" />
<hkern g1="quotedbl,quotesingle" 	g2="zero" 	k="43" />
<hkern g1="quotedbl,quotesingle" 	g2="one" 	k="29" />
<hkern g1="quotedbl,quotesingle" 	g2="four" 	k="57" />
<hkern g1="quotedbl,quotesingle" 	g2="five" 	k="20" />
<hkern g1="quotedbl,quotesingle" 	g2="six" 	k="31" />
<hkern g1="quotedbl,quotesingle" 	g2="nine" 	k="33" />
<hkern g1="quotedbl,quotesingle" 	g2="at" 	k="70" />
<hkern g1="quotedbl,quotesingle" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="20" />
<hkern g1="quotedbl,quotesingle" 	g2="d,q" 	k="61" />
<hkern g1="quotedbl,quotesingle" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="49" />
<hkern g1="quotedbl,quotesingle" 	g2="g" 	k="45" />
<hkern g1="quotedbl,quotesingle" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="47" />
<hkern g1="quotedbl,quotesingle" 	g2="s" 	k="29" />
<hkern g1="quotedbl,quotesingle" 	g2="eth" 	k="39" />
<hkern g1="quotedbl,quotesingle" 	g2="guillemotleft,guilsinglleft" 	k="45" />
<hkern g1="quotedbl,quotesingle" 	g2="guillemotright,guilsinglright" 	k="20" />
<hkern g1="parenleft" 	g2="C,G,Ccedilla" 	k="33" />
<hkern g1="parenleft" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="35" />
<hkern g1="parenleft" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
<hkern g1="parenleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="33" />
<hkern g1="parenleft" 	g2="d,q" 	k="37" />
<hkern g1="parenleft" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="41" />
<hkern g1="parenleft" 	g2="g" 	k="35" />
<hkern g1="parenleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="41" />
<hkern g1="parenleft" 	g2="s" 	k="29" />
<hkern g1="parenleft" 	g2="m,n,r,ntilde" 	k="33" />
<hkern g1="parenleft" 	g2="t" 	k="29" />
<hkern g1="parenleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="37" />
<hkern g1="parenleft" 	g2="w" 	k="29" />
<hkern g1="parenleft" 	g2="y,yacute,ydieresis" 	k="29" />
<hkern g1="parenleft" 	g2="z" 	k="23" />
<hkern g1="asterisk" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="55" />
<hkern g1="asterisk" 	g2="T" 	k="-10" />
<hkern g1="asterisk" 	g2="AE" 	k="72" />
<hkern g1="asterisk" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="25" />
<hkern g1="asterisk" 	g2="d,q" 	k="33" />
<hkern g1="asterisk" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="27" />
<hkern g1="asterisk" 	g2="g" 	k="29" />
<hkern g1="asterisk" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="27" />
<hkern g1="asterisk" 	g2="s" 	k="16" />
<hkern g1="hyphen,endash,emdash" 	g2="C,G,Ccedilla" 	k="31" />
<hkern g1="hyphen,endash,emdash" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
<hkern g1="hyphen,endash,emdash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="43" />
<hkern g1="hyphen,endash,emdash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="51" />
<hkern g1="hyphen,endash,emdash" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="45" />
<hkern g1="hyphen,endash,emdash" 	g2="J" 	k="45" />
<hkern g1="hyphen,endash,emdash" 	g2="M" 	k="39" />
<hkern g1="hyphen,endash,emdash" 	g2="S" 	k="74" />
<hkern g1="hyphen,endash,emdash" 	g2="T" 	k="115" />
<hkern g1="hyphen,endash,emdash" 	g2="V" 	k="80" />
<hkern g1="hyphen,endash,emdash" 	g2="W" 	k="70" />
<hkern g1="hyphen,endash,emdash" 	g2="X" 	k="80" />
<hkern g1="hyphen,endash,emdash" 	g2="Y,Yacute,Ydieresis" 	k="109" />
<hkern g1="hyphen,endash,emdash" 	g2="Z" 	k="72" />
<hkern g1="hyphen,endash,emdash" 	g2="AE" 	k="51" />
<hkern g1="hyphen,endash,emdash" 	g2="t" 	k="27" />
<hkern g1="hyphen,endash,emdash" 	g2="z" 	k="35" />
<hkern g1="hyphen,endash,emdash" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="31" />
<hkern g1="hyphen,endash,emdash" 	g2="x" 	k="33" />
<hkern g1="period" 	g2="quotedbl,quotesingle" 	k="248" />
<hkern g1="period" 	g2="quoteleft,quotedblleft" 	k="258" />
<hkern g1="period" 	g2="quoteright,quotedblright" 	k="236" />
<hkern g1="period" 	g2="C,G,Ccedilla" 	k="55" />
<hkern g1="period" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
<hkern g1="period" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="51" />
<hkern g1="period" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
<hkern g1="period" 	g2="J" 	k="31" />
<hkern g1="period" 	g2="T" 	k="102" />
<hkern g1="period" 	g2="W" 	k="88" />
<hkern g1="period" 	g2="Y,Yacute,Ydieresis" 	k="104" />
<hkern g1="period" 	g2="t" 	k="31" />
<hkern g1="period" 	g2="w" 	k="43" />
<hkern g1="period" 	g2="y,yacute,ydieresis" 	k="53" />
<hkern g1="slash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="27" />
<hkern g1="slash" 	g2="Y,Yacute,Ydieresis" 	k="-12" />
<hkern g1="slash" 	g2="AE" 	k="20" />
<hkern g1="slash" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="23" />
<hkern g1="slash" 	g2="g" 	k="29" />
<hkern g1="slash" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="23" />
<hkern g1="at" 	g2="quotedbl,quotesingle" 	k="49" />
<hkern g1="bracketleft" 	g2="C,G,Ccedilla" 	k="23" />
<hkern g1="bracketleft" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
<hkern g1="bracketleft" 	g2="J" 	k="-41" />
<hkern g1="bracketleft" 	g2="Y,Yacute,Ydieresis" 	k="-14" />
<hkern g1="bracketleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
<hkern g1="bracketleft" 	g2="d,q" 	k="29" />
<hkern g1="bracketleft" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="35" />
<hkern g1="bracketleft" 	g2="g" 	k="35" />
<hkern g1="bracketleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
<hkern g1="bracketleft" 	g2="s" 	k="27" />
<hkern g1="bracketleft" 	g2="m,n,r,ntilde" 	k="33" />
<hkern g1="bracketleft" 	g2="t" 	k="25" />
<hkern g1="bracketleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="35" />
<hkern g1="bracketleft" 	g2="w" 	k="29" />
<hkern g1="bracketleft" 	g2="y,yacute,ydieresis" 	k="31" />
<hkern g1="bracketleft" 	g2="z" 	k="20" />
<hkern g1="backslash" 	g2="quotedbl,quotesingle" 	k="68" />
<hkern g1="backslash" 	g2="C,G,Ccedilla" 	k="29" />
<hkern g1="backslash" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
<hkern g1="backslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="35" />
<hkern g1="backslash" 	g2="J" 	k="-16" />
<hkern g1="backslash" 	g2="T" 	k="63" />
<hkern g1="backslash" 	g2="W" 	k="53" />
<hkern g1="backslash" 	g2="Y,Yacute,Ydieresis" 	k="63" />
<hkern g1="backslash" 	g2="t" 	k="29" />
<hkern g1="backslash" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
<hkern g1="backslash" 	g2="w" 	k="39" />
<hkern g1="backslash" 	g2="y,yacute,ydieresis" 	k="43" />
<hkern g1="braceleft" 	g2="C,G,Ccedilla" 	k="27" />
<hkern g1="braceleft" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="27" />
<hkern g1="braceleft" 	g2="J" 	k="-39" />
<hkern g1="braceleft" 	g2="Y,Yacute,Ydieresis" 	k="-12" />
<hkern g1="braceleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="29" />
<hkern g1="braceleft" 	g2="d,q" 	k="33" />
<hkern g1="braceleft" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="37" />
<hkern g1="braceleft" 	g2="g" 	k="35" />
<hkern g1="braceleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="37" />
<hkern g1="braceleft" 	g2="s" 	k="27" />
<hkern g1="braceleft" 	g2="m,n,r,ntilde" 	k="33" />
<hkern g1="braceleft" 	g2="t" 	k="25" />
<hkern g1="braceleft" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="35" />
<hkern g1="braceleft" 	g2="w" 	k="29" />
<hkern g1="braceleft" 	g2="y,yacute,ydieresis" 	k="29" />
<hkern g1="exclamdown" 	g2="T" 	k="70" />
<hkern g1="exclamdown" 	g2="Y,Yacute,Ydieresis" 	k="33" />
<hkern g1="questiondown" 	g2="J" 	k="-47" />
<hkern g1="questiondown" 	g2="T" 	k="74" />
<hkern g1="questiondown" 	g2="Y,Yacute,Ydieresis" 	k="33" />
<hkern g1="quoteleft,quotedblleft" 	g2="C,G,Ccedilla" 	k="20" />
<hkern g1="quoteleft,quotedblleft" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="78" />
<hkern g1="quoteleft,quotedblleft" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
<hkern g1="quoteleft,quotedblleft" 	g2="J" 	k="16" />
<hkern g1="quoteleft,quotedblleft" 	g2="M" 	k="25" />
<hkern g1="quoteleft,quotedblleft" 	g2="AE" 	k="111" />
<hkern g1="quoteleft,quotedblleft" 	g2="period,ellipsis" 	k="256" />
<hkern g1="quoteleft,quotedblleft" 	g2="comma" 	k="256" />
<hkern g1="quoteleft,quotedblleft" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="23" />
<hkern g1="quoteleft,quotedblleft" 	g2="d,q" 	k="63" />
<hkern g1="quoteleft,quotedblleft" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="49" />
<hkern g1="quoteleft,quotedblleft" 	g2="g" 	k="47" />
<hkern g1="quoteleft,quotedblleft" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="49" />
<hkern g1="quoteleft,quotedblleft" 	g2="s" 	k="33" />
<hkern g1="quoteleft,quotedblleft" 	g2="eth" 	k="41" />
<hkern g1="quoteright,quotedblright" 	g2="C,G,Ccedilla" 	k="33" />
<hkern g1="quoteright,quotedblright" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
<hkern g1="quoteright,quotedblright" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="84" />
<hkern g1="quoteright,quotedblright" 	g2="M" 	k="25" />
<hkern g1="quoteright,quotedblright" 	g2="AE" 	k="121" />
<hkern g1="quoteright,quotedblright" 	g2="period,ellipsis" 	k="276" />
<hkern g1="quoteright,quotedblright" 	g2="quotesinglbase,quotedblbase" 	k="276" />
<hkern g1="quoteright,quotedblright" 	g2="comma" 	k="276" />
<hkern g1="quoteright,quotedblright" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="37" />
<hkern g1="quoteright,quotedblright" 	g2="d,q" 	k="82" />
<hkern g1="quoteright,quotedblright" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="68" />
<hkern g1="quoteright,quotedblright" 	g2="g" 	k="63" />
<hkern g1="quoteright,quotedblright" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="66" />
<hkern g1="quoteright,quotedblright" 	g2="s" 	k="45" />
<hkern g1="quoteright,quotedblright" 	g2="eth" 	k="39" />
<hkern g1="quoteright,quotedblright" 	g2="guillemotleft,guilsinglleft" 	k="68" />
<hkern g1="quoteright,quotedblright" 	g2="guillemotright,guilsinglright" 	k="41" />
<hkern g1="quoteright,quotedblright" 	g2="m,n,r,ntilde" 	k="23" />
<hkern g1="quoteright,quotedblright" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
<hkern g1="quoteright,quotedblright" 	g2="hyphen,endash,emdash" 	k="35" />
<hkern g1="quoteright,quotedblright" 	g2="p" 	k="23" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="quotedbl,quotesingle" 	k="248" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="quoteright,quotedblright" 	k="236" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="C,G,Ccedilla" 	k="55" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="57" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="51" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="31" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="J" 	k="31" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="T" 	k="100" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="V" 	k="102" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="W" 	k="88" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="Y,Yacute,Ydieresis" 	k="104" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="eth" 	k="16" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="t" 	k="31" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="w" 	k="43" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="y,yacute,ydieresis" 	k="53" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="27" />
<hkern g1="quotesinglbase,quotedblbase" 	g2="v" 	k="53" />
<hkern g1="guillemotleft,guilsinglleft" 	g2="quotedbl,quotesingle" 	k="20" />
<hkern g1="guillemotleft,guilsinglleft" 	g2="T" 	k="78" />
<hkern g1="guillemotleft,guilsinglleft" 	g2="V" 	k="35" />
<hkern g1="guillemotleft,guilsinglleft" 	g2="W" 	k="25" />
<hkern g1="guillemotleft,guilsinglleft" 	g2="Y,Yacute,Ydieresis" 	k="53" />
<hkern g1="guillemotright,guilsinglright" 	g2="quotedbl,quotesingle" 	k="45" />
<hkern g1="guillemotright,guilsinglright" 	g2="quoteright,quotedblright" 	k="39" />
<hkern g1="guillemotright,guilsinglright" 	g2="S" 	k="23" />
<hkern g1="guillemotright,guilsinglright" 	g2="T" 	k="84" />
<hkern g1="guillemotright,guilsinglright" 	g2="V" 	k="49" />
<hkern g1="guillemotright,guilsinglright" 	g2="W" 	k="41" />
<hkern g1="guillemotright,guilsinglright" 	g2="X" 	k="33" />
<hkern g1="guillemotright,guilsinglright" 	g2="Y,Yacute,Ydieresis" 	k="72" />
<hkern g1="guillemotright,guilsinglright" 	g2="Z" 	k="37" />
<hkern g1="guillemotright,guilsinglright" 	g2="z" 	k="31" />
<hkern g1="guillemotright,guilsinglright" 	g2="x" 	k="29" />
<hkern g1="ampersand" 	g2="quotedbl,quotesingle" 	k="145" />
<hkern g1="ampersand" 	g2="C,G,Ccedilla" 	k="12" />
<hkern g1="ampersand" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
<hkern g1="ampersand" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="18" />
<hkern g1="ampersand" 	g2="T" 	k="150" />
<hkern g1="ampersand" 	g2="W" 	k="92" />
<hkern g1="ampersand" 	g2="Y,Yacute,Ydieresis" 	k="147" />
<hkern g1="ampersand" 	g2="t" 	k="20" />
<hkern g1="ampersand" 	g2="w" 	k="51" />
<hkern g1="ampersand" 	g2="y,yacute,ydieresis" 	k="76" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quotedbl,quotesingle" 	k="76" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteleft,quotedblleft" 	k="76" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="quoteright,quotedblright" 	k="68" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="T" 	k="106" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="V" 	k="72" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="W" 	k="53" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="Y,Yacute,Ydieresis" 	k="102" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="t" 	k="25" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="w" 	k="41" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="y,yacute,ydieresis" 	k="55" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="18" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="hyphen,endash,emdash" 	k="51" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="v" 	k="55" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="asterisk" 	k="53" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	g2="backslash" 	k="31" />
<hkern g1="B" 	g2="quotedbl,quotesingle" 	k="20" />
<hkern g1="B" 	g2="quoteleft,quotedblleft" 	k="16" />
<hkern g1="B" 	g2="quoteright,quotedblright" 	k="16" />
<hkern g1="B" 	g2="T" 	k="10" />
<hkern g1="B" 	g2="period,ellipsis" 	k="37" />
<hkern g1="B" 	g2="quotesinglbase,quotedblbase" 	k="37" />
<hkern g1="B" 	g2="z" 	k="10" />
<hkern g1="B" 	g2="hyphen,endash,emdash" 	k="35" />
<hkern g1="C,Ccedilla" 	g2="C,G,Ccedilla" 	k="31" />
<hkern g1="C,Ccedilla" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
<hkern g1="C,Ccedilla" 	g2="ampersand" 	k="10" />
<hkern g1="C,Ccedilla" 	g2="d,q" 	k="35" />
<hkern g1="C,Ccedilla" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="43" />
<hkern g1="C,Ccedilla" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="51" />
<hkern g1="C,Ccedilla" 	g2="guillemotleft,guilsinglleft" 	k="23" />
<hkern g1="C,Ccedilla" 	g2="t" 	k="14" />
<hkern g1="C,Ccedilla" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="27" />
<hkern g1="C,Ccedilla" 	g2="w" 	k="23" />
<hkern g1="C,Ccedilla" 	g2="y,yacute,ydieresis" 	k="25" />
<hkern g1="C,Ccedilla" 	g2="hyphen,endash,emdash" 	k="63" />
<hkern g1="C,Ccedilla" 	g2="v" 	k="25" />
<hkern g1="D,Eth" 	g2="T" 	k="33" />
<hkern g1="D,Eth" 	g2="X" 	k="23" />
<hkern g1="D,Eth" 	g2="Y,Yacute,Ydieresis" 	k="20" />
<hkern g1="D,Eth" 	g2="Z" 	k="14" />
<hkern g1="D,Eth" 	g2="AE" 	k="18" />
<hkern g1="D,Eth" 	g2="period,ellipsis" 	k="66" />
<hkern g1="D,Eth" 	g2="quotesinglbase,quotedblbase" 	k="66" />
<hkern g1="D,Eth" 	g2="comma" 	k="66" />
<hkern g1="D,Eth" 	g2="slash" 	k="37" />
<hkern g1="D,Eth" 	g2="hyphen,endash,emdash" 	k="35" />
<hkern g1="D,Eth" 	g2="parenright" 	k="35" />
<hkern g1="D,Eth" 	g2="bracketright" 	k="25" />
<hkern g1="D,Eth" 	g2="braceright" 	k="27" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="d,q" 	k="18" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="18" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="g" 	k="14" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="m,n,r,ntilde" 	k="18" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="t" 	k="20" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="25" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="w" 	k="27" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="y,yacute,ydieresis" 	k="29" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="18" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="hyphen,endash,emdash" 	k="57" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="p" 	k="18" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="v" 	k="29" />
<hkern g1="F" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="59" />
<hkern g1="F" 	g2="AE" 	k="137" />
<hkern g1="F" 	g2="period,ellipsis" 	k="96" />
<hkern g1="F" 	g2="quotesinglbase,quotedblbase" 	k="96" />
<hkern g1="F" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="70" />
<hkern g1="F" 	g2="d,q" 	k="25" />
<hkern g1="F" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="23" />
<hkern g1="F" 	g2="g" 	k="47" />
<hkern g1="F" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="20" />
<hkern g1="F" 	g2="s" 	k="23" />
<hkern g1="F" 	g2="m,n,r,ntilde" 	k="45" />
<hkern g1="F" 	g2="t" 	k="20" />
<hkern g1="F" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="35" />
<hkern g1="F" 	g2="w" 	k="12" />
<hkern g1="F" 	g2="y,yacute,ydieresis" 	k="12" />
<hkern g1="F" 	g2="z" 	k="47" />
<hkern g1="F" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="18" />
<hkern g1="F" 	g2="hyphen,endash,emdash" 	k="49" />
<hkern g1="F" 	g2="h,k,thorn" 	k="10" />
<hkern g1="F" 	g2="i,j,igrave,iacute,icircumflex,idieresis" 	k="10" />
<hkern g1="F" 	g2="l" 	k="10" />
<hkern g1="G" 	g2="quotedbl,quotesingle" 	k="23" />
<hkern g1="G" 	g2="quoteleft,quotedblleft" 	k="25" />
<hkern g1="G" 	g2="quoteright,quotedblright" 	k="29" />
<hkern g1="G" 	g2="t" 	k="12" />
<hkern g1="G" 	g2="w" 	k="10" />
<hkern g1="G" 	g2="y,yacute,ydieresis" 	k="14" />
<hkern g1="G" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="12" />
<hkern g1="G" 	g2="hyphen,endash,emdash" 	k="35" />
<hkern g1="G" 	g2="v" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quotedbl,quotesingle" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteleft,quotedblleft" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quoteright,quotedblright" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="period,ellipsis" 	k="31" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="quotesinglbase,quotedblbase" 	k="31" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="comma" 	k="31" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="d,q" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="g" 	k="23" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="s" 	k="10" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="eth" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="m,n,r,ntilde" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="t" 	k="10" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="w" 	k="10" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="y,yacute,ydieresis" 	k="12" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="z" 	k="12" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="hyphen,endash,emdash" 	k="45" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="p" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="v" 	k="12" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="h,k,thorn" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="i,j,igrave,iacute,icircumflex,idieresis" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="l" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="colon" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="semicolon" 	k="16" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="b" 	k="14" />
<hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="germandbls" 	k="14" />
<hkern g1="J" 	g2="period,ellipsis" 	k="33" />
<hkern g1="J" 	g2="quotesinglbase,quotedblbase" 	k="31" />
<hkern g1="J" 	g2="comma" 	k="31" />
<hkern g1="J" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="10" />
<hkern g1="J" 	g2="d,q" 	k="14" />
<hkern g1="J" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="14" />
<hkern g1="J" 	g2="g" 	k="23" />
<hkern g1="J" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
<hkern g1="J" 	g2="s" 	k="10" />
<hkern g1="J" 	g2="m,n,r,ntilde" 	k="14" />
<hkern g1="J" 	g2="t" 	k="10" />
<hkern g1="J" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="16" />
<hkern g1="J" 	g2="w" 	k="10" />
<hkern g1="J" 	g2="y,yacute,ydieresis" 	k="10" />
<hkern g1="J" 	g2="z" 	k="10" />
<hkern g1="J" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="10" />
<hkern g1="J" 	g2="hyphen,endash,emdash" 	k="45" />
<hkern g1="J" 	g2="p" 	k="14" />
<hkern g1="J" 	g2="v" 	k="10" />
<hkern g1="J" 	g2="h,k,thorn" 	k="14" />
<hkern g1="J" 	g2="i,j,igrave,iacute,icircumflex,idieresis" 	k="14" />
<hkern g1="J" 	g2="l" 	k="14" />
<hkern g1="J" 	g2="colon" 	k="16" />
<hkern g1="J" 	g2="semicolon" 	k="16" />
<hkern g1="J" 	g2="b" 	k="14" />
<hkern g1="K" 	g2="C,G,Ccedilla" 	k="55" />
<hkern g1="K" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="53" />
<hkern g1="K" 	g2="d,q" 	k="41" />
<hkern g1="K" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="53" />
<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="66" />
<hkern g1="K" 	g2="t" 	k="20" />
<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
<hkern g1="K" 	g2="w" 	k="55" />
<hkern g1="K" 	g2="y,yacute,ydieresis" 	k="74" />
<hkern g1="K" 	g2="hyphen,endash,emdash" 	k="78" />
<hkern g1="K" 	g2="v" 	k="74" />
<hkern g1="L" 	g2="quotedbl,quotesingle" 	k="145" />
<hkern g1="L" 	g2="quoteleft,quotedblleft" 	k="143" />
<hkern g1="L" 	g2="quoteright,quotedblright" 	k="143" />
<hkern g1="L" 	g2="C,G,Ccedilla" 	k="37" />
<hkern g1="L" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="45" />
<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="37" />
<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-10" />
<hkern g1="L" 	g2="T" 	k="166" />
<hkern g1="L" 	g2="V" 	k="145" />
<hkern g1="L" 	g2="W" 	k="104" />
<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="186" />
<hkern g1="L" 	g2="AE" 	k="-51" />
<hkern g1="L" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="12" />
<hkern g1="L" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
<hkern g1="L" 	g2="t" 	k="31" />
<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="12" />
<hkern g1="L" 	g2="w" 	k="80" />
<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="117" />
<hkern g1="L" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
<hkern g1="L" 	g2="hyphen,endash,emdash" 	k="160" />
<hkern g1="L" 	g2="v" 	k="117" />
<hkern g1="L" 	g2="asterisk" 	k="135" />
<hkern g1="L" 	g2="backslash" 	k="43" />
<hkern g1="L" 	g2="question" 	k="20" />
<hkern g1="M" 	g2="quotedbl,quotesingle" 	k="25" />
<hkern g1="M" 	g2="quoteleft,quotedblleft" 	k="25" />
<hkern g1="M" 	g2="quoteright,quotedblright" 	k="23" />
<hkern g1="M" 	g2="Y,Yacute,Ydieresis" 	k="10" />
<hkern g1="M" 	g2="g" 	k="12" />
<hkern g1="M" 	g2="t" 	k="14" />
<hkern g1="M" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="10" />
<hkern g1="M" 	g2="w" 	k="16" />
<hkern g1="M" 	g2="y,yacute,ydieresis" 	k="20" />
<hkern g1="M" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="14" />
<hkern g1="M" 	g2="hyphen,endash,emdash" 	k="39" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotedbl,quotesingle" 	k="18" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quoteleft,quotedblleft" 	k="16" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="T" 	k="31" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="X" 	k="16" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Y,Yacute,Ydieresis" 	k="14" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="Z" 	k="12" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="period,ellipsis" 	k="61" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="quotesinglbase,quotedblbase" 	k="59" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="comma" 	k="59" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="slash" 	k="33" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="hyphen,endash,emdash" 	k="33" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="parenright" 	k="33" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="bracketright" 	k="23" />
<hkern g1="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="braceright" 	k="25" />
<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="68" />
<hkern g1="P" 	g2="AE" 	k="180" />
<hkern g1="P" 	g2="period,ellipsis" 	k="145" />
<hkern g1="P" 	g2="quotesinglbase,quotedblbase" 	k="145" />
<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="12" />
<hkern g1="P" 	g2="d,q" 	k="25" />
<hkern g1="P" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="20" />
<hkern g1="P" 	g2="g" 	k="29" />
<hkern g1="P" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="18" />
<hkern g1="P" 	g2="guillemotleft,guilsinglleft" 	k="23" />
<hkern g1="P" 	g2="m,n,r,ntilde" 	k="10" />
<hkern g1="P" 	g2="hyphen,endash,emdash" 	k="61" />
<hkern g1="R" 	g2="T" 	k="23" />
<hkern g1="R" 	g2="ampersand" 	k="12" />
<hkern g1="R" 	g2="g" 	k="20" />
<hkern g1="R" 	g2="m,n,r,ntilde" 	k="25" />
<hkern g1="R" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
<hkern g1="R" 	g2="hyphen,endash,emdash" 	k="37" />
<hkern g1="R" 	g2="p" 	k="25" />
<hkern g1="R" 	g2="h,k,thorn" 	k="23" />
<hkern g1="R" 	g2="i,j,igrave,iacute,icircumflex,idieresis" 	k="25" />
<hkern g1="R" 	g2="l" 	k="31" />
<hkern g1="R" 	g2="b" 	k="20" />
<hkern g1="S" 	g2="quoteright,quotedblright" 	k="25" />
<hkern g1="S" 	g2="period,ellipsis" 	k="27" />
<hkern g1="S" 	g2="quotesinglbase,quotedblbase" 	k="27" />
<hkern g1="S" 	g2="comma" 	k="27" />
<hkern g1="S" 	g2="t" 	k="18" />
<hkern g1="S" 	g2="w" 	k="23" />
<hkern g1="S" 	g2="y,yacute,ydieresis" 	k="33" />
<hkern g1="S" 	g2="z" 	k="16" />
<hkern g1="S" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
<hkern g1="S" 	g2="x" 	k="25" />
<hkern g1="S" 	g2="hyphen,endash,emdash" 	k="35" />
<hkern g1="S" 	g2="v" 	k="33" />
<hkern g1="S" 	g2="colon" 	k="20" />
<hkern g1="S" 	g2="semicolon" 	k="20" />
<hkern g1="T" 	g2="C,G,Ccedilla" 	k="41" />
<hkern g1="T" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="39" />
<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="106" />
<hkern g1="T" 	g2="M" 	k="10" />
<hkern g1="T" 	g2="AE" 	k="158" />
<hkern g1="T" 	g2="period,ellipsis" 	k="102" />
<hkern g1="T" 	g2="quotesinglbase,quotedblbase" 	k="102" />
<hkern g1="T" 	g2="ampersand" 	k="37" />
<hkern g1="T" 	g2="comma" 	k="102" />
<hkern g1="T" 	g2="slash" 	k="63" />
<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="125" />
<hkern g1="T" 	g2="d,q" 	k="188" />
<hkern g1="T" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="180" />
<hkern g1="T" 	g2="g" 	k="190" />
<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="180" />
<hkern g1="T" 	g2="s" 	k="176" />
<hkern g1="T" 	g2="guillemotleft,guilsinglleft" 	k="84" />
<hkern g1="T" 	g2="guillemotright,guilsinglright" 	k="80" />
<hkern g1="T" 	g2="m,n,r,ntilde" 	k="156" />
<hkern g1="T" 	g2="t" 	k="57" />
<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="158" />
<hkern g1="T" 	g2="w" 	k="100" />
<hkern g1="T" 	g2="y,yacute,ydieresis" 	k="98" />
<hkern g1="T" 	g2="z" 	k="78" />
<hkern g1="T" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="41" />
<hkern g1="T" 	g2="x" 	k="115" />
<hkern g1="T" 	g2="hyphen,endash,emdash" 	k="115" />
<hkern g1="T" 	g2="p" 	k="156" />
<hkern g1="T" 	g2="v" 	k="98" />
<hkern g1="T" 	g2="asterisk" 	k="-10" />
<hkern g1="T" 	g2="colon" 	k="92" />
<hkern g1="T" 	g2="semicolon" 	k="92" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="period,ellipsis" 	k="53" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="quotesinglbase,quotedblbase" 	k="53" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="comma" 	k="53" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="slash" 	k="35" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="14" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="d,q" 	k="14" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="12" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="g" 	k="29" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="12" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="s" 	k="16" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="m,n,r,ntilde" 	k="20" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="z" 	k="16" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="x" 	k="10" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="hyphen,endash,emdash" 	k="43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="p" 	k="20" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="parenright" 	k="20" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="i,j,igrave,iacute,icircumflex,idieresis" 	k="16" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="colon" 	k="25" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="semicolon" 	k="25" />
<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="72" />
<hkern g1="V" 	g2="AE" 	k="123" />
<hkern g1="V" 	g2="period,ellipsis" 	k="106" />
<hkern g1="V" 	g2="quotesinglbase,quotedblbase" 	k="106" />
<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="74" />
<hkern g1="V" 	g2="d,q" 	k="100" />
<hkern g1="V" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="88" />
<hkern g1="V" 	g2="g" 	k="106" />
<hkern g1="V" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="86" />
<hkern g1="V" 	g2="s" 	k="76" />
<hkern g1="V" 	g2="guillemotleft,guilsinglleft" 	k="49" />
<hkern g1="V" 	g2="guillemotright,guilsinglright" 	k="35" />
<hkern g1="V" 	g2="m,n,r,ntilde" 	k="66" />
<hkern g1="V" 	g2="t" 	k="10" />
<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="59" />
<hkern g1="V" 	g2="z" 	k="18" />
<hkern g1="V" 	g2="hyphen,endash,emdash" 	k="80" />
<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="53" />
<hkern g1="W" 	g2="AE" 	k="94" />
<hkern g1="W" 	g2="period,ellipsis" 	k="90" />
<hkern g1="W" 	g2="quotesinglbase,quotedblbase" 	k="90" />
<hkern g1="W" 	g2="ampersand" 	k="12" />
<hkern g1="W" 	g2="comma" 	k="90" />
<hkern g1="W" 	g2="slash" 	k="53" />
<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="51" />
<hkern g1="W" 	g2="d,q" 	k="78" />
<hkern g1="W" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="74" />
<hkern g1="W" 	g2="g" 	k="84" />
<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="74" />
<hkern g1="W" 	g2="s" 	k="55" />
<hkern g1="W" 	g2="guillemotleft,guilsinglleft" 	k="41" />
<hkern g1="W" 	g2="guillemotright,guilsinglright" 	k="25" />
<hkern g1="W" 	g2="m,n,r,ntilde" 	k="53" />
<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="47" />
<hkern g1="W" 	g2="z" 	k="16" />
<hkern g1="W" 	g2="hyphen,endash,emdash" 	k="72" />
<hkern g1="W" 	g2="p" 	k="53" />
<hkern g1="W" 	g2="colon" 	k="41" />
<hkern g1="W" 	g2="semicolon" 	k="41" />
<hkern g1="X" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
<hkern g1="X" 	g2="d,q" 	k="25" />
<hkern g1="X" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="29" />
<hkern g1="X" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="35" />
<hkern g1="X" 	g2="guillemotleft,guilsinglleft" 	k="31" />
<hkern g1="X" 	g2="m,n,r,ntilde" 	k="10" />
<hkern g1="X" 	g2="t" 	k="33" />
<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="31" />
<hkern g1="X" 	g2="w" 	k="51" />
<hkern g1="X" 	g2="y,yacute,ydieresis" 	k="59" />
<hkern g1="X" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
<hkern g1="X" 	g2="hyphen,endash,emdash" 	k="80" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,Ccedilla" 	k="18" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="16" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="100" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-14" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="AE" 	k="154" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="period,ellipsis" 	k="106" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="106" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="ampersand" 	k="29" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="comma" 	k="106" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="slash" 	k="63" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" 	k="104" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="d,q" 	k="147" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="147" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="g" 	k="152" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="147" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="152" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotleft,guilsinglleft" 	k="72" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="guillemotright,guilsinglright" 	k="53" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,r,ntilde" 	k="98" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="t" 	k="31" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="84" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="w" 	k="23" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="y,yacute,ydieresis" 	k="20" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="31" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="23" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="20" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,endash,emdash" 	k="109" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="p" 	k="98" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="v" 	k="20" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="backslash" 	k="-10" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="bracketright" 	k="-25" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="braceright" 	k="-23" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="colon" 	k="66" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="semicolon" 	k="66" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="question" 	k="-14" />
<hkern g1="Z" 	g2="C,G,Ccedilla" 	k="12" />
<hkern g1="Z" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
<hkern g1="Z" 	g2="d,q" 	k="31" />
<hkern g1="Z" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="37" />
<hkern g1="Z" 	g2="g" 	k="18" />
<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
<hkern g1="Z" 	g2="guillemotleft,guilsinglleft" 	k="39" />
<hkern g1="Z" 	g2="m,n,r,ntilde" 	k="25" />
<hkern g1="Z" 	g2="t" 	k="25" />
<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="37" />
<hkern g1="Z" 	g2="w" 	k="31" />
<hkern g1="Z" 	g2="y,yacute,ydieresis" 	k="29" />
<hkern g1="Z" 	g2="f,uniFB01,uniFB02,uniFB03,uniFB04" 	k="20" />
<hkern g1="Z" 	g2="hyphen,endash,emdash" 	k="80" />
<hkern g1="Z" 	g2="p" 	k="25" />
<hkern g1="Z" 	g2="v" 	k="29" />
<hkern g1="Z" 	g2="colon" 	k="16" />
<hkern g1="Z" 	g2="semicolon" 	k="16" />
<hkern g1="Thorn" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="16" />
<hkern g1="Thorn" 	g2="T" 	k="25" />
<hkern g1="Thorn" 	g2="Y,Yacute,Ydieresis" 	k="20" />
<hkern g1="Thorn" 	g2="Z" 	k="27" />
<hkern g1="Thorn" 	g2="AE" 	k="43" />
<hkern g1="Thorn" 	g2="period,ellipsis" 	k="76" />
<hkern g1="Thorn" 	g2="quotesinglbase,quotedblbase" 	k="76" />
<hkern g1="Thorn" 	g2="hyphen,endash,emdash" 	k="31" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle" 	k="35" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteleft,quotedblleft" 	k="37" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quoteright,quotedblright" 	k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="23" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="asterisk" 	k="25" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="backslash" 	k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="parenright" 	k="33" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="bracketright" 	k="33" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="braceright" 	k="33" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="question" 	k="29" />
<hkern g1="c,ccedilla" 	g2="C,G,Ccedilla" 	k="10" />
<hkern g1="c,ccedilla" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="10" />
<hkern g1="c,ccedilla" 	g2="ampersand" 	k="16" />
<hkern g1="c,ccedilla" 	g2="d,q" 	k="12" />
<hkern g1="c,ccedilla" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="12" />
<hkern g1="c,ccedilla" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
<hkern g1="c,ccedilla" 	g2="guillemotleft,guilsinglleft" 	k="20" />
<hkern g1="c,ccedilla" 	g2="hyphen,endash,emdash" 	k="27" />
<hkern g1="d" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
<hkern g1="d" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quotedbl,quotesingle" 	k="29" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteleft,quotedblleft" 	k="35" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="quoteright,quotedblright" 	k="25" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="parenright" 	k="31" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="bracketright" 	k="27" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="braceright" 	k="31" />
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" 	g2="question" 	k="20" />
<hkern g1="f" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="74" />
<hkern g1="f" 	g2="period,ellipsis" 	k="61" />
<hkern g1="f" 	g2="quotesinglbase,quotedblbase" 	k="61" />
<hkern g1="f" 	g2="d,q" 	k="25" />
<hkern g1="f" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="18" />
<hkern g1="f" 	g2="g" 	k="16" />
<hkern g1="f" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="16" />
<hkern g1="f" 	g2="eth" 	k="33" />
<hkern g1="f" 	g2="guillemotleft,guilsinglleft" 	k="37" />
<hkern g1="f" 	g2="hyphen,endash,emdash" 	k="63" />
<hkern g1="g" 	g2="ampersand" 	k="14" />
<hkern g1="g" 	g2="guillemotleft,guilsinglleft" 	k="20" />
<hkern g1="g" 	g2="hyphen,endash,emdash" 	k="18" />
<hkern g1="i,j,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
<hkern g1="i,j,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="i,j,igrave,iacute,icircumflex,idieresis,uniFB01,uniFB03" 	g2="J" 	k="14" />
<hkern g1="k" 	g2="C,G,Ccedilla" 	k="18" />
<hkern g1="k" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="20" />
<hkern g1="k" 	g2="ampersand" 	k="10" />
<hkern g1="k" 	g2="d,q" 	k="39" />
<hkern g1="k" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="43" />
<hkern g1="k" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="43" />
<hkern g1="k" 	g2="eth" 	k="51" />
<hkern g1="k" 	g2="guillemotleft,guilsinglleft" 	k="20" />
<hkern g1="k" 	g2="hyphen,endash,emdash" 	k="47" />
<hkern g1="l,uniFB02,uniFB04" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="23" />
<hkern g1="l,uniFB02,uniFB04" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle" 	k="37" />
<hkern g1="h,m,n,ntilde" 	g2="quoteleft,quotedblleft" 	k="39" />
<hkern g1="h,m,n,ntilde" 	g2="quoteright,quotedblright" 	k="29" />
<hkern g1="h,m,n,ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="23" />
<hkern g1="h,m,n,ntilde" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="16" />
<hkern g1="h,m,n,ntilde" 	g2="J" 	k="16" />
<hkern g1="h,m,n,ntilde" 	g2="M" 	k="10" />
<hkern g1="h,m,n,ntilde" 	g2="T" 	k="176" />
<hkern g1="h,m,n,ntilde" 	g2="V" 	k="92" />
<hkern g1="h,m,n,ntilde" 	g2="W" 	k="72" />
<hkern g1="h,m,n,ntilde" 	g2="Y,Yacute,Ydieresis" 	k="135" />
<hkern g1="h,m,n,ntilde" 	g2="Z" 	k="20" />
<hkern g1="h,m,n,ntilde" 	g2="asterisk" 	k="25" />
<hkern g1="h,m,n,ntilde" 	g2="backslash" 	k="27" />
<hkern g1="h,m,n,ntilde" 	g2="parenright" 	k="35" />
<hkern g1="h,m,n,ntilde" 	g2="bracketright" 	k="33" />
<hkern g1="h,m,n,ntilde" 	g2="braceright" 	k="33" />
<hkern g1="h,m,n,ntilde" 	g2="question" 	k="29" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quotedbl,quotesingle" 	k="43" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteleft,quotedblleft" 	k="47" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="quoteright,quotedblright" 	k="35" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="x" 	k="14" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="asterisk" 	k="23" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="backslash" 	k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="parenright" 	k="41" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="bracketright" 	k="35" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="braceright" 	k="37" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" 	g2="question" 	k="27" />
<hkern g1="b,p,thorn" 	g2="quotedbl,quotesingle" 	k="39" />
<hkern g1="b,p,thorn" 	g2="quoteleft,quotedblleft" 	k="41" />
<hkern g1="b,p,thorn" 	g2="quoteright,quotedblright" 	k="29" />
<hkern g1="b,p,thorn" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="10" />
<hkern g1="b,p,thorn" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="b,p,thorn" 	g2="J" 	k="14" />
<hkern g1="b,p,thorn" 	g2="S" 	k="18" />
<hkern g1="b,p,thorn" 	g2="T" 	k="170" />
<hkern g1="b,p,thorn" 	g2="V" 	k="80" />
<hkern g1="b,p,thorn" 	g2="W" 	k="63" />
<hkern g1="b,p,thorn" 	g2="X" 	k="49" />
<hkern g1="b,p,thorn" 	g2="Y,Yacute,Ydieresis" 	k="145" />
<hkern g1="b,p,thorn" 	g2="Z" 	k="49" />
<hkern g1="b,p,thorn" 	g2="slash" 	k="20" />
<hkern g1="b,p,thorn" 	g2="x" 	k="14" />
<hkern g1="b,p,thorn" 	g2="asterisk" 	k="20" />
<hkern g1="b,p,thorn" 	g2="parenright" 	k="41" />
<hkern g1="b,p,thorn" 	g2="bracketright" 	k="35" />
<hkern g1="b,p,thorn" 	g2="braceright" 	k="37" />
<hkern g1="b,p,thorn" 	g2="question" 	k="27" />
<hkern g1="q" 	g2="quotedbl,quotesingle" 	k="20" />
<hkern g1="q" 	g2="quoteleft,quotedblleft" 	k="23" />
<hkern g1="q" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
<hkern g1="q" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="r" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="80" />
<hkern g1="r" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
<hkern g1="r" 	g2="period,ellipsis" 	k="70" />
<hkern g1="r" 	g2="quotesinglbase,quotedblbase" 	k="70" />
<hkern g1="r" 	g2="ampersand" 	k="47" />
<hkern g1="r" 	g2="comma" 	k="70" />
<hkern g1="r" 	g2="slash" 	k="47" />
<hkern g1="r" 	g2="d,q" 	k="23" />
<hkern g1="r" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="14" />
<hkern g1="r" 	g2="g" 	k="14" />
<hkern g1="r" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
<hkern g1="r" 	g2="guillemotleft,guilsinglleft" 	k="39" />
<hkern g1="r" 	g2="hyphen,endash,emdash" 	k="63" />
<hkern g1="r" 	g2="parenright" 	k="31" />
<hkern g1="r" 	g2="bracketright" 	k="33" />
<hkern g1="r" 	g2="braceright" 	k="31" />
<hkern g1="s" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
<hkern g1="s" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
<hkern g1="s" 	g2="parenright" 	k="33" />
<hkern g1="s" 	g2="bracketright" 	k="31" />
<hkern g1="s" 	g2="braceright" 	k="31" />
<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="20" />
<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="14" />
<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="parenright" 	k="33" />
<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="bracketright" 	k="33" />
<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="braceright" 	k="33" />
<hkern g1="u,ugrave,uacute,ucircumflex,udieresis" 	g2="question" 	k="25" />
<hkern g1="v" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="55" />
<hkern g1="v" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
<hkern g1="v" 	g2="period,ellipsis" 	k="55" />
<hkern g1="v" 	g2="quotesinglbase,quotedblbase" 	k="55" />
<hkern g1="v" 	g2="d,q" 	k="8" />
<hkern g1="v" 	g2="g" 	k="10" />
<hkern g1="v" 	g2="guillemotleft,guilsinglleft" 	k="20" />
<hkern g1="w" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="41" />
<hkern g1="w" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
<hkern g1="w" 	g2="period,ellipsis" 	k="45" />
<hkern g1="w" 	g2="quotesinglbase,quotedblbase" 	k="45" />
<hkern g1="w" 	g2="ampersand" 	k="16" />
<hkern g1="w" 	g2="comma" 	k="45" />
<hkern g1="w" 	g2="slash" 	k="39" />
<hkern g1="w" 	g2="g" 	k="8" />
<hkern g1="w" 	g2="parenright" 	k="29" />
<hkern g1="w" 	g2="bracketright" 	k="29" />
<hkern g1="w" 	g2="braceright" 	k="29" />
<hkern g1="x" 	g2="C,G,Ccedilla" 	k="12" />
<hkern g1="x" 	g2="O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="12" />
<hkern g1="x" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="12" />
<hkern g1="x" 	g2="d,q" 	k="12" />
<hkern g1="x" 	g2="c,e,ccedilla,egrave,eacute,ecircumflex,edieresis" 	k="14" />
<hkern g1="x" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="14" />
<hkern g1="x" 	g2="guillemotleft,guilsinglleft" 	k="29" />
<hkern g1="x" 	g2="hyphen,endash,emdash" 	k="33" />
<hkern g1="y,yacute,ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="49" />
<hkern g1="y,yacute,ydieresis" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="10" />
<hkern g1="y,yacute,ydieresis" 	g2="period,ellipsis" 	k="51" />
<hkern g1="y,yacute,ydieresis" 	g2="quotesinglbase,quotedblbase" 	k="51" />
<hkern g1="y,yacute,ydieresis" 	g2="ampersand" 	k="20" />
<hkern g1="y,yacute,ydieresis" 	g2="comma" 	k="51" />
<hkern g1="y,yacute,ydieresis" 	g2="slash" 	k="41" />
<hkern g1="y,yacute,ydieresis" 	g2="g" 	k="8" />
<hkern g1="y,yacute,ydieresis" 	g2="parenright" 	k="29" />
<hkern g1="y,yacute,ydieresis" 	g2="bracketright" 	k="29" />
<hkern g1="y,yacute,ydieresis" 	g2="braceright" 	k="29" />
<hkern g1="z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="16" />
<hkern g1="z" 	g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn" 	k="12" />
<hkern g1="z" 	g2="ampersand" 	k="14" />
<hkern g1="z" 	g2="guillemotleft,guilsinglleft" 	k="31" />
<hkern g1="z" 	g2="hyphen,endash,emdash" 	k="35" />
<hkern g1="z" 	g2="parenright" 	k="23" />
<hkern g1="z" 	g2="bracketright" 	k="20" />
</font>
</defs></svg>