Newer
Older
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
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="782.461pt" height="487.735pt" viewBox="0 0 782.461 487.735" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.203125 -2.734375 L 6.734375 -2.734375 C 6.515625 -1.359375 6.234375 -0.46875 4.390625 -0.46875 L 2.875 -0.46875 L 2.875 -3.28125 L 3.421875 -3.28125 C 4.375 -3.28125 4.484375 -2.84375 4.484375 -2.109375 L 4.953125 -2.109375 L 4.953125 -4.90625 L 4.484375 -4.90625 C 4.484375 -4.171875 4.390625 -3.75 3.421875 -3.75 L 2.875 -3.75 L 2.875 -6.296875 L 4.390625 -6.296875 C 5.984375 -6.296875 6.25 -5.578125 6.40625 -4.375 L 6.875 -4.375 L 6.5625 -6.765625 L 0.390625 -6.765625 L 0.390625 -6.296875 L 1.46875 -6.296875 L 1.46875 -0.46875 L 0.390625 -0.46875 L 0.390625 0 L 6.734375 0 Z M 7.203125 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.5 -0.53125 C 6.8125 -0.265625 7.40625 0 7.46875 0 C 7.609375 0 7.609375 -0.125 7.609375 -0.28125 L 7.609375 -2.28125 L 8.40625 -2.28125 L 8.40625 -2.75 C 8.0625 -2.71875 7.203125 -2.71875 6.8125 -2.71875 C 6.234375 -2.71875 5.3125 -2.71875 4.765625 -2.75 L 4.765625 -2.28125 L 6.203125 -2.28125 L 6.203125 -1.28125 C 6.203125 -1.078125 6.203125 -0.796875 5.8125 -0.5625 C 5.546875 -0.421875 5.234375 -0.359375 4.921875 -0.359375 C 4.0625 -0.359375 3.203125 -0.640625 2.71875 -1.265625 C 2.296875 -1.8125 2.15625 -2.515625 2.15625 -3.421875 C 2.15625 -4.53125 2.359375 -5.109375 2.734375 -5.609375 C 3.125 -6.09375 3.890625 -6.46875 4.84375 -6.46875 C 5.90625 -6.46875 6.859375 -5.71875 7.078125 -4.453125 C 7.109375 -4.265625 7.109375 -4.234375 7.34375 -4.234375 C 7.609375 -4.234375 7.609375 -4.265625 7.609375 -4.515625 L 7.609375 -6.65625 C 7.609375 -6.84375 7.609375 -6.9375 7.4375 -6.9375 C 7.34375 -6.9375 7.328125 -6.921875 7.25 -6.84375 L 6.59375 -6.265625 C 5.859375 -6.84375 5.140625 -6.9375 4.625 -6.9375 C 2.1875 -6.9375 0.640625 -5.46875 0.640625 -3.40625 C 0.640625 -1.4375 2.078125 0.109375 4.640625 0.109375 C 4.96875 0.109375 6 0.09375 6.5 -0.53125 Z M 6.5 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.765625 2.234375 C 3.484375 1.96875 2.84375 1.359375 2.421875 0.09375 C 2.15625 -0.703125 2.046875 -1.609375 2.046875 -2.484375 C 2.046875 -4.453125 2.546875 -6.015625 3.640625 -7.109375 C 3.796875 -7.265625 3.796875 -7.28125 3.796875 -7.328125 C 3.796875 -7.4375 3.703125 -7.46875 3.625 -7.46875 C 3.453125 -7.46875 3.03125 -7.09375 2.859375 -6.921875 C 1.296875 -5.390625 1.078125 -3.546875 1.078125 -2.5 C 1.078125 -1.25 1.40625 -0.15625 1.875 0.671875 C 2.53125 1.8125 3.4375 2.484375 3.625 2.484375 C 3.703125 2.484375 3.796875 2.453125 3.796875 2.34375 C 3.796875 2.296875 3.765625 2.25 3.765625 2.234375 Z M 3.765625 2.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.1875 -3.28125 C 2.1875 -3.46875 2.203125 -3.46875 2.34375 -3.609375 C 2.734375 -4.015625 3.25 -4.078125 3.46875 -4.078125 C 4.140625 -4.078125 4.703125 -3.46875 4.703125 -2.21875 C 4.703125 -0.8125 4 -0.296875 3.359375 -0.296875 C 3.21875 -0.296875 2.75 -0.296875 2.296875 -0.84375 C 2.1875 -0.96875 2.1875 -0.96875 2.1875 -1.171875 Z M 2.1875 -0.390625 C 2.625 -0.046875 3.0625 0.0625 3.46875 0.0625 C 4.953125 0.0625 5.96875 -0.84375 5.96875 -2.21875 C 5.96875 -3.546875 5.0625 -4.484375 3.640625 -4.484375 C 2.890625 -4.484375 2.359375 -4.171875 2.125 -3.984375 L 2.125 -4.484375 L 0.375 -4.40625 L 0.375 -3.9375 C 0.984375 -3.9375 1.0625 -3.9375 1.0625 -3.546875 L 1.0625 1.46875 L 0.375 1.46875 L 0.375 1.9375 C 0.640625 1.921875 1.25 1.90625 1.625 1.90625 C 2.015625 1.90625 2.59375 1.921875 2.875 1.9375 L 2.875 1.46875 L 2.1875 1.46875 Z M 2.1875 -0.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.140625 -0.46875 L 0.453125 -0.46875 L 0.453125 0 C 0.734375 -0.015625 1.328125 -0.03125 1.703125 -0.03125 C 2.09375 -0.03125 2.671875 -0.015625 2.953125 0 L 2.953125 -0.46875 L 2.265625 -0.46875 L 2.265625 -2.546875 C 2.265625 -3.640625 3.125 -4.125 3.75 -4.125 C 4.09375 -4.125 4.296875 -3.90625 4.296875 -3.15625 L 4.296875 -0.46875 L 3.609375 -0.46875 L 3.609375 0 C 3.890625 -0.015625 4.484375 -0.03125 4.859375 -0.03125 C 5.25 -0.03125 5.84375 -0.015625 6.125 0 L 6.125 -0.46875 L 5.4375 -0.46875 L 5.4375 -3.046875 C 5.4375 -4.09375 4.890625 -4.484375 3.90625 -4.484375 C 2.953125 -4.484375 2.4375 -3.90625 2.203125 -3.5 L 2.203125 -6.90625 L 0.453125 -6.828125 L 0.453125 -6.359375 C 1.0625 -6.359375 1.140625 -6.359375 1.140625 -5.96875 Z M 1.140625 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 5.03125 -3.75 C 5.109375 -3.875 5.140625 -3.953125 5.765625 -3.953125 L 5.765625 -4.421875 C 5.53125 -4.40625 5.234375 -4.390625 4.984375 -4.390625 C 4.734375 -4.390625 4.296875 -4.40625 4.078125 -4.421875 L 4.078125 -3.953125 C 4.09375 -3.953125 4.546875 -3.953125 4.546875 -3.828125 C 4.546875 -3.828125 4.515625 -3.71875 4.5 -3.71875 L 3.359375 -1.265625 L 2.09375 -3.953125 L 2.625 -3.953125 L 2.625 -4.421875 C 2.296875 -4.40625 1.40625 -4.390625 1.390625 -4.390625 C 1.109375 -4.390625 0.671875 -4.40625 0.265625 -4.421875 L 0.265625 -3.953125 L 0.890625 -3.953125 L 2.75 0 L 2.53125 0.484375 C 2.3125 0.953125 1.984375 1.625 1.28125 1.625 C 1.140625 1.625 1.125 1.625 1.046875 1.59375 C 1.140625 1.546875 1.359375 1.40625 1.359375 1.0625 C 1.359375 0.734375 1.125 0.5 0.78125 0.5 C 0.5 0.5 0.21875 0.6875 0.21875 1.078125 C 0.21875 1.578125 0.6875 1.984375 1.28125 1.984375 C 2.046875 1.984375 2.625 1.375 2.890625 0.8125 Z M 5.03125 -3.75 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.09375 -2.921875 C 1.734375 -3 1.078125 -3.109375 1.078125 -3.578125 C 1.078125 -4.1875 2.015625 -4.1875 2.203125 -4.1875 C 2.953125 -4.1875 3.328125 -3.90625 3.375 -3.359375 C 3.390625 -3.203125 3.390625 -3.15625 3.609375 -3.15625 C 3.84375 -3.15625 3.84375 -3.203125 3.84375 -3.4375 L 3.84375 -4.234375 C 3.84375 -4.421875 3.84375 -4.515625 3.65625 -4.515625 C 3.625 -4.515625 3.609375 -4.515625 3.21875 -4.3125 C 2.953125 -4.453125 2.609375 -4.515625 2.203125 -4.515625 C 1.90625 -4.515625 0.375 -4.515625 0.375 -3.203125 C 0.375 -2.8125 0.578125 -2.53125 0.78125 -2.375 C 1.171875 -2.015625 1.546875 -1.953125 2.3125 -1.828125 C 2.671875 -1.765625 3.421875 -1.625 3.421875 -1.046875 C 3.421875 -0.296875 2.515625 -0.296875 2.296875 -0.296875 C 1.234375 -0.296875 0.96875 -1.03125 0.859375 -1.453125 C 0.8125 -1.59375 0.75 -1.59375 0.609375 -1.59375 C 0.375 -1.59375 0.375 -1.53125 0.375 -1.296875 L 0.375 -0.21875 C 0.375 -0.03125 0.375 0.0625 0.5625 0.0625 C 0.625 0.0625 0.640625 0.0625 0.859375 -0.09375 C 0.859375 -0.09375 1.078125 -0.234375 1.109375 -0.265625 C 1.578125 0.0625 2.09375 0.0625 2.296875 0.0625 C 2.59375 0.0625 4.125 0.0625 4.125 -1.390625 C 4.125 -1.828125 3.9375 -2.171875 3.578125 -2.453125 C 3.1875 -2.734375 2.875 -2.796875 2.09375 -2.921875 Z M 2.09375 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.234375 -4.484375 L 0.5 -4.40625 L 0.5 -3.9375 C 1.078125 -3.9375 1.15625 -3.9375 1.15625 -3.546875 L 1.15625 -0.46875 L 0.46875 -0.46875 L 0.46875 0 C 0.78125 -0.015625 1.265625 -0.03125 1.6875 -0.03125 C 1.984375 -0.03125 2.484375 -0.015625 2.84375 0 L 2.84375 -0.46875 L 2.234375 -0.46875 Z M 2.328125 -6.140625 C 2.328125 -6.578125 1.96875 -6.921875 1.546875 -6.921875 C 1.125 -6.921875 0.78125 -6.5625 0.78125 -6.140625 C 0.78125 -5.71875 1.125 -5.359375 1.546875 -5.359375 C 1.96875 -5.359375 2.328125 -5.703125 2.328125 -6.140625 Z M 2.328125 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.578125 -4.046875 C 3.40625 -3.890625 3.390625 -3.6875 3.390625 -3.59375 C 3.390625 -3.15625 3.734375 -2.96875 4 -2.96875 C 4.3125 -2.96875 4.625 -3.171875 4.625 -3.59375 C 4.625 -4.453125 3.46875 -4.515625 2.890625 -4.515625 C 1.109375 -4.515625 0.375 -3.359375 0.375 -2.203125 C 0.375 -0.890625 1.3125 0.0625 2.84375 0.0625 C 4.453125 0.0625 4.75 -1.09375 4.75 -1.171875 C 4.75 -1.296875 4.625 -1.296875 4.515625 -1.296875 C 4.34375 -1.296875 4.328125 -1.28125 4.28125 -1.15625 C 4.015625 -0.53125 3.546875 -0.34375 3.03125 -0.34375 C 1.65625 -0.34375 1.65625 -1.796875 1.65625 -2.265625 C 1.65625 -2.8125 1.65625 -4.109375 2.9375 -4.109375 C 3.28125 -4.109375 3.453125 -4.078125 3.578125 -4.046875 Z M 3.578125 -4.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.359375 -2.484375 C 3.359375 -3.734375 3.03125 -4.828125 2.5625 -5.65625 C 1.90625 -6.796875 1 -7.46875 0.8125 -7.46875 C 0.734375 -7.46875 0.640625 -7.4375 0.640625 -7.328125 C 0.640625 -7.28125 0.640625 -7.25 0.8125 -7.09375 C 2.0625 -5.828125 2.40625 -4.0625 2.40625 -2.5 C 2.40625 -0.53125 1.890625 1.03125 0.796875 2.125 C 0.640625 2.28125 0.640625 2.296875 0.640625 2.34375 C 0.640625 2.453125 0.734375 2.484375 0.8125 2.484375 C 0.984375 2.484375 1.40625 2.109375 1.578125 1.9375 C 3.140625 0.390625 3.359375 -1.4375 3.359375 -2.484375 Z M 3.359375 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.46875 -6.359375 L 1.46875 -0.46875 L 0.390625 -0.46875 L 0.390625 0 L 4.671875 0 C 6.640625 0 8.125 -1.21875 8.125 -3.359375 C 8.125 -5.546875 6.640625 -6.828125 4.671875 -6.828125 L 0.390625 -6.828125 L 0.390625 -6.359375 Z M 2.8125 -0.46875 L 2.8125 -6.359375 L 4.265625 -6.359375 C 4.921875 -6.359375 5.75 -6.171875 6.234375 -5.46875 C 6.59375 -4.96875 6.671875 -4.296875 6.671875 -3.359375 C 6.671875 -2.28125 6.546875 -1.75 6.234375 -1.296875 C 5.75 -0.625 4.875 -0.46875 4.265625 -0.46875 Z M 2.8125 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 4.59375 -2.171875 C 4.8125 -2.171875 4.921875 -2.171875 4.921875 -2.4375 C 4.921875 -2.75 4.859375 -3.46875 4.359375 -3.96875 C 3.984375 -4.328125 3.46875 -4.515625 2.78125 -4.515625 C 1.1875 -4.515625 0.3125 -3.484375 0.3125 -2.234375 C 0.3125 -0.90625 1.3125 0.0625 2.921875 0.0625 C 4.484375 0.0625 4.921875 -1 4.921875 -1.171875 C 4.921875 -1.34375 4.734375 -1.34375 4.671875 -1.34375 C 4.515625 -1.34375 4.484375 -1.296875 4.421875 -1.140625 C 4.21875 -0.65625 3.65625 -0.34375 3 -0.34375 C 1.609375 -0.34375 1.59375 -1.65625 1.59375 -2.171875 Z M 1.59375 -2.5 C 1.609375 -2.890625 1.625 -3.296875 1.828125 -3.640625 C 2.09375 -4.03125 2.484375 -4.15625 2.78125 -4.15625 C 3.9375 -4.15625 3.96875 -2.84375 3.96875 -2.5 Z M 1.59375 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.03125 -3.953125 L 1.03125 -1.21875 C 1.03125 -0.15625 1.890625 0.0625 2.59375 0.0625 C 3.359375 0.0625 3.796875 -0.5 3.796875 -1.234375 L 3.796875 -1.765625 L 3.328125 -1.765625 L 3.328125 -1.25 C 3.328125 -0.578125 3.015625 -0.34375 2.734375 -0.34375 C 2.15625 -0.34375 2.15625 -0.96875 2.15625 -1.203125 L 2.15625 -3.953125 L 3.609375 -3.953125 L 3.609375 -4.421875 L 2.15625 -4.421875 L 2.15625 -6.3125 L 1.6875 -6.3125 C 1.6875 -5.328125 1.1875 -4.34375 0.203125 -4.3125 L 0.203125 -3.953125 Z M 1.03125 -3.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 5.390625 -2.171875 C 5.390625 -3.5 4.484375 -4.515625 2.859375 -4.515625 C 1.21875 -4.515625 0.3125 -3.5 0.3125 -2.171875 C 0.3125 -0.9375 1.1875 0.0625 2.859375 0.0625 C 4.53125 0.0625 5.390625 -0.953125 5.390625 -2.171875 Z M 2.859375 -0.34375 C 1.59375 -0.34375 1.59375 -1.40625 1.59375 -2.28125 C 1.59375 -2.734375 1.59375 -3.234375 1.765625 -3.578125 C 1.953125 -3.9375 2.375 -4.15625 2.859375 -4.15625 C 3.28125 -4.15625 3.6875 -3.984375 3.90625 -3.640625 C 4.125 -3.296875 4.125 -2.75 4.125 -2.28125 C 4.125 -1.40625 4.125 -0.34375 2.859375 -0.34375 Z M 2.859375 -0.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 2.015625 -3.359375 L 2.015625 -4.484375 L 0.375 -4.40625 L 0.375 -3.9375 C 0.984375 -3.9375 1.0625 -3.9375 1.0625 -3.546875 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 C 0.71875 -0.015625 1.171875 -0.03125 1.625 -0.03125 C 2 -0.03125 2.640625 -0.03125 3 0 L 3 -0.46875 L 2.125 -0.46875 L 2.125 -2.203125 C 2.125 -2.90625 2.375 -4.125 3.375 -4.125 C 3.359375 -4.109375 3.1875 -3.953125 3.1875 -3.65625 C 3.1875 -3.25 3.5 -3.0625 3.796875 -3.0625 C 4.078125 -3.0625 4.40625 -3.265625 4.40625 -3.65625 C 4.40625 -4.1875 3.859375 -4.484375 3.34375 -4.484375 C 2.640625 -4.484375 2.25 -3.984375 2.015625 -3.359375 Z M 2.015625 -3.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4 -4.125 L 2.5625 -4.421875 C 2.15625 -4.515625 1.609375 -4.859375 1.609375 -5.46875 C 1.609375 -5.890625 1.875 -6.515625 2.875 -6.515625 C 3.671875 -6.515625 4.671875 -6.171875 4.90625 -4.8125 C 4.953125 -4.578125 4.953125 -4.5625 5.15625 -4.5625 C 5.390625 -4.5625 5.390625 -4.609375 5.390625 -4.84375 L 5.390625 -6.65625 C 5.390625 -6.84375 5.390625 -6.9375 5.21875 -6.9375 C 5.140625 -6.9375 5.125 -6.921875 5.015625 -6.828125 L 4.5625 -6.390625 C 3.984375 -6.84375 3.34375 -6.9375 2.859375 -6.9375 C 1.359375 -6.9375 0.640625 -5.984375 0.640625 -4.9375 C 0.640625 -4.296875 0.96875 -3.828125 1.171875 -3.609375 C 1.65625 -3.125 2 -3.0625 3.078125 -2.8125 C 3.96875 -2.625 4.125 -2.59375 4.34375 -2.390625 C 4.5 -2.234375 4.75 -1.984375 4.75 -1.515625 C 4.75 -1.046875 4.484375 -0.359375 3.453125 -0.359375 C 2.703125 -0.359375 1.1875 -0.5625 1.109375 -2.046875 C 1.09375 -2.21875 1.09375 -2.265625 0.875 -2.265625 C 0.640625 -2.265625 0.640625 -2.203125 0.640625 -1.984375 L 0.640625 -0.171875 C 0.640625 0.015625 0.640625 0.109375 0.8125 0.109375 C 0.90625 0.109375 0.921875 0.09375 1 0.015625 L 1.46875 -0.4375 C 2.125 0.046875 3.046875 0.109375 3.453125 0.109375 C 5.09375 0.109375 5.71875 -1.015625 5.71875 -2.015625 C 5.71875 -3.125 4.90625 -3.9375 4 -4.125 Z M 4 -4.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 1.140625 -3.546875 L 1.140625 -0.46875 L 0.453125 -0.46875 L 0.453125 0 C 0.734375 -0.015625 1.328125 -0.03125 1.703125 -0.03125 C 2.09375 -0.03125 2.671875 -0.015625 2.953125 0 L 2.953125 -0.46875 L 2.265625 -0.46875 L 2.265625 -2.546875 C 2.265625 -3.640625 3.140625 -4.125 3.75 -4.125 C 4.09375 -4.125 4.3125 -3.921875 4.3125 -3.15625 L 4.3125 -0.46875 L 3.625 -0.46875 L 3.625 0 C 3.90625 -0.015625 4.5 -0.03125 4.875 -0.03125 C 5.265625 -0.03125 5.859375 -0.015625 6.125 0 L 6.125 -0.46875 L 5.4375 -0.46875 L 5.4375 -2.546875 C 5.4375 -3.640625 6.3125 -4.125 6.921875 -4.125 C 7.265625 -4.125 7.484375 -3.921875 7.484375 -3.15625 L 7.484375 -0.46875 L 6.796875 -0.46875 L 6.796875 0 C 7.078125 -0.015625 7.671875 -0.03125 8.046875 -0.03125 C 8.4375 -0.03125 9.03125 -0.015625 9.3125 0 L 9.3125 -0.46875 L 8.625 -0.46875 L 8.625 -3.046875 C 8.625 -4.078125 8.109375 -4.484375 7.09375 -4.484375 C 6.1875 -4.484375 5.65625 -3.984375 5.40625 -3.515625 C 5.203125 -4.453125 4.296875 -4.484375 3.90625 -4.484375 C 3.046875 -4.484375 2.484375 -4.03125 2.15625 -3.40625 L 2.15625 -4.484375 L 0.453125 -4.40625 L 0.453125 -3.9375 C 1.0625 -3.9375 1.140625 -3.9375 1.140625 -3.546875 Z M 1.140625 -3.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 4.359375 -0.71875 L 4.359375 0.0625 L 6.125 0 L 6.125 -0.46875 C 5.5 -0.46875 5.4375 -0.46875 5.4375 -0.859375 L 5.4375 -4.484375 L 3.609375 -4.40625 L 3.609375 -3.9375 C 4.234375 -3.9375 4.296875 -3.9375 4.296875 -3.546875 L 4.296875 -1.640625 C 4.296875 -0.828125 3.796875 -0.296875 3.0625 -0.296875 C 2.296875 -0.296875 2.265625 -0.546875 2.265625 -1.078125 L 2.265625 -4.484375 L 0.453125 -4.40625 L 0.453125 -3.9375 C 1.0625 -3.9375 1.140625 -3.9375 1.140625 -3.546875 L 1.140625 -1.21875 C 1.140625 -0.15625 1.9375 0.0625 2.921875 0.0625 C 3.1875 0.0625 3.90625 0.0625 4.359375 -0.71875 Z M 4.359375 -0.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.234375 -6.90625 L 0.46875 -6.828125 L 0.46875 -6.359375 C 1.078125 -6.359375 1.15625 -6.359375 1.15625 -5.96875 L 1.15625 -0.46875 L 0.46875 -0.46875 L 0.46875 0 C 0.78125 -0.015625 1.265625 -0.03125 1.6875 -0.03125 C 2.125 -0.03125 2.578125 -0.015625 2.921875 0 L 2.921875 -0.46875 L 2.234375 -0.46875 Z M 2.234375 -6.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 3.71875 -0.765625 C 3.71875 -0.453125 3.71875 0 4.75 0 L 5.234375 0 C 5.4375 0 5.546875 0 5.546875 -0.234375 C 5.546875 -0.46875 5.421875 -0.46875 5.296875 -0.46875 C 4.6875 -0.484375 4.6875 -0.609375 4.6875 -0.84375 L 4.6875 -2.96875 C 4.6875 -3.859375 3.984375 -4.515625 2.5 -4.515625 C 1.9375 -4.515625 0.71875 -4.46875 0.71875 -3.59375 C 0.71875 -3.15625 1.0625 -2.96875 1.328125 -2.96875 C 1.640625 -2.96875 1.953125 -3.171875 1.953125 -3.59375 C 1.953125 -3.890625 1.765625 -4.0625 1.734375 -4.078125 C 2.015625 -4.140625 2.34375 -4.15625 2.453125 -4.15625 C 3.203125 -4.15625 3.546875 -3.734375 3.546875 -2.96875 L 3.546875 -2.640625 C 2.84375 -2.609375 0.3125 -2.515625 0.3125 -1.078125 C 0.3125 -0.125 1.546875 0.0625 2.234375 0.0625 C 3.03125 0.0625 3.5 -0.34375 3.71875 -0.765625 Z M 3.546875 -2.328125 L 3.546875 -1.390625 C 3.546875 -0.421875 2.640625 -0.296875 2.390625 -0.296875 C 1.875 -0.296875 1.484375 -0.640625 1.484375 -1.078125 C 1.484375 -2.15625 3.0625 -2.296875 3.546875 -2.328125 Z M 3.546875 -2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 1.140625 -3.546875 L 1.140625 -0.46875 L 0.453125 -0.46875 L 0.453125 0 C 0.734375 -0.015625 1.328125 -0.03125 1.703125 -0.03125 C 2.09375 -0.03125 2.671875 -0.015625 2.953125 0 L 2.953125 -0.46875 L 2.265625 -0.46875 L 2.265625 -2.546875 C 2.265625 -3.640625 3.125 -4.125 3.75 -4.125 C 4.09375 -4.125 4.296875 -3.90625 4.296875 -3.15625 L 4.296875 -0.46875 L 3.609375 -0.46875 L 3.609375 0 C 3.890625 -0.015625 4.484375 -0.03125 4.859375 -0.03125 C 5.25 -0.03125 5.84375 -0.015625 6.125 0 L 6.125 -0.46875 L 5.4375 -0.46875 L 5.4375 -3.046875 C 5.4375 -4.09375 4.890625 -4.484375 3.90625 -4.484375 C 2.953125 -4.484375 2.421875 -3.90625 2.15625 -3.40625 L 2.15625 -4.484375 L 0.453125 -4.40625 L 0.453125 -3.9375 C 1.0625 -3.9375 1.140625 -3.9375 1.140625 -3.546875 Z M 1.140625 -3.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 2.53125 -1.890625 C 1.65625 -1.890625 1.65625 -2.5625 1.65625 -3 C 1.65625 -3.453125 1.65625 -4.125 2.53125 -4.125 C 3.40625 -4.125 3.40625 -3.453125 3.40625 -3 C 3.40625 -2.5625 3.40625 -1.890625 2.53125 -1.890625 Z M 1.328125 -1.796875 C 1.78125 -1.546875 2.296875 -1.53125 2.53125 -1.53125 C 3.96875 -1.53125 4.515625 -2.3125 4.515625 -3 C 4.515625 -3.46875 4.265625 -3.796875 4.125 -3.96875 C 4.421875 -4.125 4.625 -4.140625 4.734375 -4.15625 C 4.71875 -4.09375 4.703125 -4.015625 4.703125 -3.953125 C 4.703125 -3.703125 4.859375 -3.515625 5.125 -3.515625 C 5.390625 -3.515625 5.546875 -3.71875 5.546875 -3.953125 C 5.546875 -4.1875 5.390625 -4.53125 4.921875 -4.53125 C 4.78125 -4.53125 4.3125 -4.5 3.875 -4.15625 C 3.6875 -4.265625 3.28125 -4.484375 2.53125 -4.484375 C 1.109375 -4.484375 0.5625 -3.703125 0.5625 -3 C 0.5625 -2.59375 0.75 -2.1875 1.078125 -1.953125 C 0.796875 -1.609375 0.734375 -1.28125 0.734375 -1.078125 C 0.734375 -0.921875 0.78125 -0.4375 1.171875 -0.125 C 1.046875 -0.09375 0.3125 0.125 0.3125 0.75 C 0.3125 1.25 0.859375 2 2.859375 2 C 4.625 2 5.390625 1.40625 5.390625 0.71875 C 5.390625 0.421875 5.3125 -0.203125 4.640625 -0.546875 C 4.09375 -0.828125 3.5 -0.828125 2.53125 -0.828125 C 2.28125 -0.828125 1.828125 -0.828125 1.765625 -0.84375 C 1.328125 -0.90625 1.21875 -1.28125 1.21875 -1.46875 C 1.21875 -1.5625 1.265625 -1.71875 1.328125 -1.796875 Z M 1.9375 0.125 L 3.109375 0.125 C 3.40625 0.125 4.53125 0.125 4.53125 0.75 C 4.53125 1.109375 4.15625 1.640625 2.859375 1.640625 C 1.65625 1.640625 1.171875 1.1875 1.171875 0.734375 C 1.171875 0.125 1.796875 0.125 1.9375 0.125 Z M 1.9375 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 4.46875 -3.984375 C 4.546875 -4.09375 4.5625 -4.125 4.5625 -4.203125 C 4.5625 -4.421875 4.421875 -4.421875 4.25 -4.421875 L 0.59375 -4.421875 L 0.484375 -2.671875 L 0.953125 -2.671875 C 1 -3.703125 1.3125 -4.0625 2.34375 -4.0625 L 3.1875 -4.0625 L 0.40625 -0.4375 C 0.3125 -0.328125 0.3125 -0.3125 0.3125 -0.21875 C 0.3125 0 0.453125 0 0.640625 0 L 4.421875 0 L 4.59375 -2.015625 L 4.125 -2.015625 C 4.046875 -1 3.875 -0.390625 2.5625 -0.390625 L 1.71875 -0.390625 Z M 4.46875 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 2.8125 -3.59375 L 2.8125 -6.359375 L 3.984375 -6.359375 C 5.59375 -6.359375 5.609375 -5.578125 5.609375 -4.96875 C 5.609375 -4.421875 5.609375 -3.59375 3.96875 -3.59375 Z M 5.46875 -3.390625 C 6.625 -3.6875 7.140625 -4.328125 7.140625 -4.984375 C 7.140625 -5.984375 6.046875 -6.828125 4.171875 -6.828125 L 0.390625 -6.828125 L 0.390625 -6.359375 L 1.46875 -6.359375 L 1.46875 -0.46875 L 0.390625 -0.46875 L 0.390625 0 C 0.75 -0.03125 1.71875 -0.03125 2.140625 -0.03125 C 2.5625 -0.03125 3.53125 -0.03125 3.890625 0 L 3.890625 -0.46875 L 2.8125 -0.46875 L 2.8125 -3.234375 L 3.984375 -3.234375 C 4.125 -3.234375 4.5625 -3.234375 4.859375 -2.890625 C 5.1875 -2.546875 5.1875 -2.359375 5.1875 -1.625 C 5.1875 -0.96875 5.1875 -0.484375 5.875 -0.15625 C 6.3125 0.0625 6.9375 0.109375 7.34375 0.109375 C 8.40625 0.109375 8.546875 -0.78125 8.546875 -0.953125 C 8.546875 -1.171875 8.40625 -1.171875 8.296875 -1.171875 C 8.09375 -1.171875 8.078125 -1.0625 8.078125 -0.9375 C 8.015625 -0.46875 7.734375 -0.25 7.4375 -0.25 C 6.84375 -0.25 6.75 -0.953125 6.703125 -1.375 C 6.671875 -1.484375 6.59375 -2.171875 6.59375 -2.21875 C 6.453125 -2.921875 5.90625 -3.21875 5.46875 -3.390625 Z M 5.46875 -3.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 4.71875 -6.6875 C 4.609375 -6.953125 4.484375 -6.953125 4.3125 -6.953125 C 4.046875 -6.953125 4 -6.875 3.9375 -6.6875 L 1.46875 -0.703125 C 1.40625 -0.546875 1.375 -0.46875 0.609375 -0.46875 L 0.40625 -0.46875 L 0.40625 0 C 0.78125 -0.015625 1.265625 -0.03125 1.578125 -0.03125 C 1.953125 -0.03125 2.515625 -0.03125 2.890625 0 L 2.890625 -0.46875 C 2.859375 -0.46875 2 -0.46875 2 -0.59375 C 2 -0.609375 2.03125 -0.703125 2.046875 -0.71875 L 2.53125 -1.921875 L 5.203125 -1.921875 L 5.796875 -0.46875 L 4.859375 -0.46875 L 4.859375 0 C 5.234375 -0.03125 6.1875 -0.03125 6.609375 -0.03125 C 7 -0.03125 7.875 -0.03125 8.234375 0 L 8.234375 -0.46875 L 7.265625 -0.46875 Z M 3.875 -5.15625 L 5 -2.390625 L 2.734375 -2.390625 Z M 3.875 -5.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 2.875 -3 L 4.640625 -3 C 6.015625 -3 7.171875 -3.71875 7.171875 -4.890625 C 7.171875 -5.984375 6.1875 -6.828125 4.53125 -6.828125 L 0.390625 -6.828125 L 0.390625 -6.359375 L 1.46875 -6.359375 L 1.46875 -0.46875 L 0.390625 -0.46875 L 0.390625 0 C 0.765625 -0.03125 1.734375 -0.03125 2.171875 -0.03125 C 2.59375 -0.03125 3.578125 -0.03125 3.953125 0 L 3.953125 -0.46875 L 2.875 -0.46875 Z M 4.15625 -3.40625 L 2.8125 -3.40625 L 2.8125 -6.359375 L 4.15625 -6.359375 C 5.65625 -6.359375 5.65625 -5.609375 5.65625 -4.890625 C 5.65625 -4.1875 5.65625 -3.40625 4.15625 -3.40625 Z M 4.15625 -3.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 2.125 -3.984375 L 2.125 -6.90625 L 0.375 -6.828125 L 0.375 -6.359375 C 0.984375 -6.359375 1.0625 -6.359375 1.0625 -5.96875 L 1.0625 0 L 1.515625 0 L 2.015625 -0.5625 C 2.09375 -0.484375 2.578125 0.0625 3.46875 0.0625 C 4.953125 0.0625 5.96875 -0.84375 5.96875 -2.21875 C 5.96875 -3.546875 5.03125 -4.484375 3.59375 -4.484375 C 2.859375 -4.484375 2.375 -4.1875 2.125 -3.984375 Z M 2.1875 -0.984375 L 2.1875 -3.484375 C 2.453125 -3.828125 2.9375 -4.125 3.484375 -4.125 C 4.703125 -4.125 4.703125 -2.921875 4.703125 -2.21875 C 4.703125 -1.75 4.703125 -1.203125 4.4375 -0.8125 C 4.15625 -0.40625 3.6875 -0.296875 3.375 -0.296875 C 2.671875 -0.296875 2.296875 -0.84375 2.1875 -0.984375 Z M 2.1875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 3.171875 -1.734375 L 3.171875 -2.703125 L 0.125 -2.703125 L 0.125 -1.734375 Z M 3.171875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 2.125 -2.359375 L 2.125 -6.90625 L 0.375 -6.828125 L 0.375 -6.359375 C 0.984375 -6.359375 1.0625 -6.359375 1.0625 -5.96875 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.5625 -0.03125 C 1.9375 -0.03125 2.40625 -0.015625 2.765625 0 L 2.765625 -0.46875 L 2.078125 -0.46875 L 2.078125 -1.734375 C 2.375 -1.953125 2.453125 -2.015625 2.640625 -2.15625 L 3.65625 -0.90625 C 3.75 -0.78125 3.90625 -0.59375 3.90625 -0.5625 C 3.90625 -0.46875 3.71875 -0.46875 3.59375 -0.46875 L 3.59375 0 C 3.890625 -0.015625 4.75 -0.03125 4.8125 -0.03125 C 5.171875 -0.03125 5.5 -0.015625 5.84375 0 L 5.84375 -0.46875 L 5.671875 -0.46875 C 5.25 -0.46875 5.21875 -0.5 5.09375 -0.671875 L 3.40625 -2.765625 L 4.703125 -3.765625 C 4.84375 -3.875 4.921875 -3.953125 5.59375 -3.953125 L 5.59375 -4.421875 C 5.328125 -4.390625 5.078125 -4.390625 4.8125 -4.390625 C 4.546875 -4.390625 3.90625 -4.40625 3.671875 -4.421875 L 3.671875 -3.953125 C 3.90625 -3.953125 3.9375 -3.921875 4.015625 -3.84375 Z M 2.125 -2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 7.625 -6.65625 C 7.625 -6.84375 7.625 -6.9375 7.4375 -6.9375 C 7.359375 -6.9375 7.328125 -6.921875 7.25 -6.84375 L 6.59375 -6.265625 C 5.984375 -6.765625 5.3125 -6.9375 4.640625 -6.9375 C 2.15625 -6.9375 0.640625 -5.453125 0.640625 -3.40625 C 0.640625 -1.375 2.15625 0.109375 4.640625 0.109375 C 6.5 0.109375 7.625 -1.109375 7.625 -2.265625 C 7.625 -2.453125 7.546875 -2.46875 7.390625 -2.46875 C 7.25 -2.46875 7.171875 -2.46875 7.15625 -2.296875 C 7.09375 -0.96875 5.875 -0.359375 4.875 -0.359375 C 4.09375 -0.359375 3.265625 -0.59375 2.75 -1.203125 C 2.28125 -1.765625 2.15625 -2.515625 2.15625 -3.40625 C 2.15625 -3.96875 2.1875 -5.046875 2.8125 -5.703125 C 3.46875 -6.359375 4.328125 -6.46875 4.84375 -6.46875 C 5.921875 -6.46875 6.875 -5.71875 7.09375 -4.453125 C 7.109375 -4.265625 7.125 -4.234375 7.359375 -4.234375 C 7.609375 -4.234375 7.625 -4.265625 7.625 -4.515625 Z M 7.625 -6.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 3.921875 -3.953125 C 4.15625 -3.953125 4.21875 -3.953125 4.21875 -3.609375 L 4.21875 -0.46875 L 3.53125 -0.46875 L 3.53125 0 C 3.859375 -0.015625 4.328125 -0.03125 4.75 -0.03125 C 5.1875 -0.03125 5.640625 -0.015625 5.984375 0 L 5.984375 -0.46875 L 5.296875 -0.46875 L 5.296875 -4.515625 L 3.546875 -4.453125 C 3.53125 -4.453125 3.53125 -4.4375 3.53125 -4.421875 L 2.0625 -4.421875 L 2.0625 -5.390625 C 2.0625 -6.234375 2.75 -6.609375 3.65625 -6.609375 C 3.953125 -6.609375 4.15625 -6.5625 4.390625 -6.421875 C 4.21875 -6.375 3.953125 -6.203125 3.953125 -5.796875 C 3.953125 -5.421875 4.234375 -5.15625 4.59375 -5.15625 C 4.96875 -5.15625 5.25 -5.40625 5.25 -5.8125 C 5.25 -6.328125 4.8125 -6.96875 3.71875 -6.96875 C 2.484375 -6.96875 1.0625 -6.578125 1.0625 -5.421875 L 1.0625 -4.421875 L 0.3125 -4.421875 L 0.3125 -3.953125 L 1.0625 -3.953125 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 C 0.6875 -0.015625 1.171875 -0.03125 1.59375 -0.03125 C 2.015625 -0.03125 2.484375 -0.015625 2.8125 0 L 2.8125 -0.46875 L 2.125 -0.46875 L 2.125 -3.953125 Z M 3.921875 -3.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 4.15625 -0.421875 L 4.15625 0.0625 L 5.984375 0 L 5.984375 -0.46875 C 5.359375 -0.46875 5.296875 -0.46875 5.296875 -0.859375 L 5.296875 -6.90625 L 3.53125 -6.828125 L 3.53125 -6.359375 C 4.15625 -6.359375 4.21875 -6.359375 4.21875 -5.96875 L 4.21875 -4.03125 C 3.71875 -4.421875 3.203125 -4.484375 2.875 -4.484375 C 1.421875 -4.484375 0.375 -3.609375 0.375 -2.203125 C 0.375 -0.890625 1.296875 0.0625 2.765625 0.0625 C 3.375 0.0625 3.859375 -0.171875 4.15625 -0.421875 Z M 4.15625 -3.515625 L 4.15625 -1.03125 C 4.03125 -0.84375 3.625 -0.296875 2.859375 -0.296875 C 1.65625 -0.296875 1.65625 -1.5 1.65625 -2.203125 C 1.65625 -2.671875 1.65625 -3.21875 1.90625 -3.609375 C 2.203125 -4.015625 2.671875 -4.125 2.96875 -4.125 C 3.546875 -4.125 3.9375 -3.796875 4.15625 -3.515625 Z M 4.15625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-33">
<path style="stroke:none;" d="M 7.328125 -6.71875 L 0.625 -6.71875 L 0.421875 -4.3125 L 0.890625 -4.3125 C 0.96875 -5.4375 1.078125 -6.25 2.515625 -6.25 L 3.28125 -6.25 L 3.28125 -0.46875 L 1.75 -0.46875 L 1.75 0 C 2.296875 -0.03125 3.390625 -0.03125 3.984375 -0.03125 C 4.5625 -0.03125 5.671875 -0.03125 6.203125 0 L 6.203125 -0.46875 L 4.6875 -0.46875 L 4.6875 -6.25 L 5.4375 -6.25 C 6.875 -6.25 6.96875 -5.453125 7.0625 -4.3125 L 7.53125 -4.3125 Z M 7.328125 -6.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-34">
<path style="stroke:none;" d="M 7.953125 -3.375 C 7.953125 -5.53125 6.515625 -6.9375 4.296875 -6.9375 C 2.015625 -6.9375 0.640625 -5.46875 0.640625 -3.375 C 0.640625 -1.3125 2.03125 0.109375 4.296875 0.109375 C 6.578125 0.109375 7.953125 -1.328125 7.953125 -3.375 Z M 4.296875 -0.3125 C 3.703125 -0.3125 2.96875 -0.59375 2.5625 -1.34375 C 2.234375 -1.953125 2.15625 -2.671875 2.15625 -3.515625 C 2.15625 -4.15625 2.1875 -5 2.625 -5.6875 C 3.03125 -6.296875 3.703125 -6.546875 4.296875 -6.546875 C 4.921875 -6.546875 5.609375 -6.265625 6.015625 -5.609375 C 6.390625 -4.96875 6.421875 -4.203125 6.421875 -3.515625 C 6.421875 -2.828125 6.390625 -1.9375 5.96875 -1.25 C 5.53125 -0.53125 4.828125 -0.3125 4.296875 -0.3125 Z M 4.296875 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-35">
<path style="stroke:none;" d="M 2.359375 -0.78125 C 2.359375 -1.203125 2.015625 -1.546875 1.578125 -1.546875 C 1.15625 -1.546875 0.8125 -1.203125 0.8125 -0.78125 C 0.8125 -0.34375 1.15625 0 1.578125 0 C 2.015625 0 2.359375 -0.34375 2.359375 -0.78125 Z M 2.359375 -0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 0.5625 -3.40625 C 0.5625 -1.34375 2.171875 0.21875 4.015625 0.21875 C 5.640625 0.21875 6.625 -1.171875 6.625 -2.3125 C 6.625 -2.421875 6.625 -2.484375 6.484375 -2.484375 C 6.375 -2.484375 6.375 -2.421875 6.375 -2.328125 C 6.296875 -0.90625 5.21875 -0.09375 4.140625 -0.09375 C 3.53125 -0.09375 1.578125 -0.421875 1.578125 -3.390625 C 1.578125 -6.375 3.515625 -6.703125 4.125 -6.703125 C 5.21875 -6.703125 6.09375 -5.796875 6.296875 -4.34375 C 6.3125 -4.203125 6.3125 -4.1875 6.453125 -4.1875 C 6.625 -4.1875 6.625 -4.203125 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.015625 6.515625 -7.015625 C 6.46875 -7.015625 6.421875 -7.015625 6.34375 -6.890625 L 5.859375 -6.15625 C 5.484375 -6.515625 4.96875 -7.015625 4.015625 -7.015625 C 2.15625 -7.015625 0.5625 -5.4375 0.5625 -3.40625 Z M 0.5625 -3.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.234375 2.484375 -4.234375 C 2.921875 -4.234375 3.34375 -4.015625 3.609375 -3.59375 C 3.859375 -3.171875 3.859375 -2.59375 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 Z M 2.484375 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.4375 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.484375 -4.1875 3.125 -4.1875 C 3.75 -4.1875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 C 3.4375 -0.015625 3.9375 -0.03125 4.203125 -0.03125 C 4.46875 -0.03125 4.984375 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.546875 -0.609375 L 4.546875 -2.515625 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.203125 3.765625 -4.40625 3.1875 -4.40625 C 2.46875 -4.40625 2 -3.96875 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.90625 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.140625 -3.984375 L 3.140625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.234375 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.03125 0.109375 3.296875 -0.59375 3.296875 -1.234375 L 3.296875 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.296875 0.0625 4.90625 -0.078125 4.90625 -0.890625 L 4.90625 -1.4375 L 4.65625 -1.4375 L 4.65625 -0.890625 C 4.65625 -0.3125 4.40625 -0.25 4.296875 -0.25 C 3.96875 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.90625 C 3.1875 -4.296875 2.6875 -4.453125 2.203125 -4.453125 C 1.390625 -4.453125 0.703125 -3.984375 0.703125 -3.328125 C 0.703125 -3.03125 0.90625 -2.859375 1.171875 -2.859375 C 1.4375 -2.859375 1.625 -3.0625 1.625 -3.328125 C 1.625 -3.4375 1.578125 -3.765625 1.109375 -3.78125 C 1.390625 -4.125 1.875 -4.234375 2.1875 -4.234375 C 2.671875 -4.234375 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.59375 C 2.734375 -2.5625 2.046875 -2.53125 1.40625 -2.234375 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.28125 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.765625 -0.03125 2.125 -0.015625 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.125 C 1.796875 -6.453125 1.546875 -6.65625 1.28125 -6.65625 C 0.96875 -6.65625 0.75 -6.390625 0.75 -6.125 C 0.75 -5.859375 0.96875 -5.609375 1.28125 -5.609375 C 1.546875 -5.609375 1.796875 -5.8125 1.796875 -6.125 Z M 1.796875 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 2.0625 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.28125 C 3.578125 -1.796875 3.28125 -2.09375 3.171875 -2.21875 C 2.84375 -2.53125 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.1875 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.03125 3.328125 -3.21875 L 3.328125 -4.21875 C 3.328125 -4.390625 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.03125 -4.34375 C 3 -4.296875 2.890625 -4.203125 2.859375 -4.1875 C 2.484375 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.359375 -2.0625 2.0625 -1.9375 Z M 2.0625 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.046875 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.046875 0.859375 -3.765625 C 0.859375 -3.46875 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.46875 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 6.078125 0 L 6.484375 -2.5625 L 6.234375 -2.5625 C 5.984375 -1.03125 5.765625 -0.3125 4.046875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.234375 -0.375 2.234375 -0.703125 L 2.234375 -3.359375 L 3.140625 -3.359375 C 4.09375 -3.359375 4.203125 -3.046875 4.203125 -2.203125 L 4.453125 -2.203125 L 4.453125 -4.84375 L 4.203125 -4.84375 C 4.203125 -3.984375 4.09375 -3.671875 3.140625 -3.671875 L 2.234375 -3.671875 L 2.234375 -6.0625 C 2.234375 -6.390625 2.265625 -6.453125 2.734375 -6.453125 L 4.015625 -6.453125 C 5.53125 -6.453125 5.796875 -5.90625 5.96875 -4.53125 L 6.203125 -4.53125 L 5.9375 -6.765625 L 0.328125 -6.765625 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.359375 -6.34375 1.359375 -5.984375 Z M 1.359375 -0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 5.90625 -0.625 C 6.03125 -0.40625 6.421875 -0.015625 6.546875 -0.015625 C 6.625 -0.015625 6.625 -0.09375 6.625 -0.234375 L 6.625 -1.96875 C 6.625 -2.359375 6.671875 -2.40625 7.3125 -2.40625 L 7.3125 -2.71875 C 6.953125 -2.703125 6.40625 -2.6875 6.09375 -2.6875 C 5.703125 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.8125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.546875 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.375 3.546875 -6.703125 4.140625 -6.703125 C 5.203125 -6.703125 6.109375 -5.8125 6.3125 -4.34375 C 6.328125 -4.203125 6.328125 -4.1875 6.46875 -4.1875 C 6.625 -4.1875 6.625 -4.203125 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.015625 6.515625 -7.015625 C 6.484375 -7.015625 6.4375 -7.015625 6.359375 -6.890625 L 5.859375 -6.15625 C 5.546875 -6.484375 5 -7.015625 4.015625 -7.015625 C 2.171875 -7.015625 0.5625 -5.4375 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.765625 0.21875 5.5625 -0.046875 5.90625 -0.625 Z M 5.90625 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.4375 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.484375 -4.1875 3.125 -4.1875 C 3.75 -4.1875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 C 3.4375 -0.015625 3.9375 -0.03125 4.203125 -0.03125 C 4.46875 -0.03125 4.984375 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.65625 -0.3125 4.546875 -0.3125 4.546875 -0.75 L 4.546875 -2.59375 C 4.546875 -3.625 5.25 -4.1875 5.890625 -4.1875 C 6.515625 -4.1875 6.625 -3.640625 6.625 -3.078125 L 6.625 -0.75 C 6.625 -0.3125 6.515625 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.703125 -0.03125 6.984375 -0.03125 C 7.234375 -0.03125 7.75 -0.015625 8.09375 0 L 8.09375 -0.3125 C 7.578125 -0.3125 7.328125 -0.3125 7.3125 -0.609375 L 7.3125 -2.515625 C 7.3125 -3.359375 7.3125 -3.671875 7 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.125 -4.40625 4.6875 -3.796875 4.515625 -3.421875 C 4.375 -4.296875 3.640625 -4.40625 3.1875 -4.40625 C 2.46875 -4.40625 2 -3.96875 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.90625 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -3.984375 2.015625 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.515625 Z M 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.515625 C 4.125 -3.5 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.125 -1 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.875 -1.171875 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.546875 -0.3125 4.46875 -0.375 4.46875 -0.859375 L 4.46875 -6.90625 L 3.03125 -6.796875 L 3.03125 -6.484375 C 3.734375 -6.484375 3.8125 -6.421875 3.8125 -5.9375 L 3.8125 -3.78125 C 3.515625 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.078125 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.96875 3.671875 -0.8125 C 3.375 -0.328125 2.921875 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.1875 -1.15625 1.171875 -1.71875 1.171875 -2.125 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.59375 -4.1875 C 2.953125 -4.1875 3.359375 -4.03125 3.671875 -3.578125 C 3.78125 -3.40625 3.78125 -3.390625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.875 0.921875 1.5625 -0.96875 1.5625 -2.484375 C 1.5625 -4.21875 1.9375 -5.953125 3.171875 -7.203125 C 3.296875 -7.3125 3.296875 -7.328125 3.296875 -7.359375 C 3.296875 -7.4375 3.25 -7.46875 3.1875 -7.46875 C 3.09375 -7.46875 2.203125 -6.78125 1.609375 -5.53125 C 1.109375 -4.421875 0.984375 -3.328125 0.984375 -2.484375 C 0.984375 -1.71875 1.09375 -0.5 1.640625 0.609375 C 2.234375 1.84375 3.09375 2.484375 3.1875 2.484375 C 3.25 2.484375 3.296875 2.453125 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 1.765625 -6.90625 L 0.328125 -6.796875 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.421875 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.65625 -0.015625 1.1875 -0.03125 1.4375 -0.03125 C 1.6875 -0.03125 2.171875 -0.015625 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 Z M 1.765625 -6.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.203125 2.515625 -4.203125 C 2.59375 -4.203125 3.21875 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.28125 -2.921875 3.5625 -2.921875 C 3.828125 -2.921875 4.015625 -3.09375 4.015625 -3.390625 C 4.015625 -4.078125 3.265625 -4.453125 2.5 -4.453125 C 1.25 -4.453125 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.125 -1.078125 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.90625 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.578125 -0.265625 2.9375 -0.140625 2.5625 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 3.28125 -3.984375 C 3.75 -3.984375 3.8125 -3.859375 3.8125 -3.4375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.03125 -0.3125 L 3.03125 0 C 3.359375 -0.015625 3.890625 -0.03125 4.140625 -0.03125 C 4.390625 -0.03125 4.875 -0.015625 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -4.40625 L 3.21875 -4.3125 C 3.0625 -4.3125 3.046875 -4.296875 3.03125 -4.296875 C 3.015625 -4.296875 3 -4.296875 2.859375 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.40625 2.53125 -6.796875 3.15625 -6.796875 C 3.453125 -6.796875 3.8125 -6.703125 4.015625 -6.46875 C 3.609375 -6.453125 3.546875 -6.171875 3.546875 -6.015625 C 3.546875 -5.6875 3.796875 -5.546875 3.984375 -5.546875 C 4.21875 -5.546875 4.453125 -5.71875 4.453125 -6.015625 C 4.453125 -6.59375 3.90625 -7.015625 3.171875 -7.015625 C 2.234375 -7.015625 1.0625 -6.515625 1.0625 -5.421875 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.609375 -0.015625 1.140625 -0.03125 1.390625 -0.03125 C 1.625 -0.03125 2.125 -0.015625 2.484375 0 L 2.484375 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 Z M 3.28125 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 2.203125 -1.71875 C 1.34375 -1.71875 1.34375 -2.703125 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.515625 1.5 -3.765625 C 1.578125 -3.890625 1.8125 -4.171875 2.203125 -4.171875 C 3.078125 -4.171875 3.078125 -3.171875 3.078125 -2.953125 C 3.078125 -2.671875 3.0625 -2.359375 2.921875 -2.109375 C 2.84375 -1.984375 2.609375 -1.71875 2.203125 -1.71875 Z M 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.015625 -1.484375 2.203125 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.296875 3.65625 -3.671875 3.40625 -3.90625 C 3.765625 -4.234375 4.125 -4.296875 4.3125 -4.296875 C 4.328125 -4.296875 4.375 -4.296875 4.40625 -4.28125 C 4.296875 -4.234375 4.25 -4.125 4.25 -4.015625 C 4.25 -3.84375 4.375 -3.71875 4.53125 -3.71875 C 4.640625 -3.71875 4.828125 -3.796875 4.828125 -4.015625 C 4.828125 -4.1875 4.703125 -4.515625 4.3125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.421875 -4.40625 2.203125 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.125 1.0625 -1.921875 C 0.9375 -1.765625 0.75 -1.4375 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.1875 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.546875 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 Z M 2.484375 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.484375 1.828125 Z M 2.484375 1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 3.890625 -0.78125 L 3.890625 0.109375 L 5.328125 0 L 5.328125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 C 3.78125 -3.984375 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.0625 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 Z M 3.890625 -0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 1.65625 -3.296875 L 1.65625 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.96875 -3.984375 1.0625 -3.90625 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.125 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.96875 -4.1875 3 -4.171875 C 2.96875 -4.15625 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.359375 3.1875 -3.359375 C 3.375 -3.359375 3.625 -3.46875 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.65625 -3.296875 Z M 1.65625 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 2.875 -2.484375 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.59375 C 1.625 -6.8125 0.765625 -7.46875 0.671875 -7.46875 C 0.609375 -7.46875 0.5625 -7.421875 0.5625 -7.359375 C 0.5625 -7.328125 0.5625 -7.3125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.5625 2.296875 -2.484375 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.484375 0.671875 2.484375 C 0.765625 2.484375 1.65625 1.8125 2.25 0.546875 C 2.75 -0.546875 2.875 -1.65625 2.875 -2.484375 Z M 2.875 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.96875 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.265625 4.53125 -4.265625 4.3125 -4.265625 C 4.078125 -4.265625 3.609375 -4.28125 3.4375 -4.296875 L 3.4375 -3.984375 C 3.8125 -3.96875 3.921875 -3.75 3.921875 -3.546875 C 3.921875 -3.46875 3.90625 -3.421875 3.859375 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.546875 C 1.671875 -3.6875 1.671875 -3.703125 1.671875 -3.71875 C 1.671875 -3.984375 2.0625 -3.984375 2.234375 -3.984375 L 2.234375 -4.296875 C 1.9375 -4.28125 1.390625 -4.265625 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.265625 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.609375 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.75 0.109375 2.796875 0.015625 2.84375 -0.078125 Z M 4.140625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 6.625 -6.734375 L 0.546875 -6.734375 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.09375 0.890625 -6.421875 2.40625 -6.421875 C 2.578125 -6.421875 2.84375 -6.421875 2.9375 -6.40625 C 3.140625 -6.375 3.140625 -6.265625 3.140625 -6.03125 L 3.140625 -0.78125 C 3.140625 -0.453125 3.140625 -0.3125 2.09375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.578125 -0.03125 C 4.046875 -0.03125 5.0625 -0.03125 5.46875 0 L 5.46875 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.03125 C 4.03125 -6.234375 4.03125 -6.375 4.203125 -6.40625 C 4.3125 -6.421875 4.59375 -6.421875 4.78125 -6.421875 C 6.28125 -6.421875 6.421875 -6.09375 6.5625 -4.5 L 6.8125 -4.5 Z M 6.625 -6.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.4375 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.484375 -4.1875 3.125 -4.1875 C 3.75 -4.1875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 C 3.4375 -0.015625 3.9375 -0.03125 4.203125 -0.03125 C 4.46875 -0.03125 4.984375 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.546875 -0.609375 L 4.546875 -2.515625 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.203125 3.765625 -4.40625 3.1875 -4.40625 C 2.359375 -4.40625 1.921875 -3.796875 1.75 -3.421875 L 1.75 -6.90625 L 0.3125 -6.796875 L 0.3125 -6.484375 C 1.015625 -6.484375 1.09375 -6.421875 1.09375 -5.9375 Z M 1.09375 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 2.703125 -4.453125 C 2.703125 -4.703125 2.53125 -4.96875 2.1875 -4.96875 C 1.984375 -4.96875 1.84375 -4.875 1.78125 -4.8125 C 1.765625 -4.796875 1.765625 -4.78125 1.75 -4.78125 C 1.734375 -4.78125 1.734375 -4.921875 1.734375 -4.96875 C 1.734375 -5.28125 1.796875 -6 2.421875 -6.625 C 2.546875 -6.734375 2.546875 -6.765625 2.546875 -6.78125 C 2.546875 -6.859375 2.5 -6.890625 2.453125 -6.890625 C 2.34375 -6.890625 1.515625 -6.140625 1.515625 -4.96875 C 1.515625 -4.375 1.75 -3.921875 2.1875 -3.921875 C 2.53125 -3.921875 2.703125 -4.1875 2.703125 -4.453125 Z M 4.640625 -4.453125 C 4.640625 -4.703125 4.46875 -4.96875 4.109375 -4.96875 C 3.90625 -4.96875 3.765625 -4.875 3.71875 -4.8125 C 3.703125 -4.796875 3.6875 -4.78125 3.6875 -4.78125 C 3.65625 -4.78125 3.65625 -4.921875 3.65625 -4.96875 C 3.65625 -5.28125 3.734375 -6 4.359375 -6.625 C 4.484375 -6.734375 4.484375 -6.765625 4.484375 -6.78125 C 4.484375 -6.859375 4.421875 -6.890625 4.375 -6.890625 C 4.265625 -6.890625 3.4375 -6.140625 3.4375 -4.96875 C 3.4375 -4.375 3.6875 -3.921875 4.109375 -3.921875 C 4.453125 -3.921875 4.640625 -4.1875 4.640625 -4.453125 Z M 4.640625 -4.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 3.46875 -3.859375 L 2.203125 -4.171875 C 1.578125 -4.3125 1.1875 -4.859375 1.1875 -5.4375 C 1.1875 -6.125 1.734375 -6.734375 2.515625 -6.734375 C 4.171875 -6.734375 4.390625 -5.109375 4.453125 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.703125 -4.53125 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.015625 4.59375 -7.015625 C 4.515625 -7.015625 4.515625 -7 4.4375 -6.890625 L 4.09375 -6.3125 C 3.796875 -6.609375 3.390625 -7.015625 2.5 -7.015625 C 1.390625 -7.015625 0.5625 -6.140625 0.5625 -5.09375 C 0.5625 -4.265625 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.484375 -3.109375 3.171875 -2.9375 C 3.4375 -2.859375 3.75 -2.796875 4.015625 -2.421875 C 4.234375 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 3 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.078125 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.84375 C 4.96875 -2.84375 4.3125 -3.65625 3.46875 -3.859375 Z M 3.46875 -3.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-28">
<path style="stroke:none;" d="M 6.09375 -6.015625 C 6.09375 -6.375 6.125 -6.484375 6.890625 -6.484375 L 7.125 -6.484375 L 7.125 -6.796875 C 6.78125 -6.765625 6.046875 -6.765625 5.65625 -6.765625 C 5.28125 -6.765625 4.53125 -6.765625 4.1875 -6.796875 L 4.1875 -6.484375 L 4.421875 -6.484375 C 5.203125 -6.484375 5.21875 -6.375 5.21875 -6.015625 L 5.21875 -3.6875 L 2.234375 -3.6875 L 2.234375 -6.015625 C 2.234375 -6.375 2.265625 -6.484375 3.03125 -6.484375 L 3.265625 -6.484375 L 3.265625 -6.796875 C 2.921875 -6.765625 2.1875 -6.765625 1.796875 -6.765625 C 1.421875 -6.765625 0.671875 -6.765625 0.328125 -6.796875 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.359375 -6.375 1.359375 -6.015625 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.421875 -0.3125 L 4.1875 -0.3125 L 4.1875 0 C 4.53125 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.03125 -0.03125 6.78125 -0.03125 7.125 0 L 7.125 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.09375 -0.421875 6.09375 -0.78125 Z M 6.09375 -6.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 1.515625 -5.859375 C 1.515625 -6.453125 1.28125 -6.90625 0.859375 -6.90625 C 0.5 -6.90625 0.328125 -6.640625 0.328125 -6.375 C 0.328125 -6.125 0.5 -5.859375 0.859375 -5.859375 C 1.0625 -5.859375 1.1875 -5.953125 1.25 -6.015625 C 1.265625 -6.03125 1.28125 -6.046875 1.28125 -6.046875 C 1.296875 -6.046875 1.296875 -5.90625 1.296875 -5.859375 C 1.296875 -5.546875 1.234375 -4.828125 0.609375 -4.203125 C 0.484375 -4.09375 0.484375 -4.078125 0.484375 -4.046875 C 0.484375 -3.96875 0.53125 -3.9375 0.59375 -3.9375 C 0.703125 -3.9375 1.515625 -4.6875 1.515625 -5.859375 Z M 3.453125 -5.859375 C 3.453125 -6.453125 3.21875 -6.90625 2.78125 -6.90625 C 2.4375 -6.90625 2.265625 -6.640625 2.265625 -6.375 C 2.265625 -6.125 2.421875 -5.859375 2.78125 -5.859375 C 2.984375 -5.859375 3.125 -5.953125 3.1875 -6.015625 C 3.1875 -6.03125 3.203125 -6.046875 3.21875 -6.046875 C 3.234375 -6.046875 3.234375 -5.90625 3.234375 -5.859375 C 3.234375 -5.546875 3.171875 -4.828125 2.53125 -4.203125 C 2.421875 -4.09375 2.421875 -4.078125 2.421875 -4.046875 C 2.421875 -3.96875 2.46875 -3.9375 2.515625 -3.9375 C 2.625 -3.9375 3.453125 -4.6875 3.453125 -5.859375 Z M 3.453125 -5.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.609375 -0.015625 1.078125 -0.03125 1.359375 -0.03125 C 1.65625 -0.03125 2.0625 -0.015625 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.3125 -2.328125 C 3.078125 -1.28125 3.5 -0.71875 3.5 -0.53125 C 3.5 -0.34375 3.328125 -0.3125 3.140625 -0.3125 L 3.140625 0 C 3.421875 -0.015625 4.015625 -0.03125 4.21875 -0.03125 C 4.515625 -0.03125 4.796875 -0.015625 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.5 -3.359375 3.609375 -3.4375 C 4.234375 -3.953125 4.640625 -3.96875 4.859375 -3.984375 L 4.859375 -4.296875 C 4.5625 -4.265625 4.4375 -4.265625 4.15625 -4.265625 C 3.796875 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.96875 3.328125 -3.859375 3.328125 -3.734375 C 3.328125 -3.53125 3.1875 -3.40625 3.109375 -3.34375 L 1.71875 -2.125 L 1.71875 -6.90625 L 0.28125 -6.796875 L 0.28125 -6.484375 C 0.96875 -6.484375 1.0625 -6.421875 1.0625 -5.9375 Z M 1.0625 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph1-31">
<path style="stroke:none;" d="M 2.015625 -0.015625 C 2.015625 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.546875 0 1.65625 -0.0625 1.765625 -0.140625 L 1.78125 -0.15625 C 1.796875 -0.15625 1.796875 -0.15625 1.796875 -0.015625 C 1.796875 0.625 1.515625 1.234375 1.078125 1.703125 C 1.03125 1.765625 1.015625 1.765625 1.015625 1.8125 C 1.015625 1.875 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.015625 1.140625 2.015625 -0.015625 Z M 2.015625 -0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-32">
<path style="stroke:none;" d="M 6.15625 -3.34375 C 6.34375 -3.84375 6.65625 -3.96875 7 -3.984375 L 7 -4.296875 C 6.78125 -4.265625 6.484375 -4.265625 6.265625 -4.265625 C 5.984375 -4.265625 5.53125 -4.28125 5.34375 -4.296875 L 5.34375 -3.984375 C 5.703125 -3.96875 5.921875 -3.796875 5.921875 -3.5 C 5.921875 -3.4375 5.921875 -3.421875 5.875 -3.296875 L 4.96875 -0.75 L 3.984375 -3.515625 C 3.9375 -3.640625 3.9375 -3.65625 3.9375 -3.71875 C 3.9375 -3.984375 4.3125 -3.984375 4.515625 -3.984375 L 4.515625 -4.296875 C 4.234375 -4.28125 3.71875 -4.265625 3.484375 -4.265625 C 3.1875 -4.265625 2.890625 -4.265625 2.59375 -4.296875 L 2.59375 -3.984375 C 2.96875 -3.984375 3.125 -3.96875 3.21875 -3.828125 C 3.28125 -3.765625 3.390625 -3.46875 3.453125 -3.28125 L 2.59375 -0.875 L 1.65625 -3.53125 C 1.609375 -3.65625 1.609375 -3.671875 1.609375 -3.71875 C 1.609375 -3.984375 1.984375 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 C 1.890625 -4.28125 1.328125 -4.265625 1.109375 -4.265625 C 1.0625 -4.265625 0.53125 -4.265625 0.171875 -4.296875 L 0.171875 -3.984375 C 0.671875 -3.984375 0.796875 -3.953125 0.921875 -3.640625 L 2.171875 -0.109375 C 2.21875 0.03125 2.25 0.109375 2.375 0.109375 C 2.515625 0.109375 2.53125 0.046875 2.578125 -0.09375 L 3.578125 -2.90625 L 4.59375 -0.078125 C 4.640625 0.03125 4.671875 0.109375 4.796875 0.109375 C 4.921875 0.109375 4.953125 0.015625 5 -0.078125 Z M 6.15625 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-33">
<path style="stroke:none;" d="M 2.09375 -4.40625 L 0.578125 -4.296875 L 0.578125 -3.984375 C 1.34375 -3.984375 1.4375 -3.90625 1.4375 -3.421875 L 1.4375 0.515625 C 1.4375 0.96875 1.34375 1.828125 0.703125 1.828125 C 0.65625 1.828125 0.421875 1.828125 0.171875 1.6875 C 0.3125 1.65625 0.515625 1.515625 0.515625 1.25 C 0.515625 0.984375 0.34375 0.78125 0.0625 0.78125 C -0.21875 0.78125 -0.390625 0.984375 -0.390625 1.25 C -0.390625 1.765625 0.15625 2.046875 0.734375 2.046875 C 1.46875 2.046875 2.09375 1.40625 2.09375 0.5 Z M 2.09375 -6.125 C 2.09375 -6.421875 1.84375 -6.65625 1.5625 -6.65625 C 1.28125 -6.65625 1.03125 -6.421875 1.03125 -6.125 C 1.03125 -5.84375 1.28125 -5.609375 1.5625 -5.609375 C 1.84375 -5.609375 2.09375 -5.84375 2.09375 -6.125 Z M 2.09375 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-34">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-35">
<path style="stroke:none;" d="M 0.34375 -6.796875 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.359375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 L 3.984375 0 C 5.65625 0 7.03125 -1.46875 7.03125 -3.34375 C 7.03125 -5.234375 5.6875 -6.796875 3.984375 -6.796875 Z M 2.71875 -0.3125 C 2.25 -0.3125 2.234375 -0.375 2.234375 -0.703125 L 2.234375 -6.09375 C 2.234375 -6.421875 2.25 -6.484375 2.71875 -6.484375 L 3.71875 -6.484375 C 4.328125 -6.484375 5.015625 -6.265625 5.53125 -5.5625 C 5.953125 -4.96875 6.046875 -4.125 6.046875 -3.34375 C 6.046875 -2.234375 5.859375 -1.640625 5.5 -1.15625 C 5.296875 -0.890625 4.734375 -0.3125 3.71875 -0.3125 Z M 2.71875 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-36">
<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.609375 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.65625 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.84375 1.625 1.734375 1.625 1.734375 1.171875 L 1.734375 -0.59375 C 1.796875 -0.421875 2.203125 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.859375 5.1875 -2.15625 C 5.1875 -3.40625 4.21875 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.734375 -1.140625 L 1.734375 -3.359375 C 2.03125 -3.859375 2.515625 -4.15625 3.03125 -4.15625 C 3.75 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.65625 -0.109375 2.921875 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.9375 1.734375 -1.140625 Z M 1.734375 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-37">
<path style="stroke:none;" d="M 1.734375 -4.296875 L 1.734375 -5.4375 C 1.734375 -6.3125 2.21875 -6.796875 2.65625 -6.796875 C 2.6875 -6.796875 2.84375 -6.796875 2.984375 -6.734375 C 2.859375 -6.6875 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.078125 2.84375 -5.875 3.109375 -5.875 C 3.40625 -5.875 3.546875 -6.078125 3.546875 -6.3125 C 3.546875 -6.6875 3.1875 -7.015625 2.65625 -7.015625 C 1.953125 -7.015625 1.109375 -6.484375 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.1875 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.765625 -0.421875 1.765625 -0.78125 L 1.765625 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.734375 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-38">
<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -6.90625 L 0.28125 -6.796875 L 0.28125 -6.484375 C 0.96875 -6.484375 1.0625 -6.421875 1.0625 -5.9375 L 1.0625 0 L 1.296875 0 C 1.3125 -0.015625 1.390625 -0.15625 1.65625 -0.609375 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.859375 5.1875 -2.15625 C 5.1875 -3.40625 4.203125 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.75 Z M 1.734375 -1.140625 L 1.734375 -3.1875 C 1.734375 -3.375 1.734375 -3.390625 1.84375 -3.546875 C 2.234375 -4.09375 2.78125 -4.1875 3.03125 -4.1875 C 3.46875 -4.1875 3.828125 -3.921875 4.078125 -3.546875 C 4.328125 -3.140625 4.359375 -2.5625 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.1875 4.046875 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.921875 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.953125 1.734375 -1.140625 Z M 1.734375 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-39">
<path style="stroke:none;" d="M 5.796875 -2.5625 L 5.546875 -2.5625 C 5.4375 -1.546875 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.234375 -0.375 2.234375 -0.703125 L 2.234375 -6.015625 C 2.234375 -6.34375 2.234375 -6.484375 3.1875 -6.484375 L 3.515625 -6.484375 L 3.515625 -6.796875 C 3.15625 -6.765625 2.25 -6.765625 1.84375 -6.765625 C 1.453125 -6.765625 0.671875 -6.765625 0.328125 -6.796875 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.359375 -6.375 1.359375 -6.015625 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-40">
<path style="stroke:none;" d="M 6.84375 -3.25 C 6.984375 -3.25 7.171875 -3.25 7.171875 -3.453125 C 7.171875 -3.65625 6.984375 -3.65625 6.84375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.25 0.75 -3.25 0.890625 -3.25 Z M 6.84375 -1.328125 C 6.984375 -1.328125 7.171875 -1.328125 7.171875 -1.515625 C 7.171875 -1.71875 6.984375 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.515625 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.84375 -1.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-41">
<path style="stroke:none;" d="M 4.125 -3.34375 C 4.390625 -3.96875 4.890625 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.265625 4.53125 -4.265625 4.3125 -4.265625 C 4.125 -4.265625 3.65625 -4.28125 3.4375 -4.296875 L 3.4375 -3.984375 C 3.75 -3.96875 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.859375 L 1.734375 -3.546875 C 1.703125 -3.640625 1.6875 -3.6875 1.6875 -3.71875 C 1.6875 -3.984375 2.046875 -3.984375 2.234375 -3.984375 L 2.234375 -4.296875 C 1.984375 -4.28125 1.328125 -4.265625 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.265625 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.484375 0 C 2.4375 0.125 2.296875 0.453125 2.234375 0.59375 C 2.015625 1.140625 1.734375 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 Z M 4.125 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-42">
<path style="stroke:none;" d="M 4.359375 -7.09375 C 4.40625 -7.21875 4.40625 -7.25 4.40625 -7.265625 C 4.40625 -7.375 4.3125 -7.46875 4.203125 -7.46875 C 4.078125 -7.46875 4.03125 -7.359375 4 -7.265625 L 0.609375 2.109375 C 0.5625 2.234375 0.5625 2.265625 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.484375 0.75 2.484375 C 0.890625 2.484375 0.9375 2.390625 0.96875 2.296875 Z M 4.359375 -7.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-43">
<path style="stroke:none;" d="M 2.40625 -6.578125 C 2.3125 -6.796875 2.28125 -6.796875 2.046875 -6.796875 L 0.375 -6.796875 L 0.375 -6.484375 L 0.609375 -6.484375 C 1.375 -6.484375 1.390625 -6.375 1.390625 -6.015625 L 1.390625 -1.046875 C 1.390625 -0.78125 1.390625 -0.3125 0.375 -0.3125 L 0.375 0 C 0.71875 -0.015625 1.203125 -0.03125 1.53125 -0.03125 C 1.859375 -0.03125 2.34375 -0.015625 2.703125 0 L 2.703125 -0.3125 C 1.671875 -0.3125 1.671875 -0.78125 1.671875 -1.046875 L 1.671875 -6.40625 L 1.6875 -6.40625 L 4.078125 -0.21875 C 4.125 -0.09375 4.1875 0 4.28125 0 C 4.390625 0 4.421875 -0.078125 4.453125 -0.1875 L 6.90625 -6.484375 L 6.921875 -6.484375 L 6.921875 -0.78125 C 6.921875 -0.421875 6.890625 -0.3125 6.125 -0.3125 L 5.890625 -0.3125 L 5.890625 0 C 6.265625 -0.03125 6.9375 -0.03125 7.328125 -0.03125 C 7.71875 -0.03125 8.375 -0.03125 8.75 0 L 8.75 -0.3125 L 8.515625 -0.3125 C 7.75 -0.3125 7.71875 -0.421875 7.71875 -0.78125 L 7.71875 -6.015625 C 7.71875 -6.375 7.75 -6.484375 8.515625 -6.484375 L 8.75 -6.484375 L 8.75 -6.796875 L 7.0625 -6.796875 C 6.8125 -6.796875 6.8125 -6.78125 6.734375 -6.609375 L 4.5625 -1 Z M 2.40625 -6.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-44">
<path style="stroke:none;" d="M 2.234375 -3.515625 L 2.234375 -6.09375 C 2.234375 -6.3125 2.234375 -6.4375 2.453125 -6.46875 C 2.546875 -6.484375 2.84375 -6.484375 3.03125 -6.484375 C 3.9375 -6.484375 5.046875 -6.453125 5.046875 -5 C 5.046875 -4.3125 4.8125 -3.515625 3.328125 -3.515625 Z M 4.328125 -3.390625 C 5.296875 -3.625 6.078125 -4.234375 6.078125 -5 C 6.078125 -5.96875 4.9375 -6.796875 3.46875 -6.796875 L 0.34375 -6.796875 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.359375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.40625 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.890625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -3.296875 L 3.375 -3.296875 C 3.53125 -3.296875 3.953125 -3.296875 4.296875 -2.953125 C 4.671875 -2.59375 4.671875 -2.296875 4.671875 -1.625 C 4.671875 -0.96875 4.671875 -0.578125 5.09375 -0.203125 C 5.5 0.15625 6.046875 0.21875 6.34375 0.21875 C 7.109375 0.21875 7.28125 -0.59375 7.28125 -0.875 C 7.28125 -0.9375 7.28125 -1.046875 7.15625 -1.046875 C 7.046875 -1.046875 7.046875 -0.953125 7.03125 -0.890625 C 6.984375 -0.171875 6.625 0 6.375 0 C 5.890625 0 5.8125 -0.5 5.671875 -1.4375 L 5.546875 -2.234375 C 5.359375 -2.859375 4.875 -3.1875 4.328125 -3.390625 Z M 4.328125 -3.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-45">
<path style="stroke:none;" d="M 2.265625 -3.140625 L 3.9375 -3.140625 C 5.140625 -3.140625 6.203125 -3.953125 6.203125 -4.953125 C 6.203125 -5.921875 5.21875 -6.796875 3.859375 -6.796875 L 0.34375 -6.796875 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.359375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 Z M 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.421875 2.25 -6.484375 2.71875 -6.484375 L 3.609375 -6.484375 C 5.1875 -6.484375 5.1875 -5.4375 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 Z M 2.234375 -3.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-46">
<path style="stroke:none;" d="M 2.921875 -1.640625 L 2.921875 -0.78125 C 2.921875 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.953125 -0.3125 L 1.953125 0 C 2.375 -0.03125 2.890625 -0.03125 3.296875 -0.03125 C 3.71875 -0.03125 4.25 -0.03125 4.65625 0 L 4.65625 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.6875 -0.421875 3.6875 -0.78125 L 3.6875 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.6875 -1.953125 L 3.6875 -6.484375 C 3.6875 -6.671875 3.6875 -6.734375 3.53125 -6.734375 C 3.4375 -6.734375 3.40625 -6.734375 3.328125 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.65625 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 8.296875 -2.296875 C 7.75 -1.875 7.484375 -1.46875 7.40625 -1.328125 C 6.953125 -0.640625 6.875 -0.015625 6.875 -0.015625 C 6.875 0.109375 7 0.109375 7.078125 0.109375 C 7.25 0.109375 7.25 0.09375 7.296875 -0.09375 C 7.53125 -1.0625 8.109375 -1.90625 9.234375 -2.359375 C 9.359375 -2.40625 9.390625 -2.421875 9.390625 -2.484375 C 9.390625 -2.5625 9.328125 -2.59375 9.3125 -2.59375 C 8.875 -2.765625 7.65625 -3.265625 7.28125 -4.9375 C 7.25 -5.0625 7.25 -5.09375 7.078125 -5.09375 C 7 -5.09375 6.875 -5.09375 6.875 -4.96875 C 6.875 -4.953125 6.96875 -4.3125 7.390625 -3.65625 C 7.578125 -3.359375 7.875 -3 8.296875 -2.6875 L 0.90625 -2.6875 C 0.734375 -2.6875 0.546875 -2.6875 0.546875 -2.484375 C 0.546875 -2.296875 0.734375 -2.296875 0.90625 -2.296875 Z M 8.296875 -2.296875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 675 170 L 781.921875 170 L 781.921875 237 L 675 237 Z M 675 170 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 353 0.0351562 L 482 0.0351562 L 482 58 L 353 58 Z M 353 0.0351562 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 330 0.0351562 L 504 0.0351562 L 504 80 L 330 80 Z M 330 0.0351562 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,98.469543%,70.001221%);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 -52.927673 -39.336536 L 52.926445 -39.336536 L 52.926445 39.334807 L -52.927673 39.334807 Z M 52.926445 22.334823 L -52.927673 22.334823 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="45.253827" y="170.706897"/>
<use xlink:href="#glyph0-2" x="52.776385" y="170.706897"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="65.093629" y="170.706897"/>
<use xlink:href="#glyph0-4" x="69.545837" y="170.706897"/>
<use xlink:href="#glyph0-5" x="75.906561" y="170.706897"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="81.948701" y="170.706897"/>
<use xlink:href="#glyph0-7" x="87.99084" y="170.706897"/>
<use xlink:href="#glyph0-8" x="92.506765" y="170.706897"/>
<use xlink:href="#glyph0-9" x="95.686629" y="170.706897"/>
<use xlink:href="#glyph0-7" x="100.775009" y="170.706897"/>
<use xlink:href="#glyph0-10" x="105.290933" y="170.706897"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="31.247475" y="187.03365"/>
<use xlink:href="#glyph1-2" x="38.437512" y="187.03365"/>
<use xlink:href="#glyph1-3" x="43.415383" y="187.03365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="48.668032" y="187.03365"/>
<use xlink:href="#glyph1-5" x="52.53982" y="187.03365"/>
<use xlink:href="#glyph1-6" x="57.517691" y="187.03365"/>
<use xlink:href="#glyph1-3" x="60.283397" y="187.03365"/>
<use xlink:href="#glyph1-7" x="65.814807" y="187.03365"/>
<use xlink:href="#glyph1-8" x="69.741351" y="187.03365"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="27.928761" y="198.980421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="41.202617" y="198.980421"/>
<use xlink:href="#glyph1-10" x="47.978495" y="198.980421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="59.106028" y="198.980421"/>
<use xlink:href="#glyph1-12" x="67.402148" y="198.980421"/>
<use xlink:href="#glyph1-4" x="71.82648" y="198.980421"/>
<use xlink:href="#glyph1-5" x="75.698268" y="198.980421"/>
<use xlink:href="#glyph1-13" x="80.676139" y="198.980421"/>
<use xlink:href="#glyph1-5" x="86.207549" y="198.980421"/>
<use xlink:href="#glyph1-4" x="91.18542" y="198.980421"/>
<use xlink:href="#glyph1-5" x="95.057208" y="198.980421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="103.360297" y="198.980421"/>
<use xlink:href="#glyph1-5" x="107.232085" y="198.980421"/>
<use xlink:href="#glyph1-15" x="112.209956" y="198.980421"/>
<use xlink:href="#glyph1-15" x="114.975661" y="198.980421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="27.928761" y="210.927191"/>
<use xlink:href="#glyph1-2" x="32.353093" y="210.927191"/>
<use xlink:href="#glyph1-3" x="37.330964" y="210.927191"/>
<use xlink:href="#glyph1-17" x="42.862374" y="210.927191"/>
<use xlink:href="#glyph1-18" x="48.393784" y="210.927191"/>
<use xlink:href="#glyph1-19" x="53.371655" y="210.927191"/>
<use xlink:href="#glyph1-20" x="58.903066" y="210.927191"/>
<use xlink:href="#glyph1-5" x="62.80273" y="210.927191"/>
<use xlink:href="#glyph1-4" x="67.780601" y="210.927191"/>
<use xlink:href="#glyph1-6" x="71.652389" y="210.927191"/>
<use xlink:href="#glyph1-2" x="74.418094" y="210.927191"/>
<use xlink:href="#glyph1-3" x="79.395965" y="210.927191"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="88.242637" y="210.927191"/>
<use xlink:href="#glyph1-3" x="93.220508" y="210.927191"/>
<use xlink:href="#glyph1-13" x="98.751918" y="210.927191"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="107.598591" y="210.927191"/>
<use xlink:href="#glyph1-19" x="111.498255" y="210.927191"/>
<use xlink:href="#glyph1-3" x="117.029665" y="210.927191"/>
<use xlink:href="#glyph1-21" x="122.561075" y="210.927191"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="27.928761" y="222.873961"/>
<use xlink:href="#glyph1-6" x="33.460171" y="222.873961"/>
<use xlink:href="#glyph1-3" x="36.225877" y="222.873961"/>
<use xlink:href="#glyph1-18" x="41.757287" y="222.873961"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="50.05042" y="222.873961"/>
<use xlink:href="#glyph1-12" x="55.58183" y="222.873961"/>
<use xlink:href="#glyph1-4" x="60.006162" y="222.873961"/>
<use xlink:href="#glyph1-5" x="63.87795" y="222.873961"/>
<use xlink:href="#glyph1-6" x="68.855821" y="222.873961"/>
<use xlink:href="#glyph1-15" x="71.621526" y="222.873961"/>
<use xlink:href="#glyph1-7" x="74.387231" y="222.873961"/>
<use xlink:href="#glyph1-22" x="78.313776" y="222.873961"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="27.928761" y="234.820732"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="41.202617" y="234.820732"/>
<use xlink:href="#glyph1-12" x="49.014888" y="234.820732"/>
<use xlink:href="#glyph1-3" x="53.43922" y="234.820732"/>
<use xlink:href="#glyph1-12" x="58.97063" y="234.820732"/>
<use xlink:href="#glyph1-20" x="63.394962" y="234.820732"/>
<use xlink:href="#glyph1-5" x="67.294626" y="234.820732"/>
<use xlink:href="#glyph1-4" x="72.272497" y="234.820732"/>
<use xlink:href="#glyph1-12" x="76.144285" y="234.820732"/>
<use xlink:href="#glyph1-13" x="80.568617" y="234.820732"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="89.415289" y="234.820732"/>
<use xlink:href="#glyph1-23" x="96.191167" y="234.820732"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="101.177003" y="234.820732"/>
<use xlink:href="#glyph1-3" x="105.601334" y="234.820732"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="110.853984" y="234.820732"/>
<use xlink:href="#glyph1-7" x="114.725772" y="234.820732"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,100%);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 110.020435 39.733519 L 215.874552 39.733519 L 215.874552 103.433619 L 110.020435 103.433619 Z M 215.874552 77.603338 L 110.020435 77.603338 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="218.4795" y="106.017458"/>
<use xlink:href="#glyph0-12" x="227.259469" y="106.017458"/>
<use xlink:href="#glyph0-13" x="232.50714" y="106.017458"/>
<use xlink:href="#glyph0-12" x="236.959348" y="106.017458"/>
<use xlink:href="#glyph0-9" x="242.20702" y="106.017458"/>
<use xlink:href="#glyph0-13" x="247.295399" y="106.017458"/>
<use xlink:href="#glyph0-14" x="251.747607" y="106.017458"/>
<use xlink:href="#glyph0-15" x="257.472159" y="106.017458"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="213.539903" y="117.964229"/>
<use xlink:href="#glyph0-8" x="219.900626" y="117.964229"/>
<use xlink:href="#glyph0-17" x="223.08049" y="117.964229"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="232.302494" y="117.964229"/>
<use xlink:href="#glyph0-19" x="238.663217" y="117.964229"/>
<use xlink:href="#glyph0-20" x="241.843081" y="117.964229"/>
<use xlink:href="#glyph0-13" x="247.408341" y="117.964229"/>
<use xlink:href="#glyph0-8" x="251.860549" y="117.964229"/>
<use xlink:href="#glyph0-14" x="255.040413" y="117.964229"/>
<use xlink:href="#glyph0-21" x="260.764965" y="117.964229"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="194.080307" y="131.91262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="207.354164" y="131.91262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="213.717874" y="131.91262"/>
<use xlink:href="#glyph1-20" x="219.249284" y="131.91262"/>
<use xlink:href="#glyph1-3" x="223.148948" y="131.91262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="231.995621" y="131.91262"/>
<use xlink:href="#glyph1-20" x="235.867409" y="131.91262"/>
<use xlink:href="#glyph1-19" x="239.767073" y="131.91262"/>
<use xlink:href="#glyph1-4" x="245.298483" y="131.91262"/>
<use xlink:href="#glyph1-25" x="249.170271" y="131.91262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="258.016943" y="131.91262"/>
<use xlink:href="#glyph1-12" x="260.782648" y="131.91262"/>
<use xlink:href="#glyph1-23" x="265.20698" y="131.91262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="270.18286" y="131.91262"/>
<use xlink:href="#glyph1-15" x="274.607192" y="131.91262"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="190.761593" y="143.86039"/>
<use xlink:href="#glyph1-10" x="197.537471" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="208.665004" y="143.86039"/>
<use xlink:href="#glyph1-23" x="213.089336" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="218.075172" y="143.86039"/>
<use xlink:href="#glyph1-3" x="222.499503" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="227.752153" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="234.939203" y="143.86039"/>
<use xlink:href="#glyph1-3" x="237.704908" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="242.957557" y="143.86039"/>
<use xlink:href="#glyph1-2" x="246.829345" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="255.132434" y="143.86039"/>
<use xlink:href="#glyph1-27" x="260.110305" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="265.63176" y="143.86039"/>
<use xlink:href="#glyph1-11" x="268.397465" y="143.86039"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="190.761593" y="155.807161"/>
<use xlink:href="#glyph1-6" x="198.2284" y="155.807161"/>
<use xlink:href="#glyph1-4" x="200.994105" y="155.807161"/>
<use xlink:href="#glyph1-7" x="204.865893" y="155.807161"/>
<use xlink:href="#glyph1-29" x="208.792438" y="155.807161"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,100%);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 110.020435 -103.435348 L 215.874552 -103.435348 L 215.874552 -39.735248 L 110.020435 -39.735248 Z M 215.874552 -65.565529 L 110.020435 -65.565529 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="218.4795" y="249.084906"/>
<use xlink:href="#glyph0-12" x="227.259469" y="249.084906"/>
<use xlink:href="#glyph0-13" x="232.50714" y="249.084906"/>
<use xlink:href="#glyph0-12" x="236.959348" y="249.084906"/>
<use xlink:href="#glyph0-9" x="242.20702" y="249.084906"/>
<use xlink:href="#glyph0-13" x="247.295399" y="249.084906"/>
<use xlink:href="#glyph0-14" x="251.747607" y="249.084906"/>
<use xlink:href="#glyph0-15" x="257.472159" y="249.084906"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="213.539903" y="261.031676"/>
<use xlink:href="#glyph0-8" x="219.900626" y="261.031676"/>
<use xlink:href="#glyph0-17" x="223.08049" y="261.031676"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="232.302494" y="261.031676"/>
<use xlink:href="#glyph0-19" x="238.663217" y="261.031676"/>
<use xlink:href="#glyph0-20" x="241.843081" y="261.031676"/>
<use xlink:href="#glyph0-13" x="247.408341" y="261.031676"/>
<use xlink:href="#glyph0-8" x="251.860549" y="261.031676"/>
<use xlink:href="#glyph0-14" x="255.040413" y="261.031676"/>
<use xlink:href="#glyph0-21" x="260.764965" y="261.031676"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="194.080307" y="274.980068"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="207.354164" y="274.980068"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="213.717874" y="274.980068"/>
<use xlink:href="#glyph1-20" x="219.249284" y="274.980068"/>
<use xlink:href="#glyph1-3" x="223.148948" y="274.980068"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="231.995621" y="274.980068"/>
<use xlink:href="#glyph1-20" x="235.867409" y="274.980068"/>
<use xlink:href="#glyph1-19" x="239.767073" y="274.980068"/>
<use xlink:href="#glyph1-4" x="245.298483" y="274.980068"/>
<use xlink:href="#glyph1-25" x="249.170271" y="274.980068"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="258.016943" y="274.980068"/>
<use xlink:href="#glyph1-12" x="260.782648" y="274.980068"/>
<use xlink:href="#glyph1-23" x="265.20698" y="274.980068"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="270.18286" y="274.980068"/>
<use xlink:href="#glyph1-15" x="274.607192" y="274.980068"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="190.761593" y="286.926838"/>
<use xlink:href="#glyph1-10" x="197.537471" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="208.665004" y="286.926838"/>
<use xlink:href="#glyph1-23" x="213.089336" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="218.075172" y="286.926838"/>
<use xlink:href="#glyph1-3" x="222.499503" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="227.752153" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="234.939203" y="286.926838"/>
<use xlink:href="#glyph1-3" x="237.704908" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="242.957557" y="286.926838"/>
<use xlink:href="#glyph1-2" x="246.829345" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="255.132434" y="286.926838"/>
<use xlink:href="#glyph1-27" x="260.110305" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="265.63176" y="286.926838"/>
<use xlink:href="#glyph1-11" x="268.397465" y="286.926838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="190.761593" y="298.873609"/>
<use xlink:href="#glyph1-6" x="198.2284" y="298.873609"/>
<use xlink:href="#glyph1-4" x="200.994105" y="298.873609"/>
<use xlink:href="#glyph1-7" x="204.865893" y="298.873609"/>
<use xlink:href="#glyph1-29" x="208.792438" y="298.873609"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,79.998779%,79.998779%);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 272.968542 44.701783 L 378.82266 44.701783 L 378.82266 98.465355 L 272.968542 98.465355 Z M 378.82266 82.571602 L 272.968542 82.571602 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="373.731554" y="111.064981"/>
<use xlink:href="#glyph0-8" x="382.511523" y="111.064981"/>
<use xlink:href="#glyph0-22" x="385.691387" y="111.064981"/>
<use xlink:href="#glyph0-8" x="391.415939" y="111.064981"/>
<use xlink:href="#glyph0-13" x="394.595803" y="111.064981"/>
<use xlink:href="#glyph0-8" x="399.04801" y="111.064981"/>
<use xlink:href="#glyph0-23" x="402.227874" y="111.064981"/>
<use xlink:href="#glyph0-20" x="407.316254" y="111.064981"/>
<use xlink:href="#glyph0-13" x="412.881514" y="111.064981"/>
<use xlink:href="#glyph0-8" x="417.333722" y="111.064981"/>
<use xlink:href="#glyph0-14" x="420.513586" y="111.064981"/>
<use xlink:href="#glyph0-21" x="426.238137" y="111.064981"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="356.91314" y="126.94904"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="370.186996" y="126.94904"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="376.550706" y="126.94904"/>
<use xlink:href="#glyph1-20" x="382.082116" y="126.94904"/>
<use xlink:href="#glyph1-3" x="385.98178" y="126.94904"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="394.828453" y="126.94904"/>
<use xlink:href="#glyph1-27" x="399.806324" y="126.94904"/>
<use xlink:href="#glyph1-6" x="405.337734" y="126.94904"/>
<use xlink:href="#glyph1-11" x="408.103439" y="126.94904"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="419.714821" y="126.94904"/>
<use xlink:href="#glyph1-6" x="427.181627" y="126.94904"/>
<use xlink:href="#glyph1-4" x="429.947333" y="126.94904"/>
<use xlink:href="#glyph1-29" x="433.819121" y="126.94904"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="353.594426" y="138.89581"/>
<use xlink:href="#glyph1-3" x="356.360131" y="138.89581"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="361.61278" y="138.89581"/>
<use xlink:href="#glyph1-2" x="365.484568" y="138.89581"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="373.777701" y="138.89581"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="382.083777" y="138.89581"/>
<use xlink:href="#glyph1-20" x="387.061648" y="138.89581"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="390.951356" y="138.89581"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="398.700906" y="138.89581"/>
<use xlink:href="#glyph1-12" x="402.60057" y="138.89581"/>
<use xlink:href="#glyph1-5" x="407.024902" y="138.89581"/>
<use xlink:href="#glyph1-15" x="412.002773" y="138.89581"/>
<use xlink:href="#glyph1-6" x="414.768478" y="138.89581"/>
<use xlink:href="#glyph1-7" x="417.534183" y="138.89581"/>
<use xlink:href="#glyph1-4" x="421.460728" y="138.89581"/>
<use xlink:href="#glyph1-6" x="425.332516" y="138.89581"/>
<use xlink:href="#glyph1-16" x="428.098221" y="138.89581"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="353.594426" y="150.84258"/>
<use xlink:href="#glyph1-6" x="361.061232" y="150.84258"/>
<use xlink:href="#glyph1-4" x="363.826937" y="150.84258"/>
<use xlink:href="#glyph1-7" x="367.698725" y="150.84258"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,79.998779%,79.998779%);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 272.968542 -98.467084 L 378.82266 -98.467084 L 378.82266 -44.703512 L 272.968542 -44.703512 Z M 378.82266 -60.597265 L 272.968542 -60.597265 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="373.731554" y="254.13143"/>
<use xlink:href="#glyph0-8" x="382.511523" y="254.13143"/>
<use xlink:href="#glyph0-22" x="385.691387" y="254.13143"/>
<use xlink:href="#glyph0-8" x="391.415939" y="254.13143"/>
<use xlink:href="#glyph0-13" x="394.595803" y="254.13143"/>
<use xlink:href="#glyph0-8" x="399.04801" y="254.13143"/>
<use xlink:href="#glyph0-23" x="402.227874" y="254.13143"/>
<use xlink:href="#glyph0-20" x="407.316254" y="254.13143"/>
<use xlink:href="#glyph0-13" x="412.881514" y="254.13143"/>
<use xlink:href="#glyph0-8" x="417.333722" y="254.13143"/>
<use xlink:href="#glyph0-14" x="420.513586" y="254.13143"/>
<use xlink:href="#glyph0-21" x="426.238137" y="254.13143"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="356.91314" y="270.016487"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="370.186996" y="270.016487"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="376.550706" y="270.016487"/>
<use xlink:href="#glyph1-20" x="382.082116" y="270.016487"/>
<use xlink:href="#glyph1-3" x="385.98178" y="270.016487"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="394.828453" y="270.016487"/>
<use xlink:href="#glyph1-27" x="399.806324" y="270.016487"/>
<use xlink:href="#glyph1-6" x="405.337734" y="270.016487"/>
<use xlink:href="#glyph1-11" x="408.103439" y="270.016487"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="419.714821" y="270.016487"/>
<use xlink:href="#glyph1-6" x="427.181627" y="270.016487"/>
<use xlink:href="#glyph1-4" x="429.947333" y="270.016487"/>
<use xlink:href="#glyph1-29" x="433.819121" y="270.016487"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="353.594426" y="281.963258"/>
<use xlink:href="#glyph1-3" x="356.360131" y="281.963258"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="361.61278" y="281.963258"/>
<use xlink:href="#glyph1-2" x="365.484568" y="281.963258"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="373.777701" y="281.963258"/>
<use xlink:href="#glyph1-2" x="382.073821" y="281.963258"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="387.061648" y="281.963258"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="390.951356" y="281.963258"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="398.700906" y="281.963258"/>
<use xlink:href="#glyph1-12" x="402.60057" y="281.963258"/>
<use xlink:href="#glyph1-5" x="407.024902" y="281.963258"/>
<use xlink:href="#glyph1-15" x="412.002773" y="281.963258"/>
<use xlink:href="#glyph1-6" x="414.768478" y="281.963258"/>
<use xlink:href="#glyph1-7" x="417.534183" y="281.963258"/>
<use xlink:href="#glyph1-4" x="421.460728" y="281.963258"/>
<use xlink:href="#glyph1-6" x="425.332516" y="281.963258"/>
<use xlink:href="#glyph1-16" x="428.098221" y="281.963258"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="353.594426" y="293.910028"/>
<use xlink:href="#glyph1-6" x="361.061232" y="293.910028"/>
<use xlink:href="#glyph1-4" x="363.826937" y="293.910028"/>
<use xlink:href="#glyph1-7" x="367.698725" y="293.910028"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,100%,79.998779%);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 435.91274 44.756508 L 541.770767 44.756508 L 541.770767 98.41063 L 435.91274 98.41063 Z M 541.770767 84.451802 L 435.91274 84.451802 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="528.070238" y="111.119943"/>
<use xlink:href="#glyph0-12" x="536.657065" y="111.119943"/>
<use xlink:href="#glyph0-9" x="541.904737" y="111.119943"/>
<use xlink:href="#glyph0-14" x="546.993116" y="111.119943"/>
<use xlink:href="#glyph0-21" x="552.717668" y="111.119943"/>
<use xlink:href="#glyph0-7" x="559.078392" y="111.119943"/>
<use xlink:href="#glyph0-13" x="563.594316" y="111.119943"/>
<use xlink:href="#glyph0-15" x="568.046524" y="111.119943"/>
<use xlink:href="#glyph0-18" x="572.761563" y="111.119943"/>
<use xlink:href="#glyph0-9" x="579.122287" y="111.119943"/>
<use xlink:href="#glyph0-13" x="584.210667" y="111.119943"/>
<use xlink:href="#glyph0-8" x="588.662874" y="111.119943"/>
<use xlink:href="#glyph0-14" x="591.842738" y="111.119943"/>
<use xlink:href="#glyph0-21" x="597.56729" y="111.119943"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="519.745972" y="124.957411"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="533.019828" y="124.957411"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="539.383538" y="124.957411"/>
<use xlink:href="#glyph1-20" x="544.914949" y="124.957411"/>
<use xlink:href="#glyph1-3" x="548.814613" y="124.957411"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="557.661285" y="124.957411"/>
<use xlink:href="#glyph1-6" x="565.128092" y="124.957411"/>
<use xlink:href="#glyph1-4" x="567.893797" y="124.957411"/>
<use xlink:href="#glyph1-7" x="571.765585" y="124.957411"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="579.007391" y="124.957411"/>
<use xlink:href="#glyph1-3" x="581.773097" y="124.957411"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="587.025746" y="124.957411"/>
<use xlink:href="#glyph1-2" x="590.897534" y="124.957411"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="516.427258" y="136.905181"/>
<use xlink:href="#glyph1-20" x="520.299046" y="136.905181"/>
<use xlink:href="#glyph1-5" x="524.19871" y="136.905181"/>
<use xlink:href="#glyph1-16" x="529.176581" y="136.905181"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-30" x="533.322152" y="136.905181"/>
<use xlink:href="#glyph1-7" x="538.576793" y="136.905181"/>
<use xlink:href="#glyph1-31" x="542.503337" y="136.905181"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="548.59426" y="136.905181"/>
<use xlink:href="#glyph1-25" x="552.520805" y="136.905181"/>
<use xlink:href="#glyph1-2" x="558.052215" y="136.905181"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-32" x="562.751325" y="136.905181"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="569.662601" y="136.905181"/>
<use xlink:href="#glyph1-20" x="574.086933" y="136.905181"/>
<use xlink:href="#glyph1-7" x="577.986597" y="136.905181"/>
<use xlink:href="#glyph1-31" x="581.913142" y="136.905181"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="587.994109" y="136.905181"/>
<use xlink:href="#glyph1-20" x="591.865897" y="136.905181"/>
<use xlink:href="#glyph1-5" x="595.765561" y="136.905181"/>
<use xlink:href="#glyph1-21" x="600.743432" y="136.905181"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-33" x="516.427258" y="148.851952"/>
<use xlink:href="#glyph1-12" x="519.469733" y="148.851952"/>
<use xlink:href="#glyph1-16" x="523.894064" y="148.851952"/>
<use xlink:href="#glyph1-4" x="528.318396" y="148.851952"/>
<use xlink:href="#glyph1-2" x="532.190184" y="148.851952"/>
<use xlink:href="#glyph1-20" x="537.168055" y="148.851952"/>
<use xlink:href="#glyph1-6" x="541.067719" y="148.851952"/>
<use xlink:href="#glyph1-12" x="543.833424" y="148.851952"/>
<use xlink:href="#glyph1-7" x="548.257756" y="148.851952"/>
<use xlink:href="#glyph1-31" x="552.184301" y="148.851952"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="558.265268" y="148.851952"/>
<use xlink:href="#glyph1-4" x="562.6896" y="148.851952"/>
<use xlink:href="#glyph1-16" x="566.561388" y="148.851952"/>
<use xlink:href="#glyph1-34" x="570.985719" y="148.851952"/>
<use xlink:href="#glyph1-34" x="573.751425" y="148.851952"/>
<use xlink:href="#glyph1-34" x="576.51713" y="148.851952"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,100%,79.998779%);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 435.91274 -98.412359 L 541.770767 -98.412359 L 541.770767 -44.758237 L 435.91274 -44.758237 Z M 541.770767 -58.717065 L 435.91274 -58.717065 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="528.070238" y="254.187391"/>
<use xlink:href="#glyph0-12" x="536.657065" y="254.187391"/>
<use xlink:href="#glyph0-9" x="541.904737" y="254.187391"/>
<use xlink:href="#glyph0-14" x="546.993116" y="254.187391"/>
<use xlink:href="#glyph0-21" x="552.717668" y="254.187391"/>
<use xlink:href="#glyph0-7" x="559.078392" y="254.187391"/>
<use xlink:href="#glyph0-13" x="563.594316" y="254.187391"/>
<use xlink:href="#glyph0-15" x="568.046524" y="254.187391"/>
<use xlink:href="#glyph0-18" x="572.761563" y="254.187391"/>
<use xlink:href="#glyph0-9" x="579.122287" y="254.187391"/>
<use xlink:href="#glyph0-13" x="584.210667" y="254.187391"/>
<use xlink:href="#glyph0-8" x="588.662874" y="254.187391"/>
<use xlink:href="#glyph0-14" x="591.842738" y="254.187391"/>
<use xlink:href="#glyph0-21" x="597.56729" y="254.187391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="519.745972" y="268.024859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-24" x="533.019828" y="268.024859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="539.383538" y="268.024859"/>
<use xlink:href="#glyph1-20" x="544.914949" y="268.024859"/>
<use xlink:href="#glyph1-3" x="548.814613" y="268.024859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="557.661285" y="268.024859"/>
<use xlink:href="#glyph1-6" x="565.128092" y="268.024859"/>
<use xlink:href="#glyph1-4" x="567.893797" y="268.024859"/>
<use xlink:href="#glyph1-7" x="571.765585" y="268.024859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="579.007391" y="268.024859"/>
<use xlink:href="#glyph1-3" x="581.773097" y="268.024859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="587.025746" y="268.024859"/>
<use xlink:href="#glyph1-2" x="590.897534" y="268.024859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="516.427258" y="279.97163"/>
<use xlink:href="#glyph1-20" x="520.299046" y="279.97163"/>
<use xlink:href="#glyph1-5" x="524.19871" y="279.97163"/>
<use xlink:href="#glyph1-16" x="529.176581" y="279.97163"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-30" x="533.322152" y="279.97163"/>
<use xlink:href="#glyph1-7" x="538.576793" y="279.97163"/>
<use xlink:href="#glyph1-31" x="542.503337" y="279.97163"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="548.59426" y="279.97163"/>
<use xlink:href="#glyph1-25" x="552.520805" y="279.97163"/>
<use xlink:href="#glyph1-2" x="558.052215" y="279.97163"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-32" x="562.751325" y="279.97163"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="569.662601" y="279.97163"/>
<use xlink:href="#glyph1-20" x="574.086933" y="279.97163"/>
<use xlink:href="#glyph1-7" x="577.986597" y="279.97163"/>
<use xlink:href="#glyph1-31" x="581.913142" y="279.97163"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="587.994109" y="279.97163"/>
<use xlink:href="#glyph1-20" x="591.865897" y="279.97163"/>
<use xlink:href="#glyph1-5" x="595.765561" y="279.97163"/>
<use xlink:href="#glyph1-21" x="600.743432" y="279.97163"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-33" x="516.427258" y="291.9184"/>
<use xlink:href="#glyph1-12" x="519.469733" y="291.9184"/>
<use xlink:href="#glyph1-16" x="523.894064" y="291.9184"/>
<use xlink:href="#glyph1-4" x="528.318396" y="291.9184"/>
<use xlink:href="#glyph1-2" x="532.190184" y="291.9184"/>
<use xlink:href="#glyph1-20" x="537.168055" y="291.9184"/>
<use xlink:href="#glyph1-6" x="541.067719" y="291.9184"/>
<use xlink:href="#glyph1-12" x="543.833424" y="291.9184"/>
<use xlink:href="#glyph1-7" x="548.257756" y="291.9184"/>
<use xlink:href="#glyph1-31" x="552.184301" y="291.9184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="558.265268" y="291.9184"/>
<use xlink:href="#glyph1-4" x="562.6896" y="291.9184"/>
<use xlink:href="#glyph1-16" x="566.561388" y="291.9184"/>
<use xlink:href="#glyph1-34" x="570.985719" y="291.9184"/>
<use xlink:href="#glyph1-34" x="573.751425" y="291.9184"/>
<use xlink:href="#glyph1-34" x="576.51713" y="291.9184"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill-rule:nonzero;fill:rgb(100%,98.979187%,80.000305%);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 598.860848 -37.272615 L 704.714966 -37.272615 L 704.714966 28.448407 L 598.860848 28.448407 Z M 704.714966 12.550745 L 598.860848 12.550745 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="707.823414" y="181.033783"/>
<use xlink:href="#glyph0-21" x="716.478936" y="181.033783"/>
<use xlink:href="#glyph0-20" x="722.83966" y="181.033783"/>
<use xlink:href="#glyph0-19" x="728.40492" y="181.033783"/>
<use xlink:href="#glyph0-6" x="731.584784" y="181.033783"/>
<use xlink:href="#glyph0-7" x="737.626923" y="181.033783"/>
<use xlink:href="#glyph0-8" x="742.142848" y="181.033783"/>
<use xlink:href="#glyph0-7" x="745.322712" y="181.033783"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="682.578804" y="196.917841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-35" x="695.85266" y="196.917841"/>
<use xlink:href="#glyph1-12" x="703.457852" y="196.917841"/>
<use xlink:href="#glyph1-4" x="707.882183" y="196.917841"/>
<use xlink:href="#glyph1-12" x="711.753971" y="196.917841"/>
<use xlink:href="#glyph1-16" x="716.178303" y="196.917841"/>
<use xlink:href="#glyph1-4" x="720.602635" y="196.917841"/>
<use xlink:href="#glyph1-2" x="724.474423" y="196.917841"/>
<use xlink:href="#glyph1-20" x="729.452294" y="196.917841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-36" x="736.66722" y="196.917841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="742.477391" y="196.917841"/>
<use xlink:href="#glyph1-20" x="746.901723" y="196.917841"/>
<use xlink:href="#glyph1-37" x="750.801387" y="196.917841"/>
<use xlink:href="#glyph1-2" x="753.843862" y="196.917841"/>
<use xlink:href="#glyph1-20" x="758.821733" y="196.917841"/>
<use xlink:href="#glyph1-21" x="762.721397" y="196.917841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="679.26009" y="208.864612"/>
<use xlink:href="#glyph1-5" x="687.55621" y="208.864612"/>
<use xlink:href="#glyph1-3" x="692.534081" y="208.864612"/>
<use xlink:href="#glyph1-16" x="698.065491" y="208.864612"/>
<use xlink:href="#glyph1-12" x="702.489823" y="208.864612"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-38" x="710.229417" y="208.864612"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="716.039588" y="208.864612"/>
<use xlink:href="#glyph1-3" x="720.463919" y="208.864612"/>
<use xlink:href="#glyph1-16" x="725.99533" y="208.864612"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-25" x="730.140901" y="208.864612"/>
<use xlink:href="#glyph1-11" x="735.672311" y="208.864612"/>
<use xlink:href="#glyph1-5" x="743.968431" y="208.864612"/>
<use xlink:href="#glyph1-20" x="748.946302" y="208.864612"/>
<use xlink:href="#glyph1-30" x="752.845966" y="208.864612"/>
<use xlink:href="#glyph1-7" x="758.100606" y="208.864612"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="679.26009" y="220.811382"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="692.533946" y="220.811382"/>
<use xlink:href="#glyph0-5" x="700.360155" y="220.811382"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="706.402295" y="220.811382"/>
<use xlink:href="#glyph0-7" x="712.444435" y="220.811382"/>
<use xlink:href="#glyph0-8" x="716.960359" y="220.811382"/>
<use xlink:href="#glyph0-9" x="720.140223" y="220.811382"/>
<use xlink:href="#glyph0-7" x="725.228603" y="220.811382"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-27" x="733.05979" y="220.811382"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="739.739097" y="220.811382"/>
<use xlink:href="#glyph0-21" x="744.986769" y="220.811382"/>
<use xlink:href="#glyph0-9" x="751.347492" y="220.811382"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="756.117288" y="220.811382"/>
<use xlink:href="#glyph0-28" x="762.478012" y="220.811382"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="679.26009" y="232.759152"/>
<use xlink:href="#glyph0-20" x="688.800678" y="232.759152"/>
<use xlink:href="#glyph0-15" x="694.365937" y="232.759152"/>
<use xlink:href="#glyph0-29" x="699.080977" y="232.759152"/>
<use xlink:href="#glyph0-7" x="705.123117" y="232.759152"/>
</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 -52.927673 -187.7942 L 52.926445 -187.7942 L 52.926445 -95.672191 L -52.927673 -95.672191 Z M 52.926445 -124.078464 L -52.927673 -124.078464 " transform="matrix(0.999312,0,0,-0.999312,77.500614,199.030386)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-30" x="43.10131" y="305.068342"/>