social-preview.svg
163 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1280"
height="640"
viewBox="0 0 338.66666 169.33334"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="social-preview.svg"
inkscape:export-filename="/home/perry/project/pw3270/pw3270/branding/social-preview.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs2">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3687"
id="radialGradient2560"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.2214651,1.3481449,-1.1114864,-1.0070438,1777.1401,13.255979)"
cx="593.03772"
cy="437.90591"
fx="593.03772"
fy="437.90591"
r="19.115074" />
<linearGradient
id="linearGradient3687">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3689" />
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="1"
id="stop3691" />
</linearGradient>
<linearGradient
id="a"
x1="34.76569"
x2="25.431995"
y1="9.9084301"
y2="28.426884"
gradientTransform="scale(0.9319351,1.0730361)"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff"
stop-opacity="0"
id="stop2" />
<stop
offset="1"
stop-color="#fff"
stop-opacity=".27451"
id="stop4" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="913.12983"
inkscape:cy="360.66964"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
inkscape:window-width="1366"
inkscape:window-height="714"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="true" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g3348"
transform="matrix(1.3699023,0,0,1.3699023,-720.57098,-488.06097)"
inkscape:export-filename="/home/perry/Desktop/g3484.png"
inkscape:export-xdpi="750"
inkscape:export-ydpi="750">
<path
inkscape:export-ydpi="750"
inkscape:export-xdpi="750"
inkscape:export-filename="/home/perry/Desktop/path4684.png"
sodipodi:nodetypes="ccccc"
id="path3877"
d="m 571.75652,365.09989 c -12.28362,1.49404 -24.71615,1.60564 -36.92919,3.70417 1.15828,9.37275 0.97923,23.2044 1.63094,30.14689 11.55053,-1.50408 27.01785,-2.59907 38.36698,-5.35307 -0.036,-8.87303 -1.02762,-19.15 -3.06873,-28.49799 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#cccccc;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="750"
inkscape:export-xdpi="750"
inkscape:export-filename="/home/perry/Desktop/path4684.png"
sodipodi:nodetypes="cccccccccccccccc"
id="path3879"
d="m 558.70672,398.73456 c -3.79163,0.10309 -7.64598,0.11185 -11.30721,1.27926 -2.13143,0.66011 -4.04568,2.24121 -4.70985,4.42348 -0.0967,1.1177 0.76001,2.18842 1.46457,3.02352 2.25351,2.29719 5.65545,2.82771 8.73539,2.89271 4.42579,0.006 8.86831,-0.8458 12.96682,-2.52003 1.55025,-0.88162 3.33996,-2.06142 3.56963,-3.9936 -0.59735,-2.25901 -2.87075,-3.51224 -4.96561,-4.11636 -1.84964,-0.54894 -3.83129,-0.95601 -5.75374,-0.98898 z m 0.0446,1.40178 c 2.78739,0.0968 5.75567,0.21409 8.11548,1.83476 0.87991,0.58405 1.95351,1.77677 1.15706,2.83974 -0.76499,1.1501 -2.05182,1.80199 -3.22326,2.45978 -3.23561,1.57133 -6.96349,1.61384 -10.45172,1.06373 -9.12914,-0.40554 -4.60594,-6.64603 1.06647,-7.80087 1.09861,-0.25448 2.19774,-0.40573 3.33597,-0.39714 z"
style="fill:#b6b6b6;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<g
transform="matrix(0.8126522,0,0,1,135.51705,-68.411175)"
id="g3881">
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
d="m 496.23743,451.70467 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
id="path3883"
inkscape:connector-curvature="0" />
<path
style="font-style:normal;font-weight:bold;font-size:9.27299px;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Sans Bold';fill:#00ff00;fill-opacity:1;stroke:#00ff00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0"
d="m 496.41233,442.38795 2.69056,-0.26631 c 0.80001,-0.0792 1.40822,0.0667 1.82464,0.43776 0.41931,0.36749 0.61951,0.93195 0.60062,1.69338 -0.019,0.76469 -0.24833,1.37492 -0.68806,1.83067 -0.43685,0.45224 -1.05527,0.71795 -1.85529,0.79713 l -1.06948,0.10586 -0.0627,2.52833 -1.62108,0.16046 0.18082,-7.28728 m 1.58729,1.20133 -0.0505,2.03536 0.89685,-0.0888 c 0.31439,-0.0311 0.55938,-0.14299 0.73498,-0.33567 0.17566,-0.19591 0.26753,-0.45656 0.27561,-0.78196 0.008,-0.3254 -0.0713,-0.56748 -0.23819,-0.72626 -0.16688,-0.15875 -0.4075,-0.22257 -0.7219,-0.19147 l -0.89684,0.0888 m 4.19384,-1.77354 1.5537,-0.15378 0.95492,5.18832 1.20932,-5.40254 1.56212,-0.15461 0.9465,5.18915 1.21774,-5.40337 1.54107,-0.15253 -1.66294,7.43397 -1.8695,0.18504 -1.00361,-5.42695 -1.2659,5.65159 -1.86949,0.18504 -1.31393,-7.13933 m 13.19263,2.04406 c 0.4207,0.085 0.73663,0.27442 0.94775,0.56837 0.214,0.29044 0.31498,0.67808 0.30296,1.16291 -0.0179,0.72239 -0.27018,1.29593 -0.75673,1.72062 -0.48649,0.42144 -1.18728,0.67745 -2.10238,0.76803 -0.32281,0.0319 -0.64626,0.0331 -0.97034,0.004 -0.32136,-0.0266 -0.63914,-0.0844 -0.95336,-0.17343 l 0.036,-1.44965 c 0.29879,0.14571 0.59584,0.2494 0.89113,0.31106 0.29817,0.0581 0.59182,0.0729 0.88095,0.0443 0.42948,-0.0425 0.76005,-0.16124 0.99169,-0.35622 0.23446,-0.19524 0.35568,-0.45393 0.36368,-0.77608 0.008,-0.3319 -0.10345,-0.57079 -0.33503,-0.71665 -0.22872,-0.1494 -0.57184,-0.20145 -1.02939,-0.15618 l -0.64842,0.0642 0.03,-1.21047 0.68211,-0.0675 c 0.40702,-0.0403 0.712,-0.1435 0.91493,-0.30966 0.20302,-0.16941 0.30828,-0.40542 0.31579,-0.70805 0.007,-0.27983 -0.0845,-0.48663 -0.27442,-0.62041 -0.18989,-0.13376 -0.46168,-0.18313 -0.81537,-0.14814 -0.26105,0.0258 -0.52577,0.0861 -0.79413,0.18086 -0.26837,0.0947 -0.53613,0.22186 -0.80331,0.38138 l 0.0341,-1.37642 c 0.32259,-0.1358 0.64172,-0.2453 0.95741,-0.32848 0.31568,-0.0832 0.6251,-0.13977 0.92826,-0.16979 0.81685,-0.0808 1.42351,0.0149 1.81998,0.28729 0.39934,0.26884 0.59127,0.71565 0.57577,1.3404 -0.0106,0.42629 -0.1161,0.78567 -0.31657,1.07816 -0.20039,0.28927 -0.49143,0.50796 -0.87312,0.6561 m 4.39998,2.10611 2.76635,-0.27381 -0.0343,1.3813 -4.56848,0.45219 0.0343,-1.38131 2.35302,-2.57489 c 0.21024,-0.23504 0.36703,-0.45992 0.47036,-0.67465 0.10334,-0.21472 0.15774,-0.43272 0.16324,-0.65399 0.008,-0.34167 -0.0844,-0.60676 -0.27848,-0.7953 -0.19133,-0.1888 -0.45121,-0.26694 -0.77963,-0.23445 -0.25263,0.025 -0.5307,0.11584 -0.8342,0.27247 -0.30343,0.15338 -0.62944,0.37068 -0.97804,0.65186 l 0.0397,-1.60096 c 0.36838,-0.17603 0.73172,-0.31748 1.08999,-0.42437 0.35835,-0.11012 0.70876,-0.18212 1.05122,-0.21603 0.75228,-0.0745 1.33139,0.0597 1.73731,0.40259 0.40872,0.34257 0.60456,0.85715 0.58752,1.54373 -0.01,0.397 -0.10747,0.77671 -0.29287,1.13912 -0.18533,0.35918 -0.56865,0.8548 -1.14996,1.48687 l -1.37709,1.49963 m 4.23502,-6.31064 4.7369,-0.46886 -0.0263,1.05916 -2.60509,6.47067 -1.57897,0.15629 2.46658,-6.13561 -3.02741,0.29965 0.0343,-1.3813 m 9.29515,2.70736 c 0.0226,-0.91111 -0.0359,-1.54479 -0.17544,-1.90102 -0.13669,-0.35974 -0.37906,-0.5224 -0.72714,-0.48796 -0.34807,0.0345 -0.60114,0.24616 -0.75919,0.63508 -0.15799,0.38568 -0.24828,1.03408 -0.27088,1.94519 -0.0229,0.92088 0.0354,1.56268 0.17484,1.92541 0.1394,0.36274 0.38314,0.52689 0.73122,0.49243 0.34526,-0.0342 0.59696,-0.24736 0.75511,-0.63954 0.15814,-0.39219 0.24863,-1.04872 0.27148,-1.96959 m 1.62071,-0.14581 c -0.03,1.20722 -0.27765,2.16172 -0.74308,2.86347 -0.46537,0.6985 -1.11069,1.0886 -1.93596,1.17029 -0.82807,0.082 -1.45856,-0.18186 -1.89146,-0.79146 -0.43282,-0.61284 -0.63425,-1.52288 -0.6043,-2.73011 0.03,-1.21048 0.27773,-2.16496 0.74309,-2.86347 0.46544,-0.70176 1.1122,-1.09361 1.94028,-1.17559 0.82527,-0.0817 1.45431,0.18391 1.88714,0.79676 0.43289,0.6096 0.63432,1.51963 0.60429,2.73011"
id="path3885"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
d="m 498.4652,453.42295 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
id="path3887"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
d="m 496.77866,455.87356 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
id="path3889"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:50.9;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
d="m 499.54207,457.86404 c 37.88072,-3.53554 37.62819,-3.53554 37.62819,-3.53554"
id="path3891"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:export-ydpi="750"
inkscape:export-xdpi="750"
inkscape:export-filename="/home/perry/Desktop/path4684.png"
sodipodi:nodetypes="ccccc"
id="path3893"
d="m 571.18683,366.21059 c -11.74072,1.38257 -23.62379,1.48585 -35.29705,3.42783 1.10709,8.67351 0.93595,21.47328 1.55887,27.89784 11.04002,-1.39187 25.82375,-2.40517 36.67128,-4.95371 -0.0344,-8.21108 -0.9822,-17.72136 -2.9331,-26.37196 z"
style="opacity:0.434043;fill:url(#radialGradient2560);fill-opacity:1;fill-rule:evenodd;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="PW3270"
id="text274"
style="font-weight:bold;font-size:25.4px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583">
<path
d="m 84.795416,10.918196 h 7.925098 q 3.534668,0 5.419824,1.575097 1.897562,1.562696 1.897562,4.464844 0,2.914551 -1.897562,4.489648 -1.885156,1.562696 -5.419824,1.562696 h -3.150196 v 6.424414 h -4.774902 z m 4.774902,3.460253 v 5.171778 h 2.6417 q 1.389062,0 2.145605,-0.669727 0.756543,-0.682129 0.756543,-1.922363 0,-1.240234 -0.756543,-1.909961 -0.756543,-0.669727 -2.145605,-0.669727 z"
style="font-size:25.4px;stroke-width:0.264583"
id="path336" />
<path
d="m 101.83624,10.918196 h 4.57646 l 3.19981,13.456542 3.175,-13.456542 h 4.60126 l 3.175,13.456542 3.19981,-13.456542 h 4.53926 l -4.36563,18.516699 h -5.50664 l -3.36103,-14.07666 -3.32383,14.07666 h -5.50664 z"
style="font-size:25.4px;stroke-width:0.264583"
id="path338" />
<path
d="m 140.92842,19.451008 q 1.87276,0.483691 2.84014,1.686719 0.97979,1.190625 0.97979,3.038574 0,2.75332 -2.1084,4.191992 -2.1084,1.42627 -6.15157,1.42627 -1.42626,0 -2.86494,-0.235645 -1.42627,-0.223242 -2.82773,-0.682129 v -3.683496 q 1.33945,0.669727 2.6541,1.016992 1.32705,0.334864 2.60449,0.334864 1.89756,0 2.90215,-0.657325 1.01699,-0.657324 1.01699,-1.885156 0,-1.265039 -1.04179,-1.909961 -1.0294,-0.657324 -3.05098,-0.657324 h -1.90996 v -3.075781 h 2.00918 q 1.79834,0 2.67891,-0.558106 0.88056,-0.570508 0.88056,-1.723925 0,-1.066602 -0.85576,-1.649512 -0.85576,-0.58291 -2.41846,-0.58291 -1.15342,0 -2.33164,0.260449 -1.17822,0.260449 -2.34404,0.768945 v -3.497461 q 1.41387,-0.396875 2.80293,-0.595312 1.38906,-0.198438 2.72851,-0.198438 3.60909,0 5.39502,1.190625 1.79834,1.178223 1.79834,3.559473 0,1.624707 -0.85576,2.666504 -0.85576,1.029394 -2.53008,1.451074 z"
style="font-size:25.4px;stroke-width:0.264583"
id="path340" />
<path
d="m 154.08731,25.925031 h 8.14834 v 3.509864 h -13.45654 v -3.509864 l 6.75927,-5.965527 q 0.90538,-0.818555 1.33946,-1.599902 0.43408,-0.781348 0.43408,-1.624707 0,-1.302246 -0.88057,-2.095996 -0.86816,-0.79375 -2.31923,-0.79375 -1.11622,0 -2.44327,0.483691 -1.32705,0.471289 -2.84013,1.413867 v -4.067968 q 1.6123,-0.533301 3.1874,-0.806153 1.5751,-0.285254 3.08818,-0.285254 3.32383,0 5.15938,1.463477 1.84795,1.463476 1.84795,4.080371 0,1.513086 -0.78135,2.827734 -0.78135,1.302246 -3.28662,3.497461 z"
style="font-size:25.4px;stroke-width:0.264583"
id="path342" />
<path
d="m 166.14239,10.918196 h 13.95264 v 2.691308 l -7.21817,15.825391 h -4.65088 l 6.83369,-15.006836 h -8.91728 z"
style="font-size:25.4px;stroke-width:0.264583"
id="path344" />
<path
d="m 193.79962,20.157942 q 0,-3.472657 -0.65733,-4.886524 -0.64492,-1.426269 -2.18281,-1.426269 -1.53789,0 -2.19522,1.426269 -0.65732,1.413867 -0.65732,4.886524 0,3.509863 0.65732,4.948535 0.65733,1.438672 2.19522,1.438672 1.52549,0 2.18281,-1.438672 0.65733,-1.438672 0.65733,-4.948535 z m 4.7749,0.03721 q 0,4.601269 -1.98438,7.106542 -1.98437,2.492872 -5.63066,2.492872 -3.65869,0 -5.64307,-2.492872 -1.98437,-2.505273 -1.98437,-7.106542 0,-4.613672 1.98437,-7.106543 1.98438,-2.505274 5.64307,-2.505274 3.64629,0 5.63066,2.505274 1.98438,2.492871 1.98438,7.106543 z"
style="font-size:25.4px;stroke-width:0.264583"
id="path346" />
</g>
<g
id="g637">
<g
aria-label="GTK Based 3270 terminal emulator"
id="text278"
style="font-weight:bold;font-size:11.2889px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583"
transform="translate(0.05236)">
<path
d="m 91.751756,40.489492 q -0.71658,0.385851 -1.488282,0.578776 -0.76619,0.192926 -1.58199,0.192926 -1.852085,0 -2.932468,-1.146529 -1.080383,-1.152041 -1.080383,-3.119882 0,-1.989889 1.096919,-3.130906 1.102432,-1.141016 3.020663,-1.141016 0.738629,0 1.416625,0.15434 0.677995,0.15434 1.278821,0.457509 v 1.703257 q -0.622874,-0.391363 -1.234724,-0.584289 -0.611849,-0.192925 -1.229211,-0.192925 -1.141017,0 -1.758379,0.711068 -0.617361,0.705556 -0.617361,2.022962 0,1.306382 0.595313,2.01745 0.595313,0.711069 1.692232,0.711069 0.297657,0 0.551216,-0.03858 0.259072,-0.0441 0.457509,-0.132292 v -1.598526 h -1.163065 v -1.422137 h 2.976565 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path349" />
<path
d="m 92.347069,32.871689 h 6.824052 v 1.604038 h -2.45291 v 6.625614 h -1.912719 v -6.625614 h -2.458423 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path351" />
<path
d="m 100.1578,32.871689 h 1.91272 v 3.004126 l 2.75056,-3.004126 h 2.2214 l -3.57188,3.897096 3.93569,4.332556 h -2.39228 l -2.94349,-3.241149 v 3.241149 h -1.91272 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path353" />
<path
d="m 114.52799,36.057716 q 0.452,0 0.68351,-0.220486 0.23702,-0.220486 0.23702,-0.650435 0,-0.424436 -0.23702,-0.644922 -0.23151,-0.225999 -0.68351,-0.225999 h -1.05282 v 1.741842 z m 0.0661,3.59944 q 0.57878,0 0.86541,-0.270096 0.29214,-0.270096 0.29214,-0.815799 0,-0.53468 -0.29214,-0.799263 -0.28663,-0.270096 -0.86541,-0.270096 h -1.11897 v 2.155254 z m 1.77491,-2.960029 q 0.61737,0.198437 0.95361,0.733117 0.33624,0.534679 0.33624,1.311893 0,1.190627 -0.72761,1.774915 -0.72209,0.584289 -2.19935,0.584289 h -3.16949 v -8.229652 h 2.86632 q 1.54341,0 2.23243,0.518143 0.69453,0.518143 0.69453,1.659159 0,0.600826 -0.25356,1.025262 -0.24805,0.418924 -0.73312,0.622874 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path355" />
<path
d="m 121.71585,38.323213 q -0.55673,0 -0.83785,0.209462 -0.28112,0.209462 -0.28112,0.617362 0,0.374827 0.226,0.589801 0.226,0.209462 0.62838,0.209462 0.50161,0 0.84337,-0.396875 0.34175,-0.402388 0.34175,-1.003213 v -0.225999 z m 2.71198,-0.744141 v 3.522269 h -1.79145 v -0.915018 q -0.35829,0.56224 -0.80478,0.821312 -0.44648,0.253559 -1.08589,0.253559 -0.86541,0 -1.4056,-0.556728 -0.53468,-0.56224 -0.53468,-1.45521 0,-1.085895 0.67248,-1.593014 0.67249,-0.507118 2.11116,-0.507118 h 1.04731 v -0.154341 q 0,-0.468533 -0.33624,-0.683507 -0.33073,-0.220487 -1.03078,-0.220487 -0.57326,0 -1.06384,0.12678 -0.49058,0.12678 -0.91502,0.380339 v -1.504819 q 0.57326,-0.154341 1.14653,-0.231511 0.57877,-0.08268 1.15204,-0.08268 1.50482,0 2.17179,0.661459 0.66697,0.655946 0.66697,2.138717 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path357" />
<path
d="m 130.41403,35.120649 v 1.499307 q -0.56775,-0.264583 -1.10243,-0.396875 -0.52917,-0.132292 -0.9977,-0.132292 -0.50712,0 -0.75516,0.143316 -0.24254,0.137804 -0.24254,0.429949 0,0.237023 0.1819,0.363802 0.18742,0.12678 0.67249,0.187414 l 0.30868,0.04961 q 1.36701,0.192926 1.83554,0.633898 0.47405,0.440973 0.47405,1.383552 0,0.986676 -0.65595,1.482771 -0.65594,0.496094 -1.95681,0.496094 -0.55122,0 -1.14102,-0.09922 -0.58429,-0.09371 -1.20165,-0.286632 v -1.499307 q 0.52917,0.286632 1.0859,0.429948 0.56224,0.143316 1.1355,0.143316 0.51814,0 0.78273,-0.159852 0.26458,-0.159853 0.26458,-0.474046 0,-0.264584 -0.1819,-0.391363 -0.1819,-0.132292 -0.72209,-0.20395 l -0.3142,-0.0441 q -1.18511,-0.165365 -1.66467,-0.61185 -0.47404,-0.446485 -0.47404,-1.355991 0,-0.981164 0.60633,-1.45521 0.60634,-0.474045 1.8576,-0.474045 0.49058,0 1.03077,0.08268 0.5402,0.08268 1.17409,0.259071 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path359" />
<path
d="m 137.66804,37.997996 v 0.56224 h -4.15066 q 0.0606,0.694532 0.44649,1.041798 0.39136,0.347266 1.08589,0.347266 0.56224,0 1.14653,-0.181901 0.5898,-0.187413 1.20716,-0.56224 v 1.521355 q -0.62838,0.264584 -1.26228,0.396876 -0.62839,0.137804 -1.25677,0.137804 -1.51033,0 -2.34818,-0.848873 -0.83234,-0.854384 -0.83234,-2.392276 0,-1.510332 0.82131,-2.375741 0.82131,-0.865408 2.25999,-0.865408 1.31189,0 2.09462,0.876433 0.78824,0.876433 0.78824,2.342667 z m -1.82453,-0.655947 q 0,-0.56224 -0.29765,-0.903994 -0.29215,-0.347266 -0.77171,-0.347266 -0.51263,0 -0.83784,0.325218 -0.31971,0.319705 -0.40239,0.926042 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path361" />
<path
d="m 142.79434,35.831718 v -3.307295 h 1.78594 v 8.576918 h -1.78594 v -0.892969 q -0.36931,0.545703 -0.81028,0.799263 -0.44098,0.253559 -1.02526,0.253559 -1.02527,0 -1.68673,-0.903994 -0.65594,-0.909506 -0.65594,-2.337155 0,-1.427649 0.65594,-2.331643 0.66146,-0.909506 1.68673,-0.909506 0.57877,0 1.01974,0.259071 0.44649,0.253559 0.8158,0.793751 z m -1.17409,3.996315 q 0.57327,0 0.87093,-0.463022 0.30316,-0.463021 0.30316,-1.344966 0,-0.881946 -0.30316,-1.344967 -0.29766,-0.463021 -0.87093,-0.463021 -0.56224,0 -0.8654,0.463021 -0.29766,0.463021 -0.29766,1.344967 0,0.881945 0.29766,1.344966 0.30316,0.463022 0.8654,0.463022 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path363" />
<path
d="m 153.69739,36.664054 q 0.74414,0.214974 1.13551,0.749653 0.39136,0.529167 0.39136,1.350479 0,1.223699 -0.84336,1.86311 -0.84336,0.633898 -2.46393,0.633898 -0.56776,0 -1.14102,-0.104731 -0.57327,-0.09922 -1.13551,-0.303169 v -1.637111 q 0.53468,0.297657 1.06385,0.451997 0.52917,0.148828 1.0418,0.148828 0.76068,0 1.16306,-0.292144 0.40239,-0.292144 0.40239,-0.837848 0,-0.56224 -0.41341,-0.848873 -0.41341,-0.292144 -1.2237,-0.292144 h -0.76068 v -1.367015 h 0.80478 q 0.71658,0 1.06936,-0.248047 0.35277,-0.25356 0.35277,-0.76619 0,-0.474046 -0.34175,-0.733117 -0.34175,-0.259072 -0.97014,-0.259072 -0.46302,0 -0.93155,0.115755 -0.46854,0.115756 -0.93707,0.341754 v -1.554428 q 0.56775,-0.176389 1.11897,-0.264584 0.55672,-0.08819 1.0914,-0.08819 1.44419,0 2.16077,0.529167 0.71658,0.523655 0.71658,1.581989 0,0.722093 -0.34175,1.185114 -0.34176,0.457509 -1.00873,0.644923 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path365" />
<path
d="m 158.95599,39.5414 h 3.25769 v 1.559941 h -5.37987 V 39.5414 l 2.70096,-2.651348 q 0.3638,-0.363802 0.53468,-0.711068 0.17639,-0.347266 0.17639,-0.722093 0,-0.578777 -0.35278,-0.931555 -0.34727,-0.352778 -0.92604,-0.352778 -0.44649,0 -0.98117,0.214974 -0.52916,0.209462 -1.1355,0.628386 V 33.20793 q 0.64492,-0.237022 1.27331,-0.35829 0.6339,-0.126779 1.24023,-0.126779 1.32843,0 2.06155,0.650434 0.73863,0.650435 0.73863,1.8135 0,0.672484 -0.31419,1.256772 -0.30868,0.578777 -1.3119,1.554429 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path367" />
<path
d="m 163.77361,32.871689 h 5.58382 v 1.196138 l -2.88837,7.033514 h -1.86311 l 2.73403,-6.669711 h -3.56637 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path369" />
<path
d="m 174.83652,36.978247 q 0,-1.543405 -0.26458,-2.171791 -0.25908,-0.633898 -0.87093,-0.633898 -0.61736,0 -0.88194,0.633898 -0.25907,0.628386 -0.25907,2.171791 0,1.559941 0.25907,2.199351 0.26458,0.63941 0.88194,0.63941 0.60634,0 0.87093,-0.63941 0.26458,-0.63941 0.26458,-2.199351 z m 1.90721,0.01654 q 0,2.045011 -0.79376,3.158467 -0.79375,1.107944 -2.24896,1.107944 -1.46623,0 -2.25998,-1.107944 -0.79375,-1.113456 -0.79375,-3.158467 0,-2.050523 0.79375,-3.158467 0.79375,-1.113455 2.25998,-1.113455 1.45521,0 2.24896,1.113455 0.79376,1.107944 0.79376,3.158467 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path371" />
<path
d="m 183.55676,33.174857 v 1.752867 h 1.83003 v 1.411112 h -1.83003 v 2.618276 q 0,0.429948 0.14883,0.584288 0.15434,0.148829 0.61184,0.148829 h 0.91502 v 1.411112 h -1.52135 q -1.05282,0 -1.4938,-0.48507 -0.44097,-0.490582 -0.44097,-1.659159 v -2.618276 h -0.88195 v -1.411112 h 0.88195 v -1.752867 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path373" />
<path
d="m 192.01792,37.997996 v 0.56224 h -4.15066 q 0.0606,0.694532 0.44649,1.041798 0.39136,0.347266 1.08589,0.347266 0.56224,0 1.14653,-0.181901 0.5898,-0.187413 1.20716,-0.56224 v 1.521355 q -0.62838,0.264584 -1.26228,0.396876 -0.62839,0.137804 -1.25677,0.137804 -1.51033,0 -2.34818,-0.848873 -0.83234,-0.854384 -0.83234,-2.392276 0,-1.510332 0.82131,-2.375741 0.82132,-0.865408 2.25999,-0.865408 1.31189,0 2.09462,0.876433 0.78824,0.876433 0.78824,2.342667 z m -1.82453,-0.655947 q 0,-0.56224 -0.29765,-0.903994 -0.29215,-0.347266 -0.77171,-0.347266 -0.51263,0 -0.83784,0.325218 -0.31971,0.319705 -0.40239,0.926042 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path375" />
<path
d="m 197.49149,36.608932 q -0.23702,-0.121267 -0.46853,-0.176389 -0.226,-0.06063 -0.46302,-0.06063 -0.68351,0 -1.05283,0.490582 -0.36931,0.48507 -0.36931,1.394577 v 2.844273 h -1.77492 v -6.173617 h 1.77492 v 1.014237 q 0.34175,-0.606337 0.78273,-0.881945 0.44648,-0.28112 1.06935,-0.28112 0.0882,0 0.19293,0.01102 0.10473,0.0055 0.30317,0.03307 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path377" />
<path
d="m 203.52179,35.952985 q 0.33624,-0.573264 0.79926,-0.870921 0.46303,-0.303168 1.01975,-0.303168 0.95912,0 1.46073,0.655946 0.5016,0.655947 0.5016,1.907207 v 3.759292 h -1.78594 v -3.2191 q 0.006,-0.07166 0.006,-0.148829 0.006,-0.07717 0.006,-0.220486 0,-0.655947 -0.17639,-0.948091 -0.17088,-0.297657 -0.56224,-0.297657 -0.50161,0 -0.77722,0.463022 -0.2756,0.463021 -0.28663,1.339454 v 3.031687 h -1.78594 v -3.2191 q 0,-1.025262 -0.15985,-1.317406 -0.15985,-0.297657 -0.56775,-0.297657 -0.50712,0 -0.78824,0.468534 -0.27561,0.463021 -0.27561,1.32843 v 3.037199 h -1.78594 v -6.173617 h 1.78594 v 0.903994 q 0.32522,-0.523655 0.74965,-0.788239 0.42444,-0.264583 0.93707,-0.264583 0.57327,0 1.01424,0.30868 0.44648,0.308681 0.67248,0.865409 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path379" />
<path
d="m 208.95678,34.927724 h 1.77491 v 6.173617 h -1.77491 z m 0,-2.403301 h 1.77491 v 1.60955 h -1.77491 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path381" />
<path
d="m 218.01877,37.342049 v 3.759292 h -1.78594 v -0.611849 -2.265497 q 0,-0.799263 -0.0331,-1.102432 -0.0331,-0.303169 -0.11025,-0.446485 -0.10473,-0.192925 -0.28663,-0.297656 -0.17639,-0.110244 -0.40239,-0.110244 -0.55673,0 -0.87643,0.479558 -0.31419,0.474046 -0.31419,1.317406 v 3.037199 h -1.77492 v -6.173617 h 1.77492 v 0.903994 q 0.40238,-0.540192 0.85438,-0.793751 0.452,-0.259071 0.9977,-0.259071 0.95912,0 1.45521,0.655946 0.50161,0.655947 0.50161,1.907207 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path383" />
<path
d="m 222.1584,38.323213 q -0.55673,0 -0.83785,0.209462 -0.28112,0.209462 -0.28112,0.617362 0,0.374827 0.226,0.589801 0.22599,0.209462 0.62838,0.209462 0.50161,0 0.84336,-0.396875 0.34176,-0.402388 0.34176,-1.003213 v -0.225999 z m 2.71198,-0.744141 v 3.522269 h -1.79145 v -0.915018 q -0.35829,0.56224 -0.80478,0.821312 -0.44648,0.253559 -1.08589,0.253559 -0.86541,0 -1.4056,-0.556728 -0.53468,-0.56224 -0.53468,-1.45521 0,-1.085895 0.67248,-1.593014 0.67248,-0.507118 2.11116,-0.507118 h 1.04731 v -0.154341 q 0,-0.468533 -0.33625,-0.683507 -0.33073,-0.220487 -1.03077,-0.220487 -0.57326,0 -1.06385,0.12678 -0.49058,0.12678 -0.91501,0.380339 v -1.504819 q 0.57326,-0.154341 1.14652,-0.231511 0.57878,-0.08268 1.15205,-0.08268 1.50481,0 2.17179,0.661459 0.66697,0.655946 0.66697,2.138717 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path385" />
<path
d="m 226.51852,32.524423 h 1.77492 v 8.576918 h -1.77492 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path387" />
<path
d="m 239.07521,37.997996 v 0.56224 h -4.15065 q 0.0606,0.694532 0.44648,1.041798 0.39137,0.347266 1.0859,0.347266 0.56224,0 1.14653,-0.181901 0.5898,-0.187413 1.20716,-0.56224 v 1.521355 q -0.62839,0.264584 -1.26228,0.396876 -0.62839,0.137804 -1.25678,0.137804 -1.51033,0 -2.34818,-0.848873 -0.83233,-0.854384 -0.83233,-2.392276 0,-1.510332 0.82131,-2.375741 0.82131,-0.865408 2.25999,-0.865408 1.31189,0 2.09462,0.876433 0.78823,0.876433 0.78823,2.342667 z m -1.82452,-0.655947 q 0,-0.56224 -0.29766,-0.903994 -0.29214,-0.347266 -0.7717,-0.347266 -0.51263,0 -0.83785,0.325218 -0.3197,0.319705 -0.40238,0.926042 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path389" />
<path
d="m 245.56854,35.952985 q 0.33624,-0.573264 0.79926,-0.870921 0.46302,-0.303168 1.01975,-0.303168 0.95911,0 1.46072,0.655946 0.50161,0.655947 0.50161,1.907207 v 3.759292 h -1.78594 v -3.2191 q 0.006,-0.07166 0.006,-0.148829 0.006,-0.07717 0.006,-0.220486 0,-0.655947 -0.17639,-0.948091 -0.17087,-0.297657 -0.56224,-0.297657 -0.5016,0 -0.77721,0.463022 -0.27561,0.463021 -0.28663,1.339454 v 3.031687 h -1.78594 v -3.2191 q 0,-1.025262 -0.15986,-1.317406 -0.15985,-0.297657 -0.56775,-0.297657 -0.50712,0 -0.78824,0.468534 -0.2756,0.463021 -0.2756,1.32843 v 3.037199 h -1.78594 v -6.173617 h 1.78594 v 0.903994 q 0.32521,-0.523655 0.74965,-0.788239 0.42444,-0.264583 0.93707,-0.264583 0.57326,0 1.01423,0.30868 0.44649,0.308681 0.67249,0.865409 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path391" />
<path
d="m 250.94289,38.69804 v -3.770316 h 1.78594 v 0.617362 q 0,0.501606 -0.006,1.262284 -0.006,0.755166 -0.006,1.008725 0,0.744141 0.0331,1.074871 0.0386,0.325217 0.12127,0.474045 0.11024,0.192926 0.28663,0.297657 0.17639,0.104731 0.40239,0.104731 0.55672,0 0.87092,-0.474046 0.3197,-0.474045 0.3197,-1.317406 v -3.048223 h 1.77492 v 6.173617 h -1.77492 v -0.892969 q -0.40239,0.540191 -0.85438,0.799263 -0.44649,0.253559 -0.98668,0.253559 -0.95911,0 -1.46623,-0.655947 -0.50161,-0.655947 -0.50161,-1.907207 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path393" />
<path
d="m 258.23547,32.524423 h 1.77492 v 8.576918 h -1.77492 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path395" />
<path
d="m 264.20515,38.323213 q -0.55673,0 -0.83785,0.209462 -0.28112,0.209462 -0.28112,0.617362 0,0.374827 0.226,0.589801 0.226,0.209462 0.62838,0.209462 0.50161,0 0.84336,-0.396875 0.34176,-0.402388 0.34176,-1.003213 v -0.225999 z m 2.71198,-0.744141 v 3.522269 h -1.79145 v -0.915018 q -0.35829,0.56224 -0.80478,0.821312 -0.44648,0.253559 -1.08589,0.253559 -0.86541,0 -1.4056,-0.556728 -0.53468,-0.56224 -0.53468,-1.45521 0,-1.085895 0.67248,-1.593014 0.67249,-0.507118 2.11116,-0.507118 h 1.04731 v -0.154341 q 0,-0.468533 -0.33624,-0.683507 -0.33073,-0.220487 -1.03078,-0.220487 -0.57326,0 -1.06384,0.12678 -0.49059,0.12678 -0.91502,0.380339 v -1.504819 q 0.57326,-0.154341 1.14653,-0.231511 0.57877,-0.08268 1.15204,-0.08268 1.50482,0 2.17179,0.661459 0.66697,0.655946 0.66697,2.138717 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path397" />
<path
d="m 270.50554,33.174857 v 1.752867 h 1.83004 v 1.411112 h -1.83004 v 2.618276 q 0,0.429948 0.14883,0.584288 0.15434,0.148829 0.61185,0.148829 h 0.91502 v 1.411112 h -1.52136 q -1.05282,0 -1.49379,-0.48507 -0.44098,-0.490582 -0.44098,-1.659159 v -2.618276 h -0.88194 v -1.411112 h 0.88194 v -1.752867 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path399" />
<path
d="m 276.0618,36.190008 q -0.5898,0 -0.89848,0.474046 -0.30868,0.468533 -0.30868,1.355991 0,0.887457 0.30868,1.361503 0.30868,0.468533 0.89848,0.468533 0.58429,0 0.88746,-0.468533 0.30868,-0.474046 0.30868,-1.361503 0,-0.887458 -0.30868,-1.355991 -0.30317,-0.474046 -0.88746,-0.474046 z m 0,-1.411112 q 1.43867,0 2.24345,0.859896 0.80477,0.859897 0.80477,2.381253 0,1.521355 -0.80477,2.381252 -0.80478,0.859897 -2.24345,0.859897 -1.43316,0 -2.24896,-0.859897 -0.81029,-0.859897 -0.81029,-2.381252 0,-1.521356 0.81029,-2.381253 0.8158,-0.859896 2.24896,-0.859896 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path401" />
<path
d="m 284.52848,36.608932 q -0.23703,-0.121267 -0.46854,-0.176389 -0.22599,-0.06063 -0.46302,-0.06063 -0.6835,0 -1.05282,0.490582 -0.36931,0.48507 -0.36931,1.394577 v 2.844273 h -1.77492 v -6.173617 h 1.77492 v 1.014237 q 0.34175,-0.606337 0.78272,-0.881945 0.44649,-0.28112 1.06936,-0.28112 0.0882,0 0.19293,0.01102 0.10473,0.0055 0.30317,0.03307 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:11.2889px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path403" />
</g>
<g
aria-label="A modern, GTK-based, completely free tn3270 emulator. "
id="text282"
style="font-weight:bold;font-size:7.76111px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583"
transform="translate(0.143658,7.4083337)">
<path
d="M 88.275988,54.893727 H 86.222023 L 85.896117,55.9245 h -1.318782 l 1.887223,-5.65788 h 1.565106 l 1.887223,5.65788 h -1.322572 z m -1.728059,-1.04972 h 1.394574 l -0.693497,-2.251025 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path406" />
<path
d="m 96.50322,52.385009 q 0.231166,-0.394119 0.549493,-0.598758 0.318326,-0.208428 0.701077,-0.208428 0.659391,0 1.004245,0.450963 0.344854,0.450963 0.344854,1.311203 V 55.9245 h -1.227832 v -2.213129 q 0.0038,-0.04926 0.0038,-0.10232 0.0038,-0.05305 0.0038,-0.151584 0,-0.450963 -0.121267,-0.651812 -0.117478,-0.204639 -0.38654,-0.204639 -0.344854,0 -0.534334,0.318327 -0.18948,0.318327 -0.19706,0.920874 V 55.9245 h -1.227831 v -2.213129 q 0,-0.704867 -0.109899,-0.905716 -0.109898,-0.204639 -0.390329,-0.204639 -0.348644,0 -0.541914,0.322117 -0.18948,0.318327 -0.18948,0.913294 V 55.9245 H 92.95615 v -4.244357 h 1.227832 v 0.621495 q 0.223587,-0.360013 0.515386,-0.541914 0.2918,-0.181901 0.644233,-0.181901 0.394119,0 0.697287,0.212218 0.306958,0.212218 0.462332,0.594968 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path408" />
<path
d="m 102.05499,52.547962 q -0.40549,0 -0.61771,0.325906 -0.21221,0.322116 -0.21221,0.932243 0,0.610126 0.21221,0.936032 0.21222,0.322116 0.61771,0.322116 0.4017,0 0.61013,-0.322116 0.21221,-0.325906 0.21221,-0.936032 0,-0.610127 -0.21221,-0.932243 -0.20843,-0.325906 -0.61013,-0.325906 z m 0,-0.970139 q 0.98909,0 1.54237,0.591179 0.55328,0.591178 0.55328,1.637109 0,1.04593 -0.55328,1.637109 -0.55328,0.591178 -1.54237,0.591178 -0.9853,0 -1.54616,-0.591178 -0.55707,-0.591179 -0.55707,-1.637109 0,-1.045931 0.55707,-1.637109 0.56086,-0.591179 1.54616,-0.591179 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path410" />
<path
d="m 107.63708,52.301638 v -2.273763 h 1.22783 V 55.9245 h -1.22783 v -0.613916 q -0.25391,0.37517 -0.55707,0.549492 -0.30317,0.174322 -0.70487,0.174322 -0.70487,0 -1.15962,-0.621495 -0.45096,-0.625285 -0.45096,-1.606792 0,-0.981508 0.45096,-1.603003 0.45475,-0.625285 1.15962,-0.625285 0.39791,0 0.70108,0.178112 0.30695,0.174321 0.56086,0.545703 z m -0.80719,2.747463 q 0.39412,0 0.59876,-0.318327 0.20843,-0.318327 0.20843,-0.924663 0,-0.606337 -0.20843,-0.924664 -0.20464,-0.318327 -0.59876,-0.318327 -0.38654,0 -0.59497,0.318327 -0.20464,0.318327 -0.20464,0.924664 0,0.606336 0.20464,0.924663 0.20843,0.318327 0.59497,0.318327 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path412" />
<path
d="m 113.84824,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40548,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35244,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path414" />
<path
d="m 117.61132,52.835972 q -0.16296,-0.08337 -0.32212,-0.121267 -0.15537,-0.04169 -0.31833,-0.04169 -0.46991,0 -0.72381,0.337275 -0.2539,0.333485 -0.2539,0.95877 v 1.95544 h -1.22026 v -4.244357 h 1.22026 v 0.697287 q 0.23495,-0.416857 0.53812,-0.606337 0.30696,-0.19327 0.73518,-0.19327 0.0606,0 0.13264,0.0076 0.072,0.0038 0.20843,0.02274 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path416" />
<path
d="M 122.05652,53.339989 V 55.9245 h -1.22783 v -0.420647 -1.557527 q 0,-0.549493 -0.0227,-0.757921 -0.0227,-0.208428 -0.0758,-0.306958 -0.072,-0.132636 -0.19706,-0.204638 -0.12127,-0.07579 -0.27664,-0.07579 -0.38275,0 -0.60255,0.329696 -0.216,0.325906 -0.216,0.905715 v 2.08807 h -1.22026 v -4.244357 h 1.22026 v 0.621495 q 0.27664,-0.371382 0.58738,-0.545703 0.31075,-0.178112 0.68592,-0.178112 0.65939,0 1.00046,0.450963 0.34485,0.450963 0.34485,1.311203 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path418" />
<path
d="m 123.31467,54.457923 h 1.22783 v 1.155829 l -0.84129,1.413522 h -0.7276 l 0.34106,-1.413522 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path420" />
<path
d="m 132.90237,55.503853 q -0.49265,0.265273 -1.02319,0.397909 -0.52676,0.132636 -1.08762,0.132636 -1.27331,0 -2.01607,-0.788238 -0.74276,-0.792027 -0.74276,-2.144916 0,-1.368047 0.75413,-2.152495 0.75792,-0.784448 2.0767,-0.784448 0.50781,0 0.97393,0.106109 0.46612,0.106109 0.87919,0.314537 v 1.170988 q -0.42822,-0.269062 -0.84887,-0.401698 -0.42065,-0.132637 -0.84508,-0.132637 -0.78445,0 -1.20889,0.488859 -0.42443,0.48507 -0.42443,1.390785 0,0.898136 0.40928,1.386995 0.40927,0.488859 1.1634,0.488859 0.20464,0 0.37896,-0.02653 0.17812,-0.03032 0.31454,-0.09095 v -1.098986 h -0.79961 v -0.977718 h 2.04639 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path422" />
<path
d="m 133.31165,50.26662 h 4.69153 v 1.102775 H 136.3168 V 55.9245 h -1.31499 v -4.555105 h -1.69016 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path424" />
<path
d="m 138.68152,50.26662 h 1.31499 v 2.065335 l 1.89101,-2.065335 h 1.52721 l -2.45566,2.67925 2.70578,2.97863 h -1.64469 l -2.02365,-2.228288 V 55.9245 h -1.31499 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path426" />
<path
d="m 143.15704,53.13914 h 2.14113 v 1.102775 h -2.14113 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path428" />
<path
d="m 148.29574,55.049101 q 0.39412,0 0.59876,-0.318327 0.20843,-0.318327 0.20843,-0.924663 0,-0.606337 -0.20843,-0.924664 -0.20464,-0.318327 -0.59876,-0.318327 -0.39032,0 -0.60254,0.322117 -0.20843,0.318327 -0.20843,0.920874 0,0.602547 0.20843,0.924663 0.21222,0.318327 0.60254,0.318327 z m -0.81097,-2.747463 q 0.2539,-0.371382 0.56086,-0.545703 0.30696,-0.178112 0.70487,-0.178112 0.70486,0 1.15962,0.625285 0.45475,0.621495 0.45475,1.603003 0,0.981507 -0.45475,1.606792 -0.45476,0.621495 -1.15962,0.621495 -0.39791,0 -0.70487,-0.174322 -0.30696,-0.178111 -0.56086,-0.549492 V 55.9245 h -1.22025 v -5.896625 h 1.22025 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path430" />
<path
d="m 152.9759,54.014539 q -0.38275,0 -0.57602,0.144005 -0.19327,0.144005 -0.19327,0.424436 0,0.257693 0.15538,0.405487 0.15537,0.144005 0.43201,0.144005 0.34486,0 0.57981,-0.272851 0.23496,-0.276641 0.23496,-0.689708 v -0.155374 z m 1.86449,-0.511597 V 55.9245 h -1.23162 v -0.629075 q -0.24633,0.38654 -0.55329,0.564651 -0.30695,0.174322 -0.74655,0.174322 -0.59496,0 -0.96635,-0.38275 -0.36759,-0.38654 -0.36759,-1.000456 0,-0.746552 0.46233,-1.095195 0.46234,-0.348644 1.45142,-0.348644 h 0.72003 v -0.106109 q 0,-0.322116 -0.23117,-0.469911 -0.22737,-0.151584 -0.70865,-0.151584 -0.39412,0 -0.7314,0.08716 -0.33727,0.08716 -0.62907,0.261483 V 51.79383 q 0.39412,-0.106109 0.78824,-0.159164 0.3979,-0.05684 0.79202,-0.05684 1.03456,0 1.49311,0.454753 0.45854,0.450963 0.45854,1.470366 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path432" />
<path
d="m 158.9559,51.812779 v 1.030772 q -0.39033,-0.181901 -0.75792,-0.272851 -0.3638,-0.09095 -0.68592,-0.09095 -0.34864,0 -0.51917,0.09853 -0.16675,0.09474 -0.16675,0.295589 0,0.162953 0.12506,0.250114 0.12885,0.08716 0.46233,0.128846 l 0.21222,0.03411 q 0.93982,0.132636 1.26194,0.435804 0.3259,0.303169 0.3259,0.951191 0,0.678339 -0.45096,1.019404 -0.45096,0.341064 -1.34531,0.341064 -0.37896,0 -0.78445,-0.06821 -0.4017,-0.06442 -0.82613,-0.197059 V 54.73836 q 0.3638,0.19706 0.74655,0.295589 0.38654,0.09853 0.78066,0.09853 0.35622,0 0.53812,-0.109898 0.1819,-0.109899 0.1819,-0.325906 0,-0.181901 -0.12505,-0.269062 -0.12506,-0.09095 -0.49644,-0.140216 l -0.21601,-0.03032 q -0.81476,-0.113689 -1.14446,-0.420647 -0.3259,-0.306957 -0.3259,-0.932242 0,-0.67455 0.41685,-1.000456 0.41686,-0.325906 1.2771,-0.325906 0.33727,0 0.70865,0.05684 0.37139,0.05684 0.80719,0.178112 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path434" />
<path
d="m 163.94302,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40548,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35244,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path436" />
<path
d="m 167.46735,52.301638 v -2.273763 h 1.22784 V 55.9245 h -1.22784 v -0.613916 q -0.2539,0.37517 -0.55707,0.549492 -0.30317,0.174322 -0.70486,0.174322 -0.70487,0 -1.15962,-0.621495 -0.45097,-0.625285 -0.45097,-1.606792 0,-0.981508 0.45097,-1.603003 0.45475,-0.625285 1.15962,-0.625285 0.3979,0 0.70107,0.178112 0.30696,0.174321 0.56086,0.545703 z m -0.80718,2.747463 q 0.39412,0 0.59876,-0.318327 0.20842,-0.318327 0.20842,-0.924663 0,-0.606337 -0.20842,-0.924664 -0.20464,-0.318327 -0.59876,-0.318327 -0.38654,0 -0.59497,0.318327 -0.20464,0.318327 -0.20464,0.924664 0,0.606336 0.20464,0.924663 0.20843,0.318327 0.59497,0.318327 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path438" />
<path
d="m 169.99123,54.457923 h 1.22783 v 1.155829 l -0.84129,1.413522 h -0.7276 l 0.34106,-1.413522 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path440" />
<path
d="m 178.03277,51.812779 v 1.106564 q -0.24633,-0.18948 -0.50023,-0.280431 -0.25011,-0.09095 -0.51918,-0.09095 -0.51159,0 -0.79581,0.333485 -0.28422,0.329696 -0.28422,0.924664 0,0.594968 0.28422,0.928453 0.28422,0.329695 0.79581,0.329695 0.28801,0 0.54571,-0.09474 0.25769,-0.09474 0.4737,-0.280431 v 1.110355 q -0.28422,0.117477 -0.57981,0.174321 -0.29559,0.06063 -0.59118,0.06063 -1.03456,0 -1.61816,-0.587389 -0.5836,-0.591178 -0.5836,-1.640898 0,-1.049721 0.5836,-1.637109 0.5836,-0.591179 1.61816,-0.591179 0.29938,0 0.59118,0.06063 0.2918,0.05684 0.57981,0.174322 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path442" />
<path
d="m 180.9015,52.547962 q -0.40548,0 -0.6177,0.325906 -0.21222,0.322116 -0.21222,0.932243 0,0.610126 0.21222,0.936032 0.21222,0.322116 0.6177,0.322116 0.4017,0 0.61013,-0.322116 0.21222,-0.325906 0.21222,-0.936032 0,-0.610127 -0.21222,-0.932243 -0.20843,-0.325906 -0.61013,-0.325906 z m 0,-0.970139 q 0.98909,0 1.54237,0.591179 0.55328,0.591178 0.55328,1.637109 0,1.04593 -0.55328,1.637109 -0.55328,0.591178 -1.54237,0.591178 -0.98529,0 -1.54616,-0.591178 -0.55707,-0.591179 -0.55707,-1.637109 0,-1.045931 0.55707,-1.637109 0.56087,-0.591179 1.54616,-0.591179 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path444" />
<path
d="m 187.42341,52.385009 q 0.23117,-0.394119 0.54949,-0.598758 0.31833,-0.208428 0.70108,-0.208428 0.65939,0 1.00425,0.450963 0.34485,0.450963 0.34485,1.311203 V 55.9245 h -1.22783 v -2.213129 q 0.004,-0.04926 0.004,-0.10232 0.004,-0.05305 0.004,-0.151584 0,-0.450963 -0.12127,-0.651812 -0.11748,-0.204639 -0.38654,-0.204639 -0.34485,0 -0.53433,0.318327 -0.18948,0.318327 -0.19706,0.920874 V 55.9245 h -1.22784 v -2.213129 q 0,-0.704867 -0.10989,-0.905716 -0.1099,-0.204639 -0.39033,-0.204639 -0.34865,0 -0.54192,0.322117 -0.18948,0.318327 -0.18948,0.913294 V 55.9245 h -1.22783 v -4.244357 h 1.22783 v 0.621495 q 0.22359,-0.360013 0.51539,-0.541914 0.2918,-0.181901 0.64423,-0.181901 0.39412,0 0.69729,0.212218 0.30696,0.212218 0.46233,0.594968 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path446" />
<path
d="m 192.38021,55.310584 v 2.228287 h -1.22025 v -5.858728 h 1.22025 v 0.621495 q 0.25391,-0.371382 0.56086,-0.545703 0.30696,-0.178112 0.70487,-0.178112 0.70487,0 1.15962,0.625285 0.45475,0.621495 0.45475,1.603003 0,0.981507 -0.45475,1.606792 -0.45475,0.621495 -1.15962,0.621495 -0.39791,0 -0.70487,-0.174322 -0.30695,-0.178111 -0.56086,-0.549492 z m 0.81098,-2.747464 q -0.39033,0 -0.60255,0.322117 -0.20843,0.318327 -0.20843,0.920874 0,0.602547 0.20843,0.924663 0.21222,0.318327 0.60255,0.318327 0.39412,0 0.59875,-0.318327 0.20843,-0.318327 0.20843,-0.924663 0,-0.606337 -0.20843,-0.924664 -0.20463,-0.318327 -0.59875,-0.318327 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path448" />
<path
d="m 196.15845,50.027875 h 1.22025 V 55.9245 h -1.22025 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path450" />
<path
d="m 202.36203,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40549,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43201,0.181901 -0.86782,0.272852 -0.43201,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90193,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20463,-0.621495 -0.20085,-0.238745 -0.53055,-0.238745 -0.35243,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path452" />
<path
d="m 204.62064,50.475048 v 1.205095 h 1.25815 v 0.970138 h -1.25815 v 1.800062 q 0,0.29559 0.10232,0.401698 0.10611,0.10232 0.42065,0.10232 h 0.62907 V 55.9245 h -1.04593 q -0.72382,0 -1.02698,-0.333486 -0.30317,-0.337274 -0.30317,-1.140671 v -1.800062 h -0.60634 v -0.970138 h 0.60634 v -1.205095 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path454" />
<path
d="m 210.43768,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78823,-0.125057 0.40549,-0.128846 0.82993,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35244,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path456" />
<path
d="m 211.36234,50.027875 h 1.22026 V 55.9245 h -1.22026 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path458" />
<path
d="m 213.24957,51.680143 h 1.22404 l 1.02699,2.880099 0.8716,-2.880099 h 1.22026 l -1.6068,4.646055 q -0.24253,0.708656 -0.56465,0.989086 -0.32211,0.284221 -0.84887,0.284221 h -0.70865 v -0.890557 h 0.38275 q 0.31074,0 0.45096,-0.109899 0.144,-0.109898 0.22359,-0.394119 l 0.0341,-0.117477 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path460" />
<path
d="m 223.24655,50.027875 v 0.890557 H 222.572 q -0.25769,0 -0.36001,0.106109 -0.10232,0.102319 -0.10232,0.360012 v 0.29559 h 1.04214 v 0.970138 h -1.04214 V 55.9245 h -1.22404 v -3.274219 h -0.60634 v -0.970138 h 0.60634 v -0.29559 q 0,-0.693497 0.34864,-1.023193 0.34864,-0.333485 1.08004,-0.333485 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path462" />
<path
d="m 226.60792,52.835972 q -0.16296,-0.08337 -0.32212,-0.121267 -0.15537,-0.04169 -0.31833,-0.04169 -0.46991,0 -0.72381,0.337275 -0.25391,0.333485 -0.25391,0.95877 v 1.95544 h -1.22025 v -4.244357 h 1.22025 v 0.697287 q 0.23496,-0.416857 0.53813,-0.606337 0.30696,-0.19327 0.73518,-0.19327 0.0606,0 0.13264,0.0076 0.072,0.0038 0.20843,0.02274 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path464" />
<path
d="m 231.02659,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40549,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43201,0.181901 -0.86782,0.272852 -0.43201,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90193,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20084,-0.238745 -0.53054,-0.238745 -0.35243,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path466" />
<path
d="m 235.76361,53.790952 v 0.38654 h -2.85358 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40549,-0.128846 0.82993,-0.386539 v 1.04593 q -0.43202,0.181901 -0.86782,0.272852 -0.43202,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55373,-0.594968 0.90193,0 1.44005,0.602547 0.54192,0.602547 0.54192,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53055,-0.238745 -0.35243,0 -0.57602,0.223587 -0.21979,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path468" />
<path
d="m 240.45134,50.475048 v 1.205095 h 1.25815 v 0.970138 h -1.25815 v 1.800062 q 0,0.29559 0.10232,0.401698 0.10611,0.10232 0.42065,0.10232 h 0.62907 V 55.9245 h -1.04593 q -0.72381,0 -1.02698,-0.333486 -0.30317,-0.337274 -0.30317,-1.140671 v -1.800062 h -0.60634 v -0.970138 h 0.60634 v -1.205095 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path470" />
<path
d="M 246.29491,53.339989 V 55.9245 h -1.22783 v -0.420647 -1.557527 q 0,-0.549493 -0.0227,-0.757921 -0.0227,-0.208428 -0.0758,-0.306958 -0.072,-0.132636 -0.19706,-0.204638 -0.12127,-0.07579 -0.27664,-0.07579 -0.38275,0 -0.60255,0.329696 -0.21601,0.325906 -0.21601,0.905715 v 2.08807 h -1.22025 v -4.244357 h 1.22025 v 0.621495 q 0.27664,-0.371382 0.58739,-0.545703 0.31075,-0.178112 0.68592,-0.178112 0.65939,0 1.00046,0.450963 0.34485,0.450963 0.34485,1.311203 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path472" />
<path
d="m 250.09589,52.873868 q 0.5116,0.147795 0.78066,0.515386 0.26906,0.363802 0.26906,0.928453 0,0.841292 -0.57981,1.280887 -0.57981,0.435804 -1.69395,0.435804 -0.39033,0 -0.78445,-0.072 -0.39412,-0.06821 -0.78066,-0.208429 v -1.125512 q 0.36759,0.204638 0.7314,0.310747 0.3638,0.10232 0.71623,0.10232 0.52297,0 0.79961,-0.200849 0.27664,-0.200849 0.27664,-0.57602 0,-0.38654 -0.28422,-0.583599 -0.28422,-0.200849 -0.84129,-0.200849 h -0.52297 v -0.939822 h 0.55328 q 0.49265,0 0.73519,-0.170532 0.24253,-0.174322 0.24253,-0.526755 0,-0.325906 -0.23495,-0.504018 -0.23496,-0.178111 -0.66697,-0.178111 -0.31833,0 -0.64045,0.07958 -0.32211,0.07958 -0.64423,0.234956 v -1.068669 q 0.39033,-0.121267 0.76929,-0.181901 0.38275,-0.06063 0.75034,-0.06063 0.99288,0 1.48553,0.363802 0.49265,0.360012 0.49265,1.087616 0,0.496438 -0.23496,0.814765 -0.23496,0.314537 -0.6935,0.443384 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path474" />
<path
d="m 253.71118,54.852041 h 2.23965 V 55.9245 h -3.69865 v -1.072459 l 1.85691,-1.822799 q 0.25011,-0.250114 0.36759,-0.488859 0.12127,-0.238745 0.12127,-0.496438 0,-0.397909 -0.24254,-0.640444 -0.23874,-0.242534 -0.63665,-0.242534 -0.30696,0 -0.67455,0.147794 -0.3638,0.144005 -0.78066,0.432015 v -1.24299 q 0.44338,-0.162953 0.8754,-0.246324 0.4358,-0.08716 0.85266,-0.08716 0.91329,0 1.41731,0.447173 0.50781,0.447173 0.50781,1.24678 0,0.462332 -0.21601,0.86403 -0.21222,0.397908 -0.90193,1.068668 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path476" />
<path
d="m 257.02328,50.26662 h 3.83887 v 0.822344 L 258.8764,55.9245 h -1.28089 l 1.87964,-4.585422 h -2.45187 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path478" />
<path
d="m 264.62902,53.089875 q 0,-1.061089 -0.1819,-1.493104 -0.17811,-0.435804 -0.59876,-0.435804 -0.42443,0 -0.60633,0.435804 -0.17812,0.432015 -0.17812,1.493104 0,1.072458 0.17812,1.512053 0.1819,0.439594 0.60633,0.439594 0.41686,0 0.59876,-0.439594 0.1819,-0.439595 0.1819,-1.512053 z m 1.3112,0.01137 q 0,1.405943 -0.5457,2.171444 -0.5457,0.76171 -1.54616,0.76171 -1.00803,0 -1.55374,-0.76171 -0.5457,-0.765501 -0.5457,-2.171444 0,-1.409733 0.5457,-2.171443 0.54571,-0.7655 1.55374,-0.7655 1.00046,0 1.54616,0.7655 0.5457,0.76171 0.5457,2.171443 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path480" />
<path
d="m 273.10258,53.790952 v 0.38654 h -2.85357 q 0.0417,0.47749 0.30696,0.716235 0.26906,0.238745 0.74655,0.238745 0.38654,0 0.78824,-0.125057 0.40548,-0.128846 0.82992,-0.386539 v 1.04593 q -0.43201,0.181901 -0.86782,0.272852 -0.43201,0.09474 -0.86403,0.09474 -1.03835,0 -1.61437,-0.583599 -0.57223,-0.587389 -0.57223,-1.644688 0,-1.038352 0.56465,-1.63332 0.56465,-0.594968 1.55374,-0.594968 0.90192,0 1.44005,0.602547 0.54191,0.602547 0.54191,1.610582 z m -1.25436,-0.450963 q 0,-0.386539 -0.20464,-0.621495 -0.20085,-0.238745 -0.53054,-0.238745 -0.35243,0 -0.57602,0.223587 -0.2198,0.219797 -0.27664,0.636653 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path482" />
<path
d="m 277.56673,52.385009 q 0.23116,-0.394119 0.54949,-0.598758 0.31833,-0.208428 0.70108,-0.208428 0.65939,0 1.00424,0.450963 0.34486,0.450963 0.34486,1.311203 V 55.9245 h -1.22783 v -2.213129 q 0.004,-0.04926 0.004,-0.10232 0.004,-0.05305 0.004,-0.151584 0,-0.450963 -0.12127,-0.651812 -0.11748,-0.204639 -0.38654,-0.204639 -0.34486,0 -0.53434,0.318327 -0.18948,0.318327 -0.19706,0.920874 V 55.9245 h -1.22783 v -2.213129 q 0,-0.704867 -0.1099,-0.905716 -0.10989,-0.204639 -0.39033,-0.204639 -0.34864,0 -0.54191,0.322117 -0.18948,0.318327 -0.18948,0.913294 V 55.9245 h -1.22783 v -4.244357 h 1.22783 v 0.621495 q 0.22359,-0.360013 0.51539,-0.541914 0.2918,-0.181901 0.64423,-0.181901 0.39412,0 0.69729,0.212218 0.30696,0.212218 0.46233,0.594968 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path484" />
<path
d="m 281.2616,54.272232 v -2.592089 h 1.22783 v 0.424435 q 0,0.344854 -0.004,0.86782 -0.004,0.519175 -0.004,0.693497 0,0.511597 0.0227,0.738973 0.0265,0.223587 0.0834,0.325906 0.0758,0.132636 0.19706,0.204639 0.12127,0.072 0.27664,0.072 0.38275,0 0.59876,-0.325906 0.2198,-0.325906 0.2198,-0.905715 v -2.095651 h 1.22025 V 55.9245 h -1.22025 v -0.613916 q -0.27664,0.371381 -0.58739,0.549492 -0.30696,0.174322 -0.67834,0.174322 -0.65939,0 -1.00804,-0.450963 -0.34485,-0.450963 -0.34485,-1.311203 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path486" />
<path
d="m 286.27524,50.027875 h 1.22025 V 55.9245 h -1.22025 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path488" />
<path
d="m 290.37939,54.014539 q -0.38275,0 -0.57602,0.144005 -0.19327,0.144005 -0.19327,0.424436 0,0.257693 0.15538,0.405487 0.15537,0.144005 0.43201,0.144005 0.34485,0 0.57981,-0.272851 0.23496,-0.276641 0.23496,-0.689708 v -0.155374 z m 1.86449,-0.511597 V 55.9245 h -1.23162 v -0.629075 q -0.24633,0.38654 -0.55329,0.564651 -0.30695,0.174322 -0.74655,0.174322 -0.59497,0 -0.96635,-0.38275 -0.36759,-0.38654 -0.36759,-1.000456 0,-0.746552 0.46233,-1.095195 0.46233,-0.348644 1.45142,-0.348644 h 0.72003 v -0.106109 q 0,-0.322116 -0.23117,-0.469911 -0.22738,-0.151584 -0.70866,-0.151584 -0.39412,0 -0.73139,0.08716 -0.33727,0.08716 -0.62907,0.261483 V 51.79383 q 0.39411,-0.106109 0.78823,-0.159164 0.39791,-0.05684 0.79203,-0.05684 1.03456,0 1.4931,0.454753 0.45855,0.450963 0.45855,1.470366 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path490" />
<path
d="m 294.7109,50.475048 v 1.205095 h 1.25814 v 0.970138 h -1.25814 v 1.800062 q 0,0.29559 0.10231,0.401698 0.10611,0.10232 0.42065,0.10232 h 0.62908 V 55.9245 H 294.817 q -0.72381,0 -1.02698,-0.333486 -0.30317,-0.337274 -0.30317,-1.140671 v -1.800062 h -0.60633 v -0.970138 h 0.60633 v -1.205095 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path492" />
<path
d="m 298.53083,52.547962 q -0.40549,0 -0.61771,0.325906 -0.21221,0.322116 -0.21221,0.932243 0,0.610126 0.21221,0.936032 0.21222,0.322116 0.61771,0.322116 0.4017,0 0.61013,-0.322116 0.21221,-0.325906 0.21221,-0.936032 0,-0.610127 -0.21221,-0.932243 -0.20843,-0.325906 -0.61013,-0.325906 z m 0,-0.970139 q 0.98909,0 1.54237,0.591179 0.55328,0.591178 0.55328,1.637109 0,1.04593 -0.55328,1.637109 -0.55328,0.591178 -1.54237,0.591178 -0.9853,0 -1.54616,-0.591178 -0.55707,-0.591179 -0.55707,-1.637109 0,-1.045931 0.55707,-1.637109 0.56086,-0.591179 1.54616,-0.591179 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path494" />
<path
d="m 304.35166,52.835972 q -0.16295,-0.08337 -0.32212,-0.121267 -0.15537,-0.04169 -0.31832,-0.04169 -0.46991,0 -0.72382,0.337275 -0.2539,0.333485 -0.2539,0.95877 v 1.95544 h -1.22025 v -4.244357 h 1.22025 v 0.697287 q 0.23495,-0.416857 0.53812,-0.606337 0.30696,-0.19327 0.73519,-0.19327 0.0606,0 0.13263,0.0076 0.072,0.0038 0.20843,0.02274 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path496" />
<path
d="m 303.97648,54.457923 h 1.22784 V 55.9245 h -1.22784 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;font-size:7.76111px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold Semi-Condensed';stroke-width:0.264583"
id="path498" />
</g>
<g
aria-label="Created originally for Banco do Brasil, it's now an official Brazilian Government Public Software project, and is used worldwide."
id="text282-8"
style="font-weight:bold;font-size:8.46667px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans Bold';stroke-width:0.264583"
transform="translate(0,6.879167)">
<path
d="m 89.706737,62.104419 v 0.880567 q -0.42168,-0.392741 -0.901237,-0.587045 -0.475424,-0.194303 -1.012859,-0.194303 -1.058334,0 -1.620573,0.649056 -0.56224,0.644922 -0.56224,1.868621 0,1.219564 0.56224,1.86862 0.562239,0.644922 1.620573,0.644922 0.537435,0 1.012859,-0.194303 0.479557,-0.194303 0.901237,-0.587045 v 0.872299 q -0.438216,0.297656 -0.930176,0.446485 -0.487826,0.148828 -1.033529,0.148828 -1.401466,0 -2.207618,-0.855762 -0.806153,-0.859896 -0.806153,-2.344044 0,-1.488282 0.806153,-2.344044 0.806152,-0.859896 2.207618,-0.859896 0.553971,0 1.041797,0.148828 0.49196,0.144694 0.921908,0.438216 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path501" />
<path
d="m 93.64655,63.882089 q -0.128158,-0.07441 -0.28112,-0.107487 -0.148829,-0.03721 -0.33073,-0.03721 -0.644922,0 -0.992188,0.42168 -0.343131,0.417546 -0.343131,1.203028 v 2.439128 h -0.764812 v -4.63021 h 0.764812 v 0.719336 q 0.239779,-0.421679 0.624251,-0.624251 0.384473,-0.206706 0.934311,-0.206706 0.07855,0 0.173632,0.0124 0.09509,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path503" />
<path
d="m 98.218882,65.295957 v 0.37207 H 94.72142 q 0.04961,0.785482 0.471289,1.198894 0.425814,0.409278 1.182357,0.409278 0.438216,0 0.847494,-0.107487 0.413411,-0.107487 0.818555,-0.322461 v 0.719336 q -0.409278,0.173633 -0.839226,0.264583 -0.429948,0.09095 -0.872298,0.09095 -1.107943,0 -1.757,-0.644922 -0.644922,-0.644923 -0.644922,-1.744597 0,-1.136882 0.611849,-1.802475 0.615984,-0.669727 1.657781,-0.669727 0.93431,0 1.47588,0.603581 0.545703,0.599447 0.545703,1.632976 z m -0.760678,-0.223242 q -0.0083,-0.624252 -0.351399,-0.996322 -0.338998,-0.372071 -0.901238,-0.372071 -0.636654,0 -1.021126,0.359668 -0.380339,0.359668 -0.438217,1.012859 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path505" />
<path
d="m 101.57165,65.473724 q -0.92191,0 -1.27744,0.21084 -0.355536,0.21084 -0.355536,0.719336 0,0.405143 0.264586,0.644922 0.26872,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.132748,-0.396875 -0.417545,-0.40101 -0.417545,-1.070737 0,-0.781347 0.520898,-1.178223 0.525035,-0.396875 1.562695,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.723466,0.285254 v -0.7028 q 0.417546,-0.16123 0.810286,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520899 0.49609,0.520898 0.49609,1.579232 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path507" />
<path
d="m 105.40811,61.856372 v 1.314649 h 1.56683 V 63.7622 h -1.56683 v 2.513542 q 0,0.566374 0.15296,0.727605 0.1571,0.16123 0.63252,0.16123 h 0.78135 v 0.636654 h -0.78135 q -0.88056,0 -1.21543,-0.326595 -0.33486,-0.330729 -0.33486,-1.198894 V 63.7622 h -0.55811 v -0.591179 h 0.55811 v -1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path509" />
<path
d="m 111.93588,65.295957 v 0.37207 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409278 1.18235,0.409278 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83922,0.264583 -0.42995,0.09095 -0.8723,0.09095 -1.10795,0 -1.757,-0.644922 -0.64492,-0.644923 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669727 1.65778,-0.669727 0.93431,0 1.47588,0.603581 0.5457,0.599447 0.5457,1.632976 z m -0.76068,-0.223242 q -0.008,-0.624252 -0.3514,-0.996322 -0.339,-0.372071 -0.90124,-0.372071 -0.63665,0 -1.02112,0.359668 -0.38034,0.359668 -0.43822,1.012859 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path511" />
<path
d="m 116.23123,63.873821 v -2.505274 h 0.76067 v 6.432684 h -0.76067 V 67.1067 q -0.23978,0.413411 -0.60772,0.615983 -0.3638,0.198438 -0.87643,0.198438 -0.83923,0 -1.36839,-0.669727 -0.52504,-0.669727 -0.52504,-1.761134 0,-1.091406 0.52504,-1.761133 0.52916,-0.669727 1.36839,-0.669727 0.51263,0 0.87643,0.202572 0.36794,0.198437 0.60772,0.611849 z m -2.5921,1.616439 q 0,0.839226 0.34314,1.318783 0.34726,0.475424 0.95084,0.475424 0.60358,0 0.95085,-0.475424 0.34727,-0.479557 0.34727,-1.318783 0,-0.839225 -0.34727,-1.314649 -0.34727,-0.479557 -0.95085,-0.479557 -0.60358,0 -0.95084,0.479557 -0.34314,0.475424 -0.34314,1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path513" />
<path
d="m 123.04425,63.704322 q -0.61185,0 -0.96738,0.479558 -0.35554,0.475423 -0.35554,1.30638 0,0.830958 0.3514,1.310515 0.35554,0.475424 0.97152,0.475424 0.60772,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35553,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56223,-0.649057 -0.56223,-1.785939 0,-1.141016 0.56223,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path515" />
<path
d="m 129.11313,63.882089 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.421679 0.62425,-0.624251 0.38448,-0.206706 0.93431,-0.206706 0.0785,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path517" />
<path
d="m 129.91102,63.171021 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802474 h 0.76067 v 0.963249 h -0.76067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path519" />
<path
d="m 135.31017,65.432383 q 0,-0.826823 -0.34313,-1.281576 -0.339,-0.454753 -0.95498,-0.454753 -0.61185,0 -0.95498,0.454753 -0.339,0.454753 -0.339,1.281576 0,0.822689 0.339,1.277442 0.34313,0.454752 0.95498,0.454752 0.61598,0 0.95498,-0.454752 0.34313,-0.454753 0.34313,-1.277442 z m 0.76068,1.794206 q 0,1.182357 -0.52503,1.757 -0.52504,0.578776 -1.60818,0.578776 -0.40101,0 -0.75654,-0.06201 -0.35553,-0.05788 -0.6904,-0.181901 v -0.740007 q 0.33487,0.181901 0.66146,0.268718 0.3266,0.08682 0.66559,0.08682 0.74828,0 1.12035,-0.392741 0.37207,-0.388607 0.37207,-1.178223 V 66.98681 q -0.23564,0.409278 -0.60358,0.61185 -0.36794,0.202571 -0.88057,0.202571 -0.85162,0 -1.37252,-0.649056 -0.5209,-0.649056 -0.5209,-1.719792 0,-1.07487 0.5209,-1.723927 0.5209,-0.649056 1.37252,-0.649056 0.51263,0 0.88057,0.202572 0.36794,0.202571 0.60358,0.611849 v -0.7028 h 0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path521" />
<path
d="m 137.63768,63.171021 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path523" />
<path
d="m 143.83885,65.006569 v 2.794662 h -0.76067 v -2.769857 q 0,-0.657325 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76482 v -4.63021 h 0.76482 v 0.719336 q 0.27285,-0.417545 0.64078,-0.624251 0.37207,-0.206706 0.85577,-0.206706 0.79788,0 1.20716,0.496094 0.40927,0.49196 0.40927,1.451075 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path525" />
<path
d="m 147.46034,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719336 0,0.405143 0.26459,0.644922 0.26871,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.40101 -0.41754,-1.070737 0,-0.781347 0.52089,-1.178223 0.52504,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34314,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.72347,0.285254 v -0.7028 q 0.41755,-0.16123 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520899 0.49609,0.520898 0.49609,1.579232 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path527" />
<path
d="m 150.54439,61.368547 h 0.76068 v 6.432684 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path529" />
<path
d="m 152.8967,61.368547 h 0.76068 v 6.432684 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path531" />
<path
d="m 157.17552,68.231179 q -0.32246,0.826824 -0.62839,1.079005 -0.30592,0.252181 -0.81855,0.252181 h -0.60772 v -0.636654 h 0.44649 q 0.31419,0 0.48782,-0.148828 0.17363,-0.148828 0.38447,-0.7028 l 0.13643,-0.347266 -1.87276,-4.555796 h 0.80616 l 1.44694,3.621486 1.44694,-3.621486 h 0.80615 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path533" />
<path
d="m 165.29492,61.368547 v 0.632519 h -0.7276 q -0.40928,0 -0.57051,0.165365 -0.1571,0.165365 -0.1571,0.595313 v 0.409277 h 1.25264 V 63.7622 h -1.25264 v 4.039031 H 163.0749 V 63.7622 h -0.7276 v -0.591179 h 0.7276 V 62.84856 q 0,-0.77308 0.35967,-1.124479 0.35967,-0.355534 1.14101,-0.355534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path535" />
<path
d="m 167.72578,63.704322 q -0.61185,0 -0.96738,0.479558 -0.35554,0.475423 -0.35554,1.30638 0,0.830958 0.3514,1.310515 0.35554,0.475424 0.97152,0.475424 0.60772,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35553,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56223,-0.649057 -0.56223,-1.785939 0,-1.141016 0.56223,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path537" />
<path
d="m 173.79466,63.882089 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.421679 0.62425,-0.624251 0.38448,-0.206706 0.93431,-0.206706 0.0786,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path539" />
<path
d="m 178.15202,64.853607 v 2.261361 h 1.33945 q 0.67386,0 0.99632,-0.276986 0.3266,-0.28112 0.3266,-0.855762 0,-0.578776 -0.3266,-0.851628 -0.32246,-0.276985 -0.99632,-0.276985 z m 0,-2.538348 v 1.860352 h 1.2361 q 0.61185,0 0.9095,-0.227376 0.3018,-0.23151 0.3018,-0.7028 0,-0.467155 -0.3018,-0.698665 -0.29765,-0.231511 -0.9095,-0.231511 z m -0.83509,-0.686263 h 2.1332 q 0.95498,0 1.47175,0.396875 0.51676,0.396875 0.51676,1.128614 0,0.566374 -0.26458,0.901237 -0.26459,0.334863 -0.77722,0.417546 0.61599,0.132292 0.95498,0.553971 0.34314,0.417546 0.34314,1.045932 0,0.826823 -0.56224,1.277442 -0.56224,0.450618 -1.59991,0.450618 h -2.21588 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path541" />
<path
d="m 185.19655,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35553,0.21084 -0.35553,0.719336 0,0.405143 0.26458,0.644922 0.26872,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38448,-0.450618 0.38448,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76067 v -0.702799 q -0.26045,0.421679 -0.64906,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13274,-0.396875 -0.41755,-0.40101 -0.41755,-1.070737 0,-0.781347 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.06661 v -0.07441 q 0,-0.525033 -0.34727,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39688,0 -0.77308,0.09509 -0.37621,0.09508 -0.72347,0.285254 v -0.7028 q 0.41754,-0.16123 0.81028,-0.239779 0.39274,-0.08268 0.76482,-0.08268 1.00459,0 1.50068,0.520899 0.49609,0.520898 0.49609,1.579232 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path543" />
<path
d="m 192.12947,65.006569 v 2.794662 h -0.76068 v -2.769857 q 0,-0.657325 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417545 0.64078,-0.624251 0.37208,-0.206706 0.85577,-0.206706 0.79788,0 1.20716,0.496094 0.40928,0.49196 0.40928,1.451075 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path545" />
<path
d="m 196.97878,63.348788 v 0.711068 q -0.32246,-0.177767 -0.64905,-0.264583 -0.32246,-0.09095 -0.65319,-0.09095 -0.74001,0 -1.14929,0.471289 -0.40928,0.467156 -0.40928,1.314649 0,0.847494 0.40928,1.318783 0.40928,0.467156 1.14929,0.467156 0.33073,0 0.65319,-0.08682 0.32659,-0.09095 0.64905,-0.268717 v 0.702799 q -0.31832,0.148829 -0.66146,0.223243 -0.33899,0.07441 -0.72347,0.07441 -1.04593,0 -1.66191,-0.657325 -0.61598,-0.657324 -0.61598,-1.773536 0,-1.132747 0.62011,-1.781804 0.62425,-0.649056 1.70739,-0.649056 0.3514,0 0.68627,0.07441 0.33486,0.07028 0.64905,0.214974 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path547" />
<path
d="m 200.09591,63.704322 q -0.61185,0 -0.96739,0.479558 -0.35553,0.475423 -0.35553,1.30638 0,0.830958 0.3514,1.310515 0.35553,0.475424 0.97152,0.475424 0.60771,0 0.96324,-0.479558 0.35554,-0.479557 0.35554,-1.306381 0,-0.822689 -0.35554,-1.302246 -0.35553,-0.483692 -0.96324,-0.483692 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785939 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785939 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path549" />
<path
d="m 209.2199,63.873821 v -2.505274 h 0.76068 v 6.432684 H 209.2199 V 67.1067 q -0.23978,0.413411 -0.60771,0.615983 -0.3638,0.198438 -0.87643,0.198438 -0.83923,0 -1.3684,-0.669727 -0.52503,-0.669727 -0.52503,-1.761134 0,-1.091406 0.52503,-1.761133 0.52917,-0.669727 1.3684,-0.669727 0.51263,0 0.87643,0.202572 0.36793,0.198437 0.60771,0.611849 z m -2.59209,1.616439 q 0,0.839226 0.34313,1.318783 0.34727,0.475424 0.95085,0.475424 0.60358,0 0.95085,-0.475424 0.34726,-0.479557 0.34726,-1.318783 0,-0.839225 -0.34726,-1.314649 -0.34727,-0.479557 -0.95085,-0.479557 -0.60358,0 -0.95085,0.479557 -0.34313,0.475424 -0.34313,1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path551" />
<path
d="m 213.34162,63.704322 q -0.61185,0 -0.96739,0.479558 -0.35553,0.475423 -0.35553,1.30638 0,0.830958 0.3514,1.310515 0.35553,0.475424 0.97152,0.475424 0.60771,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35554,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785939 0,-1.141016 0.56224,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path553" />
<path
d="m 220.28694,64.853607 v 2.261361 h 1.33945 q 0.67386,0 0.99632,-0.276986 0.3266,-0.28112 0.3266,-0.855762 0,-0.578776 -0.3266,-0.851628 -0.32246,-0.276985 -0.99632,-0.276985 z m 0,-2.538348 v 1.860352 h 1.2361 q 0.61185,0 0.9095,-0.227376 0.30179,-0.23151 0.30179,-0.7028 0,-0.467155 -0.30179,-0.698665 -0.29765,-0.231511 -0.9095,-0.231511 z m -0.83509,-0.686263 h 2.1332 q 0.95498,0 1.47174,0.396875 0.51677,0.396875 0.51677,1.128614 0,0.566374 -0.26458,0.901237 -0.26459,0.334863 -0.77722,0.417546 0.61599,0.132292 0.95498,0.553971 0.34313,0.417546 0.34313,1.045932 0,0.826823 -0.56224,1.277442 -0.56224,0.450618 -1.5999,0.450618 h -2.21588 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path555" />
<path
d="m 227.91024,63.882089 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.421679 0.62425,-0.624251 0.38448,-0.206706 0.93431,-0.206706 0.0786,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path557" />
<path
d="m 230.81239,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719336 0,0.405143 0.26459,0.644922 0.26871,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.40101 -0.41754,-1.070737 0,-0.781347 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.72347,0.285254 v -0.7028 q 0.41755,-0.16123 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520899 0.49609,0.520898 0.49609,1.579232 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path559" />
<path
d="m 236.84821,63.307447 v 0.719336 q -0.32246,-0.165364 -0.66973,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85162,0.173633 -0.28112,0.173633 -0.28112,0.520898 0,0.264584 0.20257,0.417546 0.20257,0.148828 0.81442,0.285254 l 0.26045,0.05788 q 0.81029,0.173633 1.14928,0.49196 0.34313,0.314193 0.34313,0.880566 0,0.644923 -0.51263,1.021127 -0.50849,0.376205 -1.40146,0.376205 -0.37207,0 -0.77722,-0.07441 -0.401,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83096,0.330729 0.40928,0.107487 0.81029,0.107487 0.53743,0 0.82682,-0.181901 0.28939,-0.186035 0.28939,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.20671,-0.165365 -0.91364,-0.318327 l -0.26459,-0.06201 q -0.70693,-0.148828 -1.02112,-0.454753 -0.3142,-0.310058 -0.3142,-0.847494 0,-0.65319 0.46302,-1.008724 0.46303,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68627,0.186035 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path561" />
<path
d="m 238.30755,63.171021 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path563" />
<path
d="m 240.65986,61.368547 h 0.76068 v 6.432684 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path565" />
<path
d="m 243.20647,66.751166 h 0.8723 v 0.711068 l -0.67799,1.322917 h -0.5333 l 0.33899,-1.322917 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path567" />
<path
d="m 248.39479,63.171021 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802474 h 0.76067 v 0.963249 h -0.76067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path569" />
<path
d="m 251.4995,61.856372 v 1.314649 h 1.56683 V 63.7622 h -1.56683 v 2.513542 q 0,0.566374 0.15297,0.727605 0.15709,0.16123 0.63252,0.16123 h 0.78134 v 0.636654 h -0.78134 q -0.88057,0 -1.21543,-0.326595 -0.33487,-0.330729 -0.33487,-1.198894 V 63.7622 h -0.5581 v -0.591179 h 0.5581 v -1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path571" />
<path
d="m 254.78613,61.628996 v 2.294434 h -0.7028 v -2.294434 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path573" />
<path
d="m 259.34606,63.307447 v 0.719336 q -0.32246,-0.165364 -0.66973,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85162,0.173633 -0.28112,0.173633 -0.28112,0.520898 0,0.264584 0.20257,0.417546 0.20257,0.148828 0.81442,0.285254 l 0.26045,0.05788 q 0.81028,0.173633 1.14928,0.49196 0.34313,0.314193 0.34313,0.880566 0,0.644923 -0.51263,1.021127 -0.50849,0.376205 -1.40146,0.376205 -0.37207,0 -0.77722,-0.07441 -0.40101,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83096,0.330729 0.40927,0.107487 0.81028,0.107487 0.53744,0 0.82683,-0.181901 0.28939,-0.186035 0.28939,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.20671,-0.165365 -0.91364,-0.318327 l -0.26459,-0.06201 q -0.70693,-0.148828 -1.02112,-0.454753 -0.3142,-0.310058 -0.3142,-0.847494 0,-0.65319 0.46302,-1.008724 0.46302,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68627,0.186035 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path575" />
<path
d="m 267.34558,65.006569 v 2.794662 h -0.76068 v -2.769857 q 0,-0.657325 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417545 0.64078,-0.624251 0.37208,-0.206706 0.85577,-0.206706 0.79788,0 1.20716,0.496094 0.40928,0.49196 0.40928,1.451075 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path577" />
<path
d="m 270.65701,63.704322 q -0.61185,0 -0.96738,0.479558 -0.35554,0.475423 -0.35554,1.30638 0,0.830958 0.3514,1.310515 0.35554,0.475424 0.97152,0.475424 0.60771,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302246 -0.35554,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785939 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785939 0,-1.141016 0.56224,-1.785938 0.56638,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path579" />
<path
d="m 273.60049,63.171021 h 0.76068 l 0.95085,3.613218 0.94671,-3.613218 h 0.8971 l 0.95085,3.613218 0.94671,-3.613218 h 0.76068 l -1.2113,4.63021 h -0.8971 l -0.99632,-3.795118 -1.00046,3.795118 h -0.8971 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path581" />
<path
d="m 285.76306,65.473724 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719336 0,0.405143 0.26459,0.644922 0.26871,0.235645 0.7276,0.235645 0.63252,0 1.01286,-0.446485 0.38447,-0.450618 0.38447,-1.194759 v -0.169499 z m 1.51722,-0.314193 v 2.6417 h -0.76068 v -0.702799 q -0.26045,0.421679 -0.64905,0.624251 -0.38861,0.198438 -0.95085,0.198438 -0.71107,0 -1.13275,-0.396875 -0.41755,-0.40101 -0.41755,-1.070737 0,-0.781347 0.5209,-1.178223 0.52504,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34314,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09509 -0.3762,0.09508 -0.72347,0.285254 v -0.7028 q 0.41755,-0.16123 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50068,0.520899 0.4961,0.520898 0.4961,1.579232 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path583" />
<path
d="m 292.69598,65.006569 v 2.794662 h -0.76068 v -2.769857 q 0,-0.657325 -0.25631,-0.98392 -0.25632,-0.326595 -0.76895,-0.326595 -0.61598,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616895 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417545 0.64079,-0.624251 0.37207,-0.206706 0.85576,-0.206706 0.79788,0 1.20716,0.496094 0.40928,0.49196 0.40928,1.451075 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path585" />
<path
d="m 86.845928,74.28766 q -0.611849,0 -0.967383,0.479557 -0.355534,0.475424 -0.355534,1.306381 0,0.830957 0.3514,1.310515 0.355534,0.475423 0.971517,0.475423 0.607716,0 0.96325,-0.479557 0.355534,-0.479558 0.355534,-1.306381 0,-0.822689 -0.355534,-1.302247 -0.355534,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.992188,0 1.558562,0.644922 0.566374,0.644922 0.566374,1.785938 0,1.136882 -0.566374,1.785938 -0.566374,0.644922 -1.558562,0.644922 -0.996322,0 -1.562695,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.566373,-0.644922 1.562695,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path587" />
<path
d="m 92.575813,71.951884 v 0.63252 h -0.727604 q -0.409278,0 -0.570508,0.165365 -0.157096,0.165364 -0.157096,0.595312 v 0.409278 h 2.087728 v -0.322461 q 0,-0.77308 0.359668,-1.12448 0.115756,-0.115755 0.276986,-0.194303 0.322461,-0.161231 0.86403,-0.161231 h 0.719337 v 0.63252 h -0.727605 q -0.409277,0 -0.570508,0.165365 -0.157096,0.165364 -0.157096,0.595312 v 0.409278 h 2.85254 v 4.63021 h -0.764812 v -4.039032 h -2.087728 v 4.039032 h -0.764812 v -4.039032 h -2.087728 v 4.039032 h -0.764812 v -4.039032 h -0.727604 v -0.591178 h 0.727604 v -0.322461 q 0,-0.77308 0.359668,-1.12448 0.359668,-0.355534 1.141016,-0.355534 z m 3.48506,0.0083 h 0.764812 v 0.963249 h -0.764812 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path589" />
<path
d="m 101.74942,73.932126 v 0.711068 q -0.32246,-0.177767 -0.64906,-0.264584 -0.32246,-0.09095 -0.65319,-0.09095 -0.740007,0 -1.149284,0.471289 -0.409278,0.467155 -0.409278,1.314649 0,0.847494 0.409278,1.318783 0.409277,0.467155 1.149284,0.467155 0.33073,0 0.65319,-0.08682 0.3266,-0.09095 0.64906,-0.268718 v 0.7028 q -0.31833,0.148828 -0.66146,0.223242 -0.339,0.07441 -0.72347,0.07441 -1.045934,0 -1.661917,-0.657324 -0.615984,-0.657325 -0.615984,-1.773536 0,-1.132748 0.620118,-1.781804 0.624251,-0.649056 1.707393,-0.649056 0.3514,0 0.68626,0.07441 0.33486,0.07028 0.64906,0.214974 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path591" />
<path
d="m 103.07233,73.754359 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802475 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path593" />
<path
d="m 107.52891,76.057061 q -0.92191,0 -1.27744,0.21084 -0.35553,0.21084 -0.35553,0.719337 0,0.405143 0.26458,0.644922 0.26872,0.235644 0.7276,0.235644 0.63252,0 1.01286,-0.446484 0.38448,-0.450619 0.38448,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76067 v -0.7028 q -0.26045,0.42168 -0.64906,0.624252 -0.38861,0.198437 -0.95085,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.401009 -0.41754,-1.070736 0,-0.781348 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.06661 v -0.07441 q 0,-0.525033 -0.34727,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39688,0 -0.77308,0.09508 -0.37621,0.09508 -0.72347,0.285254 v -0.702799 q 0.41754,-0.161231 0.81028,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520898 0.49609,0.520899 0.49609,1.579233 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path595" />
<path
d="m 110.61296,71.951884 h 0.76068 v 6.432685 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path597" />
<path
d="m 116.52475,75.436944 v 2.261362 h 1.33945 q 0.67386,0 0.99632,-0.276986 0.3266,-0.28112 0.3266,-0.855762 0,-0.578776 -0.3266,-0.851628 -0.32246,-0.276986 -0.99632,-0.276986 z m 0,-2.538347 v 1.860352 h 1.2361 q 0.61185,0 0.9095,-0.227376 0.3018,-0.231511 0.3018,-0.7028 0,-0.467155 -0.3018,-0.698666 -0.29765,-0.23151 -0.9095,-0.23151 z m -0.83509,-0.686264 h 2.1332 q 0.95498,0 1.47175,0.396876 0.51676,0.396875 0.51676,1.128613 0,0.566374 -0.26458,0.901238 -0.26459,0.334863 -0.77722,0.417545 0.61599,0.132292 0.95498,0.553972 0.34314,0.417546 0.34314,1.045931 0,0.826824 -0.56224,1.277442 -0.56224,0.450619 -1.59991,0.450619 h -2.21588 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path599" />
<path
d="m 124.14806,74.465427 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417545 -0.34313,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62425,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0785,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path601" />
<path
d="m 127.05021,76.057061 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719337 0,0.405143 0.26459,0.644922 0.26871,0.235644 0.7276,0.235644 0.63252,0 1.01286,-0.446484 0.38447,-0.450619 0.38447,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76068 v -0.7028 q -0.26045,0.42168 -0.64905,0.624252 -0.38861,0.198437 -0.95085,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.401009 -0.41754,-1.070736 0,-0.781348 0.52089,-1.178223 0.52504,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96739,-0.289388 -0.39687,0 -0.77308,0.09508 -0.3762,0.09508 -0.72347,0.285254 v -0.702799 q 0.41755,-0.161231 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520898 0.49609,0.520899 0.49609,1.579233 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path603" />
<path
d="m 129.80353,73.754359 h 3.61322 v 0.694531 l -2.86081,3.327964 h 2.86081 v 0.607715 h -3.71657 v -0.694532 l 2.86081,-3.327963 h -2.75746 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path605" />
<path
d="m 134.57843,73.754359 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802475 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path607" />
<path
d="m 136.93075,71.951884 h 0.76067 v 6.432685 h -0.76067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path609" />
<path
d="m 139.28306,73.754359 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802475 h 0.76067 v 0.963249 h -0.76067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path611" />
<path
d="m 143.73964,76.057061 q -0.92191,0 -1.27745,0.21084 -0.35553,0.21084 -0.35553,0.719337 0,0.405143 0.26458,0.644922 0.26872,0.235644 0.72761,0.235644 0.63252,0 1.01286,-0.446484 0.38447,-0.450619 0.38447,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76068 v -0.7028 q -0.26045,0.42168 -0.64906,0.624252 -0.3886,0.198437 -0.95084,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41755,-0.401009 -0.41755,-1.070736 0,-0.781348 0.5209,-1.178223 0.52503,-0.396875 1.5627,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34727,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39687,0 -0.77308,0.09508 -0.3762,0.09508 -0.72347,0.285254 v -0.702799 q 0.41755,-0.161231 0.81029,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50068,0.520898 0.4961,0.520899 0.4961,1.579233 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path613" />
<path
d="m 150.67255,75.589906 v 2.794663 h -0.76068 v -2.769858 q 0,-0.657324 -0.25631,-0.98392 -0.25632,-0.326595 -0.76895,-0.326595 -0.61598,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616896 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27285,-0.417546 0.64079,-0.624252 0.37207,-0.206705 0.85576,-0.206705 0.79788,0 1.20716,0.496094 0.40928,0.491959 0.40928,1.451074 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path615" />
<path
d="m 159.12268,77.504002 v -1.65778 h -1.36426 v -0.686264 h 2.19108 v 2.649969 q -0.48369,0.343131 -1.0666,0.520898 -0.58291,0.173633 -1.24437,0.173633 -1.44694,0 -2.26549,-0.843359 -0.81443,-0.847494 -0.81443,-2.356447 0,-1.513086 0.81443,-2.356446 0.81855,-0.847494 2.26549,-0.847494 0.60358,0 1.14515,0.148828 0.5457,0.148829 1.00459,0.438217 v 0.888835 q -0.46302,-0.392741 -0.98392,-0.591179 -0.5209,-0.198437 -1.09554,-0.198437 -1.13275,0 -1.70326,0.632519 -0.56637,0.63252 -0.56637,1.885157 0,1.248503 0.56637,1.881023 0.57051,0.63252 1.70326,0.63252 0.44235,0 0.78962,-0.07441 0.34726,-0.07855 0.62425,-0.239779 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path617" />
<path
d="m 163.23613,74.28766 q -0.61185,0 -0.96739,0.479557 -0.35553,0.475424 -0.35553,1.306381 0,0.830957 0.3514,1.310515 0.35553,0.475423 0.97152,0.475423 0.60771,0 0.96325,-0.479557 0.35553,-0.479558 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302247 -0.35554,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785938 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path619" />
<path
d="m 166.07626,73.754359 h 0.80616 l 1.44694,3.886069 1.44694,-3.886069 h 0.80615 l -1.73633,4.63021 h -1.03353 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path621" />
<path
d="m 175.593,75.879294 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409277 1.18235,0.409277 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40927,0.173633 -0.83922,0.264584 -0.42995,0.09095 -0.8723,0.09095 -1.10794,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.5457,0.599446 0.5457,1.632975 z m -0.76068,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.33899,-0.37207 -0.90123,-0.37207 -0.63666,0 -1.02113,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path623" />
<path
d="m 179.52454,74.465427 q -0.12815,-0.07441 -0.28112,-0.107487 -0.14882,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99218,0.42168 -0.34314,0.417545 -0.34314,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62426,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0785,0 0.17363,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path625" />
<path
d="m 184.02246,75.589906 v 2.794663 h -0.76067 v -2.769858 q 0,-0.657324 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35554,0.392741 -0.35554,1.070736 v 2.616896 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.27286,-0.417546 0.64079,-0.624252 0.37207,-0.206705 0.85576,-0.206705 0.79789,0 1.20717,0.496094 0.40927,0.491959 0.40927,1.451074 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path627" />
<path
d="m 189.14463,74.643194 q 0.28526,-0.512631 0.68213,-0.756544 0.39688,-0.243912 0.93431,-0.243912 0.72347,0 1.11621,0.508496 0.39274,0.504362 0.39274,1.438672 v 2.794663 h -0.76481 v -2.769858 q 0,-0.665593 -0.23564,-0.988054 -0.23565,-0.322461 -0.71934,-0.322461 -0.59118,0 -0.93431,0.392741 -0.34313,0.392741 -0.34313,1.070736 v 2.616896 h -0.76481 v -2.769858 q 0,-0.669727 -0.23565,-0.988054 -0.23564,-0.322461 -0.7276,-0.322461 -0.58291,0 -0.92604,0.396875 -0.34313,0.392741 -0.34313,1.066602 v 2.616896 h -0.76482 v -4.63021 h 0.76482 v 0.719336 q 0.26044,-0.425814 0.62425,-0.628386 0.3638,-0.202571 0.86403,-0.202571 0.50436,0 0.85576,0.256315 0.35553,0.256315 0.52503,0.744141 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path629" />
<path
d="m 197.74773,75.879294 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409277 1.18236,0.409277 0.43821,0 0.84749,-0.107487 0.41341,-0.107487 0.81856,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83923,0.264584 -0.42995,0.09095 -0.8723,0.09095 -1.10794,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.5457,0.599446 0.5457,1.632975 z m -0.76067,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.339,-0.37207 -0.90124,-0.37207 -0.63666,0 -1.02113,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path631" />
<path
d="m 202.8451,75.589906 v 2.794663 h -0.76068 v -2.769858 q 0,-0.657324 -0.25632,-0.98392 -0.25631,-0.326595 -0.76894,-0.326595 -0.61599,0 -0.97152,0.392741 -0.35553,0.392741 -0.35553,1.070736 v 2.616896 h -0.76482 v -4.63021 h 0.76482 v 0.719336 q 0.27285,-0.417546 0.64078,-0.624252 0.37207,-0.206705 0.85577,-0.206705 0.79788,0 1.20716,0.496094 0.40928,0.491959 0.40928,1.451074 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path633" />
<path
d="m 205.11472,72.43971 v 1.314649 h 1.56683 v 0.591178 h -1.56683 v 2.513543 q 0,0.566374 0.15297,0.727604 0.15709,0.161231 0.63252,0.161231 h 0.78134 v 0.636654 h -0.78134 q -0.88057,0 -1.21543,-0.326595 -0.33487,-0.33073 -0.33487,-1.198894 v -2.513543 h -0.5581 v -0.591178 h 0.5581 V 72.43971 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path635" />
<path
d="m 211.24148,72.898597 v 2.319239 h 1.05007 q 0.58291,0 0.90123,-0.301791 0.31833,-0.30179 0.31833,-0.859896 0,-0.553971 -0.31833,-0.855762 -0.31832,-0.30179 -0.90123,-0.30179 z m -0.83509,-0.686264 h 1.88516 q 1.03766,0 1.56683,0.47129 0.5333,0.467155 0.5333,1.372526 0,0.91364 -0.5333,1.380795 -0.52917,0.467155 -1.56683,0.467155 h -1.05007 v 2.48047 h -0.83509 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path637" />
<path
d="m 215.25157,76.55729 v -2.802931 h 0.76068 v 2.773992 q 0,0.657324 0.25631,0.988054 0.25632,0.326595 0.76895,0.326595 0.61598,0 0.97152,-0.392741 0.35966,-0.392741 0.35966,-1.070736 v -2.625164 h 0.76068 v 4.63021 h -0.76068 v -0.711068 q -0.27698,0.42168 -0.64492,0.628386 -0.3638,0.202571 -0.84749,0.202571 -0.79789,0 -1.2113,-0.496094 -0.41341,-0.496094 -0.41341,-1.451074 z m 1.9141,-2.914552 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path639" />
<path
d="m 224.02004,76.073598 q 0,-0.839226 -0.34727,-1.314649 -0.34313,-0.479557 -0.94671,-0.479557 -0.60358,0 -0.95085,0.479557 -0.34313,0.475423 -0.34313,1.314649 0,0.839226 0.34313,1.318783 0.34727,0.475423 0.95085,0.475423 0.60358,0 0.94671,-0.475423 0.34727,-0.479557 0.34727,-1.318783 z m -2.58796,-1.616439 q 0.23978,-0.413412 0.60358,-0.61185 0.36794,-0.202571 0.87643,-0.202571 0.84336,0 1.3684,0.669726 0.52916,0.669727 0.52916,1.761134 0,1.091407 -0.52916,1.761133 -0.52504,0.669727 -1.3684,0.669727 -0.50849,0 -0.87643,-0.198437 -0.3638,-0.202572 -0.60358,-0.615984 v 0.694532 h -0.76481 v -6.432685 h 0.76481 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path641" />
<path
d="m 226.07055,71.951884 h 0.76068 v 6.432685 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path643" />
<path
d="m 228.42288,73.754359 h 0.76067 v 4.63021 h -0.76067 z m 0,-1.802475 h 0.76067 v 0.963249 h -0.76067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path645" />
<path
d="m 234.10728,73.932126 v 0.711068 q -0.32246,-0.177767 -0.64905,-0.264584 -0.32246,-0.09095 -0.65319,-0.09095 -0.74001,0 -1.14929,0.471289 -0.40927,0.467155 -0.40927,1.314649 0,0.847494 0.40927,1.318783 0.40928,0.467155 1.14929,0.467155 0.33073,0 0.65319,-0.08682 0.32659,-0.09095 0.64905,-0.268718 v 0.7028 q -0.31832,0.148828 -0.66145,0.223242 -0.339,0.07441 -0.72347,0.07441 -1.04594,0 -1.66192,-0.657324 -0.61598,-0.657325 -0.61598,-1.773536 0,-1.132748 0.62012,-1.781804 0.62425,-0.649056 1.70739,-0.649056 0.3514,0 0.68626,0.07441 0.33486,0.07028 0.64905,0.214974 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path647" />
<path
d="m 241.85461,72.414905 v 0.814421 q -0.47543,-0.227376 -0.89711,-0.338998 -0.42168,-0.111621 -0.81442,-0.111621 -0.68213,0 -1.0542,0.264584 -0.36793,0.264583 -0.36793,0.752409 0,0.409277 0.24391,0.620117 0.24805,0.206706 0.93431,0.334864 l 0.50436,0.103353 q 0.93431,0.177767 1.37666,0.628385 0.44649,0.446485 0.44649,1.198894 0,0.897103 -0.60358,1.360124 -0.59945,0.463021 -1.76114,0.463021 -0.43821,0 -0.93431,-0.09922 -0.49196,-0.09922 -1.02112,-0.293523 v -0.859896 q 0.50849,0.285254 0.99632,0.429948 0.48782,0.144694 0.95911,0.144694 0.71521,0 1.10381,-0.28112 0.38861,-0.28112 0.38861,-0.802018 0,-0.454753 -0.28112,-0.711068 -0.27699,-0.256315 -0.91364,-0.384473 l -0.5085,-0.09922 q -0.93431,-0.186035 -1.35185,-0.58291 -0.41755,-0.396875 -0.41755,-1.103809 0,-0.818555 0.57464,-1.289844 0.57878,-0.47129 1.59164,-0.47129 0.43408,0 0.8847,0.07855 0.45062,0.07855 0.92191,0.235645 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path649" />
<path
d="m 245.29007,74.28766 q -0.61185,0 -0.96739,0.479557 -0.35553,0.475424 -0.35553,1.306381 0,0.830957 0.3514,1.310515 0.35553,0.475423 0.97152,0.475423 0.60771,0 0.96325,-0.479557 0.35553,-0.479558 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302247 -0.35554,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785938 0,1.136882 -0.56637,1.785938 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path651" />
<path
d="m 251.01996,71.951884 v 0.63252 h -0.72761 q -0.40927,0 -0.57051,0.165365 -0.15709,0.165364 -0.15709,0.595312 v 0.409278 h 1.25264 v 0.591178 h -1.25264 v 4.039032 h -0.76481 v -4.039032 h -0.72761 v -0.591178 h 0.72761 v -0.322461 q 0,-0.77308 0.35966,-1.12448 0.35967,-0.355534 1.14102,-0.355534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path653" />
<path
d="m 252.26019,72.43971 v 1.314649 h 1.56683 v 0.591178 h -1.56683 v 2.513543 q 0,0.566374 0.15296,0.727604 0.15709,0.161231 0.63252,0.161231 h 0.78135 v 0.636654 h -0.78135 q -0.88057,0 -1.21543,-0.326595 -0.33487,-0.33073 -0.33487,-1.198894 v -2.513543 h -0.5581 v -0.591178 h 0.5581 V 72.43971 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path655" />
<path
d="m 254.38511,73.754359 h 0.76068 l 0.95085,3.613217 0.94671,-3.613217 h 0.8971 l 0.95085,3.613217 0.94671,-3.613217 h 0.76068 l -1.2113,4.63021 h -0.8971 l -0.99632,-3.795119 -1.00046,3.795119 h -0.8971 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path657" />
<path
d="m 263.85638,76.057061 q -0.92191,0 -1.27744,0.21084 -0.35554,0.21084 -0.35554,0.719337 0,0.405143 0.26459,0.644922 0.26872,0.235644 0.7276,0.235644 0.63252,0 1.01286,-0.446484 0.38447,-0.450619 0.38447,-1.19476 v -0.169499 z m 1.51722,-0.314192 v 2.6417 h -0.76068 v -0.7028 q -0.26045,0.42168 -0.64905,0.624252 -0.38861,0.198437 -0.95085,0.198437 -0.71107,0 -1.13275,-0.396875 -0.41754,-0.401009 -0.41754,-1.070736 0,-0.781348 0.5209,-1.178223 0.52503,-0.396875 1.56269,-0.396875 h 1.0666 v -0.07441 q 0,-0.525033 -0.34726,-0.810287 -0.34313,-0.289388 -0.96738,-0.289388 -0.39688,0 -0.77308,0.09508 -0.37621,0.09508 -0.72347,0.285254 v -0.702799 q 0.41754,-0.161231 0.81028,-0.239779 0.39274,-0.08268 0.76481,-0.08268 1.00459,0 1.50069,0.520898 0.49609,0.520899 0.49609,1.579233 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path659" />
<path
d="m 269.62347,74.465427 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64493,0 -0.99219,0.42168 -0.34313,0.417545 -0.34313,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62425,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0785,0 0.17363,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path661" />
<path
d="m 274.1958,75.879294 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198894 0.42581,0.409277 1.18235,0.409277 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83922,0.264584 -0.42995,0.09095 -0.8723,0.09095 -1.10795,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.5457,0.599446 0.5457,1.632975 z m -0.76068,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.339,-0.37207 -0.90124,-0.37207 -0.63665,0 -1.02112,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path663" />
<path
d="m 278.87149,77.690037 v 2.455665 h -0.76481 v -6.391343 h 0.76481 v 0.7028 q 0.23978,-0.413412 0.60358,-0.61185 0.36793,-0.202571 0.87643,-0.202571 0.84336,0 1.36839,0.669726 0.52917,0.669727 0.52917,1.761134 0,1.091407 -0.52917,1.761133 -0.52503,0.669727 -1.36839,0.669727 -0.5085,0 -0.87643,-0.198437 -0.3638,-0.202572 -0.60358,-0.615984 z m 2.58795,-1.616439 q 0,-0.839226 -0.34726,-1.314649 -0.34313,-0.479557 -0.94671,-0.479557 -0.60359,0 -0.95085,0.479557 -0.34313,0.475423 -0.34313,1.314649 0,0.839226 0.34313,1.318783 0.34726,0.475423 0.95085,0.475423 0.60358,0 0.94671,-0.475423 0.34726,-0.479557 0.34726,-1.318783 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path665" />
<path
d="m 286.19302,74.465427 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64493,0 -0.99219,0.42168 -0.34313,0.417545 -0.34313,1.203027 v 2.439129 h -0.76481 v -4.63021 h 0.76481 v 0.719336 q 0.23978,-0.42168 0.62425,-0.624252 0.38447,-0.206705 0.93431,-0.206705 0.0786,0 0.17363,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path667" />
<path
d="m 288.59907,74.28766 q -0.61185,0 -0.96738,0.479557 -0.35554,0.475424 -0.35554,1.306381 0,0.830957 0.3514,1.310515 0.35554,0.475423 0.97152,0.475423 0.60772,0 0.96325,-0.479557 0.35553,-0.479558 0.35553,-1.306381 0,-0.822689 -0.35553,-1.302247 -0.35553,-0.483691 -0.96325,-0.483691 z m 0,-0.644922 q 0.99219,0 1.55856,0.644922 0.56638,0.644922 0.56638,1.785938 0,1.136882 -0.56638,1.785938 -0.56637,0.644922 -1.55856,0.644922 -0.99632,0 -1.56269,-0.644922 -0.56224,-0.649056 -0.56224,-1.785938 0,-1.141016 0.56224,-1.785938 0.56637,-0.644922 1.56269,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path669" />
<path
d="m 291.9849,73.754359 h 0.76068 v 4.712892 q 0,0.884701 -0.339,1.281576 -0.33486,0.396875 -1.08313,0.396875 h -0.28939 V 79.50078 h 0.20257 q 0.43408,0 0.59118,-0.202571 0.15709,-0.198438 0.15709,-0.830958 z m 0,-1.802475 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path671" />
<path
d="m 298.2977,75.879294 v 0.372071 h -3.49747 q 0.0496,0.785482 0.47129,1.198894 0.42582,0.409277 1.18236,0.409277 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83923,0.264584 -0.42994,0.09095 -0.87229,0.09095 -1.10795,0 -1.757,-0.644922 -0.64493,-0.644922 -0.64493,-1.744597 0,-1.136882 0.61185,-1.802475 0.61599,-0.669726 1.65778,-0.669726 0.93431,0 1.47588,0.603581 0.54571,0.599446 0.54571,1.632975 z m -0.76068,-0.223242 q -0.008,-0.624251 -0.3514,-0.996322 -0.339,-0.37207 -0.90124,-0.37207 -0.63665,0 -1.02112,0.359668 -0.38034,0.359668 -0.43822,1.012858 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path673" />
<path
d="m 302.8783,73.932126 v 0.711068 q -0.32247,-0.177767 -0.64906,-0.264584 -0.32246,-0.09095 -0.65319,-0.09095 -0.74001,0 -1.14928,0.471289 -0.40928,0.467155 -0.40928,1.314649 0,0.847494 0.40928,1.318783 0.40927,0.467155 1.14928,0.467155 0.33073,0 0.65319,-0.08682 0.32659,-0.09095 0.64906,-0.268718 v 0.7028 q -0.31833,0.148828 -0.66146,0.223242 -0.339,0.07441 -0.72347,0.07441 -1.04593,0 -1.66192,-0.657324 -0.61598,-0.657325 -0.61598,-1.773536 0,-1.132748 0.62012,-1.781804 0.62425,-0.649056 1.70739,-0.649056 0.3514,0 0.68626,0.07441 0.33486,0.07028 0.64906,0.214974 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path675" />
<path
d="m 304.95364,72.43971 v 1.314649 h 1.56683 v 0.591178 h -1.56683 v 2.513543 q 0,0.566374 0.15296,0.727604 0.1571,0.161231 0.63252,0.161231 h 0.78135 v 0.636654 h -0.78135 q -0.88057,0 -1.21543,-0.326595 -0.33486,-0.33073 -0.33486,-1.198894 v -2.513543 h -0.55811 v -0.591178 h 0.55811 V 72.43971 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path677" />
<path
d="m 307.71522,77.334503 h 0.8723 v 0.711068 l -0.678,1.322918 h -0.5333 l 0.339,-1.322918 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path679" />
<path
d="m 87.155987,86.640399 q -0.921908,0 -1.277442,0.21084 -0.355534,0.21084 -0.355534,0.719336 0,0.405144 0.264584,0.644922 0.268717,0.235645 0.727604,0.235645 0.63252,0 1.012859,-0.446485 0.384472,-0.450618 0.384472,-1.194759 v -0.169499 z m 1.517221,-0.314193 v 2.6417 H 87.91253 v -0.702799 q -0.260449,0.42168 -0.649056,0.624251 -0.388607,0.198438 -0.950847,0.198438 -0.711068,0 -1.132747,-0.396875 -0.417546,-0.40101 -0.417546,-1.070736 0,-0.781348 0.520899,-1.178224 0.525032,-0.396875 1.562695,-0.396875 h 1.066602 v -0.07441 q 0,-0.525033 -0.347265,-0.810287 -0.343132,-0.289388 -0.967384,-0.289388 -0.396875,0 -0.773079,0.09508 -0.376205,0.09508 -0.723471,0.285254 v -0.7028 q 0.417546,-0.16123 0.810287,-0.239779 0.392741,-0.08268 0.764812,-0.08268 1.00459,0 1.500684,0.520899 0.496094,0.520898 0.496094,1.579232 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path681" />
<path
d="m 94.0889,86.173244 v 2.794662 h -0.760677 v -2.769857 q 0,-0.657325 -0.256315,-0.98392 -0.256316,-0.326595 -0.768946,-0.326595 -0.615983,0 -0.971517,0.392741 -0.355534,0.392741 -0.355534,1.070736 v 2.616895 h -0.764812 v -4.63021 h 0.764812 v 0.719337 q 0.272851,-0.417546 0.640788,-0.624252 0.37207,-0.206706 0.855762,-0.206706 0.797884,0 1.207162,0.496094 0.409277,0.49196 0.409277,1.451075 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path683" />
<path
d="m 98.652964,85.040496 v -2.505274 h 0.760678 v 6.432684 h -0.760678 v -0.694531 q -0.239779,0.413412 -0.607715,0.615983 -0.363802,0.198438 -0.876433,0.198438 -0.839225,0 -1.368392,-0.669727 -0.525033,-0.669727 -0.525033,-1.761133 0,-1.091407 0.525033,-1.761134 0.529167,-0.669727 1.368392,-0.669727 0.512631,0 0.876433,0.202572 0.367936,0.198437 0.607715,0.611849 z m -2.592091,1.61644 q 0,0.839225 0.343132,1.318783 0.347266,0.475423 0.950847,0.475423 0.603581,0 0.950846,-0.475423 0.347266,-0.479558 0.347266,-1.318783 0,-0.839226 -0.347266,-1.314649 -0.347265,-0.479558 -0.950846,-0.479558 -0.603581,0 -0.950847,0.479558 -0.343132,0.475423 -0.343132,1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path685" />
<path
d="m 103.67178,84.337696 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path687" />
<path
d="m 108.97585,84.474122 v 0.719336 q -0.32246,-0.165364 -0.66972,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85163,0.173633 -0.28112,0.173633 -0.28112,0.520899 0,0.264583 0.20257,0.417545 0.20258,0.148829 0.81442,0.285254 l 0.26045,0.05788 q 0.81029,0.173633 1.14929,0.49196 0.34313,0.314193 0.34313,0.880567 0,0.644922 -0.51263,1.021126 -0.5085,0.376205 -1.40147,0.376205 -0.37207,0 -0.77721,-0.07441 -0.40101,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83095,0.330729 0.40928,0.107487 0.81029,0.107487 0.53744,0 0.82682,-0.181901 0.28939,-0.186035 0.28939,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.2067,-0.165365 -0.91364,-0.318327 l -0.26458,-0.06201 q -0.70693,-0.148828 -1.02113,-0.454753 -0.31419,-0.310058 -0.31419,-0.847493 0,-0.653191 0.46302,-1.008725 0.46302,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68626,0.186035 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path689" />
<path
d="m 113.04796,87.140627 v -2.802931 h 0.76067 v 2.773992 q 0,0.657325 0.25632,0.988054 0.25631,0.326595 0.76895,0.326595 0.61598,0 0.97151,-0.392741 0.35967,-0.392741 0.35967,-1.070736 v -2.625164 h 0.76068 v 4.63021 h -0.76068 v -0.711068 q -0.27699,0.42168 -0.64492,0.628386 -0.3638,0.202572 -0.8475,0.202572 -0.79788,0 -1.21129,-0.496094 -0.41341,-0.496094 -0.41341,-1.451075 z m 1.91409,-2.914552 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path691" />
<path
d="m 121.44435,84.474122 v 0.719336 q -0.32247,-0.165364 -0.66973,-0.248047 -0.34727,-0.08268 -0.71934,-0.08268 -0.56637,0 -0.85163,0.173633 -0.28112,0.173633 -0.28112,0.520899 0,0.264583 0.20258,0.417545 0.20257,0.148829 0.81442,0.285254 l 0.26045,0.05788 q 0.81028,0.173633 1.14928,0.49196 0.34313,0.314193 0.34313,0.880567 0,0.644922 -0.51263,1.021126 -0.50849,0.376205 -1.40146,0.376205 -0.37207,0 -0.77722,-0.07441 -0.40101,-0.07028 -0.84749,-0.214974 v -0.785482 q 0.42168,0.219108 0.83096,0.330729 0.40927,0.107487 0.81028,0.107487 0.53744,0 0.82683,-0.181901 0.28938,-0.186035 0.28938,-0.520899 0,-0.310059 -0.21084,-0.475423 -0.2067,-0.165365 -0.91364,-0.318327 l -0.26458,-0.06201 q -0.70693,-0.148828 -1.02113,-0.454753 -0.31419,-0.310058 -0.31419,-0.847493 0,-0.653191 0.46302,-1.008725 0.46302,-0.355534 1.31465,-0.355534 0.42168,0 0.79375,0.06201 0.37207,0.06201 0.68627,0.186035 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path693" />
<path
d="m 126.86417,86.462632 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47129,1.198893 0.42581,0.409278 1.18236,0.409278 0.43821,0 0.84749,-0.107487 0.41341,-0.107487 0.81856,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83923,0.264583 -0.42995,0.09095 -0.8723,0.09095 -1.10794,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61185,-1.802475 0.61598,-0.669727 1.65778,-0.669727 0.93431,0 1.47588,0.603581 0.5457,0.599447 0.5457,1.632977 z m -0.76068,-0.223242 q -0.008,-0.624252 -0.3514,-0.996322 -0.33899,-0.372071 -0.90123,-0.372071 -0.63666,0 -1.02113,0.359668 -0.38034,0.359669 -0.43822,1.012859 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path695" />
<path
d="m 131.15952,85.040496 v -2.505274 h 0.76068 v 6.432684 h -0.76068 v -0.694531 q -0.23978,0.413412 -0.60771,0.615983 -0.36381,0.198438 -0.87644,0.198438 -0.83922,0 -1.36839,-0.669727 -0.52503,-0.669727 -0.52503,-1.761133 0,-1.091407 0.52503,-1.761134 0.52917,-0.669727 1.36839,-0.669727 0.51263,0 0.87644,0.202572 0.36793,0.198437 0.60771,0.611849 z m -2.59209,1.61644 q 0,0.839225 0.34313,1.318783 0.34727,0.475423 0.95085,0.475423 0.60358,0 0.95084,-0.475423 0.34727,-0.479558 0.34727,-1.318783 0,-0.839226 -0.34727,-1.314649 -0.34726,-0.479558 -0.95084,-0.479558 -0.60358,0 -0.95085,0.479558 -0.34313,0.475423 -0.34313,1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path697" />
<path
d="m 135.73599,84.337696 h 0.76067 l 0.95085,3.613218 0.94671,-3.613218 h 0.89711 l 0.95084,3.613218 0.94671,-3.613218 h 0.76068 l -1.21129,4.63021 h -0.89711 l -0.99632,-3.795118 -1.00046,3.795118 h -0.8971 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path699" />
<path
d="m 144.89719,84.870997 q -0.61185,0 -0.96739,0.479558 -0.35553,0.475423 -0.35553,1.306381 0,0.830957 0.3514,1.310514 0.35553,0.475424 0.97152,0.475424 0.60771,0 0.96325,-0.479558 0.35553,-0.479557 0.35553,-1.30638 0,-0.82269 -0.35553,-1.302247 -0.35554,-0.483692 -0.96325,-0.483692 z m 0,-0.644922 q 0.99218,0 1.55856,0.644922 0.56637,0.644922 0.56637,1.785939 0,1.136881 -0.56637,1.785938 -0.56638,0.644922 -1.55856,0.644922 -0.99633,0 -1.5627,-0.644922 -0.56224,-0.649057 -0.56224,-1.785938 0,-1.141017 0.56224,-1.785939 0.56637,-0.644922 1.5627,-0.644922 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path701" />
<path
d="m 150.96607,85.048764 q -0.12816,-0.07441 -0.28112,-0.107487 -0.14883,-0.03721 -0.33073,-0.03721 -0.64492,0 -0.99219,0.42168 -0.34313,0.417546 -0.34313,1.203028 v 2.439128 h -0.76481 v -4.63021 h 0.76481 v 0.719337 q 0.23978,-0.42168 0.62425,-0.624252 0.38448,-0.206706 0.93431,-0.206706 0.0786,0 0.17364,0.0124 0.0951,0.0083 0.21084,0.02894 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path703" />
<path
d="m 151.76396,82.535222 h 0.76067 v 6.432684 h -0.76067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path705" />
<path
d="m 157.16311,85.040496 v -2.505274 h 0.76068 v 6.432684 h -0.76068 v -0.694531 q -0.23978,0.413412 -0.60771,0.615983 -0.36381,0.198438 -0.87644,0.198438 -0.83922,0 -1.36839,-0.669727 -0.52503,-0.669727 -0.52503,-1.761133 0,-1.091407 0.52503,-1.761134 0.52917,-0.669727 1.36839,-0.669727 0.51263,0 0.87644,0.202572 0.36793,0.198437 0.60771,0.611849 z m -2.59209,1.61644 q 0,0.839225 0.34313,1.318783 0.34727,0.475423 0.95085,0.475423 0.60358,0 0.95084,-0.475423 0.34727,-0.479558 0.34727,-1.318783 0,-0.839226 -0.34727,-1.314649 -0.34726,-0.479558 -0.95084,-0.479558 -0.60358,0 -0.95085,0.479558 -0.34313,0.475423 -0.34313,1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path707" />
<path
d="m 159.04827,84.337696 h 0.76068 l 0.95084,3.613218 0.94671,-3.613218 h 0.89711 l 0.95084,3.613218 0.94672,-3.613218 h 0.76067 l -1.21129,4.63021 h -0.8971 l -0.99633,-3.795118 -1.00045,3.795118 h -0.89711 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path709" />
<path
d="m 166.41526,84.337696 h 0.76068 v 4.63021 h -0.76068 z m 0,-1.802474 h 0.76068 v 0.963249 h -0.76068 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path711" />
<path
d="m 171.81442,85.040496 v -2.505274 h 0.76067 v 6.432684 h -0.76067 v -0.694531 q -0.23978,0.413412 -0.60772,0.615983 -0.3638,0.198438 -0.87643,0.198438 -0.83923,0 -1.36839,-0.669727 -0.52504,-0.669727 -0.52504,-1.761133 0,-1.091407 0.52504,-1.761134 0.52916,-0.669727 1.36839,-0.669727 0.51263,0 0.87643,0.202572 0.36794,0.198437 0.60772,0.611849 z m -2.59209,1.61644 q 0,0.839225 0.34313,1.318783 0.34726,0.475423 0.95084,0.475423 0.60358,0 0.95085,-0.475423 0.34727,-0.479558 0.34727,-1.318783 0,-0.839226 -0.34727,-1.314649 -0.34727,-0.479558 -0.95085,-0.479558 -0.60358,0 -0.95084,0.479558 -0.34313,0.475423 -0.34313,1.314649 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path713" />
<path
d="m 178.10241,86.462632 v 0.372071 h -3.49746 q 0.0496,0.785482 0.47128,1.198893 0.42582,0.409278 1.18236,0.409278 0.43822,0 0.8475,-0.107487 0.41341,-0.107487 0.81855,-0.322461 v 0.719336 q -0.40928,0.173633 -0.83922,0.264583 -0.42995,0.09095 -0.8723,0.09095 -1.10795,0 -1.757,-0.644922 -0.64492,-0.644922 -0.64492,-1.744597 0,-1.136882 0.61184,-1.802475 0.61599,-0.669727 1.65778,-0.669727 0.93432,0 1.47588,0.603581 0.54571,0.599447 0.54571,1.632977 z m -0.76068,-0.223242 q -0.008,-0.624252 -0.3514,-0.996322 -0.339,-0.372071 -0.90124,-0.372071 -0.63665,0 -1.02112,0.359668 -0.38034,0.359669 -0.43822,1.012859 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path715" />
<path
d="m 179.4584,87.917841 h 0.87229 v 1.050065 h -0.87229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.264583"
id="path717" />
</g>
</g>
<g
id="g448"
transform="translate(-133.13673,-73.129534)">
<g
id="g847"
transform="matrix(0.31340082,0,0,0.31340082,236.21533,181.39013)">
<path
fill="#1793d1"
d="m 32.253,0.20991 c -2.849,6.9843 -4.579,11.559 -7.75,18.336 1.944,2.061 4.334,4.453 8.211,7.164 -4.168,-1.715 -7.009,-3.432 -9.133,-5.219 -4.059,8.47 -10.423,20.531 -23.328,43.719 10.14,-5.854 18.002,-9.466 25.328,-10.844 -0.314,-1.351 -0.481,-2.819 -0.469,-4.344 l 0.008,-0.32 c 0.161,-6.498 3.542,-11.495 7.547,-11.156 4.004,0.339 7.122,5.884 6.961,12.383 -0.031,1.224 -0.173,2.4 -0.414,3.492 7.247,1.418 15.034,5.013 25.039,10.789 -1.973,-3.632 -3.74,-6.905 -5.422,-10.024 -2.649,-2.053 -5.411,-4.724 -11.047,-7.617 3.874,1.007 6.65,2.171 8.812,3.469 -17.098,-31.835 -18.48,-36.068 -24.343,-49.828 v -9e-5 z"
id="path9" />
<path
fill="#ffffff"
fill-opacity="0.16568"
d="M 50.266,38.249 C 36.394,19.422 33.179,4.247 32.364,0.624 c 7.4,17.067 7.349,17.277 17.902,37.625 z"
id="path11" />
<path
fill="url(#a)"
d="m 32.378,0.45992 c -0.36,0.88448 -0.7,1.7468 -1.032,2.5625 -0.364,0.8946 -0.718,1.7565 -1.062,2.5938 -0.344,0.8373 -0.693,1.6309 -1.031,2.4375 -0.339,0.8065 -0.654,1.6039 -1,2.4063 -0.346,0.802 -0.726,1.613 -1.094,2.437 -0.368,0.825 -0.752,1.658 -1.156,2.532 -0.404,0.873 -0.828,1.801 -1.282,2.75 -0.061,0.128 -0.124,0.276 -0.187,0.406 1.939,2.054 4.33,4.427 8.187,7.125 -4.167,-1.715 -7,-3.432 -9.125,-5.219 -0.11,0.226 -0.198,0.425 -0.312,0.656 -0.42,0.871 -0.871,1.733 -1.344,2.688 -0.113,0.224 -0.196,0.427 -0.312,0.656 -0.501,1.004 -1.026,2.043 -1.594,3.156 -0.113,0.22 -0.228,0.402 -0.344,0.625 -0.343,0.667 -1.44,2.77 -2.562,4.907 -0.655,1.248 -1.169,2.27 -1.907,3.656 -0.209,0.398 -0.639,1.195 -0.75,1.406 8.125,-4.573 16.891,-11.216 32.813,-5.531 -0.797,-1.51 -1.562,-2.919 -2.25,-4.25 -0.688,-1.332 -1.312,-2.571 -1.906,-3.75 -0.594,-1.179 -1.143,-2.291 -1.657,-3.344 -0.513,-1.053 -0.989,-2.047 -1.437,-3 -0.448,-0.953 -0.885,-1.87 -1.281,-2.75 -0.397,-0.879 -0.766,-1.73 -1.125,-2.562 -0.359,-0.833 -0.695,-1.658 -1.032,-2.469 -0.336,-0.8115 -0.672,-1.5896 -1,-2.4063 -0.142,-0.3554 -0.263,-0.7338 -0.406,-1.0938 -0.888,-2.0849 -1.759,-4.1515 -2.812,-6.625 v 2e-5 z"
id="path13"
style="fill:url(#a)" />
</g>
<g
id="g84"
transform="matrix(0.04980447,0,0,0.04980447,263.71465,178.73478)">
<rect
x="118"
y="118"
fill="#9ccd2a"
width="124"
height="124"
id="rect4" />
<rect
x="270"
y="118"
fill="#932279"
width="124"
height="124"
id="rect6" />
<rect
x="270"
y="270"
fill="#efa724"
width="124"
height="124"
id="rect8" />
<rect
x="118"
y="270"
fill="#262577"
width="124"
height="124"
id="rect10" />
<g
id="use13"
transform="rotate(-135,256,256)">
<rect
x="118"
y="118"
fill="#9ccd2a"
width="124"
height="124"
id="rect60" />
<rect
x="270"
y="118"
fill="#932279"
width="124"
height="124"
id="rect62" />
<rect
x="270"
y="270"
fill="#efa724"
width="124"
height="124"
id="rect64" />
<rect
x="118"
y="270"
fill="#262577"
width="124"
height="124"
id="rect66" />
</g>
<path
fill="none"
stroke="#ffffff"
stroke-width="9"
d="m 236,256 -87,88 -88,-88 88,-88 z m 6,-14 H 118 V 118 h 124 z m 0,28 V 394 H 118 V 270 Z m 14,-34 -88,-87 88,-88 88,88 z m 0,40 -88,87 88,88 88,-88 z m 14,-34 V 118 h 124 v 124 z m 0,28 H 394 V 394 H 270 Z m 6,-14 87,88 88,-88 -88,-88 z"
id="path15" />
</g>
<g
id="g13"
transform="matrix(0.09449405,0,0,0.09449405,356.45659,179.38949)">
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96168;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path907"
cx="128"
cy="127.99999"
r="98" />
<path
style="opacity:1;fill:#73ba25;fill-opacity:1;stroke:none;stroke-width:13.8446;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 128,16 A 112,112 0 0 0 16,128 112,112 0 0 0 128,240 112,112 0 0 0 240,128 112,112 0 0 0 128,16 Z m 0,14 a 97.998915,97.999659 0 0 1 98,98 97.998915,97.999659 0 0 1 -98,98 97.998915,97.999659 0 0 1 -73.763183,-33.66528 c 7.061098,-5.10706 18.640211,-3.80284 32.872314,-2.19605 6.934989,0.81013 14.833329,1.71669 23.008059,1.89869 22.82389,0.14504 47.40688,-4.07013 62.55908,-10.69825 9.80273,-4.26047 16.0584,-7.09653 19.97802,-10.66064 1.40972,-1.16811 2.14191,-3.06412 2.90357,-5.10474 l 0.53491,-1.34839 c 0.63379,-1.65411 1.56454,-5.13956 1.97388,-7.04956 0.16481,-0.8414 0.35765,-1.66518 -0.33838,-2.20288 -0.6363,-0.49168 -2.09863,0.38964 -2.09863,0.38964 -6.65366,4.00476 -23.28584,11.58939 -38.83667,11.91334 -19.30731,0.38942 -58.425755,-19.5443 -62.478764,-21.64942 -2.71264,-6.45909 -5.424076,-12.92177 -8.175778,-19.3645 27.986982,18.44043 51.201812,28.63435 68.971192,30.20631 19.78212,1.76219 35.20114,-9.03277 41.89404,-13.5232 0.87612,-0.58244 1.75161,-1.23425 2.55493,-1.86109 h 0.004 c 0.14375,-0.11214 0.47936,-0.40775 0.43579,-0.68017 -1.10961,-6.93392 -11.43969,-40.557897 -19.25854,-48.644534 -2.15437,-2.202672 -3.87946,-4.375411 -7.37256,-6.418947 -28.28567,-16.482787 -95.389828,-26.430355 -98.533705,-26.88574 0,0 -0.316184,-0.06492 -0.534912,0.14868 -0.169835,0.165952 -0.20337,0.485353 -0.20337,0.485353 0,0 -0.257656,13.903155 -0.297362,15.457768 -2.533803,-0.851287 -10.99503,-3.594596 -22.948243,-6.788093 A 97.998915,97.999659 0 0 1 128,30 Z m 20.42578,56.851078 c 0.4763,-0.0079 0.95442,-0.0035 1.43384,0.01199 15.81694,0.565582 28.24724,13.917972 27.70434,29.717522 -0.29835,7.66562 -3.50617,14.77959 -9.09692,19.98145 -5.60761,5.26668 -12.90665,7.97471 -20.61206,7.71607 -15.79992,-0.5826 -28.21547,-13.9073 -27.68555,-29.72095 0.28408,-7.66561 3.49191,-14.778768 9.09693,-19.996831 5.25711,-4.90819 12.01497,-7.59416 19.15942,-7.709222 z m 0.1897,8.457758 c -4.99469,0.0623 -9.69358,1.940689 -13.33862,5.359374 -3.88819,3.64661 -6.17999,8.5876 -6.34204,13.93677 -0.37225,11.05356 8.28161,20.35056 19.30981,20.75732 5.36323,0.16206 10.47533,-1.73499 14.38622,-5.38159 3.90522,-3.66361 6.15261,-8.6024 6.32325,-13.93163 0.37225,-11.05065 -8.28164,-20.337805 -19.33545,-20.729989 -0.33538,-0.01207 -0.6702,-0.01444 -1.00317,-0.01024 z m 4.27929,10.060794 c 4.91126,0 8.89014,2.64343 8.89014,5.93189 0,3.25718 -3.98164,5.91479 -8.89014,5.91479 -4.91139,0 -8.87817,-2.65746 -8.87817,-5.91479 0,-3.28846 3.96678,-5.93189 8.87817,-5.93189 z"
id="path820-3-6" />
<circle
style="opacity:0.3;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.08838;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path872"
cx="787.51135"
cy="-1078.8389"
r="0" />
</g>
<g
id="g28"
transform="matrix(0.07709922,0,0,0.07709922,388.30803,179.91992)">
<ellipse
cx="40.158001"
cy="150.022"
rx="28.347"
ry="26.52"
fill="#ff6309"
id="ellipse2" />
<ellipse
cx="238.479"
cy="260.74701"
rx="28.347"
ry="26.521"
fill="#ffb515"
id="ellipse4" />
<path
d="m 172.369,83.824 c 34.439,0 63.014,24.735 67.745,56.803 H 287.5 C 285.348,115.429 274.547,91.943 256.49,73.42 244.925,79.117 230.705,79.226 218.625,72.482 206.536,65.73 199.521,53.755 198.849,41.206 A 120.229,120.229 0 0 0 172.37,38.268 c -17.29,0 -33.998,3.651 -49.195,10.573 l 23.723,39.745 a 70.087,70.087 0 0 1 25.471,-4.762 z"
fill="#ff6309"
id="path6-5" />
<path
d="m 240.117,159.387 c -4.72,32.08 -33.299,56.83 -67.748,56.83 -9.002,0 -17.602,-1.694 -25.48,-4.768 l -23.727,39.748 c 15.193,6.926 31.908,10.579 49.205,10.579 9.035,0 17.914,-1.009 26.5,-2.944 0.66,-12.563 7.678,-24.559 19.775,-31.314 12.084,-6.75 26.31,-6.641 37.877,-0.932 18.043,-18.525 28.832,-42.01 30.978,-67.199 z"
fill="#c90016"
id="path8-3" />
<path
d="m 103.934,150.021 c 0,-21.09 10.249,-39.906 26.179,-52.036 L 106.396,58.246 A 116.407,116.407 0 0 0 90.669,70.998 C 76.943,84.274 67.1,100.305 61.683,117.8 c 10.913,6.838 18.139,18.707 18.139,32.221 0,13.512 -7.227,25.384 -18.14,32.219 5.417,17.496 15.26,33.525 28.986,46.803 a 116.433,116.433 0 0 0 15.714,12.748 l 23.721,-39.742 C 114.177,189.92 103.934,171.104 103.934,150.021 Z"
fill="#ffb515"
id="path10" />
<ellipse
cx="238.45599"
cy="39.251999"
rx="28.346001"
ry="26.521999"
fill="#c90016"
id="ellipse12" />
</g>
<g
id="g25"
transform="matrix(0.10029027,0,0,0.08056997,302.09289,187.05358)">
<g
fill="#d70751"
id="g10">
<path
d="m 64.525,62.053 c -4.125,0.058 0.78,2.125 6.165,2.954 1.488,-1.161 2.838,-2.336 4.04,-3.479 -3.354,0.821 -6.765,0.838 -10.205,0.525 m 22.14,-5.52 c 2.457,-3.389 4.246,-7.102 4.878,-10.939 -0.551,2.736 -2.035,5.099 -3.435,7.592 -7.711,4.854 -0.726,-2.883 -0.004,-5.824 -8.29,10.436 -1.138,6.257 -1.439,9.171 m 8.174,-21.265 c 0.497,-7.428 -1.462,-5.08 -2.121,-2.245 0.766,0.4 1.377,5.237 2.121,2.245 M 48.883,-66.264 c 2.201,0.395 4.757,0.698 4.398,1.224 2.407,-0.528 2.954,-1.015 -4.398,-1.224"
id="path2" />
<path
d="m 53.281,-65.04 -1.556,0.32 1.448,-0.127 0.108,-0.193"
id="path4-7" />
<path
d="m 121.93,38.085 c 0.247,6.671 -1.95,9.907 -3.932,15.637 l -3.564,1.781 c -2.919,5.666 0.282,3.598 -1.807,8.105 -4.556,4.049 -13.823,12.67 -16.789,13.457 -2.163,-0.047 1.469,-2.554 1.943,-3.537 -6.097,4.188 -4.894,6.285 -14.217,8.83 L 83.291,81.751 C 60.29,92.569 28.344,71.129 28.765,41.875 28.519,43.732 28.067,43.268 27.557,44.019 26.371,28.967 34.509,13.849 48.232,7.676 61.659,1.03 77.395,3.758 87.012,12.72 81.73,5.8 71.217,-1.534 58.757,-0.848 46.549,-0.655 35.132,7.102 31.321,15.521 c -6.253,3.938 -6.979,15.177 -9.704,17.233 -3.665,26.943 6.896,38.583 24.762,52.275 2.812,1.896 0.792,2.184 1.173,3.627 C 41.616,85.877 36.18,81.68 31.711,76.542 c 2.372,3.473 4.931,6.847 8.239,9.499 -5.596,-1.897 -13.074,-13.563 -15.256,-14.038 9.647,17.274 39.142,30.295 54.587,23.836 -7.146,0.263 -16.226,0.146 -24.256,-2.822 -3.371,-1.734 -7.958,-5.331 -7.14,-6.003 21.079,7.875 42.854,5.965 61.09,-8.655 4.641,-3.614 9.709,-9.761 11.173,-9.846 -2.206,3.317 0.377,1.596 -1.318,4.523 4.625,-7.456 -2.008,-3.035 4.779,-12.877 l 2.507,3.453 c -0.931,-6.188 7.687,-13.704 6.813,-23.492 1.975,-2.994 2.206,3.22 0.107,10.107 2.912,-7.64 0.767,-8.867 1.516,-15.171 0.81,2.118 1.867,4.37 2.412,6.606 -1.895,-7.382 1.948,-12.433 2.898,-16.724 -0.937,-0.415 -2.928,3.264 -3.383,-5.457 0.065,-3.788 1.054,-1.985 1.435,-2.917 -0.744,-0.427 -2.694,-3.33 -3.88,-8.9 0.86,-1.308 2.3,3.393 3.47,3.586 -0.753,-4.429 -2.049,-7.805 -2.103,-11.202 -3.421,-7.149 -1.211,0.953 -3.985,-3.069 -3.641,-11.357 3.021,-2.637 3.47,-7.796 5.52,7.995 8.667,20.387 10.11,25.519 -1.103,-6.258 -2.883,-12.32 -5.058,-18.185 1.677,0.705 -2.699,-12.875 2.18,-3.882 -5.21,-19.172 -22.302,-37.087 -38.025,-45.493 1.924,1.76 4.354,3.971 3.481,4.317 -7.819,-4.656 -6.444,-5.018 -7.565,-6.985 -6.369,-2.591 -6.788,0.208 -11.007,0.004 -12.005,-6.368 -14.318,-5.69 -25.368,-9.681 l 0.502,2.349 c -7.953,-2.649 -9.265,1.005 -17.862,0.009 -0.523,-0.409 2.753,-1.479 5.452,-1.871 -7.69,1.015 -7.329,-1.515 -14.854,0.279 1.855,-1.301 3.815,-2.162 5.793,-3.269 -6.271,0.381 -14.971,3.649 -12.286,0.677 -10.235,4.569 -28.403,10.976 -38.597,20.535 l -0.321,-2.142 c -4.672,5.608 -20.371,16.748 -21.622,24.011 l -1.249,0.291 c -2.431,4.116 -4.004,8.781 -5.932,13.016 -3.18,5.417 -4.661,2.085 -4.208,2.934 -6.253,12.679 -9.359,23.332 -12.043,32.069 1.912,2.858 0.046,17.206 0.769,28.688 -3.141,56.709 39.8,111.77 86.737,124.48 6.88,2.459 17.11,2.364 25.813,2.618 -10.268,-2.937 -11.595,-1.556 -21.595,-5.044 -7.215,-3.398 -8.797,-7.277 -13.907,-11.711 l 2.022,3.573 c -10.021,-3.547 -5.829,-4.39 -13.982,-6.972 l 2.16,-2.82 C 11.175,156.251 5.82,151.022 4.355,148.126 l -3.553,0.14 c -4.27,-5.269 -6.545,-9.063 -6.379,-12.005 l -1.148,2.047 c -1.301,-2.235 -15.709,-19.759 -8.234,-15.679 -1.389,-1.271 -3.235,-2.067 -5.237,-5.703 l 1.522,-1.739 c -3.597,-4.627 -6.621,-10.562 -6.391,-12.536 1.919,2.592 3.25,3.075 4.568,3.52 -9.083,-22.539 -9.593,-1.242 -16.474,-22.942 l 1.456,-0.116 c -1.116,-1.682 -1.793,-3.506 -2.69,-5.298 l 0.633,-6.313 C -44.113,63.94 -39.401,39.351 -38.459,25.865 -37.804,20.38 -33,14.543 -29.345,5.388 l -2.227,-0.384 c 4.256,-7.423 24.301,-29.814 33.583,-28.662 4.499,-5.649 -0.892,-0.02 -1.772,-1.443 9.878,-10.223 12.984,-7.222 19.65,-9.061 7.19,-4.268 -6.17,1.664 -2.761,-1.628 12.427,-3.174 8.808,-7.216 25.021,-8.828 1.71,0.973 -3.969,1.503 -5.395,2.766 10.354,-5.066 32.769,-3.914 47.326,2.811 16.895,7.896 35.873,31.232 36.622,53.189 l 0.852,0.229 c -0.431,8.729 1.336,18.822 -1.727,28.094 l 2.1,-4.385"
id="path6" />
<path
d="m 19.5,67.715 -0.578,2.893 c 2.71,3.683 4.861,7.673 8.323,10.552 -2.49,-4.863 -4.341,-6.872 -7.745,-13.445 m 6.409,-0.251 c -1.435,-1.587 -2.284,-3.497 -3.235,-5.4 0.909,3.345 2.771,6.219 4.504,9.143 l -1.269,-3.743 m 113.411,-24.65 -0.605,1.52 c -1.111,7.892 -3.511,15.701 -7.189,22.941 4.06,-7.639 6.69,-15.995 7.79,-24.461 M 49.698,-68.243 c 2.789,-1.022 6.855,-0.56 9.814,-1.233 -3.855,0.324 -7.693,0.517 -11.484,1.005 l 1.67,0.228 m -97.917,52.067 c 0.642,5.951 -4.477,8.26 1.134,4.337 3.007,-6.773 -1.175,-1.87 -1.134,-4.337 m -6.593,27.538 c 1.292,-3.967 1.526,-6.349 2.02,-8.645 -3.571,4.566 -1.643,5.539 -2.02,8.645"
id="path8" />
</g>
</g>
<g
id="g48"
transform="matrix(0.07949971,0,0,0.07949971,326.68832,180.87152)">
<g
id="g38">
<g
id="g20">
<path
d="m 266.62575,133.50613 c 0,-73.52485 -59.60353,-133.1303 -133.12783,-133.1303 -73.49124,0 -133.07153,59.5554 -133.12367,133.03642 V 236.4333 c 0.03955,16.68433 13.5712,30.19087 30.26602,30.19087 h 102.91165 c 73.49975,-0.0288 133.07383,-59.61275 133.07383,-133.11804"
id="voice"
style="fill:#294172" />
<path
d="m 77.126289,142.09756 c 0,0 47.844751,0 47.844751,0 0,0 0,47.84478 0,47.84478 0,26.41029 -21.43445,47.84473 -47.844751,47.84473 -26.41031,0 -47.844759,-21.43444 -47.844759,-47.84473 0,-26.41031 21.434449,-47.84478 47.844759,-47.84478 z"
id="in"
style="fill:none;stroke:#3c6eb4;stroke-width:29.21" />
<use
transform="rotate(180,124.85576,142.1441)"
id="finity"
xlink:href="#in"
x="0"
y="0"
width="100%"
height="100%" />
<path
d="m 139.6074,127.52923 v 62.34618 c 0,34.50402 -27.97537,62.48 -62.48061,62.48 -5.23494,0 -8.95649,-0.59101 -13.80235,-1.8577 -7.06595,-1.84912 -12.84046,-7.64253 -12.84286,-14.38111 0,-8.14513 5.91236,-14.0699 14.75029,-14.0699 4.20637,0 5.73267,0.80765 11.89492,0.80765 18.19161,0 32.94764,-14.73519 32.97955,-32.92679 v -28.65657 c 0,-2.56775 -2.08663,-4.64825 -4.65867,-4.64825 l -21.66521,-0.004 c -8.07212,0 -14.59401,-6.43843 -14.59401,-14.53266 -0.0043,-8.14456 6.5888,-14.55657 14.74808,-14.55657"
id="free"
style="fill:#ffffff" />
<use
transform="rotate(180,124.85576,142.1441)"
id="dom"
xlink:href="#free"
x="0"
y="0"
width="100%"
height="100%" />
<path
d="m 243.65456,243.58425 c 0,0 4e-5,-5.53139 4e-5,-5.53139 l -2.52853,5.79776 c 0,0 -2.46141,-5.79776 -2.46141,-5.79776 l 4.7e-4,5.53139 h -1.4183 v -8.73492 h 1.48704 c 0,0 2.43397,5.58051 2.43397,5.58051 l 2.39711,-5.58051 h 1.50544 v 8.73492 z m -10.33302,-7.27184 v 7.27184 h -1.48213 v -7.27184 h -2.48488 v -1.46308 h 6.44946 v 1.46308"
id="TM"
style="fill:#3c6eb4" />
</g>
</g>
</g>
<path
class="shp0"
d="m 420.55757,186.01059 v 5.10919 h 10.2184 v -10.21839 h -10.2184 z m 10.94828,0 v 5.10919 h 10.2184 v -10.21839 h -10.2184 z m -10.94828,10.94827 v 5.1092 h 10.2184 v -10.21839 h -10.2184 z m 10.94828,0 v 5.1092 h 10.2184 v -10.21839 h -10.2184 z"
id="path6-3"
style="fill:#0078d4;stroke-width:0.364943" />
</g>
</g>
</svg>