summaryrefslogtreecommitdiff
path: root/src/fullcolor/emblems.svg
blob: 5a0174b89f2522dce5907823482b428056088841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   inkscape:export-ydpi="90.000000"
   inkscape:export-xdpi="90.000000"
   inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
   width="1950"
   height="600"
   id="svg11300"
   sodipodi:version="0.32"
   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
   sodipodi:docname="emblems.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0"
   style="display:inline;enable-background:new"
   viewBox="0 0 1950 600"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/">
  <defs
     id="defs3">
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath5207-1-5">
      <rect
         clip-path="none"
         height="367.99976"
         id="rect5209-0-9"
         rx="31.106773"
         ry="31.106773"
         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
         width="367.99982"
         x="93.000092"
         y="-158.99989" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#bg-gradient-2"
       id="linearGradient13242"
       gradientUnits="userSpaceOnUse"
       x1="64"
       y1="756"
       x2="480"
       y2="756" />
    <linearGradient
       id="bg-gradient-2"
       inkscape:swatch="gradient">
      <stop
         style="stop-color:#3584e4;stop-opacity:1"
         offset="0"
         id="stop13402" />
      <stop
         style="stop-color:#62a0ea;stop-opacity:1"
         offset="1"
         id="stop13404" />
    </linearGradient>
  </defs>
  <sodipodi:namedview
     stroke="#ef2929"
     fill="#f57900"
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="0.25490196"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1"
     inkscape:cx="1210.9181"
     inkscape:cy="-106.64996"
     inkscape:current-layer="g5361"
     showgrid="false"
     inkscape:grid-bbox="true"
     inkscape:document-units="px"
     inkscape:showpageshadow="false"
     inkscape:window-width="2560"
     inkscape:window-height="1403"
     inkscape:window-x="3440"
     inkscape:window-y="0"
     width="400px"
     height="300px"
     inkscape:snap-nodes="true"
     inkscape:snap-bbox="true"
     objecttolerance="7"
     gridtolerance="12"
     guidetolerance="13"
     inkscape:window-maximized="1"
     inkscape:pagecheckerboard="false"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:locked="false"
     inkscape:bbox-paths="true"
     inkscape:bbox-nodes="true"
     inkscape:snap-bbox-edge-midpoints="true"
     inkscape:snap-bbox-midpoints="true"
     inkscape:snap-global="true"
     inkscape:document-rotation="0">
    <inkscape:grid
       type="xygrid"
       id="grid5883"
       spacingx="1px"
       spacingy="1px"
       enabled="true"
       visible="true" />
    <sodipodi:guide
       position="1295,170"
       orientation="0,1"
       id="guide5247"
       inkscape:locked="false" />
    <sodipodi:guide
       position="719,-547"
       orientation="1,0"
       id="guide5580"
       inkscape:locked="false" />
  </sodipodi:namedview>
  <metadata
     id="metadata4">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:creator>
          <cc:Agent>
            <dc:title>Jakub Steiner</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:source>http://jimmac.musichall.cz</dc:source>
        <cc:license
           rdf:resource="" />
        <dc:title />
        <dc:subject>
          <rdf:Bag>
            <rdf:li>mp3</rdf:li>
            <rdf:li>audio</rdf:li>
            <rdf:li>media</rdf:li>
            <rdf:li>file</rdf:li>
            <rdf:li>audio</rdf:li>
            <rdf:li>sound</rdf:li>
            <rdf:li>music</rdf:li>
            <rdf:li>wave</rdf:li>
          </rdf:Bag>
        </dc:subject>
        <dc:date />
        <dc:rights>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:rights>
        <dc:publisher>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:publisher>
        <dc:identifier />
        <dc:relation />
        <dc:language />
        <dc:coverage />
        <dc:description>mimetypes</dc:description>
        <dc:contributor>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:contributor>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="emblem-symbolic-link"
     inkscape:groupmode="layer"
     style="display:inline"
     transform="translate(0,300)">
    <g
       inkscape:groupmode="layer"
       id="layer7"
       inkscape:label="baseplate"
       style="display:none"
       sodipodi:insensitive="true">
      <rect
         inkscape:label="48x48"
         y="-227.00366"
         x="560.0625"
         height="48"
         width="48"
         id="rect6284"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect6592"
         width="32"
         height="32"
         x="567"
         y="-151.00366"
         inkscape:label="32x32" />
      <rect
         inkscape:label="22x22"
         y="-99.941162"
         x="567"
         height="22"
         width="22"
         id="rect6749"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect6833"
         width="16"
         height="16"
         x="567"
         y="-58"
         inkscape:label="16x16" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect8104"
         width="24"
         height="24"
         x="566"
         y="-101"
         inkscape:label="24x24" />
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         x="19.805"
         y="-247.48639"
         id="context"
         inkscape:label="context"><tspan
           sodipodi:role="line"
           id="tspan2716"
           x="19.805"
           y="-247.48639">emblems</tspan></text>
      <text
         inkscape:label="icon-name"
         id="text3021"
         y="-247.48639"
         x="534.02563"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Bold';text-align:end;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         xml:space="preserve"><tspan
           y="-247.48639"
           x="534.02563"
           id="tspan3023"
           sodipodi:role="line">emblem-symbolic-link</tspan></text>
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect13805"
         width="512"
         height="512"
         x="21"
         y="-231"
         inkscape:label="256x256" />
      <path
         inkscape:connector-curvature="0"
         id="path13807"
         d="m 21.125,-231 v 476 36 H 497 h 36 0.125 V 245 H 533 V -231 H 497 V 245 H 57.125 v -476 z"
         style="display:inline;overflow:visible;visibility:visible;opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         inkscape:label="8x8"
         y="-23"
         x="567"
         height="8"
         width="8"
         id="rect4338"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <g
         style="display:inline;enable-background:new"
         id="g5760">
        <path
           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#8ae234;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
           d="M 274,317.51953 154,525.11914 h 75 V 588 h 90 v -62.88086 h 75 z"
           id="path5196"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer8"
       inkscape:label="icons"
       style="display:inline">
      <g
         transform="matrix(4.0007812,0,0,4.0007812,21.075009,-9200.8014)"
         style="display:inline;enable-background:new"
         id="g1397">
        <title
           id="title1413">emblem-symbolic-link</title>
        <rect
           style="display:inline;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
           id="rect9125-7"
           width="128"
           height="128"
           x="-1.5000001e-06"
           y="2242" />
        <g
           id="g3691">
          <rect
             ry="14.997071"
             rx="14.997071"
             y="2254"
             x="12"
             height="104"
             width="103.99994"
             id="rect3682"
             style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient13242);fill-opacity:1;stroke:none;stroke-width:6.51545;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1" />
        </g>
      </g>
      <path
         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.00156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
         d="m 189.56103,-77.629178 v 17.526622 c -3.24916,19.593426 12.01416,37.356495 31.87341,37.093243 h 63.69212 L 183.02069,74.095648 c -12.85109,12.347611 -13.08409,32.832412 -0.51721,45.469282 12.56688,12.63646 33.05261,12.51724 45.4713,-0.26406 l 97.1596,-102.302371 v 64.755845 c -0.25713,19.813866 16.00312,31.881426 36.9916,31.881426 h 18.69896 V -77.627978 Z"
         id="path12111"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccsccccccc" />
      <g
         transform="matrix(0.40384618,0,0,0.40384618,558.15384,-1134.2693)"
         style="display:inline;enable-background:new"
         id="g3691-3">
        <rect
           ry="14.857141"
           rx="14.857141"
           y="2254"
           x="12"
           height="104"
           width="104"
           id="rect3682-6"
           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient13242);fill-opacity:1;stroke:none;stroke-width:64.5466;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1" />
      </g>
      <path
         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.73588842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
         d="m 576.40987,-212.00008 v 1.61189 c -0.29881,1.80197 1.10493,3.4356 2.93134,3.4114 h 5.85765 l -9.39049,8.93056 c -1.18189,1.13558 -1.20332,3.01953 -0.0476,4.18172 1.15575,1.16215 3.03978,1.15119 4.1819,-0.0243 l 8.93559,-9.40855 v 5.95547 c -0.0236,1.82224 1.47177,2.93207 3.40204,2.93207 H 594 V -212 Z"
         id="path12111-5"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccsccccccc" />
      <g
         id="g4761"
         style="display:inline;enable-background:new"
         transform="matrix(0.26923078,0,0,0.26923078,565.76923,-755.84618)">
        <rect
           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient13242);fill-opacity:1;stroke:none;stroke-width:96.8199;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1"
           id="rect4757"
           width="104"
           height="104"
           x="12"
           y="2254"
           rx="14.857142"
           ry="14.857142" />
      </g>
      <path
         sodipodi:nodetypes="cccccsccccccc"
         inkscape:connector-curvature="0"
         id="path4763"
         d="m 578.02279,-141 v 1.09754 c -0.20346,1.22697 0.75235,2.33933 1.99596,2.32285 h 3.9885 l -6.39403,6.08086 c -0.80475,0.77322 -0.81935,2.05601 -0.0324,2.84736 0.78696,0.79131 2.06981,0.78385 2.84748,-0.0166 l 6.08429,-6.40632 v 4.0551 c -0.0161,1.24078 1.00214,1.99647 2.31647,1.99647 H 590 v -11.97725 z"
         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50107;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new" />
      <g
         transform="matrix(0.19170444,0,0,0.19170444,565.69955,-531.10181)"
         style="display:inline;enable-background:new"
         id="g4769">
        <rect
           ry="20.865454"
           rx="20.865454"
           y="2254"
           x="12"
           height="104"
           width="104"
           id="rect4765"
           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient13242);fill-opacity:1;stroke:none;stroke-width:135.974;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1" />
      </g>
      <path
         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.427468;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
         d="m 573.78212,-94.000001 v 0.936322 c -0.17357,1.046741 0.64184,1.995708 1.70278,1.981648 h 3.40262 l -5.45481,5.187644 c -0.68654,0.659642 -0.699,1.754004 -0.0277,2.429112 0.67137,0.675075 1.76579,0.668711 2.42922,-0.01417 l 5.19058,-5.465297 v 3.459448 c -0.0137,1.058521 0.85492,1.703208 1.9762,1.703208 H 584 V -94 Z"
         id="path4771"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccsccccccc" />
      <g
         id="g4941"
         style="display:inline;enable-background:new"
         transform="matrix(0.15384612,0,0,0.15384612,565.15385,-404.76916)">
        <rect
           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient13242);fill-opacity:1;stroke:none;stroke-width:169.435;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1"
           id="rect4937"
           width="104"
           height="104"
           x="12"
           y="2254"
           rx="19.50004"
           ry="19.50004" />
      </g>
      <path
         sodipodi:nodetypes="cccccsccccccc"
         inkscape:connector-curvature="0"
         id="path4943"
         d="m 571.66783,-54 v 0.763521 c -0.14153,0.85356 0.52339,1.627392 1.38853,1.615926 h 2.77465 l -4.4481,4.230244 c -0.55984,0.537902 -0.57,1.430296 -0.0226,1.98081 0.54747,0.550487 1.43991,0.545298 1.98091,-0.01155 l 4.23263,-4.456655 v 2.820994 c -0.0112,0.863166 0.69714,1.388873 1.61148,1.388873 H 580 v -8.332157 z"
         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.348577;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new" />
      <g
         transform="matrix(0.07692303,0,0,0.07692303,566.07693,-196.38451)"
         style="display:inline;enable-background:new"
         id="g4949">
        <rect
           ry="19.169563"
           rx="19.169563"
           y="2254"
           x="12"
           height="104"
           width="104"
           id="rect4945"
           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:#1a5fb4;fill-opacity:1;stroke:none;stroke-width:338.87;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1" />
      </g>
      <path
         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1541748;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
         d="m 569.31471,-20.999981 v 0.337703 c -0.0626,0.377528 0.23149,0.719792 0.61414,0.714721 h 1.22722 l -1.96738,1.871025 c -0.24762,0.237913 -0.25211,0.632617 -0.01,0.876108 0.24214,0.243478 0.63687,0.241184 0.87615,-0.0051 l 1.87208,-1.971167 v 1.247719 c -0.005,0.381775 0.30835,0.614294 0.71276,0.614294 H 573 V -21 Z"
         id="path4951"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccsccccccc" />
    </g>
  </g>
  <g
     transform="translate(0,300)"
     style="display:inline"
     inkscape:groupmode="layer"
     inkscape:label="emblem-unreadable"
     id="g3382">
    <g
       style="display:none"
       inkscape:label="baseplate"
       id="g3412"
       inkscape:groupmode="layer">
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect3414"
         width="48"
         height="48"
         x="1210.0625"
         y="-227.00366"
         inkscape:label="48x48" />
      <rect
         inkscape:label="32x32"
         y="-151.00366"
         x="1217"
         height="32"
         width="32"
         id="rect3416"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect3418"
         width="22"
         height="22"
         x="1217"
         y="-99.941162"
         inkscape:label="22x22" />
      <rect
         inkscape:label="16x16"
         y="-58"
         x="1217"
         height="16"
         width="16"
         id="rect3420"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         inkscape:label="24x24"
         y="-101"
         x="1216"
         height="24"
         width="24"
         id="rect3422"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <text
         inkscape:label="context"
         id="text3424"
         y="-247.48639"
         x="669.80499"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         xml:space="preserve"><tspan
           y="-247.48639"
           x="669.80499"
           id="tspan3426"
           sodipodi:role="line">emblems</tspan></text>
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Bold';text-align:end;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         x="1184.0256"
         y="-247.48639"
         id="text3428"
         inkscape:label="icon-name"><tspan
           sodipodi:role="line"
           id="tspan3430"
           x="1184.0256"
           y="-247.48639">emblem-unreadable</tspan></text>
      <rect
         inkscape:label="256x256"
         y="-231"
         x="671"
         height="512"
         width="512"
         id="rect3432"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <path
         style="display:inline;overflow:visible;visibility:visible;opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         d="m 671.125,-231 v 476 36 H 1147 h 36 0.125 V 245 H 1183 v -476 h -36 V 245 H 707.125 v -476 z"
         id="path3434"
         inkscape:connector-curvature="0" />
      <rect
         inkscape:label="8x8"
         y="-23"
         x="1217"
         height="8"
         width="8"
         id="rect4338-3"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
    </g>
    <g
       style="display:inline"
       inkscape:label="icons"
       id="g3438"
       inkscape:groupmode="layer">
      <use
         x="0"
         y="0"
         xlink:href="#g1397"
         id="use1437"
         style="display:inline;enable-background:new"
         width="100%"
         height="100%"
         transform="translate(660)" />
      <g
         transform="matrix(4.0007812,0,0,4.0007812,681.07501,-9200.8014)"
         style="display:inline;enable-background:new"
         id="g1397-3">
        <title
           id="title1413-5">emblem-symbolic-link</title>
        <rect
           style="display:inline;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
           id="rect9125-7-6"
           width="128"
           height="128"
           x="-1.5000001e-06"
           y="2242" />
        <g
           id="g3691-2" />
        <path
           sodipodi:nodetypes="ccsccccccccccccccccccccccc"
           style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.7809;marker:none;enable-background:new"
           id="path10839-9"
           inkscape:connector-curvature="0"
           d="m 37.99115,2280.1722 h 6.49868 c 0.0676,-4e-4 0.1352,0 0.2028,0 1.65684,0.072 3.31348,0.836 4.46784,2.0308 l 14.825157,14.8256 15.0282,-14.8256 c 1.7262,-1.498 2.90276,-1.9852 4.46784,-2.0308 h 6.49872 v 6.4988 c 0,1.8616 -0.2228,3.5788 -1.62468,4.874 l -14.82516,14.8256 14.62208,14.622 c 1.22292,1.2228 1.82768,2.9464 1.82776,4.6704 v 6.4988 h -6.49872 c -1.72416,0 -3.44812,-0.6044 -4.67092,-1.8276 l -14.82512,-14.8252 -14.825157,14.8252 c -1.22284,1.2232 -2.94688,1.8276 -4.67092,1.8276 h -6.49868 v -6.4988 c -8e-5,-1.724 0.605,-3.4476 1.82776,-4.6704 l 14.82512,-14.622 -14.82512,-14.8256 c -1.3696,-1.2648 -1.97016,-3.0492 -1.82776,-4.874 z" />
      </g>
      <use
         x="0"
         y="0"
         xlink:href="#rect3682-6"
         id="use2236"
         transform="matrix(0.40384618,0,0,0.40384618,1208.1538,-1134.2693)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4757"
         id="use2238"
         transform="matrix(0.26923078,0,0,0.26923078,1215.7692,-755.84618)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4765"
         id="use2240"
         transform="matrix(0.19170444,0,0,0.19170444,1215.6996,-531.10181)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4937"
         id="use2242"
         transform="matrix(0.15384612,0,0,0.15384612,1215.1539,-404.76916)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4945"
         id="use2244"
         transform="matrix(0.07692303,0,0,0.07692303,1216.0769,-196.38451)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <g
         transform="matrix(0.40384618,0,0,0.40384618,1208.1538,-1134.2692)"
         style="display:inline;enable-background:new"
         id="g3691-3-7" />
      <g
         id="g4761-6"
         style="display:inline;enable-background:new"
         transform="matrix(0.26923078,0,0,0.26923078,1215.7692,-755.84613)" />
      <g
         transform="matrix(0.19170444,0,0,0.19170444,1215.6996,-531.10176)"
         style="display:inline;enable-background:new"
         id="g4769-6" />
      <g
         id="g4941-9"
         style="display:inline;enable-background:new"
         transform="matrix(0.15384612,0,0,0.15384612,1215.1539,-404.76911)" />
      <g
         transform="matrix(0.07692303,0,0,0.07692303,1216.0769,-196.38446)"
         style="display:inline;enable-background:new"
         id="g4949-3" />
      <path
         sodipodi:nodetypes="ccsccccccccccccccccccccccc"
         style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.65084308;marker:none;enable-background:new"
         id="path10839-9-2"
         inkscape:connector-curvature="0"
         d="m 1224.9997,-211.99993 h 2.3749 c 0.024,-1.8e-4 0.049,0 0.075,0 0.6056,0.0263 1.211,0.30552 1.6328,0.74217 l 5.4181,5.41812 5.4921,-5.41812 c 0.6308,-0.54746 1.0609,-0.7255 1.6328,-0.74217 H 1244 v 2.37503 c 0,0.68033 -0.081,1.30789 -0.5938,1.78124 l -5.4179,5.41812 5.3437,5.34371 c 0.4469,0.44689 0.668,1.07678 0.668,1.70683 v 2.37503 h -2.375 c -0.6301,0 -1.2601,-0.22087 -1.707,-0.66791 l -5.4179,-5.41796 -5.4181,5.41796 c -0.4468,0.44704 -1.0769,0.66791 -1.7069,0.66791 h -2.375 v -2.37503 c 0,-0.63005 0.2211,-1.25994 0.668,-1.70683 l 5.4179,-5.34371 -5.4179,-5.41812 c -0.5005,-0.46223 -0.7201,-1.11436 -0.668,-1.78124 z" />
      <path
         sodipodi:nodetypes="ccsccccccccccccccccccccccc"
         style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.479548;marker:none;enable-background:new"
         id="path10839-9-2-2"
         inkscape:connector-curvature="0"
         d="m 1226.0004,-141.99995 h 1.7499 c 0.017,-1.3e-4 0.037,0 0.055,0 0.4462,0.0194 0.8922,0.22511 1.203,0.54684 l 3.9922,3.99213 4.0466,-3.99213 c 0.4648,-0.40336 0.7817,-0.53455 1.2031,-0.54684 H 1240 v 1.74995 c 0,0.50128 -0.059,0.96367 -0.4375,1.31244 l -3.992,3.99212 3.9373,3.93729 c 0.3293,0.32928 0.4922,0.79339 0.4922,1.25762 v 1.74994 h -1.7499 c -0.4643,0 -0.9285,-0.16273 -1.2577,-0.49212 l -3.992,-3.99201 -3.9921,3.99201 c -0.3292,0.32939 -0.7935,0.49212 -1.2577,0.49212 h -1.7499 v -1.74994 c 0,-0.46423 0.1629,-0.92834 0.4921,-1.25762 l 3.992,-3.93729 -3.992,-3.99212 c -0.3687,-0.34058 -0.5305,-0.82107 -0.4921,-1.31244 z" />
      <path
         sodipodi:nodetypes="ccsccccccccccccccccccccccc"
         style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.410897;marker:none;enable-background:new"
         id="path10839-9-2-2-8"
         inkscape:connector-curvature="0"
         d="m 1222.0045,-94.999996 h 1.4995 c 0.015,-1.11e-4 0.032,0 0.047,0 0.3822,0.01662 0.7645,0.192884 1.0308,0.468555 l 3.4206,3.420629 3.4673,-3.420629 c 0.3982,-0.345622 0.6699,-0.458027 1.0308,-0.468555 H 1234 v 1.499432 c 0,0.429515 -0.05,0.825711 -0.3749,1.124551 l -3.4205,3.420629 3.3737,3.373644 c 0.2821,0.282139 0.4217,0.679811 0.4217,1.077576 v 1.499432 h -1.4994 c -0.3978,0 -0.7955,-0.139441 -1.0776,-0.421672 l -3.4206,-3.420527 -3.4205,3.420527 c -0.2821,0.282231 -0.68,0.421672 -1.0777,0.421672 h -1.4995 v -1.499432 c 0,-0.397765 0.1397,-0.795437 0.4218,-1.077576 l 3.4205,-3.373644 -3.4205,-3.420629 c -0.3159,-0.291818 -0.4547,-0.703524 -0.4218,-1.124551 z" />
      <path
         sodipodi:nodetypes="ccsccccccccccccccccccccccc"
         style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.34241533;marker:none;enable-background:new"
         id="path10839-9-2-2-8-9"
         inkscape:connector-curvature="0"
         d="m 1220.0038,-55.037187 h 1.2495 c 0.012,-10e-5 0.027,0 0.039,0 0.3184,0.01382 0.637,0.160736 0.859,0.390464 l 2.8505,2.850524 2.8894,-2.850524 c 0.3319,-0.288028 0.5582,-0.38169 0.859,-0.390464 H 1230 v 1.249526 c 0,0.357928 -0.042,0.688091 -0.3124,0.937127 L 1226.8372,-50 l 2.8114,2.811379 c 0.2351,0.235118 0.3514,0.566508 0.3514,0.897981 v 1.249535 h -1.2496 c -0.3314,0 -0.6628,-0.11621 -0.898,-0.3514 l -2.8504,-2.850443 -2.8505,2.850443 c -0.2351,0.23519 -0.5666,0.3514 -0.8981,0.3514 h -1.2494 v -1.249535 c 0,-0.331473 0.1163,-0.662863 0.3514,-0.897981 L 1223.2059,-50 l -2.8505,-2.850534 c -0.2633,-0.243182 -0.379,-0.586273 -0.3514,-0.937127 z" />
      <path
         sodipodi:nodetypes="ccsccccccccccccccccccccccc"
         style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.13695267;marker:none;enable-background:new"
         id="path10839-9-2-2-8-9-7"
         inkscape:connector-curvature="0"
         d="m 1219.0019,-21.000027 h 0.4998 c 0,-4e-5 0.013,0 0.016,0 0.1266,0.0055 0.2548,0.06429 0.3435,0.156173 l 1.1401,1.140096 1.1557,-1.140096 c 0.132,-0.115202 0.2232,-0.152661 0.3436,-0.156173 H 1223 v 0.499764 c 0,0.143157 -0.017,0.275208 -0.1253,0.374814 l -1.14,1.140099 1.1244,1.124442 c 0.093,0.09404 0.1405,0.226582 0.1405,0.359156 v 0.499768 h -0.4998 c -0.132,0 -0.2651,-0.04648 -0.3592,-0.140546 l -1.14,-1.140069 -1.1402,1.140069 c -0.095,0.09407 -0.2265,0.140546 -0.3591,0.140546 h -0.4997 v -0.499768 c 0,-0.132573 0.047,-0.265117 0.1405,-0.359156 l 1.1402,-1.124442 -1.1402,-1.140099 c -0.1053,-0.09726 -0.1516,-0.234488 -0.1405,-0.374814 z" />
    </g>
  </g>
  <g
     id="g3442"
     inkscape:label="emblem-readonly"
     inkscape:groupmode="layer"
     style="display:inline"
     transform="translate(0,300)">
    <g
       inkscape:groupmode="layer"
       id="g3472"
       inkscape:label="baseplate"
       style="display:none">
      <rect
         inkscape:label="48x48"
         y="-227.00366"
         x="1860.0625"
         height="48"
         width="48"
         id="rect3474"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect3476"
         width="32"
         height="32"
         x="1867"
         y="-151.00366"
         inkscape:label="32x32" />
      <rect
         inkscape:label="22x22"
         y="-99.941162"
         x="1867"
         height="22"
         width="22"
         id="rect3478"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect3480"
         width="16"
         height="16"
         x="1867"
         y="-58"
         inkscape:label="16x16" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect3482"
         width="24"
         height="24"
         x="1866"
         y="-101"
         inkscape:label="24x24" />
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         x="1319.8051"
         y="-247.48639"
         id="text3484"
         inkscape:label="context"><tspan
           sodipodi:role="line"
           id="tspan3486"
           x="1319.8051"
           y="-247.48639">emblems</tspan></text>
      <text
         inkscape:label="icon-name"
         id="text3488"
         y="-247.48639"
         x="1834.0256"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Bold';text-align:end;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         xml:space="preserve"><tspan
           y="-247.48639"
           x="1834.0256"
           id="tspan3490"
           sodipodi:role="line">emblem-readonly</tspan></text>
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect3492"
         width="512"
         height="512"
         x="1321"
         y="-231"
         inkscape:label="256x256" />
      <path
         inkscape:connector-curvature="0"
         id="path3494"
         d="m 1321.125,-231 v 476 36 H 1797 h 36 0.125 V 245 H 1833 v -476 h -36 v 476 h -439.875 v -476 z"
         style="display:inline;overflow:visible;visibility:visible;opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         inkscape:label="8x8"
         y="-23"
         x="1867"
         height="8"
         width="8"
         id="rect4338-3-6"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
    </g>
    <g
       inkscape:groupmode="layer"
       id="g3496"
       inkscape:label="icons"
       style="display:inline">
      <use
         x="0"
         y="0"
         xlink:href="#g1397"
         id="use1437-3"
         style="display:inline;enable-background:new"
         width="100%"
         height="100%"
         transform="translate(1300)" />
      <g
         transform="matrix(4.0007812,0,0,4.0007812,1321.075,-9200.8014)"
         style="display:inline;enable-background:new"
         id="g1397-3-3">
        <title
           id="title1413-5-6">emblem-symbolic-link</title>
        <rect
           style="display:inline;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
           id="rect9125-7-6-1"
           width="128"
           height="128"
           x="-1.5000001e-06"
           y="2242" />
        <path
           style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75521624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
           d="m 60.781799,2276.7352 c -7.022907,0 -12.461676,5.7869 -12.461636,12.8097 v 12.8973 h -5.576434 c -2.365582,0 -4.269993,1.9041 -4.269993,4.2699 v 8.4527 4.2703 12.8098 h 51.239993 v -12.8098 -4.2703 -8.4527 c 0,-2.3658 -1.904766,-4.2324 -4.269993,-4.2699 h -5.489348 v -12.8973 c 0,-7.0228 -5.787153,-12.8097 -12.81002,-12.8097 z m -0.3485,8.1042 h 7.320629 c 2.439421,0 4.269993,1.8308 4.269993,4.2703 v 13.3325 H 56.163306 v -13.3325 c 0,-2.4395 1.830532,-4.2703 4.269993,-4.2703 z"
           id="rect13008"
           inkscape:connector-curvature="0"
           sodipodi:nodetypes="sccssccccccsscssssssccss" />
      </g>
      <use
         x="0"
         y="0"
         xlink:href="#rect3682-6"
         id="use2236-7"
         transform="matrix(0.40384618,0,0,0.40384618,1858.1538,-1134.2693)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4757"
         id="use2238-0"
         transform="matrix(0.26923078,0,0,0.26923078,1865.7692,-755.84618)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4765"
         id="use2240-9"
         transform="matrix(0.19170444,0,0,0.19170444,1865.6996,-531.10181)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4937"
         id="use2242-3"
         transform="matrix(0.15384612,0,0,0.15384612,1865.1539,-404.76916)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4945"
         id="use2244-6"
         transform="matrix(0.07692303,0,0,0.07692303,1866.0769,-196.38451)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <g
         transform="matrix(0.40384618,0,0,0.40384618,1858.1538,-1134.2692)"
         style="display:inline;enable-background:new"
         id="g3691-3-7-9" />
      <g
         id="g4761-6-8"
         style="display:inline;enable-background:new"
         transform="matrix(0.26923078,0,0,0.26923078,1865.7692,-755.84608)" />
      <g
         transform="matrix(0.19170444,0,0,0.19170444,1865.6996,-531.10171)"
         style="display:inline;enable-background:new"
         id="g4769-6-0" />
      <g
         id="g4941-9-1"
         style="display:inline;enable-background:new"
         transform="matrix(0.15384612,0,0,0.15384612,1865.1539,-404.76906)" />
      <g
         transform="matrix(0.07692303,0,0,0.07692303,1866.0769,-196.38441)"
         style="display:inline;enable-background:new"
         id="g4949-3-6" />
      <path
         style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.65084201;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
         d="m 1883.2719,-213.58324 c -2.6041,0 -4.6208,2.1458 -4.6208,4.74989 v 4.78238 h -2.0678 c -0.8772,0 -1.5833,0.70605 -1.5833,1.5833 v 3.13429 1.58345 V -193 h 19 v -4.74993 -1.58345 -3.13429 c 0,-0.87725 -0.7063,-1.5694 -1.5833,-1.5833 h -2.0355 v -4.78238 c 0,-2.60409 -2.1459,-4.74989 -4.75,-4.74989 z m -0.1292,3.00507 h 2.7145 c 0.9046,0 1.5833,0.67887 1.5833,1.58344 v 4.94376 h -5.8811 v -4.94376 c 0,-0.90457 0.6787,-1.58344 1.5833,-1.58344 z"
         id="rect13008-4"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="sccssccccccsscssssssccss" />
      <path
         style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.444307;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
         d="m 1882.6763,-143.05146 c -1.7777,0 -3.1545,1.46487 -3.1545,3.24259 v 3.26476 h -1.4116 c -0.5988,0 -1.0808,0.482 -1.0808,1.08086 v 2.13967 1.08097 V -129 H 1890 v -3.24261 -1.08097 -2.13967 c 0,-0.59886 -0.4822,-1.07137 -1.0809,-1.08086 h -1.3895 v -3.26476 c 0,-1.77772 -1.465,-3.24259 -3.2427,-3.24259 z m -0.088,2.05146 h 1.8531 c 0.6175,0 1.0809,0.46344 1.0809,1.08096 v 3.37493 h -4.0149 v -3.37493 c 0,-0.61752 0.4634,-1.08096 1.0809,-1.08096 z"
         id="rect13008-4-7"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="sccssccccccsscssssssccss" />
      <path
         style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.37680328;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
         d="m 1877.789,-95.729113 c -1.5076,0 -2.6752,1.242306 -2.6752,2.749937 v 3.018746 h -1.1972 c -0.5078,0 -0.9166,0.408766 -0.9166,0.916647 v 1.377089 0.916735 V -84 h 11 v -2.749959 -0.916735 -1.377089 c 0,-0.507881 -0.4095,-0.889756 -0.9166,-0.916647 h -1.1785 v -3.018746 c 0,-1.507631 -1.2424,-2.749937 -2.75,-2.749937 z m -0.075,1.739778 h 1.5715 c 0.5238,0 0.9167,0.39303 0.9167,0.916728 v 3.112177 h -3.4049 v -3.112177 c 0,-0.523698 0.393,-0.916728 0.9167,-0.916728 z"
         id="rect13008-4-6"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="sccssccccccsscssssssccss" />
      <path
         style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.34254843;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
         d="m 1874.3536,-55.265079 c -1.3705,0 -2.432,1.129372 -2.432,2.499945 v 2.744309 h -1.0883 c -0.4617,0 -0.8333,0.371609 -0.8333,0.833318 v 1.2519 0.833391 V -45 h 10 v -2.102216 -0.833391 -1.2519 c 0,-0.461709 -0.3717,-0.833318 -0.8333,-0.833318 h -1.0713 v -2.744309 c 0,-1.370573 -1.1295,-2.499945 -2.5,-2.499945 z m -0.068,1.581618 h 1.4286 c 0.4762,0 0.8334,0.3573 0.8334,0.833391 v 2.829245 h -3.0954 v -2.829245 c 0,-0.476091 0.3573,-0.833391 0.8334,-0.833391 z"
         id="rect13008-4-6-5"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="sccssccccccsscssssssccss" />
      <path
         style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16745712;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
         d="m 1869.7686,-19 h -0.4353 c -0.1847,0 -0.3333,0.22204 -0.3333,0.497917 V -17.754059 -17.2561 -16 h 3.9996 v -1.2561 -0.497959 -0.748024 c 0,-0.275877 -0.1487,-0.497917 -0.3333,-0.497917 h -0.4285 z m 1.8504,0 h -1.2381 z"
         id="rect13008-4-6-5-6"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cssccccccssccccc" />
      <path
         style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="m 1872.5156,-18.39063 v -2.07812 c 0,-0.609375 -0.5468,-1.03125 -1.0312,-1.03125 h -1.0469 c -0.3919,0 -0.9374,0.402788 -0.9374,0.96875 v 2.17187"
         id="path5395"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccc" />
    </g>
  </g>
  <g
     transform="translate(0,300)"
     style="display:inline"
     inkscape:groupmode="layer"
     inkscape:label="emblem-synchronizing"
     id="g5363">
    <g
       style="display:none"
       inkscape:label="baseplate"
       id="g5309"
       inkscape:groupmode="layer">
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5285"
         width="48"
         height="48"
         x="1860.0625"
         y="392.99634"
         inkscape:label="48x48" />
      <rect
         inkscape:label="32x32"
         y="468.99634"
         x="1867"
         height="32"
         width="32"
         id="rect5287"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5289"
         width="22"
         height="22"
         x="1867"
         y="520.05884"
         inkscape:label="22x22" />
      <rect
         inkscape:label="16x16"
         y="562"
         x="1867"
         height="16"
         width="16"
         id="rect5291"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         inkscape:label="24x24"
         y="519"
         x="1866"
         height="24"
         width="24"
         id="rect5293"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <text
         inkscape:label="context"
         id="text5297"
         y="372.51361"
         x="1319.8051"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         xml:space="preserve"><tspan
           y="372.51361"
           x="1319.8051"
           id="tspan5295"
           sodipodi:role="line">emblems</tspan></text>
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Bold';text-align:end;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         x="1834.0256"
         y="372.51361"
         id="text5301"
         inkscape:label="icon-name"><tspan
           sodipodi:role="line"
           id="tspan5299"
           x="1834.0256"
           y="372.51361">emblem-synchronizing</tspan></text>
      <rect
         inkscape:label="256x256"
         y="389"
         x="1321"
         height="512"
         width="512"
         id="rect5303"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <path
         style="display:inline;overflow:visible;visibility:visible;opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         d="m 1321.125,389 v 476 36 H 1797 h 36 0.125 V 865 H 1833 V 389 h -36 V 865 H 1357.125 V 389 Z"
         id="path5305"
         inkscape:connector-curvature="0" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5307"
         width="8"
         height="8"
         x="1867"
         y="597"
         inkscape:label="8x8" />
    </g>
    <g
       style="display:inline"
       inkscape:label="icons"
       id="g5361"
       inkscape:groupmode="layer">
      <use
         x="0"
         y="0"
         xlink:href="#g1397"
         id="use7161"
         style="display:inline;enable-background:new"
         width="100%"
         height="100%"
         transform="translate(1300,619.99996)" />
      <g
         id="g5323"
         style="display:inline;enable-background:new"
         transform="matrix(4.0007812,0,0,4.0007812,1321.075,-8580.8014)">
        <title
           id="title5311">emblem-symbolic-link</title>
        <rect
           y="2242"
           x="-1.5000001e-06"
           height="128"
           width="128"
           id="rect5313"
           style="display:inline;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new" />
        <g
           id="g5319" />
      </g>
      <use
         x="0"
         y="0"
         xlink:href="#rect3682-6"
         id="use2236-28"
         transform="matrix(0.40384618,0,0,0.40384618,1858.1538,-514.2693)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4757"
         id="use2238-9"
         transform="matrix(0.26923078,0,0,0.26923078,1865.7692,-135.84618)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4765"
         id="use2240-7"
         transform="matrix(0.19170444,0,0,0.19170444,1865.6996,88.89819)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4937"
         id="use2242-36"
         transform="matrix(0.15384612,0,0,0.15384612,1865.1539,215.23084)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4945"
         id="use2244-1"
         transform="matrix(0.07692303,0,0,0.07692303,1866.0769,423.61549)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <g
         id="g5329"
         style="display:inline;enable-background:new"
         transform="matrix(0.40384618,0,0,0.40384618,1858.1538,-514.2692)" />
      <g
         transform="matrix(0.26923078,0,0,0.26923078,1865.7692,-135.84608)"
         style="display:inline;enable-background:new"
         id="g5335" />
      <g
         id="g5341"
         style="display:inline;enable-background:new"
         transform="matrix(0.19170444,0,0,0.19170444,1865.6996,88.89829)" />
      <g
         transform="matrix(0.15384612,0,0,0.15384612,1865.1539,215.23094)"
         style="display:inline;enable-background:new"
         id="g5345" />
      <g
         id="g5349"
         style="display:inline;enable-background:new"
         transform="matrix(0.07692303,0,0,0.07692303,1866.0769,423.61559)" />
      <g
         id="g5417"
         transform="matrix(4,0,0,4,-4914.5004,-1930.074)">
        <path
           inkscape:connector-curvature="0"
           id="rect4492-7-43"
           d="m 1622.8281,615.98147 c -0.3203,0 -0.634,0.014 -0.9535,0.039 -0.8521,0.037 -1.7419,0.1439 -2.579,0.2659 -10.0454,1.4561 -18.7064,8.7339 -21.4452,19.1315 -0.5803,2.2035 -0.8549,4.4181 -0.8597,6.5962 h 8.55 c 0.01,-1.4594 0.2045,-2.9452 0.5939,-4.4235 2.4563,-9.3254 11.9792,-14.8046 21.3045,-12.3483 3.0142,0.7938 5.5798,2.4606 7.7371,4.6107 l -8.1904,8.1593 h 21.9922 l 0.031,-21.9919 -7.5964,7.596 c -3.2342,-3.2162 -7.2935,-5.4711 -11.8011,-6.6586 -2.2745,-0.5988 -4.5421,-0.961 -6.7837,-0.9686 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new" />
        <path
           inkscape:connector-curvature="0"
           id="rect4492-7-43-1"
           d="m 1640.4593,644.00657 c -0.01,1.4596 -0.2045,2.9454 -0.594,4.4232 -2.4562,9.3251 -11.9791,14.8046 -21.3044,12.3485 -3.0141,-0.7936 -5.5798,-2.4614 -7.7371,-4.6106 l 8.1904,-8.1594 h -21.9922 l -0.031,21.991 7.5964,-7.5954 c 3.2342,3.2165 7.2934,5.4703 11.8011,6.6587 2.5994,0.6843 5.1809,1.046 7.7371,0.9367 0.8521,-0.038 1.742,-0.1432 2.5791,-0.2655 10.0453,-1.457 18.7064,-8.7343 21.4451,-19.1315 0.5804,-2.2038 0.855,-4.4179 0.8597,-6.5957 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new" />
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g5417-9"
         transform="matrix(0.38553614,0,0,0.38553614,1258.3675,169.12113)">
        <path
           inkscape:connector-curvature="0"
           id="rect4492-7-43-3"
           d="m 1622.8281,615.98147 c -0.3203,0 -0.634,0.014 -0.9535,0.039 -0.8521,0.037 -1.7419,0.1439 -2.579,0.2659 -10.0454,1.4561 -18.7064,8.7339 -21.4452,19.1315 -0.5803,2.2035 -0.8549,4.4181 -0.8597,6.5962 h 8.55 c 0.01,-1.4594 0.2045,-2.9452 0.5939,-4.4235 2.4563,-9.3254 11.9792,-14.8046 21.3045,-12.3483 3.0142,0.7938 5.5798,2.4606 7.7371,4.6107 l -8.1904,8.1593 h 21.9922 l 0.031,-21.9919 -7.5964,7.596 c -3.2342,-3.2162 -7.2935,-5.4711 -11.8011,-6.6586 -2.2745,-0.5988 -4.5421,-0.961 -6.7837,-0.9686 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new" />
        <path
           inkscape:connector-curvature="0"
           id="rect4492-7-43-1-7"
           d="m 1640.4593,644.00657 c -0.01,1.4596 -0.2045,2.9454 -0.594,4.4232 -2.4562,9.3251 -11.9791,14.8046 -21.3044,12.3485 -3.0141,-0.7936 -5.5798,-2.4614 -7.7371,-4.6106 l 8.1904,-8.1594 h -21.9922 l -0.031,21.991 7.5964,-7.5954 c 3.2342,3.2165 7.2934,5.4703 11.8011,6.6587 2.5994,0.6843 5.1809,1.046 7.7371,0.9367 0.8521,-0.038 1.742,-0.1432 2.5791,-0.2655 10.0453,-1.457 18.7064,-8.7343 21.4451,-19.1315 0.5804,-2.2038 0.855,-4.4179 0.8597,-6.5957 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new" />
      </g>
      <g
         transform="matrix(0.24535531,0,0,0.24535531,1485.4068,326.51902)"
         id="g5444"
         style="display:inline;enable-background:new">
        <path
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new"
           d="m 1622.8281,615.98147 c -0.3203,0 -0.634,0.014 -0.9535,0.039 -0.8521,0.037 -1.7419,0.1439 -2.579,0.2659 -10.0454,1.4561 -18.7064,8.7339 -21.4452,19.1315 -0.5803,2.2035 -0.8549,4.4181 -0.8597,6.5962 h 8.55 c 0.01,-1.4594 0.2045,-2.9452 0.5939,-4.4235 2.4563,-9.3254 11.9792,-14.8046 21.3045,-12.3483 3.0142,0.7938 5.5798,2.4606 7.7371,4.6107 l -8.1904,8.1593 h 21.9922 l 0.031,-21.9919 -7.5964,7.596 c -3.2342,-3.2162 -7.2935,-5.4711 -11.8011,-6.6586 -2.2745,-0.5988 -4.5421,-0.961 -6.7837,-0.9686 z"
           id="path5440"
           inkscape:connector-curvature="0" />
        <path
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new"
           d="m 1639.7389,645.98789 c -0.01,1.4596 -0.2045,2.9454 -0.594,4.4232 -2.4562,9.3251 -11.9791,14.8046 -21.3044,12.3485 -3.0141,-0.7936 -5.5798,-2.4614 -7.7371,-4.6106 l 8.1904,-8.1594 h -21.9922 l -0.031,21.991 7.5964,-7.5954 c 3.2342,3.2165 7.2934,5.4703 11.8011,6.6587 2.5994,0.6843 5.1809,1.046 7.7371,0.9367 0.8521,-0.038 1.742,-0.1432 2.5791,-0.2655 10.0453,-1.457 18.7064,-8.7343 21.4451,-19.1315 0.5804,-2.2038 0.855,-4.4179 0.8597,-6.5957 z"
           id="path5442"
           inkscape:connector-curvature="0" />
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g5450"
         transform="matrix(0.22026755,0,0,0.22026755,1520.8237,389.45133)">
        <path
           inkscape:connector-curvature="0"
           id="path5446"
           d="m 1622.8281,615.98147 c -0.3203,0 -0.634,0.014 -0.9535,0.039 -0.8521,0.037 -1.7419,0.1439 -2.579,0.2659 -10.0454,1.4561 -18.7064,8.7339 -21.4452,19.1315 -0.5803,2.2035 -0.8549,4.4181 -0.8597,6.5962 h 8.55 c 0.01,-1.4594 0.2045,-2.9452 0.5939,-4.4235 2.4563,-9.3254 11.9792,-14.8046 21.3045,-12.3483 3.0142,0.7938 5.5798,2.4606 7.7371,4.6107 l -8.1904,8.1593 h 21.9922 l 0.031,-21.9919 -7.5964,7.596 c -3.2342,-3.2162 -7.2935,-5.4711 -11.8011,-6.6586 -2.2745,-0.5988 -4.5421,-0.961 -6.7837,-0.9686 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new" />
        <path
           inkscape:connector-curvature="0"
           id="path5448"
           d="m 1638.0367,643.15039 c -0.01,1.4596 -0.2045,2.9454 -0.594,4.4232 -2.4562,9.3251 -11.9791,14.8046 -21.3044,12.3485 -3.0141,-0.7936 -5.5798,-2.4614 -7.7371,-4.6106 l 8.1904,-8.1594 h -21.9922 l -0.031,21.991 7.5964,-7.5954 c 3.2342,3.2165 7.2934,5.4703 11.8011,6.6587 2.5994,0.6843 5.1809,1.046 7.7371,0.9367 0.8521,-0.038 1.742,-0.1432 2.5791,-0.2655 10.0453,-1.457 18.7064,-8.7343 21.4451,-19.1315 0.5804,-2.2038 0.855,-4.4179 0.8597,-6.5957 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new" />
      </g>
      <g
         transform="matrix(0.18353026,0,0,0.18353026,1577.4341,451.95316)"
         id="g5456"
         style="display:inline;enable-background:new">
        <path
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new"
           d="m 1622.8281,615.98147 c -0.3203,0 -0.634,0.014 -0.9535,0.039 -0.8521,0.037 -1.7419,0.1439 -2.579,0.2659 -10.0454,1.4561 -18.7064,8.7339 -21.4452,19.1315 -0.5803,2.2035 -0.8549,4.4181 -0.8597,6.5962 h 8.55 c 0.01,-1.4594 0.2045,-2.9452 0.5939,-4.4235 2.4563,-9.3254 11.9792,-14.8046 21.3045,-12.3483 3.0142,0.7938 5.5798,2.4606 7.7371,4.6107 l -8.1904,8.1593 h 21.9922 l 0.031,-21.9919 -7.5964,7.596 c -3.2342,-3.2162 -7.2935,-5.4711 -11.8011,-6.6586 -2.2745,-0.5988 -4.5421,-0.961 -6.7837,-0.9686 z"
           id="path5452"
           inkscape:connector-curvature="0" />
        <path
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new"
           d="m 1637.7959,644.67203 c -0.01,1.4596 -0.2045,2.9454 -0.594,4.4232 -2.4562,9.3251 -11.9791,14.8046 -21.3044,12.3485 -3.0141,-0.7936 -5.5798,-2.4614 -7.7371,-4.6106 l 8.1904,-8.1594 h -21.9922 l -0.031,21.991 7.5964,-7.5954 c 3.2342,3.2165 7.2934,5.4703 11.8011,6.6587 2.5994,0.6843 5.1809,1.046 7.7371,0.9367 0.8521,-0.038 1.742,-0.1432 2.5791,-0.2655 10.0453,-1.457 18.7064,-8.7343 21.4451,-19.1315 0.5804,-2.2038 0.855,-4.4179 0.8597,-6.5957 z"
           id="path5454"
           inkscape:connector-curvature="0" />
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g5462"
         transform="matrix(0.10983122,0,0,0.10983122,1692.8931,530.3375)">
        <path
           inkscape:connector-curvature="0"
           id="path5460"
           d="m 1635.9717,652.38782 c -3.5914,7.2726 -11.9085,11.20658 -20.0742,9.05591 -3.0141,-0.7936 -7.5917,-4.6745 -10.1514,-12.15527 l -6.2364,6.2362 c 3.9224,6.05863 9.7077,13.01497 14.2154,14.20337 2.5994,0.6843 5.1809,1.046 7.7371,0.9367 0.8521,-0.038 1.742,-0.1432 2.5791,-0.2655 11.746,-2.48119 18.0251,-8.54609 21.1433,-17.92082 z"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new"
           sodipodi:nodetypes="ccccccccc" />
        <path
           sodipodi:nodetypes="ccccccccc"
           style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:new"
           d="m 1607.4213,634.18967 c 3.6495,-7.13126 11.8806,-10.96414 19.9633,-8.83536 3.0141,0.79314 7.5918,4.67439 10.1514,12.15517 l 6.2364,-6.23628 c -3.9224,-6.05865 -9.7077,-13.0148 -14.2164,-14.20225 -2.5994,-0.68419 -5.181,-1.04612 -7.7371,-0.93684 -0.852,0.038 -1.7419,0.14335 -2.5792,0.26557 -9.6478,1.39938 -18.0186,8.16747 -21.0923,17.91185 z"
           id="path5468"
           inkscape:connector-curvature="0" />
      </g>
      <path
         inkscape:connector-curvature="0"
         id="path5466"
         d="m 1868.5,604.47769 v -2.97206 h 1.5"
         style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         sodipodi:nodetypes="ccc" />
      <path
         sodipodi:nodetypes="ccc"
         style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="m 1873.5,597.52783 v 2.97215 l -1.5,2e-5"
         id="path5470"
         inkscape:connector-curvature="0" />
    </g>
  </g>
  <g
     id="g5578"
     inkscape:label="emblem-shared"
     inkscape:groupmode="layer"
     style="display:inline"
     transform="translate(0,300)">
    <g
       inkscape:groupmode="layer"
       id="g5496"
       inkscape:label="baseplate"
       style="display:none">
      <rect
         inkscape:label="48x48"
         y="392.99634"
         x="1210.0625"
         height="48"
         width="48"
         id="rect5472"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5474"
         width="32"
         height="32"
         x="1217"
         y="468.99634"
         inkscape:label="32x32" />
      <rect
         inkscape:label="22x22"
         y="520.05884"
         x="1217"
         height="22"
         width="22"
         id="rect5476"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5478"
         width="16"
         height="16"
         x="1217"
         y="562"
         inkscape:label="16x16" />
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5480"
         width="24"
         height="24"
         x="1216"
         y="519"
         inkscape:label="24x24" />
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         x="669.80511"
         y="372.51361"
         id="text5484"
         inkscape:label="context"><tspan
           sodipodi:role="line"
           id="tspan5482"
           x="669.80511"
           y="372.51361">emblems</tspan></text>
      <text
         inkscape:label="icon-name"
         id="text5488"
         y="372.51361"
         x="1184.0256"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Bold';text-align:end;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
         xml:space="preserve"><tspan
           y="372.51361"
           x="1184.0256"
           id="tspan5486"
           sodipodi:role="line">emblem-shared</tspan></text>
      <rect
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
         id="rect5490"
         width="512"
         height="512"
         x="671"
         y="389"
         inkscape:label="256x256" />
      <path
         inkscape:connector-curvature="0"
         id="path5492"
         d="m 671.125,389 v 476 36 H 1147 h 36 0.125 V 865 H 1183 V 389 h -36 V 865 H 707.125 V 389 Z"
         style="display:inline;overflow:visible;visibility:visible;opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
      <rect
         inkscape:label="8x8"
         y="597"
         x="1217"
         height="8"
         width="8"
         id="rect5494"
         style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
    </g>
    <g
       inkscape:groupmode="layer"
       id="g5576"
       inkscape:label="icons"
       style="display:inline">
      <use
         x="0"
         y="0"
         xlink:href="#g1397"
         id="use1437-31"
         style="display:inline;enable-background:new"
         width="100%"
         height="100%"
         transform="translate(650,620)" />
      <g
         transform="matrix(4.0007812,0,0,4.0007812,671.075,-8580.8014)"
         style="display:inline;enable-background:new"
         id="g5508">
        <title
           id="title5498">emblem-symbolic-link</title>
        <rect
           style="display:inline;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
           id="rect5500"
           width="128"
           height="128"
           x="-1.5000001e-06"
           y="2242" />
        <g
           id="g5506" />
      </g>
      <use
         x="0"
         y="0"
         xlink:href="#rect3682-6"
         id="use2236-2"
         transform="matrix(0.40384618,0,0,0.40384618,1208.1538,-514.2693)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4757"
         id="use2238-6"
         transform="matrix(0.26923078,0,0,0.26923078,1215.7692,-135.84618)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4765"
         id="use2240-1"
         transform="matrix(0.19170444,0,0,0.19170444,1215.6996,88.89819)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4937"
         id="use2242-8"
         transform="matrix(0.15384612,0,0,0.15384612,1215.1539,215.23084)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <use
         x="0"
         y="0"
         xlink:href="#rect4945"
         id="use2244-7"
         transform="matrix(0.07692303,0,0,0.07692303,1216.0769,423.61549)"
         width="100%"
         height="100%"
         style="display:inline;enable-background:new" />
      <g
         transform="matrix(0.40384618,0,0,0.40384618,1208.1538,-514.2692)"
         style="display:inline;enable-background:new"
         id="g5514" />
      <g
         id="g5520"
         style="display:inline;enable-background:new"
         transform="matrix(0.26923078,0,0,0.26923078,1215.7692,-135.84608)" />
      <g
         transform="matrix(0.19170444,0,0,0.19170444,1215.6996,88.89829)"
         style="display:inline;enable-background:new"
         id="g5526" />
      <g
         id="g5530"
         style="display:inline;enable-background:new"
         transform="matrix(0.15384612,0,0,0.15384612,1215.1539,215.23094)" />
      <g
         transform="matrix(0.07692303,0,0,0.07692303,1216.0769,423.61559)"
         style="display:inline;enable-background:new"
         id="g5534" />
      <path
         inkscape:connector-curvature="0"
         id="path24876-5-1"
         d="m 992.48867,538.1752 c -21.46606,0 -38.86774,17.39989 -38.86774,38.86738 0,1.82828 0.16615,3.55725 0.40924,5.32092 l -65.46111,31.91355 c -6.95968,-6.57168 -16.27097,-10.64111 -26.59355,-10.64111 -21.46596,0 -38.86753,17.40202 -38.86753,38.86772 0,21.46533 17.40157,38.86737 38.86753,38.86737 10.52775,0 20.00351,-4.24606 27.00271,-11.04815 l 65.05195,32.72981 c -0.20949,1.63613 -0.40924,3.22173 -0.40924,4.91204 0,21.46749 17.40168,38.86775 38.86774,38.86775 21.46583,0 38.86703,-17.40026 38.86703,-38.86775 0,-21.46675 -17.4012,-38.86698 -38.86703,-38.86698 -10.2124,0 -19.24839,4.19836 -26.18452,10.63566 l -65.87024,-33.1354 c 0.14666,-1.37683 0.40912,-2.68106 0.40912,-4.09435 0,-1.54947 -0.23224,-2.99959 -0.40912,-4.50175 l 66.27945,-32.32133 c 6.88917,6.21448 15.76844,10.22898 25.77531,10.22898 21.46583,0 38.86703,-17.40022 38.86703,-38.86698 0,-21.46749 -17.4012,-38.86738 -38.86703,-38.86738 z"
         style="color:#000000;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.61180449;marker:none;enable-background:new" />
      <path
         inkscape:connector-curvature="0"
         id="path24876-5-1-4"
         d="m 1240.9645,405.86522 c -2.2913,0 -4.1484,1.85705 -4.1484,4.14825 0,0.19515 0.017,0.37971 0.043,0.56791 l -6.987,3.4061 c -0.7424,-0.70141 -1.7363,-1.13569 -2.8381,-1.13569 -2.2913,0 -4.1484,1.85728 -4.1484,4.14829 0,2.29097 1.8571,4.14825 4.1484,4.14825 1.1235,0 2.135,-0.45316 2.882,-1.17912 l 6.9431,3.49318 c -0.022,0.17462 -0.043,0.34385 -0.043,0.52429 0,2.2912 1.8571,4.14829 4.1484,4.14829 2.2912,0 4.1483,-1.85709 4.1483,-4.14829 0,-2.29112 -1.8571,-4.14826 -4.1483,-4.14826 -1.0899,0 -2.0542,0.44812 -2.7947,1.13513 l -7.0305,-3.5365 c 0.015,-0.14693 0.043,-0.28612 0.043,-0.43697 0,-0.16539 -0.024,-0.32016 -0.043,-0.48049 l 7.0744,-3.4496 c 0.7351,0.66325 1.6827,1.09174 2.7508,1.09174 2.2912,0 4.1483,-1.85714 4.1483,-4.14826 0,-2.2912 -1.8571,-4.14825 -4.1483,-4.14825 z"
         style="color:#000000;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.38548368;marker:none;enable-background:new" />
      <path
         style="color:#000000;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26493058;marker:none;enable-background:new"
         d="m 1237.3345,476.89713 c -1.5748,0 -2.8508,1.27627 -2.8508,2.85095 0,0.13413 0.015,0.26094 0.028,0.39028 l -4.8023,2.34091 c -0.5105,-0.48204 -1.1934,-0.78055 -1.9506,-0.78055 -1.5746,0 -2.851,1.27645 -2.851,2.85102 0,1.57449 1.2764,2.85096 2.851,2.85096 0.7723,0 1.4672,-0.31148 1.9805,-0.81036 l 4.7724,2.40075 c -0.017,0.11998 -0.028,0.23633 -0.028,0.36032 0,1.57466 1.276,2.85097 2.8508,2.85097 1.5746,0 2.851,-1.27631 2.851,-2.85097 0,-1.57463 -1.2764,-2.85096 -2.851,-2.85096 -0.7491,0 -1.4118,0.30795 -1.9207,0.78011 l -4.8322,-2.4305 c 0.015,-0.10119 0.028,-0.19666 0.028,-0.30032 0,-0.11368 -0.019,-0.22004 -0.028,-0.33024 l 4.8625,-2.37079 c 0.5051,0.45585 1.1565,0.75035 1.8904,0.75035 1.5746,0 2.851,-1.27636 2.851,-2.85098 0,-1.57468 -1.2764,-2.85095 -2.851,-2.85095 z"
         id="path5612"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path5623"
         d="m 1231.7498,525.01676 c -1.2297,0 -2.2261,0.99662 -2.2261,2.22626 0,0.10474 0.012,0.20376 0.022,0.30476 l -3.75,1.82798 c -0.3987,-0.37642 -0.9319,-0.60952 -1.5232,-0.60952 -1.2296,0 -2.2263,0.99676 -2.2263,2.22631 0,1.2295 0.9967,2.22627 2.2263,2.22627 0.6031,0 1.1457,-0.24323 1.5465,-0.6328 l 3.7267,1.87471 c -0.013,0.0937 -0.022,0.18455 -0.022,0.28137 0,1.22962 0.9964,2.22627 2.2261,2.22627 1.2296,0 2.2263,-0.99665 2.2263,-2.22627 0,-1.22961 -0.9967,-2.22627 -2.2263,-2.22627 -0.585,0 -1.1024,0.24047 -1.4998,0.60917 l -3.7734,-1.89793 c 0.012,-0.079 0.022,-0.15357 0.022,-0.23452 0,-0.0888 -0.015,-0.17182 -0.022,-0.25788 l 3.797,-1.85131 c 0.3944,0.35597 0.9031,0.58594 1.4762,0.58594 1.2296,0 2.2263,-0.99669 2.2263,-2.22628 0,-1.22964 -0.9967,-2.22626 -2.2263,-2.22626 z"
         style="color:#000000;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20687985;marker:none;enable-background:new" />
      <path
         style="color:#000000;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17687783;marker:none;enable-background:new"
         d="m 1228.2423,564.875 c -1.0515,0 -1.9033,0.85208 -1.9033,1.90339 0,0.0896 0.01,0.17424 0.018,0.26057 l -3.2061,1.56289 c -0.3407,-0.32184 -0.7966,-0.52111 -1.3022,-0.52111 -1.0514,0 -1.9035,0.85219 -1.9035,1.90343 0,1.0512 0.8521,1.9034 1.9035,1.9034 0.5156,0 0.9796,-0.20794 1.3223,-0.541 l 3.186,1.60281 c -0.011,0.0802 -0.018,0.15779 -0.018,0.24059 0,1.0513 0.8518,1.9034 1.9033,1.9034 1.0514,0 1.9035,-0.8521 1.9035,-1.9034 0,-1.05129 -0.8521,-1.90343 -1.9035,-1.90343 -0.5001,0 -0.9424,0.20561 -1.2823,0.52082 l -3.226,-1.62269 c 0.01,-0.0675 0.018,-0.13128 0.018,-0.2005 0,-0.0758 -0.012,-0.14691 -0.018,-0.22049 l 3.2463,-1.58282 c 0.3371,0.30434 0.772,0.50097 1.262,0.50097 1.0514,0 1.9035,-0.85216 1.9035,-1.90344 0,-1.05131 -0.8521,-1.90339 -1.9035,-1.90339 z"
         id="path5625"
         inkscape:connector-curvature="0" />
      <path
         inkscape:connector-curvature="0"
         id="path5627"
         d="m 1222.4416,598.59957 c -0.5159,0 -0.9337,0.41797 -0.9337,0.93367 0,0.0439 0,0.0854 0.013,0.1278 l -1.5727,0.76665 c -0.1671,-0.15788 -0.3908,-0.25563 -0.6388,-0.25563 -0.5158,0 -0.9337,0.41802 -0.9337,0.93368 0,0.51564 0.4179,0.93366 0.9337,0.93366 0.2529,0 0.4806,-0.10194 0.6486,-0.26537 l 1.5629,0.78622 c 0,0.0394 -0.013,0.0774 -0.013,0.11796 0,0.51568 0.4178,0.93366 0.9337,0.93366 0.5158,0 0.9337,-0.41798 0.9337,-0.93366 0,-0.51568 -0.4179,-0.93368 -0.9337,-0.93368 -0.2453,0 -0.4623,0.10082 -0.6291,0.25547 l -1.5824,-0.79596 c 0,-0.0331 0.013,-0.0644 0.013,-0.0983 0,-0.0372 0,-0.0721 -0.013,-0.10821 l 1.5924,-0.77641 c 0.1654,0.14928 0.3787,0.24574 0.6191,0.24574 0.5158,0 0.9337,-0.418 0.9337,-0.93368 0,-0.5157 -0.4179,-0.93366 -0.9337,-0.93366 z"
         style="color:#000000;clip-rule:nonzero;display:block;overflow:visible;visibility:visible;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.08676261;marker:none;enable-background:new" />
    </g>
  </g>
</svg>