summaryrefslogtreecommitdiff
path: root/graphics/prerex/chart.svg
blob: 9729b39c1c86fc379ddfbca083784ebb0e7ec847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="765pt" height="990pt" viewBox="0 0 612 792" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1.25 -9.421875 L 1.25 0 L 6.671875 0 L 6.671875 -9.421875 L 1.25 -9.421875 Z M 1.921875 -0.671875 L 1.921875 -8.75 L 6 -8.75 L 6 -0.671875 L 1.921875 -0.671875 Z M 1.921875 -0.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.1875 -7.890625 C 5.53125 -7.890625 5.890625 -7.828125 6.234375 -7.703125 C 6.59375 -7.59375 6.953125 -7.4375 7.296875 -7.265625 L 7.953125 -8.890625 C 7.03125 -9.34375 6.109375 -9.5625 5.1875 -9.5625 C 4.296875 -9.5625 3.5 -9.359375 2.84375 -8.96875 C 2.171875 -8.578125 1.65625 -8.015625 1.296875 -7.265625 C 0.953125 -6.53125 0.765625 -5.671875 0.765625 -4.703125 C 0.765625 -3.140625 1.125 -1.953125 1.859375 -1.125 C 2.578125 -0.28125 3.625 0.125 5 0.125 C 5.953125 0.125 6.828125 -0.03125 7.59375 -0.359375 L 7.59375 -2.03125 C 6.65625 -1.703125 5.859375 -1.53125 5.1875 -1.53125 C 3.609375 -1.53125 2.828125 -2.578125 2.828125 -4.6875 C 2.828125 -5.703125 3.03125 -6.484375 3.4375 -7.046875 C 3.859375 -7.609375 4.4375 -7.890625 5.1875 -7.890625 Z M 5.1875 -7.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.59375 -3.609375 C 2.59375 -4.328125 2.71875 -4.875 2.953125 -5.21875 C 3.171875 -5.578125 3.5625 -5.75 4.078125 -5.75 C 4.609375 -5.75 4.984375 -5.578125 5.21875 -5.21875 C 5.453125 -4.875 5.5625 -4.328125 5.5625 -3.609375 C 5.5625 -2.90625 5.453125 -2.359375 5.21875 -2 C 5 -1.625 4.609375 -1.453125 4.09375 -1.453125 C 3.5625 -1.453125 3.1875 -1.625 2.953125 -2 C 2.71875 -2.359375 2.59375 -2.90625 2.59375 -3.609375 Z M 7.578125 -3.609375 C 7.578125 -4.375 7.4375 -5.03125 7.15625 -5.59375 C 6.875 -6.15625 6.46875 -6.59375 5.9375 -6.890625 C 5.40625 -7.1875 4.796875 -7.34375 4.109375 -7.34375 C 2.984375 -7.34375 2.125 -7.015625 1.515625 -6.359375 C 0.90625 -5.71875 0.59375 -4.796875 0.59375 -3.609375 C 0.59375 -2.859375 0.734375 -2.203125 1.015625 -1.625 C 1.296875 -1.0625 1.703125 -0.625 2.234375 -0.328125 C 2.765625 -0.03125 3.375 0.125 4.0625 0.125 C 5.171875 0.125 6.03125 -0.203125 6.65625 -0.859375 C 7.265625 -1.53125 7.578125 -2.4375 7.578125 -3.609375 Z M 7.578125 -3.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 7.484375 0 L 7.484375 -3.609375 C 7.484375 -4.359375 7.609375 -4.90625 7.84375 -5.25 C 8.078125 -5.59375 8.4375 -5.765625 8.921875 -5.765625 C 9.296875 -5.765625 9.5625 -5.640625 9.75 -5.375 C 9.921875 -5.125 10 -4.734375 10 -4.203125 L 10 0 L 11.984375 0 L 11.984375 -4.703125 C 11.984375 -5.625 11.765625 -6.296875 11.34375 -6.71875 C 10.9375 -7.125 10.3125 -7.34375 9.5 -7.34375 C 9.03125 -7.34375 8.59375 -7.25 8.21875 -7.0625 C 7.84375 -6.875 7.5625 -6.625 7.375 -6.28125 L 7.1875 -6.28125 C 6.8125 -6.984375 6.078125 -7.34375 5 -7.34375 C 4.53125 -7.34375 4.109375 -7.25 3.75 -7.0625 C 3.375 -6.875 3.09375 -6.609375 2.90625 -6.28125 L 2.796875 -6.28125 L 2.53125 -7.203125 L 1.03125 -7.203125 L 1.03125 0 L 3 0 L 3 -3.390625 C 3 -4.234375 3.109375 -4.84375 3.34375 -5.21875 C 3.5625 -5.578125 3.9375 -5.765625 4.4375 -5.765625 C 4.8125 -5.765625 5.078125 -5.640625 5.265625 -5.375 C 5.421875 -5.125 5.515625 -4.734375 5.515625 -4.203125 L 5.515625 0 L 7.484375 0 Z M 7.484375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.984375 0.125 C 5.546875 0.125 6.046875 -0.015625 6.453125 -0.3125 C 6.875 -0.609375 7.1875 -1.046875 7.421875 -1.609375 C 7.640625 -2.171875 7.765625 -2.84375 7.765625 -3.609375 C 7.765625 -4.78125 7.53125 -5.703125 7.046875 -6.359375 C 6.5625 -7.015625 5.890625 -7.34375 5.046875 -7.34375 C 4.140625 -7.34375 3.453125 -6.984375 3 -6.265625 L 2.90625 -6.265625 L 2.625 -7.203125 L 1.03125 -7.203125 L 1.03125 3.171875 L 3 3.171875 L 3 0.25 C 3 0.15625 2.96875 -0.1875 2.890625 -0.796875 L 3 -0.796875 C 3.484375 -0.1875 4.140625 0.125 4.984375 0.125 Z M 4.40625 -5.765625 C 4.875 -5.765625 5.21875 -5.59375 5.421875 -5.234375 C 5.640625 -4.890625 5.75 -4.359375 5.75 -3.640625 C 5.75 -2.1875 5.3125 -1.46875 4.4375 -1.46875 C 3.9375 -1.46875 3.578125 -1.625 3.34375 -1.96875 C 3.109375 -2.296875 3 -2.859375 3 -3.625 L 3 -3.84375 C 3 -4.53125 3.125 -5.015625 3.34375 -5.328125 C 3.578125 -5.625 3.921875 -5.765625 4.40625 -5.765625 Z M 4.40625 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 6.140625 0 L 7.640625 0 L 7.640625 -7.203125 L 5.671875 -7.203125 L 5.671875 -3.8125 C 5.671875 -2.96875 5.5625 -2.359375 5.3125 -1.984375 C 5.0625 -1.625 4.671875 -1.4375 4.125 -1.4375 C 3.71875 -1.4375 3.421875 -1.5625 3.234375 -1.828125 C 3.046875 -2.09375 2.953125 -2.46875 2.953125 -3 L 2.953125 -7.203125 L 1 -7.203125 L 1 -2.515625 C 1 -1.65625 1.203125 -1 1.640625 -0.546875 C 2.0625 -0.09375 2.703125 0.125 3.546875 0.125 C 4.046875 0.125 4.484375 0.03125 4.875 -0.140625 C 5.265625 -0.328125 5.5625 -0.59375 5.765625 -0.921875 L 5.875 -0.921875 L 6.140625 0 Z M 6.140625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.0625 -1.4375 C 3.8125 -1.4375 3.609375 -1.5 3.4375 -1.640625 C 3.28125 -1.765625 3.203125 -1.984375 3.203125 -2.25 L 3.203125 -5.734375 L 5.234375 -5.734375 L 5.234375 -7.203125 L 3.203125 -7.203125 L 3.203125 -8.734375 L 1.953125 -8.734375 L 1.390625 -7.21875 L 0.296875 -6.5625 L 0.296875 -5.734375 L 1.25 -5.734375 L 1.25 -2.25 C 1.25 -1.46875 1.421875 -0.859375 1.78125 -0.46875 C 2.140625 -0.078125 2.71875 0.125 3.5 0.125 C 4.21875 0.125 4.8125 0.015625 5.3125 -0.203125 L 5.3125 -1.65625 C 4.828125 -1.515625 4.40625 -1.4375 4.0625 -1.4375 Z M 4.0625 -1.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.015625 -5.9375 C 4.4375 -5.9375 4.765625 -5.8125 5.015625 -5.546875 C 5.25 -5.28125 5.390625 -4.90625 5.390625 -4.421875 L 2.625 -4.421875 C 2.65625 -4.90625 2.796875 -5.28125 3.03125 -5.546875 C 3.28125 -5.8125 3.59375 -5.9375 4.015625 -5.9375 Z M 4.296875 0.125 C 4.859375 0.125 5.328125 0.09375 5.71875 0 C 6.125 -0.078125 6.484375 -0.203125 6.828125 -0.375 L 6.828125 -1.90625 C 6.40625 -1.703125 6 -1.5625 5.609375 -1.46875 C 5.234375 -1.375 4.8125 -1.328125 4.390625 -1.328125 C 3.828125 -1.328125 3.390625 -1.484375 3.078125 -1.8125 C 2.765625 -2.125 2.609375 -2.546875 2.578125 -3.109375 L 7.234375 -3.109375 L 7.234375 -4.0625 C 7.234375 -5.09375 6.953125 -5.890625 6.375 -6.46875 C 5.8125 -7.046875 5.015625 -7.34375 4 -7.34375 C 2.9375 -7.34375 2.109375 -7.015625 1.5 -6.359375 C 0.890625 -5.6875 0.59375 -4.75 0.59375 -3.546875 C 0.59375 -2.375 0.921875 -1.46875 1.578125 -0.828125 C 2.21875 -0.1875 3.140625 0.125 4.296875 0.125 Z M 4.296875 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 5.046875 -7.34375 C 4.609375 -7.34375 4.1875 -7.21875 3.8125 -6.96875 C 3.4375 -6.71875 3.140625 -6.40625 2.90625 -6 L 2.8125 -6 L 2.515625 -7.203125 L 1.03125 -7.203125 L 1.03125 0 L 3 0 L 3 -3.671875 C 3 -4.25 3.171875 -4.703125 3.515625 -5.015625 C 3.875 -5.34375 4.359375 -5.5 4.984375 -5.5 C 5.21875 -5.5 5.40625 -5.484375 5.5625 -5.4375 L 5.71875 -7.28125 C 5.546875 -7.328125 5.3125 -7.34375 5.046875 -7.34375 Z M 5.046875 -7.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 6.75 -2.625 C 6.75 -3.234375 6.59375 -3.75 6.265625 -4.171875 C 5.9375 -4.59375 5.328125 -5.015625 4.453125 -5.4375 C 3.78125 -5.75 3.359375 -5.984375 3.1875 -6.09375 C 3 -6.234375 2.875 -6.34375 2.796875 -6.484375 C 2.703125 -6.609375 2.671875 -6.765625 2.671875 -6.9375 C 2.671875 -7.234375 2.765625 -7.453125 2.96875 -7.640625 C 3.171875 -7.8125 3.46875 -7.890625 3.84375 -7.890625 C 4.15625 -7.890625 4.484375 -7.859375 4.8125 -7.78125 C 5.140625 -7.6875 5.5625 -7.546875 6.0625 -7.34375 L 6.703125 -8.890625 C 6.21875 -9.109375 5.75 -9.265625 5.3125 -9.390625 C 4.859375 -9.5 4.390625 -9.5625 3.90625 -9.5625 C 2.90625 -9.5625 2.125 -9.328125 1.5625 -8.84375 C 1 -8.375 0.71875 -7.703125 0.71875 -6.875 C 0.71875 -6.4375 0.796875 -6.046875 0.96875 -5.71875 C 1.140625 -5.390625 1.375 -5.09375 1.65625 -4.84375 C 1.953125 -4.59375 2.390625 -4.34375 2.953125 -4.0625 C 3.578125 -3.78125 3.984375 -3.5625 4.171875 -3.4375 C 4.390625 -3.296875 4.53125 -3.15625 4.640625 -3.015625 C 4.734375 -2.875 4.796875 -2.703125 4.796875 -2.515625 C 4.796875 -2.1875 4.671875 -1.9375 4.4375 -1.765625 C 4.203125 -1.609375 3.875 -1.515625 3.4375 -1.515625 C 3.0625 -1.515625 2.65625 -1.578125 2.21875 -1.703125 C 1.78125 -1.8125 1.25 -2.015625 0.609375 -2.296875 L 0.609375 -0.4375 C 1.375 -0.0625 2.265625 0.125 3.28125 0.125 C 4.359375 0.125 5.21875 -0.109375 5.828125 -0.609375 C 6.453125 -1.09375 6.75 -1.765625 6.75 -2.625 Z M 6.75 -2.625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.953125 0.125 C 4.453125 0.125 4.859375 0.09375 5.1875 0.015625 C 5.515625 -0.0625 5.828125 -0.203125 6.15625 -0.40625 L 6.15625 -2.09375 C 5.828125 -1.875 5.5 -1.71875 5.1875 -1.609375 C 4.859375 -1.515625 4.515625 -1.46875 4.125 -1.46875 C 3.109375 -1.46875 2.59375 -2.171875 2.59375 -3.578125 C 2.59375 -5.03125 3.109375 -5.75 4.125 -5.75 C 4.390625 -5.75 4.671875 -5.71875 4.9375 -5.640625 C 5.203125 -5.5625 5.484375 -5.453125 5.796875 -5.328125 L 6.375 -6.859375 C 5.71875 -7.1875 4.96875 -7.34375 4.125 -7.34375 C 2.984375 -7.34375 2.125 -7.015625 1.515625 -6.375 C 0.890625 -5.71875 0.59375 -4.796875 0.59375 -3.5625 C 0.59375 -1.109375 1.71875 0.125 3.953125 0.125 Z M 3.953125 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.953125 -9.078125 C 0.953125 -8.421875 1.296875 -8.109375 2.015625 -8.109375 C 2.375 -8.109375 2.640625 -8.1875 2.828125 -8.359375 C 3 -8.53125 3.09375 -8.765625 3.09375 -9.078125 C 3.09375 -9.703125 2.734375 -10.03125 2.015625 -10.03125 C 1.296875 -10.03125 0.953125 -9.703125 0.953125 -9.078125 Z M 3 0 L 3 -7.203125 L 1.03125 -7.203125 L 1.03125 0 L 3 0 Z M 3 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 7.6875 0 L 7.6875 -4.703125 C 7.6875 -5.5625 7.46875 -6.203125 7.03125 -6.671875 C 6.609375 -7.125 5.96875 -7.34375 5.125 -7.34375 C 4.640625 -7.34375 4.203125 -7.25 3.8125 -7.078125 C 3.4375 -6.890625 3.125 -6.640625 2.90625 -6.28125 L 2.796875 -6.28125 L 2.53125 -7.203125 L 1.03125 -7.203125 L 1.03125 0 L 3 0 L 3 -3.390625 C 3 -4.234375 3.125 -4.84375 3.359375 -5.21875 C 3.609375 -5.578125 4.015625 -5.765625 4.5625 -5.765625 C 4.96875 -5.765625 5.25 -5.640625 5.4375 -5.375 C 5.625 -5.125 5.71875 -4.734375 5.71875 -4.203125 L 5.71875 0 L 7.6875 0 Z M 7.6875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 0.5 -3.78125 L 0.5 0 L 2.671875 0 L 2.671875 -3.78125 L 0.5 -3.78125 Z M 0.765625 -0.265625 L 0.765625 -3.515625 L 2.40625 -3.515625 L 2.40625 -0.265625 L 0.765625 -0.265625 Z M 0.765625 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.1875 0 L 2.1875 -3.78125 L 1.53125 -3.78125 L 0.3125 -2.8125 L 0.703125 -2.328125 L 1.140625 -2.671875 C 1.1875 -2.71875 1.28125 -2.8125 1.40625 -2.9375 L 1.390625 -2.546875 L 1.390625 -2.1875 L 1.390625 0 L 2.1875 0 Z M 2.1875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 2.828125 -1.890625 C 2.828125 -2.53125 2.71875 -3.015625 2.5 -3.34375 C 2.28125 -3.671875 1.953125 -3.84375 1.515625 -3.84375 C 1.0625 -3.84375 0.734375 -3.6875 0.515625 -3.375 C 0.296875 -3.046875 0.1875 -2.5625 0.1875 -1.890625 C 0.1875 -1.25 0.296875 -0.765625 0.515625 -0.4375 C 0.75 -0.109375 1.078125 0.046875 1.515625 0.046875 C 1.953125 0.046875 2.296875 -0.109375 2.515625 -0.421875 C 2.71875 -0.75 2.828125 -1.234375 2.828125 -1.890625 Z M 0.984375 -1.890625 C 0.984375 -2.359375 1.03125 -2.6875 1.109375 -2.890625 C 1.1875 -3.09375 1.328125 -3.1875 1.515625 -3.1875 C 1.6875 -3.1875 1.828125 -3.09375 1.90625 -2.890625 C 2 -2.6875 2.03125 -2.359375 2.03125 -1.890625 C 2.03125 -1.4375 2 -1.109375 1.90625 -0.890625 C 1.828125 -0.6875 1.703125 -0.59375 1.515625 -0.59375 C 1.328125 -0.59375 1.1875 -0.6875 1.109375 -0.890625 C 1.03125 -1.09375 0.984375 -1.421875 0.984375 -1.890625 Z M 0.984375 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 1.515625 -3.828125 C 1.15625 -3.828125 0.859375 -3.75 0.640625 -3.578125 C 0.40625 -3.40625 0.296875 -3.1875 0.296875 -2.921875 C 0.296875 -2.734375 0.34375 -2.5625 0.4375 -2.40625 C 0.546875 -2.265625 0.703125 -2.109375 0.90625 -1.96875 C 0.65625 -1.84375 0.46875 -1.703125 0.359375 -1.53125 C 0.25 -1.359375 0.1875 -1.171875 0.1875 -0.953125 C 0.1875 -0.640625 0.3125 -0.390625 0.546875 -0.21875 C 0.78125 -0.03125 1.109375 0.046875 1.515625 0.046875 C 1.90625 0.046875 2.234375 -0.046875 2.46875 -0.234375 C 2.71875 -0.421875 2.84375 -0.671875 2.84375 -0.984375 C 2.84375 -1.171875 2.78125 -1.359375 2.65625 -1.515625 C 2.53125 -1.6875 2.328125 -1.84375 2.046875 -2 C 2.28125 -2.109375 2.453125 -2.25 2.5625 -2.40625 C 2.671875 -2.546875 2.71875 -2.71875 2.71875 -2.921875 C 2.71875 -3.203125 2.609375 -3.421875 2.390625 -3.578125 C 2.171875 -3.75 1.875 -3.828125 1.515625 -3.828125 Z M 0.921875 -1 C 0.921875 -1.265625 1.109375 -1.484375 1.484375 -1.640625 C 1.703125 -1.53125 1.859375 -1.421875 1.953125 -1.328125 C 2.046875 -1.21875 2.09375 -1.125 2.09375 -1 C 2.09375 -0.859375 2.046875 -0.75 1.953125 -0.65625 C 1.859375 -0.578125 1.703125 -0.53125 1.5 -0.53125 C 1.328125 -0.53125 1.1875 -0.578125 1.078125 -0.65625 C 0.984375 -0.75 0.921875 -0.859375 0.921875 -1 Z M 1.515625 -3.25 C 1.640625 -3.25 1.75 -3.21875 1.84375 -3.140625 C 1.921875 -3.078125 1.96875 -2.984375 1.96875 -2.859375 C 1.96875 -2.75 1.9375 -2.65625 1.875 -2.578125 C 1.796875 -2.484375 1.6875 -2.40625 1.515625 -2.328125 C 1.34375 -2.421875 1.21875 -2.5 1.15625 -2.578125 C 1.09375 -2.65625 1.0625 -2.75 1.0625 -2.859375 C 1.0625 -2.984375 1.09375 -3.078125 1.171875 -3.140625 C 1.265625 -3.21875 1.375 -3.25 1.515625 -3.25 Z M 1.515625 -3.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 2.703125 -2.9375 C 2.703125 -3.21875 2.59375 -3.4375 2.375 -3.59375 C 2.140625 -3.75 1.828125 -3.828125 1.4375 -3.828125 C 0.96875 -3.828125 0.546875 -3.71875 0.203125 -3.46875 L 0.578125 -2.90625 C 0.734375 -3.015625 0.875 -3.078125 1 -3.125 C 1.140625 -3.171875 1.265625 -3.1875 1.390625 -3.1875 C 1.75 -3.1875 1.921875 -3.046875 1.921875 -2.765625 C 1.921875 -2.578125 1.859375 -2.4375 1.71875 -2.359375 C 1.578125 -2.28125 1.375 -2.25 1.078125 -2.25 L 0.78125 -2.25 L 0.78125 -1.640625 L 1.078125 -1.640625 C 1.390625 -1.640625 1.625 -1.59375 1.765625 -1.53125 C 1.90625 -1.453125 1.984375 -1.328125 1.984375 -1.140625 C 1.984375 -0.953125 1.921875 -0.8125 1.796875 -0.71875 C 1.671875 -0.625 1.46875 -0.578125 1.203125 -0.578125 C 1.03125 -0.578125 0.859375 -0.609375 0.6875 -0.65625 C 0.515625 -0.703125 0.34375 -0.75 0.203125 -0.828125 L 0.203125 -0.15625 C 0.515625 -0.015625 0.875 0.046875 1.296875 0.046875 C 1.78125 0.046875 2.15625 -0.046875 2.421875 -0.25 C 2.6875 -0.453125 2.8125 -0.734375 2.8125 -1.109375 C 2.8125 -1.359375 2.734375 -1.546875 2.578125 -1.703125 C 2.421875 -1.84375 2.203125 -1.9375 1.890625 -1.96875 L 1.890625 -1.984375 C 2.15625 -2.046875 2.34375 -2.171875 2.5 -2.328125 C 2.640625 -2.5 2.703125 -2.703125 2.703125 -2.9375 Z M 2.703125 -2.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 1.9375 0 L 1.9375 -3.109375 L 2.96875 -3.109375 L 2.96875 -3.78125 L 0.109375 -3.78125 L 0.109375 -3.109375 L 1.140625 -3.109375 L 1.140625 0 L 1.9375 0 Z M 1.9375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 3.078125 0 L 3.078125 -1.890625 C 3.078125 -2.234375 3 -2.484375 2.8125 -2.671875 C 2.640625 -2.859375 2.390625 -2.953125 2.046875 -2.953125 C 1.65625 -2.953125 1.390625 -2.796875 1.203125 -2.515625 L 1.171875 -2.515625 L 1.1875 -2.75 C 1.203125 -2.984375 1.203125 -3.140625 1.203125 -3.203125 L 1.203125 -4.03125 L 0.40625 -4.03125 L 0.40625 0 L 1.203125 0 L 1.203125 -1.359375 C 1.203125 -1.703125 1.25 -1.9375 1.34375 -2.09375 C 1.453125 -2.234375 1.609375 -2.3125 1.828125 -2.3125 C 2.140625 -2.3125 2.296875 -2.109375 2.296875 -1.6875 L 2.296875 0 L 3.078125 0 Z M 3.078125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 0.296875 -0.375 C 0.296875 -0.234375 0.34375 -0.125 0.421875 -0.046875 C 0.5 0.03125 0.609375 0.0625 0.75 0.0625 C 0.90625 0.0625 1.015625 0.03125 1.09375 -0.046875 C 1.171875 -0.125 1.203125 -0.234375 1.203125 -0.375 C 1.203125 -0.515625 1.171875 -0.625 1.09375 -0.703125 C 1.015625 -0.765625 0.90625 -0.8125 0.75 -0.8125 C 0.609375 -0.8125 0.5 -0.765625 0.421875 -0.703125 C 0.34375 -0.625 0.296875 -0.515625 0.296875 -0.375 Z M 0.296875 -2.5 C 0.296875 -2.359375 0.34375 -2.25 0.421875 -2.1875 C 0.5 -2.109375 0.609375 -2.0625 0.75 -2.0625 C 0.890625 -2.0625 1.015625 -2.109375 1.09375 -2.1875 C 1.171875 -2.265625 1.203125 -2.359375 1.203125 -2.5 C 1.203125 -2.65625 1.171875 -2.75 1.09375 -2.828125 C 1.015625 -2.90625 0.90625 -2.953125 0.75 -2.953125 C 0.609375 -2.953125 0.5 -2.90625 0.421875 -2.828125 C 0.34375 -2.765625 0.296875 -2.65625 0.296875 -2.5 Z M 0.296875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 2.078125 0 L 2.8125 0 L 3.78125 -2.96875 L 3.8125 -2.96875 C 3.78125 -2.484375 3.78125 -2.1875 3.78125 -2.078125 C 3.765625 -1.96875 3.765625 -1.875 3.765625 -1.796875 L 3.765625 0 L 4.515625 0 L 4.515625 -3.78125 L 3.421875 -3.78125 L 2.484375 -0.890625 L 2.46875 -0.890625 L 1.5625 -3.78125 L 0.46875 -3.78125 L 0.46875 0 L 1.1875 0 L 1.1875 -1.765625 C 1.1875 -1.953125 1.171875 -2.359375 1.140625 -2.96875 L 1.171875 -2.96875 L 2.078125 0 Z M 2.078125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 4.15625 0 L 5.125 -3.78125 L 4.328125 -3.78125 L 3.84375 -1.71875 C 3.8125 -1.59375 3.78125 -1.4375 3.75 -1.234375 C 3.703125 -1.03125 3.6875 -0.859375 3.671875 -0.734375 C 3.640625 -0.859375 3.625 -1.03125 3.578125 -1.234375 C 3.546875 -1.421875 3.515625 -1.5625 3.484375 -1.65625 L 2.9375 -3.78125 L 2.1875 -3.78125 L 1.625 -1.65625 C 1.59375 -1.546875 1.5625 -1.390625 1.53125 -1.1875 C 1.484375 -0.984375 1.46875 -0.828125 1.453125 -0.734375 C 1.421875 -1 1.359375 -1.34375 1.265625 -1.71875 L 0.78125 -3.78125 L 0 -3.78125 L 0.96875 0 L 1.875 0 L 2.390625 -1.984375 C 2.40625 -2.0625 2.4375 -2.21875 2.484375 -2.421875 C 2.515625 -2.625 2.546875 -2.78125 2.5625 -2.875 C 2.5625 -2.796875 2.59375 -2.640625 2.640625 -2.421875 C 2.6875 -2.203125 2.71875 -2.0625 2.734375 -1.984375 L 3.25 0 L 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -1.5 L 2.546875 -1.5 L 2.546875 -2.15625 L 1.265625 -2.15625 L 1.265625 -3.125 L 2.640625 -3.125 L 2.640625 -3.78125 L 0.46875 -3.78125 L 0.46875 0 L 1.265625 0 Z M 1.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 2.84375 -2.171875 C 2.84375 -2.515625 2.78125 -2.8125 2.671875 -3.0625 C 2.5625 -3.3125 2.40625 -3.5 2.1875 -3.625 C 1.984375 -3.765625 1.734375 -3.828125 1.453125 -3.828125 C 1.0625 -3.828125 0.75 -3.703125 0.515625 -3.46875 C 0.28125 -3.234375 0.171875 -2.921875 0.171875 -2.515625 C 0.171875 -2.140625 0.265625 -1.84375 0.453125 -1.625 C 0.640625 -1.421875 0.90625 -1.3125 1.234375 -1.3125 C 1.4375 -1.3125 1.59375 -1.34375 1.71875 -1.40625 C 1.859375 -1.484375 1.96875 -1.59375 2.078125 -1.75 L 2.109375 -1.75 C 2.09375 -1.453125 2.03125 -1.21875 1.9375 -1.0625 C 1.859375 -0.890625 1.71875 -0.765625 1.546875 -0.6875 C 1.375 -0.609375 1.15625 -0.578125 0.890625 -0.578125 C 0.734375 -0.578125 0.578125 -0.59375 0.4375 -0.625 L 0.4375 0.015625 C 0.546875 0.03125 0.71875 0.046875 0.9375 0.046875 C 1.578125 0.046875 2.0625 -0.125 2.375 -0.5 C 2.6875 -0.859375 2.84375 -1.421875 2.84375 -2.171875 Z M 1.46875 -3.1875 C 1.640625 -3.1875 1.78125 -3.109375 1.890625 -2.96875 C 1.984375 -2.828125 2.046875 -2.65625 2.046875 -2.453125 C 2.046875 -2.3125 1.984375 -2.1875 1.875 -2.078125 C 1.75 -1.984375 1.625 -1.921875 1.453125 -1.921875 C 1.28125 -1.921875 1.15625 -1.984375 1.078125 -2.09375 C 0.984375 -2.1875 0.9375 -2.34375 0.9375 -2.515625 C 0.9375 -2.734375 0.984375 -2.90625 1.078125 -3.015625 C 1.171875 -3.125 1.3125 -3.1875 1.46875 -3.1875 Z M 1.46875 -3.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 2.859375 0 L 2.859375 -0.671875 L 1.203125 -0.671875 L 1.203125 -0.703125 L 1.6875 -1.171875 C 2.015625 -1.46875 2.25 -1.6875 2.375 -1.859375 C 2.5 -2.015625 2.59375 -2.171875 2.65625 -2.328125 C 2.71875 -2.46875 2.75 -2.640625 2.75 -2.8125 C 2.75 -3.015625 2.703125 -3.1875 2.59375 -3.34375 C 2.5 -3.5 2.359375 -3.625 2.171875 -3.703125 C 2 -3.796875 1.78125 -3.828125 1.546875 -3.828125 C 1.375 -3.828125 1.203125 -3.8125 1.0625 -3.78125 C 0.921875 -3.75 0.78125 -3.703125 0.671875 -3.625 C 0.546875 -3.5625 0.390625 -3.453125 0.203125 -3.296875 L 0.640625 -2.78125 C 0.78125 -2.90625 0.9375 -3 1.0625 -3.0625 C 1.203125 -3.140625 1.34375 -3.171875 1.5 -3.171875 C 1.640625 -3.171875 1.75 -3.125 1.828125 -3.0625 C 1.90625 -2.984375 1.953125 -2.875 1.953125 -2.71875 C 1.953125 -2.625 1.9375 -2.515625 1.890625 -2.421875 C 1.859375 -2.328125 1.796875 -2.21875 1.71875 -2.109375 C 1.625 -2 1.4375 -1.796875 1.15625 -1.515625 L 0.21875 -0.5625 L 0.21875 0 L 2.859375 0 Z M 2.859375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 1.59375 -2.421875 C 1.4375 -2.421875 1.296875 -2.40625 1.203125 -2.375 L 1.109375 -2.359375 L 1.171875 -3.109375 L 2.53125 -3.109375 L 2.53125 -3.78125 L 0.46875 -3.78125 L 0.328125 -1.859375 L 0.65625 -1.6875 C 0.71875 -1.703125 0.8125 -1.71875 0.921875 -1.75 C 1.03125 -1.765625 1.140625 -1.765625 1.21875 -1.765625 C 1.734375 -1.765625 1.984375 -1.578125 1.984375 -1.203125 C 1.984375 -0.796875 1.734375 -0.59375 1.25 -0.59375 C 1.09375 -0.59375 0.921875 -0.625 0.734375 -0.671875 C 0.546875 -0.71875 0.390625 -0.765625 0.265625 -0.84375 L 0.265625 -0.15625 C 0.515625 -0.015625 0.859375 0.046875 1.28125 0.046875 C 1.765625 0.046875 2.140625 -0.0625 2.390625 -0.296875 C 2.65625 -0.515625 2.78125 -0.84375 2.78125 -1.265625 C 2.78125 -1.625 2.671875 -1.90625 2.46875 -2.109375 C 2.25 -2.3125 1.953125 -2.421875 1.59375 -2.421875 Z M 1.59375 -2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 2.9375 -0.78125 L 2.9375 -1.40625 L 2.484375 -1.40625 L 2.484375 -3.78125 L 1.75 -3.78125 L 0.09375 -1.34375 L 0.09375 -0.78125 L 1.703125 -0.78125 L 1.703125 0 L 2.484375 0 L 2.484375 -0.78125 L 2.9375 -0.78125 Z M 1.703125 -1.40625 L 0.796875 -1.40625 L 1.484375 -2.453125 C 1.578125 -2.59375 1.65625 -2.71875 1.71875 -2.859375 L 1.734375 -2.859375 C 1.734375 -2.828125 1.71875 -2.71875 1.71875 -2.515625 C 1.703125 -2.3125 1.703125 -2.15625 1.703125 -2.046875 L 1.703125 -1.40625 Z M 1.703125 -1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d="M 0.859375 -6.546875 L 0.859375 0 L 4.625 0 L 4.625 -6.546875 L 0.859375 -6.546875 Z M 1.328125 -0.46875 L 1.328125 -6.078125 L 4.171875 -6.078125 L 4.171875 -0.46875 L 1.328125 -0.46875 Z M 1.328125 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.65625 -5.71875 C 3.921875 -5.71875 4.1875 -5.6875 4.421875 -5.609375 C 4.671875 -5.53125 4.90625 -5.4375 5.125 -5.328125 L 5.515625 -6.21875 C 4.9375 -6.5 4.328125 -6.640625 3.65625 -6.640625 C 3.015625 -6.640625 2.46875 -6.5 2 -6.234375 C 1.53125 -5.953125 1.171875 -5.578125 0.90625 -5.0625 C 0.671875 -4.546875 0.546875 -3.953125 0.546875 -3.28125 C 0.546875 -2.1875 0.796875 -1.359375 1.3125 -0.78125 C 1.828125 -0.203125 2.5625 0.09375 3.515625 0.09375 C 4.171875 0.09375 4.75 -0.015625 5.265625 -0.203125 L 5.265625 -1.125 C 4.984375 -1.03125 4.71875 -0.96875 4.453125 -0.90625 C 4.203125 -0.84375 3.921875 -0.828125 3.65625 -0.828125 C 3.015625 -0.828125 2.515625 -1.03125 2.171875 -1.4375 C 1.84375 -1.859375 1.671875 -2.46875 1.671875 -3.265625 C 1.671875 -4.03125 1.84375 -4.640625 2.203125 -5.0625 C 2.546875 -5.5 3.03125 -5.71875 3.65625 -5.71875 Z M 3.65625 -5.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 5.140625 -2.484375 C 5.140625 -3.265625 4.9375 -3.890625 4.515625 -4.359375 C 4.109375 -4.8125 3.53125 -5.046875 2.8125 -5.046875 C 2.0625 -5.046875 1.484375 -4.8125 1.078125 -4.359375 C 0.65625 -3.921875 0.453125 -3.28125 0.453125 -2.484375 C 0.453125 -1.96875 0.546875 -1.515625 0.75 -1.125 C 0.9375 -0.734375 1.203125 -0.4375 1.5625 -0.21875 C 1.921875 -0.015625 2.328125 0.09375 2.796875 0.09375 C 3.53125 0.09375 4.109375 -0.140625 4.515625 -0.59375 C 4.9375 -1.046875 5.140625 -1.671875 5.140625 -2.484375 Z M 1.546875 -2.484375 C 1.546875 -3.03125 1.640625 -3.453125 1.84375 -3.75 C 2.03125 -4.03125 2.359375 -4.1875 2.796875 -4.1875 C 3.640625 -4.1875 4.0625 -3.625 4.0625 -2.484375 C 4.0625 -1.34375 3.640625 -0.765625 2.8125 -0.765625 C 1.96875 -0.765625 1.546875 -1.34375 1.546875 -2.484375 Z M 1.546875 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.921875 0 L 4.921875 -2.625 C 4.921875 -3.15625 5.015625 -3.546875 5.21875 -3.796875 C 5.40625 -4.0625 5.703125 -4.1875 6.109375 -4.1875 C 6.40625 -4.1875 6.640625 -4.09375 6.78125 -3.90625 C 6.921875 -3.71875 7 -3.4375 7 -3.046875 L 7 0 L 8.046875 0 L 8.046875 -3.234375 C 8.046875 -3.84375 7.921875 -4.296875 7.65625 -4.59375 C 7.375 -4.890625 6.953125 -5.046875 6.359375 -5.046875 C 6.015625 -5.046875 5.703125 -4.96875 5.4375 -4.84375 C 5.171875 -4.703125 4.96875 -4.515625 4.828125 -4.265625 L 4.75 -4.265625 C 4.5 -4.78125 4 -5.046875 3.234375 -5.046875 C 2.921875 -5.046875 2.640625 -4.984375 2.375 -4.84375 C 2.109375 -4.71875 1.921875 -4.546875 1.78125 -4.296875 L 1.71875 -4.296875 L 1.578125 -4.953125 L 0.75 -4.953125 L 0.75 0 L 1.8125 0 L 1.8125 -2.46875 C 1.8125 -3.078125 1.90625 -3.515625 2.09375 -3.78125 C 2.28125 -4.046875 2.578125 -4.1875 2.984375 -4.1875 C 3.28125 -4.1875 3.515625 -4.09375 3.65625 -3.90625 C 3.796875 -3.71875 3.875 -3.4375 3.875 -3.046875 L 3.875 0 L 4.921875 0 Z M 4.921875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 3.265625 0.09375 C 3.890625 0.09375 4.359375 -0.140625 4.71875 -0.59375 C 5.0625 -1.046875 5.25 -1.671875 5.25 -2.484375 C 5.25 -3.296875 5.0625 -3.921875 4.734375 -4.375 C 4.375 -4.8125 3.90625 -5.046875 3.28125 -5.046875 C 2.625 -5.046875 2.125 -4.796875 1.8125 -4.296875 L 1.75 -4.296875 C 1.671875 -4.640625 1.625 -4.859375 1.609375 -4.953125 L 0.75 -4.953125 L 0.75 2.203125 L 1.8125 2.203125 L 1.8125 0.171875 C 1.8125 0.078125 1.78125 -0.171875 1.734375 -0.59375 L 1.8125 -0.59375 C 2.15625 -0.140625 2.640625 0.09375 3.265625 0.09375 Z M 3.015625 -4.1875 C 3.390625 -4.1875 3.671875 -4.046875 3.875 -3.75 C 4.0625 -3.46875 4.171875 -3.046875 4.171875 -2.5 C 4.171875 -1.9375 4.0625 -1.515625 3.875 -1.21875 C 3.671875 -0.921875 3.390625 -0.765625 3.03125 -0.765625 C 2.59375 -0.765625 2.28125 -0.90625 2.09375 -1.171875 C 1.90625 -1.453125 1.8125 -1.875 1.8125 -2.484375 L 1.8125 -2.640625 C 1.8125 -3.1875 1.90625 -3.5625 2.09375 -3.8125 C 2.28125 -4.0625 2.59375 -4.1875 3.015625 -4.1875 Z M 3.015625 -4.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 4.25 0 L 5.078125 0 L 5.078125 -4.953125 L 4.015625 -4.953125 L 4.015625 -2.484375 C 4.015625 -1.859375 3.921875 -1.421875 3.703125 -1.15625 C 3.5 -0.890625 3.171875 -0.765625 2.734375 -0.765625 C 2.40625 -0.765625 2.15625 -0.859375 2 -1.046875 C 1.84375 -1.234375 1.765625 -1.515625 1.765625 -1.90625 L 1.765625 -4.953125 L 0.703125 -4.953125 L 0.703125 -1.71875 C 0.703125 -1.109375 0.859375 -0.65625 1.15625 -0.359375 C 1.453125 -0.0625 1.890625 0.09375 2.5 0.09375 C 2.84375 0.09375 3.140625 0.015625 3.421875 -0.109375 C 3.6875 -0.234375 3.890625 -0.421875 4.046875 -0.65625 L 4.09375 -0.65625 L 4.25 0 Z M 4.25 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 2.59375 -0.765625 C 2.390625 -0.765625 2.21875 -0.828125 2.09375 -0.9375 C 1.96875 -1.0625 1.90625 -1.25 1.90625 -1.5 L 1.90625 -4.15625 L 3.3125 -4.15625 L 3.3125 -4.953125 L 1.90625 -4.953125 L 1.90625 -6.0625 L 1.265625 -6.0625 L 0.90625 -5 L 0.171875 -4.625 L 0.171875 -4.15625 L 0.84375 -4.15625 L 0.84375 -1.484375 C 0.84375 -0.4375 1.34375 0.09375 2.34375 0.09375 C 2.546875 0.09375 2.734375 0.078125 2.921875 0.03125 C 3.09375 0 3.25 -0.046875 3.375 -0.09375 L 3.375 -0.875 C 3.109375 -0.796875 2.859375 -0.765625 2.59375 -0.765625 Z M 2.59375 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 0.59375 -0.5625 C 0.59375 -0.34375 0.65625 -0.171875 0.765625 -0.046875 C 0.875 0.0625 1.046875 0.125 1.265625 0.125 C 1.46875 0.125 1.640625 0.0625 1.75 -0.046875 C 1.875 -0.171875 1.921875 -0.34375 1.921875 -0.5625 C 1.921875 -0.765625 1.875 -0.9375 1.75 -1.0625 C 1.640625 -1.171875 1.484375 -1.234375 1.265625 -1.234375 C 1.046875 -1.234375 0.875 -1.171875 0.765625 -1.0625 C 0.65625 -0.9375 0.59375 -0.78125 0.59375 -0.5625 Z M 0.59375 -0.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 4.640625 -1.78125 C 4.640625 -2.078125 4.59375 -2.328125 4.484375 -2.546875 C 4.375 -2.765625 4.21875 -2.953125 3.984375 -3.140625 C 3.765625 -3.3125 3.40625 -3.5 2.9375 -3.6875 C 2.515625 -3.875 2.21875 -4.015625 2.046875 -4.125 C 1.875 -4.234375 1.765625 -4.34375 1.6875 -4.453125 C 1.625 -4.59375 1.578125 -4.734375 1.578125 -4.90625 C 1.578125 -5.140625 1.671875 -5.34375 1.859375 -5.5 C 2.03125 -5.640625 2.296875 -5.71875 2.640625 -5.71875 C 3.09375 -5.71875 3.625 -5.609375 4.203125 -5.359375 L 4.546875 -6.234375 C 3.921875 -6.5 3.296875 -6.640625 2.671875 -6.640625 C 2.015625 -6.640625 1.5 -6.484375 1.109375 -6.171875 C 0.71875 -5.859375 0.53125 -5.421875 0.53125 -4.875 C 0.53125 -4.453125 0.640625 -4.078125 0.890625 -3.765625 C 1.140625 -3.453125 1.5625 -3.171875 2.15625 -2.9375 C 2.734375 -2.703125 3.109375 -2.5 3.296875 -2.328125 C 3.484375 -2.15625 3.578125 -1.953125 3.578125 -1.703125 C 3.578125 -1.4375 3.46875 -1.21875 3.28125 -1.0625 C 3.078125 -0.890625 2.765625 -0.8125 2.34375 -0.8125 C 2.046875 -0.8125 1.734375 -0.859375 1.390625 -0.9375 C 1.0625 -1.015625 0.75 -1.125 0.453125 -1.265625 L 0.453125 -0.25 C 0.921875 -0.03125 1.53125 0.09375 2.265625 0.09375 C 3 0.09375 3.59375 -0.078125 4.015625 -0.40625 C 4.421875 -0.734375 4.640625 -1.203125 4.640625 -1.78125 Z M 4.640625 -1.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 2.75 0.09375 C 3.046875 0.09375 3.3125 0.0625 3.53125 0.015625 C 3.734375 -0.03125 3.9375 -0.109375 4.125 -0.21875 L 4.125 -1.140625 C 3.71875 -0.90625 3.265625 -0.78125 2.796875 -0.78125 C 2.390625 -0.78125 2.078125 -0.921875 1.859375 -1.203125 C 1.640625 -1.484375 1.546875 -1.90625 1.546875 -2.453125 C 1.546875 -3.59375 1.96875 -4.171875 2.828125 -4.171875 C 3.109375 -4.171875 3.484375 -4.078125 3.921875 -3.90625 L 4.25 -4.75 C 3.828125 -4.9375 3.359375 -5.046875 2.828125 -5.046875 C 2.0625 -5.046875 1.484375 -4.8125 1.0625 -4.375 C 0.65625 -3.921875 0.453125 -3.28125 0.453125 -2.453125 C 0.453125 -1.625 0.65625 -1 1.03125 -0.5625 C 1.421875 -0.125 2 0.09375 2.75 0.09375 Z M 2.75 0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 1.8125 0 L 1.8125 -4.953125 L 0.75 -4.953125 L 0.75 0 L 1.8125 0 Z M 0.6875 -6.265625 C 0.6875 -6.09375 0.75 -5.953125 0.84375 -5.84375 C 0.953125 -5.734375 1.09375 -5.6875 1.28125 -5.6875 C 1.46875 -5.6875 1.609375 -5.734375 1.71875 -5.84375 C 1.8125 -5.953125 1.875 -6.09375 1.875 -6.265625 C 1.875 -6.453125 1.8125 -6.59375 1.71875 -6.703125 C 1.609375 -6.796875 1.46875 -6.859375 1.28125 -6.859375 C 1.09375 -6.859375 0.953125 -6.796875 0.84375 -6.703125 C 0.75 -6.59375 0.6875 -6.453125 0.6875 -6.265625 Z M 0.6875 -6.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 5.109375 0 L 5.109375 -3.234375 C 5.109375 -4.4375 4.515625 -5.046875 3.328125 -5.046875 C 2.984375 -5.046875 2.6875 -4.984375 2.40625 -4.84375 C 2.140625 -4.71875 1.921875 -4.546875 1.78125 -4.296875 L 1.71875 -4.296875 L 1.578125 -4.953125 L 0.75 -4.953125 L 0.75 0 L 1.8125 0 L 1.8125 -2.46875 C 1.8125 -3.078125 1.90625 -3.53125 2.109375 -3.78125 C 2.3125 -4.046875 2.640625 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.671875 -4.09375 3.828125 -3.90625 C 3.984375 -3.71875 4.046875 -3.421875 4.046875 -3.046875 L 4.046875 0 L 5.109375 0 Z M 5.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 2.921875 0.09375 C 3.25 0.09375 3.546875 0.0625 3.8125 0.015625 C 4.078125 -0.03125 4.34375 -0.125 4.59375 -0.25 L 4.59375 -1.109375 C 4.296875 -0.96875 4.03125 -0.875 3.78125 -0.828125 C 3.53125 -0.765625 3.25 -0.75 2.96875 -0.75 C 2.515625 -0.75 2.171875 -0.875 1.9375 -1.125 C 1.6875 -1.390625 1.546875 -1.765625 1.546875 -2.234375 L 4.84375 -2.234375 L 4.84375 -2.8125 C 4.84375 -3.5 4.65625 -4.046875 4.265625 -4.453125 C 3.890625 -4.84375 3.375 -5.046875 2.71875 -5.046875 C 2.015625 -5.046875 1.46875 -4.8125 1.0625 -4.34375 C 0.65625 -3.890625 0.453125 -3.25 0.453125 -2.4375 C 0.453125 -1.65625 0.671875 -1.03125 1.109375 -0.578125 C 1.546875 -0.140625 2.140625 0.09375 2.921875 0.09375 Z M 2.71875 -4.25 C 3.0625 -4.25 3.3125 -4.140625 3.515625 -3.9375 C 3.703125 -3.71875 3.796875 -3.40625 3.8125 -3 L 1.5625 -3 C 1.59375 -3.40625 1.71875 -3.71875 1.921875 -3.921875 C 2.125 -4.140625 2.390625 -4.25 2.71875 -4.25 Z M 2.71875 -4.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 4.078125 -1.40625 C 4.078125 -1.640625 4.03125 -1.859375 3.953125 -2.03125 C 3.859375 -2.203125 3.71875 -2.34375 3.53125 -2.484375 C 3.34375 -2.609375 3.046875 -2.765625 2.640625 -2.921875 C 2.15625 -3.109375 1.84375 -3.25 1.6875 -3.359375 C 1.546875 -3.46875 1.484375 -3.59375 1.484375 -3.75 C 1.484375 -4.078125 1.75 -4.234375 2.3125 -4.234375 C 2.671875 -4.234375 3.125 -4.109375 3.65625 -3.890625 L 4 -4.6875 C 3.484375 -4.921875 2.921875 -5.046875 2.34375 -5.046875 C 1.765625 -5.046875 1.296875 -4.921875 0.953125 -4.6875 C 0.609375 -4.453125 0.4375 -4.125 0.4375 -3.703125 C 0.4375 -3.34375 0.53125 -3.0625 0.75 -2.84375 C 0.9375 -2.625 1.328125 -2.40625 1.90625 -2.1875 C 2.1875 -2.0625 2.421875 -1.96875 2.578125 -1.875 C 2.75 -1.78125 2.859375 -1.703125 2.9375 -1.609375 C 3.015625 -1.53125 3.046875 -1.421875 3.046875 -1.296875 C 3.046875 -0.90625 2.71875 -0.71875 2.078125 -0.71875 C 1.578125 -0.71875 1.03125 -0.84375 0.453125 -1.125 L 0.453125 -0.203125 C 0.84375 -0.015625 1.375 0.09375 2.03125 0.09375 C 2.703125 0.09375 3.203125 -0.046875 3.546875 -0.296875 C 3.90625 -0.5625 4.078125 -0.921875 4.078125 -1.40625 Z M 4.078125 -1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 6.1875 -3.34375 C 6.1875 -4.359375 5.890625 -5.140625 5.328125 -5.703125 C 4.75 -6.265625 3.9375 -6.546875 2.890625 -6.546875 L 0.859375 -6.546875 L 0.859375 0 L 2.703125 0 C 3.828125 0 4.6875 -0.28125 5.28125 -0.859375 C 5.890625 -1.421875 6.1875 -2.25 6.1875 -3.34375 Z M 5.0625 -3.296875 C 5.0625 -1.703125 4.265625 -0.90625 2.703125 -0.90625 L 1.9375 -0.90625 L 1.9375 -5.65625 L 2.859375 -5.65625 C 4.328125 -5.65625 5.0625 -4.875 5.0625 -3.296875 Z M 5.0625 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 3.265625 -5.046875 C 2.953125 -5.046875 2.671875 -4.953125 2.40625 -4.78125 C 2.15625 -4.609375 1.9375 -4.375 1.765625 -4.078125 L 1.71875 -4.078125 L 1.578125 -4.953125 L 0.75 -4.953125 L 0.75 0 L 1.8125 0 L 1.8125 -2.59375 C 1.8125 -3.03125 1.9375 -3.390625 2.1875 -3.65625 C 2.453125 -3.9375 2.796875 -4.078125 3.21875 -4.078125 C 3.375 -4.078125 3.53125 -4.046875 3.6875 -4.015625 L 3.78125 -5 C 3.65625 -5.03125 3.46875 -5.046875 3.265625 -5.046875 Z M 3.265625 -5.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 6.671875 -3.28125 C 6.671875 -4.359375 6.40625 -5.1875 5.875 -5.765625 C 5.34375 -6.359375 4.59375 -6.65625 3.625 -6.65625 C 2.640625 -6.65625 1.875 -6.359375 1.34375 -5.78125 C 0.8125 -5.203125 0.546875 -4.375 0.546875 -3.296875 C 0.546875 -2.21875 0.8125 -1.375 1.328125 -0.78125 C 1.875 -0.203125 2.625 0.09375 3.609375 0.09375 C 4.59375 0.09375 5.34375 -0.203125 5.875 -0.796875 C 6.40625 -1.390625 6.671875 -2.21875 6.671875 -3.28125 Z M 1.671875 -3.28125 C 1.671875 -4.078125 1.84375 -4.6875 2.171875 -5.109375 C 2.5 -5.53125 2.984375 -5.734375 3.625 -5.734375 C 4.265625 -5.734375 4.734375 -5.53125 5.0625 -5.109375 C 5.375 -4.6875 5.546875 -4.078125 5.546875 -3.28125 C 5.546875 -2.46875 5.375 -1.859375 5.046875 -1.4375 C 4.734375 -1.03125 4.25 -0.828125 3.609375 -0.828125 C 2.96875 -0.828125 2.5 -1.03125 2.171875 -1.453125 C 1.84375 -1.859375 1.671875 -2.484375 1.671875 -3.28125 Z M 1.671875 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 4.9375 -4.953125 L 3.21875 -4.953125 C 3.140625 -4.96875 3.03125 -5 2.875 -5.015625 C 2.71875 -5.03125 2.578125 -5.046875 2.4375 -5.046875 C 1.8125 -5.046875 1.328125 -4.890625 0.984375 -4.59375 C 0.640625 -4.296875 0.46875 -3.890625 0.46875 -3.34375 C 0.46875 -3.015625 0.5625 -2.71875 0.71875 -2.46875 C 0.875 -2.21875 1.078125 -2.046875 1.34375 -1.9375 C 1.140625 -1.8125 0.96875 -1.6875 0.875 -1.546875 C 0.765625 -1.421875 0.71875 -1.265625 0.71875 -1.078125 C 0.71875 -0.9375 0.765625 -0.796875 0.84375 -0.65625 C 0.9375 -0.53125 1.0625 -0.4375 1.203125 -0.375 C 0.859375 -0.296875 0.59375 -0.15625 0.390625 0.046875 C 0.203125 0.265625 0.109375 0.515625 0.109375 0.828125 C 0.109375 1.265625 0.28125 1.609375 0.640625 1.84375 C 0.984375 2.078125 1.5 2.203125 2.1875 2.203125 C 3.046875 2.203125 3.71875 2.046875 4.1875 1.75 C 4.65625 1.4375 4.875 1 4.875 0.453125 C 4.875 0.015625 4.734375 -0.328125 4.453125 -0.5625 C 4.171875 -0.796875 3.75 -0.90625 3.21875 -0.90625 L 2.34375 -0.90625 C 2.0625 -0.90625 1.875 -0.9375 1.765625 -1 C 1.65625 -1.046875 1.609375 -1.140625 1.609375 -1.25 C 1.609375 -1.4375 1.71875 -1.609375 1.9375 -1.734375 C 2.078125 -1.71875 2.21875 -1.703125 2.375 -1.703125 C 2.984375 -1.703125 3.46875 -1.859375 3.828125 -2.140625 C 4.1875 -2.4375 4.359375 -2.84375 4.359375 -3.34375 C 4.359375 -3.515625 4.328125 -3.6875 4.28125 -3.828125 C 4.234375 -3.984375 4.171875 -4.109375 4.09375 -4.21875 L 4.9375 -4.375 L 4.9375 -4.953125 Z M 1.046875 0.765625 C 1.046875 0.53125 1.140625 0.328125 1.3125 0.203125 C 1.484375 0.046875 1.734375 -0.015625 2.03125 -0.015625 L 2.828125 -0.015625 C 3.25 -0.015625 3.53125 0.03125 3.6875 0.109375 C 3.84375 0.203125 3.921875 0.359375 3.921875 0.578125 C 3.921875 0.84375 3.78125 1.0625 3.5 1.234375 C 3.21875 1.390625 2.78125 1.484375 2.21875 1.484375 C 1.84375 1.484375 1.546875 1.421875 1.359375 1.296875 C 1.140625 1.171875 1.046875 1 1.046875 0.765625 Z M 1.5 -3.34375 C 1.5 -3.6875 1.578125 -3.9375 1.734375 -4.109375 C 1.890625 -4.28125 2.125 -4.359375 2.421875 -4.359375 C 2.734375 -4.359375 2.953125 -4.28125 3.109375 -4.109375 C 3.265625 -3.9375 3.34375 -3.6875 3.34375 -3.359375 C 3.34375 -2.703125 3.03125 -2.375 2.421875 -2.375 C 2.125 -2.375 1.890625 -2.46875 1.734375 -2.640625 C 1.578125 -2.796875 1.5 -3.046875 1.5 -3.34375 Z M 1.5 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 3.84375 0 L 4.609375 0 L 4.609375 -3.34375 C 4.609375 -3.921875 4.4375 -4.359375 4.125 -4.625 C 3.796875 -4.90625 3.328125 -5.046875 2.703125 -5.046875 C 2.40625 -5.046875 2.109375 -5 1.796875 -4.9375 C 1.46875 -4.859375 1.171875 -4.75 0.90625 -4.609375 L 1.25 -3.859375 C 1.46875 -3.96875 1.6875 -4.046875 1.921875 -4.125 C 2.15625 -4.203125 2.390625 -4.234375 2.65625 -4.234375 C 2.953125 -4.234375 3.1875 -4.15625 3.34375 -4 C 3.484375 -3.84375 3.5625 -3.609375 3.5625 -3.296875 L 3.5625 -3.03125 L 2.703125 -3 C 1.9375 -2.984375 1.359375 -2.828125 0.96875 -2.578125 C 0.59375 -2.3125 0.40625 -1.9375 0.40625 -1.421875 C 0.40625 -0.9375 0.53125 -0.5625 0.8125 -0.296875 C 1.078125 -0.046875 1.46875 0.09375 1.953125 0.09375 C 2.328125 0.09375 2.640625 0.03125 2.890625 -0.078125 C 3.125 -0.1875 3.375 -0.390625 3.609375 -0.6875 L 3.640625 -0.6875 L 3.84375 0 Z M 2.28125 -0.71875 C 2.015625 -0.71875 1.828125 -0.78125 1.6875 -0.890625 C 1.5625 -1.015625 1.5 -1.1875 1.5 -1.40625 C 1.5 -1.71875 1.609375 -1.9375 1.84375 -2.09375 C 2.0625 -2.234375 2.421875 -2.3125 2.921875 -2.34375 L 3.546875 -2.359375 L 3.546875 -1.9375 C 3.546875 -1.546875 3.4375 -1.25 3.203125 -1.03125 C 2.96875 -0.828125 2.671875 -0.71875 2.28125 -0.71875 Z M 2.28125 -0.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 4.0625 0 L 4.0625 -0.8125 L 1.546875 -0.8125 L 3.984375 -4.21875 L 3.984375 -4.953125 L 0.453125 -4.953125 L 0.453125 -4.140625 L 2.8125 -4.140625 L 0.296875 -0.65625 L 0.296875 0 L 4.0625 0 Z M 4.0625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 5.203125 -4.5625 C 5.203125 -5.21875 5 -5.703125 4.59375 -6.046875 C 4.1875 -6.375 3.5625 -6.546875 2.75 -6.546875 L 0.859375 -6.546875 L 0.859375 0 L 1.9375 0 L 1.9375 -2.453125 L 2.609375 -2.453125 C 3.4375 -2.453125 4.078125 -2.640625 4.53125 -3 C 4.96875 -3.359375 5.203125 -3.890625 5.203125 -4.5625 Z M 1.9375 -3.34375 L 1.9375 -5.65625 L 2.671875 -5.65625 C 3.171875 -5.65625 3.53125 -5.5625 3.75 -5.375 C 3.984375 -5.1875 4.09375 -4.90625 4.09375 -4.53125 C 4.09375 -4.125 3.96875 -3.828125 3.71875 -3.640625 C 3.453125 -3.4375 3.046875 -3.34375 2.5 -3.34375 L 1.9375 -3.34375 Z M 1.9375 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 2.421875 0.09375 C 3.078125 0.09375 3.5625 -0.15625 3.90625 -0.65625 L 3.953125 -0.65625 L 4.140625 0 L 4.96875 0 L 4.96875 -6.96875 L 3.90625 -6.96875 L 3.90625 -5.15625 C 3.90625 -4.953125 3.9375 -4.671875 3.984375 -4.328125 L 3.921875 -4.328125 C 3.59375 -4.796875 3.09375 -5.046875 2.4375 -5.046875 C 1.8125 -5.046875 1.328125 -4.8125 0.984375 -4.359375 C 0.625 -3.921875 0.453125 -3.28125 0.453125 -2.46875 C 0.453125 -1.65625 0.625 -1.03125 0.96875 -0.578125 C 1.328125 -0.140625 1.8125 0.09375 2.421875 0.09375 Z M 2.703125 -0.765625 C 2.3125 -0.765625 2.03125 -0.90625 1.828125 -1.1875 C 1.640625 -1.484375 1.546875 -1.90625 1.546875 -2.453125 C 1.546875 -3 1.640625 -3.4375 1.84375 -3.734375 C 2.046875 -4.03125 2.328125 -4.1875 2.703125 -4.1875 C 3.125 -4.1875 3.453125 -4.046875 3.65625 -3.78125 C 3.84375 -3.53125 3.953125 -3.078125 3.953125 -2.453125 L 3.953125 -2.3125 C 3.953125 -1.765625 3.84375 -1.375 3.65625 -1.125 C 3.453125 -0.875 3.140625 -0.765625 2.703125 -0.765625 Z M 2.703125 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 1.8125 0 L 1.8125 -6.96875 L 0.75 -6.96875 L 0.75 0 L 1.8125 0 Z M 1.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 1.875 0 L 3.015625 0 L 4.90625 -4.953125 L 3.78125 -4.953125 L 2.78125 -2.078125 C 2.59375 -1.5 2.5 -1.109375 2.46875 -0.90625 L 2.4375 -0.90625 C 2.390625 -1.203125 2.296875 -1.59375 2.125 -2.078125 L 1.109375 -4.953125 L 0 -4.953125 L 1.875 0 Z M 1.875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 3.234375 -4.15625 L 3.234375 -4.953125 L 2.03125 -4.953125 L 2.03125 -5.28125 C 2.03125 -5.578125 2.078125 -5.796875 2.1875 -5.9375 C 2.296875 -6.09375 2.484375 -6.15625 2.71875 -6.15625 C 2.953125 -6.15625 3.203125 -6.125 3.453125 -6.03125 L 3.734375 -6.828125 C 3.375 -6.953125 3.015625 -7.015625 2.640625 -7.015625 C 2.078125 -7.015625 1.65625 -6.875 1.390625 -6.59375 C 1.109375 -6.3125 0.96875 -5.875 0.96875 -5.296875 L 0.96875 -4.96875 L 0.15625 -4.65625 L 0.15625 -4.15625 L 0.96875 -4.15625 L 0.96875 0 L 2.03125 0 L 2.03125 -4.15625 L 3.234375 -4.15625 Z M 3.234375 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 0 -4.953125 L 1.984375 0 L 1.8125 0.46875 C 1.59375 1.046875 1.234375 1.34375 0.734375 1.34375 C 0.53125 1.34375 0.34375 1.328125 0.1875 1.296875 L 0.1875 2.125 C 0.40625 2.171875 0.640625 2.203125 0.875 2.203125 C 1.78125 2.203125 2.40625 1.6875 2.796875 0.65625 L 4.921875 -4.953125 L 3.78125 -4.953125 C 3.09375 -2.953125 2.71875 -1.84375 2.640625 -1.609375 C 2.578125 -1.375 2.515625 -1.1875 2.5 -1.015625 L 2.453125 -1.015625 C 2.40625 -1.375 2.3125 -1.75 2.15625 -2.140625 L 1.140625 -4.953125 L 0 -4.953125 Z M 0 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 3.28125 -5.046875 C 2.640625 -5.046875 2.140625 -4.796875 1.8125 -4.296875 L 1.765625 -4.296875 C 1.765625 -4.375 1.78125 -4.515625 1.78125 -4.765625 C 1.796875 -5 1.8125 -5.1875 1.8125 -5.3125 L 1.8125 -6.96875 L 0.75 -6.96875 L 0.75 0 L 1.546875 0 L 1.734375 -0.59375 L 1.8125 -0.59375 C 2.15625 -0.140625 2.640625 0.09375 3.265625 0.09375 C 3.890625 0.09375 4.375 -0.140625 4.71875 -0.59375 C 5.0625 -1.03125 5.25 -1.671875 5.25 -2.484375 C 5.25 -3.296875 5.0625 -3.921875 4.734375 -4.375 C 4.375 -4.8125 3.90625 -5.046875 3.28125 -5.046875 Z M 3.015625 -4.1875 C 3.78125 -4.1875 4.171875 -3.625 4.171875 -2.5 C 4.171875 -1.9375 4.0625 -1.515625 3.875 -1.21875 C 3.6875 -0.921875 3.40625 -0.765625 3.03125 -0.765625 C 2.59375 -0.765625 2.28125 -0.90625 2.09375 -1.171875 C 1.90625 -1.453125 1.8125 -1.875 1.8125 -2.484375 L 1.8125 -2.5625 C 1.8125 -3.140625 1.90625 -3.5625 2.09375 -3.8125 C 2.28125 -4.0625 2.578125 -4.1875 3.015625 -4.1875 Z M 3.015625 -4.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-27">
<path style="stroke:none;" d="M 2.015625 -5.140625 C 2.015625 -5.34375 2.09375 -5.5 2.234375 -5.625 C 2.359375 -5.734375 2.546875 -5.796875 2.796875 -5.796875 C 3 -5.796875 3.1875 -5.75 3.3125 -5.625 C 3.4375 -5.515625 3.5 -5.359375 3.5 -5.15625 C 3.5 -4.953125 3.4375 -4.78125 3.296875 -4.609375 C 3.15625 -4.4375 2.921875 -4.265625 2.59375 -4.078125 C 2.40625 -4.265625 2.265625 -4.4375 2.171875 -4.609375 C 2.0625 -4.765625 2.015625 -4.953125 2.015625 -5.140625 Z M 2.6875 -0.8125 C 2.34375 -0.8125 2.0625 -0.90625 1.859375 -1.09375 C 1.640625 -1.265625 1.546875 -1.515625 1.546875 -1.8125 C 1.546875 -2.03125 1.59375 -2.234375 1.71875 -2.40625 C 1.84375 -2.59375 2.0625 -2.78125 2.375 -2.984375 L 4.09375 -1.296875 C 3.703125 -0.96875 3.234375 -0.8125 2.6875 -0.8125 Z M 0.4375 -1.734375 C 0.4375 -1.171875 0.625 -0.71875 1.015625 -0.40625 C 1.40625 -0.078125 1.953125 0.09375 2.640625 0.09375 C 3.046875 0.09375 3.4375 0.03125 3.78125 -0.09375 C 4.125 -0.21875 4.453125 -0.40625 4.75 -0.65625 L 5.421875 0 L 6.78125 0 L 5.421875 -1.296875 C 5.890625 -1.84375 6.21875 -2.53125 6.4375 -3.375 L 5.34375 -3.375 C 5.1875 -2.765625 4.984375 -2.28125 4.75 -1.96875 L 3.1875 -3.46875 C 3.65625 -3.75 4 -4.015625 4.203125 -4.296875 C 4.40625 -4.578125 4.5 -4.890625 4.5 -5.21875 C 4.5 -5.65625 4.359375 -6 4.046875 -6.265625 C 3.75 -6.515625 3.34375 -6.640625 2.8125 -6.640625 C 2.265625 -6.640625 1.828125 -6.515625 1.5 -6.25 C 1.171875 -5.984375 1.015625 -5.625 1.015625 -5.171875 C 1.015625 -4.921875 1.0625 -4.6875 1.171875 -4.453125 C 1.265625 -4.234375 1.46875 -3.953125 1.75 -3.625 C 1.25 -3.34375 0.90625 -3.046875 0.71875 -2.765625 C 0.53125 -2.46875 0.4375 -2.125 0.4375 -1.734375 Z M 0.4375 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-28">
<path style="stroke:none;" d="M 1.921875 0 L 1.921875 -2.6875 L 4.390625 -2.6875 L 4.390625 -3.59375 L 1.921875 -3.59375 L 1.921875 -5.640625 L 4.5625 -5.640625 L 4.5625 -6.546875 L 0.859375 -6.546875 L 0.859375 0 L 1.921875 0 Z M 1.921875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-29">
<path style="stroke:none;" d="M 0.859375 0 L 4.703125 0 L 4.703125 -0.921875 L 1.9375 -0.921875 L 1.9375 -6.546875 L 0.859375 -6.546875 L 0.859375 0 Z M 0.859375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-30">
<path style="stroke:none;" d="M 4.8125 0 L 6 0 L 7.390625 -4.953125 L 6.34375 -4.953125 L 5.703125 -2.515625 C 5.53125 -1.859375 5.421875 -1.34375 5.390625 -0.96875 L 5.34375 -0.96875 C 5.328125 -1.140625 5.296875 -1.375 5.234375 -1.671875 C 5.15625 -1.96875 5.109375 -2.203125 5.0625 -2.34375 L 4.328125 -4.953125 L 3.171875 -4.953125 L 2.421875 -2.34375 C 2.375 -2.203125 2.328125 -2 2.265625 -1.703125 C 2.203125 -1.4375 2.15625 -1.1875 2.125 -0.96875 L 2.09375 -0.96875 C 2.046875 -1.390625 1.9375 -1.90625 1.796875 -2.515625 L 1.171875 -4.953125 L 0.09375 -4.953125 L 1.484375 0 L 2.640625 0 L 3.296875 -2.296875 C 3.40625 -2.640625 3.53125 -3.21875 3.71875 -4.015625 L 3.75 -4.015625 C 3.953125 -3.125 4.09375 -2.5625 4.171875 -2.3125 L 4.8125 0 Z M 4.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-31">
<path style="stroke:none;" d="M 4.5625 0 L 4.5625 -0.90625 L 1.9375 -0.90625 L 1.9375 -2.96875 L 4.40625 -2.96875 L 4.40625 -3.859375 L 1.9375 -3.859375 L 1.9375 -5.640625 L 4.5625 -5.640625 L 4.5625 -6.546875 L 0.859375 -6.546875 L 0.859375 0 L 4.5625 0 Z M 4.5625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-32">
<path style="stroke:none;" d="M 3.6875 0 L 4.640625 0 L 6.609375 -5.453125 L 6.640625 -5.453125 C 6.625 -5.34375 6.609375 -5.03125 6.59375 -4.515625 C 6.578125 -3.984375 6.578125 -3.5625 6.578125 -3.234375 L 6.578125 0 L 7.609375 0 L 7.609375 -6.546875 L 6.09375 -6.546875 L 4.21875 -1.34375 L 4.1875 -1.34375 L 2.375 -6.546875 L 0.859375 -6.546875 L 0.859375 0 L 1.84375 0 L 1.84375 -3.1875 C 1.84375 -3.890625 1.8125 -4.65625 1.765625 -5.46875 L 1.796875 -5.46875 L 3.6875 0 Z M 3.6875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-33">
<path style="stroke:none;" d="M 4.921875 0 L 6.0625 0 L 3.609375 -6.578125 L 2.453125 -6.578125 L 0 0 L 1.125 0 L 1.765625 -1.8125 L 4.265625 -1.8125 L 4.921875 0 Z M 3.984375 -2.734375 L 2.078125 -2.734375 L 2.671875 -4.453125 C 2.828125 -4.875 2.953125 -5.28125 3.03125 -5.65625 C 3.0625 -5.53125 3.109375 -5.34375 3.1875 -5.09375 C 3.265625 -4.828125 3.328125 -4.640625 3.375 -4.515625 L 3.984375 -2.734375 Z M 3.984375 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-34">
<path style="stroke:none;" d="M 2.71875 -0.75 C 1.9375 -0.75 1.546875 -1.3125 1.546875 -2.453125 C 1.546875 -3.015625 1.640625 -3.4375 1.84375 -3.734375 C 2.03125 -4.03125 2.3125 -4.1875 2.703125 -4.1875 C 3.140625 -4.1875 3.453125 -4.046875 3.65625 -3.78125 C 3.859375 -3.515625 3.953125 -3.078125 3.953125 -2.453125 L 3.953125 -2.296875 C 3.953125 -1.78125 3.859375 -1.390625 3.65625 -1.140625 C 3.46875 -0.875 3.15625 -0.75 2.71875 -0.75 Z M 2.40625 0.09375 C 3.09375 0.09375 3.59375 -0.15625 3.890625 -0.65625 L 3.953125 -0.65625 C 3.953125 -0.578125 3.9375 -0.46875 3.921875 -0.3125 C 3.90625 -0.171875 3.90625 -0.03125 3.90625 0.109375 L 3.90625 2.203125 L 4.96875 2.203125 L 4.96875 -4.953125 L 4.09375 -4.953125 L 3.96875 -4.296875 L 3.9375 -4.296875 C 3.75 -4.5625 3.515625 -4.75 3.28125 -4.875 C 3.03125 -4.984375 2.75 -5.046875 2.4375 -5.046875 C 1.828125 -5.046875 1.34375 -4.8125 0.984375 -4.359375 C 0.625 -3.90625 0.453125 -3.28125 0.453125 -2.46875 C 0.453125 -1.65625 0.625 -1.03125 0.96875 -0.578125 C 1.328125 -0.140625 1.796875 0.09375 2.40625 0.09375 Z M 2.40625 0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-35">
<path style="stroke:none;" d="M 1.84375 -0.96875 L 1.78125 -1.0625 L 0.75 -1.0625 C 0.640625 -0.375 0.484375 0.375 0.28125 1.1875 L 1.0625 1.1875 C 1.4375 0.3125 1.703125 -0.40625 1.84375 -0.96875 Z M 1.84375 -0.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-36">
<path style="stroke:none;" d="M 0.328125 -2.015625 L 2.625 -2.015625 L 2.625 -2.90625 L 0.328125 -2.90625 L 0.328125 -2.015625 Z M 0.328125 -2.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-37">
<path style="stroke:none;" d="M 0.375 -2.515625 C 0.375 -1.734375 0.484375 -1 0.71875 -0.328125 C 0.9375 0.34375 1.28125 0.9375 1.71875 1.453125 L 2.625 1.453125 C 2.21875 0.90625 1.90625 0.28125 1.671875 -0.40625 C 1.453125 -1.09375 1.34375 -1.796875 1.34375 -2.515625 C 1.34375 -3.25 1.453125 -3.96875 1.671875 -4.65625 C 1.90625 -5.359375 2.21875 -5.984375 2.640625 -6.546875 L 1.71875 -6.546875 C 1.28125 -6.03125 0.9375 -5.421875 0.71875 -4.734375 C 0.484375 -4.046875 0.375 -3.3125 0.375 -2.515625 Z M 0.375 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-38">
<path style="stroke:none;" d="M 1.765625 -2.609375 L 1.734375 -2.609375 L 1.796875 -3.5625 L 1.796875 -6.96875 L 0.75 -6.96875 L 0.75 0 L 1.796875 0 L 1.796875 -1.703125 L 2.375 -2.171875 L 3.96875 0 L 5.203125 0 L 3.078125 -2.828125 L 5.078125 -4.953125 L 3.859375 -4.953125 L 2.359375 -3.359375 L 1.765625 -2.609375 Z M 1.765625 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-39">
<path style="stroke:none;" d="M 2.546875 -2.515625 C 2.546875 -3.296875 2.421875 -4.03125 2.1875 -4.734375 C 1.96875 -5.421875 1.625 -6.03125 1.1875 -6.546875 L 0.265625 -6.546875 C 0.6875 -5.984375 1 -5.359375 1.234375 -4.65625 C 1.453125 -3.96875 1.5625 -3.25 1.5625 -2.515625 C 1.5625 -1.796875 1.453125 -1.09375 1.234375 -0.40625 C 1.015625 0.265625 0.6875 0.890625 0.28125 1.453125 L 1.1875 1.453125 C 1.625 0.953125 1.96875 0.359375 2.1875 -0.3125 C 2.421875 -1 2.546875 -1.734375 2.546875 -2.515625 Z M 2.546875 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-40">
<path style="stroke:none;" d="M 5.109375 0 L 5.109375 -3.234375 C 5.109375 -4.4375 4.515625 -5.046875 3.3125 -5.046875 C 2.96875 -5.046875 2.671875 -4.96875 2.421875 -4.84375 C 2.15625 -4.71875 1.96875 -4.53125 1.8125 -4.296875 L 1.75 -4.296875 C 1.78125 -4.609375 1.8125 -4.921875 1.8125 -5.203125 L 1.8125 -6.96875 L 0.75 -6.96875 L 0.75 0 L 1.8125 0 L 1.8125 -2.453125 C 1.8125 -3.078125 1.90625 -3.515625 2.109375 -3.78125 C 2.328125 -4.046875 2.640625 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.671875 -4.09375 3.828125 -3.90625 C 3.984375 -3.71875 4.046875 -3.421875 4.046875 -3.046875 L 4.046875 0 L 5.109375 0 Z M 5.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-41">
<path style="stroke:none;" d="M 1.859375 -2.53125 L 0.109375 0 L 1.296875 0 L 2.515625 -1.859375 L 3.75 0 L 4.9375 0 L 3.1875 -2.53125 L 4.84375 -4.953125 L 3.65625 -4.953125 L 2.515625 -3.21875 L 1.390625 -4.953125 L 0.1875 -4.953125 L 1.859375 -2.53125 Z M 1.859375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-42">
<path style="stroke:none;" d="M 1.78125 -1.0625 L 0.75 -1.0625 C 0.640625 -0.375 0.484375 0.375 0.28125 1.1875 L 1.0625 1.1875 C 1.4375 0.3125 1.703125 -0.40625 1.84375 -0.96875 L 1.78125 -1.0625 Z M 0.59375 -4.390625 C 0.59375 -4.171875 0.640625 -4 0.75 -3.875 C 0.875 -3.75 1.03125 -3.6875 1.25 -3.6875 C 1.46875 -3.6875 1.625 -3.75 1.75 -3.875 C 1.859375 -4 1.921875 -4.171875 1.921875 -4.390625 C 1.921875 -4.59375 1.859375 -4.765625 1.75 -4.875 C 1.640625 -5 1.46875 -5.0625 1.25 -5.0625 C 0.8125 -5.0625 0.59375 -4.84375 0.59375 -4.390625 Z M 0.59375 -4.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-43">
<path style="stroke:none;" d="M 3.125 0 L 3.125 -5.625 L 5.046875 -5.625 L 5.046875 -6.546875 L 0.125 -6.546875 L 0.125 -5.625 L 2.0625 -5.625 L 2.0625 0 L 3.125 0 Z M 3.125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-44">
<path style="stroke:none;" d="M 0.59375 -0.5625 C 0.59375 -0.34375 0.65625 -0.171875 0.765625 -0.046875 C 0.875 0.0625 1.046875 0.125 1.265625 0.125 C 1.46875 0.125 1.640625 0.0625 1.75 -0.046875 C 1.875 -0.171875 1.921875 -0.34375 1.921875 -0.5625 C 1.921875 -0.765625 1.875 -0.9375 1.75 -1.0625 C 1.640625 -1.171875 1.484375 -1.234375 1.265625 -1.234375 C 1.046875 -1.234375 0.875 -1.171875 0.765625 -1.0625 C 0.65625 -0.9375 0.59375 -0.78125 0.59375 -0.5625 Z M 0.59375 -4.390625 C 0.59375 -4.171875 0.65625 -4 0.765625 -3.875 C 0.875 -3.75 1.046875 -3.6875 1.265625 -3.6875 C 1.46875 -3.6875 1.640625 -3.75 1.75 -3.875 C 1.875 -4 1.921875 -4.171875 1.921875 -4.390625 C 1.921875 -4.59375 1.875 -4.765625 1.765625 -4.875 C 1.640625 -5 1.484375 -5.0625 1.265625 -5.0625 C 0.8125 -5.0625 0.59375 -4.84375 0.59375 -4.390625 Z M 0.59375 -4.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-45">
<path style="stroke:none;" d="M 6.90625 0 L 8.609375 -6.546875 L 7.53125 -6.546875 L 6.59375 -2.734375 C 6.421875 -2.078125 6.3125 -1.53125 6.28125 -1.109375 C 6.15625 -1.8125 6.046875 -2.34375 5.9375 -2.703125 L 4.84375 -6.546875 L 3.78125 -6.546875 L 2.71875 -2.71875 C 2.671875 -2.53125 2.609375 -2.28125 2.546875 -1.96875 C 2.484375 -1.640625 2.421875 -1.359375 2.390625 -1.109375 C 2.328125 -1.578125 2.234375 -2.125 2.078125 -2.734375 L 1.140625 -6.546875 L 0.046875 -6.546875 L 0.90625 -3.28125 L 1.765625 0 L 2.921875 0 L 4.015625 -3.890625 C 4.046875 -4.03125 4.109375 -4.265625 4.171875 -4.5625 C 4.25 -4.875 4.296875 -5.125 4.328125 -5.3125 C 4.328125 -5.1875 4.375 -4.96875 4.453125 -4.640625 C 4.515625 -4.328125 4.578125 -4.078125 4.625 -3.90625 L 5.734375 0 L 6.90625 0 Z M 6.90625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-46">
<path style="stroke:none;" d="M 0.453125 -3.71875 L 4.765625 -3.71875 L 4.765625 -4.515625 L 0.453125 -4.515625 L 0.453125 -3.71875 Z M 0.453125 -1.9375 L 4.765625 -1.9375 L 4.765625 -2.734375 L 0.453125 -2.734375 L 0.453125 -1.9375 Z M 0.453125 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-47">
<path style="stroke:none;" d="M 1.140625 0 L 2.28125 0 L 4.859375 -5.796875 L 4.859375 -6.53125 L 0.328125 -6.53125 L 0.328125 -5.609375 L 3.734375 -5.609375 L 1.140625 0 Z M 1.140625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-48">
<path style="stroke:none;" d="M 4.84375 -3.28125 C 4.84375 -4.375 4.65625 -5.21875 4.28125 -5.796875 C 3.90625 -6.359375 3.34375 -6.65625 2.609375 -6.65625 C 1.875 -6.65625 1.3125 -6.375 0.9375 -5.828125 C 0.578125 -5.28125 0.390625 -4.421875 0.390625 -3.28125 C 0.390625 -2.171875 0.578125 -1.328125 0.953125 -0.765625 C 1.328125 -0.203125 1.890625 0.09375 2.609375 0.09375 C 3.375 0.09375 3.921875 -0.1875 4.296875 -0.734375 C 4.65625 -1.296875 4.84375 -2.140625 4.84375 -3.28125 Z M 1.453125 -3.28125 C 1.453125 -4.171875 1.546875 -4.8125 1.734375 -5.1875 C 1.921875 -5.578125 2.21875 -5.765625 2.609375 -5.765625 C 3.015625 -5.765625 3.3125 -5.578125 3.5 -5.171875 C 3.6875 -4.78125 3.78125 -4.15625 3.78125 -3.28125 C 3.78125 -2.390625 3.6875 -1.765625 3.5 -1.375 C 3.3125 -0.984375 3.015625 -0.78125 2.609375 -0.78125 C 2.21875 -0.78125 1.921875 -0.984375 1.734375 -1.359375 C 1.546875 -1.734375 1.453125 -2.375 1.453125 -3.28125 Z M 1.453125 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-49">
<path style="stroke:none;" d="M 4.828125 -3.75 C 4.828125 -4.359375 4.734375 -4.875 4.546875 -5.296875 C 4.359375 -5.734375 4.09375 -6.0625 3.75 -6.296875 C 3.40625 -6.515625 3 -6.625 2.53125 -6.625 C 1.875 -6.625 1.34375 -6.4375 0.953125 -6.03125 C 0.578125 -5.625 0.390625 -5.078125 0.390625 -4.390625 C 0.390625 -3.765625 0.546875 -3.265625 0.875 -2.90625 C 1.21875 -2.546875 1.671875 -2.359375 2.25 -2.359375 C 2.578125 -2.359375 2.875 -2.421875 3.125 -2.546875 C 3.375 -2.671875 3.59375 -2.859375 3.765625 -3.125 L 3.8125 -3.125 C 3.78125 -2.3125 3.59375 -1.703125 3.25 -1.328125 C 2.890625 -0.9375 2.359375 -0.75 1.65625 -0.75 C 1.390625 -0.75 1.109375 -0.78125 0.84375 -0.859375 L 0.84375 0.015625 C 1.03125 0.0625 1.3125 0.09375 1.703125 0.09375 C 2.75 0.09375 3.53125 -0.234375 4.046875 -0.859375 C 4.578125 -1.5 4.828125 -2.46875 4.828125 -3.75 Z M 2.546875 -5.765625 C 2.78125 -5.765625 3 -5.6875 3.1875 -5.5625 C 3.375 -5.421875 3.515625 -5.234375 3.625 -5 C 3.71875 -4.78125 3.765625 -4.53125 3.765625 -4.265625 C 3.765625 -3.984375 3.65625 -3.734375 3.40625 -3.515625 C 3.171875 -3.3125 2.859375 -3.203125 2.515625 -3.203125 C 2.140625 -3.203125 1.875 -3.3125 1.6875 -3.515625 C 1.515625 -3.734375 1.421875 -4.03125 1.421875 -4.40625 C 1.421875 -4.828125 1.515625 -5.171875 1.703125 -5.40625 C 1.90625 -5.640625 2.1875 -5.765625 2.546875 -5.765625 Z M 2.546875 -5.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-50">
<path style="stroke:none;" d="M 2.625 -4.09375 C 2.40625 -4.09375 2.21875 -4.078125 2.0625 -4.046875 C 1.921875 -4.03125 1.796875 -4.015625 1.6875 -3.984375 L 1.84375 -5.609375 L 4.3125 -5.609375 L 4.3125 -6.546875 L 0.90625 -6.546875 L 0.65625 -3.34375 L 1.125 -3.078125 C 1.28125 -3.109375 1.46875 -3.140625 1.671875 -3.171875 C 1.875 -3.203125 2.046875 -3.21875 2.1875 -3.21875 C 3.1875 -3.21875 3.6875 -2.828125 3.6875 -2.03125 C 3.6875 -1.625 3.5625 -1.3125 3.3125 -1.109375 C 3.0625 -0.890625 2.703125 -0.78125 2.234375 -0.78125 C 1.96875 -0.78125 1.671875 -0.828125 1.359375 -0.90625 C 1.046875 -0.96875 0.765625 -1.078125 0.53125 -1.21875 L 0.53125 -0.265625 C 0.9375 -0.03125 1.515625 0.09375 2.25 0.09375 C 3.046875 0.09375 3.671875 -0.109375 4.109375 -0.5 C 4.546875 -0.890625 4.765625 -1.4375 4.765625 -2.140625 C 4.765625 -2.734375 4.578125 -3.21875 4.1875 -3.5625 C 3.8125 -3.921875 3.28125 -4.09375 2.625 -4.09375 Z M 2.625 -4.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d="M 0.859375 -6.546875 L 0.859375 0 L 4.625 0 L 4.625 -6.546875 L 0.859375 -6.546875 Z M 1.328125 -0.46875 L 1.328125 -6.078125 L 4.171875 -6.078125 L 4.171875 -0.46875 L 1.328125 -0.46875 Z M 1.328125 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0.859375 0 L 1.9375 0 L 1.9375 -6.546875 L 0.859375 -6.546875 L 0.859375 0 Z M 0.859375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 3.234375 -4.15625 L 3.234375 -4.953125 L 2.03125 -4.953125 L 2.03125 -5.28125 C 2.03125 -5.578125 2.078125 -5.796875 2.1875 -5.9375 C 2.296875 -6.09375 2.484375 -6.15625 2.71875 -6.15625 C 2.953125 -6.15625 3.203125 -6.125 3.453125 -6.03125 L 3.734375 -6.828125 C 3.375 -6.953125 3.015625 -7.015625 2.640625 -7.015625 C 2.078125 -7.015625 1.65625 -6.875 1.390625 -6.59375 C 1.109375 -6.3125 0.96875 -5.875 0.96875 -5.296875 L 0.96875 -4.96875 L 0.15625 -4.65625 L 0.15625 -4.15625 L 0.96875 -4.15625 L 0.96875 0 L 2.03125 0 L 2.03125 -4.15625 L 3.234375 -4.15625 Z M 6.5625 -4.15625 L 6.5625 -4.953125 L 5.359375 -4.953125 L 5.359375 -5.28125 C 5.359375 -5.578125 5.40625 -5.796875 5.515625 -5.9375 C 5.625 -6.09375 5.796875 -6.15625 6.046875 -6.15625 C 6.28125 -6.15625 6.53125 -6.125 6.78125 -6.03125 L 7.0625 -6.828125 C 6.703125 -6.953125 6.34375 -7.015625 5.96875 -7.015625 C 5.40625 -7.015625 4.984375 -6.875 4.71875 -6.59375 C 4.4375 -6.3125 4.296875 -5.875 4.296875 -5.296875 L 4.296875 -4.96875 L 3.484375 -4.65625 L 3.484375 -4.15625 L 4.296875 -4.15625 L 4.296875 0 L 5.359375 0 L 5.359375 -4.15625 L 6.5625 -4.15625 Z M 6.5625 -4.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d="M 0.5 -3.78125 L 0.5 0 L 2.671875 0 L 2.671875 -3.78125 L 0.5 -3.78125 Z M 0.765625 -0.265625 L 0.765625 -3.515625 L 2.40625 -3.515625 L 2.40625 -0.265625 L 0.765625 -0.265625 Z M 0.765625 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 1.84375 0 L 1.84375 -3.78125 L 1.484375 -3.78125 L 0.484375 -3.015625 L 0.71875 -2.71875 C 1.078125 -3.015625 1.28125 -3.171875 1.328125 -3.21875 C 1.375 -3.25 1.421875 -3.296875 1.453125 -3.328125 C 1.4375 -3.125 1.4375 -2.921875 1.4375 -2.6875 L 1.4375 0 L 1.84375 0 Z M 1.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 2.765625 -1.890625 C 2.765625 -2.53125 2.65625 -3.015625 2.453125 -3.34375 C 2.234375 -3.671875 1.921875 -3.84375 1.515625 -3.84375 C 1.09375 -3.84375 0.78125 -3.6875 0.578125 -3.359375 C 0.375 -3.046875 0.265625 -2.5625 0.265625 -1.890625 C 0.265625 -1.25 0.375 -0.765625 0.578125 -0.4375 C 0.796875 -0.109375 1.109375 0.046875 1.515625 0.046875 C 1.9375 0.046875 2.25 -0.109375 2.453125 -0.4375 C 2.65625 -0.75 2.765625 -1.234375 2.765625 -1.890625 Z M 0.703125 -1.890625 C 0.703125 -2.453125 0.765625 -2.84375 0.890625 -3.09375 C 1.015625 -3.34375 1.234375 -3.46875 1.515625 -3.46875 C 1.796875 -3.46875 2 -3.34375 2.125 -3.09375 C 2.265625 -2.84375 2.328125 -2.4375 2.328125 -1.890625 C 2.328125 -1.359375 2.265625 -0.953125 2.125 -0.703125 C 2 -0.4375 1.796875 -0.3125 1.515625 -0.3125 C 1.234375 -0.3125 1.015625 -0.4375 0.890625 -0.6875 C 0.765625 -0.953125 0.703125 -1.34375 0.703125 -1.890625 Z M 0.703125 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 1.515625 -3.828125 C 1.171875 -3.828125 0.90625 -3.75 0.703125 -3.59375 C 0.5 -3.421875 0.390625 -3.203125 0.390625 -2.9375 C 0.390625 -2.734375 0.4375 -2.5625 0.546875 -2.40625 C 0.65625 -2.25 0.828125 -2.109375 1.0625 -1.96875 C 0.53125 -1.734375 0.265625 -1.390625 0.265625 -0.96875 C 0.265625 -0.640625 0.375 -0.390625 0.59375 -0.21875 C 0.8125 -0.03125 1.125 0.046875 1.53125 0.046875 C 1.90625 0.046875 2.203125 -0.046875 2.421875 -0.234375 C 2.640625 -0.421875 2.75 -0.671875 2.75 -0.984375 C 2.75 -1.1875 2.6875 -1.375 2.5625 -1.546875 C 2.4375 -1.703125 2.21875 -1.859375 1.90625 -2 C 2.15625 -2.125 2.34375 -2.265625 2.453125 -2.421875 C 2.578125 -2.578125 2.640625 -2.75 2.640625 -2.9375 C 2.640625 -3.21875 2.53125 -3.4375 2.328125 -3.59375 C 2.125 -3.75 1.859375 -3.828125 1.515625 -3.828125 Z M 0.6875 -0.953125 C 0.6875 -1.140625 0.75 -1.296875 0.859375 -1.4375 C 0.984375 -1.5625 1.171875 -1.6875 1.421875 -1.796875 C 1.765625 -1.671875 2 -1.546875 2.125 -1.421875 C 2.265625 -1.296875 2.328125 -1.140625 2.328125 -0.96875 C 2.328125 -0.765625 2.265625 -0.59375 2.109375 -0.484375 C 1.96875 -0.359375 1.765625 -0.296875 1.515625 -0.296875 C 1.25 -0.296875 1.046875 -0.359375 0.90625 -0.46875 C 0.765625 -0.59375 0.6875 -0.75 0.6875 -0.953125 Z M 1.5 -3.484375 C 1.71875 -3.484375 1.890625 -3.4375 2.015625 -3.328125 C 2.140625 -3.234375 2.203125 -3.09375 2.203125 -2.921875 C 2.203125 -2.765625 2.15625 -2.625 2.046875 -2.5 C 1.953125 -2.375 1.78125 -2.265625 1.53125 -2.171875 C 1.25 -2.28125 1.0625 -2.390625 0.96875 -2.515625 C 0.859375 -2.625 0.8125 -2.765625 0.8125 -2.921875 C 0.8125 -3.09375 0.875 -3.234375 1 -3.328125 C 1.125 -3.4375 1.296875 -3.484375 1.5 -3.484375 Z M 1.5 -3.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 2.609375 -2.890625 C 2.609375 -3.1875 2.5 -3.40625 2.296875 -3.578125 C 2.09375 -3.75 1.8125 -3.828125 1.4375 -3.828125 C 1.21875 -3.828125 1 -3.796875 0.796875 -3.734375 C 0.59375 -3.65625 0.421875 -3.5625 0.265625 -3.4375 L 0.484375 -3.15625 C 0.671875 -3.28125 0.828125 -3.359375 0.984375 -3.40625 C 1.125 -3.4375 1.28125 -3.46875 1.453125 -3.46875 C 1.671875 -3.46875 1.84375 -3.421875 1.96875 -3.3125 C 2.09375 -3.203125 2.15625 -3.0625 2.15625 -2.875 C 2.15625 -2.640625 2.078125 -2.46875 1.890625 -2.328125 C 1.71875 -2.203125 1.5 -2.140625 1.203125 -2.140625 L 0.8125 -2.140625 L 0.8125 -1.765625 L 1.1875 -1.765625 C 1.90625 -1.765625 2.265625 -1.53125 2.265625 -1.078125 C 2.265625 -0.5625 1.953125 -0.3125 1.296875 -0.3125 C 1.125 -0.3125 0.953125 -0.328125 0.765625 -0.375 C 0.578125 -0.421875 0.40625 -0.484375 0.25 -0.5625 L 0.25 -0.15625 C 0.40625 -0.078125 0.5625 -0.015625 0.734375 0 C 0.890625 0.03125 1.078125 0.046875 1.28125 0.046875 C 1.734375 0.046875 2.09375 -0.046875 2.34375 -0.234375 C 2.59375 -0.4375 2.71875 -0.71875 2.71875 -1.078125 C 2.71875 -1.328125 2.640625 -1.53125 2.5 -1.6875 C 2.34375 -1.84375 2.125 -1.9375 1.828125 -1.96875 L 1.828125 -1.984375 C 2.078125 -2.046875 2.265625 -2.140625 2.40625 -2.296875 C 2.53125 -2.453125 2.609375 -2.65625 2.609375 -2.890625 Z M 2.609375 -2.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-5">
<path style="stroke:none;" d="M 2.75 0 L 2.75 -0.390625 L 0.796875 -0.390625 L 0.796875 -0.421875 L 1.625 -1.234375 C 2 -1.59375 2.25 -1.890625 2.375 -2.125 C 2.515625 -2.359375 2.578125 -2.59375 2.578125 -2.828125 C 2.578125 -3.140625 2.484375 -3.375 2.28125 -3.5625 C 2.078125 -3.75 1.796875 -3.828125 1.453125 -3.828125 C 1.03125 -3.828125 0.65625 -3.6875 0.3125 -3.40625 L 0.53125 -3.109375 C 0.703125 -3.25 0.859375 -3.34375 1 -3.390625 C 1.140625 -3.4375 1.296875 -3.46875 1.453125 -3.46875 C 1.671875 -3.46875 1.84375 -3.40625 1.953125 -3.296875 C 2.078125 -3.171875 2.140625 -3.015625 2.140625 -2.8125 C 2.140625 -2.671875 2.125 -2.53125 2.078125 -2.40625 C 2.015625 -2.28125 1.953125 -2.15625 1.859375 -2.03125 C 1.765625 -1.890625 1.5625 -1.671875 1.25 -1.375 L 0.265625 -0.375 L 0.265625 0 L 2.75 0 Z M 2.75 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d="M 0.5 -3.78125 L 0.5 0 L 2.671875 0 L 2.671875 -3.78125 L 0.5 -3.78125 Z M 0.765625 -0.265625 L 0.765625 -3.515625 L 2.40625 -3.515625 L 2.40625 -0.265625 L 0.765625 -0.265625 Z M 0.765625 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 2.796875 0 L 2.796875 -0.53125 L 1 -0.53125 L 1 -0.5625 L 1.65625 -1.203125 C 1.953125 -1.46875 2.15625 -1.703125 2.296875 -1.859375 C 2.421875 -2.015625 2.515625 -2.1875 2.578125 -2.328125 C 2.640625 -2.484375 2.65625 -2.65625 2.65625 -2.8125 C 2.65625 -3.125 2.5625 -3.375 2.34375 -3.5625 C 2.140625 -3.75 1.859375 -3.828125 1.5 -3.828125 C 1.28125 -3.828125 1.0625 -3.796875 0.859375 -3.71875 C 0.671875 -3.65625 0.46875 -3.53125 0.25 -3.34375 L 0.578125 -2.953125 C 0.765625 -3.078125 0.921875 -3.1875 1.046875 -3.234375 C 1.1875 -3.296875 1.328125 -3.3125 1.46875 -3.3125 C 1.65625 -3.3125 1.796875 -3.265625 1.890625 -3.171875 C 2 -3.0625 2.046875 -2.9375 2.046875 -2.765625 C 2.046875 -2.640625 2.03125 -2.53125 1.984375 -2.421875 C 1.9375 -2.3125 1.875 -2.1875 1.78125 -2.0625 C 1.6875 -1.9375 1.5 -1.734375 1.203125 -1.4375 L 0.234375 -0.453125 L 0.234375 0 L 2.796875 0 Z M 2.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 0.25 -1.609375 C 0.25 -1.265625 0.296875 -0.96875 0.40625 -0.71875 C 0.515625 -0.46875 0.671875 -0.28125 0.859375 -0.140625 C 1.0625 -0.015625 1.296875 0.046875 1.578125 0.046875 C 1.953125 0.046875 2.265625 -0.0625 2.484375 -0.296875 C 2.703125 -0.515625 2.8125 -0.84375 2.8125 -1.234375 C 2.8125 -1.59375 2.71875 -1.875 2.53125 -2.09375 C 2.328125 -2.296875 2.0625 -2.40625 1.71875 -2.40625 C 1.515625 -2.40625 1.359375 -2.359375 1.203125 -2.296875 C 1.0625 -2.21875 0.9375 -2.109375 0.859375 -1.96875 L 0.828125 -1.96875 C 0.84375 -2.4375 0.953125 -2.796875 1.15625 -3.015625 C 1.375 -3.234375 1.671875 -3.34375 2.078125 -3.34375 C 2.25 -3.34375 2.40625 -3.3125 2.53125 -3.28125 L 2.53125 -3.78125 C 2.40625 -3.8125 2.234375 -3.828125 2.046875 -3.828125 C 0.84375 -3.828125 0.25 -3.09375 0.25 -1.609375 Z M 1.5625 -0.453125 C 1.359375 -0.453125 1.1875 -0.53125 1.0625 -0.703125 C 0.921875 -0.859375 0.859375 -1.078125 0.859375 -1.3125 C 0.859375 -1.421875 0.890625 -1.515625 0.953125 -1.609375 C 1.015625 -1.703125 1.109375 -1.78125 1.21875 -1.84375 C 1.328125 -1.890625 1.453125 -1.921875 1.578125 -1.921875 C 1.796875 -1.921875 1.953125 -1.859375 2.046875 -1.734375 C 2.15625 -1.609375 2.21875 -1.453125 2.21875 -1.234375 C 2.21875 -0.984375 2.15625 -0.78125 2.046875 -0.65625 C 1.9375 -0.515625 1.765625 -0.453125 1.5625 -0.453125 Z M 1.5625 -0.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 1.515625 -3.828125 C 1.15625 -3.828125 0.875 -3.75 0.671875 -3.578125 C 0.453125 -3.421875 0.34375 -3.203125 0.34375 -2.9375 C 0.34375 -2.734375 0.390625 -2.5625 0.484375 -2.40625 C 0.59375 -2.265625 0.75 -2.109375 0.984375 -1.96875 C 0.71875 -1.84375 0.515625 -1.703125 0.40625 -1.53125 C 0.28125 -1.359375 0.234375 -1.171875 0.234375 -0.953125 C 0.234375 -0.640625 0.34375 -0.390625 0.5625 -0.21875 C 0.796875 -0.03125 1.109375 0.046875 1.515625 0.046875 C 1.90625 0.046875 2.21875 -0.046875 2.453125 -0.234375 C 2.6875 -0.421875 2.796875 -0.671875 2.796875 -0.984375 C 2.796875 -1.1875 2.734375 -1.359375 2.609375 -1.53125 C 2.484375 -1.6875 2.265625 -1.84375 1.96875 -2 C 2.4375 -2.234375 2.671875 -2.53125 2.671875 -2.921875 C 2.671875 -3.203125 2.578125 -3.421875 2.359375 -3.578125 C 2.15625 -3.75 1.875 -3.828125 1.515625 -3.828125 Z M 0.8125 -0.984375 C 0.8125 -1.140625 0.859375 -1.265625 0.953125 -1.390625 C 1.0625 -1.515625 1.21875 -1.625 1.453125 -1.71875 L 1.53125 -1.6875 C 1.75 -1.59375 1.921875 -1.484375 2.046875 -1.375 C 2.15625 -1.25 2.21875 -1.125 2.21875 -0.984375 C 2.21875 -0.8125 2.15625 -0.671875 2.03125 -0.5625 C 1.90625 -0.46875 1.734375 -0.40625 1.515625 -0.40625 C 1.296875 -0.40625 1.125 -0.46875 1 -0.5625 C 0.875 -0.65625 0.8125 -0.796875 0.8125 -0.984375 Z M 1.5 -3.359375 C 1.6875 -3.359375 1.828125 -3.328125 1.921875 -3.234375 C 2.03125 -3.15625 2.09375 -3.03125 2.09375 -2.890625 C 2.09375 -2.75 2.046875 -2.640625 1.953125 -2.53125 C 1.875 -2.4375 1.734375 -2.328125 1.515625 -2.25 C 1.34375 -2.328125 1.21875 -2.390625 1.15625 -2.453125 C 1.078125 -2.515625 1.03125 -2.578125 0.984375 -2.640625 C 0.953125 -2.71875 0.9375 -2.796875 0.9375 -2.890625 C 0.9375 -3.03125 0.984375 -3.15625 1.09375 -3.234375 C 1.1875 -3.328125 1.328125 -3.359375 1.5 -3.359375 Z M 1.5 -3.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-4">
<path style="stroke:none;" d="M 1.515625 -2.359375 C 1.390625 -2.359375 1.28125 -2.359375 1.1875 -2.34375 C 1.109375 -2.328125 1.03125 -2.3125 0.96875 -2.296875 L 1.0625 -3.234375 L 2.484375 -3.234375 L 2.484375 -3.78125 L 0.53125 -3.78125 L 0.375 -1.9375 L 0.65625 -1.78125 C 0.75 -1.796875 0.84375 -1.8125 0.96875 -1.828125 C 1.078125 -1.84375 1.1875 -1.859375 1.265625 -1.859375 C 1.84375 -1.859375 2.125 -1.625 2.125 -1.171875 C 2.125 -0.9375 2.0625 -0.765625 1.90625 -0.640625 C 1.765625 -0.515625 1.5625 -0.453125 1.28125 -0.453125 C 1.140625 -0.453125 0.96875 -0.46875 0.78125 -0.515625 C 0.609375 -0.5625 0.4375 -0.625 0.296875 -0.703125 L 0.296875 -0.15625 C 0.546875 -0.015625 0.875 0.046875 1.296875 0.046875 C 1.765625 0.046875 2.125 -0.0625 2.375 -0.296875 C 2.625 -0.515625 2.75 -0.828125 2.75 -1.234375 C 2.75 -1.578125 2.640625 -1.859375 2.421875 -2.0625 C 2.203125 -2.265625 1.890625 -2.359375 1.515625 -2.359375 Z M 1.515625 -2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-5">
<path style="stroke:none;" d="M 2.953125 0 L 2.953125 -1.859375 C 2.953125 -2.5625 2.609375 -2.90625 1.921875 -2.90625 C 1.734375 -2.90625 1.546875 -2.875 1.390625 -2.796875 C 1.234375 -2.71875 1.109375 -2.625 1.03125 -2.484375 L 1 -2.484375 L 0.90625 -2.859375 L 0.4375 -2.859375 L 0.4375 0 L 1.046875 0 L 1.046875 -1.421875 C 1.046875 -1.78125 1.109375 -2.03125 1.21875 -2.1875 C 1.34375 -2.34375 1.53125 -2.421875 1.78125 -2.421875 C 1.984375 -2.421875 2.125 -2.359375 2.203125 -2.25 C 2.296875 -2.140625 2.34375 -1.984375 2.34375 -1.765625 L 2.34375 0 L 2.953125 0 Z M 2.953125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-6">
<path style="stroke:none;" d="M 2.96875 -1.4375 C 2.96875 -1.890625 2.84375 -2.25 2.609375 -2.515625 C 2.375 -2.78125 2.046875 -2.90625 1.625 -2.90625 C 1.1875 -2.90625 0.859375 -2.78125 0.625 -2.515625 C 0.375 -2.265625 0.265625 -1.890625 0.265625 -1.4375 C 0.265625 -1.140625 0.3125 -0.875 0.421875 -0.65625 C 0.546875 -0.421875 0.703125 -0.25 0.90625 -0.125 C 1.109375 0 1.34375 0.046875 1.609375 0.046875 C 2.03125 0.046875 2.375 -0.078125 2.609375 -0.34375 C 2.859375 -0.609375 2.96875 -0.96875 2.96875 -1.4375 Z M 0.890625 -1.4375 C 0.890625 -1.75 0.953125 -2 1.0625 -2.15625 C 1.171875 -2.328125 1.359375 -2.421875 1.609375 -2.421875 C 2.109375 -2.421875 2.34375 -2.09375 2.34375 -1.4375 C 2.34375 -0.78125 2.109375 -0.4375 1.625 -0.4375 C 1.140625 -0.4375 0.890625 -0.78125 0.890625 -1.4375 Z M 0.890625 -1.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-7">
<path style="stroke:none;" d="M 2.65625 -2.90625 C 2.65625 -3.203125 2.546875 -3.421875 2.328125 -3.59375 C 2.125 -3.75 1.828125 -3.828125 1.4375 -3.828125 C 0.984375 -3.828125 0.578125 -3.703125 0.234375 -3.453125 L 0.53125 -3.03125 C 0.71875 -3.140625 0.875 -3.21875 1 -3.265625 C 1.140625 -3.3125 1.265625 -3.328125 1.421875 -3.328125 C 1.625 -3.328125 1.78125 -3.28125 1.875 -3.1875 C 1.984375 -3.109375 2.03125 -2.984375 2.03125 -2.8125 C 2.03125 -2.40625 1.734375 -2.1875 1.140625 -2.1875 L 0.796875 -2.1875 L 0.796875 -1.703125 L 1.125 -1.703125 C 1.46875 -1.703125 1.71875 -1.65625 1.890625 -1.5625 C 2.046875 -1.46875 2.125 -1.3125 2.125 -1.109375 C 2.125 -0.890625 2.046875 -0.71875 1.90625 -0.609375 C 1.765625 -0.5 1.546875 -0.4375 1.25 -0.4375 C 1.078125 -0.4375 0.90625 -0.46875 0.734375 -0.515625 C 0.546875 -0.546875 0.375 -0.609375 0.21875 -0.6875 L 0.21875 -0.15625 C 0.515625 -0.015625 0.859375 0.046875 1.28125 0.046875 C 1.75 0.046875 2.125 -0.046875 2.375 -0.25 C 2.640625 -0.4375 2.765625 -0.71875 2.765625 -1.09375 C 2.765625 -1.34375 2.6875 -1.53125 2.53125 -1.6875 C 2.390625 -1.84375 2.15625 -1.9375 1.859375 -1.96875 L 1.859375 -1.984375 C 2.109375 -2.046875 2.296875 -2.15625 2.4375 -2.3125 C 2.578125 -2.46875 2.65625 -2.671875 2.65625 -2.90625 Z M 2.65625 -2.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-8">
<path style="stroke:none;" d="M 2.796875 -1.890625 C 2.796875 -2.53125 2.6875 -3.015625 2.46875 -3.34375 C 2.25 -3.671875 1.9375 -3.84375 1.515625 -3.84375 C 1.078125 -3.84375 0.75 -3.6875 0.546875 -3.375 C 0.328125 -3.046875 0.234375 -2.5625 0.234375 -1.890625 C 0.234375 -1.25 0.34375 -0.765625 0.546875 -0.4375 C 0.765625 -0.109375 1.09375 0.046875 1.515625 0.046875 C 1.9375 0.046875 2.265625 -0.109375 2.484375 -0.421875 C 2.6875 -0.75 2.796875 -1.234375 2.796875 -1.890625 Z M 0.84375 -1.890625 C 0.84375 -2.40625 0.890625 -2.78125 1 -3 C 1.109375 -3.21875 1.28125 -3.328125 1.515625 -3.328125 C 1.75 -3.328125 1.90625 -3.21875 2.015625 -2.984375 C 2.125 -2.765625 2.1875 -2.390625 2.1875 -1.890625 C 2.1875 -1.375 2.125 -1.015625 2.015625 -0.796875 C 1.90625 -0.5625 1.75 -0.453125 1.515625 -0.453125 C 1.28125 -0.453125 1.109375 -0.5625 1 -0.78125 C 0.890625 -1 0.84375 -1.375 0.84375 -1.890625 Z M 0.84375 -1.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-9">
<path style="stroke:none;" d="M 2.015625 0 L 2.015625 -3.78125 L 1.515625 -3.78125 L 0.390625 -2.90625 L 0.703125 -2.515625 C 1.03125 -2.78125 1.21875 -2.953125 1.28125 -3 C 1.34375 -3.046875 1.390625 -3.09375 1.4375 -3.140625 C 1.421875 -2.96875 1.40625 -2.734375 1.40625 -2.4375 L 1.40625 0 L 2.015625 0 Z M 2.015625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-10">
<path style="stroke:none;" d="M 2.140625 0 L 2.671875 0 L 3.8125 -3.15625 L 3.828125 -3.15625 C 3.828125 -3.09375 3.8125 -2.90625 3.8125 -2.609375 C 3.796875 -2.296875 3.796875 -2.0625 3.796875 -1.875 L 3.796875 0 L 4.390625 0 L 4.390625 -3.78125 L 3.515625 -3.78125 L 2.4375 -0.765625 L 2.421875 -0.765625 L 1.375 -3.78125 L 0.5 -3.78125 L 0.5 0 L 1.0625 0 L 1.0625 -1.84375 C 1.0625 -2.25 1.046875 -2.6875 1.015625 -3.15625 L 1.03125 -3.15625 L 2.140625 0 Z M 2.140625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-11">
<path style="stroke:none;" d="M 3.984375 0 L 4.96875 -3.78125 L 4.34375 -3.78125 L 3.8125 -1.578125 C 3.71875 -1.203125 3.65625 -0.890625 3.625 -0.640625 C 3.5625 -1.046875 3.484375 -1.359375 3.4375 -1.5625 L 2.796875 -3.78125 L 2.1875 -3.78125 L 1.578125 -1.578125 C 1.546875 -1.46875 1.515625 -1.3125 1.46875 -1.140625 C 1.4375 -0.953125 1.40625 -0.78125 1.390625 -0.640625 C 1.34375 -0.90625 1.28125 -1.21875 1.203125 -1.578125 L 0.65625 -3.78125 L 0.03125 -3.78125 L 0.53125 -1.890625 L 1.015625 0 L 1.6875 0 L 2.3125 -2.25 C 2.34375 -2.328125 2.375 -2.46875 2.40625 -2.640625 C 2.453125 -2.8125 2.484375 -2.953125 2.5 -3.0625 C 2.5 -3 2.53125 -2.859375 2.578125 -2.671875 C 2.609375 -2.5 2.640625 -2.359375 2.671875 -2.25 L 3.3125 0 L 3.984375 0 Z M 3.984375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-12">
<path style="stroke:none;" d="M 1.109375 0 L 1.109375 -1.546875 L 2.53125 -1.546875 L 2.53125 -2.078125 L 1.109375 -2.078125 L 1.109375 -3.265625 L 2.640625 -3.265625 L 2.640625 -3.78125 L 0.5 -3.78125 L 0.5 0 L 1.109375 0 Z M 1.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-13">
<path style="stroke:none;" d="M 0.34375 -0.328125 C 0.34375 -0.203125 0.375 -0.09375 0.4375 -0.03125 C 0.5 0.03125 0.609375 0.078125 0.734375 0.078125 C 0.84375 0.078125 0.953125 0.03125 1.015625 -0.03125 C 1.078125 -0.109375 1.109375 -0.203125 1.109375 -0.328125 C 1.109375 -0.4375 1.078125 -0.53125 1.015625 -0.609375 C 0.953125 -0.671875 0.859375 -0.71875 0.734375 -0.71875 C 0.609375 -0.71875 0.5 -0.6875 0.4375 -0.609375 C 0.375 -0.546875 0.34375 -0.453125 0.34375 -0.328125 Z M 0.34375 -2.53125 C 0.34375 -2.40625 0.375 -2.3125 0.4375 -2.234375 C 0.5 -2.171875 0.609375 -2.140625 0.734375 -2.140625 C 0.84375 -2.140625 0.953125 -2.171875 1.015625 -2.234375 C 1.078125 -2.3125 1.109375 -2.40625 1.109375 -2.53125 C 1.109375 -2.65625 1.078125 -2.75 1.015625 -2.8125 C 0.953125 -2.890625 0.859375 -2.921875 0.734375 -2.921875 C 0.46875 -2.921875 0.34375 -2.796875 0.34375 -2.53125 Z M 0.34375 -2.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-14">
<path style="stroke:none;" d="M 1.890625 0.046875 C 2.25 0.046875 2.515625 -0.078125 2.71875 -0.34375 C 2.921875 -0.609375 3.03125 -0.96875 3.03125 -1.4375 C 3.03125 -1.90625 2.921875 -2.265625 2.734375 -2.53125 C 2.53125 -2.78125 2.25 -2.90625 1.890625 -2.90625 C 1.515625 -2.90625 1.234375 -2.765625 1.046875 -2.484375 L 1.015625 -2.484375 C 0.96875 -2.671875 0.9375 -2.8125 0.921875 -2.859375 L 0.4375 -2.859375 L 0.4375 1.265625 L 1.046875 1.265625 L 1.046875 0.09375 C 1.046875 0.046875 1.03125 -0.09375 1 -0.34375 L 1.046875 -0.34375 C 1.234375 -0.078125 1.515625 0.046875 1.890625 0.046875 Z M 1.734375 -2.421875 C 1.953125 -2.421875 2.125 -2.328125 2.234375 -2.171875 C 2.34375 -2 2.40625 -1.765625 2.40625 -1.4375 C 2.40625 -1.125 2.34375 -0.875 2.234375 -0.703125 C 2.125 -0.53125 1.953125 -0.4375 1.75 -0.4375 C 1.5 -0.4375 1.3125 -0.515625 1.203125 -0.671875 C 1.09375 -0.828125 1.046875 -1.09375 1.046875 -1.4375 L 1.046875 -1.53125 C 1.046875 -1.84375 1.09375 -2.0625 1.203125 -2.203125 C 1.3125 -2.34375 1.5 -2.421875 1.734375 -2.421875 Z M 1.734375 -2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-15">
<path style="stroke:none;" d="M 2.84375 0 L 2.84375 -1.515625 C 2.84375 -1.828125 2.90625 -2.046875 3.015625 -2.1875 C 3.125 -2.34375 3.296875 -2.421875 3.53125 -2.421875 C 3.703125 -2.421875 3.828125 -2.359375 3.921875 -2.25 C 4 -2.140625 4.046875 -1.984375 4.046875 -1.765625 L 4.046875 0 L 4.65625 0 L 4.65625 -1.859375 C 4.65625 -2.21875 4.578125 -2.484375 4.421875 -2.65625 C 4.265625 -2.828125 4.015625 -2.90625 3.671875 -2.90625 C 3.46875 -2.90625 3.296875 -2.875 3.140625 -2.796875 C 2.984375 -2.71875 2.875 -2.609375 2.78125 -2.46875 L 2.75 -2.46875 C 2.609375 -2.765625 2.3125 -2.90625 1.875 -2.90625 C 1.6875 -2.90625 1.515625 -2.875 1.375 -2.796875 C 1.21875 -2.71875 1.109375 -2.625 1.03125 -2.484375 L 1 -2.484375 L 0.90625 -2.859375 L 0.4375 -2.859375 L 0.4375 0 L 1.046875 0 L 1.046875 -1.421875 C 1.046875 -1.78125 1.09375 -2.03125 1.203125 -2.1875 C 1.3125 -2.34375 1.484375 -2.421875 1.71875 -2.421875 C 1.890625 -2.421875 2.03125 -2.359375 2.109375 -2.25 C 2.1875 -2.140625 2.234375 -1.984375 2.234375 -1.765625 L 2.234375 0 L 2.84375 0 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 4.828125 -5.796875 C 4.828125 -5.953125 4.828125 -6.203125 4.53125 -6.203125 C 4.34375 -6.203125 4.296875 -6.09375 4.25 -6.03125 C 4.234375 -5.984375 4.234375 -5.96875 4.09375 -5.71875 C 3.765625 -6 3.3125 -6.203125 2.796875 -6.203125 C 1.515625 -6.203125 0.40625 -4.859375 0.40625 -3.046875 C 0.40625 -1.21875 1.515625 0.109375 2.8125 0.109375 C 3.96875 0.109375 4.828125 -0.78125 4.828125 -1.671875 C 4.828125 -2 4.578125 -2 4.46875 -2 C 4.390625 -2 4.15625 -2 4.140625 -1.71875 C 4.0625 -0.734375 3.265625 -0.5 2.84375 -0.5 C 1.9375 -0.5 1.09375 -1.5625 1.09375 -3.046875 C 1.09375 -4.53125 1.953125 -5.59375 2.84375 -5.59375 C 3.4375 -5.59375 3.984375 -5.140625 4.125 -4.328125 C 4.15625 -4.15625 4.171875 -4 4.46875 -4 C 4.828125 -4 4.828125 -4.203125 4.828125 -4.40625 L 4.828125 -5.796875 Z M 4.828125 -5.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 2.953125 -2.703125 L 4.375 -2.703125 C 4.5 -2.703125 4.84375 -2.703125 4.84375 -3.046875 C 4.84375 -3.40625 4.5 -3.40625 4.375 -3.40625 L 2.953125 -3.40625 L 2.953125 -4.828125 C 2.953125 -4.9375 2.953125 -5.296875 2.609375 -5.296875 C 2.265625 -5.296875 2.265625 -4.9375 2.265625 -4.828125 L 2.265625 -3.40625 L 0.84375 -3.40625 C 0.734375 -3.40625 0.375 -3.40625 0.375 -3.046875 C 0.375 -2.703125 0.734375 -2.703125 0.84375 -2.703125 L 2.265625 -2.703125 L 2.265625 -1.28125 C 2.265625 -1.15625 2.265625 -0.8125 2.609375 -0.8125 C 2.953125 -0.8125 2.953125 -1.15625 2.953125 -1.28125 L 2.953125 -2.703125 Z M 2.953125 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d="M 0.859375 -6.546875 L 0.859375 0 L 4.625 0 L 4.625 -6.546875 L 0.859375 -6.546875 Z M 1.328125 -0.46875 L 1.328125 -6.078125 L 4.171875 -6.078125 L 4.171875 -0.46875 L 1.328125 -0.46875 Z M 1.328125 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 0.59375 -3.34375 C 0.59375 -2.9375 0.6875 -2.625 0.890625 -2.40625 C 1.09375 -2.1875 1.359375 -2.078125 1.71875 -2.078125 C 2.078125 -2.078125 2.359375 -2.1875 2.5625 -2.40625 C 2.765625 -2.640625 2.859375 -2.953125 2.859375 -3.34375 C 2.859375 -3.75 2.765625 -4.078125 2.5625 -4.296875 C 2.359375 -4.5 2.09375 -4.609375 1.71875 -4.609375 C 1.359375 -4.609375 1.078125 -4.5 0.875 -4.296875 C 0.6875 -4.078125 0.59375 -3.765625 0.59375 -3.34375 Z M 0.59375 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d="M 0.859375 -6.546875 L 0.859375 0 L 4.625 0 L 4.625 -6.546875 L 0.859375 -6.546875 Z M 1.328125 -0.46875 L 1.328125 -6.078125 L 4.171875 -6.078125 L 4.171875 -0.46875 L 1.328125 -0.46875 Z M 1.328125 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 3.5 -5.09375 C 2.875 -5.09375 2.40625 -4.859375 2.078125 -4.359375 L 2.03125 -4.359375 C 2.0625 -4.8125 2.078125 -5.140625 2.078125 -5.34375 L 2.078125 -6.96875 L 0.71875 -6.96875 L 0.71875 0 L 1.765625 0 L 1.984375 -0.546875 L 2.078125 -0.546875 C 2.421875 -0.125 2.875 0.09375 3.46875 0.09375 C 4.0625 0.09375 4.53125 -0.140625 4.875 -0.59375 C 5.21875 -1.046875 5.390625 -1.6875 5.390625 -2.515625 C 5.390625 -3.3125 5.21875 -3.953125 4.890625 -4.40625 C 4.546875 -4.875 4.09375 -5.09375 3.5 -5.09375 Z M 3.0625 -4.015625 C 3.359375 -4.015625 3.578125 -3.890625 3.75 -3.640625 C 3.921875 -3.390625 4 -3.015625 4 -2.53125 C 4 -2.03125 3.921875 -1.65625 3.75 -1.40625 C 3.578125 -1.140625 3.359375 -1.015625 3.078125 -1.015625 C 2.734375 -1.015625 2.484375 -1.140625 2.3125 -1.359375 C 2.15625 -1.59375 2.078125 -1.984375 2.078125 -2.515625 L 2.078125 -2.671875 C 2.09375 -3.140625 2.171875 -3.484375 2.328125 -3.703125 C 2.484375 -3.90625 2.734375 -4.015625 3.0625 -4.015625 Z M 3.0625 -4.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph8-2">
<path style="stroke:none;" d="M 1.8125 -2.515625 C 1.8125 -3.015625 1.890625 -3.390625 2.046875 -3.625 C 2.203125 -3.875 2.46875 -4 2.828125 -4 C 3.203125 -4 3.46875 -3.875 3.625 -3.625 C 3.78125 -3.375 3.875 -3.015625 3.875 -2.515625 C 3.875 -2.015625 3.78125 -1.640625 3.625 -1.390625 C 3.46875 -1.140625 3.203125 -1 2.84375 -1 C 2.484375 -1 2.21875 -1.140625 2.046875 -1.390625 C 1.890625 -1.640625 1.8125 -2.015625 1.8125 -2.515625 Z M 5.265625 -2.515625 C 5.265625 -3.03125 5.171875 -3.5 4.96875 -3.890625 C 4.78125 -4.28125 4.484375 -4.578125 4.125 -4.78125 C 3.75 -5 3.328125 -5.09375 2.859375 -5.09375 C 2.078125 -5.09375 1.484375 -4.875 1.046875 -4.421875 C 0.625 -3.96875 0.40625 -3.328125 0.40625 -2.515625 C 0.40625 -1.984375 0.515625 -1.53125 0.703125 -1.140625 C 0.90625 -0.734375 1.1875 -0.4375 1.546875 -0.21875 C 1.921875 -0.015625 2.34375 0.09375 2.828125 0.09375 C 3.59375 0.09375 4.1875 -0.140625 4.625 -0.59375 C 5.046875 -1.0625 5.265625 -1.703125 5.265625 -2.515625 Z M 5.265625 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph8-3">
<path style="stroke:none;" d="M 2.078125 0 L 2.078125 -6.96875 L 0.71875 -6.96875 L 0.71875 0 L 2.078125 0 Z M 2.078125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph8-4">
<path style="stroke:none;" d="M 2.296875 0.09375 C 2.9375 0.09375 3.40625 -0.15625 3.71875 -0.65625 L 3.78125 -0.65625 L 4.046875 0 L 5.09375 0 L 5.09375 -6.96875 L 3.71875 -6.96875 L 3.71875 -5.359375 C 3.71875 -5.078125 3.75 -4.734375 3.828125 -4.359375 L 3.78125 -4.359375 C 3.453125 -4.859375 2.96875 -5.09375 2.34375 -5.09375 C 1.734375 -5.09375 1.265625 -4.875 0.921875 -4.421875 C 0.578125 -3.953125 0.40625 -3.3125 0.40625 -2.5 C 0.40625 -1.6875 0.578125 -1.046875 0.90625 -0.59375 C 1.25 -0.140625 1.71875 0.09375 2.296875 0.09375 Z M 2.78125 -1 C 2.46875 -1 2.21875 -1.125 2.046875 -1.375 C 1.875 -1.609375 1.796875 -1.984375 1.796875 -2.484375 C 1.796875 -2.96875 1.875 -3.34375 2.046875 -3.59375 C 2.21875 -3.859375 2.453125 -3.984375 2.765625 -3.984375 C 3.125 -3.984375 3.40625 -3.875 3.5625 -3.640625 C 3.734375 -3.40625 3.8125 -3.015625 3.8125 -2.484375 L 3.8125 -2.34375 C 3.796875 -1.84375 3.71875 -1.5 3.546875 -1.296875 C 3.390625 -1.109375 3.125 -1 2.78125 -1 Z M 2.78125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d="M 0.859375 -6.546875 L 0.859375 0 L 4.625 0 L 4.625 -6.546875 L 0.859375 -6.546875 Z M 1.328125 -0.46875 L 1.328125 -6.078125 L 4.171875 -6.078125 L 4.171875 -0.46875 L 1.328125 -0.46875 Z M 1.328125 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 0.375 -2.03125 L 4.21875 -2.03125 L 4.21875 -2.890625 L 0.375 -2.890625 L 0.375 -2.03125 Z M 0.375 -2.03125 "/>
</symbol>
</g>
</defs>
<g id="surface0">
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.743594 243.230469 C 227.325625 226.253906 211.419375 213.757812 187.735781 188.210938 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.743594 243.230469 C 227.325625 226.253906 211.419375 213.757812 190.282656 190.960938 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.707936 -0.000632497 C 2.375106 0.083545 0.913693 0.549106 -0.000675538 1.060108 L 0.00186044 -1.060704 C 0.913507 -0.549804 2.377021 -0.0845322 2.707936 -0.000632497 Z M 2.707936 -0.000632497 " transform="matrix(-0.68237,0.73593,0.73593,0.68237,241.22328,169.03883)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.614688 214.992188 C 161.114688 205.328125 164.048281 199.292969 167.630313 188.210938 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.614688 214.992188 C 161.114688 205.328125 164.048281 199.292969 166.477969 191.769531 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.707775 0.0011543 C 2.377512 0.0833103 0.913258 0.55256 -0.000927421 1.061363 L 0.0022986 -1.060101 C 0.913407 -0.550763 2.376569 -0.0845418 2.707775 0.0011543 Z M 2.707775 0.0011543 " transform="matrix(0.30789,0.95242,0.95242,-0.30789,217.41911,168.23001)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.048281 227.722656 C 267.040469 213.007812 264.630313 204.144531 262.360781 188.414062 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.048281 227.722656 C 267.040469 213.007812 264.630313 204.144531 262.892031 192.117188 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.708623 -0.00119978 C 2.377248 0.0811451 0.912969 0.552217 -0.000366709 1.059404 L 0.00208895 -1.062303 C 0.914535 -0.551976 2.377483 -0.0844838 2.708623 -0.00119978 Z M 2.708623 -0.00119978 " transform="matrix(-0.14291,0.99034,0.99034,0.14291,313.83359,167.88412)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.263125 238.023438 C 339.044375 221.984375 349.532656 210.460938 363.571719 188.28125 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.79701,3.9851;stroke-miterlimit:10;" d="M 318.263125 238.023438 C 339.044375 221.984375 349.532656 210.460938 361.65375 191.316406 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.942635 0.000933784 C 1.705208 0.0634799 0.655601 0.41844 0.0014836 0.80011 L -0.000542562 -0.800665 C 0.653775 -0.41606 1.704917 -0.0609919 1.942635 0.000933784 Z M 1.942635 0.000933784 " transform="matrix(0.53548,0.84608,0.84608,-0.53548,412.59178,168.685)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.1225 214.992188 C 98.919375 186.289062 84.7475 167.136719 65.84125 130.816406 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.1225 214.992188 C 98.919375 186.289062 84.7475 167.136719 67.567813 134.128906 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.708375 0.000794458 C 2.375141 0.0827282 0.915885 0.551655 -0.00074997 1.060835 L -0.00123301 -1.061613 C 0.912817 -0.550666 2.377834 -0.0831802 2.708375 0.000794458 Z M 2.708375 0.000794458 " transform="matrix(-0.46175,0.8872,0.8872,0.46175,118.5077,225.8702)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.599063 147.097656 L 57.599063 130.816406 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.599063 147.097656 L 57.599063 134.550781 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.70745 -0.0016775 C 2.375419 0.08426 0.914481 0.55301 0.00041875 1.060823 L 0.00041875 -1.060271 C 0.914481 -0.552459 2.375419 -0.0837087 2.70745 -0.0016775 Z M 2.70745 -0.0016775 " transform="matrix(0,1,1,0,108.54074,225.4488)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.204531 157.1875 L 259.204531 130.746094 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.204531 157.1875 L 259.204531 134.484375 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709013 0.00115125 C 2.376981 0.0831825 0.912138 0.551933 -0.001925 1.059745 L -0.001925 -1.061349 C 0.912138 -0.54963 2.376981 -0.08088 2.709013 0.00115125 Z M 2.709013 0.00115125 " transform="matrix(0,1,1,0,310.14338,225.51755)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.493594 157.1875 C 292.84125 148.515625 298.579531 142.277344 306.274844 130.246094 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.493594 157.1875 C 292.84125 148.515625 298.579531 142.277344 304.255313 133.40625 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.710067 -0.000176174 C 2.376177 0.0841299 0.916236 0.551702 -0.000716467 1.05976 L 0.00056965 -1.060211 C 0.913351 -0.549887 2.376085 -0.0820191 2.710067 -0.000176174 Z M 2.710067 -0.000176174 " transform="matrix(0.54121,0.84608,0.84608,-0.54121,355.19359,226.59369)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.688906 214.992188 C 111.669375 162.242188 101.017031 130.179688 89.4975 72.945312 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.688906 214.992188 C 111.669375 162.242188 101.017031 130.179688 90.235781 76.605469 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.710365 -0.000142816 C 2.374803 0.0837168 0.914453 0.550753 -0.000624516 1.059781 L -0.000462326 -1.059467 C 0.913436 -0.552912 2.376528 -0.0832477 2.710365 -0.000142816 Z M 2.710365 -0.000142816 " transform="matrix(-0.1973,0.98058,0.98058,0.1973,141.17552,283.39308)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.298281 89.496094 L 101.743594 72.945312 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.298281 89.496094 L 104.395938 75.597656 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.711076 -0.000207396 C 2.375749 0.0822275 0.913498 0.549386 0.000950458 1.060557 L 0.00108483 -1.061315 C 0.913567 -0.550029 2.37576 -0.0826848 2.711076 -0.000207396 Z M 2.711076 -0.000207396 " transform="matrix(-0.71065,0.71056,0.71056,0.71065,155.33693,284.40189)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.185 157.394531 C 155.556094 125.40625 150.899844 106.714844 146.177188 73.011719 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.185 157.394531 C 155.556094 125.40625 150.899844 106.714844 146.696719 76.710938 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709118 -0.00109536 C 2.377889 0.0826418 0.915774 0.55219 0.000109328 1.062832 L -0.00217987 -1.05955 C 0.912857 -0.552637 2.377451 -0.0830823 2.709118 -0.00109536 Z M 2.709118 -0.00109536 " transform="matrix(-0.13881,0.99034,0.99034,0.13881,197.63495,283.28986)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.419375 157.394531 C 190.048281 125.40625 194.704531 106.714844 199.427188 73.011719 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.419375 157.394531 C 190.048281 125.40625 194.704531 106.714844 198.907656 76.710938 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709101 0.000971571 C 2.377434 0.0829585 0.91284 0.552513 -0.00165502 1.063295 L 0.000091977 -1.062956 C 0.915757 -0.552314 2.377872 -0.0827656 2.709101 0.000971571 Z M 2.709101 0.000971571 " transform="matrix(0.13881,0.99034,0.99034,-0.13881,249.84955,283.28986)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.009219 99.65625 C 225.739688 91.085938 220.044375 84.917969 212.388125 73.011719 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 237.009219 99.65625 C 225.739688 91.085938 220.044375 84.917969 214.411563 76.15625 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709423 -0.000214335 C 2.37752 0.0832123 0.912546 0.551218 0.00120454 1.059802 L 0.000609481 -1.060039 C 0.912603 -0.552533 2.377997 -0.0834404 2.709423 -0.000214335 Z M 2.709423 -0.000214335 " transform="matrix(-0.54152,0.84227,0.84227,0.54152,265.3502,283.84305)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.204531 99.65625 L 259.204531 72.847656 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.204531 99.65625 L 259.204531 76.582031 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.70781 0.00115125 C 2.375779 0.0831825 0.914841 0.551933 0.00077875 1.059745 L 0.00077875 -1.061349 C 0.914841 -0.54963 2.375779 -0.08088 2.70781 0.00115125 Z M 2.70781 0.00115125 " transform="matrix(0,1,1,0,310.14338,283.41719)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 366.767031 157.324219 C 351.356875 125.953125 344.751406 106.945312 337.388125 72.78125 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 366.767031 157.324219 C 351.356875 125.953125 344.751406 106.945312 338.177188 76.4375 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709391 -0.00176409 C 2.376002 0.0820505 0.914202 0.549329 0.00120189 1.063039 L -0.000104982 -1.060703 C 0.916048 -0.551918 2.375377 -0.0817342 2.709391 -0.00176409 Z M 2.709391 -0.00176409 " transform="matrix(-0.21092,0.97865,0.97865,0.21092,389.11616,283.56367)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.352969 100.980469 C 300.368594 92.183594 308.165469 85.785156 319.724063 72.78125 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.352969 100.980469 C 300.368594 92.183594 308.165469 85.785156 317.231875 75.585938 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709764 0.000442302 C 2.377116 0.0828031 0.914434 0.550476 0.000140895 1.061416 L 0.0010729 -1.062375 C 0.913123 -0.551467 2.375821 -0.0825528 2.709764 0.000442302 Z M 2.709764 0.000442302 " transform="matrix(0.66733,0.75072,0.75072,-0.66733,368.17183,284.41524)"/>
<path style="fill:none;stroke-width:1.49442;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.048281 157.324219 C 391.649844 125.417969 396.294375 106.769531 401.013125 73.144531 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.048281 157.324219 C 391.649844 125.417969 396.294375 106.769531 400.493594 76.84375 " transform="matrix(1,0,0,-1,50.94,360)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.70769 -0.000240917 C 2.376037 0.0817809 0.915385 0.550946 0.000959646 1.061819 L -0.000850614 -1.059989 C 0.914856 -0.549455 2.376457 -0.0839407 2.70769 -0.000240917 Z M 2.70769 -0.000240917 " transform="matrix(0.13892,0.99034,0.99034,-0.13892,451.43268,283.15437)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="75.52" y="76.17"/>
  <use xlink:href="#glyph0-2" x="83.927126" y="76.17"/>
  <use xlink:href="#glyph0-3" x="92.096688" y="76.17"/>
  <use xlink:href="#glyph0-4" x="105.043926" y="76.17"/>
  <use xlink:href="#glyph0-5" x="113.385062" y="76.17"/>
  <use xlink:href="#glyph0-6" x="122.056148" y="76.17"/>
  <use xlink:href="#glyph0-7" x="127.78408" y="76.17"/>
  <use xlink:href="#glyph0-8" x="135.5709" y="76.17"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-9" x="83.99" y="94.35"/>
  <use xlink:href="#glyph0-10" x="91.2489" y="94.35"/>
  <use xlink:href="#glyph0-11" x="98.032672" y="94.35"/>
  <use xlink:href="#glyph0-7" x="102.058062" y="94.35"/>
  <use xlink:href="#glyph0-12" x="109.844882" y="94.35"/>
  <use xlink:href="#glyph0-10" x="118.515968" y="94.35"/>
  <use xlink:href="#glyph0-7" x="125.29974" y="94.35"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.774844 290.1875 L 260.231875 290.1875 C 259.134219 290.1875 258.239688 289.296875 258.239688 288.195312 L 258.239688 230.210938 C 258.239688 229.113281 259.134219 228.21875 260.231875 228.21875 L 315.774844 228.21875 C 316.8725 228.21875 317.767031 229.113281 317.767031 230.210938 L 317.767031 288.195312 C 317.767031 289.296875 316.8725 290.1875 315.774844 290.1875 Z M 315.774844 290.1875 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="311.97" y="84.54"/>
  <use xlink:href="#glyph1-2" x="314.99328" y="84.54"/>
  <use xlink:href="#glyph1-3" x="318.01656" y="84.54"/>
  <use xlink:href="#glyph1-4" x="321.03984" y="84.54"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="341.2" y="84.54"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="344.377096" y="84.54"/>
  <use xlink:href="#glyph1-6" x="347.448112" y="84.54"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="352.306576" y="84.54"/>
  <use xlink:href="#glyph1-2" x="355.329856" y="84.54"/>
  <use xlink:href="#glyph1-7" x="358.353136" y="84.54"/>
  <use xlink:href="#glyph1-2" x="359.864776" y="84.54"/>
  <use xlink:href="#glyph1-2" x="362.888056" y="84.54"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="311.97" y="104.86"/>
  <use xlink:href="#glyph2-2" x="317.772078" y="104.86"/>
  <use xlink:href="#glyph2-3" x="323.363338" y="104.86"/>
  <use xlink:href="#glyph2-4" x="332.126034" y="104.86"/>
  <use xlink:href="#glyph2-5" x="337.836452" y="104.86"/>
  <use xlink:href="#glyph2-6" x="343.647696" y="104.86"/>
  <use xlink:href="#glyph2-7" x="347.249934" y="104.86"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="351.282974" y="104.86"/>
  <use xlink:href="#glyph2-9" x="356.315108" y="104.86"/>
  <use xlink:href="#glyph2-10" x="360.852278" y="104.86"/>
  <use xlink:href="#glyph2-7" x="363.400426" y="104.86"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="318.55" y="125.19"/>
  <use xlink:href="#glyph2-2" x="324.352078" y="125.19"/>
  <use xlink:href="#glyph2-11" x="329.943338" y="125.19"/>
  <use xlink:href="#glyph2-9" x="335.754582" y="125.19"/>
  <use xlink:href="#glyph2-12" x="340.291752" y="125.19"/>
  <use xlink:href="#glyph2-4" x="345.571368" y="125.19"/>
  <use xlink:href="#glyph2-6" x="351.281786" y="125.19"/>
  <use xlink:href="#glyph2-13" x="354.884024" y="125.19"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.724063 245.3125 L 120.282656 245.3125 C 119.181094 245.3125 118.290469 244.421875 118.290469 243.320312 L 118.290469 217.484375 C 118.290469 216.382812 119.181094 215.492188 120.282656 215.492188 L 167.724063 215.492188 C 168.821719 215.492188 169.71625 216.382812 169.71625 217.484375 L 169.71625 243.320312 C 169.71625 244.421875 168.821719 245.3125 167.724063 245.3125 Z M 167.724063 245.3125 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="172.02" y="121.88"/>
  <use xlink:href="#glyph1-4" x="175.04328" y="121.88"/>
  <use xlink:href="#glyph1-2" x="178.06656" y="121.88"/>
  <use xlink:href="#glyph1-4" x="181.08984" y="121.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-8" x="192.880632" y="121.88"/>
  <use xlink:href="#glyph1-9" x="197.877" y="121.88"/>
  <use xlink:href="#glyph1-10" x="203.000664" y="121.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-11" x="207.280992" y="121.88"/>
  <use xlink:href="#glyph1-7" x="210.304272" y="121.88"/>
  <use xlink:href="#glyph1-4" x="211.815912" y="121.88"/>
  <use xlink:href="#glyph1-2" x="214.839192" y="121.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-14" x="176.85" y="131.58"/>
  <use xlink:href="#glyph2-10" x="183.568678" y="131.58"/>
  <use xlink:href="#glyph2-13" x="186.116826" y="131.58"/>
  <use xlink:href="#glyph2-9" x="190.571502" y="131.58"/>
  <use xlink:href="#glyph2-15" x="195.108672" y="131.58"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="198.885064" y="131.58"/>
  <use xlink:href="#glyph2-6" x="204.16468" y="131.58"/>
  <use xlink:href="#glyph2-12" x="207.766918" y="131.58"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="172.02" y="141.14"/>
  <use xlink:href="#glyph2-6" x="177.052134" y="141.14"/>
  <use xlink:href="#glyph2-15" x="180.654372" y="141.14"/>
  <use xlink:href="#glyph2-5" x="184.604918" y="141.14"/>
  <use xlink:href="#glyph2-9" x="190.416162" y="141.14"/>
  <use xlink:href="#glyph2-6" x="194.953332" y="141.14"/>
  <use xlink:href="#glyph2-5" x="198.55557" y="141.14"/>
  <use xlink:href="#glyph2-15" x="204.366814" y="141.14"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="208.143206" y="141.14"/>
  <use xlink:href="#glyph2-13" x="213.422822" y="141.14"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.852969 187.714844 L 149.751406 187.714844 C 148.649844 187.714844 147.759219 186.820312 147.759219 185.722656 L 147.759219 159.882812 C 147.759219 158.78125 148.649844 157.890625 149.751406 157.890625 L 195.852969 157.890625 C 196.954531 157.890625 197.845156 158.78125 197.845156 159.882812 L 197.845156 185.722656 C 197.845156 186.820312 196.954531 187.714844 195.852969 187.714844 Z M 195.852969 187.714844 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-12" x="201.49" y="179.48"/>
  <use xlink:href="#glyph1-3" x="204.51328" y="179.48"/>
  <use xlink:href="#glyph1-1" x="207.53656" y="179.48"/>
  <use xlink:href="#glyph1-4" x="210.55984" y="179.48"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-8" x="221.014024" y="179.48"/>
  <use xlink:href="#glyph1-9" x="226.010392" y="179.48"/>
  <use xlink:href="#glyph1-10" x="231.134056" y="179.48"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="235.414384" y="179.48"/>
  <use xlink:href="#glyph1-7" x="238.437664" y="179.48"/>
  <use xlink:href="#glyph1-4" x="239.949304" y="179.48"/>
  <use xlink:href="#glyph1-2" x="242.972584" y="179.48"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="201.49" y="189.05"/>
  <use xlink:href="#glyph2-2" x="207.292078" y="189.05"/>
  <use xlink:href="#glyph2-3" x="212.883338" y="189.05"/>
  <use xlink:href="#glyph2-4" x="221.646034" y="189.05"/>
  <use xlink:href="#glyph2-5" x="227.356452" y="189.05"/>
  <use xlink:href="#glyph2-6" x="233.167696" y="189.05"/>
  <use xlink:href="#glyph2-12" x="236.769934" y="189.05"/>
  <use xlink:href="#glyph2-15" x="242.04955" y="189.05"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-16" x="203.21" y="198.74"/>
  <use xlink:href="#glyph2-15" x="210.423642" y="198.74"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-17" x="214.30086" y="198.74"/>
  <use xlink:href="#glyph2-18" x="219.397156" y="198.74"/>
  <use xlink:href="#glyph2-11" x="224.713436" y="198.74"/>
  <use xlink:href="#glyph2-10" x="230.52468" y="198.74"/>
  <use xlink:href="#glyph2-19" x="233.072828" y="198.74"/>
  <use xlink:href="#glyph2-7" x="237.454176" y="198.74"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="241.48" y="198.74"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.595156 187.917969 L 232.813906 187.917969 C 231.712344 187.917969 230.821719 187.027344 230.821719 185.925781 L 230.821719 159.679688 C 230.821719 158.578125 231.712344 157.6875 232.813906 157.6875 L 285.595156 157.6875 C 286.692813 157.6875 287.587344 158.578125 287.587344 159.679688 L 287.587344 185.925781 C 287.587344 187.027344 286.692813 187.917969 285.595156 187.917969 Z M 285.595156 187.917969 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-12" x="284.55" y="179.28"/>
  <use xlink:href="#glyph1-2" x="287.57328" y="179.28"/>
  <use xlink:href="#glyph1-12" x="290.59656" y="179.28"/>
  <use xlink:href="#glyph1-4" x="293.61984" y="179.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-8" x="310.75176" y="179.28"/>
  <use xlink:href="#glyph1-9" x="315.748128" y="179.28"/>
  <use xlink:href="#glyph1-10" x="320.871792" y="179.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-12" x="325.15212" y="179.28"/>
  <use xlink:href="#glyph1-7" x="328.1754" y="179.28"/>
  <use xlink:href="#glyph1-4" x="329.68704" y="179.28"/>
  <use xlink:href="#glyph1-2" x="332.71032" y="179.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-20" x="286.16" y="189.11"/>
  <use xlink:href="#glyph2-15" x="291.79709" y="189.11"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="295.573482" y="189.11"/>
  <use xlink:href="#glyph2-9" x="301.164742" y="189.11"/>
  <use xlink:href="#glyph2-12" x="305.701912" y="189.11"/>
  <use xlink:href="#glyph2-21" x="310.981528" y="189.11"/>
  <use xlink:href="#glyph2-5" x="316.691946" y="189.11"/>
  <use xlink:href="#glyph2-15" x="322.50319" y="189.11"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="326.270416" y="189.11"/>
  <use xlink:href="#glyph2-22" x="331.586696" y="189.11"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-20" x="284.55" y="198.95"/>
  <use xlink:href="#glyph2-15" x="290.18709" y="198.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="293.963482" y="198.95"/>
  <use xlink:href="#glyph2-17" x="299.554742" y="198.95"/>
  <use xlink:href="#glyph2-7" x="304.651038" y="198.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-14" x="308.674912" y="198.95"/>
  <use xlink:href="#glyph2-12" x="315.39359" y="198.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-23" x="320.499052" y="198.95"/>
  <use xlink:href="#glyph2-12" x="325.402862" y="198.95"/>
  <use xlink:href="#glyph2-22" x="330.682478" y="198.95"/>
  <use xlink:href="#glyph2-7" x="333.230626" y="198.95"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 396.032656 187.78125 L 352.77875 187.78125 C 351.677188 187.78125 350.786563 186.890625 350.786563 185.789062 L 350.786563 159.816406 C 350.786563 158.714844 351.677188 157.820312 352.77875 157.820312 L 396.032656 157.820312 C 397.130313 157.820312 398.024844 158.714844 398.024844 159.816406 L 398.024844 185.789062 C 398.024844 186.890625 397.130313 187.78125 396.032656 187.78125 Z M 396.032656 187.78125 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-12" x="404.52" y="179.41"/>
  <use xlink:href="#glyph1-13" x="407.54328" y="179.41"/>
  <use xlink:href="#glyph1-1" x="410.56656" y="179.41"/>
  <use xlink:href="#glyph1-4" x="413.58984" y="179.41"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="424.484256" y="179.41"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="427.661352" y="179.41"/>
  <use xlink:href="#glyph1-6" x="430.732368" y="179.41"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="435.590832" y="179.41"/>
  <use xlink:href="#glyph1-7" x="438.614112" y="179.41"/>
  <use xlink:href="#glyph1-2" x="440.125752" y="179.41"/>
  <use xlink:href="#glyph1-2" x="443.149032" y="179.41"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="404.52" y="189.25"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-11" x="407.32" y="189.25"/>
  <use xlink:href="#glyph2-24" x="413.131244" y="189.25"/>
  <use xlink:href="#glyph2-2" x="416.449336" y="189.25"/>
  <use xlink:href="#glyph2-15" x="422.040596" y="189.25"/>
  <use xlink:href="#glyph2-3" x="425.991142" y="189.25"/>
  <use xlink:href="#glyph2-18" x="434.753838" y="189.25"/>
  <use xlink:href="#glyph2-6" x="440.070118" y="189.25"/>
  <use xlink:href="#glyph2-7" x="443.672356" y="189.25"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="407.1" y="198.81"/>
  <use xlink:href="#glyph2-25" x="412.132134" y="198.81"/>
  <use xlink:href="#glyph2-13" x="417.04511" y="198.81"/>
  <use xlink:href="#glyph2-6" x="421.499786" y="198.81"/>
  <use xlink:href="#glyph2-12" x="425.102024" y="198.81"/>
  <use xlink:href="#glyph2-3" x="430.38164" y="198.81"/>
  <use xlink:href="#glyph2-13" x="439.144336" y="198.81"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph4-1" x="102.48" y="212.14"/>
  <use xlink:href="#glyph4-2" x="105.508584" y="212.14"/>
  <use xlink:href="#glyph4-3" x="108.537168" y="212.14"/>
  <use xlink:href="#glyph4-4" x="111.565752" y="212.14"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 86.962344 130.316406 L 28.239688 130.316406 C 27.138125 130.316406 26.2475 129.425781 26.2475 128.324219 L 26.2475 102.078125 C 26.2475 100.976562 27.138125 100.085938 28.239688 100.085938 L 86.962344 100.085938 C 88.06 100.085938 88.954531 100.976562 88.954531 102.078125 L 88.954531 128.324219 C 88.954531 129.425781 88.06 130.316406 86.962344 130.316406 Z M 86.962344 130.316406 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-12" x="79.98" y="236.88"/>
  <use xlink:href="#glyph1-4" x="83.00328" y="236.88"/>
  <use xlink:href="#glyph1-4" x="86.02656" y="236.88"/>
  <use xlink:href="#glyph1-4" x="89.04984" y="236.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="112.39" y="236.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="115.567096" y="236.88"/>
  <use xlink:href="#glyph1-6" x="118.638112" y="236.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="123.496576" y="236.88"/>
  <use xlink:href="#glyph1-1" x="126.519856" y="236.88"/>
  <use xlink:href="#glyph1-7" x="129.543136" y="236.88"/>
  <use xlink:href="#glyph1-4" x="131.054776" y="236.88"/>
  <use xlink:href="#glyph1-2" x="134.078056" y="236.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="79.98" y="246.71"/>
  <use xlink:href="#glyph2-2" x="85.782078" y="246.71"/>
  <use xlink:href="#glyph2-3" x="91.373338" y="246.71"/>
  <use xlink:href="#glyph2-4" x="100.136034" y="246.71"/>
  <use xlink:href="#glyph2-5" x="105.846452" y="246.71"/>
  <use xlink:href="#glyph2-6" x="111.657696" y="246.71"/>
  <use xlink:href="#glyph2-18" x="115.259934" y="246.71"/>
  <use xlink:href="#glyph2-26" x="120.576214" y="246.71"/>
  <use xlink:href="#glyph2-7" x="126.286632" y="246.71"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-27" x="130.319672" y="246.71"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-28" x="80.41" y="256.55"/>
  <use xlink:href="#glyph2-2" x="85.286312" y="256.55"/>
  <use xlink:href="#glyph2-15" x="90.877572" y="256.55"/>
  <use xlink:href="#glyph2-3" x="94.828118" y="256.55"/>
  <use xlink:href="#glyph2-18" x="103.590814" y="256.55"/>
  <use xlink:href="#glyph2-22" x="108.907094" y="256.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-29" x="112.976798" y="256.55"/>
  <use xlink:href="#glyph2-18" x="117.935604" y="256.55"/>
  <use xlink:href="#glyph2-11" x="123.251884" y="256.55"/>
  <use xlink:href="#glyph2-17" x="129.063128" y="256.55"/>
  <use xlink:href="#glyph2-7" x="134.159424" y="256.55"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.864688 130.25 L 235.544375 130.25 C 234.442813 130.25 233.552188 129.355469 233.552188 128.253906 L 233.552188 102.148438 C 233.552188 101.046875 234.442813 100.15625 235.544375 100.15625 L 282.864688 100.15625 C 283.962344 100.15625 284.856875 101.046875 284.856875 102.148438 L 284.856875 128.253906 C 284.856875 129.355469 283.962344 130.25 282.864688 130.25 Z M 282.864688 130.25 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-12" x="287.28" y="236.95"/>
  <use xlink:href="#glyph1-2" x="290.30328" y="236.95"/>
  <use xlink:href="#glyph1-1" x="293.32656" y="236.95"/>
  <use xlink:href="#glyph1-4" x="296.34984" y="236.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-8" x="304.99536" y="236.95"/>
  <use xlink:href="#glyph1-9" x="309.991728" y="236.95"/>
  <use xlink:href="#glyph1-10" x="315.115392" y="236.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="319.39572" y="236.95"/>
  <use xlink:href="#glyph1-1" x="322.419" y="236.95"/>
  <use xlink:href="#glyph1-7" x="325.44228" y="236.95"/>
  <use xlink:href="#glyph1-4" x="326.95392" y="236.95"/>
  <use xlink:href="#glyph1-2" x="329.9772" y="236.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="290.45" y="246.78"/>
  <use xlink:href="#glyph2-2" x="295.482134" y="246.78"/>
  <use xlink:href="#glyph2-24" x="301.073394" y="246.78"/>
  <use xlink:href="#glyph2-6" x="304.391486" y="246.78"/>
  <use xlink:href="#glyph2-30" x="307.993724" y="246.78"/>
  <use xlink:href="#glyph2-18" x="315.47318" y="246.78"/>
  <use xlink:href="#glyph2-15" x="320.78946" y="246.78"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="324.565852" y="246.78"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-31" x="287.28" y="256.48"/>
  <use xlink:href="#glyph2-11" x="292.394628" y="256.48"/>
  <use xlink:href="#glyph2-17" x="298.205872" y="256.48"/>
  <use xlink:href="#glyph2-10" x="303.302168" y="256.48"/>
  <use xlink:href="#glyph2-11" x="305.850316" y="256.48"/>
  <use xlink:href="#glyph2-12" x="311.66156" y="256.48"/>
  <use xlink:href="#glyph2-12" x="316.941176" y="256.48"/>
  <use xlink:href="#glyph2-15" x="322.220792" y="256.48"/>
  <use xlink:href="#glyph2-7" x="326.171338" y="256.48"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="330.21" y="256.48"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.825625 130.046875 L 295.782656 130.046875 C 294.681094 130.046875 293.790469 129.152344 293.790469 128.054688 L 293.790469 102.347656 C 293.790469 101.25 294.681094 100.355469 295.782656 100.355469 L 337.825625 100.355469 C 338.927188 100.355469 339.817813 101.25 339.817813 102.347656 L 339.817813 128.054688 C 339.817813 129.152344 338.927188 130.046875 337.825625 130.046875 Z M 337.825625 130.046875 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-1" x="347.52" y="237.15"/>
  <use xlink:href="#glyph5-2" x="350.54328" y="237.15"/>
  <use xlink:href="#glyph5-3" x="353.56656" y="237.15"/>
  <use xlink:href="#glyph5-4" x="356.58984" y="237.15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-5" x="381.37" y="237.15"/>
  <use xlink:href="#glyph5-6" x="384.732736" y="237.15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph6-1" x="359.9" y="246.71"/>
  <use xlink:href="#glyph6-2" x="365.130575" y="246.71"/>
  <use xlink:href="#glyph6-2" x="370.36115" y="246.71"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-20" x="347.52" y="256.28"/>
  <use xlink:href="#glyph2-15" x="353.15709" y="256.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="356.933482" y="256.28"/>
  <use xlink:href="#glyph2-17" x="362.524742" y="256.28"/>
  <use xlink:href="#glyph2-15" x="367.621038" y="256.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="371.388264" y="256.28"/>
  <use xlink:href="#glyph2-3" x="376.704544" y="256.28"/>
  <use xlink:href="#glyph2-7" x="385.46724" y="256.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph4-5" x="165.84" y="269.74"/>
  <use xlink:href="#glyph4-2" x="168.868584" y="269.74"/>
  <use xlink:href="#glyph4-1" x="171.897168" y="269.74"/>
  <use xlink:href="#glyph4-4" x="174.925752" y="269.74"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.1225 72.445312 L 62.681094 72.445312 C 61.579531 72.445312 60.688906 71.554688 60.688906 70.453125 L 60.688906 44.75 C 60.688906 43.648438 61.579531 42.757812 62.681094 42.757812 L 110.1225 42.757812 C 111.220156 42.757812 112.114688 43.648438 112.114688 44.75 L 112.114688 70.453125 C 112.114688 71.554688 111.220156 72.445312 110.1225 72.445312 Z M 110.1225 72.445312 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-4" x="114.42" y="294.75"/>
  <use xlink:href="#glyph1-4" x="117.44328" y="294.75"/>
  <use xlink:href="#glyph1-12" x="120.46656" y="294.75"/>
  <use xlink:href="#glyph1-4" x="123.48984" y="294.75"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-8" x="132.257352" y="294.75"/>
  <use xlink:href="#glyph1-9" x="137.25372" y="294.75"/>
  <use xlink:href="#glyph1-10" x="142.377384" y="294.75"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="146.657712" y="294.75"/>
  <use xlink:href="#glyph1-2" x="149.680992" y="294.75"/>
  <use xlink:href="#glyph1-7" x="152.704272" y="294.75"/>
  <use xlink:href="#glyph1-4" x="154.215912" y="294.75"/>
  <use xlink:href="#glyph1-2" x="157.239192" y="294.75"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-14" x="126.87" y="304.31"/>
  <use xlink:href="#glyph2-18" x="133.588678" y="304.31"/>
  <use xlink:href="#glyph2-6" x="138.904958" y="304.31"/>
  <use xlink:href="#glyph2-18" x="142.507196" y="304.31"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="114.42" y="313.88"/>
  <use xlink:href="#glyph2-6" x="119.452134" y="313.88"/>
  <use xlink:href="#glyph2-15" x="123.054372" y="313.88"/>
  <use xlink:href="#glyph2-5" x="127.004918" y="313.88"/>
  <use xlink:href="#glyph2-9" x="132.816162" y="313.88"/>
  <use xlink:href="#glyph2-6" x="137.353332" y="313.88"/>
  <use xlink:href="#glyph2-5" x="140.95557" y="313.88"/>
  <use xlink:href="#glyph2-15" x="146.766814" y="313.88"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="150.543206" y="313.88"/>
  <use xlink:href="#glyph2-13" x="155.822822" y="313.88"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.731875 72.511719 L 121.270938 72.511719 C 120.173281 72.511719 119.27875 71.621094 119.27875 70.519531 L 119.27875 44.683594 C 119.27875 43.582031 120.173281 42.6875 121.270938 42.6875 L 166.731875 42.6875 C 167.829531 42.6875 168.724063 43.582031 168.724063 44.683594 L 168.724063 70.519531 C 168.724063 71.621094 167.829531 72.511719 166.731875 72.511719 Z M 166.731875 72.511719 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-4" x="173.01" y="294.68"/>
  <use xlink:href="#glyph1-3" x="176.03328" y="294.68"/>
  <use xlink:href="#glyph1-1" x="179.05656" y="294.68"/>
  <use xlink:href="#glyph1-4" x="182.07984" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="195.18072" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="198.357816" y="294.68"/>
  <use xlink:href="#glyph1-6" x="201.428832" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-3" x="206.287296" y="294.68"/>
  <use xlink:href="#glyph1-7" x="209.310576" y="294.68"/>
  <use xlink:href="#glyph1-4" x="210.822216" y="294.68"/>
  <use xlink:href="#glyph1-2" x="213.845496" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="176.05" y="304.25"/>
  <use xlink:href="#glyph2-2" x="181.852078" y="304.25"/>
  <use xlink:href="#glyph2-3" x="187.443338" y="304.25"/>
  <use xlink:href="#glyph2-4" x="196.206034" y="304.25"/>
  <use xlink:href="#glyph2-5" x="201.916452" y="304.25"/>
  <use xlink:href="#glyph2-6" x="207.727696" y="304.25"/>
  <use xlink:href="#glyph2-7" x="211.329934" y="304.25"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-16" x="173.01" y="313.94"/>
  <use xlink:href="#glyph2-15" x="180.223642" y="313.94"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-17" x="184.10086" y="313.94"/>
  <use xlink:href="#glyph2-18" x="189.197156" y="313.94"/>
  <use xlink:href="#glyph2-11" x="194.513436" y="313.94"/>
  <use xlink:href="#glyph2-10" x="200.32468" y="313.94"/>
  <use xlink:href="#glyph2-19" x="202.872828" y="313.94"/>
  <use xlink:href="#glyph2-7" x="207.254176" y="313.94"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="211.28" y="313.94"/>
  <use xlink:href="#glyph3-1" x="214.07563" y="313.94"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.571719 72.511719 L 178.634219 72.511719 C 177.532656 72.511719 176.642031 71.621094 176.642031 70.519531 L 176.642031 44.683594 C 176.642031 43.582031 177.532656 42.6875 178.634219 42.6875 L 224.571719 42.6875 C 225.673281 42.6875 226.563906 43.582031 226.563906 44.683594 L 226.563906 70.519531 C 226.563906 71.621094 225.673281 72.511719 224.571719 72.511719 Z M 224.571719 72.511719 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-4" x="230.37" y="294.68"/>
  <use xlink:href="#glyph1-14" x="233.39328" y="294.68"/>
  <use xlink:href="#glyph1-1" x="236.41656" y="294.68"/>
  <use xlink:href="#glyph1-4" x="239.43984" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-8" x="249.7296" y="294.68"/>
  <use xlink:href="#glyph1-9" x="254.725968" y="294.68"/>
  <use xlink:href="#glyph1-10" x="259.849632" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-11" x="264.12996" y="294.68"/>
  <use xlink:href="#glyph1-7" x="267.15324" y="294.68"/>
  <use xlink:href="#glyph1-4" x="268.66488" y="294.68"/>
  <use xlink:href="#glyph1-2" x="271.68816" y="294.68"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-16" x="230.37" y="304.38"/>
  <use xlink:href="#glyph2-4" x="237.583642" y="304.38"/>
  <use xlink:href="#glyph2-12" x="243.29406" y="304.38"/>
  <use xlink:href="#glyph2-15" x="248.573676" y="304.38"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="252.350068" y="304.38"/>
  <use xlink:href="#glyph2-6" x="257.666348" y="304.38"/>
  <use xlink:href="#glyph2-10" x="261.268586" y="304.38"/>
  <use xlink:href="#glyph2-11" x="263.816734" y="304.38"/>
  <use xlink:href="#glyph2-17" x="269.627978" y="304.38"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="232.13" y="313.94"/>
  <use xlink:href="#glyph2-25" x="237.162134" y="313.94"/>
  <use xlink:href="#glyph2-13" x="242.07511" y="313.94"/>
  <use xlink:href="#glyph2-6" x="246.529786" y="313.94"/>
  <use xlink:href="#glyph2-12" x="250.132024" y="313.94"/>
  <use xlink:href="#glyph2-3" x="255.41164" y="313.94"/>
  <use xlink:href="#glyph2-13" x="264.174336" y="313.94"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="270.16" y="313.94"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.259219 72.648438 L 234.145938 72.648438 C 233.044375 72.648438 232.15375 71.753906 232.15375 70.65625 L 232.15375 44.546875 C 232.15375 43.445312 233.044375 42.554688 234.145938 42.554688 L 284.259219 42.554688 C 285.360781 42.554688 286.251406 43.445312 286.251406 44.546875 L 286.251406 70.65625 C 286.251406 71.753906 285.360781 72.648438 284.259219 72.648438 Z M 284.259219 72.648438 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-7" x="285.89" y="294.55"/>
  <use xlink:href="#glyph5-8" x="288.91328" y="294.55"/>
  <use xlink:href="#glyph5-9" x="291.93656" y="294.55"/>
  <use xlink:href="#glyph5-7" x="294.95984" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-10" x="306.76124" y="294.55"/>
  <use xlink:href="#glyph5-11" x="311.651528" y="294.55"/>
  <use xlink:href="#glyph5-12" x="316.663808" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-9" x="320.859272" y="294.55"/>
  <use xlink:href="#glyph5-9" x="323.882552" y="294.55"/>
  <use xlink:href="#glyph5-13" x="326.905832" y="294.55"/>
  <use xlink:href="#glyph5-7" x="328.359128" y="294.55"/>
  <use xlink:href="#glyph5-8" x="331.382408" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="290.46" y="304.38"/>
  <use xlink:href="#glyph2-2" x="295.492134" y="304.38"/>
  <use xlink:href="#glyph2-24" x="301.083394" y="304.38"/>
  <use xlink:href="#glyph2-6" x="304.401486" y="304.38"/>
  <use xlink:href="#glyph2-30" x="308.003724" y="304.38"/>
  <use xlink:href="#glyph2-18" x="315.48318" y="304.38"/>
  <use xlink:href="#glyph2-15" x="320.79946" y="304.38"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="324.566686" y="304.38"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-31" x="285.89" y="314.08"/>
  <use xlink:href="#glyph2-11" x="291.004628" y="314.08"/>
  <use xlink:href="#glyph2-17" x="296.815872" y="314.08"/>
  <use xlink:href="#glyph2-10" x="301.912168" y="314.08"/>
  <use xlink:href="#glyph2-11" x="304.460316" y="314.08"/>
  <use xlink:href="#glyph2-12" x="310.27156" y="314.08"/>
  <use xlink:href="#glyph2-12" x="315.551176" y="314.08"/>
  <use xlink:href="#glyph2-15" x="320.830792" y="314.08"/>
  <use xlink:href="#glyph2-7" x="324.781338" y="314.08"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="328.82" y="314.08"/>
  <use xlink:href="#glyph3-1" x="331.61563" y="314.08"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.642031 72.582031 L 308.52875 72.582031 C 307.427188 72.582031 306.532656 71.6875 306.532656 70.589844 L 306.532656 44.613281 C 306.532656 43.511719 307.427188 42.621094 308.52875 42.621094 L 359.642031 42.621094 C 360.743594 42.621094 361.634219 43.511719 361.634219 44.613281 L 361.634219 70.589844 C 361.634219 71.6875 360.743594 72.582031 359.642031 72.582031 Z M 359.642031 72.582031 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-7" x="360.27" y="294.61"/>
  <use xlink:href="#glyph5-4" x="363.29328" y="294.61"/>
  <use xlink:href="#glyph5-9" x="366.31656" y="294.61"/>
  <use xlink:href="#glyph5-7" x="369.33984" y="294.61"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-10" x="375.418224" y="294.61"/>
  <use xlink:href="#glyph5-11" x="380.308512" y="294.61"/>
  <use xlink:href="#glyph5-12" x="385.320792" y="294.61"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-3" x="389.516256" y="294.61"/>
  <use xlink:href="#glyph5-13" x="392.539536" y="294.61"/>
  <use xlink:href="#glyph5-7" x="393.992832" y="294.61"/>
  <use xlink:href="#glyph5-8" x="397.016112" y="294.61"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph5-14" x="401.413128" y="294.61"/>
  <use xlink:href="#glyph5-15" x="404.71752" y="294.61"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-14" x="364.17" y="304.45"/>
  <use xlink:href="#glyph2-18" x="370.888678" y="304.45"/>
  <use xlink:href="#glyph2-6" x="376.204958" y="304.45"/>
  <use xlink:href="#glyph2-18" x="379.807196" y="304.45"/>
  <use xlink:href="#glyph2-26" x="385.123476" y="304.45"/>
  <use xlink:href="#glyph2-18" x="390.833894" y="304.45"/>
  <use xlink:href="#glyph2-13" x="396.150174" y="304.45"/>
  <use xlink:href="#glyph2-12" x="400.60485" y="304.45"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-32" x="360.91" y="314.01"/>
  <use xlink:href="#glyph2-11" x="369.361052" y="314.01"/>
  <use xlink:href="#glyph2-17" x="375.172296" y="314.01"/>
  <use xlink:href="#glyph2-6" x="380.268592" y="314.01"/>
  <use xlink:href="#glyph2-7" x="383.87083" y="314.01"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="387.913036" y="314.01"/>
  <use xlink:href="#glyph2-25" x="392.94517" y="314.01"/>
  <use xlink:href="#glyph2-13" x="397.858146" y="314.01"/>
  <use xlink:href="#glyph2-7" x="402.312822" y="314.01"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-1" x="406.35" y="314.01"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,99.235523%,85.001907%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 424.345156 72.648438 L 382.067813 72.648438 C 380.96625 72.648438 380.075625 71.753906 380.075625 70.65625 L 380.075625 44.546875 C 380.075625 43.445312 380.96625 42.554688 382.067813 42.554688 L 424.345156 42.554688 C 425.442813 42.554688 426.337344 43.445312 426.337344 44.546875 L 426.337344 70.65625 C 426.337344 71.753906 425.442813 72.648438 424.345156 72.648438 Z M 424.345156 72.648438 " transform="matrix(1,0,0,-1,50.94,360)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-4" x="433.81" y="294.55"/>
  <use xlink:href="#glyph1-13" x="436.83328" y="294.55"/>
  <use xlink:href="#glyph1-2" x="439.85656" y="294.55"/>
  <use xlink:href="#glyph1-4" x="442.87984" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="449.780344" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-5" x="452.95744" y="294.55"/>
  <use xlink:href="#glyph1-6" x="456.028456" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="460.88692" y="294.55"/>
  <use xlink:href="#glyph1-2" x="463.9102" y="294.55"/>
  <use xlink:href="#glyph1-7" x="466.93348" y="294.55"/>
  <use xlink:href="#glyph1-2" x="468.44512" y="294.55"/>
  <use xlink:href="#glyph1-2" x="471.4684" y="294.55"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-8" x="433.81" y="304.38"/>
  <use xlink:href="#glyph2-25" x="438.842134" y="304.38"/>
  <use xlink:href="#glyph2-13" x="443.75511" y="304.38"/>
  <use xlink:href="#glyph2-7" x="448.209786" y="304.38"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-33" x="452.242826" y="304.38"/>
  <use xlink:href="#glyph2-11" x="458.301552" y="304.38"/>
  <use xlink:href="#glyph2-18" x="464.112796" y="304.38"/>
  <use xlink:href="#glyph2-22" x="469.429076" y="304.38"/>
  <use xlink:href="#glyph2-7" x="471.977224" y="304.38"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-27" x="435.04" y="314.08"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-14" x="443.344396" y="314.08"/>
  <use xlink:href="#glyph2-12" x="450.063074" y="314.08"/>
  <use xlink:href="#glyph2-13" x="455.34269" y="314.08"/>
  <use xlink:href="#glyph2-10" x="459.797366" y="314.08"/>
  <use xlink:href="#glyph2-17" x="462.345514" y="314.08"/>
  <use xlink:href="#glyph2-11" x="467.44181" y="314.08"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph7-1" x="106.49" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-33" x="114.91" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-13" x="123.086072" y="389.44"/>
  <use xlink:href="#glyph2-2" x="127.540748" y="389.44"/>
  <use xlink:href="#glyph2-22" x="133.132008" y="389.44"/>
  <use xlink:href="#glyph2-10" x="135.680156" y="389.44"/>
  <use xlink:href="#glyph2-21" x="138.228304" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="146.056068" y="389.44"/>
  <use xlink:href="#glyph2-15" x="151.372348" y="389.44"/>
  <use xlink:href="#glyph2-15" x="155.322894" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="159.099286" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-30" x="164.507226" y="389.44"/>
</g>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0015625 0.00125 L 19.302344 0.00125 " transform="matrix(1,0,0,-1,174.35,386.97)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709021 0.00125 C 2.37699 0.0832812 0.912146 0.552031 -0.00191625 1.059844 L -0.00191625 -1.06125 C 0.912146 -0.549531 2.37699 -0.0807813 2.709021 0.00125 Z M 2.709021 0.00125 " transform="matrix(1,0,0,-1,193.65426,386.97)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-10" x="201.89" y="389.44"/>
  <use xlink:href="#glyph2-11" x="204.438148" y="389.44"/>
  <use xlink:href="#glyph2-21" x="210.249392" y="389.44"/>
  <use xlink:href="#glyph2-10" x="215.95981" y="389.44"/>
  <use xlink:href="#glyph2-9" x="218.507958" y="389.44"/>
  <use xlink:href="#glyph2-18" x="223.045128" y="389.44"/>
  <use xlink:href="#glyph2-6" x="228.361408" y="389.44"/>
  <use xlink:href="#glyph2-12" x="231.963646" y="389.44"/>
  <use xlink:href="#glyph2-13" x="237.243262" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="243.815284" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-15" x="251.24891" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="255.025302" y="389.44"/>
  <use xlink:href="#glyph2-34" x="260.304918" y="389.44"/>
  <use xlink:href="#glyph2-5" x="266.015336" y="389.44"/>
  <use xlink:href="#glyph2-10" x="271.82658" y="389.44"/>
  <use xlink:href="#glyph2-15" x="274.374728" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="278.141954" y="389.44"/>
  <use xlink:href="#glyph2-21" x="283.42157" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="291.249334" y="389.44"/>
  <use xlink:href="#glyph2-15" x="296.959752" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="300.736144" y="389.44"/>
  <use xlink:href="#glyph2-15" x="306.01576" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="309.782986" y="389.44"/>
  <use xlink:href="#glyph2-34" x="315.062602" y="389.44"/>
  <use xlink:href="#glyph2-5" x="320.77302" y="389.44"/>
  <use xlink:href="#glyph2-10" x="326.584264" y="389.44"/>
  <use xlink:href="#glyph2-13" x="329.132412" y="389.44"/>
  <use xlink:href="#glyph2-10" x="333.587088" y="389.44"/>
  <use xlink:href="#glyph2-6" x="336.135236" y="389.44"/>
  <use xlink:href="#glyph2-12" x="339.737474" y="389.44"/>
  <use xlink:href="#glyph2-35" x="345.01709" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="349.627588" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-21" x="357.07038" y="389.44"/>
  <use xlink:href="#glyph2-2" x="362.780798" y="389.44"/>
  <use xlink:href="#glyph2-6" x="368.372058" y="389.44"/>
  <use xlink:href="#glyph2-6" x="371.974296" y="389.44"/>
  <use xlink:href="#glyph2-12" x="375.576534" y="389.44"/>
  <use xlink:href="#glyph2-21" x="380.85615" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="388.683914" y="389.44"/>
  <use xlink:href="#glyph2-15" x="394.000194" y="389.44"/>
  <use xlink:href="#glyph2-15" x="397.95074" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="401.727132" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-30" x="407.135072" y="389.44"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.79701,3.9851;stroke-miterlimit:10;" d="M 0.00109375 0.00125 L 19.454219 0.00125 " transform="matrix(1,0,0,-1,417.12,386.97)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.941935 0.00125 C 1.703654 0.06375 0.656779 0.415312 0.00052875 0.802031 L 0.00052875 -0.799531 C 0.656779 -0.416719 1.703654 -0.06125 1.941935 0.00125 Z M 1.941935 0.00125 " transform="matrix(1,0,0,-1,436.57369,386.97)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-10" x="444.81" y="389.44"/>
  <use xlink:href="#glyph2-11" x="447.358148" y="389.44"/>
  <use xlink:href="#glyph2-21" x="453.169392" y="389.44"/>
  <use xlink:href="#glyph2-10" x="458.87981" y="389.44"/>
  <use xlink:href="#glyph2-9" x="461.427958" y="389.44"/>
  <use xlink:href="#glyph2-18" x="465.965128" y="389.44"/>
  <use xlink:href="#glyph2-6" x="471.281408" y="389.44"/>
  <use xlink:href="#glyph2-12" x="474.883646" y="389.44"/>
  <use xlink:href="#glyph2-13" x="480.163262" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="486.735284" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-9" x="494.16891" y="389.44"/>
  <use xlink:href="#glyph2-2" x="498.70608" y="389.44"/>
  <use xlink:href="#glyph2-15" x="504.29734" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="508.073732" y="389.44"/>
  <use xlink:href="#glyph2-34" x="513.353348" y="389.44"/>
  <use xlink:href="#glyph2-36" x="519.063766" y="389.44"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="114.91" y="401.4"/>
  <use xlink:href="#glyph2-10" x="120.721244" y="401.4"/>
  <use xlink:href="#glyph2-13" x="123.269392" y="401.4"/>
  <use xlink:href="#glyph2-10" x="127.724068" y="401.4"/>
  <use xlink:href="#glyph2-6" x="130.272216" y="401.4"/>
  <use xlink:href="#glyph2-12" x="133.874454" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-37" x="142.783806" y="401.4"/>
  <use xlink:href="#glyph2-6" x="145.680262" y="401.4"/>
  <use xlink:href="#glyph2-2" x="149.2825" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-26" x="158.503496" y="401.4"/>
  <use xlink:href="#glyph2-12" x="164.213914" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="173.132432" y="401.4"/>
  <use xlink:href="#glyph2-18" x="176.73467" y="401.4"/>
  <use xlink:href="#glyph2-38" x="182.05095" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="187.110582" y="401.4"/>
  <use xlink:href="#glyph2-11" x="192.390198" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-26" x="201.822012" y="401.4"/>
  <use xlink:href="#glyph2-12" x="207.53243" y="401.4"/>
  <use xlink:href="#glyph2-24" x="212.812046" y="401.4"/>
  <use xlink:href="#glyph2-2" x="216.130138" y="401.4"/>
  <use xlink:href="#glyph2-15" x="221.721398" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="225.49779" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="234.407142" y="401.4"/>
  <use xlink:href="#glyph2-15" x="239.998402" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-9" x="247.578684" y="401.4"/>
  <use xlink:href="#glyph2-2" x="252.115854" y="401.4"/>
  <use xlink:href="#glyph2-11" x="257.707114" y="401.4"/>
  <use xlink:href="#glyph2-9" x="263.518358" y="401.4"/>
  <use xlink:href="#glyph2-5" x="268.055528" y="401.4"/>
  <use xlink:href="#glyph2-15" x="273.866772" y="401.4"/>
  <use xlink:href="#glyph2-15" x="277.817318" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="281.59371" y="401.4"/>
  <use xlink:href="#glyph2-11" x="286.873326" y="401.4"/>
  <use xlink:href="#glyph2-6" x="292.68457" y="401.4"/>
  <use xlink:href="#glyph2-22" x="296.286808" y="401.4"/>
  <use xlink:href="#glyph2-25" x="298.834956" y="401.4"/>
  <use xlink:href="#glyph2-39" x="303.747932" y="401.4"/>
  <use xlink:href="#glyph2-35" x="306.644388" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="313.03309" y="401.4"/>
  <use xlink:href="#glyph2-11" x="318.34937" y="401.4"/>
  <use xlink:href="#glyph2-21" x="324.160614" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="333.509934" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-21" x="342.45595" y="401.4"/>
  <use xlink:href="#glyph2-18" x="348.166368" y="401.4"/>
  <use xlink:href="#glyph2-13" x="353.482648" y="401.4"/>
  <use xlink:href="#glyph2-40" x="357.937324" y="401.4"/>
  <use xlink:href="#glyph2-12" x="363.748568" y="401.4"/>
  <use xlink:href="#glyph2-21" x="369.028184" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="378.377504" y="401.4"/>
  <use xlink:href="#glyph2-15" x="383.693784" y="401.4"/>
  <use xlink:href="#glyph2-15" x="387.64433" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="391.420722" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-30" x="396.828662" y="401.4"/>
</g>
<path style="fill:none;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 0.001875 0.0003125 L 19.302656 0.0003125 " transform="matrix(1,0,0,-1,408.17,398.93)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.49814;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.709334 0.0003125 C 2.377302 0.0823437 0.912459 0.551094 -0.00160375 1.062812 L -0.00160375 -1.062188 C 0.912459 -0.550469 2.377302 -0.0817188 2.709334 0.0003125 Z M 2.709334 0.0003125 " transform="matrix(1,0,0,-1,427.47426,398.93)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-10" x="438.73" y="401.4"/>
  <use xlink:href="#glyph2-11" x="441.278148" y="401.4"/>
  <use xlink:href="#glyph2-21" x="447.089392" y="401.4"/>
  <use xlink:href="#glyph2-10" x="452.79981" y="401.4"/>
  <use xlink:href="#glyph2-9" x="455.347958" y="401.4"/>
  <use xlink:href="#glyph2-18" x="459.885128" y="401.4"/>
  <use xlink:href="#glyph2-6" x="465.201408" y="401.4"/>
  <use xlink:href="#glyph2-12" x="468.803646" y="401.4"/>
  <use xlink:href="#glyph2-13" x="474.083262" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="482.167674" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-15" x="491.122856" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="494.899248" y="401.4"/>
  <use xlink:href="#glyph2-9" x="500.178864" y="401.4"/>
  <use xlink:href="#glyph2-2" x="504.716034" y="401.4"/>
  <use xlink:href="#glyph2-3" x="510.307294" y="401.4"/>
  <use xlink:href="#glyph2-36" x="519.06999" y="401.4"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="114.91" y="415.09"/>
  <use xlink:href="#glyph2-12" x="123.672696" y="415.09"/>
  <use xlink:href="#glyph2-11" x="128.952312" y="415.09"/>
  <use xlink:href="#glyph2-21" x="134.763556" y="415.09"/>
  <use xlink:href="#glyph2-12" x="140.473974" y="415.09"/>
  <use xlink:href="#glyph2-21" x="145.75359" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="153.718844" y="415.09"/>
  <use xlink:href="#glyph2-15" x="159.429262" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="163.205654" y="415.09"/>
  <use xlink:href="#glyph2-15" x="168.48527" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="172.252496" y="415.09"/>
  <use xlink:href="#glyph2-34" x="177.532112" y="415.09"/>
  <use xlink:href="#glyph2-5" x="183.24253" y="415.09"/>
  <use xlink:href="#glyph2-10" x="189.053774" y="415.09"/>
  <use xlink:href="#glyph2-13" x="191.601922" y="415.09"/>
  <use xlink:href="#glyph2-10" x="196.056598" y="415.09"/>
  <use xlink:href="#glyph2-6" x="198.604746" y="415.09"/>
  <use xlink:href="#glyph2-12" x="202.206984" y="415.09"/>
  <use xlink:href="#glyph2-7" x="207.4866" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="212.89454" y="415.09"/>
  <use xlink:href="#glyph2-2" x="218.696618" y="415.09"/>
  <use xlink:href="#glyph2-15" x="224.287878" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="228.06427" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-9" x="235.589556" y="415.09"/>
  <use xlink:href="#glyph2-2" x="240.126726" y="415.09"/>
  <use xlink:href="#glyph2-5" x="245.717986" y="415.09"/>
  <use xlink:href="#glyph2-15" x="251.52923" y="415.09"/>
  <use xlink:href="#glyph2-13" x="255.479776" y="415.09"/>
  <use xlink:href="#glyph2-12" x="259.934452" y="415.09"/>
  <use xlink:href="#glyph2-13" x="265.214068" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="271.932746" y="415.09"/>
  <use xlink:href="#glyph2-15" x="277.249026" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="281.025418" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-10" x="288.55987" y="415.09"/>
  <use xlink:href="#glyph2-11" x="291.108018" y="415.09"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.828125 7.514531 L -9.828125 7.514531 C -10.929688 7.514531 -11.820312 6.623906 -11.820312 5.522344 L -11.820312 -5.524531 C -11.820312 -6.622187 -10.929688 -7.516719 -9.828125 -7.516719 L 9.828125 -7.516719 C 10.929688 -7.516719 11.820312 -6.622187 11.820312 -5.524531 L 11.820312 5.522344 C 11.820312 6.623906 10.929688 7.514531 9.828125 7.514531 Z M 9.828125 7.514531 " transform="matrix(1,0,0,-1,311.5,412.62)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph8-1" x="301.47" y="415.09"/>
  <use xlink:href="#glyph8-2" x="307.262912" y="415.09"/>
  <use xlink:href="#glyph8-3" x="312.936666" y="415.09"/>
  <use xlink:href="#glyph8-4" x="315.732296" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-26" x="328.34" y="415.09"/>
  <use xlink:href="#glyph2-2" x="334.050418" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-41" x="339.458358" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="344.316338" y="415.09"/>
  <use xlink:href="#glyph2-13" x="349.595954" y="415.09"/>
  <use xlink:href="#glyph2-42" x="354.05063" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="358.881112" y="415.09"/>
  <use xlink:href="#glyph2-6" x="364.472372" y="415.09"/>
  <use xlink:href="#glyph2-40" x="368.07461" y="415.09"/>
  <use xlink:href="#glyph2-12" x="373.885854" y="415.09"/>
  <use xlink:href="#glyph2-15" x="379.16547" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-9" x="385.380018" y="415.09"/>
  <use xlink:href="#glyph2-2" x="389.917188" y="415.09"/>
  <use xlink:href="#glyph2-5" x="395.508448" y="415.09"/>
  <use xlink:href="#glyph2-15" x="401.319692" y="415.09"/>
  <use xlink:href="#glyph2-13" x="405.270238" y="415.09"/>
  <use xlink:href="#glyph2-12" x="409.724914" y="415.09"/>
  <use xlink:href="#glyph2-13" x="415.00453" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-37" x="421.714042" y="415.09"/>
  <use xlink:href="#glyph2-10" x="424.610498" y="415.09"/>
  <use xlink:href="#glyph2-7" x="427.158646" y="415.09"/>
  <use xlink:href="#glyph2-12" x="429.67013" y="415.09"/>
  <use xlink:href="#glyph2-7" x="434.949746" y="415.09"/>
  <use xlink:href="#glyph2-35" x="437.46123" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="442.172554" y="415.09"/>
  <use xlink:href="#glyph2-4" x="447.763814" y="415.09"/>
  <use xlink:href="#glyph2-6" x="453.474232" y="415.09"/>
  <use xlink:href="#glyph2-10" x="457.07647" y="415.09"/>
  <use xlink:href="#glyph2-2" x="459.624618" y="415.09"/>
  <use xlink:href="#glyph2-11" x="465.215878" y="415.09"/>
  <use xlink:href="#glyph2-13" x="471.027122" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="477.7458" y="415.09"/>
  <use xlink:href="#glyph2-15" x="483.33706" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="489.551608" y="415.09"/>
  <use xlink:href="#glyph2-15" x="495.262026" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="499.038418" y="415.09"/>
  <use xlink:href="#glyph2-15" x="504.318034" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="508.08526" y="415.09"/>
  <use xlink:href="#glyph2-34" x="513.364876" y="415.09"/>
  <use xlink:href="#glyph2-36" x="519.075294" y="415.09"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="114.91" y="431.95"/>
  <use xlink:href="#glyph2-10" x="120.721244" y="431.95"/>
  <use xlink:href="#glyph2-13" x="123.269392" y="431.95"/>
  <use xlink:href="#glyph2-10" x="127.724068" y="431.95"/>
  <use xlink:href="#glyph2-6" x="130.272216" y="431.95"/>
  <use xlink:href="#glyph2-12" x="133.874454" y="431.95"/>
  <use xlink:href="#glyph2-13" x="139.15407" y="431.95"/>
  <use xlink:href="#glyph2-39" x="143.608746" y="431.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="148.87003" y="431.95"/>
  <use xlink:href="#glyph2-15" x="154.18631" y="431.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="157.962702" y="431.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-10" x="165.607146" y="431.95"/>
  <use xlink:href="#glyph2-11" x="168.155294" y="431.95"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.602188 7.641875 L -9.604844 7.641875 C -10.7025 7.641875 -11.597031 6.75125 -11.597031 5.649687 L -11.597031 -5.651094 C -11.597031 -6.74875 -10.7025 -7.643281 -9.604844 -7.643281 L 9.602188 -7.643281 C 10.70375 -7.643281 11.594375 -6.74875 11.594375 -5.651094 L 11.594375 5.649687 C 11.594375 6.75125 10.70375 7.641875 9.602188 7.641875 Z M 9.602188 7.641875 " transform="matrix(1,0,0,-1,188.14,429.47)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-22" x="178.34" y="431.85"/>
  <use xlink:href="#glyph2-10" x="180.888148" y="431.85"/>
  <use xlink:href="#glyph2-17" x="183.436296" y="431.85"/>
  <use xlink:href="#glyph2-40" x="188.532592" y="431.85"/>
  <use xlink:href="#glyph2-6" x="194.343836" y="431.85"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-26" x="204.68" y="431.95"/>
  <use xlink:href="#glyph2-2" x="210.390418" y="431.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-41" x="215.807524" y="431.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="220.665504" y="431.95"/>
  <use xlink:href="#glyph2-13" x="225.94512" y="431.95"/>
  <use xlink:href="#glyph2-7" x="230.399796" y="431.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph7-1" x="106.49" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-43" x="114.91" y="453.24"/>
  <use xlink:href="#glyph2-10" x="120.08879" y="453.24"/>
  <use xlink:href="#glyph2-3" x="122.636938" y="453.24"/>
  <use xlink:href="#glyph2-12" x="131.399634" y="453.24"/>
  <use xlink:href="#glyph2-6" x="136.67925" y="453.24"/>
  <use xlink:href="#glyph2-18" x="140.281488" y="453.24"/>
  <use xlink:href="#glyph2-26" x="145.597768" y="453.24"/>
  <use xlink:href="#glyph2-22" x="151.308186" y="453.24"/>
  <use xlink:href="#glyph2-10" x="153.856334" y="453.24"/>
  <use xlink:href="#glyph2-11" x="156.404482" y="453.24"/>
  <use xlink:href="#glyph2-17" x="162.215726" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-18" x="170.052656" y="453.24"/>
  <use xlink:href="#glyph2-26" x="175.368936" y="453.24"/>
  <use xlink:href="#glyph2-26" x="181.079354" y="453.24"/>
  <use xlink:href="#glyph2-15" x="186.789772" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="190.566164" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-23" x="195.66246" y="453.24"/>
  <use xlink:href="#glyph2-10" x="200.56627" y="453.24"/>
  <use xlink:href="#glyph2-18" x="203.114418" y="453.24"/>
  <use xlink:href="#glyph2-6" x="208.430698" y="453.24"/>
  <use xlink:href="#glyph2-10" x="212.032936" y="453.24"/>
  <use xlink:href="#glyph2-2" x="214.581084" y="453.24"/>
  <use xlink:href="#glyph2-11" x="220.172344" y="453.24"/>
  <use xlink:href="#glyph2-13" x="225.983588" y="453.24"/>
  <use xlink:href="#glyph2-44" x="230.438264" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-32" x="236.625314" y="453.24"/>
  <use xlink:href="#glyph2-35" x="245.076366" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-43" x="250.273488" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-35" x="254.911484" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-45" x="260.09944" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-35" x="268.321342" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-43" x="273.509298" y="453.24"/>
  <use xlink:href="#glyph2-40" x="278.688088" y="453.24"/>
  <use xlink:href="#glyph2-35" x="284.499332" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-28" x="289.788114" y="453.24"/>
  <use xlink:href="#glyph2-46" x="294.664426" y="453.24"/>
  <use xlink:href="#glyph2-32" x="299.889046" y="453.24"/>
  <use xlink:href="#glyph2-2" x="308.340098" y="453.24"/>
  <use xlink:href="#glyph2-11" x="313.931358" y="453.24"/>
  <use xlink:href="#glyph2-35" x="319.742602" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-43" x="325.031384" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="329.770206" y="453.24"/>
  <use xlink:href="#glyph2-12" x="335.58145" y="453.24"/>
  <use xlink:href="#glyph2-35" x="340.861066" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-45" x="346.140682" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="354.628398" y="453.24"/>
  <use xlink:href="#glyph2-21" x="359.908014" y="453.24"/>
  <use xlink:href="#glyph2-35" x="365.618432" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-43" x="370.898048" y="453.24"/>
  <use xlink:href="#glyph2-40" x="376.076838" y="453.24"/>
  <use xlink:href="#glyph2-5" x="381.888082" y="453.24"/>
  <use xlink:href="#glyph2-15" x="387.699326" y="453.24"/>
  <use xlink:href="#glyph2-35" x="391.649872" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-28" x="396.938654" y="453.24"/>
  <use xlink:href="#glyph2-15" x="401.814966" y="453.24"/>
  <use xlink:href="#glyph2-10" x="405.765512" y="453.24"/>
  <use xlink:href="#glyph2-35" x="408.31366" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-15" x="413.602442" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="417.378834" y="453.24"/>
  <use xlink:href="#glyph2-13" x="422.65845" y="453.24"/>
  <use xlink:href="#glyph2-4" x="427.113126" y="453.24"/>
  <use xlink:href="#glyph2-7" x="432.823544" y="453.24"/>
  <use xlink:href="#glyph2-42" x="435.335028" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="440.797964" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-23" x="445.903426" y="453.24"/>
  <use xlink:href="#glyph2-12" x="450.807236" y="453.24"/>
  <use xlink:href="#glyph2-46" x="456.086852" y="453.24"/>
  <use xlink:href="#glyph2-47" x="461.311472" y="453.24"/>
  <use xlink:href="#glyph2-44" x="466.536092" y="453.24"/>
  <use xlink:href="#glyph2-48" x="469.047576" y="453.24"/>
  <use xlink:href="#glyph2-48" x="474.272196" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph9-1" x="479.47" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-49" x="484.06" y="453.24"/>
  <use xlink:href="#glyph2-44" x="489.28462" y="453.24"/>
  <use xlink:href="#glyph2-50" x="491.796104" y="453.24"/>
  <use xlink:href="#glyph2-48" x="497.020724" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="504.985978" y="453.24"/>
  <use xlink:href="#glyph2-3" x="510.696396" y="453.24"/>
  <use xlink:href="#glyph2-42" x="519.459092" y="453.24"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-11" x="114.91" y="465.2"/>
  <use xlink:href="#glyph2-2" x="120.721244" y="465.2"/>
  <use xlink:href="#glyph2-46" x="126.312504" y="465.2"/>
  <use xlink:href="#glyph2-11" x="131.537124" y="465.2"/>
  <use xlink:href="#glyph2-2" x="137.348368" y="465.2"/>
  <use xlink:href="#glyph2-6" x="142.939628" y="465.2"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="148.906694" y="465.2"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph3-2" x="154.5" y="465.2"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="161.16" y="465.2"/>
  <use xlink:href="#glyph2-15" x="166.439616" y="465.2"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-12" x="170.206842" y="465.2"/>
  <use xlink:href="#glyph2-21" x="175.486458" y="465.2"/>
  <use xlink:href="#glyph2-7" x="181.196876" y="465.2"/>
</g>
</g>
<a xlink:href="1083.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="315" y="72" width="46" height="57"/></a>
<a xlink:href="1303.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="170" y="119" width="46" height="23"/></a>
<a xlink:href="2813.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="199" y="176" width="46" height="23"/></a>
<a xlink:href="2023.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="286" y="176" width="46" height="23"/></a>
<a xlink:href="2513.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="401" y="176" width="46" height="23"/></a>
<a xlink:href="1083.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="96" y="205" width="23" height="11"/></a>
<a xlink:href="2333.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="84" y="234" width="46" height="23"/></a>
<a xlink:href="2013.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="286" y="234" width="46" height="23"/></a>
<a xlink:href="2685.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="343" y="234" width="46" height="23"/></a>
<a xlink:href="2013.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="159" y="263" width="23" height="11"/></a>
<a xlink:href="3323.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="113" y="291" width="46" height="23"/></a>
<a xlink:href="3813.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="170" y="291" width="46" height="23"/></a>
<a xlink:href="3413.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="228" y="291" width="46" height="23"/></a>
<a xlink:href="3013.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="286" y="291" width="46" height="23"/></a>
<a xlink:href="3513.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="361" y="291" width="46" height="23"/></a>
<a xlink:href="3503.html" target="course"> <rect fill-opacity="0.0" opacity="0.0"
x="430" y="291" width="46" height="23"/></a>
</svg>