summaryrefslogtreecommitdiff
path: root/docs/sources/terms/images/docker-filesystems.svg
blob: d41aff2522c25d743e2a2a8872023323724895ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   inkscape:export-ydpi="90"
   inkscape:export-xdpi="90"
   inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
   sodipodi:docname="docker-filesystems.svg"
   width="800"
   height="600"
   id="svg2"
   version="1.1"
   inkscape:version="0.48.2 r9819">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.82666667"
     inkscape:cx="236.08871"
     inkscape:cy="300"
     inkscape:document-units="px"
     inkscape:current-layer="layer2"
     showgrid="false"
     width="800px"
     inkscape:window-width="1327"
     inkscape:window-height="714"
     inkscape:window-x="686"
     inkscape:window-y="219"
     inkscape:window-maximized="0"
     showguides="false"
     inkscape:guide-bbox="true"
     inkscape:snap-page="true"
     inkscape:object-nodes="true"
     inkscape:snap-global="false"
     inkscape:object-paths="true"
     inkscape:snap-intersection-paths="true"
     inkscape:snap-smooth-nodes="true"
     inkscape:snap-bbox="false"
     inkscape:snap-grids="false">
    <sodipodi:guide
       id="guide3907"
       position="412.84404,257.33945"
       orientation="0,1" />
    <sodipodi:guide
       id="guide4041"
       position="-404.80241,513.78768"
       orientation="1,0" />
    <sodipodi:guide
       id="guide4043"
       position="1202.7302,257.33945"
       orientation="1,0" />
    <sodipodi:guide
       id="guide4091"
       position="131.92561,176.67443"
       orientation="1,0" />
    <sodipodi:guide
       id="guide4093"
       position="667.58474,178.3563"
       orientation="1,0" />
    <sodipodi:guide
       id="guide4109"
       position="386.00972,138.85222"
       orientation="1,0" />
    <sodipodi:guide
       id="guide4125"
       position="85.321101,260.09174"
       orientation="0,1" />
    <sodipodi:guide
       id="guide4206"
       position="251.6129,347.17742"
       orientation="1,0" />
    <sodipodi:guide
       id="guide4281"
       position="-404.80241,590.32258"
       orientation="0,1" />
    <sodipodi:guide
       orientation="1,0"
       position="400.40322,131.85484"
       id="guide5235" />
    <sodipodi:guide
       orientation="1,0"
       position="143.95161,295.16129"
       id="guide5237" />
    <sodipodi:guide
       orientation="1,0"
       position="281.85484,384.67742"
       id="guide5239" />
  </sodipodi:namedview>
  <defs
     id="defs4">
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="-406.34117 : 522.93291 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1196.7644 : 521.45993 : 1"
       inkscape:persp3d-origin="403.62904 : 221.23862 : 1"
       id="perspective11489" />
    <inkscape:perspective
       id="perspective5786"
       inkscape:persp3d-origin="400 : 200 : 1"
       inkscape:vp_z="1200.3935 : 584.89873 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="-407.55086 : 591.21042 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="-403.92182 : 591.88452 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1199.1838 : 590.41154 : 1"
       inkscape:persp3d-origin="406.04839 : 290.19023 : 1"
       id="perspective4014" />
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="-407.55086 : 591.21042 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1200.3935 : 584.89873 : 1"
       inkscape:persp3d-origin="400 : 200 : 1"
       id="perspective4012" />
    <inkscape:perspective
       id="perspective3054"
       inkscape:persp3d-origin="400 : 200 : 1"
       inkscape:vp_z="1200.3935 : 584.89873 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="-407.55086 : 591.21042 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective3054-6"
       inkscape:persp3d-origin="400.19492 : 199.86531 : 1"
       inkscape:vp_z="1200.5884 : 584.76404 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="-407.35594 : 591.07573 : 1"
       sodipodi:type="inkscape:persp3d" />
  </defs>
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     style="display:inline"
     inkscape:label="Background"
     id="layer8"
     inkscape:groupmode="layer"
     sodipodi:insensitive="true">
    <rect
       y="0"
       x="0"
       height="600"
       width="800"
       id="rect8704"
       style="fill:#f0f0f0;fill-opacity:0.51111115;stroke:none" />
  </g>
  <g
     style="display:inline"
     inkscape:label="bootfs"
     id="layer2"
     inkscape:groupmode="layer">
    <g
       transform="translate(0,-452.36218)"
       inkscape:corner7="0.017576171 : -0.16150813 : 0.53533062 : 1"
       inkscape:corner0="0.49469727 : -0.063230334 : 0 : 1"
       inkscape:perspectiveID="#perspective3054"
       id="g3999"
       style="fill:#aad3d3;fill-opacity:1;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       sodipodi:type="inkscape:box3d"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         d="M 132.72634,830.93804 386.05151,1004.3234 666.77808,819.25271 414.27662,735.0876 z"
         inkscape:box3dsidetype="13"
         style="fill:#afafde;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4009"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 132.72634,765.18707 0,65.75097 281.55028,-95.85044 0,-48.41204 z"
         inkscape:box3dsidetype="6"
         style="fill:#353564;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4001"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 414.27662,686.67556 252.50146,69.2908 0,63.28635 -252.50146,-84.16511 z"
         inkscape:box3dsidetype="11"
         style="fill:#e9e9ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4011"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="M 132.72634,765.18707 386.05151,907.74315 666.77808,755.96636 414.27662,686.67556 z"
         inkscape:box3dsidetype="5"
         style="fill:#bbdbdb;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4003"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 386.05151,907.74315 0,96.58025 280.72657,-185.07069 0,-63.28635 z"
         inkscape:box3dsidetype="14"
         style="fill:#91c6c6;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4007"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 132.72634,765.18707 253.32517,142.55608 0,96.58025 -253.32517,-173.38536 z"
         inkscape:box3dsidetype="3"
         style="fill:#a9d2d2;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4005"
         sodipodi:type="inkscape:box3dside" />
    </g>
    <path
       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="m 386.05151,551.96125 0,-96.58028 280.72657,-151.77679 0,63.28635 z"
       id="path8380"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       id="text9360"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
       transform="matrix(0.75405944,0,0,0.75405944,111.78234,89.235813)"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         id="path9367"
         d="m 266.71327,371.36648 c 0,0 42.02322,22.59745 42.02322,22.59745 -0.88334,-2.7494 -0.92807,-5.0556 -0.14667,-6.93271 0.74185,-1.90975 2.28564,-3.39773 4.62971,-4.47237 6.2804,-2.87893 16.29751,-2.91299 30.29812,-0.0808 14.27878,2.88854 28.84623,7.93676 43.91285,15.30907 14.96985,7.32504 25.82666,14.76208 32.30008,22.2841 6.60774,7.73294 6.42608,13.62664 -0.77341,17.5191 -2.57568,1.39255 -5.9428,2.27952 -10.09196,2.65645 -4.14722,0.37682 -9.03195,0.27276 -14.63551,-0.30994 0,0 6.12635,3.29437 6.12635,3.29437 0,0 -11.62996,6.24761 -11.62996,6.24761 -2.41692,1.29837 -5.29563,1.59264 -8.61905,0.88139 -3.35728,-0.771 -6.87004,-2.19044 -10.52344,-4.24635 -3.54102,-1.99268 -5.86779,-3.86777 -6.99837,-5.62926 -1.19938,-1.79188 -0.61523,-3.29313 1.73951,-4.51039 0,0 1.68826,-0.87272 1.68826,-0.87272 0,0 -90.45829,-49.85167 -90.45829,-49.85167 0,0 -1.59344,0.71389 -1.59344,0.71389 -2.25209,1.00907 -4.70558,1.26625 -7.34808,0.77047 -2.66136,-0.54067 -5.33776,-1.56961 -8.02042,-3.07925 -2.60339,-1.46503 -4.2303,-2.85092 -4.89296,-4.16015 -0.68502,-1.34601 0.087,-2.50041 2.30772,-3.46734 0,0 10.70574,-4.66093 10.70574,-4.66093 m 112.24992,31.28573 c -9.24083,-4.62749 -18.2154,-7.8208 -27.00552,-9.64439 -8.68476,-1.80163 -14.90975,-1.78551 -18.76933,0.0401 -3.85162,1.82199 -4.17827,4.93626 -0.91435,9.40205 3.33104,4.5576 9.38532,9.21781 18.26644,13.9935 8.2787,4.45179 16.48672,7.54923 24.5504,9.23207 8.07047,1.65936 14.42008,1.30809 18.96216,-1.05409 4.51014,-2.34553 5.14578,-5.59044 1.97324,-9.69201 -3.16324,-4.08344 -8.87974,-8.17923 -17.06304,-12.27723"
         inkscape:connector-curvature="0" />
      <path
         id="path9369"
         d="m 437.98696,372.26204 c 8.99001,3.86459 16.99429,8.15462 23.98969,12.89 7.10735,4.79779 11.64579,9.38974 13.51508,13.75095 1.84778,4.39015 0.77479,7.7026 -3.26515,9.88682 -4.03834,2.18336 -10.64299,3.02836 -19.75031,2.52645 -9.13238,-0.53761 -19.16951,-2.42955 -30.00743,-5.6346 -10.64461,-3.14785 -20.49641,-6.91697 -29.54294,-11.275 -8.99106,-4.3313 -16.62248,-8.95602 -22.92919,-13.85679 -6.22481,-4.81666 -9.76552,-9.10257 -10.7207,-12.89418 -0.91096,-3.7398 0.56253,-6.46753 4.39211,-8.22314 3.83482,-1.75785 9.80768,-2.40719 17.97503,-1.9535 8.17976,0.41437 17.24042,1.97213 27.27404,4.70697 10.13979,2.75246 19.82425,6.10167 29.06977,10.07602 m -8.30516,4.22688 c -7.37544,-3.23914 -15.01481,-5.69353 -22.94614,-7.39099 -10.59158,-2.24412 -18.0015,-2.32455 -22.37343,-0.25658 -3.87071,1.83102 -4.04253,4.79198 -0.44507,8.9356 3.66986,4.22702 9.76566,8.36619 18.36814,12.41764 7.19768,3.38988 15.42275,5.9332 24.65726,7.59871 9.26097,1.64784 15.89905,1.45513 19.81688,-0.58239 3.92134,-2.03932 3.86523,-5.23176 -0.0906,-9.52309 -3.95681,-4.24224 -9.63234,-7.96878 -16.98706,-11.1989"
         inkscape:connector-curvature="0" />
      <path
         id="path9371"
         d="m 486.12662,348.37269 c 9.12904,3.46892 17.3339,7.32826 24.59454,11.59549 7.36867,4.31928 12.21724,8.46335 14.44995,12.41098 2.21291,3.97101 1.48935,6.9806 -2.2182,8.98511 -3.70503,2.00315 -10.02616,2.80997 -18.90507,2.41265 -8.90912,-0.4296 -18.83267,-2.08097 -29.67005,-4.91891 -10.65199,-2.78938 -20.6048,-6.1499 -29.84349,-10.05334 -9.19036,-3.88303 -17.09633,-8.04492 -23.74853,-12.47019 -6.56981,-4.35325 -10.47308,-8.24211 -11.80577,-11.6979 -1.28493,-3.41097 -0.13687,-5.91277 3.41353,-7.5404 3.55603,-1.63005 9.3155,-2.25883 17.33088,-1.89147 8.02147,0.33124 17.0176,1.70257 27.07805,4.14312 10.15907,2.45438 19.92781,5.45443 29.32416,9.02486 m -7.65999,3.9026 c -7.50262,-2.90854 -15.1879,-5.10156 -23.08465,-6.60329 -10.54858,-1.98575 -17.7778,-2.01539 -21.82395,-0.10153 -3.58138,1.69415 -3.44041,4.39661 0.49404,8.15321 4.01058,3.82924 10.36918,7.5608 19.15114,11.19424 7.34217,3.03775 15.59205,5.29806 24.72975,6.75377 9.15745,1.43882 15.58337,1.22282 19.18663,-0.65111 3.60745,-1.87607 3.2401,-4.77605 -1.02456,-8.65304 -4.26414,-3.8354 -10.15199,-7.19381 -17.6284,-10.09225"
         inkscape:connector-curvature="0" />
      <path
         id="path9373"
         d="m 480.19699,325.92671 c 0,0 46.81732,16.72492 46.81732,16.72492 5.30636,1.89565 9.16415,2.98806 11.53246,3.26156 3.7232,0.43657 6.89415,-0.0226 9.49293,-1.37414 3.75665,-1.95367 4.44336,-4.69849 2.10883,-8.19919 -0.90969,-1.33519 -1.02233,-2.17338 -0.34299,-2.52081 0.9357,-0.47846 2.95503,-0.48037 6.06821,-0.005 3.1485,0.46528 6.49481,1.29323 10.04934,2.48906 3.32993,1.12037 5.84704,2.28915 7.54222,3.50637 2.83733,1.95367 4.27456,4.42822 4.29002,7.43825 -0.0474,3.00727 -1.25752,5.16708 -3.63759,6.45388 -4.62111,2.49844 -11.67395,3.11368 -21.05614,1.83994 -9.34487,-1.30401 -18.94785,-3.76018 -28.72768,-7.32238 0,0 -51.54329,-18.77413 -51.54329,-18.77413 0,0 -2.69607,1.28076 -2.69607,1.28076 -1.80402,0.85705 -4.10418,1.10091 -6.88948,0.73055 -2.8225,-0.40698 -5.85549,-1.21407 -9.08819,-2.41555 -3.13895,-1.16664 -5.2901,-2.28205 -6.46547,-3.348 -1.2127,-1.09633 -0.91887,-2.05519 0.87217,-2.87962 0,0 2.67694,-1.23211 2.67694,-1.23211 0,0 -18.59439,-6.77282 -18.59439,-6.77282 -4.82318,-1.75679 -7.87823,-3.13859 -9.20076,-4.15603 -1.3546,-1.04496 -1.48412,-1.80449 -0.39608,-2.28266 1.06279,-0.46689 2.94303,-0.47915 5.6499,-0.0361 2.67661,0.41136 6.41632,1.47416 11.25307,3.20202 0,0 18.64358,6.66019 18.64358,6.66019 0,0 13.36854,-6.15311 13.36854,-6.15311 1.71867,-0.79098 3.93689,-1.00802 6.6652,-0.65194 2.69085,0.32287 5.65208,1.03373 8.89493,2.1378 3.19532,1.08797 5.46866,2.16327 6.80877,3.22473 1.29906,1.03205 1.08863,1.9601 -0.64069,2.78154 0,0 -13.45561,6.39201 -13.45561,6.39201"
         inkscape:connector-curvature="0" />
      <path
         id="path9375"
         d="m 524.35826,304.94812 c 0,0 57.86252,18.38857 57.86252,18.38857 0,0 9.7239,-5.0266 9.7239,-5.0266 1.62583,-0.84042 3.97193,-1.06764 7.05011,-0.68253 3.02751,0.34959 6.47003,1.1138 10.34207,2.2985 3.81658,1.16778 6.62659,2.32065 8.41675,3.45726 1.7367,1.10538 1.79678,2.09684 0.1687,2.97144 0,0 -20.86256,11.20735 -20.86256,11.20735 -1.69813,0.91223 -4.12808,1.16816 -7.27767,0.76668 -3.20111,-0.44068 -6.755,-1.30911 -10.64737,-2.59887 -3.77828,-1.25192 -6.46425,-2.44676 -8.07231,-3.5865 -1.65775,-1.17192 -1.63386,-2.19399 0.06,-3.06965 0,0 4.16686,-2.15398 4.16686,-2.15398 0,0 -57.79955,-18.70882 -57.79955,-18.70882 0,0 -3.31246,1.57357 -3.31246,1.57357 -1.67461,0.79557 -3.894,1.0321 -6.648,0.70863 -2.79428,-0.35685 -5.83447,-1.07922 -9.10983,-2.16217 -3.18126,-1.05181 -5.3938,-2.06251 -6.64916,-3.0336 -1.29516,-0.99893 -1.10545,-1.88041 0.5601,-2.64708 0,0 3.29491,-1.51654 3.29491,-1.51654 0,0 -8.05013,-2.6057 -8.05013,-2.6057 -9.0452,-2.92777 -15.29182,-5.80135 -18.83144,-8.62907 -3.52308,-2.81085 -3.17907,-5.10586 0.96661,-6.91085 1.83597,-0.79923 4.45749,-1.5595 7.86455,-2.28173 3.35858,-0.74992 6.26927,-0.99401 8.74211,-0.7327 2.50162,0.25283 5.19422,0.81488 8.08621,1.68978 3.10997,0.94091 5.375,1.84984 6.78473,2.72549 1.35022,0.86008 1.58905,1.48936 0.71009,1.88489 -0.40765,0.18355 -1.25572,0.38688 -2.54436,0.60991 -4.41723,0.71294 -7.6893,1.54538 -9.81886,2.49937 -2.22444,0.99667 -2.73118,2.01496 -1.5084,3.05681 1.18494,1.01695 3.30412,2.01202 6.36785,2.98566 0,0 8.06456,2.56289 8.06456,2.56289 0,0 10.38017,-4.77766 10.38017,-4.77766 1.60406,-0.73823 3.75199,-0.95017 6.4536,-0.63657 2.66155,0.28314 5.62415,0.92234 8.8989,1.92218 3.22598,0.985 5.54921,1.96307 6.95893,2.93324 1.36659,0.94309 1.24876,1.79847 -0.36254,2.56385 0,0 -10.42964,4.95455 -10.42964,4.95455"
         inkscape:connector-curvature="0" />
      <path
         id="path9377"
         d="m 574.61499,283.99905 c -3.31444,-0.15435 -6.08369,-0.11845 -8.31443,0.10735 -2.30321,0.20508 -4.07372,0.60048 -5.31424,1.18721 -2.46838,1.16767 -3.01224,2.51015 -1.61447,4.03327 0.60292,0.67291 1.64413,1.22527 3.12534,1.65615 1.70913,0.49721 3.82744,0.77332 6.35381,0.8271 1.87073,0.0245 4.53088,-0.36099 7.97382,-1.15539 6.3436,-1.44672 11.39483,-2.26881 15.17355,-2.47016 4.98619,-0.25925 10.88971,0.10784 17.75075,1.10837 6.92387,1.00975 13.65666,2.40914 20.21272,4.20821 9.03796,2.4802 15.73657,5.10339 20.02734,7.86932 6.35081,4.06357 7.3,7.36394 2.70673,9.84732 -1.85312,1.00191 -4.27563,1.73258 -7.2635,2.1895 -2.88132,0.47104 -6.28692,0.6849 -10.20845,0.64145 0.80272,0.49803 1.32719,0.93276 1.57202,1.30366 0.24495,0.37149 0.1769,0.66031 -0.20564,0.86576 -1.02151,0.54865 -3.18409,0.59244 -6.47634,0.13197 -3.34347,-0.49542 -8.15753,-1.67755 -14.39541,-3.53092 0,0 -8.59884,-2.55485 -8.59884,-2.55485 -6.05987,-1.80048 -10.01632,-3.2171 -11.91481,-4.26116 -1.94556,-1.07213 -2.42442,-1.85248 -1.44701,-2.34539 0.78497,-0.39581 2.2796,-0.48123 4.48868,-0.25629 2.13397,0.20198 5.36767,0.81735 9.72187,1.85154 4.26215,0.44403 7.96002,0.55921 11.08074,0.3439 3.04016,-0.23936 5.45895,-0.82613 7.25042,-1.75782 2.92404,-1.52066 3.35798,-3.20948 1.3294,-5.05875 -1.04765,-0.89657 -2.55062,-1.61718 -4.50718,-2.1636 -3.2445,-0.90604 -6.44882,-1.37387 -9.62339,-1.4077 -3.16808,-0.0337 -7.17813,0.6088 -12.04806,1.93106 -7.21679,1.99422 -14.62018,2.58337 -22.13286,1.76443 -7.37333,-0.78946 -15.08696,-2.38082 -23.08624,-4.74933 -8.08729,-2.39456 -13.72809,-4.81726 -16.98815,-7.27133 -4.41938,-3.29135 -4.47329,-5.88661 -0.24956,-7.8229 1.46281,-0.6705 3.34863,-1.17273 5.65981,-1.50788 2.26094,-0.36411 4.98687,-0.55216 8.18326,-0.56429 -0.60143,-0.45433 -0.98542,-0.82473 -1.153,-1.11182 -0.14687,-0.2959 -0.0782,-0.50905 0.20561,-0.63976 0.85095,-0.3916 2.68442,-0.40633 5.50914,-0.0436 2.76417,0.34452 6.79329,1.24528 12.1235,2.71337 0,0 5.46229,1.50449 5.46229,1.50449 4.9316,1.35835 8.14703,2.36621 9.61371,3.01537 2.80152,1.26506 3.65218,2.17198 2.53312,2.71381 -0.75407,0.36519 -2.28486,0.44438 -4.58735,0.23757 -2.2968,-0.20623 -4.94238,-0.66681 -7.9287,-1.37921"
         inkscape:connector-curvature="0" />
    </g>
    <path
       inkscape:connector-curvature="0"
       id="path4672"
       d="m 386.05151,551.96125 0,-96.58028 280.72657,-151.77679 0,63.28635 z"
       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
    <g
       id="text6884"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Courier New;-inkscape-font-specification:Sans"
       transform="translate(1.2096774,-17.209677)">
      <path
         id="path6891"
         d="m 405.68539,517.2315 c 0,0 -0.0193,16.2617 -0.0193,16.2617 0,0 3.17768,-2.015 3.17768,-2.015 0.42104,-0.26699 0.71912,-0.28408 0.89461,-0.0515 0.17538,0.20367 0.26245,0.57777 0.26128,1.12234 -0.001,0.51582 -0.0901,1.00179 -0.26671,1.45807 -0.1768,0.45653 -0.47536,0.81943 -0.89606,1.08884 0,0 -7.2615,4.65021 -7.2615,4.65021 -0.4181,0.26775 -0.71809,0.2856 -0.89962,0.053 -0.18168,-0.23276 -0.27256,-0.61101 -0.27256,-1.13472 0,-0.55292 0.0909,-1.0473 0.27272,-1.48298 0.18171,-0.4645 0.48198,-0.82951 0.90042,-1.09484 0,0 2.35294,-1.49203 2.35294,-1.49203 0,0 0.0349,-43.95921 0.0349,-43.95921 0,0 -2.3762,1.32682 -2.3762,1.32682 -0.4226,0.23601 -0.72583,0.24206 -0.90932,0.0178 -0.18363,-0.25407 -0.2755,-0.66358 -0.2755,-1.22844 0,-0.56489 0.0919,-1.06185 0.27567,-1.49066 0.18367,-0.45823 0.48718,-0.80413 0.91014,-1.03765 0,0 7.3447,-4.05398 7.3447,-4.05398 0.42546,-0.23477 0.72666,-0.22523 0.90398,0.0279 0.17721,0.22388 0.26518,0.61389 0.26399,1.17006 -0.001,0.55615 -0.0911,1.05925 -0.26963,1.50941 -0.1786,0.42125 -0.48025,0.7505 -0.90536,0.98782 0,0 -3.20861,1.79162 -3.20861,1.79162 0,0 -0.027,22.7262 -0.027,22.7262 0,0 11.85347,-29.32986 11.85347,-29.32986 0,0 -1.84356,1.0294 -1.84356,1.0294 -0.4158,0.23222 -0.71071,0.23758 -0.8844,0.0157 -0.17376,-0.25093 -0.25981,-0.65252 -0.25806,-1.20465 0.002,-0.55216 0.0906,-1.03662 0.2666,-1.4532 0.17596,-0.44532 0.4722,-0.78288 0.88832,-1.01263 0,0 4.9265,-2.71923 4.9265,-2.71923 0.39516,-0.21804 0.67722,-0.2015 0.84652,0.049 0.16926,0.22176 0.25255,0.60547 0.24997,1.15114 -0.003,0.54567 -0.0901,1.03822 -0.26231,1.47778 -0.17228,0.41121 -0.45565,0.72699 -0.8505,0.94742 0,0 -0.67254,0.37553 -0.67254,0.37553 0,0 -9.34163,23.22298 -9.34163,23.22298 1.39299,0.391 2.54214,1.22247 3.45037,2.49219 0.90456,1.26471 1.76961,3.30318 2.59512,6.10986 0.47018,1.56163 1.32542,5.36141 2.55962,11.3683 0,0 2.05678,-1.30423 2.05678,-1.30423 0.40304,-0.25557 0.68792,-0.26799 0.85497,-0.0375 0.16702,0.20219 0.24918,0.57016 0.24656,1.10393 -0.003,0.5056 -0.0889,0.98066 -0.25892,1.42533 -0.17022,0.44492 -0.45652,0.79627 -0.85925,1.05417 0,0 -3.17718,2.03464 -3.17718,2.03464 -1.70416,-9.14138 -3.15817,-14.85521 -4.35315,-17.0766 -1.2016,-2.2625 -2.71697,-3.45967 -4.55059,-3.58265 0,0 -3.48846,8.71251 -3.48846,8.71251"
         inkscape:connector-curvature="0" />
      <path
         id="path6893"
         d="m 443.47158,496.16573 c 0,0 -15.92023,9.70195 -15.92023,9.70195 0.25261,4.3947 1.09424,7.53188 2.51855,9.41247 1.42789,1.83288 3.19316,2.07344 5.2907,0.7382 1.15976,-0.73828 2.37336,-1.93312 3.64044,-3.58163 1.2617,-1.64151 2.29067,-3.40363 3.08952,-5.2883 0.23317,-0.55259 0.43412,-0.88169 0.60291,-0.98752 0.19273,-0.12084 0.35959,-0.0498 0.50059,0.2133 0.14113,0.23564 0.20944,0.58439 0.20501,1.04631 -0.004,0.46186 -0.1049,0.97075 -0.30138,1.52697 -0.59063,1.72481 -1.63435,3.65941 -3.13604,5.80979 -1.49675,2.12595 -3.03903,3.70146 -4.62822,4.72308 -2.68176,1.72399 -4.92977,1.22514 -6.73564,-1.52638 -1.80812,-2.81062 -2.70176,-7.0448 -2.66946,-12.69552 0.0295,-5.15711 0.92218,-10.10229 2.67206,-14.81044 1.75462,-4.69402 3.89166,-7.75636 6.39992,-9.19327 2.55976,-1.46633 4.63179,-0.79081 6.22479,2.00024 1.58113,2.74246 2.3269,7.04454 2.24648,12.91075 m -1.50759,-2.55533 c -0.26805,-3.63428 -1.04266,-6.26807 -2.32893,-7.90085 -1.28159,-1.6495 -2.8345,-1.95112 -4.66221,-0.89235 -1.83997,1.06596 -3.44162,3.19609 -4.79954,6.39411 -1.36305,3.21016 -2.22473,6.90224 -2.58104,11.06526 0,0 14.37172,-8.66617 14.37172,-8.66617"
         inkscape:connector-curvature="0" />
      <path
         id="path6895"
         d="m 455.58667,470.66722 c 0,0 -0.10498,8.56019 -0.10498,8.56019 1.93651,-5.08183 3.37081,-8.44336 4.30858,-10.1013 0.94661,-1.68612 1.80908,-2.7511 2.58784,-3.19777 0.84383,-0.48395 1.61379,-0.25336 2.31017,0.68823 0.70553,0.90558 1.05243,1.70098 1.04247,2.38832 -0.007,0.50226 -0.0857,0.96734 -0.23511,1.3954 -0.13804,0.39541 -0.31278,0.65513 -0.52432,0.77918 -0.11142,0.0654 -0.20559,0.0813 -0.28249,0.0476 -0.0766,-0.0601 -0.21729,-0.27954 -0.42229,-0.65871 -0.37824,-0.6994 -0.71083,-1.13744 -0.99754,-1.31325 -0.2871,-0.17598 -0.57132,-0.18255 -0.85261,-0.0195 -0.61996,0.35957 -1.37941,1.38224 -2.27917,3.07105 -0.89096,1.68702 -2.45801,5.46216 -4.70984,11.34948 0,0 -0.22596,18.42612 -0.22596,18.42612 0,0 6.33459,-4.01684 6.33459,-4.01684 0.34746,-0.22033 0.59161,-0.21895 0.7327,0.004 0.14133,0.1965 0.2085,0.54399 0.2016,1.04251 -0.007,0.47221 -0.0847,0.91205 -0.23427,1.31965 -0.14973,0.40781 -0.39805,0.72284 -0.74529,0.94521 0,0 -11.32013,7.24932 -11.32013,7.24932 -0.35123,0.22493 -0.6016,0.23885 -0.75084,0.0414 -0.14907,-0.22443 -0.22099,-0.57831 -0.21571,-1.0616 0.005,-0.45652 0.0796,-0.87735 0.22375,-1.26235 0.15613,-0.41912 0.41594,-0.74392 0.77913,-0.97432 0,0 3.54132,-2.24639 3.54132,-2.24639 0,0 0.33638,-28.17047 0.33638,-28.17047 0,0 -2.71509,1.57907 -2.71509,1.57907 -0.35236,0.20495 -0.60335,0.18908 -0.75268,-0.0481 -0.14946,-0.2372 -0.22135,-0.61416 -0.2156,-1.13086 0.005,-0.48951 0.0807,-0.93834 0.22572,-1.34628 0.15673,-0.41449 0.41745,-0.72656 0.78182,-0.93616 0,0 4.17785,-2.40283 4.17785,-2.40283"
         inkscape:connector-curvature="0" />
      <path
         id="path6897"
         d="m 473.30415,460.47729 c 0,0 -0.0804,4.97133 -0.0804,4.97133 0.98569,-2.87136 1.86574,-4.96674 2.64065,-6.28932 0.77288,-1.31909 1.63191,-2.24853 2.57593,-2.78936 1.01432,-0.58102 1.92593,-0.57975 2.7356,4.3e-4 0.57165,0.43409 1.07517,1.41355 1.51085,2.93619 0.44533,1.487 0.6504,3.16172 0.61612,5.02597 0,0 -0.37098,20.16552 -0.37098,20.16552 0,0 1.09632,-0.69519 1.09632,-0.69519 0.30795,-0.19527 0.52558,-0.18379 0.65312,0.0343 0.1279,0.19274 0.18732,0.5284 0.17832,1.00704 -0.009,0.4534 -0.0822,0.87365 -0.22092,1.26091 -0.13883,0.38745 -0.362,0.67967 -0.66977,0.87676 0,0 -3.48879,2.2342 -3.48879,2.2342 -0.32291,0.20678 -0.54961,0.20133 -0.67985,-0.0168 -0.13035,-0.21825 -0.19152,-0.55628 -0.18341,-1.01409 0.009,-0.48331 0.0832,-0.90811 0.22395,-1.27426 0.14113,-0.39138 0.37338,-0.68956 0.69648,-0.89444 0,0 1.09126,-0.69198 1.09126,-0.69198 0,0 0.35635,-19.67714 0.35635,-19.67714 0.0412,-2.27809 -0.26274,-4.00074 -0.9136,-5.16921 -0.65266,-1.19813 -1.55322,-1.46656 -2.70395,-0.79997 -0.87978,0.50971 -1.6529,1.39411 -2.31814,2.65394 -0.66627,1.2367 -1.63439,3.93929 -2.90635,8.11592 0,0 -0.33083,20.46711 -0.33083,20.46711 0,0 1.52554,-0.96736 1.52554,-0.96736 0.32,-0.20291 0.54652,-0.19417 0.67982,0.026 0.13361,0.19441 0.19632,0.5352 0.1882,1.02244 -0.008,0.46152 -0.0833,0.89021 -0.22665,1.28621 -0.14347,0.39619 -0.37497,0.69664 -0.69477,0.90144 0,0 -4.42215,2.83191 -4.42215,2.83191 -0.3258,0.20863 -0.55714,0.20298 -0.6938,-0.0174 -0.13675,-0.22051 -0.20159,-0.56416 -0.19444,-1.03091 0.008,-0.49277 0.0843,-0.92686 0.23029,-1.30217 0.1463,-0.40101 0.38259,-0.70494 0.70859,-0.91166 0,0 1.54286,-0.97835 1.54286,-0.97835 0,0 0.43113,-27.17649 0.43113,-27.17649 0,0 -1.15824,0.67362 -1.15824,0.67362 -0.32722,0.19033 -0.55954,0.16948 -0.69672,-0.0629 -0.13729,-0.23247 -0.20212,-0.59828 -0.19443,-1.09741 0.007,-0.47286 0.0845,-0.90805 0.23156,-1.30535 0.14701,-0.39707 0.38436,-0.6898 0.71179,-0.87815 0,0 2.52342,-1.45131 2.52342,-1.45131"
         inkscape:connector-curvature="0" />
      <path
         id="path6899"
         d="m 502.73274,460.0514 c 0,0 -12.58078,7.66685 -12.58078,7.66685 0.13943,3.95275 0.75486,6.81973 1.84191,8.60127 1.09127,1.74028 2.46782,2.07625 4.12588,1.02077 0.91736,-0.58398 1.88324,-1.57454 2.89733,-2.9694 1.01026,-1.38958 1.83995,-2.9037 2.49094,-4.54374 0.19007,-0.48101 0.352,-0.76339 0.48584,-0.84731 0.15283,-0.0958 0.2829,-0.0209 0.39022,0.22483 0.10778,0.2211 0.15695,0.53905 0.14755,0.95388 -0.009,0.41479 -0.0948,0.86546 -0.25619,1.35225 -0.48577,1.51058 -1.32969,3.17888 -2.53523,5.00941 -1.20067,1.80791 -2.42926,3.11745 -3.68662,3.92576 -2.11999,1.36285 -3.86995,0.76072 -5.24366,-1.82965 -1.37343,-2.64104 -2.01438,-6.49315 -1.91501,-11.55003 0.0906,-4.61389 0.85108,-8.9821 2.27681,-13.08506 1.42996,-4.0921 3.13808,-6.70212 5.11668,-7.83561 2.02129,-1.15786 3.63504,-0.42605 4.84758,2.17494 1.20485,2.55883 1.735,6.46775 1.59675,11.73084 m -1.15024,-2.39108 c -0.1636,-3.27931 -0.73716,-5.69144 -1.72424,-7.23625 -0.98254,-1.55853 -2.19418,-1.92464 -3.63745,-1.08857 -1.45189,0.84113 -2.73048,2.64931 -3.83206,5.42777 -1.10528,2.78784 -1.82554,6.03803 -2.15785,9.74209 0,0 11.3516,-6.84504 11.3516,-6.84504"
         inkscape:connector-curvature="0" />
      <path
         id="path6901"
         d="m 514.91047,422.62215 c 0,0 -1.06434,42.27288 -1.06434,42.27288 0,0 4.45362,-2.8241 4.45362,-2.8241 0.2761,-0.17507 0.46813,-0.15759 0.57629,0.0523 0.10868,0.18619 0.15712,0.50328 0.14534,0.95133 -0.0112,0.42443 -0.0782,0.81493 -0.20113,1.17164 -0.12299,0.35687 -0.32235,0.62363 -0.59831,0.80035 0,0 -10.15763,6.50487 -10.15763,6.50487 -0.27917,0.17878 -0.476,0.16246 -0.5903,-0.0494 -0.11437,-0.21191 -0.16642,-0.53506 -0.15609,-0.96944 0.0109,-0.45857 0.0801,-0.85922 0.20776,-1.20182 0.12814,-0.36656 0.33197,-0.63844 0.61129,-0.81556 0,0 4.56188,-2.89274 4.56188,-2.89274 0,0 0.97884,-39.26779 0.97884,-39.26779 0,0 -3.35907,1.85407 -3.35907,1.85407 -0.27977,0.15447 -0.48159,0.1208 -0.60529,-0.10124 -0.11445,-0.22726 -0.16609,-0.57399 -0.15489,-1.04015 0.0106,-0.44163 0.0802,-0.843 0.20889,-1.204 0.12859,-0.36073 0.33761,-0.62003 0.62686,-0.77784 0,0 4.51628,-2.46343 4.51628,-2.46343"
         inkscape:connector-curvature="0" />
    </g>
    <g
       id="text3655"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
       transform="matrix(0.67123869,0,0,0.67123869,53.68199,126.56876)">
      <path
         id="path3662"
         d="m 132.8684,367.78607 c 0,0 0.71572,-54.35962 0.71572,-54.35962 0,0 2.66242,1.51122 2.66242,1.51122 0,0 -0.71153,54.62187 -0.71153,54.62187 0,0 -2.66661,-1.77347 -2.66661,-1.77347"
         inkscape:connector-curvature="0" />
      <path
         id="path3664"
         d="m 137.92667,371.15014 c 0,0 6.14809,-16.99741 6.14809,-16.99741 0,0 -5.19986,-22.51479 -5.19986,-22.51479 0,0 3.39897,2.02031 3.39897,2.02031 0,0 2.36954,10.8944 2.36954,10.8944 0.44814,2.07993 0.80843,3.81608 1.08051,5.20679 0.47284,-1.39022 0.90795,-2.61465 1.30519,-3.67276 0,0 2.89882,-7.87895 2.89882,-7.87895 0,0 3.37501,2.00607 3.37501,2.00607 0,0 -5.97372,15.60005 -5.97372,15.60005 0,0 5.92178,25.52797 5.92178,25.52797 0,0 -3.4783,-2.3133 -3.4783,-2.3133 0,0 -3.23409,-14.8189 -3.23409,-14.8189 0,0 -0.8528,-3.95585 -0.8528,-3.95585 0,0 -4.46772,13.08538 -4.46772,13.08538 0,0 -3.29142,-2.18901 -3.29142,-2.18901"
         inkscape:connector-curvature="0" />
      <path
         id="path3666"
         d="m 166.82131,374.91047 c 0,0 2.93572,2.79373 2.93572,2.79373 -0.37761,4.62343 -1.24922,7.86985 -2.61073,9.73548 -1.34456,1.83887 -2.96947,2.11901 -4.86973,0.85217 -2.3637,-1.5758 -4.23108,-4.67579 -5.61088,-9.29124 -1.36166,-4.61024 -1.99867,-10.32878 -1.91636,-17.16995 0.0532,-4.42099 0.40174,-8.10179 1.04648,-11.0477 0.64585,-2.95094 1.59765,-4.88106 2.85839,-5.78928 1.27692,-0.93132 2.65738,-0.95975 4.14303,-0.0791 1.88674,1.11849 3.42575,3.18947 4.61182,6.21733 1.19146,3.01472 1.93755,6.74983 2.23475,11.20086 0,0 -2.92082,-0.72724 -2.92082,-0.72724 -0.24353,-2.97398 -0.70922,-5.3811 -1.39599,-7.22057 -0.67412,-1.8282 -1.50208,-3.03683 -2.48268,-3.62779 -1.47568,-0.88924 -2.68418,-0.33926 -3.629,1.6424 -0.94184,1.95024 -1.44412,5.64763 -1.50886,11.09862 -0.0657,5.53171 0.32577,9.83698 1.17652,12.92095 0.85352,3.09406 1.99526,5.11378 3.42833,6.05501 1.15583,0.75914 2.13411,0.54393 2.93293,-0.65009 0.80075,-1.19694 1.32691,-3.50191 1.57708,-6.91359"
         inkscape:connector-curvature="0" />
      <path
         id="path3668"
         d="m 172.97661,394.46064 c 0,0 0.0905,-8.17492 0.0905,-8.17492 0,0 3.48861,2.27245 3.48861,2.27245 0,0 -0.0895,8.22327 -0.0895,8.22327 -0.0329,3.02363 -0.28765,5.30542 -0.76375,6.84314 -0.47577,1.56243 -1.21303,2.51325 -2.20987,2.85324 0,0 -0.81311,-3.65386 -0.81311,-3.65386 0.65091,-0.22881 1.13685,-0.89297 1.45702,-1.99285 0.32015,-1.07418 0.51068,-2.8142 0.57137,-5.21909 0,0 -1.73124,-1.15138 -1.73124,-1.15138"
         inkscape:connector-curvature="0" />
      <path
         id="path3670"
         d="m 204.77784,410.06983 c -1.27022,1.55778 -2.48568,2.44071 -3.64678,2.65261 -1.1447,0.21934 -2.36657,-0.10529 -3.66459,-0.97064 -2.13127,-1.42084 -3.74779,-3.67649 -4.85717,-6.76514 -1.10483,-3.1041 -1.63719,-6.47275 -1.60031,-10.11391 0.0216,-2.13477 0.25062,-3.94364 0.6874,-5.42825 0.44957,-1.50612 1.02226,-2.57799 1.71876,-3.21526 0.71002,-0.63098 1.50367,-0.94896 2.38159,-0.95288 0.64759,0.017 1.6255,0.25355 2.93681,0.71095 2.68835,0.95136 4.68535,1.32634 5.97773,1.11825 0.0222,-1.02578 0.0346,-1.67832 0.0372,-1.95765 0.0289,-3.07178 -0.26872,-5.42898 -0.8919,-7.06976 -0.84101,-2.21749 -2.10184,-3.83086 -3.77761,-4.84085 -1.55688,-0.93829 -2.71034,-1.00947 -3.46489,-0.21839 -0.74047,0.76925 -1.30109,2.5996 -1.68287,5.49061 0,0 -3.16708,-2.94172 -3.16708,-2.94172 0.31864,-2.91383 0.81734,-5.11515 1.49696,-6.60484 0.6812,-1.51989 1.65517,-2.41342 2.92464,-2.67921 1.27473,-0.29431 2.75127,0.0544 4.43259,1.05105 1.67794,0.99472 3.04366,2.25211 4.09313,3.7721 1.05306,1.52531 1.82526,3.12483 2.31452,4.79681 0.49033,1.64692 0.82696,3.5698 1.00937,5.76792 0.10151,1.36012 0.13673,3.72492 0.1056,7.09479 0,0 -0.0935,10.11679 -0.0935,10.11679 -0.0653,7.05995 -0.0372,11.58025 0.0844,13.55797 0.13448,1.95911 0.40887,3.94126 0.8236,5.94773 0,0 -3.55349,-2.3633 -3.55349,-2.3633 -0.33594,-1.80359 -0.5439,-3.78856 -0.62416,-5.9558 m -0.12224,-17.05427 c -1.23154,0.34731 -3.06331,0.14247 -5.48491,-0.60924 -1.36335,-0.41924 -2.32581,-0.53009 -2.89103,-0.33412 -0.56424,0.19568 -1.00286,0.73389 -1.31639,1.61435 -0.31298,0.85222 -0.4758,1.92485 -0.48867,3.21853 -0.0197,1.98221 0.29058,3.84732 0.93197,5.59804 0.65498,1.76261 1.62279,3.0659 2.90625,3.90947 1.27641,0.83893 2.42209,0.96176 3.43544,0.36456 1.01669,-0.62694 1.7731,-1.89094 2.26739,-3.79238 0.3778,-1.47261 0.58252,-3.87376 0.61388,-7.20158 0,0 0.0261,-2.76763 0.0261,-2.76763"
         inkscape:connector-curvature="0" />
      <path
         id="path3672"
         d="m 226.91498,430.33317 c 0,0 0.056,-6.79135 0.056,-6.79135 -1.69979,4.12585 -3.95958,5.23997 -6.76691,3.36841 -1.23125,-0.82083 -2.37518,-2.1017 -3.4326,-3.84047 -1.04088,-1.72429 -1.81148,-3.52427 -2.31374,-5.40182 -0.48827,-1.89422 -0.82487,-4.02954 -1.01034,-6.40682 -0.12775,-1.59592 -0.17698,-4.02489 -0.14772,-7.28678 0,0 0.25063,-27.95019 0.25063,-27.95019 0,0 3.47921,2.068 3.47921,2.068 0,0 -0.22098,25.15376 -0.22098,25.15376 -0.0353,4.02044 0.0122,6.77614 0.14272,8.26649 0.20297,2.17003 0.65699,4.07445 1.36316,5.71471 0.70804,1.61546 1.59303,2.77268 2.65633,3.47053 1.06676,0.70016 2.07587,0.76801 3.02668,0.20066 0.95364,-0.59783 1.63329,-1.79901 2.03728,-3.60358 0.41794,-1.82668 0.64337,-4.71043 0.67595,-8.64861 0,0 0.20406,-24.67831 0.20406,-24.67831 0,0 3.62583,2.15515 3.62583,2.15515 0,0 -0.37466,46.37229 -0.37466,46.37229 0,0 -3.25092,-2.16207 -3.25092,-2.16207"
         inkscape:connector-curvature="0" />
      <path
         id="path3674"
         d="m 236.84818,436.9394 c 0,0 0.31458,-40.68866 0.31458,-40.68866 0,0 -3.27066,-1.97443 -3.27066,-1.97443 0,0 0.0485,-6.13244 0.0485,-6.13244 0,0 3.26986,1.94357 3.26986,1.94357 0,0 0.0384,-4.9718 0.0384,-4.9718 0.0242,-3.13718 0.17313,-5.39171 0.44675,-6.76504 0.37445,-1.8466 1.0157,-3.14492 1.92523,-3.8952 0.92597,-0.77365 2.21207,-0.69593 3.86256,0.23811 1.06731,0.60412 2.24898,1.54093 3.54628,2.81271 0,0 -0.62418,6.66996 -0.62418,6.66996 -0.78934,-0.75385 -1.53564,-1.33338 -2.23919,-1.73932 -1.15067,-0.66373 -1.96603,-0.6152 -2.44858,0.14318 -0.48194,0.75751 -0.73333,2.55103 -0.75467,5.38196 0,0 -0.0327,4.33654 -0.0327,4.33654 0,0 4.35398,2.58795 4.35398,2.58795 0,0 -0.0456,6.23957 -0.0456,6.23957 0,0 -4.35509,-2.62908 -4.35509,-2.62908 0,0 -0.30843,40.92114 -0.30843,40.92114 0,0 -3.72704,-2.47872 -3.72704,-2.47872"
         inkscape:connector-curvature="0" />
      <path
         id="path3676"
         d="m 246.46465,429.05307 c 0,0 3.81968,1.1922 3.81968,1.1922 0.19276,3.35392 0.7721,6.20708 1.74012,8.56243 0.98544,2.37207 2.3721,4.14723 4.16469,5.32459 1.81668,1.19318 3.17579,1.3205 4.07171,0.37548 0.89826,-0.97786 1.35491,-2.50699 1.36833,-4.58524 0.012,-1.86394 -0.37148,-3.58214 -1.14903,-5.15206 -0.54183,-1.08052 -1.89103,-2.87259 -4.03793,-5.36553 -2.87017,-3.33767 -4.84719,-5.88768 -5.94667,-7.66691 -1.08128,-1.7942 -1.8993,-3.82568 -2.45597,-6.09572 -0.54119,-2.28674 -0.80303,-4.59245 -0.78627,-6.91984 0.0153,-2.11796 0.25669,-3.93345 0.72469,-5.44816 0.48302,-1.53765 1.12853,-2.66509 1.93745,-3.38209 0.60808,-0.56866 1.4316,-0.86027 2.47213,-0.87408 1.05827,-0.0353 2.19002,0.30354 3.396,1.01839 1.82428,1.08147 3.42677,2.57943 4.80442,4.49544 1.39816,1.9329 2.42778,4.04798 3.08549,6.34283 0.65928,2.26923 1.10658,5.05898 1.34104,8.36831 0,0 -3.93498,-1.30965 -3.93498,-1.30965 -0.1613,-2.60573 -0.66572,-4.86818 -1.51169,-6.78511 -0.82908,-1.90296 -2.01211,-3.31622 -3.54556,-4.24034 -1.80214,-1.08596 -3.08681,-1.24118 -3.85989,-0.47117 -0.77146,0.76845 -1.16235,1.97686 -1.17391,3.62665 -0.007,1.05006 0.14407,2.09235 0.45452,3.12753 0.31055,1.06635 0.80269,2.09487 1.47721,3.08626 0.38829,0.54294 1.53561,1.95069 3.44979,4.23261 2.78949,3.29205 4.7444,5.79841 5.85003,7.50277 1.12436,1.68881 2.00304,3.68747 2.63416,5.99522 0.63237,2.3125 0.94024,4.88426 0.92265,7.71231 -0.0173,2.76736 -0.43134,5.12235 -1.24099,7.06139 -0.79291,1.91427 -1.93089,3.05649 -3.41056,3.42835 -1.47342,0.33983 -3.12755,-0.1039 -4.95957,-1.32524 -3.01245,-2.00831 -5.28496,-4.82452 -6.83171,-8.44857 -1.52498,-3.59708 -2.47979,-8.05614 -2.86938,-13.38305"
         inkscape:connector-curvature="0" />
      <path
         id="path3678"
         d="m 267.46509,458.46409 c 0,0 10.16276,-64.44628 10.16276,-64.44628 0,0 3.35985,1.90154 3.35985,1.90154 0,0 -10.22211,64.7453 -10.22211,64.7453 0,0 -3.3005,-2.20056 -3.3005,-2.20056"
         inkscape:connector-curvature="0" />
      <path
         id="path3680"
         d="m 287.73074,470.77961 c 0,0 -3.98413,-2.64971 -3.98413,-2.64971 0,0 0.36657,-69.26132 0.36657,-69.26132 0,0 4.28286,2.431 4.28286,2.431 0,0 -0.12574,24.80354 -0.12574,24.80354 1.84841,-3.43804 4.20286,-4.3171 7.07399,-2.61515 1.5995,0.94822 3.11282,2.48894 4.53901,4.62548 1.44866,2.12297 2.63509,4.62828 3.55675,7.51533 0.94101,2.87289 1.67339,6.11301 2.19582,9.71903 0.52331,3.61258 0.77764,7.29172 0.76223,11.03361 -0.0367,8.8888 -1.19889,15.02735 -3.47692,18.39523 -2.26525,3.34891 -4.9514,3.97742 -8.04813,1.91293 -3.05429,-2.0362 -5.42013,-6.12345 -7.11007,-12.2502 0,0 -0.0322,6.34023 -0.0322,6.34023 m 0.0826,-25.6991 c -0.0308,6.05748 0.36263,10.70405 1.18198,13.94323 1.3439,5.31484 3.18967,8.7503 5.54452,10.29694 1.92772,1.26611 3.60983,0.72174 5.04245,-1.64447 1.43781,-2.407 2.17299,-6.89882 2.20167,-13.46572 0.0293,-6.72399 -0.63702,-12.10528 -1.99483,-16.13506 -1.33586,-4.00333 -2.96003,-6.57643 -4.86901,-7.72687 -1.91517,-1.15407 -3.57055,-0.50907 -4.97003,1.92406 -1.39445,2.39298 -2.10547,6.6592 -2.13675,12.80789"
         inkscape:connector-curvature="0" />
      <path
         id="path3682"
         d="m 322.12463,485.58433 c 0,0 0.65936,8.40758 0.65936,8.40758 -1.33673,-0.35442 -2.52804,-0.88064 -3.57528,-1.5781 -1.70425,-1.13503 -3.01872,-2.52454 -3.94739,-4.16917 -0.92628,-1.6404 -1.57435,-3.40805 -1.9457,-5.30454 -0.37079,-1.92713 -0.54592,-5.5546 -0.52573,-10.88197 0,0 0.114,-30.08386 0.114,-30.08386 0,0 -3.36894,-2.03377 -3.36894,-2.03377 0,0 0.0272,-6.84805 0.0272,-6.84805 0,0 3.36786,2.00182 3.36786,2.00182 0,0 0.0489,-12.91135 0.0489,-12.91135 0,0 4.63253,-2.66881 4.63253,-2.66881 0,0 -0.065,18.3241 -0.065,18.3241 0,0 4.72675,2.80952 4.72675,2.80952 0,0 -0.023,6.96866 -0.023,6.96866 0,0 -4.72829,-2.85438 -4.72829,-2.85438 0,0 -0.10923,30.77205 -0.10923,30.77205 -0.009,2.54809 0.0632,4.23726 0.21665,5.06728 0.17091,0.8418 0.43796,1.59732 0.80137,2.26677 0.38115,0.6815 0.92028,1.25067 1.61806,1.70755 0.52419,0.34326 1.21588,0.67931 2.07599,1.00867"
         inkscape:connector-curvature="0" />
      <path
         id="path3684"
         d="m 326.68371,496.68588 c 0,0 0.16352,-53.31935 0.16352,-53.31935 0,0 4.33405,2.57612 4.33405,2.57612 0,0 -0.0231,8.11168 -0.0231,8.11168 1.12479,-3.12783 2.15869,-5.02087 3.10122,-5.67423 0.96285,-0.64401 2.01732,-0.62746 3.16426,0.0524 1.66273,0.98571 3.35799,2.97819 5.08643,5.98483 0,0 -1.73463,7.50163 -1.73463,7.50163 -1.20956,-2.06252 -2.41678,-3.45673 -3.62177,-4.18598 -1.07402,-0.64988 -2.03784,-0.62407 -2.89238,0.075 -0.85268,0.66393 -1.46157,1.94671 -1.82782,3.84834 -0.54904,2.90043 -0.82874,6.26858 -0.83955,10.10792 0,0 -0.0793,28.13461 -0.0793,28.13461 0,0 -4.83103,-3.21295 -4.83103,-3.21295"
         inkscape:connector-curvature="0" />
      <path
         id="path3686"
         d="m 346.63844,509.95707 c 0,0 0.0968,-47.55946 0.0968,-47.55946 0,0 -4.43131,-2.6751 -4.43131,-2.6751 0,0 0.0162,-7.15908 0.0162,-7.15908 0,0 4.42975,2.633 4.42975,2.633 0,0 0.0118,-5.80848 0.0118,-5.80848 0.007,-3.66486 0.19039,-6.28429 0.54899,-7.86025 0.49107,-2.11858 1.34725,-3.56796 2.57091,-4.34826 1.24623,-0.8062 2.9874,-0.57829 5.2303,0.69102 1.45137,0.82149 3.06136,2.04536 4.83196,3.67489 0,0 -0.79224,7.74699 -0.79224,7.74699 -1.07705,-0.96968 -2.09389,-1.73012 -3.05099,-2.28234 -1.56464,-0.90254 -2.66858,-0.93449 -3.31577,-0.0995 -0.64623,0.83385 -0.9719,2.90502 -0.97777,6.21534 0,0 -0.009,5.07119 -0.009,5.07119 0,0 5.92043,3.51903 5.92043,3.51903 0,0 -0.0107,7.30549 -0.0107,7.30549 0,0 -5.92257,-3.57534 -5.92257,-3.57534 0,0 -0.0849,47.87735 -0.0849,47.87735 0,0 -5.0619,-3.36649 -5.0619,-3.36649"
         inkscape:connector-curvature="0" />
      <path
         id="path3688"
         d="m 359.60073,501.90418 c 0,0 5.20059,1.86777 5.20059,1.86777 0.29001,3.96114 1.10193,7.38322 2.43911,10.27061 1.36176,2.91073 3.2661,5.17238 5.72054,6.78444 2.48967,1.63519 4.34728,1.95881 5.56379,0.96109 1.21993,-1.0365 1.83154,-2.77869 1.83229,-5.22389 6.2e-4,-2.19296 -0.5384,-4.26389 -1.61481,-6.20909 -0.7497,-1.33918 -2.60804,-3.61528 -5.55946,-6.8122 -3.94075,-4.27425 -6.65395,-7.50944 -8.16465,-9.73106 -1.48522,-2.23573 -2.61386,-4.7171 -3.38893,-7.44614 -0.75395,-2.74593 -1.12852,-5.48045 -1.12491,-8.2074 0.003,-2.48146 0.31617,-4.58205 0.93929,-6.30404 0.64345,-1.7475 1.51123,-2.99566 2.60481,-3.74404 0.82208,-0.59757 1.93976,-0.84564 3.35554,-0.74295 1.44048,0.0796 2.98492,0.60687 4.63457,1.58472 2.49729,1.48044 4.69744,3.42626 6.59564,5.83924 1.92772,2.43694 3.35406,5.04673 4.27363,7.82559 0.92183,2.74989 1.55812,6.08842 1.90744,10.01415 0,0 -5.39591,-2.01583 -5.39591,-2.01583 -0.24253,-3.08522 -0.95109,-5.80694 -2.12313,-8.16184 -1.14834,-2.33544 -2.7751,-4.13563 -4.87465,-5.40091 -2.46541,-1.48565 -4.2164,-1.81727 -5.26239,-1.00324 -1.04343,0.8121 -1.56519,2.18465 -1.56724,4.11944 -10e-4,1.23148 0.21335,2.47259 0.64434,3.72428 0.43146,1.28852 1.10985,2.55443 2.03645,3.7988 0.53331,0.68393 2.10812,2.47474 4.73703,5.38635 3.83534,4.20888 6.52812,7.39657 8.05468,9.53851 1.55295,2.12718 2.77297,4.59004 3.65706,7.38727 0.88613,2.80397 1.33003,5.87348 1.33006,9.20426 -3e-5,3.25947 -0.54743,5.98195 -1.64026,8.16269 -1.06972,2.15296 -2.61798,3.35081 -4.63932,3.59644 -2.01164,0.20856 -4.27524,-0.52848 -6.78627,-2.2025 -4.12399,-2.74933 -7.24172,-6.34882 -9.37583,-10.80056 -2.10254,-4.4137 -3.43626,-9.76409 -4.0091,-16.05996"
         inkscape:connector-curvature="0" />
    </g>
  </g>
  <g
     style="display:inline"
     inkscape:groupmode="layer"
     id="layer9"
     inkscape:label="GenericRootfs">
    <g
       inkscape:corner7="0.22429094 : -0.062018081 : 0.53531208 : 1"
       inkscape:corner0="0.4922944 : 0.05733945 : 0 : 1"
       inkscape:perspectiveID="#perspective3054-6"
       id="g4111-4"
       style="fill:#aad3d3;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       sodipodi:type="inkscape:box3d">
      <path
         d="M 133.79121,312.6368 252.25105,379.121 540.75728,268.41872 415.43828,234.11946 z"
         inkscape:box3dsidetype="13"
         style="fill:#afafde;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4121-8"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 133.79121,232.65423 0,79.98257 281.64707,-78.51734 0,-58.86622 z"
         inkscape:box3dsidetype="6"
         style="fill:#353564;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4113-3"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 415.43828,175.25324 125.319,25.33341 0,67.83207 -125.319,-34.29926 z"
         inkscape:box3dsidetype="11"
         style="fill:#e9e9ff;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4123-4"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 133.79121,232.65423 118.45984,48.97562 288.50623,-81.0432 -125.319,-25.33341 z"
         inkscape:box3dsidetype="5"
         style="fill:#00b9f5;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4115-0"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 252.25105,281.62985 0,97.49115 288.50623,-110.70228 0,-67.83207 z"
         inkscape:box3dsidetype="14"
         style="fill:#008bb8;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4119-1"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 133.79121,232.65423 118.45984,48.97562 0,97.49115 -118.45984,-66.4842 z"
         inkscape:box3dsidetype="3"
         style="fill:#00ade5;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4117-3"
         sodipodi:type="inkscape:box3dside" />
    </g>
    <g
       transform="matrix(0.61031919,0,0,0.61031919,129.70332,83.586066)"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
       id="text9988-4">
      <path
         inkscape:connector-curvature="0"
         d="m 188.59801,239.37973 c 0,0 10.80142,4.18005 10.80142,4.18005 -0.76616,-3.05917 -0.73057,-5.17362 0.0851,-6.39339 0.84106,-1.21417 2.36138,-2.05944 4.56041,-2.54399 3.36438,-0.74121 8.67469,-0.70434 15.98654,0.11115 4.98595,0.55071 8.9953,1.36554 12.03184,2.45026 2.59214,0.92602 4.30231,1.84095 5.11951,2.74446 0.79707,0.88127 0.47618,1.49409 -0.97048,1.83415 -1.28207,0.30141 -3.77637,0.20361 -7.46885,-0.2925 -3.67698,-0.49394 -6.07112,-0.61056 -7.19576,-0.35091 -1.46934,0.3393 -2.09539,1.44179 -1.87218,3.32952 0.26187,1.91063 1.40513,4.65856 3.4729,8.3019 0,0 30.03524,11.62336 30.03524,11.62336 0,0 15.65393,-4.11957 15.65393,-4.11957 2.59381,-0.68257 5.41952,-0.79884 8.49618,-0.35048 3.05257,0.41529 6.19038,1.21068 9.42837,2.39338 3.19708,1.16781 5.29058,2.28918 6.26454,3.36278 0.94452,1.04629 0.1181,1.93489 -2.49634,2.66251 0,0 -34.13326,9.49952 -34.13326,9.49952 -2.83088,0.78785 -5.87094,0.94375 -9.09895,0.46537 -3.24862,-0.51643 -6.4804,-1.44072 -9.68065,-2.76446 -3.10024,-1.28236 -4.99727,-2.47227 -5.70886,-3.572 -0.73485,-1.12824 0.30694,-2.05895 3.10831,-2.79621 0,0 6.8587,-1.80497 6.8587,-1.80497 0,0 -46.80164,-18.64214 -46.80164,-18.64214 0,0 -4.03596,0.93784 -4.03596,0.93784 -2.70867,0.62944 -5.46556,0.75303 -8.25329,0.36912 -2.79889,-0.41446 -5.49653,-1.1558 -8.08261,-2.21792 -2.50769,-1.02993 -3.9575,-1.9862 -4.36329,-2.87045 -0.42087,-0.90793 0.71271,-1.65692 3.38783,-2.24995 0,0 14.87133,-3.29643 14.87133,-3.29643"
         id="path9995-1" />
      <path
         inkscape:connector-curvature="0"
         d="m 318.69753,233.65347 c 7.81088,2.41917 14.56844,5.07064 20.25204,7.96924 5.7885,2.94264 9.1431,5.72809 9.96615,8.34264 0.79838,2.64066 -1.00301,4.6031 -5.45216,5.85289 -4.46386,1.25393 -11.15148,1.66904 -20.00626,1.23659 -8.898,-0.4557 -18.38088,-1.74499 -28.34354,-3.84206 -9.79574,-2.06193 -18.6433,-4.48749 -26.52662,-7.25379 -7.82927,-2.74735 -14.20756,-5.64394 -19.17016,-8.67619 -4.89257,-2.97384 -7.23458,-5.57586 -7.12327,-7.82898 0.14059,-2.21435 2.37339,-3.78147 6.67139,-4.72848 4.29012,-0.94517 10.38008,-1.19953 18.3213,-0.76824 7.94217,0.40759 16.43086,1.49423 25.55556,3.2805 9.21274,1.79636 17.82485,3.92867 25.85557,6.41588 m -9.12553,2.31728 c -6.4118,-2.03184 -13.27849,-3.60974 -20.62972,-4.75217 -9.83924,-1.51489 -17.12877,-1.70611 -22.00563,-0.58005 -4.33293,1.00051 -5.30614,2.74024 -2.84855,5.25406 2.51376,2.57126 7.47645,5.13939 14.96669,7.70184 6.2706,2.14521 13.7825,3.8011 22.51055,4.94615 8.74133,1.13263 15.33249,1.12147 19.68005,-0.0328 4.33631,-1.15122 5.04492,-3.04688 2.20597,-5.65133 -2.84427,-2.56876 -7.48377,-4.85895 -13.87936,-6.8857"
         id="path9997-2" />
      <path
         inkscape:connector-curvature="0"
         d="m 370.18311,220.89138 c 7.87167,2.1472 14.79353,4.49711 20.75003,7.06196 6.05519,2.59988 9.78662,5.05673 11.1054,7.35908 1.29936,2.32214 0.0231,4.04525 -3.87749,5.14096 -3.91087,1.09859 -10.07589,1.46092 -18.44725,1.07985 -8.41856,-0.40157 -17.5687,-1.53459 -27.35306,-3.37787 -9.6307,-1.81431 -18.46587,-3.95046 -26.48622,-6.3895 -7.97675,-2.42578 -14.6373,-4.98669 -20.00949,-7.67132 -5.30105,-2.63705 -8.1214,-4.94735 -8.55222,-6.94998 -0.39449,-1.97048 1.33688,-3.36597 5.164,-4.20923 3.82211,-0.84206 9.50591,-1.06776 17.09603,-0.68142 7.58396,0.3651 15.83663,1.33558 24.84202,2.92873 9.08222,1.6007 17.66471,3.49833 25.76825,5.70874 m -8.07385,2.05333 c -6.47949,-1.80327 -13.29219,-3.20538 -20.46816,-4.22173 -9.60797,-1.34865 -16.51634,-1.52019 -20.848,-0.52003 -3.84631,0.88815 -4.35747,2.43275 -1.46283,4.66292 2.95687,2.27808 8.20823,4.55087 15.82272,6.81614 6.36681,1.89411 13.7807,3.35532 22.21491,4.3658 8.43901,0.99896 14.61124,0.99061 18.43477,-0.0245 3.81601,-1.01309 4.07248,-2.68403 0.84721,-4.98329 -3.22688,-2.27084 -8.08432,-4.29842 -14.54062,-6.09528"
         id="path9999-5" />
      <path
         inkscape:connector-curvature="0"
         d="m 369.35032,208.21091 c 0,0 40.18029,10.31554 40.18029,10.31554 4.54941,1.16799 7.90985,1.85733 10.04607,2.05851 3.35439,0.31973 6.36087,0.12804 8.99839,-0.57223 3.80233,-1.00946 4.92338,-2.51808 3.41338,-4.50415 -0.59265,-0.75666 -0.54527,-1.22149 0.13796,-1.39847 0.94028,-0.24357 2.78416,-0.20123 5.53983,0.12736 2.78771,0.32353 5.69044,0.85075 8.71788,1.58481 2.83553,0.68756 4.92392,1.38477 6.25775,2.09178 2.24812,1.1379 3.13828,2.53669 2.64599,4.20684 -0.55053,1.67203 -2.02066,2.85282 -4.41529,3.52548 -4.66368,1.31006 -11.25115,1.51999 -19.66772,0.62294 -8.39599,-0.91541 -16.83231,-2.48591 -25.2301,-4.68294 0,0 -44.30445,-11.59087 -44.30445,-11.59087 0,0 -2.80728,0.65233 -2.80728,0.65233 -1.88196,0.43734 -4.10034,0.52199 -6.64393,0.25302 -2.57229,-0.29043 -5.25643,-0.80912 -8.04218,-1.5525 -2.70522,-0.72188 -4.48808,-1.39261 -5.35902,-2.01314 -0.89888,-0.63794 -0.40471,-1.16405 1.47199,-1.58009 0,0 2.79988,-0.62063 2.79988,-0.62063 0,0 -16.0131,-4.18933 -16.0131,-4.18933 -4.15526,-1.08708 -6.72467,-1.9241 -7.73865,-2.51744 -1.03741,-0.60902 -0.98184,-1.03024 0.15945,-1.26617 1.11384,-0.23015 2.89308,-0.19004 5.34585,0.12065 2.43006,0.29236 5.71138,0.96864 9.87337,2.03715 0,0 16.03516,4.11673 16.03516,4.11673 0,0 13.81074,-3.06134 13.81074,-3.06134 1.7648,-0.39115 3.87091,-0.45617 6.32889,-0.19576 2.42845,0.24118 5.0259,0.70062 7.80255,1.38148 2.73549,0.67079 4.62059,1.3128 5.64569,1.9254 0.99363,0.59583 0.6121,1.09974 -1.15489,1.51031 0,0 -13.8345,3.21473 -13.8345,3.21473"
         id="path10001-8" />
      <path
         inkscape:connector-curvature="0"
         d="m 414.19529,197.79027 c 0,0 49.09089,11.29188 49.09089,11.29188 0,0 9.51455,-2.5039 9.51455,-2.5039 1.5833,-0.41664 3.71061,-0.48612 6.39269,-0.20922 2.64034,0.25642 5.58449,0.74526 8.845,1.46995 3.21279,0.71412 5.53419,1.39784 6.95389,2.0505 1.37743,0.63488 1.28518,1.1721 -0.28855,1.61008 0,0 -20.36165,5.66678 -20.36165,5.66678 -1.67346,0.46574 -3.90405,0.55615 -6.68041,0.27017 -2.81866,-0.30882 -5.88811,-0.86047 -9.19551,-1.6511 -3.21122,-0.76763 -5.44315,-1.48078 -6.70743,-2.1405 -1.30329,-0.67814 -1.1083,-1.23745 0.57268,-1.67985 0,0 4.12495,-1.08555 4.12495,-1.08555 0,0 -49.13122,-11.49283 -49.13122,-11.49283 0,0 -3.32684,0.77306 -3.32684,0.77306 -1.68527,0.39163 -3.76431,0.46707 -6.22722,0.22551 -2.49509,-0.26082 -5.14605,-0.72637 -7.94301,-1.39362 -2.71716,-0.64821 -4.55136,-1.25057 -5.51217,-1.80789 -0.99143,-0.57315 -0.63973,-1.04575 1.04522,-1.41928 0,0 3.32676,-0.73743 3.32676,-0.73743 0,0 -6.86908,-1.60682 -6.86908,-1.60682 -7.72281,-1.80653 -12.8825,-3.51276 -15.55532,-5.12306 -2.65764,-1.59876 -1.86099,-2.81696 2.32262,-3.66964 1.84848,-0.37669 4.40558,-0.71108 7.66872,-1.00365 3.21822,-0.30802 5.92136,-0.35936 8.12214,-0.15455 2.22716,0.20095 4.56577,0.57073 7.02338,1.11149 2.64213,0.58139 4.52279,1.1234 5.63365,1.62529 1.06013,0.49218 1.15601,0.83283 0.28178,1.02017 -0.40571,0.087 -1.21582,0.17299 -2.43036,0.25814 -4.16009,0.26467 -7.30795,0.6235 -9.44187,1.07766 -2.2328,0.47529 -2.90043,1.00733 -1.98928,1.59704 0.88196,0.57571 2.62421,1.16376 5.23535,1.76437 0,0 6.87026,1.58029 6.87026,1.58029 0,0 10.36792,-2.29819 10.36792,-2.29819 1.59462,-0.35343 3.58152,-0.41186 5.9701,-0.1759 2.35624,0.21854 4.91761,0.6344 7.69391,1.25031 2.73418,0.6066 4.65441,1.18684 5.75196,1.74017 1.06391,0.53802 0.80425,0.99268 -0.78855,1.36278 0,0 -10.35995,2.40734 -10.35995,2.40734"
         id="path10003-9" />
      <path
         inkscape:connector-curvature="0"
         d="m 462.86528,187.90449 c -2.90569,-0.16593 -5.36269,-0.21815 -7.37595,-0.15683 -2.07622,0.0486 -3.71307,0.21108 -4.91243,0.48799 -2.39002,0.55188 -3.09951,1.24612 -2.11015,2.08594 0.42438,0.3709 1.25961,0.68923 2.50703,0.95438 1.43917,0.30592 3.27869,0.50507 5.51653,0.59672 1.65829,0.0597 4.08262,-0.0775 7.26301,-0.41077 5.84081,-0.60338 10.42557,-0.90895 13.78419,-0.91984 4.42293,-0.011 9.54763,0.32933 15.40812,1.02483 5.9049,0.7008 11.57911,1.60001 17.03778,2.70347 7.51845,1.51988 12.98207,3.05778 16.33947,4.61419 4.979,2.29033 5.3772,4.05686 1.0617,5.26911 -1.74579,0.49041 -3.95512,0.82442 -6.62498,1.0004 -2.58257,0.18616 -5.59293,0.22359 -9.02452,0.11209 0.63516,0.28397 1.03505,0.52794 1.19856,0.73158 0.16356,0.20401 0.064,0.35687 -0.30016,0.45818 -0.97288,0.27068 -2.879,0.24588 -5.70939,-0.0742 -2.87272,-0.34021 -6.9451,-1.08148 -12.17878,-2.2148 0,0 -7.21961,-1.56336 -7.21961,-1.56336 -5.09134,-1.1025 -8.37985,-1.95133 -9.90167,-2.55303 -1.5588,-0.61762 -1.8621,-1.04479 -0.91937,-1.28407 0.75656,-0.19198 2.09291,-0.20186 4.01286,-0.0297 1.85597,0.1581 4.61964,0.56195 8.30756,1.21468 3.69149,0.33625 6.93021,0.48413 9.70546,0.44275 2.70434,-0.056 4.90971,-0.31064 6.61127,-0.76242 2.77196,-0.73591 3.38675,-1.61784 1.87353,-2.64169 -0.78919,-0.49759 -2.00028,-0.91325 -3.63224,-1.24812 -2.70691,-0.55542 -5.4427,-0.87941 -8.21759,-0.97439 -2.77232,-0.0949 -6.38748,0.14627 -10.86946,0.72618 -6.6715,0.88095 -13.31679,1.01463 -19.85457,0.39749 -6.43141,-0.5993 -13.04559,-1.63447 -19.79212,-3.09094 -6.82592,-1.4736 -11.45826,-2.90095 -13.94953,-4.28347 -3.37925,-1.85317 -2.96738,-3.22257 1.14981,-4.12973 1.42276,-0.31344 3.19198,-0.52707 5.30887,-0.64174 2.07491,-0.13099 4.5307,-0.15741 7.37162,-0.0794 -0.45722,-0.25351 -0.73544,-0.45733 -0.83571,-0.61184 -0.0802,-0.1585 0.0166,-0.26808 0.29048,-0.32883 0.82077,-0.1819 2.44849,-0.14089 4.89001,0.12332 2.38932,0.25295 5.8038,0.82932 10.27286,1.73557 0,0 4.5771,0.92817 4.5771,0.92817 4.12998,0.83752 6.80238,1.44722 7.99164,1.82436 2.2679,0.73357 2.87579,1.23007 1.80718,1.48552 -0.72062,0.17229 -2.08136,0.17497 -4.07847,0.008 -1.99347,-0.16663 -4.25567,-0.47572 -6.77994,-0.92582"
         id="path10005-9" />
    </g>
    <g
       transform="matrix(0.92024041,0,0,0.92024041,31.625011,23.667711)"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Sans"
       id="text11583">
      <path
         inkscape:connector-curvature="0"
         d="m 254.05165,365.60408 c 0,0 34.35431,-1.75104 34.35431,-1.75104 0.56363,-0.0317 0.84519,0.0983 0.84519,0.39005 0,0.18368 -0.0989,0.38365 -0.29678,0.6 -0.18273,0.1998 -0.38839,0.34357 -0.61701,0.43129 -0.18298,0.0702 -0.43469,0.1127 -0.75526,0.12744 0,0 -34.41756,1.82791 -34.41756,1.82791 -0.37832,0.017 -0.62523,-0.009 -0.74053,-0.079 -0.11527,-0.0696 -0.17293,-0.18314 -0.17296,-0.34054 3e-5,-0.19113 0.10711,-0.3938 0.32116,-0.60796 0.19756,-0.2192 0.41967,-0.37441 0.66632,-0.46568 0.18084,-0.0669 0.45194,-0.11108 0.81312,-0.13252"
         id="path11602" />
      <path
         inkscape:connector-curvature="0"
         d="m 255.55102,343.84068 c 0,0 27.88938,-9.69758 27.88938,-9.69758 0,0 0,-1.82666 0,-1.82666 0,-0.33704 0.0924,-0.60815 0.27728,-0.81326 0.16937,-0.19968 0.40023,-0.3499 0.69247,-0.45066 0.2767,-0.0954 0.50715,-0.10421 0.69143,-0.0267 0.18421,0.0775 0.27628,0.28447 0.27628,0.62079 0,0 0,3.20618 0,3.20618 0,0 -3.85993,1.34799 -3.85993,1.34799 3.08439,0.5083 4.61884,1.98077 4.61884,4.41998 0,1.23589 -0.4598,2.5878 -1.38077,4.05795 -0.93823,1.46783 -2.27197,2.8472 -4.00467,4.13951 -1.73925,1.28627 -3.53975,2.26892 -5.4022,2.94633 -1.8857,0.68587 -3.70797,1.01828 -5.46602,0.99507 -1.78062,-0.0286 -3.16051,-0.44253 -4.13609,-1.24301 -0.97758,-0.81323 -1.46715,-1.85874 -1.46717,-3.13526 2e-5,-2.44202 1.60325,-5.05828 4.79328,-7.8345 0,0 -11.44072,3.99542 -11.44072,3.99542 0,0 0,1.87805 0,1.87805 3e-5,0.34655 -0.0977,0.62688 -0.29329,0.84104 -0.1956,0.21427 -0.4484,0.37601 -0.7585,0.48523 -0.29391,0.10354 -0.539,0.1171 -0.7352,0.0406 -0.19621,-0.0765 -0.29437,-0.28849 -0.2944,-0.6358 0,0 0,-3.31067 0,-3.31067 m 19.79811,-5.48558 c -2.51598,0.87866 -4.64951,2.21904 -6.39524,4.02263 -1.75225,1.81039 -2.63086,3.54328 -2.63088,5.19358 2e-5,1.66139 0.87863,2.77473 2.63088,3.33845 1.74573,0.56159 3.87926,0.38406 6.39524,-0.52729 2.4868,-0.90079 4.58775,-2.25119 6.30804,-4.04978 1.69847,-1.78636 2.54535,-3.49185 2.54535,-5.12145 0,-1.61872 -0.84688,-2.71626 -2.54535,-3.29425 -1.72029,-0.57467 -3.82124,-0.43033 -6.30804,0.43811"
         id="path11604" />
      <path
         inkscape:connector-curvature="0"
         d="m 275.77236,315.9068 c 0,0 0,14.07759 0,14.07759 2.54686,-1.10732 4.59132,-2.54443 6.13998,-4.31143 1.52806,-1.76674 2.29018,-3.56591 2.29018,-5.40192 0,-1.0212 -0.2385,-2.01245 -0.7159,-2.9745 -0.47788,-0.96303 -1.11069,-1.66976 -1.89907,-2.12003 -0.23212,-0.13128 -0.34823,-0.27325 -0.34824,-0.42585 1e-5,-0.17436 0.10064,-0.3597 0.30183,-0.55594 0.18564,-0.19108 0.40986,-0.32934 0.67259,-0.41476 0.26258,-0.0853 0.5173,-0.0811 0.76416,0.0127 0.77059,0.27102 1.49377,0.9639 2.16975,2.07776 0.65966,1.10646 0.98913,2.35832 0.98913,3.7568 0,2.34166 -1.08125,4.66345 -3.25144,6.97357 -2.196,2.31547 -4.86226,4.01213 -8.00691,5.08712 -2.88171,0.98511 -5.36835,1.09009 -7.45342,0.30771 -2.09439,-0.79698 -3.14513,-2.30681 -3.14515,-4.52684 2e-5,-2.28661 1.0828,-4.52434 3.24085,-6.70559 2.13228,-2.16603 4.88653,-3.7843 8.25166,-4.85636 m -2.00199,2.0518 c -2.19245,0.99146 -3.98247,2.30495 -5.36535,3.94059 -1.38696,1.62946 -2.08199,3.26008 -2.08201,4.88823 2e-5,1.62815 0.68707,2.79791 2.05814,3.50771 1.36707,0.70771 3.16515,0.82466 5.38922,0.35413 0,0 0,-12.69066 0,-12.69066"
         id="path11606" />
      <path
         inkscape:connector-curvature="0"
         d="m 285.37786,298.99901 c 0,0 0,2.31105 0,2.31105 0,0 -18.33587,11.45873 -18.33587,11.45873 0,0 0,1.42769 0,1.42769 2e-5,0.33202 -0.0958,0.6007 -0.28746,0.80612 -0.19172,0.2055 -0.4395,0.35707 -0.74343,0.4547 -0.28808,0.0925 -0.52829,0.0977 -0.72057,0.0153 -0.19233,-0.0824 -0.28853,-0.29004 -0.28855,-0.62278 0,0 0,-5.24075 0,-5.24075 2e-5,-0.33275 0.0962,-0.60143 0.28855,-0.80598 0.19228,-0.20446 0.4405,-0.35436 0.74457,-0.44974 0.28793,-0.0903 0.52771,-0.0936 0.71943,-0.01 0.19168,0.0837 0.28748,0.2916 0.28746,0.62362 0,0 0,2.30754 0,2.30754 0,0 16.39841,-10.22344 16.39841,-10.22344 0,0 0,-0.60344 0,-0.60344 0,0 -16.39841,0.086 -16.39841,0.086 0,0 0,2.32415 0,2.32415 2e-5,0.33203 -0.0958,0.59954 -0.28746,0.80262 -0.19172,0.20318 -0.4395,0.35174 -0.74343,0.44568 -0.28808,0.089 -0.52829,0.0913 -0.72057,0.006 -0.19233,-0.0848 -0.28853,-0.29353 -0.28855,-0.62628 0,0 0,-5.2574 0,-5.2574 2e-5,-0.34382 0.0962,-0.61133 0.28855,-0.80246 0.19228,-0.20211 0.4405,-0.34901 0.74457,-0.44069 0.28793,-0.0868 0.52771,-0.0871 0.71943,-0.001 0.19168,0.075 0.28748,0.28404 0.28746,0.62711 0,0 0,1.4111 0,1.4111 0,0 18.33587,-0.0241 18.33587,-0.0241"
         id="path11608" />
      <path
         inkscape:connector-curvature="0"
         d="m 313.14156,343.73148 c 0,0 30.26747,-0.89947 30.26747,-0.89947 0.49772,-0.0176 0.74637,0.11073 0.74637,0.38486 0,0.17261 -0.0873,0.35838 -0.26208,0.55741 -0.16138,0.18378 -0.34299,0.31442 -0.54487,0.39188 -0.16157,0.062 -0.38383,0.0964 -0.66688,0.10333 0,0 -30.31978,0.96684 -30.31978,0.96684 -0.3325,0.008 -0.54951,-0.0224 -0.65085,-0.0901 -0.1013,-0.0678 -0.15197,-0.17545 -0.152,-0.32301 3e-5,-0.17918 0.0941,-0.36685 0.28225,-0.56297 0.17363,-0.20121 0.36885,-0.3419 0.58564,-0.42213 0.15895,-0.0588 0.39724,-0.0944 0.71473,-0.10662"
         id="path11610" />
      <path
         inkscape:connector-curvature="0"
         d="m 322.77432,331.83011 c 0,0 3.22768,-1.1641 3.22768,-1.1641 -1.27696,-0.3182 -2.24067,-0.80828 -2.88903,-1.47027 -0.64929,-0.66296 -0.9743,-1.60405 -0.97432,-2.8225 2e-5,-1.29136 0.40977,-2.62776 1.22813,-4.00727 0.81688,-1.37693 1.95511,-2.61452 3.41221,-3.71194 1.43833,-1.09927 2.94835,-1.92196 4.52929,-2.46932 2.49833,-0.86491 4.6264,-0.93537 6.38954,-0.21728 1.7424,0.70972 2.61095,2.02729 2.61095,3.95484 0,2.29474 -1.2423,4.602 -3.73771,6.93188 0,0 10.25658,-3.69916 10.25658,-3.69916 0,0 0,-3.09717 0,-3.09717 -10e-6,-0.30363 0.0734,-0.54742 0.22027,-0.73131 0.16012,-0.18856 0.36685,-0.32792 0.62013,-0.41811 0.23981,-0.0854 0.43955,-0.0908 0.59928,-0.0163 0.15966,0.0745 0.23947,0.2632 0.23947,0.56624 0,0 0,6.0761 0,6.0761 0,0.30304 -0.0798,0.54933 -0.23947,0.73894 -0.14642,0.18481 -0.34615,0.32344 -0.59928,0.41587 -0.25328,0.0925 -0.46001,0.10225 -0.62013,0.0291 -0.14684,-0.078 -0.22028,-0.26881 -0.22027,-0.57246 0,0 0,-1.71559 0,-1.71559 0,0 -22.25724,8.06059 -22.25724,8.06059 0,0 0,1.76032 0,1.76032 3e-5,0.31155 -0.0843,0.5656 -0.25311,0.76222 -0.16882,0.19668 -0.38698,0.34388 -0.65457,0.4416 -0.25363,0.0926 -0.46511,0.10225 -0.63439,0.0288 -0.16931,-0.0735 -0.254,-0.26634 -0.25401,-0.57853 0,0 0,-3.07517 0,-3.07517 m 8.53396,-14.33144 c -2.01183,0.69956 -3.73971,1.8489 -5.18019,3.44956 -1.45926,1.60052 -2.19074,3.19263 -2.19075,4.77233 10e-6,1.59012 0.73149,2.67448 2.19075,3.25164 1.45445,0.57524 3.18226,0.50062 5.18019,-0.21996 2.00257,-0.72224 3.71467,-1.8836 5.13968,-3.48257 1.42034,-1.59371 2.12875,-3.17039 2.12875,-4.73395 0,-1.5431 -0.70159,-2.61012 -2.10823,-3.2025 -1.42494,-0.58951 -3.14385,-0.53566 -5.1602,0.16545"
         id="path11612" />
      <path
         inkscape:connector-curvature="0"
         d="m 322.77432,309.28933 c 0,0 4.466,-1.49604 4.466,-1.49604 -2.07284,-1.00766 -3.40857,-1.83609 -4.00042,-2.48234 -0.60674,-0.65286 -0.91044,-1.33884 -0.91046,-2.05728 2e-5,-0.78088 0.36019,-1.62201 1.07964,-2.52227 0.70421,-0.90459 1.23865,-1.41561 1.60394,-1.53409 0.26677,-0.0865 0.49127,-0.0918 0.67359,-0.0162 0.16824,0.0699 0.25234,0.20327 0.25233,0.40027 10e-6,0.1037 -0.021,0.19867 -0.0631,0.28493 -0.0561,0.0909 -0.2173,0.27818 -0.48383,0.56209 -0.49137,0.52348 -0.82864,0.95029 -1.01146,1.28006 -0.18285,0.32993 -0.27432,0.62483 -0.27433,0.88459 10e-6,0.57151 0.30951,1.16058 0.92783,1.76659 0.61748,0.5948 2.12241,1.48399 4.50565,2.66339 0,0 9.48595,-3.17764 9.48595,-3.17764 0,0 0,-5.69941 0,-5.69941 0,-0.31662 0.0816,-0.56805 0.24469,-0.75427 0.14947,-0.18168 0.3532,-0.31473 0.61114,-0.39918 0.2442,-0.0799 0.44761,-0.0802 0.61026,-9.4e-4 0.16259,0.0793 0.24386,0.27691 0.24386,0.5929 0,0 0,10.07648 0,10.07648 0,0.30581 -0.0745,0.55036 -0.22353,0.73369 -0.16265,0.18801 -0.36605,0.32368 -0.61024,0.40696 -0.23075,0.0787 -0.42089,0.0823 -0.57034,0.0107 -0.16308,-0.0772 -0.24465,-0.27406 -0.24465,-0.59068 0,0 0,-3.10993 0,-3.10993 0,0 -14.51647,4.88446 -14.51647,4.88446 0,0 0,2.41459 0,2.41459 3e-5,0.31156 -0.0843,0.56351 -0.25311,0.75592 -0.16882,0.19247 -0.38698,0.33424 -0.65457,0.42527 -0.25363,0.0863 -0.46511,0.0959 -0.63439,0.0286 -0.16931,-0.0777 -0.254,-0.27786 -0.25401,-0.60048 0,0 0,-3.73077 0,-3.73077"
         id="path11614" />
      <path
         inkscape:connector-curvature="0"
         d="m 331.88928,278.46069 c 2.64617,-0.80181 4.8937,-0.77623 6.74868,0.0703 1.84704,0.83275 2.76758,2.23581 2.76758,4.21183 0,1.99643 -0.92054,3.98292 -2.76758,5.96587 -1.86865,1.99586 -4.11625,3.41592 -6.74868,4.25753 -2.66238,0.85118 -4.94945,0.87291 -6.8552,0.0586 -1.92815,-0.81342 -2.89541,-2.24206 -2.89543,-4.28324 2e-5,-2.02034 0.96023,-4.03876 2.87437,-6.04866 1.90583,-2.01148 4.19997,-3.42129 6.87626,-4.23225 m 0,1.31306 c -2.18973,0.66684 -4.06249,1.82173 -5.61412,3.46652 -1.55715,1.64029 -2.33781,3.29405 -2.33782,4.9569 10e-6,1.66286 0.7877,2.83345 2.35882,3.50996 1.55156,0.66817 3.41729,0.65387 5.59312,-0.0385 2.15125,-0.68456 3.99062,-1.84394 5.52202,-3.47635 1.52598,-1.63685 2.28696,-3.26958 2.28696,-4.90255 0,-1.63295 -0.75418,-2.78878 -2.26649,-3.4693 -1.53133,-0.68895 -3.37749,-0.70594 -5.54249,-0.0467"
         id="path11616" />
      <path
         inkscape:connector-curvature="0"
         d="m 324.5704,263.40235 c 0,0 -0.59083,0.16738 -0.59083,0.16738 -0.43659,0.12369 -0.74671,0.14914 -0.93008,0.0762 -0.18341,-0.0729 -0.27516,-0.20308 -0.27517,-0.39041 1e-5,-0.19771 0.0917,-0.38488 0.27517,-0.5615 0.18337,-0.17651 0.49349,-0.3263 0.93008,-0.44933 0,0 3.9937,-1.12534 3.9937,-1.12534 0.43222,-0.11147 0.73869,-0.13059 0.91967,-0.0576 0.18093,0.0626 0.27137,0.19209 0.27136,0.38837 10e-6,0.17563 -0.0765,0.34708 -0.2296,0.51438 -0.16703,0.16098 -0.43864,0.3051 -0.81498,0.43238 -0.99118,0.3429 -1.93559,1.09775 -2.83293,2.26567 -0.89916,1.15996 -1.34944,2.50989 -1.34945,4.04802 10e-6,1.94347 0.82283,3.17814 2.46382,3.70253 1.63489,0.52243 3.49981,0.47227 5.59179,-0.14678 2.24699,-0.66492 4.09236,-1.7593 5.54116,-3.28189 1.44397,-1.5175 2.16415,-3.14186 2.16415,-4.87689 0,-1.00018 -0.24446,-1.94558 -0.73378,-2.83696 -0.48988,-0.9026 -1.28029,-1.619 -2.3729,-2.14945 -0.27359,-0.13793 -0.41044,-0.28891 -0.41045,-0.45289 1e-5,-0.17419 0.0821,-0.34075 0.24632,-0.49964 0.15045,-0.1652 0.34186,-0.28042 0.57418,-0.34571 0.58707,-0.16488 1.33,0.14264 2.22797,0.92121 1.45185,1.25125 2.17594,2.89386 2.17594,4.931 0,2.06772 -0.87312,4.02504 -2.6247,5.87761 -1.77237,1.85395 -4.0256,3.18955 -6.76716,4.0049 -2.8146,0.8371 -5.16475,0.84722 -7.04279,0.0237 -1.88612,-0.83751 -2.83222,-2.31465 -2.83224,-4.42874 2e-5,-2.00993 0.81209,-3.92834 2.43175,-5.75018"
         id="path11618" />
      <path
         inkscape:connector-curvature="0"
         d="m 365.2873,324.42931 c 0,0 26.86883,-0.22742 26.86883,-0.22742 0.44274,-0.006 0.66393,0.11973 0.66393,0.37829 0,0.1628 -0.0777,0.33622 -0.23314,0.52034 -0.14356,0.17002 -0.3051,0.2895 -0.48467,0.35839 -0.14372,0.0552 -0.34141,0.0831 -0.59316,0.0837 0,0 -26.91257,0.28707 -26.91257,0.28707 -0.29454,3.9e-4 -0.48676,-0.0323 -0.57653,-0.0982 -0.0897,-0.0659 -0.13461,-0.16825 -0.13464,-0.30713 3e-5,-0.16862 0.0834,-0.34333 0.25001,-0.52404 0.15381,-0.18582 0.32673,-0.31424 0.51876,-0.3853 0.14082,-0.0521 0.35191,-0.0807 0.63318,-0.0857"
         id="path11620" />
      <path
         inkscape:connector-curvature="0"
         d="m 366.45519,316.07608 c 0,0 10.51502,-3.79236 10.51502,-3.79236 -2.46784,-0.59854 -3.70731,-1.95353 -3.70733,-4.06227 2e-5,-1.80468 0.83926,-3.64326 2.51264,-5.51006 1.65423,-1.85493 3.67873,-3.19501 6.068,-4.02221 2.39983,-0.83081 4.42136,-0.88869 6.07011,-0.17943 1.64209,0.6968 2.46064,1.91342 2.46064,3.65195 0,2.11316 -1.19227,4.30365 -3.58738,6.58151 0,0 2.99169,-1.07899 2.99169,-1.07899 0,0 0,2.84044 0,2.84044 0,0.28837 -0.0722,0.52138 -0.21683,0.69912 -0.14463,0.17779 -0.32548,0.30634 -0.5426,0.38563 -0.22932,0.0837 -0.41044,0.0873 -0.54332,0.0106 -0.14501,-0.0723 -0.21753,-0.25286 -0.21753,-0.54177 0,0 0,-1.63234 0,-1.63234 0,0 -20.18116,7.30873 -20.18116,7.30873 0,0 0,1.67289 0,1.67289 2e-5,0.29607 -0.0762,0.53606 -0.2286,0.72001 -0.15244,0.18399 -0.34947,0.32012 -0.59113,0.40837 -0.22903,0.0836 -0.41999,0.0891 -0.57285,0.0164 -0.15288,-0.0728 -0.22934,-0.25747 -0.22937,-0.55412 0,0 0,-2.92215 0,-2.92215 m 15.462,-16.18951 c -1.95683,0.6804 -3.61946,1.78978 -4.98426,3.32953 -1.38179,1.54926 -2.07443,3.04045 -2.07444,4.46966 10e-6,1.42923 0.69265,2.42978 2.07444,3.00024 1.3648,0.57302 3.02743,0.5047 4.98426,-0.20103 1.94753,-0.70236 3.59383,-1.82272 4.9425,-3.35975 1.33211,-1.52762 1.99654,-2.99206 1.99654,-4.39706 0,-1.40498 -0.66443,-2.39877 -1.99654,-2.98281 -1.34867,-0.58171 -2.99497,-0.53592 -4.9425,0.14122"
         id="path11622" />
      <path
         inkscape:connector-curvature="0"
         d="m 365.65142,292.81786 c 0,0 4.13622,-1.37513 4.13622,-1.37513 0,0 0,1.83197 0,1.83197 0,0 -4.13622,1.38424 -4.13622,1.38424 0,0 0,-1.84108 0,-1.84108 m 8.17532,-2.76207 c 0,0 14.43156,-4.79712 14.43156,-4.79712 0,0 0,-4.76701 0,-4.76701 0,-0.29852 0.0725,-0.53402 0.21753,-0.70646 0.13288,-0.16841 0.314,-0.28994 0.54332,-0.36461 0.21712,-0.0707 0.39797,-0.067 0.5426,0.0109 0.14457,0.0779 0.21683,0.26581 0.21683,0.56377 0,0 0,10.72732 0,10.72732 0,0.28838 -0.0722,0.51963 -0.21683,0.69384 -0.14463,0.17426 -0.32548,0.2984 -0.5426,0.37238 -0.22932,0.0781 -0.41044,0.0773 -0.54332,-0.003 -0.14501,-0.0758 -0.21753,-0.25817 -0.21753,-0.54708 0,0 0,-4.76701 0,-4.76701 0,0 -12.83813,4.28664 -12.83813,4.28664 0,0 0,3.59507 0,3.59507 2e-5,0.29348 -0.0748,0.53405 -0.22458,0.72179 -0.14978,0.17801 -0.33709,0.30517 -0.56199,0.38148 -0.2375,0.0806 -0.43136,0.0827 -0.58153,0.006 -0.15019,-0.0765 -0.22532,-0.26666 -0.22533,-0.5705 0,0 0,-4.837 0,-4.837"
         id="path11624" />
      <path
         inkscape:connector-curvature="0"
         d="m 373.82674,276.64747 c 0,0 2.37852,-0.75206 2.37852,-0.75206 -1.1095,-0.51038 -1.87794,-1.04696 -2.3034,-1.60911 -0.42586,-0.56274 -0.63896,-1.28079 -0.63898,-2.15371 2e-5,-0.94158 0.25698,-1.87901 0.77041,-2.81146 0.37531,-0.66385 1.00004,-1.34972 1.87307,-2.05696 0.85877,-0.7117 1.74056,-1.20509 2.6452,-1.48083 0,0 9.70674,-2.9585 9.70674,-2.9585 0,0 0,-1.02563 0,-1.02563 0,-0.28889 0.0725,-0.5179 0.21753,-0.68701 0.13288,-0.16536 0.314,-0.28272 0.54332,-0.35212 0.21712,-0.0657 0.39797,-0.0578 0.5426,0.0233 0.14457,0.0812 0.21683,0.26599 0.21683,0.55434 0,0 0,3.24415 0,3.24415 0,0.298 -0.0722,0.53173 -0.21683,0.70126 -0.14463,0.16962 -0.32548,0.28793 -0.5426,0.35491 -0.22932,0.0708 -0.41044,0.0641 -0.54332,-0.0201 -0.14501,-0.0805 -0.21753,-0.26998 -0.21753,-0.56853 0,0 0,-1.01118 0,-1.01118 0,0 -9.44686,2.8934 -9.44686,2.8934 -1.1025,0.33769 -2.03388,0.94036 -2.79297,1.80854 -0.77294,0.87364 -1.15997,1.84458 -1.15998,2.9116 10e-6,0.8125 0.2123,1.45101 0.63652,1.91517 0.41136,0.4676 1.44414,0.993 3.09369,1.57481 0,0 9.6696,-3.0574 9.6696,-3.0574 0,0 0,-1.37231 0,-1.37231 0,-0.28891 0.0725,-0.51872 0.21753,-0.68941 0.13288,-0.16682 0.314,-0.28617 0.54332,-0.35807 0.21712,-0.0681 0.39797,-0.0623 0.5426,0.0174 0.14457,0.0796 0.21683,0.26361 0.21683,0.55197 0,0 0,3.95065 0,3.95065 0,0.28838 -0.0722,0.51815 -0.21683,0.68941 -0.14463,0.17132 -0.32548,0.29176 -0.5426,0.36132 -0.22932,0.0735 -0.41044,0.069 -0.54332,-0.0137 -0.14501,-0.0788 -0.21753,-0.2626 -0.21753,-0.55151 0,0 0,-1.37233 0,-1.37233 0,0 -12.83813,4.07843 -12.83813,4.07843 0,0 0,1.04184 0,1.04184 2e-5,0.29348 -0.0748,0.52771 -0.22458,0.70277 -0.14978,0.17512 -0.34333,0.30066 -0.58074,0.37662 -0.225,0.072 -0.41261,0.0684 -0.56278,-0.011 -0.15019,-0.0794 -0.22532,-0.26611 -0.22533,-0.56015 0,0 0,-2.27883 0,-2.27883"
         id="path11626" />
      <path
         inkscape:connector-curvature="0"
         d="m 411.64505,307.26962 c 0,0 24.01211,0.30708 24.01211,0.30708 0.39638,0.003 0.59442,0.12622 0.59442,0.37088 0,0.15404 -0.0695,0.31662 -0.20874,0.48781 -0.12853,0.15807 -0.27316,0.26797 -0.43393,0.32965 -0.12866,0.0494 -0.30564,0.0719 -0.53101,0.0676 0,0 -24.04906,-0.25383 -24.04906,-0.25383 -0.26273,-0.005 -0.43418,-0.04 -0.51425,-0.10399 -0.08,-0.064 -0.12006,-0.16151 -0.12008,-0.29267 2e-5,-0.15925 0.0744,-0.32263 0.22299,-0.49006 0.13719,-0.1725 0.29143,-0.29043 0.46272,-0.35381 0.12562,-0.0465 0.31391,-0.0694 0.56483,-0.0687"
         id="path11628" />
      <path
         inkscape:connector-curvature="0"
         d="m 426.79297,283.70541 c 0,0 0,11.77875 0,11.77875 1.78379,-0.84739 3.21685,-1.98723 4.30308,-3.41944 1.07237,-1.43341 1.60743,-2.91786 1.60743,-4.45634 0,-0.85571 -0.16747,-1.69337 -0.50261,-2.51354 -0.33545,-0.82085 -0.77954,-1.43139 -1.33267,-1.83151 -0.16283,-0.1167 -0.24428,-0.23897 -0.24428,-0.36678 0,-0.14603 0.0706,-0.29833 0.21172,-0.45687 0.13023,-0.15468 0.28754,-0.26399 0.47187,-0.32796 0.18426,-0.0639 0.36301,-0.053 0.53626,0.0327 0.54092,0.24935 1.04869,0.85091 1.52344,1.80407 0.46339,0.9467 0.69488,2.00574 0.69488,3.17799 0,1.96287 -0.75959,3.87613 -2.28327,5.74532 -1.54063,1.87147 -3.40957,3.20872 -5.61156,4.00955 -2.01574,0.7331 -3.75348,0.74237 -5.20943,0.0229 -1.46137,-0.73138 -2.19411,-2.02497 -2.19413,-3.87871 2e-5,-1.90933 0.75511,-3.7453 2.26094,-5.50281 1.48895,-1.74687 3.4139,-3.01888 5.76833,-3.81736 m -1.40103,1.65782 c -1.5332,0.76449 -2.78409,1.80947 -3.74992,3.13515 -0.96821,1.31975 -1.45323,2.66086 -1.45324,4.02086 10e-6,1.36002 0.47946,2.35846 1.43656,2.99416 0.9548,0.63415 2.2113,0.78823 3.7666,0.4644 0,0 0,-10.61457 0,-10.61457"
         id="path11630" />
      <path
         inkscape:connector-curvature="0"
         d="m 419.26727,277.96614 c 0,0 0,-6.33569 0,-6.33569 0,-0.27787 0.0671,-0.49899 0.20124,-0.66333 0.13412,-0.16426 0.30727,-0.28109 0.5194,-0.3505 0.20088,-0.0657 0.36819,-0.0603 0.50199,0.0161 0.13376,0.0764 0.20062,0.25331 0.20061,0.53068 0,0 0,6.32415 0,6.32415 0,0 9.23228,-3.10449 9.23228,-3.10449 0.79344,-0.2668 1.45519,-0.75378 1.98594,-1.46062 0.53001,-0.71496 0.79475,-1.58641 0.79475,-2.6151 0,-0.77379 -0.13505,-1.56672 -0.40528,-2.37925 -0.28125,-0.80953 -0.59519,-1.40852 -0.94191,-1.79678 -0.14094,-0.13644 -0.21142,-0.26397 -0.21142,-0.38258 0,-0.14593 0.0705,-0.29655 0.21142,-0.45185 0.13007,-0.15168 0.28715,-0.25741 0.47124,-0.31724 0.16236,-0.0527 0.31384,-0.0427 0.45444,0.03 0.35669,0.17539 0.74542,0.75863 1.1661,1.74904 0.40946,0.98379 0.61402,1.98873 0.61402,3.01559 0,1.33583 -0.37153,2.52358 -1.11565,3.56475 -0.74557,1.0432 -1.75277,1.77967 -3.02365,2.20894 0,0 -9.23228,3.11843 -9.23228,3.11843 0,0 0,2.14966 0,2.14966 10e-6,0.27737 -0.0668,0.49896 -0.20061,0.66483 -0.1338,0.1659 -0.30669,0.28508 -0.51874,0.3575 -0.20097,0.0686 -0.36853,0.0657 -0.50265,-0.009 -0.13414,-0.0746 -0.20124,-0.25088 -0.20124,-0.52876 0,0 0,-2.15358 0,-2.15358 0,0 -4.18238,1.4127 -4.18238,1.4127 -0.33922,0.11459 -0.58252,0.14087 -0.72973,0.0787 -0.14722,-0.0622 -0.22086,-0.17718 -0.22088,-0.345 2e-5,-0.17715 0.0737,-0.34647 0.22088,-0.50787 0.14721,-0.16136 0.39051,-0.29909 0.72973,-0.41316 0,0 4.18238,-1.40638 4.18238,-1.40638"
         id="path11632" />
      <path
         inkscape:connector-curvature="0"
         d="m 420.69051,253.20339 c 0,0 -0.46826,0.14288 -0.46826,0.14288 -0.34597,0.10557 -0.59169,0.125 -0.73698,0.0582 -0.14531,-0.0668 -0.218,-0.18361 -0.218,-0.35035 0,-0.17598 0.0727,-0.34163 0.218,-0.49694 0.14529,-0.15523 0.39101,-0.28539 0.73698,-0.39045 0,0 3.16649,-0.96139 3.16649,-0.96139 0.34288,-0.0949 0.58603,-0.10885 0.72963,-0.042 0.14356,0.0576 0.21532,0.17385 0.21531,0.34869 10e-6,0.15646 -0.0607,0.3084 -0.18218,0.45586 -0.13253,0.14169 -0.34802,0.26728 -0.64659,0.37679 -0.78619,0.2952 -1.53512,0.95764 -2.24655,1.98819 -0.71271,1.02321 -1.06957,2.22014 -1.06958,3.5894 10e-6,1.73008 0.65213,2.83849 1.9531,3.32402 1.29666,0.48391 2.77641,0.46056 4.43715,-0.0671 1.78476,-0.56711 3.25127,-1.52194 4.40311,-2.86347 1.14841,-1.33751 1.72134,-2.77856 1.72134,-4.32615 0,-0.89212 -0.19449,-1.7379 -0.58375,-2.53793 -0.38965,-0.80994 -1.01825,-1.45675 -1.88698,-1.9406 -0.21749,-0.12568 -0.32627,-0.26166 -0.32628,-0.40785 10e-6,-0.15531 0.0653,-0.303 0.1958,-0.44306 0.11961,-0.14581 0.27178,-0.24668 0.45648,-0.30261 0.4668,-0.14131 1.05762,0.1402 1.77188,0.84341 1.15518,1.13056 1.73146,2.60329 1.73146,4.42074 0,1.84473 -0.69488,3.58146 -2.08843,5.21464 -1.40947,1.63345 -3.20043,2.79857 -5.37817,3.49381 -2.23421,0.71326 -4.09853,0.69501 -5.58755,-0.06 -1.49471,-0.76715 -2.24422,-2.09261 -2.24424,-3.97415 2e-5,-1.78885 0.64334,-3.48767 1.92681,-5.09249"
         id="path11634" />
      <path
         inkscape:connector-curvature="0"
         d="m 453.1278,291.91445 c 0,0 21.58792,0.73488 21.58792,0.73488 0.35694,0.01 0.53529,0.13079 0.53529,0.36296 0,0.14619 -0.0626,0.29918 -0.18798,0.45905 -0.11574,0.14762 -0.24598,0.24921 -0.39075,0.30475 -0.11586,0.0445 -0.27522,0.0626 -0.47815,0.0543 0,0 -21.61942,-0.68698 -21.61942,-0.68698 -0.2358,-0.01 -0.38968,-0.046 -0.46153,-0.10803 -0.0718,-0.0621 -0.10775,-0.15523 -0.10778,-0.27948 3e-5,-0.15087 0.0668,-0.30427 0.20013,-0.46014 0.12312,-0.16089 0.26156,-0.26976 0.4153,-0.32665 0.11274,-0.0417 0.28175,-0.0599 0.50697,-0.0547"
         id="path11636" />
      <path
         inkscape:connector-curvature="0"
         d="m 472.79955,269.90469 c 0,0 -1.79464,0.62799 -1.79464,0.62799 1.518,0.95341 2.27463,2.29087 2.27463,4.01534 0,1.06055 -0.32478,1.98337 -0.97519,2.7695 -0.85604,1.02552 -1.85568,1.74546 -3.00009,2.15898 0,0 -8.05232,2.9096 -8.05232,2.9096 0,0 0,1.48567 0,1.48567 1e-5,0.26294 -0.0601,0.47325 -0.18028,0.63098 -0.12024,0.15777 -0.2756,0.27137 -0.46615,0.3408 -0.1806,0.0658 -0.33116,0.0636 -0.45168,-0.007 -0.12052,-0.0703 -0.18081,-0.23708 -0.18082,-0.50048 0,0 0,-2.59453 0,-2.59453 0,0 9.33125,-3.35779 9.33125,-3.35779 0.80244,-0.28875 1.46167,-0.75092 1.97844,-1.38632 0.51605,-0.6345 0.7738,-1.28824 0.7738,-1.96192 0,-1.77056 -0.91511,-3.07222 -2.75224,-3.90813 0,0 -8.05232,2.81768 -8.05232,2.81768 0,0 0,2.03785 0,2.03785 1e-5,0.26295 -0.0601,0.47262 -0.18028,0.62905 -0.12024,0.1565 -0.2756,0.26844 -0.46615,0.33583 -0.1806,0.0639 -0.33116,0.0601 -0.45168,-0.0114 -0.12052,-0.0715 -0.18081,-0.23899 -0.18082,-0.5024 0,0 0,-3.14768 0,-3.14768 0,0 11.60189,-4.04242 11.60189,-4.04242 0,0 0,-0.92043 0,-0.92043 0,-0.25926 0.0584,-0.46532 0.1752,-0.61814 0.10702,-0.14937 0.25292,-0.25603 0.43764,-0.31999 0.1749,-0.0605 0.3206,-0.0548 0.43711,0.017 0.11648,0.0718 0.1747,0.23717 0.1747,0.49599 0,0 0,2.00603 0,2.00603"
         id="path11638" />
      <path
         inkscape:connector-curvature="0"
         d="m 460.80106,258.07986 c -0.29085,0.0955 -0.50162,0.11202 -0.63216,0.0495 -0.13057,-0.0625 -0.19588,-0.17279 -0.19589,-0.33084 1e-5,-0.16682 0.0653,-0.32426 0.19589,-0.47233 0.13054,-0.14798 0.35135,-0.27278 0.66224,-0.37438 0,0 2.15906,-0.70548 2.15906,-0.70548 0.29888,-0.0976 0.51292,-0.11518 0.64227,-0.0526 0.12933,0.0625 0.19397,0.17679 0.19396,0.34273 10e-6,0.1485 -0.0547,0.29308 -0.16411,0.43379 -0.10944,0.13202 -0.28861,0.24763 -0.5376,0.34683 -0.59825,0.24893 -1.09254,0.68261 -1.48245,1.30134 -0.56058,0.90354 -0.8412,1.94781 -0.84121,3.1318 10e-6,1.23662 0.28564,2.10094 0.85621,2.59241 0.42987,0.37163 0.90912,0.46784 1.43756,0.28913 0.59734,-0.20199 1.09438,-0.67563 1.49152,-1.42055 0.27777,-0.51224 0.49089,-1.37741 0.63951,-2.59544 0.18817,-1.58801 0.40099,-2.71723 0.63839,-3.38792 0.34596,-0.95843 0.82481,-1.74203 1.43603,-2.35072 0.61022,-0.61634 1.2685,-1.03937 1.97459,-1.26953 1.04682,-0.3412 1.9786,-0.19963 2.79622,0.42294 0.80608,0.62439 1.20845,1.79399 1.20845,3.50983 0,1.71586 -0.48969,3.28655 -1.47106,4.71495 0.33065,-0.11206 0.54445,-0.16723 0.64159,-0.16569 0.0971,0.002 0.17964,0.0384 0.24758,0.11023 0.0679,0.0633 0.1019,0.15093 0.1019,0.26309 0,0.15531 -0.0631,0.30617 -0.18926,0.45266 -0.12623,0.14653 -0.33509,0.26942 -0.62672,0.3687 0,0 -2.53239,0.86214 -2.53239,0.86214 -0.2939,0.10005 -0.50466,0.12411 -0.63217,0.0721 -0.12755,-0.0607 -0.19133,-0.17353 -0.19134,-0.3384 10e-6,-0.1562 0.0638,-0.308 0.19134,-0.45539 0.1177,-0.15268 0.27947,-0.26389 0.48525,-0.33364 0.45037,-0.15263 0.82688,-0.37983 1.12976,-0.68154 0.46848,-0.46136 0.85842,-1.07305 1.17008,-1.83503 0.30166,-0.7667 0.4524,-1.62916 0.4524,-2.58786 0,-1.41643 -0.29667,-2.37228 -0.89074,-2.86815 -0.59504,-0.49666 -1.22527,-0.63648 -1.89089,-0.41854 -0.76499,0.2505 -1.37912,0.80339 -1.84163,1.65907 -0.46309,0.86548 -0.77378,2.00772 -0.93171,3.42636 -0.15797,1.41055 -0.36543,2.45523 -0.62245,3.13395 -0.25718,0.6792 -0.64331,1.27172 -1.15879,1.77774 -0.51618,0.50673 -1.07288,0.8617 -1.6703,1.06463 -1.07777,0.36609 -1.93324,0.19205 -2.56488,-0.52385 -0.64274,-0.71374 -0.96453,-1.71681 -0.96454,-3.00827 10e-6,-1.52867 0.42733,-2.91265 1.28049,-4.14979"
         id="path11640" />
      <path
         inkscape:connector-curvature="0"
         d="m 459.97301,247.15701 c 0,0 3.18159,-0.9963 3.18159,-0.9963 -1.47732,-0.974 -2.42873,-1.75239 -2.85014,-2.33274 -0.43193,-0.58669 -0.64809,-1.18333 -0.6481,-1.78942 10e-6,-0.65879 0.25637,-1.34729 0.76855,-2.0648 0.50146,-0.72222 0.88211,-1.12235 1.14232,-1.20107 0.19006,-0.0575 0.35002,-0.0489 0.47993,0.0256 0.11989,0.0688 0.17982,0.1863 0.17982,0.3526 0,0.0875 -0.015,0.16649 -0.045,0.23686 -0.04,0.0735 -0.15485,0.22213 -0.34476,0.44622 -0.35007,0.41312 -0.59032,0.75359 -0.72054,1.0212 -0.13023,0.26772 -0.19537,0.51122 -0.19538,0.73043 1e-5,0.4823 0.22044,0.99766 0.66089,1.54559 0.43995,0.53853 1.5126,1.37834 3.21245,2.51597 0,0 6.78021,-2.1232 6.78021,-2.1232 0,0 0,-4.82256 0,-4.82256 0,-0.26791 0.0584,-0.47591 0.1752,-0.62398 0.10702,-0.14502 0.25292,-0.24575 0.43764,-0.3022 0.1749,-0.0534 0.3206,-0.0418 0.43711,0.0348 0.11648,0.0766 0.1747,0.24858 0.1747,0.51604 0,0 0,8.52884 0,8.52884 0,0.25885 -0.0534,0.46137 -0.16014,0.60759 -0.1165,0.14939 -0.2622,0.252 -0.43709,0.30783 -0.16526,0.0528 -0.30142,0.0444 -0.40844,-0.0251 -0.11677,-0.0751 -0.17518,-0.24658 -0.17518,-0.51448 0,0 0,-2.63151 0,-2.63151 0,0 -10.36676,3.2618 -10.36676,3.2618 0,0 0,2.03785 0,2.03785 10e-6,0.26295 -0.0601,0.4705 -0.18028,0.6227 -0.12024,0.15225 -0.2756,0.25871 -0.46615,0.31938 -0.1806,0.0575 -0.33116,0.0528 -0.45168,-0.0142 -0.12052,-0.0758 -0.18081,-0.24977 -0.18082,-0.52195 0,0 0,-3.14768 0,-3.14768"
         id="path11642" />
      <path
         inkscape:connector-curvature="0"
         d="m 490.46613,278.09337 c 0,0 19.51315,1.07897 19.51315,1.07897 0.32311,0.0156 0.48456,0.13389 0.48456,0.35479 0,0.13909 -0.0567,0.28355 -0.17017,0.43343 -0.10477,0.1384 -0.22267,0.23275 -0.35371,0.28303 -0.10488,0.0402 -0.24913,0.0546 -0.43281,0.0432 0,0 -19.54022,-1.03558 -19.54022,-1.03558 -0.21281,-0.0136 -0.35168,-0.0505 -0.41653,-0.11078 -0.0648,-0.0602 -0.0972,-0.14937 -0.0973,-0.2674 2e-5,-0.14332 0.0603,-0.28787 0.18061,-0.4336 0.11111,-0.15068 0.23606,-0.25167 0.37481,-0.30302 0.10175,-0.0376 0.25429,-0.052 0.45757,-0.043"
         id="path11644" />
      <path
         inkscape:connector-curvature="0"
         d="m 496.64736,267.31812 c 0,0 0,-5.70821 0,-5.70821 1e-5,-0.25036 0.0545,-0.4488 0.16336,-0.59533 0.10888,-0.14646 0.24944,-0.24974 0.42166,-0.30985 0.1631,-0.0569 0.29895,-0.0501 0.40758,0.0203 0.10862,0.0704 0.16292,0.23055 0.1629,0.4805 0,0 0,5.69885 0,5.69885 0,0 7.50564,-2.68778 7.50564,-2.68778 0.64587,-0.23128 1.18465,-0.66285 1.61683,-1.29443 0.43164,-0.63901 0.64726,-1.42241 0.64726,-2.35081 0,-0.69833 -0.10999,-1.41548 -0.33009,-2.15179 -0.22904,-0.73368 -0.48469,-1.27767 -0.76701,-1.63184 -0.11476,-0.12466 -0.17215,-0.2405 -0.17215,-0.34752 0,-0.13168 0.0574,-0.26682 0.17215,-0.40542 0.1059,-0.13545 0.23381,-0.22916 0.38372,-0.28115 0.13222,-0.0458 0.25557,-0.0351 0.37008,0.032 0.2905,0.16215 0.60714,0.69277 0.94983,1.59129 0.33359,0.89253 0.50026,1.80192 0.50026,2.72882 0,1.2058 -0.3027,2.27359 -0.90889,3.20459 -0.60725,0.93264 -1.42741,1.58517 -2.46199,1.95722 0,0 -7.50564,2.69912 -7.50564,2.69912 0,0 0,1.93711 0,1.93711 2e-5,0.24995 -0.0543,0.44878 -0.1629,0.59654 -0.10863,0.14781 -0.24901,0.25299 -0.42117,0.31555 -0.16316,0.0593 -0.29919,0.0545 -0.40807,-0.0144 -0.10889,-0.0689 -0.16335,-0.22859 -0.16336,-0.47895 0,0 0,-1.94029 0,-1.94029 0,0 -3.39317,1.22022 -3.39317,1.22022 -0.27506,0.0989 -0.47232,0.11952 -0.59167,0.0617 -0.11935,-0.0578 -0.17905,-0.1623 -0.17906,-0.31341 1e-5,-0.1595 0.0597,-0.31103 0.17906,-0.45451 0.11935,-0.14346 0.31661,-0.26444 0.59167,-0.36295 0,0 3.39317,-1.2151 3.39317,-1.2151"
         id="path11646" />
      <path
         inkscape:connector-curvature="0"
         d="m 496.64736,254.57478 c 0,0 1.1555,-0.39287 1.1555,-0.39287 -1.04204,-0.53851 -1.56422,-1.25928 -1.56423,-2.1611 10e-6,-0.54276 0.15902,-1.07194 0.4768,-1.5872 0.30846,-0.51177 0.77968,-1.0107 1.413,-1.49648 -0.63332,-0.25606 -1.10454,-0.57087 -1.413,-0.9443 -0.31778,-0.37911 -0.47679,-0.81095 -0.4768,-1.29526 10e-6,-0.75987 0.26801,-1.4528 0.80338,-2.07811 0.68847,-0.81606 1.4388,-1.35555 2.25059,-1.61921 0,0 7.84421,-2.54762 7.84421,-2.54762 0,0 0,-0.87553 0,-0.87553 0,-0.24662 0.0528,-0.44043 0.15853,-0.58142 0.0968,-0.13808 0.22885,-0.23407 0.396,-0.28799 0.15827,-0.051 0.29012,-0.0402 0.39556,0.0325 0.1054,0.0727 0.15809,0.23217 0.15809,0.47839 0,0 0,1.90832 0,1.90832 0,0 -8.84429,2.88563 -8.84429,2.88563 -0.5769,0.18823 -1.05537,0.50669 -1.43501,0.95549 -0.38003,0.4493 -0.57021,0.88671 -0.57021,1.31186 0,0.38349 0.15849,0.73555 0.47524,1.05599 0.30744,0.32315 0.91699,0.60401 1.82708,0.84233 0,0 7.43901,-2.47237 7.43901,-2.47237 0,0 0,-0.8632 0,-0.8632 0,-0.24662 0.0528,-0.44083 0.15853,-0.58262 0.0968,-0.13882 0.22885,-0.23581 0.396,-0.291 0.15827,-0.0522 0.29012,-0.0424 0.39556,0.0295 0.1054,0.0719 0.15809,0.23096 0.15809,0.47718 0,0 0,1.90833 0,1.90833 0,0 -8.76324,2.92573 -8.76324,2.92573 -0.60382,0.2016 -1.10029,0.53384 -1.48893,0.99686 -0.39811,0.45823 -0.59734,0.89179 -0.59734,1.30027 0,0.37514 0.13132,0.70184 0.39381,0.97992 0.37079,0.38275 1.00745,0.69975 1.90851,0.95082 0,0 7.43901,-2.52926 7.43901,-2.52926 0,0 0,-0.87553 0,-0.87553 0,-0.24663 0.0528,-0.44125 0.15853,-0.58383 0.0968,-0.13956 0.22885,-0.23756 0.396,-0.29402 0.15827,-0.0534 0.29012,-0.0446 0.39556,0.0265 0.1054,0.0711 0.15809,0.22974 0.15809,0.47597 0,0 0,2.78246 0,2.78246 0,0.24624 -0.0527,0.4408 -0.15809,0.58372 -0.10544,0.14296 -0.23729,0.24165 -0.39556,0.29606 -0.16715,0.0574 -0.29916,0.0494 -0.396,-0.0242 -0.10568,-0.0706 -0.15853,-0.22916 -0.15853,-0.4758 0,0 0,-0.87553 0,-0.87553 0,0 -9.33395,3.18747 -9.33395,3.18747 0,0 0,0.88732 0,0.88732 2e-5,0.24995 -0.0543,0.44772 -0.1629,0.59335 -0.10863,0.14567 -0.24901,0.2481 -0.42117,0.30728 -0.16316,0.0561 -0.29919,0.0487 -0.40807,-0.0224 -0.10889,-0.0711 -0.16335,-0.2318 -0.16336,-0.48216 0,0 0,-1.94029 0,-1.94029"
         id="path11648" />
      <path
         inkscape:connector-curvature="0"
         d="m 496.64736,238.37646 c 0,0 2.07718,-0.65844 2.07718,-0.65844 -0.82215,-0.36416 -1.44231,-0.83933 -1.85938,-1.42537 -0.41755,-0.58674 -0.62652,-1.36885 -0.62653,-2.34582 10e-6,-1.03542 0.26347,-2.07259 0.78978,-3.11032 0.52556,-1.03618 1.25819,-1.93417 2.19662,-2.69363 0.92694,-0.76299 1.90073,-1.2984 2.92097,-1.60707 1.61375,-0.48819 2.98978,-0.36858 4.13085,0.35538 1.12853,0.71608 1.69142,1.84919 1.69142,3.40109 0,1.84751 -0.80503,3.59989 -2.42074,5.26294 0,0 6.65254,-2.10877 6.65254,-2.10877 0,0 0,-2.49725 0,-2.49725 -10e-6,-0.24483 0.0477,-0.43522 0.1432,-0.57115 0.10412,-0.1386 0.23855,-0.23361 0.40327,-0.28507 0.15597,-0.0487 0.28589,-0.0363 0.3898,0.0372 0.10387,0.0735 0.1558,0.23241 0.1558,0.47685 0,0 0,4.90103 0,4.90103 0,0.24444 -0.0519,0.43629 -0.1558,0.57559 -0.0952,0.13657 -0.22517,0.23132 -0.3898,0.28425 -0.16472,0.0529 -0.29915,0.0432 -0.40327,-0.0295 -0.0955,-0.0754 -0.14321,-0.23555 -0.1432,-0.48037 0,0 0,-1.38329 0,-1.38329 0,0 -14.39721,4.58524 -14.39721,4.58524 0,0 0,1.41222 0,1.41222 2e-5,0.24994 -0.0543,0.4465 -0.1629,0.58972 -0.10863,0.14325 -0.24901,0.24256 -0.42117,0.29791 -0.16316,0.0524 -0.29919,0.042 -0.40807,-0.0315 -0.10889,-0.0735 -0.16335,-0.23544 -0.16336,-0.48579 0,0 0,-2.46606 0,-2.46606 m 5.49864,-10.78493 c -1.29819,0.39472 -2.4122,1.17378 -3.34025,2.33842 -0.93954,1.16219 -1.41027,2.37801 -1.41027,3.64515 0,1.27548 0.47073,2.20732 1.41027,2.79434 0.93705,0.58545 2.05103,0.6727 3.34025,0.26403 1.29338,-0.40998 2.40009,-1.19814 3.32187,-2.36328 0.91935,-1.16205 1.37812,-2.3711 1.37812,-3.62945 0,-1.24188 -0.45435,-2.15914 -1.36484,-2.75298 -0.92175,-0.59266 -2.03286,-0.69217 -3.33515,-0.29623"
         id="path11650" />
      <path
         inkscape:connector-curvature="0"
         d="m 537.49915,265.34139 c 0,0 0,-0.4245 0,-0.4245 0,-0.44021 0.16106,-0.87799 0.48293,-1.313 0.31352,-0.43158 0.69498,-0.73132 1.14414,-0.89937 0.46455,-0.1738 0.85251,-0.15839 1.16415,0.0459 0.31134,0.19627 0.46691,0.50944 0.46691,0.93967 0,0 0,0.42241 0,0.42241 0,0.43806 -0.15557,0.87241 -0.46691,1.30334 -0.31963,0.43437 -0.7036,0.73677 -1.15213,0.90702 -0.46519,0.17659 -0.85469,0.16741 -1.16822,-0.0279 -0.31384,-0.20331 -0.47087,-0.52122 -0.47087,-0.95358"
         id="path11652" />
      <path
         inkscape:connector-curvature="0"
         d="m 537.49915,250.86135 c 0,0 0,-0.4245 0,-0.4245 0,-0.4402 0.16106,-0.87446 0.48293,-1.30246 0.31352,-0.42473 0.69498,-0.71614 1.14414,-0.87438 0.46455,-0.16364 0.85251,-0.13977 1.16415,0.0713 0.31134,0.20308 0.46691,0.51965 0.46691,0.94987 0,0 0,0.42242 0,0.42242 0,0.43805 -0.15557,0.869 -0.46691,1.29313 -0.31963,0.4274 -0.7036,0.72141 -1.15213,0.88187 -0.46519,0.16644 -0.85469,0.14875 -1.16822,-0.0534 -0.31384,-0.21017 -0.47087,-0.53151 -0.47087,-0.96387"
         id="path11654" />
      <path
         inkscape:connector-curvature="0"
         d="m 537.49915,236.38131 c 0,0 0,-0.42449 0,-0.42449 0,-0.44021 0.16106,-0.87095 0.48293,-1.29191 0.31352,-0.41789 0.69498,-0.70097 1.14414,-0.8494 0.46455,-0.15351 0.85251,-0.12116 1.16415,0.0967 0.31134,0.20987 0.46691,0.52984 0.46691,0.96007 0,0 0,0.42241 0,0.42241 0,0.43806 -0.15557,0.86561 -0.46691,1.28294 -0.31963,0.42042 -0.7036,0.70604 -1.15213,0.85671 -0.46519,0.15627 -0.85469,0.13008 -1.16822,-0.0789 -0.31384,-0.21701 -0.47087,-0.54178 -0.47087,-0.97415"
         id="path11656" />
    </g>
  </g>
  <g
     style="display:none"
     inkscape:label="Debian"
     id="layer5"
     inkscape:groupmode="layer">
    <g
       inkscape:corner7="0.22429094 : -0.062018081 : 0.53531208 : 1"
       inkscape:corner0="0.4922944 : 0.05733945 : 0 : 1"
       inkscape:perspectiveID="#perspective3054"
       id="g4111"
       style="fill:#aad3d3;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       sodipodi:type="inkscape:box3d"
       transform="translate(0,-452.36218)"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         d="M 133.59629,764.86429 252.05613,831.34849 540.56237,720.64621 415.24336,686.34695 z"
         inkscape:box3dsidetype="13"
         style="fill:#afafde;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4121"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 133.59629,684.88172 0,79.98257 281.64707,-78.51734 0,-58.86622 z"
         inkscape:box3dsidetype="6"
         style="fill:#353564;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4113"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 415.24336,627.48073 125.31901,25.33341 0,67.83207 -125.31901,-34.29926 z"
         inkscape:box3dsidetype="11"
         style="fill:#e9e9ff;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4123"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 133.59629,684.88172 118.45984,48.97562 288.50624,-81.0432 -125.31901,-25.33341 z"
         inkscape:box3dsidetype="5"
         style="fill:#00b9f5;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4115"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 252.05613,733.85734 0,97.49115 288.50624,-110.70228 0,-67.83207 z"
         inkscape:box3dsidetype="14"
         style="fill:#008bb8;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4119"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 133.59629,684.88172 118.45984,48.97562 0,97.49115 -118.45984,-66.4842 z"
         inkscape:box3dsidetype="3"
         style="fill:#00ade5;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4117"
         sodipodi:type="inkscape:box3dside" />
    </g>
    <g
       transform="matrix(0.61031919,0,0,0.61031919,136.50792,89.854955)"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
       id="text9988"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         inkscape:connector-curvature="0"
         d="m 188.59801,239.37973 c 0,0 10.80142,4.18005 10.80142,4.18005 -0.76616,-3.05917 -0.73057,-5.17362 0.0851,-6.39339 0.84106,-1.21417 2.36138,-2.05944 4.56041,-2.54399 3.36438,-0.74121 8.67469,-0.70434 15.98654,0.11115 4.98595,0.55071 8.9953,1.36554 12.03184,2.45026 2.59214,0.92602 4.30231,1.84095 5.11951,2.74446 0.79707,0.88127 0.47618,1.49409 -0.97048,1.83415 -1.28207,0.30141 -3.77637,0.20361 -7.46885,-0.2925 -3.67698,-0.49394 -6.07112,-0.61056 -7.19576,-0.35091 -1.46934,0.3393 -2.09539,1.44179 -1.87218,3.32952 0.26187,1.91063 1.40513,4.65856 3.4729,8.3019 0,0 30.03524,11.62336 30.03524,11.62336 0,0 15.65393,-4.11957 15.65393,-4.11957 2.59381,-0.68257 5.41952,-0.79884 8.49618,-0.35048 3.05257,0.41529 6.19038,1.21068 9.42837,2.39338 3.19708,1.16781 5.29058,2.28918 6.26454,3.36278 0.94452,1.04629 0.1181,1.93489 -2.49634,2.66251 0,0 -34.13326,9.49952 -34.13326,9.49952 -2.83088,0.78785 -5.87094,0.94375 -9.09895,0.46537 -3.24862,-0.51643 -6.4804,-1.44072 -9.68065,-2.76446 -3.10024,-1.28236 -4.99727,-2.47227 -5.70886,-3.572 -0.73485,-1.12824 0.30694,-2.05895 3.10831,-2.79621 0,0 6.8587,-1.80497 6.8587,-1.80497 0,0 -46.80164,-18.64214 -46.80164,-18.64214 0,0 -4.03596,0.93784 -4.03596,0.93784 -2.70867,0.62944 -5.46556,0.75303 -8.25329,0.36912 -2.79889,-0.41446 -5.49653,-1.1558 -8.08261,-2.21792 -2.50769,-1.02993 -3.9575,-1.9862 -4.36329,-2.87045 -0.42087,-0.90793 0.71271,-1.65692 3.38783,-2.24995 0,0 14.87133,-3.29643 14.87133,-3.29643"
         id="path9995" />
      <path
         inkscape:connector-curvature="0"
         d="m 318.69753,233.65347 c 7.81088,2.41917 14.56844,5.07064 20.25204,7.96924 5.7885,2.94264 9.1431,5.72809 9.96615,8.34264 0.79838,2.64066 -1.00301,4.6031 -5.45216,5.85289 -4.46386,1.25393 -11.15148,1.66904 -20.00626,1.23659 -8.898,-0.4557 -18.38088,-1.74499 -28.34354,-3.84206 -9.79574,-2.06193 -18.6433,-4.48749 -26.52662,-7.25379 -7.82927,-2.74735 -14.20756,-5.64394 -19.17016,-8.67619 -4.89257,-2.97384 -7.23458,-5.57586 -7.12327,-7.82898 0.14059,-2.21435 2.37339,-3.78147 6.67139,-4.72848 4.29012,-0.94517 10.38008,-1.19953 18.3213,-0.76824 7.94217,0.40759 16.43086,1.49423 25.55556,3.2805 9.21274,1.79636 17.82485,3.92867 25.85557,6.41588 m -9.12553,2.31728 c -6.4118,-2.03184 -13.27849,-3.60974 -20.62972,-4.75217 -9.83924,-1.51489 -17.12877,-1.70611 -22.00563,-0.58005 -4.33293,1.00051 -5.30614,2.74024 -2.84855,5.25406 2.51376,2.57126 7.47645,5.13939 14.96669,7.70184 6.2706,2.14521 13.7825,3.8011 22.51055,4.94615 8.74133,1.13263 15.33249,1.12147 19.68005,-0.0328 4.33631,-1.15122 5.04492,-3.04688 2.20597,-5.65133 -2.84427,-2.56876 -7.48377,-4.85895 -13.87936,-6.8857"
         id="path9997" />
      <path
         inkscape:connector-curvature="0"
         d="m 370.18311,220.89138 c 7.87167,2.1472 14.79353,4.49711 20.75003,7.06196 6.05519,2.59988 9.78662,5.05673 11.1054,7.35908 1.29936,2.32214 0.0231,4.04525 -3.87749,5.14096 -3.91087,1.09859 -10.07589,1.46092 -18.44725,1.07985 -8.41856,-0.40157 -17.5687,-1.53459 -27.35306,-3.37787 -9.6307,-1.81431 -18.46587,-3.95046 -26.48622,-6.3895 -7.97675,-2.42578 -14.6373,-4.98669 -20.00949,-7.67132 -5.30105,-2.63705 -8.1214,-4.94735 -8.55222,-6.94998 -0.39449,-1.97048 1.33688,-3.36597 5.164,-4.20923 3.82211,-0.84206 9.50591,-1.06776 17.09603,-0.68142 7.58396,0.3651 15.83663,1.33558 24.84202,2.92873 9.08222,1.6007 17.66471,3.49833 25.76825,5.70874 m -8.07385,2.05333 c -6.47949,-1.80327 -13.29219,-3.20538 -20.46816,-4.22173 -9.60797,-1.34865 -16.51634,-1.52019 -20.848,-0.52003 -3.84631,0.88815 -4.35747,2.43275 -1.46283,4.66292 2.95687,2.27808 8.20823,4.55087 15.82272,6.81614 6.36681,1.89411 13.7807,3.35532 22.21491,4.3658 8.43901,0.99896 14.61124,0.99061 18.43477,-0.0245 3.81601,-1.01309 4.07248,-2.68403 0.84721,-4.98329 -3.22688,-2.27084 -8.08432,-4.29842 -14.54062,-6.09528"
         id="path9999" />
      <path
         inkscape:connector-curvature="0"
         d="m 369.35032,208.21091 c 0,0 40.18029,10.31554 40.18029,10.31554 4.54941,1.16799 7.90985,1.85733 10.04607,2.05851 3.35439,0.31973 6.36087,0.12804 8.99839,-0.57223 3.80233,-1.00946 4.92338,-2.51808 3.41338,-4.50415 -0.59265,-0.75666 -0.54527,-1.22149 0.13796,-1.39847 0.94028,-0.24357 2.78416,-0.20123 5.53983,0.12736 2.78771,0.32353 5.69044,0.85075 8.71788,1.58481 2.83553,0.68756 4.92392,1.38477 6.25775,2.09178 2.24812,1.1379 3.13828,2.53669 2.64599,4.20684 -0.55053,1.67203 -2.02066,2.85282 -4.41529,3.52548 -4.66368,1.31006 -11.25115,1.51999 -19.66772,0.62294 -8.39599,-0.91541 -16.83231,-2.48591 -25.2301,-4.68294 0,0 -44.30445,-11.59087 -44.30445,-11.59087 0,0 -2.80728,0.65233 -2.80728,0.65233 -1.88196,0.43734 -4.10034,0.52199 -6.64393,0.25302 -2.57229,-0.29043 -5.25643,-0.80912 -8.04218,-1.5525 -2.70522,-0.72188 -4.48808,-1.39261 -5.35902,-2.01314 -0.89888,-0.63794 -0.40471,-1.16405 1.47199,-1.58009 0,0 2.79988,-0.62063 2.79988,-0.62063 0,0 -16.0131,-4.18933 -16.0131,-4.18933 -4.15526,-1.08708 -6.72467,-1.9241 -7.73865,-2.51744 -1.03741,-0.60902 -0.98184,-1.03024 0.15945,-1.26617 1.11384,-0.23015 2.89308,-0.19004 5.34585,0.12065 2.43006,0.29236 5.71138,0.96864 9.87337,2.03715 0,0 16.03516,4.11673 16.03516,4.11673 0,0 13.81074,-3.06134 13.81074,-3.06134 1.7648,-0.39115 3.87091,-0.45617 6.32889,-0.19576 2.42845,0.24118 5.0259,0.70062 7.80255,1.38148 2.73549,0.67079 4.62059,1.3128 5.64569,1.9254 0.99363,0.59583 0.6121,1.09974 -1.15489,1.51031 0,0 -13.8345,3.21473 -13.8345,3.21473"
         id="path10001" />
      <path
         inkscape:connector-curvature="0"
         d="m 414.19529,197.79027 c 0,0 49.09089,11.29188 49.09089,11.29188 0,0 9.51455,-2.5039 9.51455,-2.5039 1.5833,-0.41664 3.71061,-0.48612 6.39269,-0.20922 2.64034,0.25642 5.58449,0.74526 8.845,1.46995 3.21279,0.71412 5.53419,1.39784 6.95389,2.0505 1.37743,0.63488 1.28518,1.1721 -0.28855,1.61008 0,0 -20.36165,5.66678 -20.36165,5.66678 -1.67346,0.46574 -3.90405,0.55615 -6.68041,0.27017 -2.81866,-0.30882 -5.88811,-0.86047 -9.19551,-1.6511 -3.21122,-0.76763 -5.44315,-1.48078 -6.70743,-2.1405 -1.30329,-0.67814 -1.1083,-1.23745 0.57268,-1.67985 0,0 4.12495,-1.08555 4.12495,-1.08555 0,0 -49.13122,-11.49283 -49.13122,-11.49283 0,0 -3.32684,0.77306 -3.32684,0.77306 -1.68527,0.39163 -3.76431,0.46707 -6.22722,0.22551 -2.49509,-0.26082 -5.14605,-0.72637 -7.94301,-1.39362 -2.71716,-0.64821 -4.55136,-1.25057 -5.51217,-1.80789 -0.99143,-0.57315 -0.63973,-1.04575 1.04522,-1.41928 0,0 3.32676,-0.73743 3.32676,-0.73743 0,0 -6.86908,-1.60682 -6.86908,-1.60682 -7.72281,-1.80653 -12.8825,-3.51276 -15.55532,-5.12306 -2.65764,-1.59876 -1.86099,-2.81696 2.32262,-3.66964 1.84848,-0.37669 4.40558,-0.71108 7.66872,-1.00365 3.21822,-0.30802 5.92136,-0.35936 8.12214,-0.15455 2.22716,0.20095 4.56577,0.57073 7.02338,1.11149 2.64213,0.58139 4.52279,1.1234 5.63365,1.62529 1.06013,0.49218 1.15601,0.83283 0.28178,1.02017 -0.40571,0.087 -1.21582,0.17299 -2.43036,0.25814 -4.16009,0.26467 -7.30795,0.6235 -9.44187,1.07766 -2.2328,0.47529 -2.90043,1.00733 -1.98928,1.59704 0.88196,0.57571 2.62421,1.16376 5.23535,1.76437 0,0 6.87026,1.58029 6.87026,1.58029 0,0 10.36792,-2.29819 10.36792,-2.29819 1.59462,-0.35343 3.58152,-0.41186 5.9701,-0.1759 2.35624,0.21854 4.91761,0.6344 7.69391,1.25031 2.73418,0.6066 4.65441,1.18684 5.75196,1.74017 1.06391,0.53802 0.80425,0.99268 -0.78855,1.36278 0,0 -10.35995,2.40734 -10.35995,2.40734"
         id="path10003" />
      <path
         inkscape:connector-curvature="0"
         d="m 462.86528,187.90449 c -2.90569,-0.16593 -5.36269,-0.21815 -7.37595,-0.15683 -2.07622,0.0486 -3.71307,0.21108 -4.91243,0.48799 -2.39002,0.55188 -3.09951,1.24612 -2.11015,2.08594 0.42438,0.3709 1.25961,0.68923 2.50703,0.95438 1.43917,0.30592 3.27869,0.50507 5.51653,0.59672 1.65829,0.0597 4.08262,-0.0775 7.26301,-0.41077 5.84081,-0.60338 10.42557,-0.90895 13.78419,-0.91984 4.42293,-0.011 9.54763,0.32933 15.40812,1.02483 5.9049,0.7008 11.57911,1.60001 17.03778,2.70347 7.51845,1.51988 12.98207,3.05778 16.33947,4.61419 4.979,2.29033 5.3772,4.05686 1.0617,5.26911 -1.74579,0.49041 -3.95512,0.82442 -6.62498,1.0004 -2.58257,0.18616 -5.59293,0.22359 -9.02452,0.11209 0.63516,0.28397 1.03505,0.52794 1.19856,0.73158 0.16356,0.20401 0.064,0.35687 -0.30016,0.45818 -0.97288,0.27068 -2.879,0.24588 -5.70939,-0.0742 -2.87272,-0.34021 -6.9451,-1.08148 -12.17878,-2.2148 0,0 -7.21961,-1.56336 -7.21961,-1.56336 -5.09134,-1.1025 -8.37985,-1.95133 -9.90167,-2.55303 -1.5588,-0.61762 -1.8621,-1.04479 -0.91937,-1.28407 0.75656,-0.19198 2.09291,-0.20186 4.01286,-0.0297 1.85597,0.1581 4.61964,0.56195 8.30756,1.21468 3.69149,0.33625 6.93021,0.48413 9.70546,0.44275 2.70434,-0.056 4.90971,-0.31064 6.61127,-0.76242 2.77196,-0.73591 3.38675,-1.61784 1.87353,-2.64169 -0.78919,-0.49759 -2.00028,-0.91325 -3.63224,-1.24812 -2.70691,-0.55542 -5.4427,-0.87941 -8.21759,-0.97439 -2.77232,-0.0949 -6.38748,0.14627 -10.86946,0.72618 -6.6715,0.88095 -13.31679,1.01463 -19.85457,0.39749 -6.43141,-0.5993 -13.04559,-1.63447 -19.79212,-3.09094 -6.82592,-1.4736 -11.45826,-2.90095 -13.94953,-4.28347 -3.37925,-1.85317 -2.96738,-3.22257 1.14981,-4.12973 1.42276,-0.31344 3.19198,-0.52707 5.30887,-0.64174 2.07491,-0.13099 4.5307,-0.15741 7.37162,-0.0794 -0.45722,-0.25351 -0.73544,-0.45733 -0.83571,-0.61184 -0.0802,-0.1585 0.0166,-0.26808 0.29048,-0.32883 0.82077,-0.1819 2.44849,-0.14089 4.89001,0.12332 2.38932,0.25295 5.8038,0.82932 10.27286,1.73557 0,0 4.5771,0.92817 4.5771,0.92817 4.12998,0.83752 6.80238,1.44722 7.99164,1.82436 2.2679,0.73357 2.87579,1.23007 1.80718,1.48552 -0.72062,0.17229 -2.08136,0.17497 -4.07847,0.008 -1.99347,-0.16663 -4.25567,-0.47572 -6.77994,-0.92582"
         id="path10005" />
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer1"
       inkscape:label="ExtraImages"
       style="display:inline">
      <g
         sodipodi:type="inkscape:box3d"
         style="fill:#f0f0f0;fill-opacity:0.51111115;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
         id="g3195"
         inkscape:perspectiveID="#perspective5786"
         inkscape:corner0="0.4922944 : 0.12449455 : 0 : 1"
         inkscape:corner7="0.22235256 : 0.05733945 : 0.532878 : 1">
        <path
           sodipodi:type="inkscape:box3dside"
           id="path3205"
           style="fill:#afafde;fill-rule:evenodd;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:box3dsidetype="13"
           d="M 133.59629,232.51954 253.10212,281.92761 540.69439,200.92065 414.29968,175.31088 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path3197"
           style="fill:#353564;fill-rule:evenodd;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:box3dsidetype="6"
           d="m 133.59629,187.5183 0,45.00124 280.70339,-57.20866 0,-33.16019 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path3207"
           style="fill:#e9e9ff;fill-rule:evenodd;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:box3dsidetype="11"
           d="m 414.29968,142.15069 126.39471,20.50998 0,38.25998 -126.39471,-25.60977 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path3199"
           style="fill:#24b8eb;fill-opacity:1;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:box3dsidetype="5"
           d="M 133.59629,187.5183 253.10212,226.98839 540.69439,162.66067 414.29968,142.15069 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path3203"
           style="fill:#008bb8;fill-opacity:1;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:box3dsidetype="14"
           d="m 253.10212,226.98839 0,54.93922 287.59227,-81.00696 0,-38.25998 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path3201"
           style="fill:#00ade5;fill-opacity:1;stroke:#253237;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
           inkscape:box3dsidetype="3"
           d="m 133.59629,187.5183 119.50583,39.47009 0,54.93922 -119.50583,-49.40807 z" />
      </g>
      <g
         sodipodi:type="inkscape:box3d"
         style="fill:#24b8eb;fill-opacity:1;stroke:#253237;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
         id="g3998"
         inkscape:perspectiveID="#perspective4012"
         inkscape:corner0="0.4922944 : 0.24244228 : 0 : 1"
         inkscape:corner7="0.22235256 : 0.12449455 : 0.532878 : 1">
        <path
           sodipodi:type="inkscape:box3dside"
           id="path4008"
           style="fill:#afafde;fill-rule:evenodd;stroke:none"
           inkscape:box3dsidetype="13"
           d="M 133.59629,187.5183 253.10212,226.98839 540.69439,162.66067 414.29968,142.15069 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path4000"
           style="fill:#353564;fill-rule:evenodd;stroke:none"
           inkscape:box3dsidetype="6"
           d="m 133.59629,108.48046 0,79.03784 280.70339,-45.36761 0,-58.240838 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path4010"
           style="fill:#e9e9ff;fill-rule:evenodd;stroke:none"
           inkscape:box3dsidetype="11"
           d="m 414.29968,83.909852 126.39471,11.552957 0,67.197861 -126.39471,-20.50998 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path4002"
           style="fill:#24b8eb;fill-opacity:1"
           inkscape:box3dsidetype="5"
           d="M 133.59629,108.48046 253.10212,130.49599 540.69439,95.462809 414.29968,83.909852 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path4006"
           style="fill:#008bb8;fill-opacity:1"
           inkscape:box3dsidetype="14"
           d="m 253.10212,130.49599 0,96.4924 287.59227,-64.32772 0,-67.197861 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path4004"
           style="fill:#00ade5;fill-opacity:1"
           inkscape:box3dsidetype="3"
           d="m 133.59629,108.48046 119.50583,22.01553 0,96.4924 -119.50583,-39.47009 z" />
      </g>
      <g
         id="text4480"
         style="font-size:40px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Futura;-inkscape-font-specification:Futura Medium Italic"
         transform="matrix(0.80256968,0,0,0.80256968,38.124381,46.818937)">
        <path
           id="path4487"
           d="m 143.91526,210.9311 c 0,0 -1.18454,24.55103 -1.18454,24.55103 0,0 -2.20126,-0.90734 -2.20126,-0.90734 0,0 0.12991,-2.63169 0.12991,-2.63169 -0.93879,1.79036 -1.9065,2.47622 -2.90333,2.06429 -1.22136,-0.50473 -2.21392,-2.01843 -2.98056,-4.53883 -0.76506,-2.51517 -1.14847,-5.52448 -1.15142,-9.03501 -0.003,-4.05437 0.43071,-7.21704 1.30508,-9.49091 0.89102,-2.27841 2.03847,-3.16512 3.445,-2.65101 0.66636,0.24361 1.23499,0.74282 1.70523,1.49806 0.47758,0.75889 0.96572,1.94715 1.46436,3.56555 0,0 0.15162,-3.23808 0.15162,-3.23808 0,0 2.21991,0.81394 2.21991,0.81394 m -2.70474,10.77799 c 9.4e-4,-2.20514 -0.23756,-4.08804 -0.71503,-5.64599 -0.47687,-1.57355 -1.09205,-2.50076 -1.84444,-2.78257 -0.81606,-0.3056 -1.49838,0.28994 -2.04775,1.783 -0.54795,1.50674 -0.82079,3.49941 -0.8196,5.97938 10e-4,2.16395 0.22976,4.0248 0.68657,5.58512 0.45737,1.56225 1.04603,2.48958 1.767,2.78117 0.80185,0.32429 1.49733,-0.26268 2.08586,-1.76474 0.59014,-1.54136 0.88635,-3.52038 0.88739,-5.93537"
           inkscape:connector-curvature="0" />
        <path
           id="path4489"
           d="m 157.92113,195.55223 c 0,0 -2.33546,45.22859 -2.33546,45.22859 0,0 -2.295,-0.94598 -2.295,-0.94598 0,0 0.13145,-2.66681 0.13145,-2.66681 -0.57101,1.07748 -1.06372,1.76286 -1.47866,2.05777 -0.40732,0.26153 -0.90972,0.26858 -1.50673,0.0219 -1.35398,-0.55953 -2.45507,-2.17899 -3.30672,-4.85578 -0.84966,-2.68836 -1.27154,-5.87559 -1.26707,-9.56978 0.005,-3.94788 0.47592,-7.05654 1.41645,-9.32935 0.94456,-2.28249 2.13425,-3.16573 3.57161,-2.64034 0.73875,0.27007 1.36089,0.8317 1.86557,1.68538 0.52627,0.88083 1.07659,2.25139 1.65095,4.11269 0,0 1.21171,-23.87173 1.21171,-23.87173 0,0 2.3419,0.77347 2.3419,0.77347 m -3.92922,30.73909 c 0.006,-2.16483 -0.24748,-4.01389 -0.7586,-5.54441 -0.51041,-1.52834 -1.18081,-2.44732 -2.00988,-2.75785 -0.89539,-0.33531 -1.63523,0.25817 -2.2205,1.77658 -0.58371,1.5144 -0.87707,3.59168 -0.88126,6.23313 -0.004,2.22916 0.24219,4.11919 0.73769,5.67293 0.49618,1.538 1.15865,2.47523 1.98877,2.81091 0.86704,0.35063 1.60413,-0.26672 2.21049,-1.85616 0.6149,-1.55511 0.92642,-3.66731 0.93329,-6.33513"
           inkscape:connector-curvature="0" />
        <path
           id="path4491"
           d="m 171.83406,200.14736 c 0,0 -2.55693,46.27694 -2.55693,46.27694 0,0 -2.40802,-0.99256 -2.40802,-0.99256 0,0 0.14408,-2.7277 0.14408,-2.7277 -0.60205,1.09661 -1.12096,1.79276 -1.55731,2.09015 -0.42825,0.26329 -0.95574,0.26517 -1.58195,0.006 -1.42008,-0.58685 -2.57217,-2.25538 -3.46001,-5.00292 -0.88568,-2.75922 -1.32126,-6.02433 -1.30829,-9.80383 0.0139,-4.03918 0.5153,-7.21532 1.50756,-9.53194 0.9966,-2.32672 2.24751,-3.21942 3.75541,-2.66825 0.77507,0.28335 1.4271,0.86403 1.95512,1.74255 0.55067,0.90656 1.1255,2.31463 1.72448,4.2253 0,0 1.32723,-24.42616 1.32723,-24.42616 0,0 2.45863,0.81203 2.45863,0.81203 m -4.19774,31.43101 c 0.0108,-2.21564 -0.25077,-4.11066 -0.78405,-5.68214 -0.53254,-1.5692 -1.23443,-2.51624 -2.10426,-2.84203 -0.93935,-0.35177 -1.71742,0.24846 -2.33525,1.79662 -0.61616,1.54398 -0.92878,3.66668 -0.93912,6.36944 -0.009,2.28085 0.24493,4.21722 0.76154,5.81207 0.51739,1.57879 1.21071,2.54466 2.08144,2.89675 0.90952,0.36781 1.68486,-0.25628 2.3252,-1.87659 0.64925,-1.5852 0.98121,-3.74375 0.9945,-6.47412"
           inkscape:connector-curvature="0" />
        <path
           id="path4493"
           d="m 182.69754,240.8285 c -0.0146,1.96517 0.25017,3.6903 0.79476,5.17797 0.55309,1.49296 1.26652,2.41699 2.14161,2.77118 1.20457,0.48759 2.14181,-0.2399 2.80954,-2.18822 0,0 1.92241,3.38486 1.92241,3.38486 -0.69601,1.93926 -1.40388,3.19849 -2.1237,3.78089 -0.72587,0.59658 -1.62503,0.67216 -2.69605,0.22915 -1.69176,-0.69977 -3.02386,-2.46883 -4.00169,-5.30474 -0.97533,-2.82862 -1.44791,-6.27057 -1.41959,-10.33544 0.0297,-4.25897 0.60073,-7.61925 1.71709,-10.08492 1.11376,-2.46107 2.51227,-3.38933 4.19884,-2.7735 1.64135,0.59937 2.93032,2.37929 3.86168,5.34244 0.94917,2.99527 1.40506,6.7054 1.36602,11.12012 -0.004,0.4603 -0.0226,1.20346 -0.0554,2.22925 0,0 -8.51549,-3.34904 -8.51549,-3.34904 m 5.94733,-2.7777 c -0.23979,-4.27417 -1.16688,-6.71401 -2.77464,-7.31554 -1.51391,-0.56637 -2.51126,1.13572 -2.99678,5.09537 0,0 5.77142,2.22017 5.77142,2.22017"
           inkscape:connector-curvature="0" />
        <path
           id="path4495"
           d="m 197.8251,230.69747 c 0,0 -0.14702,2.52361 -0.14702,2.52361 0.93046,-1.84506 1.99597,-2.55128 3.19747,-2.11217 0.72975,0.26675 1.28917,0.79597 1.67724,1.58783 0.3889,0.75353 0.73113,2.03235 1.02645,3.8365 1.19073,-2.4989 2.4622,-3.5065 3.8146,-3.01217 2.35158,0.85962 3.50317,3.84522 3.4413,8.9453 -0.006,0.5155 -0.0362,1.23097 -0.0897,2.14616 -0.0451,0.91806 -0.10965,2.04698 -0.19366,3.38638 0,0 -0.99233,15.02936 -0.99233,15.02936 0,0 -2.76874,-1.14125 -2.76874,-1.14125 0,0 1.03619,-15.71489 1.03619,-15.71489 0.0927,-1.46905 0.14324,-2.55901 0.15154,-3.26921 0.0283,-2.42778 -0.47649,-3.83675 -1.51169,-4.22448 -0.40812,-0.15281 -0.76332,-0.13757 -1.06576,0.0453 -0.30191,0.16313 -0.5639,0.50867 -0.78607,1.0364 -0.21349,0.51078 -0.39577,1.22001 -0.54687,2.1275 -0.14253,0.89037 -0.2581,1.97722 -0.34672,3.26042 0,0 -0.95735,15.07915 -0.95735,15.07915 0,0 -2.70807,-1.11624 -2.70807,-1.11624 0,0 1.01402,-15.95745 1.01402,-15.95745 0.0892,-1.45406 0.1367,-2.45477 0.14245,-3.00134 0.024,-2.28494 -0.48377,-3.62276 -1.52072,-4.01114 -1.49609,-0.56028 -2.39114,1.58906 -2.6901,6.4369 0,0 -0.93279,14.88957 -0.93279,14.88957 0,0 -2.64897,-1.09188 -2.64897,-1.09188 0,0 1.64547,-26.69011 1.64547,-26.69011 0,0 2.75982,1.01191 2.75982,1.01191"
           inkscape:connector-curvature="0" />
        <path
           id="path4497"
           d="m 227.47251,241.56788 c 0,0 -1.96817,28.03272 -1.96817,28.03272 0,0 -2.9137,-1.201 -2.9137,-1.201 0,0 0.21426,-3.00044 0.21426,-3.00044 -1.27606,1.97872 -2.57236,2.69156 -3.88932,2.14733 -1.61264,-0.66642 -2.90516,-2.46805 -3.88202,-5.40218 -0.97452,-2.92712 -1.43562,-6.39083 -1.38499,-10.40048 0.0585,-4.63168 0.68291,-8.21622 1.87744,-10.75721 1.21742,-2.54665 2.75422,-3.48611 4.61431,-2.80621 0.88173,0.32234 1.62982,0.93102 2.24322,1.82656 0.62325,0.90039 1.2539,2.2934 1.89185,4.18002 0,0 0.25313,-3.69854 0.25313,-3.69854 0,0 2.94399,1.07943 2.94399,1.07943 m -3.77279,12.16064 c 0.0361,-2.52408 -0.25136,-4.69591 -0.86185,-6.51188 -0.60933,-1.83342 -1.41259,-2.93599 -2.4081,-3.30885 -1.07928,-0.40417 -1.99466,0.23144 -2.74726,1.90206 -0.75064,1.6857 -1.14372,3.94496 -1.18087,6.77954 -0.0324,2.47309 0.24184,4.61564 0.82339,6.43108 0.58235,1.81801 1.34902,2.92014 2.30157,3.30538 1.05986,0.42865 1.99317,-0.19242 2.79915,-1.86824 0.80908,-1.72138 1.23437,-3.96512 1.27397,-6.72909"
           inkscape:connector-curvature="0" />
        <path
           id="path4499"
           d="m 241.15171,249.44072 c 0,0 -0.51108,6.85965 -0.51108,6.85965 -0.59993,-2.04325 -1.1799,-3.56582 -1.73987,-4.56859 -0.55027,-0.97708 -1.20738,-1.6081 -1.97059,-1.89367 -1.15517,-0.43214 -2.11644,0.17099 -2.88523,1.80464 -0.76653,1.62888 -1.17268,3.9367 -1.22011,6.9248 -0.0445,2.80119 0.26393,5.17511 0.92596,7.12607 0.67183,1.97819 1.56355,3.1933 2.67726,3.64408 1.07168,0.4338 2.20133,-0.1552 3.39005,-1.77327 0,0 -0.52436,7.03659 -0.52436,7.03659 -1.19607,0.58312 -2.32359,0.65405 -3.38352,0.21562 -1.8828,-0.77879 -3.38549,-2.78338 -4.51401,-6.01055 -1.11646,-3.21472 -1.63998,-7.00391 -1.57276,-11.37894 0.0692,-4.50383 0.75204,-8.03336 2.05324,-10.59293 1.31708,-2.58949 2.92634,-3.54286 4.83129,-2.8473 1.56535,0.57162 3.04724,2.3875 4.44373,5.4538"
           inkscape:connector-curvature="0" />
        <path
           id="path4501"
           d="m 252.58194,254.09736 c 0,0 -1.87702,3.28085 -1.87702,3.28085 -0.81074,-1.97994 -1.57331,-3.10222 -2.28776,-3.36939 -0.48496,-0.18133 -0.8941,-0.0281 -1.22769,0.45901 -0.32335,0.4692 -0.49289,1.14326 -0.50888,2.02239 -0.0156,0.858 0.10368,1.63024 0.35802,2.31723 0.25411,0.70838 0.79385,1.73768 1.62048,3.08984 1.18234,1.95741 1.96886,3.63812 2.35695,5.03831 0.41755,1.39168 0.60783,3.06493 0.57059,5.01782 -0.0537,2.81157 -0.54165,4.884 -1.46175,6.216 -0.93573,1.29895 -2.12289,1.64879 -3.55906,1.05475 -1.94572,-0.80482 -3.51487,-3.40136 -4.71379,-7.78467 0,0 2.0849,-2.32202 2.0849,-2.32202 0.79461,2.55648 1.66718,4.02867 2.61873,4.41396 0.53823,0.21794 0.97427,0.0795 1.30775,-0.41609 0.34335,-0.49234 0.52447,-1.23998 0.54307,-2.24271 0.0163,-0.87766 -0.10823,-1.64301 -0.37334,-2.29558 -0.12777,-0.32424 -0.35307,-0.79218 -0.67573,-1.40353 -0.32239,-0.61081 -0.7609,-1.36144 -1.31509,-2.25129 -0.97613,-1.62012 -1.6453,-3.08635 -2.00922,-4.40115 -0.36254,-1.37616 -0.52806,-2.94843 -0.49678,-4.7184 0.0471,-2.66732 0.52729,-4.71397 1.4427,-6.14168 0.91845,-1.4324 2.06564,-1.8996 3.44365,-1.39645 1.52731,0.55773 2.91459,2.50016 4.15927,5.8328"
           inkscape:connector-curvature="0" />
      </g>
      <g
         transform="matrix(0.74694175,0,0,0.74694175,45.485062,44.593966)"
         style="font-size:40px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Futura;-inkscape-font-specification:Futura Medium Italic"
         id="text4949">
        <path
           inkscape:connector-curvature="0"
           d="m 142.69979,137.10297 c 0,0 -1.02955,33.67577 -1.02955,33.67577 0,0 -1.95085,-0.57539 -1.95085,-0.57539 0,0 0.11438,-3.62641 0.11438,-3.62641 -0.83178,2.72212 -1.69018,3.94864 -2.57494,3.68641 -1.08457,-0.32145 -1.96585,-2.08912 -2.6458,-5.29794 -0.67825,-3.20078 -1.01674,-7.18681 -1.01674,-11.96409 0,-5.51039 0.38729,-9.93148 1.16353,-13.27043 0.79003,-3.34576 1.80543,-4.8788 3.04874,-4.59076 0.58877,0.13642 1.0911,0.64686 1.50651,1.53207 0.42191,0.88799 0.85328,2.3539 1.29417,4.39917 0,0 0.13239,-4.42502 0.13239,-4.42502 0,0 1.95816,0.45662 1.95816,0.45662 m -2.38162,15.3911 c 0,-2.99293 -0.21149,-5.4766 -0.63396,-7.44868 -0.42183,-1.99292 -0.96573,-3.06948 -1.63097,-3.23169 -0.72176,-0.17595 -1.32564,0.83047 -1.81241,3.01599 -0.4859,2.20539 -0.72852,4.99168 -0.72852,8.36184 0,2.94297 0.20217,5.40768 0.60697,7.39634 0.40539,1.99165 0.92751,3.07935 1.56702,3.26122 0.71103,0.20221 1.32739,-0.80489 1.84844,-3.02486 0.52203,-2.27207 0.78343,-5.04988 0.78343,-8.33016"
           id="path4956" />
        <path
           inkscape:connector-curvature="0"
           d="m 154.95323,112.41486 c 0,0 -1.92623,61.71348 -1.92623,61.71348 0,0 -2.02305,-0.59669 -2.02305,-0.59669 0,0 0.10998,-3.66649 0.10998,-3.66649 -0.50064,1.63638 -0.93339,2.71678 -1.29856,3.24286 -0.35864,0.4785 -0.80173,0.63929 -1.32886,0.48305 -1.196,-0.35447 -2.17072,-2.22885 -2.92647,-5.61729 -0.75369,-3.40336 -1.12977,-7.61039 -1.12977,-12.62806 0,-5.35535 0.41192,-9.70405 1.23761,-13.0536 0.82815,-3.35953 1.87288,-4.89719 3.13661,-4.60442 0.64921,0.15043 1.19644,0.72801 1.64111,1.73364 0.46368,1.03603 0.94955,2.72617 1.45772,5.07233 0,0 1.00373,-32.45575 1.00373,-32.45575 0,0 2.04618,0.37694 2.04618,0.37694 m -3.36226,42.52286 c -1e-5,-2.93233 -0.2264,-5.35968 -0.67863,-7.2797 -0.45151,-1.91688 -1.04224,-2.96322 -1.7713,-3.14099 -0.78768,-0.19203 -1.43735,0.82649 -1.94996,3.05208 -0.51168,2.22151 -0.76716,5.12229 -0.76715,8.70541 -1e-5,3.02634 0.21939,5.52006 0.65871,7.48353 0.44002,1.94232 1.02578,3.01856 1.75821,3.2268 0.76475,0.21744 1.41278,-0.84157 1.94329,-3.18083 0.53762,-2.29319 0.80682,-5.24972 0.80683,-8.8663"
           id="path4958" />
        <path
           inkscape:connector-curvature="0"
           d="m 167.06579,114.64626 c 0,0 -2.00992,63.02991 -2.00992,63.02991 0,0 -2.11064,-0.62251 -2.11064,-0.62251 0,0 0.11473,-3.74419 0.11473,-3.74419 -0.52227,1.66819 -0.9737,2.76889 -1.35463,3.30386 -0.37409,0.4864 -0.83626,0.64776 -1.38608,0.4848 -1.24739,-0.36971 -2.2639,-2.29008 -3.052,-5.75504 -0.78591,-3.47998 -1.17805,-7.77816 -1.17805,-12.90181 0,-5.46847 0.42951,-9.90682 1.2905,-13.32287 0.86362,-3.42644 1.95315,-4.99145 3.27121,-4.6861 0.67716,0.15691 1.24799,0.74958 1.71185,1.77894 0.48371,1.06055 0.99058,2.78934 1.52074,5.18839 0,0 1.04721,-33.14671 1.04721,-33.14671 0,0 2.13508,0.39333 2.13508,0.39333 m -3.50816,43.4193 c -1e-5,-2.99509 -0.23619,-5.47563 -0.70797,-7.43918 -0.471,-1.96028 -1.08722,-3.0321 -1.84771,-3.21754 -0.82158,-0.20029 -1.49917,0.83644 -2.03379,3.10653 -0.53362,2.26586 -0.80004,5.22673 -0.80004,8.88581 0,3.0905 0.2288,5.6384 0.68696,7.64617 0.4589,1.98625 1.06983,3.08896 1.83376,3.30617 0.79768,0.2268 1.47367,-0.85081 2.02708,-3.2368 0.56086,-2.33898 0.8417,-5.35718 0.84171,-9.05116"
           id="path4960" />
        <path
           inkscape:connector-curvature="0"
           d="m 177.90406,167.53396 c 0,0 -1.88635,13.37534 -1.88635,13.37534 0,0 -2.4798,-0.7314 -2.4798,-0.7314 0,0 8.5941,-61.40315 8.5941,-61.40315 0,0 5.49381,65.55828 5.49381,65.55828 0,0 -2.47606,-0.73029 -2.47606,-0.73029 0,0 -1.15325,-14.41683 -1.15325,-14.41683 0,0 -6.09245,-1.65195 -6.09245,-1.65195 m 0.99827,-7.3414 c 0,0 4.43719,1.14553 4.43719,1.14553 0,0 -1.69728,-21.643 -1.69728,-21.643 0,0 -2.73991,20.49747 -2.73991,20.49747"
           id="path4962" />
        <path
           inkscape:connector-curvature="0"
           d="m 192.75692,148.77584 c 0,0 -0.12697,3.86553 -0.12697,3.86553 1.01023,-2.96327 2.07712,-4.3188 3.20127,-4.05837 1.34306,0.31118 2.46566,2.30556 3.36532,5.99023 0.90231,3.69569 1.35448,8.20525 1.35449,13.52042 -1e-5,5.89988 -0.51724,10.72485 -1.54904,14.46536 -1.02115,3.70347 -2.28559,5.32671 -3.79028,4.88074 -0.76729,-0.22741 -1.39457,-0.86013 -1.88273,-1.89728 -0.50856,-1.0417 -1.04794,-2.81175 -1.618,-5.30795 0,0 -0.8741,26.18906 -0.8741,26.18906 0,0 -2.31502,-0.7646 -2.31502,-0.7646 0,0 1.90518,-57.42645 1.90518,-57.42645 0,0 2.32988,0.54331 2.32988,0.54331 m 5.40346,19.04889 c -1e-5,-3.30891 -0.25849,-6.08753 -0.7748,-8.33299 -0.51544,-2.26802 -1.17277,-3.49809 -1.97107,-3.69274 -0.95235,-0.23218 -1.74603,0.8618 -2.38229,3.27753 -0.63493,2.41066 -0.95189,5.48779 -0.95188,9.2352 -1e-5,3.27574 0.26762,5.98325 0.80361,8.12542 0.53693,2.19855 1.23072,3.42012 2.08244,3.66228 0.8969,0.25501 1.65351,-0.79727 2.26877,-3.16101 0.61649,-2.42148 0.92521,-5.46059 0.92522,-9.11369"
           id="path4964" />
        <path
           inkscape:connector-curvature="0"
           d="m 214.24305,153.78621 c 0,0 -1.31435,38.00974 -1.31435,38.00974 0,0 -2.48877,-0.73404 -2.48877,-0.73404 0,0 0.14585,-4.09022 0.14585,-4.09022 -1.06049,3.03838 -2.15448,4.38616 -3.28161,4.0521 -1.38103,-0.40932 -2.50267,-2.44113 -3.36776,-6.08907 -0.86265,-3.63764 -1.29306,-8.14604 -1.29306,-13.53286 0,-6.21349 0.49246,-11.18485 1.4798,-14.92315 1.00522,-3.74687 2.29778,-5.44224 3.88129,-5.07538 0.75019,0.17382 1.39041,0.76705 1.91998,1.78061 0.53794,1.01712 1.08806,2.68746 1.65043,5.01282 0,0 0.1689,-4.99337 0.1689,-4.99337 0,0 2.4993,0.58282 2.4993,0.58282 m -3.03948,17.3009 c 0,-3.38017 -0.26974,-6.19298 -0.8085,-8.43545 -0.53784,-2.26554 -1.23115,-3.50039 -2.07889,-3.7071 -0.91948,-0.22416 -1.68853,0.89015 -2.30828,3.33872 -0.61851,2.47046 -0.9273,5.60476 -0.92729,9.40665 -1e-5,3.31998 0.25729,6.10848 0.77254,8.36836 0.51611,2.2637 1.18097,3.51257 1.99554,3.74422 0.90594,0.25764 1.69151,-0.8539 2.35579,-3.33921 0.6657,-2.54472 0.99909,-5.67149 0.99909,-9.37619"
           id="path4966" />
        <path
           inkscape:connector-curvature="0"
           d="m 225.85606,160.27285 c 0,0 -0.32974,9.25891 -0.32974,9.25891 -0.53316,-2.54039 -1.04195,-4.39401 -1.52648,-5.56273 -0.47601,-1.13738 -1.03693,-1.78408 -1.68229,-1.94111 -0.97722,-0.23772 -1.77766,0.84395 -2.40266,3.24086 -0.62377,2.3922 -0.9352,5.58535 -0.93519,9.58301 -1e-5,3.75126 0.29218,6.83011 0.87738,9.23994 0.594,2.44396 1.36325,3.80207 2.30903,4.07147 0.90969,0.25913 1.85325,-0.86598 2.83097,-3.38173 0,0 -0.34058,9.56174 -0.34058,9.56174 -1.00008,1.14095 -1.95034,1.57604 -2.85121,1.30856 -1.60121,-0.47541 -2.8986,-2.70866 -3.8959,-6.69199 -0.98649,-3.96852 -1.47857,-8.8796 -1.47857,-14.74267 0,-6.02664 0.53026,-10.92676 1.59348,-14.71003 1.07455,-3.82167 2.4152,-5.55208 4.02537,-5.1799 1.32215,0.30565 2.59117,2.28435 3.80639,5.94567"
           id="path4968" />
        <path
           inkscape:connector-curvature="0"
           d="m 232.48778,126.69839 c 0,0 -1.2248,34.40689 -1.2248,34.40689 1.06442,-2.62651 2.14849,-3.81555 3.25237,-3.55982 1.11579,0.25853 2.00797,1.49263 2.67467,3.70508 0.69253,2.19472 1.03936,4.94487 1.03937,8.24689 -1e-5,0.79026 -0.0123,1.69031 -0.0367,2.70007 -0.0245,0.98152 -0.0572,2.10196 -0.0979,3.36123 0,0 -0.84363,23.41094 -0.84363,23.41094 0,0 -2.68728,-0.79259 -2.68728,-0.79259 0,0 0.84874,-23.81693 0.84874,-23.81693 0.0486,-1.28016 0.0728,-2.4402 0.0729,-3.48004 -1e-5,-3.54092 -0.59854,-5.45732 -1.79226,-5.74838 -1.70224,-0.415 -2.68971,3.34888 -2.969,11.28478 0,0 -0.72901,20.41307 -0.72901,20.41307 0,0 -2.62726,-0.77489 -2.62726,-0.77489 0,0 2.47212,-69.84409 2.47212,-69.84409 0,0 2.6478,0.48779 2.6478,0.48779"
           id="path4970" />
        <path
           inkscape:connector-curvature="0"
           d="m 243.86302,184.18013 c 0,2.96077 0.29923,5.4779 0.89852,7.55428 0.60873,2.08253 1.38589,3.25982 2.33269,3.52952 1.30314,0.3712 2.30716,-1.00805 3.00927,-4.14387 0,0 2.10256,4.51871 2.10256,4.51871 -0.73212,3.13364 -1.48381,5.24718 -2.25495,6.34396 -0.77779,1.12041 -1.74744,1.50699 -2.90723,1.16263 -1.83216,-0.54398 -3.2847,-2.8112 -4.36263,-6.79404 -1.07436,-3.96967 -1.61021,-9.01104 -1.61021,-15.13396 0,-6.40637 0.58948,-11.61792 1.77168,-15.6456 1.17819,-4.01578 2.67365,-5.82003 4.49073,-5.40001 1.7681,0.40873 3.16829,2.68802 4.19578,6.84588 1.04775,4.20396 1.57288,9.6313 1.57289,16.27199 -1e-5,0.69296 -0.0128,1.81558 -0.0385,3.36775 0,0 -9.20064,-2.47724 -9.20064,-2.47724 m 6.38024,-5.95778 c -0.29639,-6.34049 -1.31473,-9.72032 -3.04833,-10.14211 -1.63263,-0.39717 -2.69156,2.45136 -3.18233,8.53724 0,0 6.23066,1.60487 6.23066,1.60487"
           id="path4972" />
      </g>
      <g
         id="text5788"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Sans"
         transform="matrix(0.87020295,0,0,0.87020295,36.583926,33.755817)">
        <path
           id="path5793"
           d="m 292.16734,221.79451 c 0,0 0.079,32.92107 0.079,32.92107 0,0 6.83396,-1.8594 6.83396,-1.8594 0.46993,-0.12786 0.80691,-0.0884 1.01132,0.11827 0.20419,0.18473 0.30715,0.48443 0.30895,0.89923 0.002,0.39306 -0.0986,0.7486 -0.30066,1.06669 -0.20232,0.31832 -0.53842,0.54236 -1.00864,0.67204 0,0 -15.85959,4.37404 -15.85959,4.37404 -0.49118,0.13546 -0.8436,0.0983 -1.05684,-0.11192 -0.21335,-0.21022 -0.32005,-0.51707 -0.32005,-0.92043 0,-0.42568 0.10663,-0.79078 0.31991,-1.09527 0.21307,-0.32663 0.56522,-0.55672 1.05608,-0.69027 0,0 6.99856,-1.90419 6.99856,-1.90419 0,0 -0.0639,-33.01316 -0.0639,-33.01316 0,0 -6.94528,1.58452 -6.94528,1.58452 -0.48709,0.11116 -0.83656,0.0697 -1.04802,-0.12452 -0.21157,-0.21626 -0.31738,-0.53384 -0.31738,-0.95255 0,-0.41857 0.10573,-0.77281 0.31723,-1.06267 0.2113,-0.3116 0.56052,-0.52201 1.04729,-0.63134 0,0 15.72034,-3.52906 15.72034,-3.52906 0.46618,-0.1046 0.80048,-0.0507 1.00326,0.16175 0.20255,0.1909 0.30468,0.4903 0.30646,0.89834 0.002,0.40818 -0.0977,0.76414 -0.29818,1.06788 -0.2008,0.28254 -0.53427,0.47704 -1.00074,0.58343 0,0 -6.78316,1.54752 -6.78316,1.54752"
           inkscape:connector-curvature="0" />
        <path
           id="path5795"
           d="m 310.82617,224.548 c 0,0 0.0183,2.71052 0.0183,2.71052 1.59486,-2.82856 3.1975,-4.42813 4.80917,-4.80918 0.96652,-0.22849 1.81505,-0.0602 2.54657,0.50362 0.73011,0.54196 1.34443,1.48928 1.84362,2.84195 0.81039,-1.66756 1.62919,-2.95534 2.45658,-3.86518 0.83957,-0.93171 1.68046,-1.49641 2.52294,-1.6956 1.31778,-0.31154 2.3707,0.0529 3.16143,1.09107 1.03734,1.32998 1.56558,2.9259 1.58639,4.79109 0,0 0.20434,18.33386 0.20434,18.33386 0,0 1.53013,-0.41632 1.53013,-0.41632 0.42981,-0.11694 0.739,-0.0757 0.92789,0.12381 0.18853,0.17852 0.2851,0.46568 0.2898,0.86158 0.004,0.37517 -0.0849,0.71339 -0.26782,1.01476 -0.18312,0.30159 -0.48957,0.51171 -0.91962,0.63032 0,0 -3.35086,0.92415 -3.35086,0.92415 0,0 -0.22279,-20.77656 -0.22279,-20.77656 -0.0143,-1.33018 -0.30714,-2.3628 -0.87909,-3.0991 -0.57267,-0.73709 -1.22837,-1.01732 -1.9678,-0.8398 -0.66827,0.16051 -1.37063,0.69532 -2.10748,1.60588 -0.73886,0.89188 -1.5757,2.51342 -2.51176,4.86946 0,0 0.15842,17.6379 0.15842,17.6379 0,0 1.54833,-0.42128 1.54833,-0.42128 0.44115,-0.12002 0.75819,-0.0792 0.95147,0.12232 0.19296,0.18032 0.29136,0.47108 0.29523,0.8724 0.004,0.38029 -0.0887,0.72347 -0.27704,1.02961 -0.18854,0.30636 -0.50335,0.52043 -0.94475,0.64217 0,0 -3.43946,0.94859 -3.43946,0.94859 0,0 -0.17831,-20.87173 -0.17831,-20.87173 -0.0121,-1.41164 -0.31784,-2.49778 -0.91785,-3.25983 -0.5861,-0.78757 -1.24345,-1.09429 -1.97265,-0.91922 -0.67099,0.16116 -1.3334,0.62756 -1.98734,1.40021 -0.90879,1.0908 -1.86103,2.82298 -2.85755,5.20088 0,0 0.12057,17.88402 0.12057,17.88402 0,0 1.61271,-0.43879 1.61271,-0.43879 0.45299,-0.12325 0.77823,-0.083 0.97608,0.1207 0.1976,0.18215 0.29787,0.47663 0.3009,0.88354 0.003,0.38558 -0.0926,0.73385 -0.28674,1.04496 -0.19419,0.31131 -0.51774,0.52949 -0.971,0.6545 0,0 -5.16143,1.42351 -5.16143,1.42351 -0.46029,0.12695 -0.79127,0.0881 -0.99256,-0.11674 -0.20137,-0.20491 -0.30318,-0.50235 -0.30537,-0.89222 -0.002,-0.41142 0.0958,-0.76345 0.29429,-1.05603 0.19822,-0.314 0.5275,-0.53357 0.98751,-0.65873 0,0 1.62837,-0.44305 1.62837,-0.44305 0,0 -0.14116,-22.4169 -0.14116,-22.4169 0,0 -1.62022,0.3912 -1.62022,0.3912 -0.4577,0.11052 -0.78681,0.0614 -0.98695,-0.14757 -0.20023,-0.209 -0.30151,-0.51693 -0.3038,-0.92368 -0.002,-0.38522 0.0954,-0.72992 0.29266,-1.034 0.19711,-0.30384 0.52454,-0.51011 0.98197,-0.61888 0,0 3.52575,-0.83819 3.52575,-0.83819"
           inkscape:connector-curvature="0" />
        <path
           id="path5797"
           d="m 350.89656,241.32467 c 0,0 -0.0589,-3.6804 -0.0589,-3.6804 -2.44263,3.80778 -5.10211,6.12062 -7.98027,6.91861 -2.10441,0.58347 -3.76815,0.25666 -4.98415,-0.98555 -1.21953,-1.26623 -1.84495,-3.04991 -1.87379,-5.34667 -0.0317,-2.52154 0.73085,-4.92487 2.28129,-7.20305 1.54219,-2.26605 3.8038,-3.77126 6.77195,-4.51991 0.7964,-0.20085 1.66062,-0.33746 2.59222,-0.41005 0.92884,-0.0925 1.93136,-0.11301 3.00698,-0.0616 0,0 -0.0657,-4.10694 -0.0657,-4.10694 -0.0222,-1.38732 -0.47413,-2.48748 -1.3571,-3.30238 -0.88479,-0.81652 -2.19971,-1.01605 -3.95,-0.59577 -1.34605,0.32326 -3.2353,1.35808 -5.67763,3.11343 -0.44361,0.31258 -0.72851,0.48429 -0.85424,0.51483 -0.22367,0.0544 -0.4211,-0.0207 -0.59224,-0.22543 -0.1572,-0.2081 -0.23822,-0.49632 -0.24303,-0.86451 -0.005,-0.34763 0.0618,-0.6405 0.19913,-0.87854 0.1918,-0.35344 0.97539,-0.96079 2.34657,-1.81956 2.14879,-1.36681 3.76798,-2.17692 4.86556,-2.43642 2.17117,-0.5133 3.8675,-0.11811 5.09661,1.18044 1.22539,1.27503 1.8531,2.9031 1.88568,4.88818 0,0 0.27554,16.79617 0.27554,16.79617 0,0 2.26031,-0.61499 2.26031,-0.61499 0.41544,-0.11304 0.71203,-0.0724 0.89013,0.12173 0.17763,0.17395 0.26972,0.45203 0.27631,0.83437 0.006,0.36231 -0.0756,0.68817 -0.24525,0.97765 -0.1699,0.28969 -0.46252,0.49188 -0.87818,0.60651 0,0 -3.98778,1.09982 -3.98778,1.09982 m -0.20304,-12.6875 c -0.80507,-0.13756 -1.65804,-0.17224 -2.55931,-0.10371 -0.90358,0.0688 -1.85617,0.23114 -2.85824,0.48756 -2.52482,0.64614 -4.49945,1.96292 -5.91531,3.95406 -1.07701,1.49735 -1.60605,3.09291 -1.58411,4.78359 0.0203,1.56816 0.45251,2.77768 1.29533,3.62647 0.85525,0.84341 2.07851,1.0467 3.66561,0.61257 1.51075,-0.41325 2.89832,-1.234 4.16372,-2.45986 1.27358,-1.2449 2.56786,-3.01121 3.88202,-5.29462 0,0 -0.0897,-5.60606 -0.0897,-5.60606"
           inkscape:connector-curvature="0" />
        <path
           id="path5799"
           d="m 375.34938,213.69585 c 0,0 -0.0974,-4.46393 -0.0974,-4.46393 0,0 3.68773,-0.87669 3.68773,-0.87669 0.37208,-0.0884 0.64113,-0.0368 0.8074,0.15502 0.16617,0.1917 0.25341,0.46963 0.26178,0.83387 0.008,0.34517 -0.066,0.6522 -0.22166,0.92112 -0.15581,0.26917 -0.41973,0.44869 -0.792,0.53856 0,0 -2.11132,0.50977 -2.11132,0.50977 0,0 0.54123,24.40071 0.54123,24.40071 0.0363,1.63856 -0.15744,3.16664 -0.58194,4.58541 -0.2835,0.94739 -0.76869,1.98351 -1.45663,3.10962 -0.68973,1.12896 -1.32331,1.97649 -1.90026,2.54121 -0.57809,0.56581 -1.35962,0.99328 -2.34591,1.28221 0,0 -4.61112,1.35073 -4.61112,1.35073 -0.39039,0.11434 -0.67276,0.0767 -0.84684,-0.11314 -0.17377,-0.16995 -0.26435,-0.44453 -0.27168,-0.82361 -0.007,-0.37906 0.0714,-0.71279 0.23628,-1.00117 0.16471,-0.28821 0.4423,-0.4887 0.83248,-0.60152 0,0 4.66707,-1.3197 4.66707,-1.3197 0.94729,-0.27395 1.78841,-0.89388 2.52391,-1.85846 0.74626,-0.96574 1.35024,-2.23429 1.81265,-3.80502 0.26003,-0.90063 0.37608,-1.98619 0.34838,-3.25697 0,0 -0.16086,-7.37517 -0.16086,-7.37517 -1.62758,4.07072 -3.80169,6.48925 -6.53059,7.23934 -2.23287,0.61374 -4.19888,-0.12311 -5.89159,-2.21938 -1.68617,-2.12737 -2.56457,-4.99526 -2.6305,-8.59335 -0.0658,-3.59204 0.69765,-6.85485 2.28324,-9.77979 1.5891,-2.91055 3.49618,-4.62319 5.71739,-5.14835 2.71476,-0.64182 4.95439,0.6184 6.73072,3.76863 m 0.16039,7.3538 c -0.0626,-2.87086 -0.7569,-5.1338 -2.0858,-6.79534 -1.32015,-1.66944 -2.87807,-2.29072 -4.67812,-1.8585 -1.80975,0.43462 -3.35087,1.81991 -4.62062,4.16259 -1.27628,2.33429 -1.88951,4.95932 -1.83504,7.86963 0.0549,2.93412 0.76232,5.25114 2.11916,6.94432 1.35246,1.66842 2.93958,2.25345 4.75697,1.76072 1.80761,-0.49005 3.33004,-1.90799 4.57015,-4.24741 1.2464,-2.3511 1.83598,-4.96126 1.7733,-7.83601"
           inkscape:connector-curvature="0" />
        <path
           id="path5801"
           d="m 400.95375,215.84309 c 0,0 -15.30351,3.94188 -15.30351,3.94188 0.34391,3.04783 1.23396,5.34503 2.66637,6.88627 1.43922,1.51372 3.17433,1.99038 5.19951,1.43641 1.12095,-0.30662 2.28367,-0.91984 3.48738,-1.83766 1.19883,-0.91409 2.16489,-1.95211 2.90025,-3.11439 0.2145,-0.34084 0.40349,-0.53306 0.56706,-0.57689 0.1868,-0.05 0.35355,0.0278 0.50028,0.23369 0.14614,0.18703 0.22361,0.43961 0.23247,0.75782 0.009,0.31828 -0.0759,0.65247 -0.25418,1.00277 -0.53474,1.08992 -1.51174,2.24633 -2.93533,3.4719 -1.41926,1.20943 -2.89777,2.0288 -4.43582,2.45524 -2.59183,0.71861 -4.80714,-0.0257 -6.63604,-2.24415 -1.8247,-2.25008 -2.7858,-5.3079 -2.87757,-9.16136 -0.0834,-3.50233 0.67052,-6.70553 2.2543,-9.60045 1.58612,-2.87997 3.57782,-4.59755 5.9692,-5.16295 2.44485,-0.578 4.47658,0.20903 6.10451,2.35191 1.62144,2.1165 2.47361,5.16594 2.56112,9.15996 m -1.55297,-1.99958 c -0.36339,-2.52164 -1.19348,-4.43925 -2.49343,-5.75652 -1.29227,-1.32421 -2.81005,-1.77891 -4.55736,-1.35935 -1.75678,0.42189 -3.25581,1.59979 -4.49431,3.53879 -1.24433,1.94813 -1.99432,4.30819 -2.24605,7.0779 0,0 13.79115,-3.50082 13.79115,-3.50082"
           inkscape:connector-curvature="0" />
      </g>
      <g
         transform="translate(1.4477142e-8,-14.516129)"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Sans"
         id="text6335">
        <path
           inkscape:connector-curvature="0"
           d="m 289.7812,172.74924 c 0,0 0,30.32096 0,30.32096 0,0 5.31622,-1.09403 5.31622,-1.09403 0.36864,-0.0759 0.6328,-0.009 0.79253,0.19948 0.15968,0.18869 0.23953,0.47439 0.23955,0.85707 -2e-5,0.36257 -0.0799,0.68117 -0.23955,0.95582 -0.15973,0.27468 -0.42389,0.45007 -0.79253,0.52616 0,0 -12.20372,2.51907 -12.20372,2.51907 -0.37097,0.0766 -0.63686,0.0102 -0.79765,-0.19916 -0.16081,-0.20937 -0.24121,-0.49598 -0.24121,-0.85983 0,-0.38404 0.0804,-0.7038 0.24121,-0.95925 0.16079,-0.27564 0.42668,-0.45161 0.79765,-0.52795 0,0 5.3343,-1.09775 5.3343,-1.09775 0,0 0,-30.33259 0,-30.33259 0,0 -5.3343,1.0578 -5.3343,1.0578 -0.37097,0.0736 -0.63686,0.0152 -0.79765,-0.17532 -0.16081,-0.21064 -0.24121,-0.50801 -0.24121,-0.89209 0,-0.38402 0.0804,-0.70312 0.24121,-0.9573 0.16079,-0.2743 0.42668,-0.44812 0.79765,-0.52149 0,0 12.20372,-2.41236 12.20372,-2.41236 0.36864,-0.0728 0.6328,-0.004 0.79253,0.20591 0.15968,0.19002 0.23953,0.47636 0.23955,0.85902 -2e-5,0.38273 -0.0799,0.71076 -0.23955,0.98409 -0.15973,0.25327 -0.42389,0.41645 -0.79253,0.48952 0,0 -5.31622,1.05422 -5.31622,1.05422"
           id="path6342" />
        <path
           inkscape:connector-curvature="0"
           d="m 304.56912,176.44974 c 0,0 0,2.56275 0,2.56275 1.30843,-2.57317 2.62214,-3.99091 3.94109,-4.25437 0.79339,-0.15843 1.48888,0.0539 2.08658,0.63694 0.5975,0.56281 1.09732,1.50612 1.49954,2.82986 0.68233,-1.5411 1.37053,-2.72191 2.0646,-3.54263 0.70597,-0.84286 1.41171,-1.33466 2.11721,-1.47559 1.10637,-0.22094 1.98741,0.19403 2.64338,1.24457 0.86213,1.3493 1.29307,2.9247 1.29309,4.72665 0,0 0,17.62938 0,17.62938 0,0 1.29225,-0.26593 1.29225,-0.26593 0.36384,-0.0749 0.62457,-0.008 0.78222,0.19923 0.1576,0.18768 0.23641,0.47161 0.23643,0.8518 -2e-5,0.3602 -0.0789,0.67662 -0.23643,0.94926 -0.15765,0.27268 -0.41838,0.44656 -0.78222,0.52167 0,0 -2.82218,0.58254 -2.82218,0.58254 0,0 0,-19.91946 0,-19.91946 -2e-5,-1.28187 -0.2369,-2.29585 -0.71072,-3.04209 -0.47398,-0.74635 -1.02099,-1.0575 -1.64109,-0.93328 -0.55951,0.11212 -1.14958,0.58117 -1.77024,1.40731 -0.62086,0.80639 -1.32718,2.30204 -2.11901,4.48741 0,0 0,16.76074 0,16.76074 0,0 1.27899,-0.26321 1.27899,-0.26321 0.36526,-0.0752 0.62699,-0.009 0.78525,0.19931 0.15823,0.18797 0.23733,0.47243 0.23735,0.85335 -2e-5,0.3609 -0.0792,0.67796 -0.23735,0.95119 -0.15826,0.27327 -0.41999,0.4476 -0.78525,0.52299 0,0 -2.83314,0.58481 -2.83314,0.58481 0,0 0,-19.77746 0,-19.77746 -1e-5,-1.34457 -0.2439,-2.39933 -0.73178,-3.16444 -0.47581,-0.78777 -1.01275,-1.12183 -1.61085,-1.00201 -0.54945,0.11011 -1.09295,0.51024 -1.63047,1.20051 -0.74545,0.97331 -1.52785,2.54716 -2.34725,4.72194 0,0 0,16.79351 0,16.79351 0,0 1.30233,-0.26801 1.30233,-0.26801 0.3667,-0.0755 0.62946,-0.009 0.78832,0.19938 0.15885,0.18827 0.23827,0.47325 0.23828,0.85492 -1e-5,0.3616 -0.0794,0.6793 -0.23828,0.95314 -0.15886,0.27387 -0.42162,0.44864 -0.78832,0.52433 0,0 -4.14836,0.8563 -4.14836,0.8563 -0.36753,0.0759 -0.63097,0.01 -0.79027,-0.199 -0.15931,-0.20855 -0.23897,-0.49391 -0.23897,-0.85606 0,-0.38226 0.0796,-0.70045 0.23897,-0.95457 0.1593,-0.2742 0.42274,-0.44911 0.79027,-0.52474 0,0 1.30416,-0.26839 1.30416,-0.26839 0,0 0,-21.02253 0,-21.02253 0,0 -1.30416,0.26159 -1.30416,0.26159 -0.36753,0.0737 -0.63097,0.006 -0.79027,-0.20361 -0.15931,-0.20947 -0.23897,-0.50535 -0.23897,-0.88764 0,-0.36212 0.0796,-0.67984 0.23897,-0.95317 0.1593,-0.27324 0.42274,-0.44662 0.79027,-0.52013 0,0 2.84603,-0.56906 2.84603,-0.56906"
           id="path6344" />
        <path
           inkscape:connector-curvature="0"
           d="m 338.26689,195.60376 c 0,0 0,-3.61767 0,-3.61767 -2.20252,3.52388 -4.55814,5.54631 -7.06742,6.06489 -1.82363,0.37688 -3.24985,-0.0877 -4.27786,-1.39461 -1.02852,-1.32754 -1.54299,-3.10136 -1.54298,-5.32096 -10e-6,-2.43953 0.67785,-4.70711 2.03287,-6.80168 1.35409,-2.09312 3.3292,-3.40199 5.92348,-3.92714 0.69926,-0.14153 1.45854,-0.21543 2.27777,-0.22172 0.81887,-0.0262 1.70362,0.0239 2.65414,0.15025 0,0 0,-4.06615 0,-4.06615 -2e-5,-1.37528 -0.38498,-2.49383 -1.15511,-3.35589 -0.77046,-0.86234 -1.92668,-1.1392 -3.46933,-0.83014 -1.18192,0.23683 -2.84139,1.13844 -4.97959,2.70598 -0.38682,0.2775 -0.63466,0.4272 -0.74347,0.44903 -0.19348,0.0389 -0.36277,-0.047 -0.50789,-0.25774 -0.13305,-0.2131 -0.19957,-0.49956 -0.19957,-0.85935 0,-0.33976 0.0605,-0.6217 0.18143,-0.84583 0.1693,-0.33368 0.85246,-0.88012 2.04895,-1.63902 1.8839,-1.21542 3.30773,-1.91909 4.27248,-2.1118 1.91602,-0.38264 3.40901,0.10672 4.47992,1.46726 1.07032,1.33994 1.60526,2.99588 1.60527,4.96838 0,0 0,16.61698 0,16.61698 0,0 2.01829,-0.41534 2.01829,-0.41534 0.37219,-0.0766 0.63629,-0.0115 0.79235,0.19532 0.15601,0.18689 0.23402,0.46947 0.23404,0.84774 -2e-5,0.35837 -0.0781,0.67311 -0.23404,0.9442 -0.15606,0.27114 -0.42016,0.44511 -0.79235,0.52194 0,0 -3.55138,0.73307 -3.55138,0.73307 m 0,-12.49741 c -0.70985,-0.19458 -1.46206,-0.29097 -2.25669,-0.2891 -0.79498,0.002 -1.63244,0.0922 -2.51243,0.27083 -2.20778,0.44829 -3.93465,1.58796 -5.17941,3.41949 -0.94315,1.37125 -1.41489,2.87666 -1.41489,4.51572 0,1.51915 0.35684,2.72513 1.07033,3.61771 0.72532,0.8898 1.77657,1.19268 3.15324,0.90903 1.31539,-0.27102 2.53349,-0.95103 3.65445,-2.03968 1.13235,-1.11048 2.29417,-2.73492 3.4854,-4.87285 0,0 0,-5.53115 0,-5.53115"
           id="path6346" />
        <path
           inkscape:connector-curvature="0"
           d="m 361.03362,169.73799 c 0,0 0,-4.57811 0,-4.57811 0,0 3.51111,-0.70203 3.51111,-0.70203 0.35609,-0.0712 0.61126,-0.003 0.76556,0.20328 0.15424,0.20673 0.23137,0.49814 0.23139,0.87424 -2e-5,0.35635 -0.0772,0.66876 -0.23139,0.93722 -0.1543,0.26853 -0.40947,0.4385 -0.76556,0.50991 0,0 -2.01322,0.40381 -2.01322,0.40381 0,0 0,24.93239 0,24.93239 -2e-5,1.66412 -0.21394,3.19438 -0.64182,4.59098 -0.28533,0.93124 -0.76094,1.93198 -1.42698,3.00242 -0.66629,1.07077 -1.27327,1.8618 -1.82089,2.37289 -0.5478,0.51123 -1.2804,0.8629 -2.198,1.05498 0,0 -4.25995,0.89161 -4.25995,0.89161 -0.3584,0.075 -0.61529,0.01 -0.77062,-0.19631 -0.15536,-0.18605 -0.23304,-0.46782 -0.23304,-0.8453 0,-0.37749 0.0777,-0.70165 0.23304,-0.9725 0.15533,-0.27081 0.41222,-0.44362 0.77062,-0.51839 0,0 4.31359,-0.87039 4.31359,-0.87039 0.88183,-0.18403 1.67398,-0.72615 2.37652,-1.6262 0.71418,-0.90221 1.3032,-2.12502 1.76716,-3.66839 0.26165,-0.88672 0.39248,-1.97415 0.39248,-3.26235 0,0 0,-7.49145 0,-7.49145 -1.60613,3.99699 -3.67816,6.25834 -6.21753,6.78211 -2.06489,0.42591 -3.85102,-0.4773 -5.35762,-2.71118 -1.49577,-2.25793 -2.24408,-5.18732 -2.24408,-8.78698 0,-3.59961 0.74831,-6.82288 2.24408,-9.66819 1.5066,-2.84552 3.29273,-4.47385 5.35762,-4.88629 2.53937,-0.50714 4.6114,0.90308 6.21753,4.22817 m 0,7.52118 c 0,-2.93314 -0.60662,-5.28816 -1.82036,-7.06588 -1.20261,-1.78115 -2.6443,-2.50382 -4.3256,-2.16698 -1.68272,0.33717 -3.12789,1.64976 -4.33499,3.9386 -1.20785,2.27039 -1.81204,4.86726 -1.81204,7.78958 0,2.94224 0.60419,5.31369 1.81204,7.11356 1.2071,1.77893 2.65227,2.49487 4.33499,2.14886 1.6813,-0.34572 3.12299,-1.65368 4.3256,-3.9231 1.21374,-2.29027 1.82036,-4.90147 1.82036,-7.83464"
           id="path6348" />
        <path
           inkscape:connector-curvature="0"
           d="m 385.85186,173.58032 c 0,0 -15.13765,3.07797 -15.13765,3.07797 0.26034,3.16944 1.06482,5.60432 2.41279,7.30409 1.35885,1.67644 3.03546,2.3087 5.02902,1.89796 1.10796,-0.22828 2.26831,-0.77304 3.48095,-1.634 1.21188,-0.86041 2.19967,-1.87147 2.96371,-3.03319 0.22326,-0.34131 0.41713,-0.52883 0.58164,-0.56257 0.18794,-0.0385 0.3524,0.0557 0.49337,0.2829 0.14092,0.20743 0.21138,0.47854 0.21141,0.81334 -3e-5,0.33482 -0.094,0.67909 -0.28188,1.03285 -0.56391,1.10093 -1.56872,2.23389 -3.01514,3.39933 -1.43573,1.14415 -2.91371,1.87353 -4.43406,2.18773 -2.54834,0.52665 -4.68036,-0.42556 -6.39472,-2.85877 -1.70402,-2.4575 -2.55658,-5.67472 -2.55657,-9.65009 -10e-6,-3.61935 0.79928,-6.88542 2.39688,-9.79647 1.60812,-2.91102 3.59284,-4.60156 5.95302,-5.07297 2.42802,-0.4849 4.42362,0.44725 5.9881,2.79462 1.5632,2.32586 2.3326,5.59781 2.30913,9.81727 m -1.49798,-2.20747 c -0.29388,-2.67927 -1.06987,-4.74949 -2.32855,-6.21109 -1.24773,-1.46483 -2.73778,-2.02412 -4.4707,-1.67694 -1.73447,0.34753 -3.22825,1.49618 -4.48082,3.44663 -1.25337,1.95173 -2.03418,4.35276 -2.34185,7.20251 0,0 13.62192,-2.76111 13.62192,-2.76111"
           id="path6350" />
      </g>
    </g>
    <text
       xml:space="preserve"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
       x="82.258064"
       y="465.7258"
       id="text4798"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan4800"
         x="82.258064"
         y="465.7258" /></text>
    <path
       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="m 252.05613,378.98631 0,-97.49115 288.50624,-81.0432 0,67.83207 z"
       id="path5189"
       inkscape:connector-curvature="0"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <path
       inkscape:connector-curvature="0"
       id="path5394"
       d="m 252.05613,378.98631 0,-97.49115 288.50624,-81.0432 0,67.83207 z"
       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90" />
    <g
       id="text10309"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Futura;-inkscape-font-specification:Futura Medium"
       transform="matrix(0.64605126,0,0,0.64605126,58.138831,104.45649)"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         id="path10316"
         d="m 133.59691,311.19724 c 0,0 0.0341,-71.93226 0.0341,-71.93226 0,0 4.97796,2.12108 4.97796,2.12108 2.4191,1.03084 4.34433,2.57775 5.76509,4.64185 1.53424,2.08909 2.93256,5.12989 4.19288,9.12732 2.57036,8.129 3.86225,17.92567 3.85772,29.33406 -0.005,11.44161 -1.35809,19.98395 -4.04123,25.58595 -1.33737,2.7781 -2.73156,4.44376 -4.18165,5.00473 -1.34807,0.6107 -3.24782,0.22861 -5.68779,-1.13492 0,0 -4.91706,-2.74781 -4.91706,-2.74781 m 3.57614,-8.27683 c 0,0 1.62482,0.87739 1.62482,0.87739 1.62931,0.87983 2.99125,1.09483 4.08175,0.6397 1.09483,-0.52025 2.08846,-1.74916 2.97977,-3.68986 1.83397,-4.03722 2.75714,-10.08799 2.76049,-18.13201 0.003,-8.10729 -0.90365,-15.10613 -2.71203,-20.96799 -1.61748,-5.20484 -3.98605,-8.49142 -7.08641,-9.87087 0,0 -1.62455,-0.72279 -1.62455,-0.72279 0,0 -0.0238,51.86643 -0.0238,51.86643"
         inkscape:connector-curvature="0" />
      <path
         id="path10318"
         d="m 171.6044,310.79008 c 0,0 -11.92047,-6.21665 -11.92047,-6.21665 0.0989,3.96019 0.53319,7.30268 1.30431,10.03197 0.77323,2.70408 1.76874,4.38967 2.98883,5.05334 0.95256,0.51815 1.74332,0.28998 2.37093,-0.68737 0.61752,-0.98564 1.32273,-3.04997 2.11628,-6.19783 0,0 3.29422,7.02686 3.29422,7.02686 -0.51213,2.21738 -1.05221,4.06653 -1.62009,5.5482 -0.56679,1.44567 -1.17269,2.56833 -1.81744,3.36871 -0.64334,0.76559 -1.33663,1.20382 -2.0795,1.31578 -0.74099,0.11163 -1.54239,-0.0749 -2.40371,-0.5583 -2.45636,-1.3786 -4.41214,-4.75525 -5.8774,-10.1178 -1.45767,-5.36709 -2.18221,-11.80744 -2.17931,-19.34157 0.003,-7.46897 0.70996,-13.16746 2.12652,-17.11048 1.43471,-3.89223 3.34632,-5.28239 5.74447,-4.14868 2.4412,1.15416 4.3855,4.33633 5.82264,9.55868 1.43278,5.20986 2.15057,11.83002 2.14801,19.84136 0,0 -0.0183,2.6338 -0.0183,2.6338 m -3.99695,-11.19743 c -0.53631,-6.20848 -1.83108,-9.81172 -3.87414,-10.81331 -0.46334,-0.22708 -0.89781,-0.22714 -1.30355,-10e-4 -0.40517,0.19331 -0.77615,0.59888 -1.11306,1.21644 -0.32533,0.58979 -0.60557,1.36421 -0.84087,2.32318 -0.23512,0.95823 -0.41428,2.09033 -0.53758,3.39647 0,0 7.6692,3.87824 7.6692,3.87824"
         inkscape:connector-curvature="0" />
      <path
         id="path10320"
         d="m 179.93525,251.66351 c 0,0 -0.0121,41.86591 -0.0121,41.86591 1.62022,-3.948 3.46639,-5.4419 5.54274,-4.46032 2.41014,1.13948 4.43092,4.61505 6.05427,10.44356 1.6322,5.82609 2.45081,12.51411 2.44909,20.04041 -0.002,7.76847 -0.82973,13.74432 -2.47695,17.91009 -1.62595,4.11583 -3.66666,5.47456 -6.11352,4.10129 -2.05202,-1.15168 -3.87289,-4.37212 -5.46671,-9.64566 0,0 -0.001,5.15996 -0.001,5.15996 0,0 -4.00924,-2.24049 -4.00924,-2.24049 0,0 0.0258,-84.83261 0.0258,-84.83261 0,0 4.00805,1.65786 4.00805,1.65786 m 9.73919,66.18469 c 0.001,-4.79896 -0.46713,-8.94263 -1.4027,-12.42285 -0.94491,-3.54353 -2.12544,-5.65875 -3.53881,-6.35166 -1.50347,-0.73697 -2.72284,0.13731 -3.66162,2.61413 -0.92386,2.44141 -1.38538,5.98483 -1.38672,10.63611 -0.001,4.78635 0.45197,8.85375 1.36222,12.20995 0.91306,3.43436 2.11948,5.5629 3.62283,6.38065 1.42549,0.7754 2.6129,-0.0643 3.55932,-2.52762 0.96174,-2.49883 1.44433,-6.01376 1.44548,-10.53871"
         inkscape:connector-curvature="0" />
      <path
         id="path10322"
         d="m 202.80947,298.68717 c 0,0 -0.0101,51.18253 -0.0101,51.18253 0,0 -4.32611,-2.41756 -4.32611,-2.41756 0,0 0.0109,-50.81986 0.0109,-50.81986 0,0 4.3253,2.05489 4.3253,2.05489 m -4.96901,-23.46565 c 4.4e-4,-2.04922 0.27393,-3.70212 0.8212,-4.96036 0.54823,-1.26037 1.20593,-1.72748 1.97379,-1.39905 0.78264,0.3349 1.45126,1.37296 2.00509,3.11597 0.55484,1.71129 0.83243,3.63731 0.83203,5.7757 -4.3e-4,2.13859 -0.27873,3.8374 -0.83418,5.09473 -0.54158,1.26101 -1.20414,1.71303 -1.98687,1.35837 -0.78074,-0.35359 -1.44454,-1.40288 -1.99217,-3.14615 -0.54664,-1.73998 -0.81936,-3.6856 -0.81889,-5.83921"
         inkscape:connector-curvature="0" />
      <path
         id="path10324"
         d="m 222.90657,308.23503 c 0,0 4.70271,2.23419 4.70271,2.23419 0,0 -0.005,53.2621 -0.005,53.2621 0,0 -4.70368,-2.62856 -4.70368,-2.62856 0,0 6.5e-4,-5.53751 6.5e-4,-5.53751 -1.90915,3.64099 -3.94938,4.84159 -6.11798,3.62448 -2.71657,-1.52464 -4.94425,-5.37091 -6.69324,-11.52244 -1.72592,-6.2156 -2.58454,-13.24681 -2.58314,-21.11949 0.001,-7.73093 0.86222,-13.74862 2.58972,-18.07138 1.73711,-4.34674 3.92492,-5.90726 6.57295,-4.65541 2.30326,1.08895 4.38361,4.59766 6.23649,10.54642 0,0 7.2e-4,-6.1324 7.2e-4,-6.1324 m -10.8443,20.66662 c -8.1e-4,4.97903 0.49779,9.29877 1.49823,12.96793 1.03051,3.73139 2.33394,6.02979 3.91368,6.88909 1.69661,0.92288 3.07441,0.12183 4.12912,-2.41319 1.05819,-2.65201 1.58892,-6.46131 1.5895,-11.42118 5.6e-4,-4.95966 -0.52918,-9.31691 -1.58652,-13.06242 -1.05383,-3.66071 -2.41744,-5.8973 -4.08683,-6.71571 -1.5663,-0.76777 -2.87026,0.16426 -3.91516,2.78663 -1.02812,2.65605 -1.54129,6.3101 -1.54202,10.96885"
         inkscape:connector-curvature="0" />
      <path
         id="path10326"
         d="m 233.61915,313.32443 c 0,0 4.86427,2.31094 4.86427,2.31094 0,0 -2.7e-4,5.00485 -2.7e-4,5.00485 1.71074,-3.52308 3.64965,-4.78093 5.82081,-3.75454 2.5118,1.18756 4.48297,4.13443 5.9036,8.84914 1.23117,4.03483 1.84851,9.9569 1.84853,17.75524 0,0 0,33.90579 0,33.90579 0,0 -5.07083,-2.83374 -5.07083,-2.83374 0,0 6.2e-4,-30.6586 6.2e-4,-30.6586 9e-5,-5.40954 -0.29652,-9.29502 -0.88902,-11.65343 -0.57668,-2.38426 -1.62396,-3.94697 -3.13732,-4.68877 -1.63768,-0.80262 -2.79522,0.005 -3.4777,2.41735 -0.6666,2.37712 -0.99957,6.93792 -0.99994,13.68633 0,0 -0.001,26.14439 -0.001,26.14439 0,0 -4.86529,-2.71887 -4.86529,-2.71887 0,0 0.004,-53.76608 0.004,-53.76608"
         inkscape:connector-curvature="0" />
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer3"
       inkscape:label="rwlayershort"
       style="display:none">
      <g
         sodipodi:type="inkscape:box3d"
         style="fill:#24b8eb;fill-opacity:0.64251206;stroke:#253237;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="g11520"
         inkscape:perspectiveID="#perspective4014"
         inkscape:corner0="0.51156871 : 0.026428054 : 0 : 1"
         inkscape:corner7="0.23104367 : -0.032927705 : 0.53664065 : 1">
        <path
           sodipodi:type="inkscape:box3dside"
           id="path11530"
           style="fill:#24b8eb;fill-opacity:0.64251206;fill-rule:evenodd;stroke:none"
           inkscape:box3dsidetype="13"
           d="M 131.92561,229.48947 254.03226,279.93524 540.96513,197.86229 411.55236,171.87435 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path11522"
           style="fill:#24b8eb;fill-opacity:0.64251206;fill-rule:evenodd;stroke:none"
           inkscape:box3dsidetype="6"
           d="m 131.92561,190.22181 0,39.26766 279.62675,-57.61512 0,-28.97934 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path11532"
           style="fill:#24b8eb;fill-opacity:0.64251206;fill-rule:evenodd;stroke:none"
           inkscape:box3dsidetype="11"
           d="m 411.55236,142.89501 129.41277,21.38902 0,33.57826 -129.41277,-25.98794 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path11524"
           style="fill:#24b8eb;fill-opacity:0.64251206"
           inkscape:box3dsidetype="5"
           d="M 131.92561,190.22181 254.03226,231.71944 540.96513,164.28403 411.55236,142.89501 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path11528"
           style="fill:#24b8eb;fill-opacity:0.64251206"
           inkscape:box3dsidetype="14"
           d="m 254.03226,231.71944 0,48.2158 286.93287,-82.07295 0,-33.57826 z" />
        <path
           sodipodi:type="inkscape:box3dside"
           id="path11526"
           style="fill:#24b8eb;fill-opacity:0.64251206"
           inkscape:box3dsidetype="3"
           d="m 131.92561,190.22181 122.10665,41.49763 0,48.2158 -122.10665,-50.44577 z" />
      </g>
      <g
         id="text12905"
         style="font-size:40px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Italic"
         transform="matrix(0.65426564,0,0,0.65426564,59.078784,80.39098)">
        <path
           id="path12912"
           d="m 132.39162,196.56835 c 0,0 2.25832,0.79098 2.25832,0.79098 0,0 1.50732,28.61196 1.50732,28.61196 0,0 4.34598,-26.56183 4.34598,-26.56183 0,0 2.722,0.95339 2.722,0.95339 0,0 1.63516,29.08943 1.63516,29.08943 0,0 4.31997,-27.00363 4.31997,-27.00363 0,0 2.42221,0.84838 2.42221,0.84838 0,0 -5.66212,33.42382 -5.66212,33.42382 0,0 -2.73065,-1.12467 -2.73065,-1.12467 0,0 -1.5784,-29.68879 -1.5784,-29.68879 0,0 -4.4624,27.20079 -4.4624,27.20079 0,0 -2.67264,-1.10077 -2.67264,-1.10077 0,0 -2.10475,-35.43906 -2.10475,-35.43906"
           inkscape:connector-curvature="0" />
        <path
           id="path12914"
           d="m 164.03604,213.26939 c -0.2639,-0.42447 -0.56258,-0.78434 -0.89592,-1.0796 -0.33304,-0.29492 -0.68661,-0.50929 -1.06059,-0.64322 -1.33705,-0.47863 -2.47231,0.33686 -3.4066,2.43656 -0.92991,2.06688 -1.50465,5.07325 -1.72714,9.01466 0,0 -1.04777,17.82424 -1.04777,17.82424 0,0 -2.42011,-0.99676 -2.42011,-0.99676 0,0 1.98378,-35.17658 1.98378,-35.17658 0,0 2.47527,0.86697 2.47527,0.86697 0,0 -0.33507,5.56959 -0.33507,5.56959 0.60533,-1.89455 1.35104,-3.25595 2.23803,-4.08114 0.89961,-0.82526 1.87507,-1.05633 2.92646,-0.68969 0.27488,0.0959 0.54641,0.23479 0.81455,0.4165 0.26786,0.15981 0.53715,0.37533 0.80786,0.64667 0,0 -0.35275,5.89174 -0.35275,5.89174"
           inkscape:connector-curvature="0" />
        <path
           id="path12916"
           d="m 167.87077,194.36999 c 0,0 2.5978,0.8462 2.5978,0.8462 0,0 -0.48615,7.70745 -0.48615,7.70745 0,0 -2.58509,-0.87602 -2.58509,-0.87602 0,0 0.47344,-7.67763 0.47344,-7.67763 m -0.87992,14.31682 c 0,0 2.57415,0.9016 2.57415,0.9016 0,0 -2.30324,35.91396 -2.30324,35.91396 0,0 -2.5149,-1.0358 -2.5149,-1.0358 0,0 2.24399,-35.77976 2.24399,-35.77976"
           inkscape:connector-curvature="0" />
        <path
           id="path12918"
           d="m 183.34977,214.41656 c 0,0 -0.34194,4.75863 -0.34194,4.75863 0,0 -5.33307,-1.91046 -5.33307,-1.91046 0,0 -1.36427,19.81122 -1.36427,19.81122 -0.0441,0.73284 -0.076,1.34864 -0.0958,1.84769 -0.0198,0.49879 -0.0272,0.89218 -0.0223,1.18025 0.024,1.41732 0.22117,2.51814 0.59164,3.30404 0.38018,0.79025 0.97369,1.34835 1.78193,1.67447 0,0 2.66812,1.07661 2.66812,1.07661 0,0 -0.36838,4.94638 -0.36838,4.94638 0,0 -2.51686,-1.03661 -2.51686,-1.03661 -1.55308,-0.63966 -2.72009,-1.81877 -3.50617,-3.53794 -0.77559,-1.71295 -1.18868,-3.99849 -1.24016,-6.86324 -0.009,-0.50749 -0.005,-1.05378 0.0125,-1.63897 0.0171,-0.60759 0.0472,-1.26529 0.0905,-1.97325 0,0 1.33026,-19.73599 1.33026,-19.73599 0,0 -2.21945,-0.79507 -2.21945,-0.79507 0,0 0.32464,-4.68341 0.32464,-4.68341 0,0 2.18338,0.76473 2.18338,0.76473 0,0 0.70719,-10.54703 0.70719,-10.54703 0,0 2.66503,0.88587 2.66503,0.88587 0,0 -0.71095,10.59328 -0.71095,10.59328 0,0 5.36413,1.8788 5.36413,1.8788"
           inkscape:connector-curvature="0" />
        <path
           id="path12920"
           d="m 199.13849,236.70883 c 0,0 -1.72385,21.2125 -1.72385,21.2125 0,0 -2.77523,-1.14302 -2.77523,-1.14302 0,0 0.45537,-5.5694 0.45537,-5.5694 -0.79039,1.93977 -1.69787,3.25939 -2.72178,3.963 -1.00998,0.68226 -2.14049,0.76306 -3.39088,0.2461 -1.4019,-0.5796 -2.56171,-2.02483 -3.48324,-4.3353 -0.91085,-2.32565 -1.3871,-5.01869 -1.42975,-8.08698 -0.0612,-4.40249 0.65095,-7.60298 2.1444,-9.6005 1.51381,-2.0078 3.64053,-2.5073 6.39035,-1.48111 0,0 3.88091,1.44834 3.88091,1.44834 0,0 0.13737,-1.64241 0.13737,-1.64241 0.0187,-0.17753 0.0322,-0.36859 0.0405,-0.57316 0.008,-0.22771 0.0101,-0.57318 0.006,-1.03646 -0.0184,-2.06353 -0.40494,-3.80038 -1.15864,-5.20652 -0.74267,-1.42355 -1.7772,-2.37178 -3.10017,-2.84471 -0.90567,-0.32369 -1.83075,-0.39003 -2.77476,-0.20023 -0.93078,0.19278 -1.88487,0.63805 -2.86168,1.33418 0,0 0.40119,-5.68296 0.40119,-5.68296 1.0224,-0.5343 2.0267,-0.84843 3.0124,-0.94098 0.99899,-0.11252 1.96874,-0.005 2.90868,0.32235 2.01064,0.70123 3.55659,2.24252 4.62956,4.62368 1.08518,2.38922 1.64359,5.50025 1.67366,9.32128 0.006,0.76751 -0.0125,1.66447 -0.0556,2.69043 -0.0433,1.00181 -0.11156,2.06254 -0.20482,3.18188 m -3.01967,1.47698 c 0,0 -2.78542,-1.06163 -2.78542,-1.06163 -2.2624,-0.86226 -3.92041,-0.80292 -4.98268,0.16995 -1.04789,0.94964 -1.55167,2.85777 -1.51494,5.72282 0.0254,1.98149 0.31466,3.64088 0.8682,4.98133 0.56384,1.34561 1.32816,2.21415 2.29484,2.60564 1.48548,0.60158 2.77591,-0.0812 3.87044,-2.05855 1.10034,-2.01109 1.81516,-5.00707 2.14096,-8.99265 0,0 0.1086,-1.36691 0.1086,-1.36691"
           inkscape:connector-curvature="0" />
        <path
           id="path12922"
           d="m 217.64994,242.08214 c -0.003,-3.45467 -0.36941,-6.29845 -1.09988,-8.52314 -0.71911,-2.21914 -1.712,-3.55453 -2.9753,-4.006 -0.9147,-0.32682 -1.77169,-0.13384 -2.57095,0.57649 -0.7861,0.6882 -1.46696,1.86026 -2.04305,3.51377 -0.60552,1.7306 -1.08098,3.81943 -1.42712,6.2652 -0.33468,2.41877 -0.49538,4.89667 -0.48288,7.43549 0.0158,3.20708 0.36798,5.85818 1.05704,7.96044 0.69992,2.08483 1.65443,3.37263 2.86659,3.86366 0.92007,0.37271 1.77251,0.25313 2.55721,-0.36105 0.78714,-0.63948 1.47963,-1.76427 2.07706,-3.37684 0.61006,-1.68425 1.10315,-3.73887 1.47858,-6.16534 0.37661,-2.43421 0.56447,-4.82931 0.5627,-7.18268 m -9.23169,-12.84717 c 0.71257,-1.9212 1.61108,-3.31025 2.69696,-4.16424 1.10132,-0.8778 2.25765,-1.10762 3.46876,-0.68529 1.8688,0.65177 3.36054,2.56955 4.46812,5.75349 1.11991,3.19191 1.67936,7.16826 1.67728,11.91278 -0.002,3.86886 -0.33149,7.48101 -0.9869,10.83305 -0.64142,3.34015 -1.55578,6.15428 -2.74017,8.44433 -0.7715,1.50955 -1.65836,2.54577 -2.65987,3.1114 -0.99765,0.5634 -2.04044,0.61881 -3.12849,0.16897 -1.14744,-0.4744 -2.14129,-1.46065 -2.98356,-2.95812 -0.84085,-1.4949 -1.52693,-3.4884 -2.05939,-5.98273 0,0 -0.48266,5.66038 -0.48266,5.66038 0,0 -2.84889,-1.17336 -2.84889,-1.17336 0,0 4.44431,-52.94734 4.44431,-52.94734 0,0 2.95322,0.96198 2.95322,0.96198 0,0 -1.81872,21.0647 -1.81872,21.0647"
           inkscape:connector-curvature="0" />
        <path
           id="path12924"
           d="m 228.71944,214.19071 c 0,0 3.15615,1.02808 3.15615,1.02808 0,0 -5.33605,54.69811 -5.33605,54.69811 0,0 -3.03879,-1.25157 -3.03879,-1.25157 0,0 5.21869,-54.47462 5.21869,-54.47462"
           inkscape:connector-curvature="0" />
        <path
           id="path12926"
           d="m 249.07211,254.74636 c 0.0404,-0.38368 0.0691,-0.78443 0.0859,-1.20226 0.0288,-0.41348 0.0457,-0.83161 0.0506,-1.25434 0.0353,-3.03778 -0.36798,-5.60275 -1.20915,-7.68768 -0.82831,-2.07819 -1.97429,-3.37815 -3.43389,-3.89992 -1.61834,-0.57843 -3.05045,-0.009 -4.29713,1.70059 -1.23987,1.67549 -2.18445,4.34652 -2.83626,8.00619 0,0 11.63988,4.33748 11.63988,4.33748 m 2.81056,6.45167 c 0,0 -15.09094,-5.79069 -15.09094,-5.79069 -0.0752,0.89703 -0.126,1.60789 -0.15253,2.13298 -0.0265,0.52486 -0.0411,0.98119 -0.0437,1.36905 -0.0225,3.36482 0.44677,6.15468 1.40888,8.37881 0.97504,2.23208 2.36307,3.71384 4.1703,4.44572 1.39681,0.56568 2.72662,0.77468 3.98908,0.62476 1.26781,-0.15056 2.45566,-0.64338 3.56302,-1.48066 0,0 -0.70189,6.42657 -0.70189,6.42657 -1.18125,0.49488 -2.39603,0.72794 -3.64426,0.70088 -1.23153,-0.0222 -2.4791,-0.29519 -3.74285,-0.81767 -2.68557,-1.11031 -4.73074,-3.28927 -6.14928,-6.53818 -1.40393,-3.26112 -2.09137,-7.34961 -2.06451,-12.28511 0.023,-4.22844 0.39788,-8.03395 1.12728,-11.41867 0.74471,-3.42191 1.82516,-6.33485 3.24539,-8.73744 0.92003,-1.50587 2.01004,-2.53659 3.27144,-3.08937 1.27888,-0.55109 2.63589,-0.57813 4.0712,-0.0776 2.26618,0.79035 4.06153,2.85633 5.37632,6.19826 1.32912,3.35217 1.96352,7.4395 1.9016,12.24399 -0.0148,1.14841 -0.0669,2.36942 -0.15622,3.66262 -0.0889,1.26675 -0.21507,2.6175 -0.37835,4.05176"
           inkscape:connector-curvature="0" />
      </g>
      <g
         transform="matrix(1.1734694,0,0,1.1734694,-48.893189,-48.489991)"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New"
         id="text14746">
        <path
           inkscape:connector-curvature="0"
           d="m 292.56742,237.4772 c 0,0 0,-1.59047 0,-1.59047 -1e-5,-0.5391 0.0453,-0.93633 0.13582,-1.19161 0.0987,-0.25714 0.22627,-0.40435 0.38255,-0.44167 0.1562,-0.0372 0.27949,0.0501 0.36989,0.26184 0.0986,0.20984 0.14786,0.58398 0.14787,1.12245 0,0 0,6.27362 0,6.27362 -10e-6,0.55648 -0.0493,0.96364 -0.14787,1.22152 -0.0904,0.25592 -0.21369,0.40336 -0.36989,0.44226 -0.13983,0.0349 -0.25912,-0.0432 -0.35786,-0.23424 -0.0906,-0.1931 -0.14406,-0.53022 -0.16051,-1.01139 -0.0412,-1.49945 -0.41597,-2.74678 -1.12524,-3.74312 -0.95853,-1.37023 -2.0518,-1.9091 -3.28082,-1.61375 -0.80737,0.19408 -1.57032,0.76646 -2.2886,1.71804 -0.5353,0.69109 -0.96233,1.48343 -1.28077,2.37687 -0.55364,1.55049 -0.99453,3.22917 -1.32232,5.0356 -0.2355,1.33038 -0.35329,2.79525 -0.35329,4.3941 0,0 0,4.00625 0,4.00625 0,3.41577 0.57185,6.23436 1.71333,8.4515 1.13855,2.19332 2.4576,3.08294 3.95555,2.67411 0.89633,-0.24464 1.69568,-0.88624 2.39858,-1.92393 0.71,-1.03826 1.39417,-2.49958 2.05261,-4.38314 0.13978,-0.41447 0.29596,-0.64466 0.46853,-0.69065 0.14784,-0.0394 0.26691,0.0276 0.35722,0.20089 0.0903,0.17329 0.13541,0.41244 0.13543,0.71743 -2e-5,0.41269 -0.17649,1.08812 -0.52962,2.02685 -0.67425,1.83488 -1.43607,3.29166 -2.28591,4.36978 -0.84324,1.0599 -1.70051,1.71048 -2.57191,1.95056 -0.75663,0.20846 -1.52704,0.10426 -2.31133,-0.31343 -0.60168,-0.3239 -1.09951,-0.75841 -1.49315,-1.30354 -0.394,-0.54561 -0.88069,-1.51132 -1.46037,-2.89811 -0.57203,-1.40902 -0.96363,-2.74066 -1.1743,-3.99402 -0.21078,-1.27211 -0.3162,-2.69969 -0.3162,-4.28229 0,0 0,-4.6659 0,-4.6659 0,-2.25562 0.27827,-4.62592 0.83428,-7.1086 0.56373,-2.49973 1.32824,-4.49134 2.29251,-5.97481 0.97053,-1.50028 2.01815,-2.3831 3.14231,-2.65042 1.72644,-0.41045 3.20678,0.51535 4.44348,2.77142"
           id="path14753" />
        <path
           inkscape:connector-curvature="0"
           d="m 308.66695,250.09217 c -10e-6,3.3873 -0.5478,6.4277 -1.64547,9.12638 -1.09249,2.70338 -2.41593,4.27147 -3.97244,4.7003 -1.57825,0.43483 -2.92347,-0.40609 -4.03348,-2.528 -1.11284,-2.14518 -1.67032,-4.92676 -1.67032,-8.34065 0,-3.43174 0.55748,-6.50462 1.67032,-9.21347 1.11001,-2.71971 2.45523,-4.27243 4.03348,-4.66229 1.55651,-0.38443 2.87995,0.49215 3.97244,2.62466 1.09767,2.12517 1.64546,4.88816 1.64547,8.29307 m -1.01277,0.2646 c -10e-6,-2.7907 -0.44957,-5.05158 -1.35007,-6.78534 -0.89442,-1.73935 -1.98297,-2.45048 -3.26712,-2.12996 -1.28798,0.32151 -2.38981,1.59368 -3.30406,3.8193 -0.90806,2.21042 -1.3628,4.71879 -1.36279,7.52165 -10e-6,2.78505 0.45473,5.0558 1.36279,6.80955 0.91425,1.7479 2.01608,2.44432 3.30406,2.09279 1.28415,-0.35048 2.3727,-1.63042 3.26712,-3.83716 0.9005,-2.22197 1.35006,-4.71775 1.35007,-7.49083"
           id="path14755" />
        <path
           inkscape:connector-curvature="0"
           d="m 314.42401,237.15342 c 0,0 0,3.33838 0,3.33838 0.68834,-1.73173 1.30925,-2.96305 1.86301,-3.69535 0.55304,-0.7313 1.17532,-1.18207 1.86656,-1.35283 0.74434,-0.18383 1.42164,0.006 2.03224,0.56853 0.43228,0.41464 0.82174,1.18719 1.16849,2.31729 0.35414,1.10991 0.53111,2.29857 0.53112,3.56668 0,0 0,13.7844 0,13.7844 0,0 0.81847,-0.22256 0.81847,-0.22256 0.23026,-0.0626 0.39521,-0.003 0.49492,0.17762 0.0997,0.16363 0.14951,0.41019 0.14952,0.73967 -1e-5,0.31216 -0.0499,0.58594 -0.14952,0.82137 -0.0997,0.23549 -0.26466,0.38485 -0.49492,0.44805 0,0 -2.59918,0.71347 -2.59918,0.71347 -0.23955,0.0658 -0.40963,0.008 -0.51015,-0.17349 -0.10057,-0.18148 -0.15085,-0.42903 -0.15085,-0.74263 0,-0.331 0.0503,-0.60603 0.15085,-0.82505 0.10052,-0.23636 0.2706,-0.3871 0.51015,-0.45224 0,0 0.81034,-0.22035 0.81034,-0.22035 0,0 0,-13.43494 0,-13.43494 -10e-6,-1.54782 -0.25067,-2.78882 -0.75241,-3.72384 -0.50236,-0.9535 -1.17565,-1.32537 -2.02071,-1.11445 -0.64462,0.16091 -1.20459,0.59773 -1.67958,1.31084 -0.47553,0.69646 -1.15466,2.32016 -2.03835,4.87447 0,0 0,13.85296 0,13.85296 0,0 1.1141,-0.30294 1.1141,-0.30294 0.23417,-0.0637 0.40192,-0.004 0.50332,0.17797 0.10137,0.16478 0.15204,0.4133 0.15205,0.74557 -1e-5,0.31479 -0.0507,0.59099 -0.15205,0.82865 -0.1014,0.23771 -0.26915,0.38871 -0.50332,0.45299 0,0 -3.22119,0.88421 -3.22119,0.88421 -0.23607,0.0648 -0.40534,0.006 -0.50771,-0.17703 -0.10241,-0.18288 -0.15362,-0.43257 -0.15362,-0.74903 0,-0.33403 0.0512,-0.61171 0.15362,-0.83298 0.10237,-0.23878 0.27164,-0.39025 0.50771,-0.45445 0,0 1.11958,-0.30443 1.11958,-0.30443 0,0 0,-18.34278 0,-18.34278 0,0 -0.83646,0.20956 -0.83646,0.20956 -0.23592,0.0591 -0.40507,-0.004 -0.50738,-0.18919 -0.10234,-0.18526 -0.15352,-0.4449 -0.15351,-0.77884 -10e-6,-0.31633 0.0512,-0.59268 0.15351,-0.829 0.10231,-0.23622 0.27146,-0.38357 0.50738,-0.44208 0,0 1.82397,-0.4522 1.82397,-0.4522"
           id="path14757" />
        <path
           inkscape:connector-curvature="0"
           d="m 329.72799,233.35924 c 0,0 5.13345,-1.27269 5.13345,-1.27269 0.22371,-0.0554 0.38397,0.007 0.48085,0.18852 0.0968,0.18111 0.14525,0.43402 0.14526,0.75877 -10e-6,0.30771 -0.0485,0.57622 -0.14526,0.80555 -0.0969,0.22944 -0.25714,0.37217 -0.48085,0.4282 0,0 -5.13345,1.28608 -5.13345,1.28608 0,0 0,14.43158 0,14.43158 -10e-6,1.25643 0.21891,2.24711 0.65643,2.97148 0.44458,0.72157 1.09178,0.96605 1.94066,0.73436 0.6374,-0.17396 1.32621,-0.5761 2.06616,-1.20576 0.73864,-0.64564 1.31224,-1.29704 1.72148,-1.95454 0.1487,-0.2622 0.27135,-0.40633 0.36797,-0.43241 0.11885,-0.0321 0.22284,0.0507 0.31196,0.24856 0.0891,0.18071 0.13361,0.41608 0.13362,0.70616 -10e-6,0.25597 -0.0483,0.50799 -0.14476,0.75609 -0.23768,0.62804 -0.81757,1.40124 -1.74108,2.32087 -0.91812,0.90249 -1.8008,1.47097 -2.64781,1.70434 -1.10446,0.30428 -1.98559,-0.0463 -2.64198,-1.05341 -0.65743,-1.00874 -0.98654,-2.52169 -0.98653,-4.53773 0,0 0,-14.44811 0,-14.44811 0,0 -1.76335,0.44177 -1.76335,0.44177 -0.22807,0.0572 -0.39159,-0.006 -0.4905,-0.18811 -0.0989,-0.18257 -0.1484,-0.43805 -0.14839,-0.7664 -1e-5,-0.31102 0.0494,-0.58251 0.14839,-0.81445 0.0989,-0.23183 0.26243,-0.37601 0.4905,-0.43258 0,0 1.76335,-0.43717 1.76335,-0.43717 0,0 0,-6.4099 0,-6.4099 -1e-5,-0.51689 0.0454,-0.89822 0.13621,-1.14394 0.0908,-0.24561 0.20423,-0.38466 0.34033,-0.41716 0.14361,-0.0342 0.26073,0.0498 0.35139,0.25184 0.0906,0.20213 0.13594,0.56133 0.13595,1.07763 0,0 0,6.40256 0,6.40256"
           id="path14759" />
        <path
           inkscape:connector-curvature="0"
           d="m 347.92414,250.72178 c 0,0 0,-3.05626 0,-3.05626 -1.32486,2.95612 -2.74493,4.64604 -4.26117,5.06378 -1.10424,0.30423 -1.9692,-0.10219 -2.59338,-1.22112 -0.62513,-1.1376 -0.93805,-2.65046 -0.93805,-4.53728 0,-2.07378 0.41226,-3.99242 1.23557,-5.75329 0.82167,-1.75736 2.01824,-2.83768 3.58648,-3.24242 0.42203,-0.10891 0.87997,-0.15956 1.37368,-0.15206 0.49311,-0.009 1.02545,0.0469 1.59687,0.16843 0,0 0,-3.43514 0,-3.43514 -1e-5,-1.16186 -0.23137,-2.11384 -0.69447,-2.85657 -0.46365,-0.7435 -1.16008,-0.99968 -2.09048,-0.76745 -0.71376,0.17817 -1.7173,0.9112 -3.01271,2.20186 -0.23464,0.22862 -0.38501,0.35128 -0.45105,0.36788 -0.11743,0.0296 -0.22021,-0.0464 -0.30832,-0.22792 -0.0808,-0.18338 -0.12119,-0.42787 -0.12118,-0.73345 -10e-6,-0.28856 0.0367,-0.52691 0.11017,-0.715 0.10279,-0.2802 0.51741,-0.73128 1.24291,-1.35247 1.14063,-0.994 2.00133,-1.56201 2.58384,-1.70592 1.1553,-0.28533 2.05404,0.15837 2.69792,1.32913 0.64285,1.15216 0.9639,2.56014 0.96391,4.22531 0,0 0,14.02795 0,14.02795 0,0 1.20981,-0.32897 1.20981,-0.32897 0.22283,-0.0606 0.38091,-0.003 0.4743,0.17316 0.0933,0.15921 0.14002,0.39824 0.14004,0.7171 -2e-5,0.3021 -0.0467,0.56663 -0.14004,0.79361 -0.0934,0.22705 -0.25147,0.37117 -0.4743,0.43233 0,0 -2.13035,0.58478 -2.13035,0.58478 m 0,-10.558 c -0.42669,-0.17475 -0.87915,-0.26722 -1.35749,-0.27728 -0.47891,-0.0101 -0.9838,0.054 -1.51479,0.19244 -1.33413,0.34776 -2.37964,1.28966 -3.13434,2.82696 -0.57244,1.15204 -0.85896,2.42481 -0.85896,3.81711 0,1.29044 0.21674,2.31854 0.64989,3.0837 0.44002,0.76238 1.07722,1.02935 1.9107,0.80187 0.79534,-0.21708 1.53095,-0.78111 2.20715,-1.69129 0.68232,-0.92751 1.38163,-2.28814 2.09784,-4.08071 0,0 0,-4.6728 0,-4.6728"
           id="path14761" />
        <path
           inkscape:connector-curvature="0"
           d="m 358.9208,215.38083 c 0,0 0,5.40783 0,5.40783 0,0 -1.31083,0.31638 -1.31083,0.31638 0,0 0,-5.41657 0,-5.41657 0,0 1.31083,-0.30764 1.31083,-0.30764 m 0.0317,10.73306 c 0,0 0,19.48737 0,19.48737 0,0 3.46775,-0.94294 3.46775,-0.94294 0.21618,-0.0588 0.36953,-0.001 0.46013,0.17246 0.0906,0.15719 0.13584,0.39281 0.13585,0.70687 -1e-5,0.29756 -0.0453,0.5579 -0.13585,0.7811 -0.0906,0.22326 -0.24395,0.36455 -0.46013,0.42389 0,0 -7.86049,2.15769 -7.86049,2.15769 -0.21341,0.0586 -0.36643,3.5e-4 -0.45897,-0.17483 -0.0926,-0.1752 -0.13887,-0.41325 -0.13887,-0.71413 0,-0.31759 0.0463,-0.58094 0.13887,-0.79001 0.0925,-0.22573 0.24556,-0.36759 0.45897,-0.42562 0,0 3.50529,-0.95316 3.50529,-0.95316 0,0 0,-17.38816 0,-17.38816 0,0 -2.59952,0.65125 -2.59952,0.65125 -0.21294,0.0534 -0.36917,-0.008 -0.46862,-0.1831 -0.0924,-0.17722 -0.13856,-0.41614 -0.13855,-0.71671 -1e-5,-0.31722 0.0462,-0.58749 0.13855,-0.81081 0.0924,-0.22321 0.24857,-0.36209 0.46862,-0.41667 0,0 3.48697,-0.86449 3.48697,-0.86449"
           id="path14763" />
        <path
           inkscape:connector-curvature="0"
           d="m 368.46442,223.75567 c 0,0 0,3.12776 0,3.12776 0.60425,-1.6123 1.14936,-2.75688 1.63557,-3.43494 0.4856,-0.67719 1.03206,-1.09054 1.63914,-1.24051 0.65376,-0.16146 1.24872,0.0263 1.78514,0.56245 0.37979,0.39496 0.72197,1.12482 1.02665,2.18925 0.31119,1.04566 0.4667,2.16256 0.46671,3.35132 0,0 0,12.92183 0,12.92183 0,0 0.71929,-0.19559 0.71929,-0.19559 0.20237,-0.055 0.34735,0.003 0.43499,0.17441 0.0876,0.155 0.13141,0.38695 0.13142,0.69584 -1e-5,0.29266 -0.0438,0.54854 -0.13142,0.76765 -0.0876,0.21918 -0.23262,0.35655 -0.43499,0.4121 0,0 -2.28391,0.62693 -2.28391,0.62693 -0.21044,0.0578 -0.35985,8.6e-4 -0.44816,-0.17084 -0.0883,-0.17172 -0.13252,-0.40454 -0.13251,-0.69846 -1e-5,-0.31023 0.0442,-0.56721 0.13251,-0.77087 0.0883,-0.21993 0.23772,-0.3585 0.44816,-0.41572 0,0 0.71195,-0.19359 0.71195,-0.19359 0,0 0,-12.59334 0,-12.59334 0,-1.45086 -0.22023,-2.61784 -0.66105,-3.50168 -0.44133,-0.90112 -1.03277,-1.25955 -1.77501,-1.0743 -0.56613,0.14133 -1.05787,0.54243 -1.47496,1.20365 -0.41753,0.64556 -1.01377,2.15684 -1.78952,4.5368 0,0 0,12.97896 0,12.97896 0,0 0.97803,-0.26595 0.97803,-0.26595 0.20559,-0.0559 0.35287,0.002 0.4419,0.17485 0.089,0.15603 0.1335,0.38972 0.1335,0.70106 0,0.29497 -0.0445,0.55297 -0.1335,0.77401 -0.089,0.2211 -0.23631,0.35987 -0.4419,0.41631 0,0 -2.82735,0.7761 -2.82735,0.7761 -0.20715,0.0569 -0.35568,-0.001 -0.44551,-0.17409 -0.0899,-0.17297 -0.13479,-0.40769 -0.13479,-0.70413 0,-0.31289 0.0449,-0.57216 0.13479,-0.77778 0.0898,-0.22202 0.23836,-0.36119 0.44551,-0.41752 0,0 0.98254,-0.26717 0.98254,-0.26717 0,0 0,-17.18426 0,-17.18426 0,0 -0.73409,0.18391 -0.73409,0.18391 -0.20703,0.0519 -0.35546,-0.01 -0.44524,-0.18475 -0.0898,-0.17506 -0.13471,-0.41902 -0.13471,-0.73184 0,-0.29632 0.0449,-0.55442 0.13471,-0.7743 0.0898,-0.21977 0.23821,-0.35532 0.44524,-0.40667 0,0 1.60087,-0.39689 1.60087,-0.39689"
           id="path14765" />
        <path
           inkscape:connector-curvature="0"
           d="m 388.11235,229.76789 c 0,0 -8.48758,2.22224 -8.48758,2.22224 0.14697,2.60006 0.60091,4.60711 1.36077,6.01981 0.76503,1.39207 1.70765,1.93407 2.82657,1.62868 0.62097,-0.16949 1.27063,-0.59601 1.94883,-1.27892 0.67702,-0.6817 1.22829,-1.48892 1.65434,-2.42175 0.12444,-0.27395 0.23249,-0.42323 0.32414,-0.44789 0.10471,-0.0282 0.19631,0.0513 0.27482,0.23843 0.0785,0.17107 0.11771,0.39273 0.11772,0.665 -10e-6,0.27228 -0.0523,0.55072 -0.15697,0.83539 -0.31413,0.88653 -0.87429,1.79282 -1.68153,2.71981 -0.80235,0.91103 -1.62941,1.48439 -2.48135,1.71911 -1.43066,0.39416 -2.63019,-0.41452 -3.59644,-2.43084 -0.96193,-2.03924 -1.44377,-4.68961 -1.44377,-7.94738 0,-2.96601 0.45175,-5.62524 1.35369,-7.97367 0.90655,-2.34471 2.02355,-3.67918 3.34919,-4.00664 1.36076,-0.33608 2.47689,0.47235 3.35047,2.42115 0.87162,1.92849 1.30016,4.60654 1.2871,8.03747 m -0.83466,-1.82578 c -0.16388,-2.18666 -0.59682,-3.88887 -1.29971,-5.10755 -0.69758,-1.2225 -1.5317,-1.71355 -2.5032,-1.47106 -0.97392,0.24311 -1.81394,1.14718 -2.51921,2.71386 -0.70654,1.5695 -1.1471,3.51858 -1.32078,5.8459 0,0 7.6429,-1.98115 7.6429,-1.98115"
           id="path14767" />
        <path
           inkscape:connector-curvature="0"
           d="m 394.65863,217.26158 c 0,0 0,5.05071 0,5.05071 1.05317,-2.61538 1.83796,-4.31797 2.35603,-5.11227 0.52374,-0.81061 1.00534,-1.26991 1.44497,-1.37865 0.47726,-0.11799 0.91902,0.17532 1.32537,0.87929 0.41225,0.68589 0.61821,1.23352 0.61822,1.64339 -10e-6,0.29956 -0.0412,0.56219 -0.12356,0.78788 -0.0761,0.20844 -0.17434,0.32787 -0.29482,0.35828 -0.0634,0.016 -0.11736,0.006 -0.16176,-0.0302 -0.0444,-0.0519 -0.12694,-0.21251 -0.24755,-0.48199 -0.2223,-0.49656 -0.41611,-0.82689 -0.58139,-0.99082 -0.16538,-0.16396 -0.32763,-0.22611 -0.48676,-0.18636 -0.35034,0.0875 -0.77435,0.54152 -1.27228,1.36266 -0.49218,0.82062 -1.35019,2.74163 -2.57647,5.76941 0,0 0,10.95911 0,10.95911 0,0 3.57169,-0.97122 3.57169,-0.97122 0.19745,-0.0537 0.33753,0.003 0.42029,0.17013 0.0827,0.15127 0.12408,0.37699 0.12409,0.67715 -10e-6,0.28439 -0.0414,0.53269 -0.12409,0.74496 -0.0828,0.21232 -0.22284,0.34558 -0.42029,0.39978 0,0 -6.34991,1.74303 -6.34991,1.74303 -0.19434,0.0533 -0.33368,0.004 -0.41796,-0.14841 -0.0843,-0.16829 -0.12645,-0.396 -0.12645,-0.68312 0,-0.27115 0.0389,-0.50507 0.11673,-0.70172 0.0843,-0.21431 0.22686,-0.34878 0.42768,-0.40341 0,0 1.96714,-0.53508 1.96714,-0.53508 0,0 0,-16.69431 0,-16.69431 0,0 -1.5011,0.37607 -1.5011,0.37607 -0.19412,0.0486 -0.33329,-0.0121 -0.41746,-0.18232 -0.0842,-0.17019 -0.1263,-0.40677 -0.1263,-0.70967 0,-0.28692 0.0389,-0.53569 0.11658,-0.7463 0.0842,-0.21212 0.22659,-0.34304 0.42718,-0.3928 0,0 2.31218,-0.57324 2.31218,-0.57324"
           id="path14769" />
      </g>
    </g>
    <g
       style="display:inline"
       inkscape:label="rwlayer"
       id="layer6"
       inkscape:groupmode="layer">
      <g
         inkscape:corner7="0.23278645 : 0.15045726 : 0.53790114 : 1"
         inkscape:corner0="0.50687055 : 0.22942044 : 0 : 1"
         inkscape:perspectiveID="#perspective4014"
         id="g4127"
         style="fill:#00ade5;fill-opacity:0.51111115;stroke:#000000;stroke-linejoin:round;stroke-opacity:1;display:inline"
         sodipodi:type="inkscape:box3d">
        <path
           d="M 133.59629,108.48046 253.10212,130.7945 540.5037,93.974413 413.91156,82.46576 z"
           inkscape:box3dsidetype="13"
           style="fill:#00ade5;fill-opacity:0.51111115;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4137"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 133.59629,56.078359 0,52.402101 280.31527,-26.0147 0,-38.617113 z"
           inkscape:box3dsidetype="6"
           style="fill:#00ade5;fill-opacity:0.51111115;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4129"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 413.91156,43.848647 126.59214,5.531124 0,44.594642 L 413.91156,82.46576 z"
           inkscape:box3dsidetype="11"
           style="fill:#00ade5;fill-opacity:0.51111115;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4139"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="M 133.59629,56.078359 253.10212,66.741895 540.5037,49.379771 413.91156,43.848647 z"
           inkscape:box3dsidetype="5"
           style="fill:#00ade5;fill-opacity:0.51111115;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4131"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 253.10212,66.741895 0,64.052605 287.40158,-36.820087 0,-44.594642 z"
           inkscape:box3dsidetype="14"
           style="fill:#00ade5;fill-opacity:0.51111115;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4135"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 133.59629,56.078359 119.50583,10.663536 0,64.052605 -119.50583,-22.31404 z"
           inkscape:box3dsidetype="3"
           style="fill:#00ade5;fill-opacity:0.51111115;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4133"
           sodipodi:type="inkscape:box3dside" />
      </g>
      <g
         id="text6476"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
         transform="matrix(0.70185341,0,0,0.70185341,103.7893,28.378586)">
        <path
           id="path6483"
           d="m 284.7875,71.172554 c 0.44477,-0.832231 0.92421,-1.465513 1.4382,-1.900127 0.53667,-0.4355 1.1077,-0.672696 1.71297,-0.711885 1.04557,-0.06757 1.89194,0.353644 2.5402,1.262581 0.67037,0.906179 1.0052,2.492869 1.00523,4.761013 0,0 0,8.000002 0,8.000002 -3e-5,2.26822 -0.33486,3.921026 -1.00523,4.959505 -0.64826,1.007365 -1.49463,1.556992 -2.5402,1.647991 -0.95479,0.08315 -1.72468,-0.204346 -2.30875,-0.863225 -0.58488,-0.65966 -1.01814,-1.950635 -1.29935,-3.87322 -0.16424,-1.284181 -0.49265,-2.262294 -0.98575,-2.934566 -0.96432,-1.3174 -2.32007,-2.329246 -4.07067,-3.035472 -1.73349,-0.710549 -3.48536,-1.002067 -5.25579,-0.872195 -2.2105,0.162261 -4.25002,0.939439 -6.11624,2.335152 -1.87367,1.401341 -3.53455,3.579947 -4.98033,6.538425 -1.45023,2.967618 -2.17702,6.418844 -2.177,10.346848 0,0 0,6.319689 0,6.319689 -2e-5,4.68833 1.31723,8.4578 3.94077,11.29662 2.63334,2.82038 6.25448,3.9553 10.84051,3.42052 2.71589,-0.31667 5.00256,-1.0641 6.86624,-2.24004 1.08169,-0.681 2.23119,-1.9088 3.44797,-3.68114 0.74716,-1.06937 1.33005,-1.76505 1.74931,-2.0881 0.41882,-0.35351 0.89537,-0.55926 1.4295,-0.61747 0.95051,-0.10353 1.78351,0.28116 2.49963,1.15291 0.71496,0.87043 1.07203,1.94803 1.07206,3.23382 -3e-5,1.28582 -0.48388,2.72011 -1.45306,4.30537 -1.41137,2.31718 -3.23399,4.2301 -5.47274,5.73891 -3.02557,2.04682 -6.39086,3.30935 -10.10307,3.78033 -4.36859,0.55426 -8.34027,-0.12163 -11.90441,-2.04242 -2.90041,-1.54355 -5.38471,-4.24401 -7.44624,-8.1068 -2.0705,-3.91143 -3.10914,-8.31641 -3.10914,-13.20215 0,0 0,-6.658033 0,-6.658033 0,-5.109235 0.92611,-9.943355 2.77299,-14.489167 1.86452,-4.561782 4.42566,-8.139695 7.6721,-10.733799 3.2243,-2.576297 6.62007,-3.970988 10.18341,-4.195938 2.1298,-0.134375 4.10732,0.06744 5.93444,0.603403 1.8435,0.501452 3.5505,1.349515 5.12244,2.542658"
           inkscape:connector-curvature="0" />
        <path
           id="path6485"
           d="m 332.72241,99.695904 c -3e-5,3.454376 -0.69544,6.883666 -2.08953,10.295926 -1.37739,3.39127 -3.45151,6.22973 -6.23223,8.51821 -2.77679,2.27061 -5.7014,3.60556 -8.77662,3.99619 -3.07455,0.39054 -6.03717,-0.19462 -8.88547,-1.76496 -2.86641,-1.61052 -5.06204,-4.01078 -6.577,-7.20109 -1.52005,-3.20093 -2.28198,-6.64692 -2.28197,-10.32991 -1e-5,-3.743818 0.77328,-7.485228 2.31594,-11.214731 1.53742,-3.747128 3.73278,-6.765923 6.57651,-9.055026 2.84809,-2.276467 5.79948,-3.529834 8.85199,-3.769629 3.05348,-0.23978 5.96744,0.568964 8.74442,2.416299 2.78093,1.804629 4.86582,4.376812 6.26443,7.717058 1.39409,3.300382 2.0895,6.761654 2.08953,10.391663 m -6.52296,0.719196 c -3e-5,-2.919695 -0.75935,-5.529693 -2.28187,-7.835916 -2.08863,-3.122229 -4.84898,-4.536825 -8.29355,-4.230938 -3.05251,0.271115 -5.6159,1.835234 -7.68164,4.700785 -2.07528,2.878816 -3.11648,6.090208 -3.11648,9.624269 0,2.89979 1.05239,5.50275 3.14988,7.80089 2.08774,2.25751 4.63979,3.20582 7.64824,2.85456 3.01001,-0.35144 5.52454,-1.87594 7.55183,-4.56609 2.01799,-2.70736 3.02356,-5.4868 3.02359,-8.34756"
           inkscape:connector-curvature="0" />
        <path
           id="path6487"
           d="m 347.8693,77.803424 c 0,0 0,2.977535 0,2.977535 1.13725,-1.473815 2.38274,-2.608435 3.73555,-3.404894 1.3686,-0.795449 2.84302,-1.254431 4.42214,-1.378502 3.6158,-0.283947 6.45504,1.090917 8.53297,4.111636 1.63938,2.396082 2.4567,5.64404 2.45673,9.750881 0,0 0,16.07587 0,16.07587 1.26176,-0.14523 2.19111,0.1546 2.79025,0.89839 0.59824,0.71473 0.89705,1.71585 0.89708,3.00413 -3e-5,1.26026 -0.30848,2.33443 -0.92604,3.22348 -0.5992,0.85987 -1.61585,1.38012 -3.05301,1.5603 0,0 -5.43347,0.68121 -5.43347,0.68121 -1.46081,0.18314 -2.51013,-0.083 -3.14492,-0.79957 -0.6159,-0.7486 -0.92419,-1.77778 -0.92416,-3.08678 -3e-5,-1.28051 0.30826,-2.35539 0.92416,-3.22368 0.61496,-0.89541 1.56546,-1.41668 2.84922,-1.56445 0,0 0,-16.445742 0,-16.445742 -3e-5,-1.898092 -0.35513,-3.253658 -1.06623,-4.067719 -0.9302,-1.051374 -2.32932,-1.495065 -4.20195,-1.32878 -1.41994,0.126126 -2.6738,0.637836 -3.76007,1.536474 -1.06886,0.870461 -2.43401,2.660203 -4.09825,5.375433 0,0 0,16.441254 0,16.441254 1.60347,-0.18456 2.63545,-0.0881 3.10006,0.28814 0.98811,0.74447 1.48131,1.94593 1.48133,3.60564 -2e-5,1.28769 -0.32204,2.38607 -0.96682,3.29618 -0.62558,0.88027 -1.68708,1.41472 -3.18774,1.60286 0,0 -7.15906,0.89754 -7.15906,0.89754 -1.5311,0.19196 -2.63101,-0.0773 -3.29645,-0.80905 -0.64563,-0.7646 -0.96879,-1.81744 -0.96879,-3.15769 0,-1.63159 0.50029,-2.95748 1.49915,-3.97589 0.49856,-0.49379 1.5665,-0.83474 3.19961,-1.02272 0,0 0,-21.647257 0,-21.647257 -1.34325,0.121155 -2.33786,-0.210491 -2.98141,-0.996089 -0.64452,-0.786693 -0.96715,-1.835481 -0.96713,-3.145494 -2e-5,-1.309966 0.32261,-2.399054 0.96713,-3.26632 0.66429,-0.896616 1.76232,-1.405653 3.2908,-1.527814 0,0 5.98932,-0.478512 5.98932,-0.478512"
           inkscape:connector-curvature="0" />
        <path
           id="path6489"
           d="m 388.14058,83.018823 c 0,0 0,16.90685 0,16.90685 -10e-6,1.809987 0.24937,2.974387 0.74771,3.492757 0.77393,0.81424 2.15235,1.10494 4.12918,0.87413 2.85672,-0.33354 5.4774,-1.54665 7.86642,-3.63181 0.91233,-0.804602 1.62645,-1.235237 2.14344,-1.293212 0.71193,-0.07979 1.32498,0.254725 1.8396,1.002732 0.53162,0.74505 0.79719,1.69422 0.79722,2.84828 -3e-5,1.07356 -0.28331,2.03341 -0.85042,2.88048 -0.87002,1.36914 -2.59781,2.75291 -5.19443,4.15584 -2.59535,1.38257 -4.79813,2.19134 -6.60183,2.42046 -3.50256,0.44491 -6.1539,-0.34442 -7.93718,-2.37749 -1.77237,-2.07172 -2.66142,-4.76781 -2.6614,-8.08161 0,0 0,-18.681529 0,-18.681529 0,0 -2.08504,0.187991 -2.08504,0.187991 -1.39587,0.125896 -2.39851,-0.172406 -3.00504,-0.896017 -0.58843,-0.754073 -0.88296,-1.771254 -0.88296,-3.050741 0,-1.251632 0.29453,-2.29109 0.88296,-3.117521 0.60653,-0.854462 1.60917,-1.337151 3.00504,-1.448715 0,0 2.08504,-0.166582 2.08504,-0.166582 0,0 0,-7.663148 0,-7.663148 -2e-5,-2.043459 0.26221,-3.510671 0.78619,-4.400745 0.54197,-0.917653 1.24175,-1.403398 2.09855,-1.458075 0.83641,-0.05329 1.5136,0.343008 2.03236,1.18804 0.53656,0.815375 0.80458,2.237345 0.80459,4.266667 0,0 0,7.610131 0,7.610131 0,0 10.37233,-0.828688 10.37233,-0.828688 1.33087,-0.106287 2.27244,0.210007 2.82742,0.94786 0.57201,0.708497 0.85774,1.682302 0.85777,2.92219 -3e-5,1.212982 -0.28576,2.235382 -0.85777,3.068081 -0.55498,0.805342 -1.49655,1.268255 -2.82742,1.388207 0,0 -10.37233,0.935187 -10.37233,0.935187"
           inkscape:connector-curvature="0" />
        <path
           id="path6491"
           d="m 426.78356,107.09258 c 0,0 0,-1.88162 0,-1.88162 -1.29426,1.23241 -2.72793,2.21052 -4.30255,2.93345 -1.58097,0.75218 -3.02296,1.21187 -4.32438,1.37727 -2.84033,0.36091 -5.16206,-0.50088 -6.95591,-2.59442 -1.80197,-2.1297 -2.706,-4.61561 -2.706,-7.450523 0,-3.449995 1.14945,-6.766286 3.43846,-9.93519 2.29325,-3.179053 5.43363,-4.95254 9.40099,-5.331327 1.57921,-0.150749 3.39679,-0.06225 5.44939,0.26374 0,0 0,-1.920817 0,-1.920817 -1e-5,-1.202127 -0.33577,-2.151503 -1.00813,-2.849026 -0.6567,-0.700183 -1.92263,-0.967515 -3.80372,-0.800477 -1.5489,0.137578 -3.56646,0.792207 -6.05983,1.968997 -0.9326,0.429384 -1.65947,0.668141 -2.17946,0.715577 -0.71179,0.06498 -1.32039,-0.265367 -1.82538,-0.991816 -0.48819,-0.755544 -0.7325,-1.746725 -0.7325,-2.972869 0,-0.693 0.0873,-1.300079 0.26176,-1.821128 0.17441,-0.520739 0.41846,-0.940499 0.73202,-1.259265 0.31331,-0.345082 0.96525,-0.770689 1.95416,-1.276103 1.31474,-0.663016 2.65095,-1.206818 4.00842,-1.631975 1.3528,-0.449995 2.5732,-0.717309 3.66242,-0.802899 3.23272,-0.253864 5.71949,0.634365 7.47424,2.656278 1.76343,1.985514 2.64219,4.831201 2.64221,8.543807 0,0 0,16.434219 0,16.434219 0,0 0.8685,-0.09997 0.8685,-0.09997 1.22086,-0.140526 2.0847,0.135063 2.5939,0.825754 0.52488,0.662055 0.78706,1.586613 0.78708,2.774353 -2e-5,1.16192 -0.2622,2.14952 -0.78708,2.96365 -0.5092,0.78731 -1.37304,1.2577 -2.5939,1.41076 0,0 -5.99471,0.75157 -5.99471,0.75157 m 0,-14.386546 c -2.06948,-0.40743 -3.98883,-0.518817 -5.75577,-0.331915 -2.13431,0.225806 -3.97905,1.227956 -5.53012,3.010736 -0.96819,1.140564 -1.45318,2.243056 -1.45316,3.305406 -2e-5,0.770223 0.23388,1.367569 0.70129,1.791659 0.86409,0.77522 2.04484,1.07465 3.53944,0.90007 1.26684,-0.14798 2.69144,-0.69613 4.27211,-1.641975 1.59121,-0.943971 2.9993,-2.138927 4.22621,-3.584347 0,0 0,-3.449634 0,-3.449634"
           inkscape:connector-curvature="0" />
        <path
           id="path6493"
           d="m 453.9243,54.610091 c 0,0 0,8.211498 0,8.211498 0,0 -5.76678,0.411052 -5.76678,0.411052 0,0 0,-8.274175 0,-8.274175 0,0 5.76678,-0.348375 5.76678,-0.348375 m 0.65618,14.667738 c 0,0 0,26.579133 0,26.579133 0,0 5.71636,-0.65798 5.71636,-0.65798 1.13594,-0.130751 1.93979,0.138491 2.41364,0.806796 0.48847,0.640773 0.73247,1.533755 0.73249,2.679593 -2e-5,1.120916 -0.24402,2.072579 -0.73249,2.855759 -0.47385,0.75733 -1.2777,1.2074 -2.41364,1.34982 0,0 -16.42615,2.05938 -16.42615,2.05938 -1.18999,0.14919 -2.04454,-0.10251 -2.56141,-0.7561 -0.5014,-0.68215 -0.75234,-1.61404 -0.75234,-2.79504 0,-1.1553 0.25094,-2.121869 0.75234,-2.898952 0.51687,-0.803545 1.37142,-1.273558 2.56141,-1.41053 0,0 5.87909,-0.67671 5.87909,-0.67671 0,0 0,-18.948966 0,-18.948966 0,0 -3.93328,0.354631 -3.93328,0.354631 -1.16791,0.105341 -2.01005,-0.17664 -2.52426,-0.846857 -0.51491,-0.696656 -0.77263,-1.634334 -0.77262,-2.812333 -10e-6,-1.152351 0.24966,-2.107591 0.7485,-2.864998 0.51424,-0.783198 1.36445,-1.221827 2.54838,-1.316456 0,0 8.76398,-0.70019 8.76398,-0.70019"
           inkscape:connector-curvature="0" />
        <path
           id="path6495"
           d="m 475.50208,67.606316 c 0,0 0,2.536447 0,2.536447 0.82543,-1.243767 1.72979,-2.197864 2.71251,-2.863045 0.99466,-0.664475 2.06675,-1.041275 3.21558,-1.131544 2.63288,-0.206754 4.70261,0.995273 6.21864,3.596757 1.19685,2.064769 1.79379,4.849578 1.79381,8.359593 0,0 0,13.739648 0,13.739648 0.92188,-0.106113 1.60115,0.163521 2.03918,0.808107 0.43746,0.619866 0.656,1.480388 0.65602,2.582152 -2e-5,1.077801 -0.22561,1.991748 -0.6772,2.74255 -0.43807,0.725982 -1.18113,1.154978 -2.23108,1.286613 0,0 -3.96487,0.497085 -3.96487,0.497085 -1.0647,0.133484 -1.82917,-0.110058 -2.2915,-0.731511 -0.44847,-0.648312 -0.67292,-1.531197 -0.6729,-2.648076 -2e-5,-1.092577 0.22443,-2.005162 0.6729,-2.737073 0.44789,-0.755228 1.14034,-1.186443 2.07594,-1.294135 0,0 0,-14.041184 0,-14.041184 -2e-5,-1.62057 -0.25886,-2.78201 -0.77709,-3.485072 -0.67772,-0.907895 -1.69667,-1.302142 -3.05969,-1.181111 -1.03295,0.09175 -1.94465,0.514073 -2.73418,1.267944 -0.7766,0.729774 -1.76804,2.239168 -2.97607,4.532658 0,0 0,14.005672 0,14.005672 1.16391,-0.133971 1.91333,-0.03683 2.25082,0.290636 0.71792,0.649047 1.07636,1.68058 1.07637,3.095536 -1e-5,1.097796 -0.23405,2.029224 -0.70258,2.795022 -0.45448,0.740495 -1.22543,1.179235 -2.31485,1.315815 0,0 -5.18947,0.65062 -5.18947,0.65062 -1.10822,0.13893 -1.90397,-0.10756 -2.38525,-0.74043 -0.46685,-0.66032 -0.70049,-1.56056 -0.70049,-2.700113 0,-1.387265 0.36171,-2.50717 1.08406,-3.358431 0.36064,-0.412646 1.13337,-0.687031 2.31557,-0.823108 0,0 0,-18.420515 0,-18.420515 -0.97243,0.08771 -1.69217,-0.205769 -2.15774,-0.881257 -0.46616,-0.67628 -0.69947,-1.571732 -0.69946,-2.685719 -1e-5,-1.113947 0.2333,-2.03669 0.69946,-2.767556 0.48058,-0.755792 1.27518,-1.177643 2.38178,-1.266092 0,0 4.34178,-0.346883 4.34178,-0.346883"
           inkscape:connector-curvature="0" />
        <path
           id="path6497"
           d="m 516.2673,83.722347 c 0,0 -17.01231,1.834644 -17.01231,1.834644 0.44185,1.848273 1.22067,3.289103 2.33424,4.321792 1.12374,1.027866 2.63243,1.429872 4.52114,1.209352 1.54145,-0.179976 3.57954,-0.990387 6.10559,-2.424021 1.03717,-0.583484 1.75341,-0.897083 2.15071,-0.942116 0.54219,-0.06141 0.99779,0.223013 1.36714,0.85272 0.3689,0.629061 0.55322,1.452524 0.55324,2.47089 -2e-5,0.925797 -0.19751,1.736603 -0.5928,2.432995 -0.5278,0.922061 -1.81764,1.905265 -3.87803,2.953251 -2.07267,1.030855 -4.07672,1.670911 -6.01089,1.916599 -3.35242,0.425841 -6.0602,-0.877156 -8.10814,-3.925214 -2.04585,-3.067292 -3.07319,-7.030199 -3.07319,-11.875495 0,-5.155547 1.11107,-9.444274 3.3229,-12.850313 2.21193,-3.409715 4.73871,-5.21866 7.57349,-5.441345 1.69266,-0.132909 3.23602,0.260598 4.63201,1.177293 1.40373,0.912009 2.44288,1.931821 3.12066,3.060528 0.9546,1.636213 1.7415,3.688648 2.36186,6.157338 0.42169,1.719696 0.63236,3.736031 0.63238,6.05059 0,0 0,3.020512 0,3.020512 m -4.51107,-6.677135 c -0.62731,-1.990684 -1.44983,-3.441932 -2.46895,-4.353009 -1.02212,-0.937128 -2.24313,-1.343777 -3.6651,-1.217511 -1.41414,0.125607 -2.6425,0.753666 -3.68311,1.886295 -1.04369,1.112332 -1.89741,2.742795 -2.55975,4.891895 0,0 12.37691,-1.20767 12.37691,-1.20767"
           inkscape:connector-curvature="0" />
        <path
           id="path6499"
           d="m 529.26714,63.310804 c 0,0 0,4.360627 0,4.360627 1.63097,-2.247844 2.90878,-3.756252 3.83736,-4.531717 0.93851,-0.774258 1.81212,-1.192426 2.62133,-1.256017 1.24109,-0.09744 2.44062,0.637677 3.59899,2.201052 0.78636,1.052813 1.17886,2.159045 1.17888,3.320496 -2e-5,0.982826 -0.19008,1.837577 -0.5705,2.564837 -0.36861,0.704643 -0.8176,1.081739 -1.34729,1.13078 -0.46884,0.04344 -0.96305,-0.337016 -1.48272,-1.142328 -0.52052,-0.806521 -0.98594,-1.192073 -1.39602,-1.155672 -0.53514,0.04754 -1.33941,0.727598 -2.41476,2.043211 -1.06624,1.318692 -2.40692,3.27905 -4.02527,5.887282 0,0 0,10.526834 0,10.526834 0,0 5.50612,-0.63378 5.50612,-0.63378 0.92146,-0.106064 1.57368,0.14475 1.95822,0.751703 0.39645,0.582377 0.59451,1.389478 0.59453,2.421834 -2e-5,1.009903 -0.19808,1.864635 -0.59453,2.564818 -0.38454,0.676972 -1.03676,1.073391 -1.95822,1.188916 0,0 -11.77989,1.476871 -11.77989,1.476871 -0.95657,0.119927 -1.64331,-0.115635 -2.05861,-0.707472 -0.40281,-0.617169 -0.60438,-1.455248 -0.60438,-2.513711 0,-1.035437 0.20157,-1.898985 0.60438,-2.590038 0.4153,-0.714702 1.10204,-1.126896 2.05861,-1.237002 0,0 2.35416,-0.270974 2.35416,-0.270974 0,0 0,-17.063345 0,-17.063345 0,0 -1.426,0.128571 -1.426,0.128571 -0.95398,0.08605 -1.63887,-0.173426 -2.05304,-0.779149 -0.40171,-0.630509 -0.60275,-1.474561 -0.60274,-2.531606 -10e-6,-1.034031 0.20103,-1.889297 0.60274,-2.565222 0.41417,-0.699049 1.09906,-1.086463 2.05304,-1.162716 0,0 5.34561,-0.427083 5.34561,-0.427083"
           inkscape:connector-curvature="0" />
      </g>
      <g
         id="text10906"
         style="font-size:40px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Futura;-inkscape-font-specification:Futura Medium Italic"
         transform="matrix(0.86745158,0,0,0.86745158,24.966041,10.718461)">
        <path
           id="path10913"
           d="m 153.83888,80.580698 c 0,0 -8.49369,30.064162 -8.49369,30.064162 0,0 -2.61138,-18.595363 -2.61138,-18.595363 0,0 -4.57263,17.271913 -4.57263,17.271913 0,0 -4.56489,-31.350308 -4.56489,-31.350308 0,0 3.1018,0.399872 3.1018,0.399872 0,0 2.23125,17.302482 2.23125,17.302482 0,0 4.5716,-17.201161 4.5716,-17.201161 0,0 2.48011,18.325657 2.48011,18.325657 0,0 4.30892,-16.674766 4.30892,-16.674766 0,0 3.54891,0.457512 3.54891,0.457512"
           inkscape:connector-curvature="0" />
        <path
           id="path10915"
           d="m 159.48545,81.308632 c 0,0 -0.14506,2.466001 -0.14506,2.466001 1.08487,-2.027243 2.18358,-2.972954 3.29626,-2.831021 0.97953,0.125009 1.8738,0.992223 2.68199,2.604674 0,0 -2.07993,5.347173 -2.07993,5.347173 -0.59716,-1.153753 -1.19308,-1.770955 -1.78777,-1.853275 -0.40876,-0.05653 -0.76837,0.06793 -1.07902,0.373103 -0.31033,0.284418 -0.58159,0.778602 -0.81389,1.482374 -0.22246,0.684173 -0.41092,1.58735 -0.56546,2.709458 -0.14482,1.12299 -0.26061,2.474469 -0.34742,4.054536 0,0 -0.83785,14.250185 -0.83785,14.250185 0,0 -3.1705,-0.5674 -3.1705,-0.5674 0,0 1.65971,-28.446914 1.65971,-28.446914 0,0 3.18894,0.411106 3.18894,0.411106"
           inkscape:connector-curvature="0" />
        <path
           id="path10917"
           d="m 172.11805,68.890531 c 0,1.003379 -0.1767,1.8517 -0.5298,2.544356 -0.35269,0.691923 -0.77536,1.010087 -1.2677,0.955217 -0.49153,-0.05472 -0.91719,-0.476639 -1.27726,-1.265141 -0.34966,-0.827922 -0.52433,-1.750538 -0.52433,-2.768572 -1e-5,-1.017937 0.16966,-1.862856 0.50931,-2.535355 0.35004,-0.692993 0.76564,-1.016131 1.24707,-0.968719 0.49226,0.04858 0.9199,0.476836 1.28263,1.285447 0.37326,0.789837 0.56007,1.707665 0.56008,2.752767 m -1.04353,13.912119 c 0,0 -1.74602,29.17105 -1.74602,29.17105 0,0 -3.29827,-0.59027 -3.29827,-0.59027 0,0 1.72646,-29.008502 1.72646,-29.008502 0,0 3.31783,0.427722 3.31783,0.427722"
           inkscape:connector-curvature="0" />
        <path
           id="path10919"
           d="m 179.01598,90.329159 c 0,0 -1.40773,23.126301 -1.40773,23.126301 0,0 -3.39164,-0.60698 -3.39164,-0.60698 0,0 1.39174,-22.995732 1.39174,-22.995732 0,0 -1.91023,-0.267064 -1.91023,-0.267064 0,0 0.38103,-6.395689 0.38103,-6.395689 0,0 1.91269,0.246577 1.91269,0.246577 0,0 0.83004,-13.70396 0.83004,-13.70396 0,0 3.4216,0.361663 3.4216,0.361663 0,0 -0.8396,13.782164 -0.8396,13.782164 0,0 3.18457,0.410542 3.18457,0.410542 0,0 -0.39205,6.486823 -0.39205,6.486823 0,0 -3.18042,-0.444645 -3.18042,-0.444645"
           inkscape:connector-curvature="0" />
        <path
           id="path10921"
           d="m 200.09638,86.544035 c 0,0 -1.9219,30.592005 -1.9219,30.592005 0,0 -3.62917,-0.64949 -3.62917,-0.64949 0,0 0.21227,-3.28285 0.21227,-3.28285 -1.54259,2.41691 -3.13133,3.47304 -4.76546,3.17868 -1.99844,-0.35998 -3.6185,-2.0112 -4.86612,-4.94632 -1.24249,-2.92301 -1.86183,-6.53106 -1.86186,-10.83321 -3e-5,-4.962328 0.70859,-8.930336 2.13088,-11.914549 1.45024,-2.995545 3.31826,-4.353123 5.61178,-4.060287 1.08848,0.139025 2.01838,0.614876 2.78825,1.428732 0.78266,0.817394 1.58372,2.160431 2.4033,4.031318 0,0 0.24627,-4.0148 0.24627,-4.0148 0,0 3.65176,0.470771 3.65176,0.470771 m -4.43909,13.904255 c -4e-5,-2.717054 -0.39303,-4.980086 -1.17745,-6.785644 -0.78246,-1.822565 -1.79014,-2.81699 -3.02082,-2.98627 -1.33305,-0.183291 -2.44658,0.70638 -3.34298,2.664066 -0.89378,1.973413 -1.33967,4.478873 -1.33964,7.520788 1e-5,2.65635 0.37157,4.89141 1.11605,6.70853 0.74629,1.8216 1.70851,2.83435 2.88872,3.03545 1.31431,0.22398 2.45545,-0.65327 3.42144,-2.63719 0.96902,-2.03362 1.45468,-4.54179 1.45468,-7.51973"
           inkscape:connector-curvature="0" />
        <path
           id="path10923"
           d="m 210.59369,62.948857 c 0,0 -1.76545,27.618349 -1.76545,27.618349 0.99306,-1.312846 1.85741,-2.168093 2.59198,-2.563345 0.77082,-0.414004 1.60707,-0.563925 2.50926,-0.448755 2.23175,0.285016 4.08604,2.008664 5.55612,5.180407 1.47685,3.163873 2.21788,7.051196 2.21795,11.650967 4e-5,5.05301 -0.84154,9.11579 -2.51812,12.17628 -1.67956,3.08741 -3.71714,4.40866 -6.1058,3.97839 -2.21018,-0.39812 -4.13144,-2.38754 -5.76892,-5.95632 0,0 -0.27204,4.13756 -0.27204,4.13756 0,0 -3.73402,-0.66825 -3.73402,-0.66825 0,0 3.51259,-55.442257 3.51259,-55.442257 0,0 3.77645,0.336974 3.77645,0.336974 m 7.18157,41.007653 c -5e-5,-2.83751 -0.43943,-5.220592 -1.31634,-7.145285 -0.87451,-1.919338 -2.00774,-2.97287 -3.3969,-3.163946 -1.49809,-0.205986 -2.73151,0.692689 -3.70333,2.690649 -0.96885,1.947466 -1.45212,4.570632 -1.45209,7.874012 3e-5,2.77133 0.41508,5.06732 1.24682,6.89164 0.83393,1.87364 1.9225,2.92662 3.26838,3.15588 1.49058,0.25395 2.74975,-0.61929 3.77469,-2.62548 1.05165,-2.00888 1.57878,-4.5697 1.57877,-7.67747"
           inkscape:connector-curvature="0" />
        <path
           id="path10925"
           d="m 232.93555,64.942427 c 0,0 -3.79307,57.735703 -3.79307,57.735703 0,0 -4.00192,-0.71619 -4.00192,-0.71619 0,0 3.76441,-57.379163 3.76441,-57.379163 0,0 4.03058,0.35965 4.03058,0.35965"
           inkscape:connector-curvature="0" />
        <path
           id="path10927"
           d="m 239.0771,110.77066 c 3e-5,2.42055 0.4512,4.48489 1.35536,6.19654 0.91925,1.71851 2.09407,2.70154 3.52717,2.94627 1.9759,0.33746 3.50088,-0.76924 4.56866,-3.32776 0,0 3.20464,3.76569 3.20464,3.76569 -1.11698,2.55798 -2.26253,4.27421 -3.43636,5.15274 -1.18257,0.89672 -2.65489,1.18453 -4.41309,0.86707 -2.77117,-0.50035 -4.9627,-2.39688 -6.58594,-5.68055 -1.61524,-3.26745 -2.41991,-7.39273 -2.41997,-12.38791 -7e-5,-5.2264 0.88505,-9.472622 2.6626,-12.752021 1.77469,-3.27557 4.03189,-4.746141 6.78148,-4.39624 2.68278,0.341472 4.81246,2.219379 6.37821,5.643695 1.59914,3.467846 2.40165,7.941666 2.40175,13.409026 -1e-5,0.57052 -0.0196,1.49453 -0.0587,2.77194 0,0 -13.96577,-2.20849 -13.96577,-2.20849 m 9.66372,-4.77749 c -0.45108,-5.21198 -1.99914,-7.996687 -4.62896,-8.357264 -2.4703,-0.338637 -4.06923,1.982786 -4.80935,6.953984 0,0 9.43831,1.40328 9.43831,1.40328"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer10"
       inkscape:label="Base Image"
       style="display:none">
      <g
         transform="matrix(0.71864924,0,0,0.71864924,102.10269,88.99025)"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
         id="text7027">
        <path
           inkscape:connector-curvature="0"
           d="m 257.77651,339.30723 c 0,0 -0.0126,-47.29911 -0.0126,-47.29911 0,0 -1.07548,0.31593 -1.07548,0.31593 -1.66284,0.48854 -2.85746,0.28792 -3.58019,-0.6041 -0.70114,-0.93919 -1.05207,-2.31685 -1.05207,-4.13168 0,-1.81444 0.35082,-3.37328 1.05164,-4.67526 0.72225,-1.34546 1.91609,-2.25144 3.57799,-2.71834 0,0 16.97387,-4.76807 16.97387,-4.76807 3.96095,-1.11259 7.12511,-0.0323 9.50921,3.22201 2.37256,3.20077 3.55893,7.47543 3.56767,12.83748 0.004,2.54895 -0.26558,5.03047 -0.80964,7.44667 -0.54488,2.41969 -1.37616,4.76094 -2.49546,7.02568 2.05523,1.5616 3.5872,3.66333 4.601,6.30634 1.03267,2.59309 1.55152,5.7504 1.5581,9.47676 0.005,2.96688 -0.35657,5.85099 -1.08626,8.65561 -0.5429,2.13369 -1.21349,3.9137 -2.01229,5.33981 -1.07439,1.98467 -2.39566,3.77328 -3.96594,5.36629 -1.57592,1.56019 -3.5546,2.76646 -5.94107,3.61797 0,0 -19.88366,7.09459 -19.88366,7.09459 -1.66745,0.59496 -2.8654,0.46776 -3.59015,-0.3841 -0.7031,-0.90081 -1.05501,-2.26426 -1.05501,-4.08924 0,-1.78498 0.36314,-3.35858 1.08856,-4.71936 0.72421,-1.39809 1.91002,-2.37974 3.55397,-2.94517 0,0 1.07785,-0.37071 1.07785,-0.37071 m 6.82963,-31.88447 c 0,0 7.39137,-2.30892 7.39137,-2.30892 2.62158,-0.8189 4.78642,-2.6695 6.50056,-5.5468 1.1532,-1.92898 1.72713,-4.06042 1.72408,-6.3978 -0.003,-2.06859 -0.54939,-3.7066 -1.64172,-4.9163 -1.09485,-1.25071 -2.83681,-1.52649 -5.23332,-0.82255 0,0 -8.7512,2.57075 -8.7512,2.57075 0,0 0.0102,17.42162 0.0102,17.42162 m 0.0173,29.5295 c 0,0 11.59226,-3.98707 11.59226,-3.98707 2.6872,-0.92424 4.5687,-2.28259 5.65417,-4.07576 0.82819,-1.3569 1.24028,-3.03056 1.23742,-5.02267 -0.003,-2.37465 -0.82491,-4.43936 -2.46842,-6.19896 -1.6491,-1.76544 -4.02284,-2.14729 -7.13269,-1.13597 0,0 -8.89303,2.89208 -8.89303,2.89208 0,0 0.0103,17.52835 0.0103,17.52835"
           id="path7034" />
        <path
           inkscape:connector-curvature="0"
           d="m 315.63395,330.78832 c 0,0 -0.008,-2.66312 -0.008,-2.66312 -1.5205,2.05858 -3.20684,3.79158 -5.06081,5.19796 -1.86182,1.44967 -3.56117,2.45156 -5.09604,3.00252 -3.35058,1.20262 -6.09378,0.54663 -8.21773,-1.98311 -2.1334,-2.5787 -3.20755,-5.87974 -3.21543,-9.8935 -0.01,-4.88257 1.33706,-9.85215 4.02708,-14.88639 2.69328,-5.04641 6.38764,-8.30943 11.05913,-9.80146 1.85895,-0.5937 3.99917,-0.90711 6.4167,-0.94198 0,0 -0.008,-2.71047 -0.008,-2.71047 -0.005,-1.69597 -0.40413,-2.95433 -1.19822,-3.7763 -0.77565,-0.82947 -2.26653,-0.90179 -4.47994,-0.2133 -1.82287,0.56707 -4.19603,1.97667 -7.12852,4.23834 -1.09717,0.83095 -1.95272,1.34329 -2.56522,1.53566 -0.83846,0.26342 -1.55663,-0.0562 -2.15389,-0.96001 -0.57751,-0.94891 -0.86835,-2.28914 -0.872,-4.01969 -0.002,-0.97796 0.0989,-1.85561 0.30293,-2.6328 0.20389,-0.77667 0.49009,-1.42758 0.85846,-1.95271 0.36795,-0.56215 1.13444,-1.3193 2.29738,-2.26995 1.54584,-1.25105 3.11705,-2.33895 4.71339,-3.2645 1.59048,-0.95927 3.02556,-1.62913 4.30677,-2.01132 3.80176,-1.13384 6.73,-0.47944 8.80217,1.94792 2.08246,2.37423 3.12878,6.17396 3.14584,11.40899 0,0 0.0755,23.20429 0.0755,23.20429 0,0 1.02221,-0.35158 1.02221,-0.35158 1.43677,-0.49417 2.45508,-0.3138 3.05789,0.53908 0.62114,0.80865 0.93435,2.052 0.94024,3.73109 0.006,1.64284 -0.29817,3.103 -0.91229,4.38174 -0.5959,1.23719 -1.61113,2.11228 -3.0486,2.62518 0,0 -7.06105,2.51942 -7.06105,2.51942 m -0.0605,-20.34496 c -2.43905,-0.0753 -4.70041,0.23148 -6.78144,0.92294 -2.51422,0.83547 -4.68502,2.69856 -6.5076,5.59502 -1.13795,1.84779 -1.70634,3.52499 -1.70292,5.02807 0.002,1.0899 0.28029,1.87848 0.83301,2.36524 1.0218,0.88744 2.41549,1.02464 4.17755,0.41484 1.49329,-0.5168 3.1709,-1.63797 5.03058,-3.3593 1.87161,-1.72078 3.52592,-3.75158 4.9653,-6.09198 0,0 -0.0145,-4.87483 -0.0145,-4.87483"
           id="path7036" />
        <path
           inkscape:connector-curvature="0"
           d="m 351.45961,282.46833 c -0.91452,-0.81047 -1.87521,-1.32503 -2.88241,-1.54283 -1.00973,-0.2537 -2.06646,-0.2094 -3.17058,0.13403 -2.19836,0.68386 -3.94926,1.92675 -5.24728,3.73026 -0.5762,0.79085 -0.86315,1.54528 -0.8602,2.26251 0.003,0.82494 0.39908,1.5073 1.18614,2.04629 0.59861,0.38285 1.93021,0.51244 3.98804,0.38963 3.75668,-0.20875 6.35384,-0.0517 7.81225,0.46829 1.90678,0.68882 3.37659,2.14965 4.41397,4.38104 1.03506,2.22658 1.55882,4.7606 1.57299,7.60629 0.0192,3.8658 -0.83398,7.40347 -2.56521,10.62256 -2.494,4.67157 -5.77005,7.74446 -9.84541,9.20702 -1.64484,0.59029 -3.1764,0.85271 -4.59341,0.78534 -1.40277,-0.0383 -2.69857,-0.38697 -3.88635,-1.04728 -0.28039,0.56921 -0.58022,1.03726 -0.89956,1.40403 -0.31959,0.36694 -0.64935,0.61132 -0.9893,0.73259 -0.90789,0.32388 -1.6396,0.0228 -2.1942,-0.90467 -0.5364,-0.97147 -0.80986,-2.79935 -0.81995,-5.48228 0,0 -0.0141,-3.75135 -0.0141,-3.75135 -0.0101,-2.68128 0.24884,-4.67325 0.77628,-5.97507 0.54553,-1.34257 1.25338,-2.15911 2.12282,-2.4506 0.69806,-0.23398 1.28355,-0.0514 1.75697,0.54708 0.47278,0.56188 0.84401,1.69794 1.114,3.40803 0.88673,1.1377 1.94787,1.87097 3.18209,2.20069 1.2306,0.29303 2.64142,0.16353 4.23059,-0.38634 2.59273,-0.89712 4.59185,-2.37089 6.00541,-4.42001 0.6686,-1.00942 1.00048,-1.93805 0.99651,-2.78707 -0.007,-1.41485 -0.49308,-2.41976 -1.46078,-3.01586 -0.96983,-0.59733 -2.9752,-0.70841 -6.03069,-0.33021 -4.58673,0.59585 -7.6827,-0.17688 -9.25518,-2.32843 -1.57769,-2.12264 -2.37589,-5.11935 -2.39063,-8.9837 -0.0152,-3.97117 0.8521,-7.54395 2.5961,-10.70925 2.35076,-4.30605 5.42069,-7.0163 9.19499,-8.14207 1.30582,-0.38941 2.55386,-0.51306 3.74464,-0.37241 1.20554,0.0997 2.35451,0.48017 3.44739,1.14045 0.34168,-0.59723 0.65654,-1.06254 0.94466,-1.39612 0.30594,-0.33858 0.58518,-0.54582 0.83779,-0.62164 0.75685,-0.22696 1.38927,0.14621 1.89787,1.11843 0.50782,0.93618 0.76793,2.70208 0.78072,5.29897 0,0 0.013,2.63267 0.013,2.63267 0.0115,2.35245 -0.12411,3.99567 -0.4071,4.9298 -0.56706,1.80018 -1.34596,2.85977 -2.33781,3.17733 -0.6686,0.21411 -1.25866,-0.004 -1.76979,-0.6537 -0.51177,-0.6508 -0.84365,-1.62508 -0.99522,-2.92244"
           id="path7038" />
        <path
           inkscape:connector-curvature="0"
           d="m 391.08767,286.09973 c 0,0 -21.40037,7.16598 -21.40037,7.16598 0.57216,2.58305 1.56606,4.48187 2.97874,5.69565 1.42536,1.20392 3.33049,1.3912 5.70856,0.56836 1.94011,-0.6713 4.49918,-2.39426 7.66518,-5.15474 1.2993,-1.12534 2.19719,-1.77197 2.69637,-1.94256 0.68118,-0.23272 1.25664,0.0618 1.72693,0.88273 0.46973,0.82008 0.70926,1.97252 0.71896,3.45813 0.009,1.35076 -0.23184,2.58617 -0.72232,3.70718 -0.65513,1.48575 -2.26858,3.26333 -4.85199,5.34083 -2.60048,2.05693 -5.11941,3.52549 -7.55489,4.39953 -4.22378,1.51581 -7.65099,0.33127 -10.26023,-3.58227 -2.60677,-3.94222 -3.93431,-9.46384 -3.97137,-16.54436 -0.0394,-7.52874 1.32903,-14.07941 4.09047,-19.62629 2.75903,-5.5472 5.92505,-8.84107 9.48957,-9.90426 2.12737,-0.63445 4.07097,-0.46394 5.83355,0.50605 1.77201,0.96099 3.08675,2.17372 3.94852,3.63907 1.21416,2.13157 2.22166,4.91277 3.02403,8.34384 0.54592,2.39326 0.82964,5.27426 0.85162,8.64573 0,0 0.0287,4.4014 0.0287,4.4014 m -5.73214,-8.54412 c -0.80672,-2.7354 -1.85391,-4.63367 -3.14346,-5.69374 -1.29366,-1.0973 -2.833,-1.37003 -4.62091,-0.81389 -1.77862,0.55329 -3.31967,1.79032 -4.62063,3.71406 -1.30548,1.89566 -2.36785,4.49783 -3.18525,7.80742 0,0 15.57025,-5.01385 15.57025,-5.01385"
           id="path7040" />
        <path
           inkscape:connector-curvature="0"
           d="m 438.50105,238.91477 c 0,0 0.33366,38.11886 0.33366,38.11886 0,0 4.5189,-1.55424 4.5189,-1.55424 1.06904,-0.36769 1.8298,-0.17153 2.28417,0.58709 0.46789,0.72139 0.70825,1.80481 0.72144,3.25104 0.0129,1.41496 -0.20635,2.65984 -0.65806,3.73554 -0.43823,1.04046 -1.19112,1.75156 -2.26052,2.13313 0,0 -13.68028,4.8812 -13.68028,4.8812 -1.1116,0.39663 -1.91344,0.23005 -2.40353,-0.50122 -0.47582,-0.76976 -0.72,-1.89742 -0.73214,-3.38218 -0.0119,-1.45226 0.21273,-2.71134 0.67337,-3.77635 0.47483,-1.10101 1.26883,-1.84247 2.38003,-2.22466 0,0 4.62789,-1.59173 4.62789,-1.59173 0,0 -0.3275,-38.34793 -0.3275,-38.34793 0,0 -4.6215,1.35761 -4.6215,1.35761 -1.10965,0.32602 -1.91007,0.11077 -2.39927,-0.64712 -0.47496,-0.79518 -0.71868,-1.93224 -0.73077,-3.41027 -0.0121,-1.47774 0.21202,-2.73263 0.67186,-3.76384 0.47403,-1.06604 1.26664,-1.75469 2.37589,-2.06634 0,0 13.65257,-3.78793 13.65257,-3.78793 1.06727,-0.29982 1.82661,-0.0734 2.27992,0.67815 0.4671,0.74675 0.70703,1.83959 0.72016,3.27935 0.0131,1.44004 -0.20565,2.68084 -0.65663,3.72319 -0.43753,1.00825 -1.18918,1.66931 -2.25681,1.98288 0,0 -4.51285,1.3257 -4.51285,1.3257"
           id="path7042" />
        <path
           inkscape:connector-curvature="0"
           d="m 455.88348,238.41146 c 0,0 0.0257,2.69003 0.0257,2.69003 0.68312,-1.72546 1.29991,-2.94833 1.85075,-3.67036 0.56356,-0.75579 1.21217,-1.24275 1.94542,-1.46144 0.62141,-0.18526 1.23821,-0.0305 1.85047,0.46347 0.61126,0.49329 1.21121,1.3268 1.79992,2.49991 0.71137,-1.56555 1.43158,-2.77864 2.16064,-3.64047 0.7408,-0.89447 1.49699,-1.45627 2.26852,-1.68643 1.53816,-0.45872 2.79097,0.0945 3.76153,1.65542 1.28104,2.03781 1.94044,5.01712 1.98128,8.9439 0,0 0.21643,20.82129 0.21643,20.82129 0.85204,-0.29305 1.48772,-0.0721 1.90821,0.66181 0.42,0.73316 0.63698,1.77834 0.65128,3.13628 0.0143,1.35811 -0.17928,2.54755 -0.58098,3.56911 -0.40256,0.99258 -1.09593,1.66483 -2.08175,2.01658 0,0 -3.92315,1.3998 -3.92315,1.3998 0,0 -0.30125,-29.5317 -0.30125,-29.5317 -0.0146,-1.42806 -0.13917,-2.37963 -0.37387,-2.85506 -0.23487,-0.47561 -0.58859,-0.64006 -1.06152,-0.49297 -0.46004,0.14313 -0.88398,0.55012 -1.27173,1.2214 -0.49476,0.91973 -1.09234,2.54691 -1.79337,4.88434 0,0 0.1894,18.96164 0.1894,18.96164 0.8724,-0.30006 1.52302,-0.079 1.95307,0.662 0.42956,0.74027 0.65113,1.79714 0.66503,3.17137 0.0139,1.37439 -0.18487,2.57895 -0.59663,3.61451 -0.4126,1.00623 -1.12276,1.68951 -2.13218,2.04968 0,0 -4.01729,1.43339 -4.01729,1.43339 0,0 -0.29261,-29.88883 -0.29261,-29.88883 -0.0139,-1.41455 -0.14767,-2.35965 -0.40153,-2.83564 -0.24053,-0.51127 -0.60278,-0.69179 -1.08713,-0.54115 -0.49887,0.15521 -0.98803,0.66317 -1.46747,1.52462 -0.4804,0.8318 -1.05239,2.39108 -1.71646,4.68046 0,0 0.18368,19.19395 0.18368,19.19395 0.89368,-0.30737 1.55989,-0.0863 1.99991,0.66201 0.45342,0.74274 0.68669,1.80921 0.70018,3.2002 0.0135,1.39115 -0.19765,2.61376 -0.6338,3.6687 -0.42312,1.02036 -1.1508,1.7151 -2.18483,2.08405 0,0 -3.90344,1.39277 -3.90344,1.39277 -1.04783,0.37387 -1.79708,0.20173 -2.24591,-0.51779 -0.46384,-0.74661 -0.70262,-1.84073 -0.71594,-3.28161 -0.013,-1.40935 0.19719,-2.62896 0.63021,-3.65799 0.43218,-1.05897 1.10915,-1.74654 2.02961,-2.06313 0,0 -0.21801,-23.27593 -0.21801,-23.27593 -0.91971,0.2877 -1.60455,0.0483 -2.05317,-0.71937 -0.44909,-0.76843 -0.68033,-1.85564 -0.69331,-3.26087 -0.013,-1.40499 0.20412,-2.61343 0.65085,-3.62449 0.43169,-1.03656 1.17158,-1.71162 2.21788,-2.0255 0,0 4.10732,-1.23196 4.10732,-1.23196"
           id="path7044" />
        <path
           inkscape:connector-curvature="0"
           d="m 490.87185,268.26248 c 0,0 -0.0238,-2.12947 -0.0238,-2.12947 -0.96684,1.56112 -2.04221,2.85176 -3.22705,3.87118 -1.18857,1.05267 -2.27482,1.75638 -3.25773,2.1092 -2.1433,0.7693 -3.90736,0.0916 -5.28616,-2.04226 -1.38398,-2.17145 -2.09463,-4.85752 -2.12832,-8.05178 -0.041,-3.88602 0.78508,-7.77051 2.47177,-11.63982 1.69085,-3.8838 4.03967,-6.29946 7.03403,-7.25585 1.19331,-0.3811 2.57099,-0.52435 4.13102,-0.43103 0,0 -0.0243,-2.16861 -0.0243,-2.16861 -0.0152,-1.35698 -0.28175,-2.38328 -0.80016,-3.07972 -0.50639,-0.70131 -1.46852,-0.83189 -2.89014,-0.3897 -1.16973,0.36389 -2.6864,1.37311 -4.5546,3.03337 -0.69844,0.60846 -1.2438,0.97457 -1.63533,1.09754 -0.5358,0.16833 -0.99846,-0.12206 -1.38767,-0.87192 -0.37678,-0.78462 -0.57264,-1.86678 -0.58731,-3.24582 -0.008,-0.77933 0.0501,-1.47376 0.17529,-2.08321 0.1251,-0.60911 0.30385,-1.1141 0.53618,-1.51496 0.23184,-0.43046 0.71786,-0.99743 1.45701,-1.70003 0.98321,-0.92446 1.98458,-1.71816 3.00395,-2.38162 1.01611,-0.69116 1.93495,-1.15887 2.7573,-1.40418 2.44294,-0.72858 4.33815,-0.0679 5.69456,1.97299 1.36388,2.00056 2.06787,5.09484 2.11563,9.28942 0,0 0.21151,18.5876 0.21151,18.5876 0,0 0.65945,-0.22681 0.65945,-0.22681 0.92741,-0.31897 1.58879,-0.11998 1.98565,0.5958 0.40854,0.68149 0.62043,1.69497 0.63598,3.04114 0.0152,1.31705 -0.17178,2.47066 -0.56118,3.4616 -0.37775,0.95836 -1.02971,1.60314 -1.95738,1.93413 0,0 -4.54817,1.62282 -4.54817,1.62282 m -0.18218,-16.27076 c -1.57456,-0.18741 -3.03025,-0.0602 -4.36568,0.38353 -1.61175,0.53558 -2.9938,1.90828 -4.14364,4.12194 -0.71713,1.41252 -1.06983,2.71889 -1.05695,3.91694 0.009,0.8687 0.19313,1.51219 0.55118,1.93012 0.66205,0.76298 1.55791,0.94835 2.68579,0.55802 0.95654,-0.33103 2.02809,-1.13477 3.2135,-2.40861 1.19412,-1.27383 2.24686,-2.80822 3.15946,-4.60277 0,0 -0.0437,-3.89917 -0.0437,-3.89917"
           id="path7046" />
        <path
           inkscape:connector-curvature="0"
           d="m 513.83107,223.64708 c 0,0 -0.0321,-2.60694 -0.0321,-2.60694 0,0 4.24921,-1.27452 4.24921,-1.27452 0.86692,-0.25998 1.48579,-0.0345 1.85799,0.67552 0.38309,0.67764 0.58268,1.66515 0.59908,2.9632 0.016,1.27005 -0.15729,2.37215 -0.52017,3.30702 -0.35202,0.90414 -0.96092,1.49191 -1.82805,1.76307 0,0 -0.61656,0.19283 -0.61656,0.19283 0,0 0.3963,31.78092 0.3963,31.78092 0.0383,3.07233 -0.1991,5.84676 -0.71289,8.32595 -0.50258,2.50775 -1.30016,4.80111 -2.39487,6.88205 -1.09848,2.08802 -2.35446,3.40535 -3.76947,3.94832 0,0 -4.20721,1.61434 -4.20721,1.61434 -0.90127,0.34581 -1.55322,0.17312 -1.95437,-0.5193 -0.389,-0.66876 -0.59138,-1.65732 -0.60684,-2.96502 -0.0158,-1.33662 0.16113,-2.49707 0.53047,-3.48063 0.38146,-0.95795 1.02342,-1.60387 1.92446,-1.93799 0,0 4.09797,-1.51959 4.09797,-1.51959 1.12773,-0.41818 1.99206,-1.47339 2.59485,-3.16418 0.6016,-1.68753 0.88825,-3.64562 0.86083,-5.87641 0,0 -0.0527,-4.28868 -0.0527,-4.28868 -0.79402,1.54526 -1.61175,2.78547 -2.45334,3.71951 -0.83173,0.93214 -1.69344,1.55874 -2.58528,1.87869 -2.53138,0.90814 -4.68912,-0.3421 -6.46539,-3.76745 -1.78479,-3.47022 -2.71501,-8.19944 -2.78452,-14.17311 -0.0698,-5.99942 0.74291,-11.29294 2.43134,-15.86475 1.6791,-4.57629 3.78635,-7.2342 6.31459,-7.98783 0.93884,-0.27979 1.83117,-0.21544 2.67743,0.19177 0.8558,0.37421 1.67211,1.10227 2.44924,2.18321 m 0.18895,16.81679 c -0.0397,-3.22458 -0.57346,-5.86075 -1.60346,-7.91342 -1.02083,-2.06186 -2.23403,-2.87672 -3.64183,-2.43909 -1.41359,0.43948 -2.61815,2.01503 -3.61171,4.73172 -0.98452,2.72148 -1.4586,5.72173 -1.41993,8.9951 0.039,3.30339 0.58054,5.9872 1.62246,8.04652 1.05092,2.02074 2.28478,2.78371 3.69937,2.29449 1.4088,-0.48717 2.59406,-2.07774 3.55781,-4.76688 0.97229,-2.71336 1.4373,-5.6943 1.39729,-8.94844"
           id="path7048" />
        <path
           inkscape:connector-curvature="0"
           d="m 540.11181,236.19855 c 0,0 -14.17571,4.74678 -14.17571,4.74678 0.39598,2.12039 1.06655,3.70874 2.0101,4.76439 0.95245,1.04897 2.21683,1.29937 3.78949,0.75521 1.28429,-0.44438 2.97443,-1.71113 5.06396,-3.7914 0.85848,-0.84849 1.45291,-1.3286 1.78475,-1.44201 0.45294,-0.15474 0.83898,0.11397 1.1584,0.80553 0.3191,0.69101 0.48673,1.64075 0.5031,2.84977 0.0149,1.09925 -0.1376,2.09168 -0.45762,2.9779 -0.4274,1.17397 -1.49195,2.53431 -3.19995,4.08586 -1.71744,1.53209 -3.38257,2.58934 -4.99438,3.16779 -2.79108,1.00165 -5.0682,-0.14146 -6.81995,-3.44725 -1.74841,-3.32527 -2.66198,-7.85839 -2.73457,-13.58545 -0.0772,-6.09039 0.78143,-11.32407 2.56808,-15.68474 1.78745,-4.3669 3.86227,-6.89434 6.21974,-7.59751 1.4088,-0.42014 2.70212,-0.19498 3.88143,0.67196 1.18643,0.86072 2.07063,1.90611 2.65495,3.13691 0.82406,1.78934 1.51493,4.09853 2.07343,6.92778 0.38048,1.97331 0.58916,4.3313 0.62629,7.07581 0,0 0.0485,3.58267 0.0485,3.58267 m -3.88051,-7.22718 c -0.55565,-2.26143 -1.2656,-3.85327 -2.13087,-4.7749 -0.86777,-0.95155 -1.89277,-1.24457 -3.07652,-0.87637 -1.17666,0.36604 -2.19027,1.29725 -3.03946,2.79568 -0.85185,1.47453 -1.5375,3.53206 -2.05595,6.17324 0,0 10.3028,-3.31765 10.3028,-3.31765"
           id="path7050" />
      </g>
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer11"
       inkscape:label="Image (name)"
       style="display:none">
      <g
         id="text14133"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New">
        <path
           id="path14140"
           d="m 290.77223,304.74825 c 0,0 0,32.31662 0,32.31662 0,0 5.87857,-2.13185 5.87857,-2.13185 0.40465,-0.14674 0.69438,-0.12402 0.86947,0.0681 0.17497,0.17071 0.26242,0.45829 0.26244,0.86282 -2e-5,0.38327 -0.0874,0.73459 -0.26244,1.05416 -0.17509,0.31972 -0.46482,0.5537 -0.86947,0.70197 0,0 -13.61665,4.98933 -13.61665,4.98933 -0.42075,0.15417 -0.72258,0.13428 -0.9052,-0.06 -0.18272,-0.19433 -0.27412,-0.48744 -0.27411,-0.87928 -1e-5,-0.41357 0.0914,-0.77331 0.27411,-1.07911 0.18262,-0.32736 0.48445,-0.56735 0.9052,-0.71994 0,0 6.0052,-2.17777 6.0052,-2.17777 0,0 0,-32.39447 0,-32.39447 0,0 -6.0052,1.90797 -6.0052,1.90797 -0.42075,0.13372 -0.72258,0.10996 -0.9052,-0.0714 -0.18272,-0.20317 -0.27412,-0.51163 -0.27411,-0.92526 -1e-5,-0.41355 0.0914,-0.76884 0.27411,-1.06575 0.18262,-0.31845 0.48445,-0.54373 0.9052,-0.67588 0,0 13.61665,-4.27499 13.61665,-4.27499 0.40465,-0.127 0.69438,-0.0902 0.86947,0.11043 0.17497,0.17924 0.26242,0.47109 0.26244,0.87558 -2e-5,0.40459 -0.0874,0.76232 -0.26244,1.07333 -0.17509,0.28993 -0.46482,0.49917 -0.86947,0.6277 0,0 -5.87857,1.86774 -5.87857,1.86774"
           inkscape:connector-curvature="0" />
        <path
           id="path14142"
           d="m 306.92675,306.55175 c 0,0 0,2.67986 0,2.67986 1.40003,-2.87625 2.80101,-4.53947 4.20289,-4.99685 0.84101,-0.27434 1.57685,-0.14959 2.20819,0.37302 0.63018,0.50092 1.1566,1.40903 1.57974,2.72378 0.71685,-1.69138 1.43861,-3.00815 2.16526,-3.95142 0.7378,-0.96608 1.47405,-1.5684 2.20876,-1.80813 1.14953,-0.37499 2.06265,-0.0655 2.74123,0.9259 0.89011,1.26835 1.33432,2.825 1.33433,4.6724 0,0 0,18.0741 0,18.0741 0,0 1.32918,-0.48202 1.32918,-0.48202 0.37346,-0.13543 0.64087,-0.10964 0.80249,0.0773 0.16149,0.1664 0.24221,0.4439 0.24224,0.83254 -3e-5,0.36823 -0.0808,0.70459 -0.24224,1.00917 -0.16162,0.30475 -0.42903,0.52553 -0.80249,0.66237 0,0 -2.90839,1.06568 -2.90839,1.06568 0,0 0,-20.46113 0,-20.46113 -2e-5,-1.31673 -0.24507,-2.32553 -0.73568,-3.02713 -0.49135,-0.70254 -1.05913,-0.94797 -1.70374,-0.73524 -0.58247,0.19227 -1.19764,0.75726 -1.8457,1.69604 -0.6493,0.9199 -1.38919,2.56622 -2.22024,4.94195 0,0 0,17.3523 0,17.3523 0,0 1.3415,-0.48649 1.3415,-0.48649 0.38232,-0.13865 0.65607,-0.11371 0.8215,0.0747 0.16532,0.16767 0.24796,0.44807 0.24797,0.8413 -1e-5,0.37255 -0.0826,0.71319 -0.24797,1.02208 -0.16543,0.30904 -0.43918,0.53359 -0.8215,0.67367 0,0 -2.97744,1.09098 -2.97744,1.09098 0,0 0,-20.5158 0,-20.5158 -10e-6,-1.39476 -0.25733,-2.45395 -0.77253,-3.1784 -0.50307,-0.7506 -1.0715,-1.02182 -1.70561,-0.81257 -0.58338,0.19258 -1.16121,0.68673 -1.7335,1.4832 -0.79496,1.12309 -1.63094,2.88106 -2.50825,5.27652 0,0 0,17.56098 0,17.56098 0,0 1.39351,-0.50535 1.39351,-0.50535 0.39153,-0.14199 0.67186,-0.11795 0.84127,0.072 0.16931,0.16894 0.25394,0.45233 0.25395,0.85026 -10e-6,0.377 -0.0846,0.72208 -0.25395,1.0354 -0.16941,0.31346 -0.44974,0.54191 -0.84127,0.68538 0,0 -4.455,1.63237 -4.455,1.63237 -0.39697,0.14545 -0.68175,0.12306 -0.85404,-0.0675 -0.17239,-0.19062 -0.25861,-0.47625 -0.25861,-0.85683 0,-0.40172 0.0862,-0.75019 0.25861,-1.04538 0.17229,-0.31613 0.45707,-0.54619 0.85404,-0.69015 0,0 1.40566,-0.50976 1.40566,-0.50976 0,0 0,-22.02661 0,-22.02661 0,0 -1.40566,0.46583 -1.40566,0.46583 -0.39697,0.13157 -0.68175,0.0992 -0.85404,-0.0974 -0.17239,-0.19662 -0.25861,-0.49584 -0.25861,-0.8976 0,-0.38054 0.0862,-0.72601 0.25861,-1.03629 0.17229,-0.31008 0.45707,-0.53015 0.85404,-0.66022 0,0 3.06149,-1.00289 3.06149,-1.00289"
           inkscape:connector-curvature="0" />
        <path
           id="path14144"
           d="m 341.55437,321.16678 c 0,0 0,-3.62699 0,-3.62699 -2.17583,3.87291 -4.51596,6.27757 -7.0237,7.20015 -1.83227,0.67408 -3.27105,0.43232 -4.31124,-0.73067 -1.0434,-1.1869 -1.56629,-2.91222 -1.56629,-5.17318 0,-2.48503 0.68882,-4.89489 2.06231,-7.22253 1.36795,-2.31825 3.35505,-3.9208 5.95041,-4.80953 0.69672,-0.23856 1.45188,-0.41679 2.26509,-0.53489 0.81121,-0.13772 1.68585,-0.20766 2.62342,-0.20985 0,0 0,-4.07662 0,-4.07662 -2e-5,-1.37882 -0.37947,-2.45115 -1.13965,-3.21827 -0.76194,-0.7688 -1.90808,-0.90154 -3.44237,-0.39518 -1.17945,0.38931 -2.84126,1.51364 -4.99257,3.38085 -0.3904,0.3327 -0.64074,0.51747 -0.7507,0.55406 -0.19558,0.0652 -0.3668,3.9e-4 -0.51363,-0.19445 -0.13465,-0.19895 -0.202,-0.48128 -0.20199,-0.84695 -1e-5,-0.3453 0.0612,-0.63975 0.18363,-0.88328 0.17131,-0.36105 0.86176,-1.00434 2.06822,-1.92757 1.89239,-1.46888 3.31682,-2.35756 4.27913,-2.67154 1.90441,-0.62126 3.38216,-0.31269 4.43882,0.92018 1.05329,1.20909 1.5787,2.79915 1.57872,4.773 0,0 0,16.62862 0,16.62862 0,0 1.97614,-0.71664 1.97614,-0.71664 0.36334,-0.13177 0.62098,-0.10607 0.77314,0.077 0.15205,0.16316 0.22807,0.43326 0.22809,0.81038 -2e-5,0.35731 -0.0761,0.68284 -0.22809,0.97668 -0.15216,0.294 -0.4098,0.50756 -0.77314,0.64069 0,0 -3.48375,1.2765 -3.48375,1.2765 m 0,-12.52962 c -0.69996,-0.0967 -1.44303,-0.0891 -2.22949,0.0233 -0.78834,0.11262 -1.62047,0.32041 -2.49673,0.62375 -2.20674,0.76397 -3.94122,2.16401 -5.19605,4.20202 -0.95337,1.53165 -1.43106,3.1323 -1.43105,4.79877 -1e-5,1.54453 0.36138,2.71501 1.08302,3.51015 0.73228,0.78902 1.7913,0.93038 3.17399,0.42691 1.31676,-0.47947 2.5323,-1.35466 3.64772,-2.62381 1.12362,-1.28931 2.27325,-3.09547 3.44859,-5.41563 0,0 0,-5.54541 0,-5.54541"
           inkscape:connector-curvature="0" />
        <path
           id="path14146"
           d="m 363.37657,292.52517 c 0,0 0,-4.46549 0,-4.46549 0,0 3.26058,-1.06811 3.26058,-1.06811 0.32917,-0.10781 0.56487,-0.0698 0.70734,0.11412 0.14235,0.1838 0.21351,0.45813 0.21353,0.82302 -2e-5,0.34574 -0.0711,0.65733 -0.21353,0.93491 -0.14247,0.27777 -0.37817,0.47117 -0.70734,0.58025 0,0 -1.86625,0.61846 -1.86625,0.61846 0,0 0,24.27579 0,24.27579 -2e-5,1.62032 -0.19884,3.14134 -0.59683,4.56437 -0.26563,0.94969 -0.7088,1.99622 -1.33026,3.14072 -0.62268,1.14668 -1.19079,2.01258 -1.70405,2.59672 -0.51409,0.58507 -1.20267,1.04343 -2.06685,1.37504 0,0 -4.03689,1.54904 -4.03689,1.54904 -0.34152,0.13104 -0.58649,0.1075 -0.73469,-0.0709 -0.14829,-0.15886 -0.22246,-0.42461 -0.22245,-0.79717 -1e-5,-0.37258 0.0741,-0.70475 0.22245,-0.99644 0.1482,-0.29158 0.39317,-0.50222 0.73469,-0.63197 0,0 4.08746,-1.52372 4.08746,-1.52372 0.83042,-0.31553 1.57488,-0.96721 2.23397,-1.95413 0.66885,-0.98911 1.21963,-2.27103 1.65294,-3.84567 0.24415,-0.9032 0.36616,-1.98282 0.36618,-3.23934 0,0 0,-7.30717 0,-7.30717 -1.50064,4.12055 -3.44508,6.62347 -5.84129,7.49922 -1.95926,0.71605 -3.66187,0.0829 -5.10374,-1.90912 -1.43671,-2.02462 -2.15742,-4.82517 -2.15742,-8.39501 0,-3.56981 0.72071,-6.859 2.15742,-9.85774 1.44187,-2.98939 3.14448,-4.80022 5.10374,-5.43943 2.39621,-0.78171 4.34065,0.36653 5.84129,3.42973 m 0,7.33618 c -2e-5,-2.86099 -0.5661,-5.08622 -1.70124,-6.6799 -1.12797,-1.60294 -2.48445,-2.14543 -4.0723,-1.62139 -1.59565,0.52668 -2.97118,1.98968 -4.12378,4.39343 -1.15668,2.39261 -1.73656,5.03846 -1.73655,7.93123 -1e-5,2.91249 0.57987,5.17691 1.73655,6.78901 1.1526,1.58686 2.52813,2.0886 4.12378,1.51152 1.58785,-0.57426 2.94433,-2.05505 4.0723,-4.43824 1.13514,-2.39819 1.70122,-5.02464 1.70124,-7.88566"
           inkscape:connector-curvature="0" />
        <path
           id="path14148"
           d="m 385.85611,293.37466 c 0,0 -13.55496,4.71571 -13.55496,4.71571 0.2372,3.02382 0.96927,5.26873 2.19279,6.73218 1.2295,1.435 2.74111,1.82321 4.53079,1.17154 0.99106,-0.36087 2.02623,-1.02925 3.10508,-2.00348 1.07513,-0.97087 1.94922,-2.05434 2.62395,-3.25093 0.19693,-0.351 0.36786,-0.55242 0.51284,-0.60437 0.16557,-0.0593 0.31039,0.01 0.43448,0.20823 0.12401,0.17941 0.18601,0.42768 0.18602,0.74485 -10e-6,0.31721 -0.0827,0.65493 -0.24805,1.01332 -0.49671,1.11372 -1.38342,2.31505 -2.66343,3.60658 -1.27482,1.27424 -2.59161,2.16252 -3.95089,2.66259 -2.28921,0.84219 -4.21494,0.2119 -5.77044,-1.90319 -1.55233,-2.14839 -2.33133,-5.14665 -2.33133,-8.98687 0,-3.4963 0.73037,-6.7413 2.18612,-9.72476 1.45984,-2.97335 3.25394,-4.80294 5.37664,-5.49548 2.17154,-0.70841 3.94716,-0.0213 5.33343,2.05084 1.38014,2.04439 2.0576,5.06314 2.03696,9.06324 m -1.32018,-1.9248 c -0.25953,-2.51086 -0.94567,-4.39376 -2.06125,-5.65048 -1.10911,-1.26462 -2.43784,-1.64358 -3.98896,-1.13166 -1.55879,0.51451 -2.90637,1.77483 -4.03999,3.78444 -1.13768,2.01684 -1.8481,4.41869 -2.1284,7.20193 0,0 12.2186,-4.20423 12.2186,-4.20423"
           inkscape:connector-curvature="0" />
      </g>
    </g>
  </g>
  <g
     style="display:none"
     inkscape:label="busybox"
     id="layer4"
     inkscape:groupmode="layer">
    <g
       inkscape:corner7="0.017576171 : -0.063230334 : 0.53533062 : 1"
       inkscape:corner0="0.22429094 : 0.05733945 : 0 : 1"
       inkscape:perspectiveID="#perspective3054"
       id="g4208"
       style="fill:#dcdc00;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
       sodipodi:type="inkscape:box3d"
       transform="translate(0,-452.36218)"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         d="M 252.05613,832.33866 386.05151,907.74315 666.77808,755.96636 540.56932,721.33247 z"
         inkscape:box3dsidetype="13"
         style="fill:#afafde;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4218"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 252.05613,733.85734 0,98.48132 288.51319,-111.00619 0,-68.52029 z"
         inkscape:box3dsidetype="6"
         style="fill:#353564;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4210"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 540.56932,652.81218 126.20876,25.51283 0,77.64135 -126.20876,-34.63389 z"
         inkscape:box3dsidetype="11"
         style="fill:#e9e9ff;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4220"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="M 252.05613,733.85734 386.05151,789.25592 666.77808,678.32501 540.56932,652.81218 z"
         inkscape:box3dsidetype="5"
         style="fill:#ffa64a;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4212"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 386.05151,789.25592 0,118.48723 280.72657,-151.77679 0,-77.64135 z"
         inkscape:box3dsidetype="14"
         style="fill:#dc7000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4216"
         sodipodi:type="inkscape:box3dside" />
      <path
         d="m 252.05613,733.85734 133.99538,55.39858 0,118.48723 -133.99538,-75.40449 z"
         inkscape:box3dsidetype="3"
         style="fill:#ff8100;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         id="path4214"
         sodipodi:type="inkscape:box3dside" />
    </g>
    <g
       transform="matrix(0.61103367,0,0,0.61103367,184.90921,105.33439)"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
       id="text10644"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         inkscape:connector-curvature="0"
         d="m 312.93934,287.49231 c 0,0 12.15911,4.70344 12.15911,4.70344 -1.16914,-3.78566 -1.36609,-6.42779 -0.62059,-7.98893 0.77303,-1.55433 2.31974,-2.67971 4.63741,-3.3866 3.54185,-1.08012 9.2588,-1.28149 17.20089,-0.60825 5.40472,0.45149 9.7877,1.2756 13.15813,2.47913 2.87526,1.02678 4.8067,2.08085 5.78393,3.16281 0.953,1.05529 0.68242,1.83093 -0.82147,2.32213 -1.33343,0.43565 -4.00933,0.4338 -8.01521,-0.006 -3.99361,-0.43793 -6.57276,-0.46832 -7.74897,-0.0914 -1.53752,0.49281 -2.08336,1.89562 -1.62775,4.23618 0.49993,2.36832 2.04282,5.7384 4.6821,10.18097 0,0 33.47054,12.9472 33.47054,12.9472 0,0 16.11184,-5.93607 16.11184,-5.93607 2.65935,-0.97979 5.63016,-1.26849 8.93207,-0.87019 3.26952,0.35821 6.67266,1.18225 10.22658,2.47982 3.50638,1.28029 5.84566,2.55946 7.00284,3.83743 1.12276,1.24563 0.36649,2.38913 -2.2893,3.42814 0,0 -34.94558,13.67154 -34.94558,13.67154 -2.92114,1.14282 -6.14486,1.50751 -9.6487,1.08867 -3.53391,-0.46581 -7.10149,-1.44423 -10.68545,-2.92597 -3.47431,-1.4364 -5.64896,-2.82393 -6.54145,-4.16365 -0.92064,-1.37405 0.0882,-2.59675 3.00508,-3.67143 0,0 7.12694,-2.62577 7.12694,-2.62577 0,0 -52.50231,-20.9034 -52.50231,-20.9034 0,0 -4.27235,1.37853 -4.27235,1.37853 -2.87125,0.92652 -5.85382,1.22124 -8.9284,0.88018 -3.09273,-0.37919 -6.11307,-1.17472 -9.04863,-2.37981 -2.84813,-1.16919 -4.53428,-2.29919 -5.0725,-3.39075 -0.55713,-1.12041 0.60034,-2.11765 3.45566,-2.99408 0,0 15.81554,-4.85435 15.81554,-4.85435"
         id="path10651" />
      <path
         inkscape:connector-curvature="0"
         d="m 450.20563,274.37419 c 8.39709,2.60001 15.72122,5.52626 21.95999,8.79892 6.3459,3.31795 10.16268,6.55569 11.35388,9.70501 1.16996,3.18395 -0.42377,5.66797 -4.84155,7.41369 -4.44065,1.75475 -11.29966,2.59506 -20.53347,2.50467 -9.3083,-0.11708 -19.3597,-1.23176 -30.04354,-3.32169 -10.53359,-2.06052 -20.14144,-4.62211 -28.79416,-7.65729 -8.60943,-3.02 -15.71357,-6.29886 -21.33959,-9.81595 -5.54916,-3.45086 -8.34517,-6.56091 -8.49064,-9.35044 -0.10977,-2.74104 2.07888,-4.77406 6.52814,-6.13104 4.4334,-1.35202 10.84307,-1.93047 19.27225,-1.74607 8.40563,0.1548 17.44551,1.11721 27.21347,2.90541 9.83591,1.79207 19.06472,4.0164 27.71522,6.69478 m -9.1814,3.24321 c -6.93135,-2.19582 -14.29205,-3.81877 -22.11986,-4.88928 -10.50184,-1.41904 -18.18921,-1.3288 -23.19156,0.27443 -4.45277,1.42715 -5.27242,3.61512 -2.37386,6.60149 2.9646,3.05434 8.51146,5.98902 16.71268,8.7937 6.85441,2.34413 14.93822,4.0224 24.21188,5.01023 9.26163,0.96935 16.11825,0.63716 20.48531,-0.98704 4.34778,-1.61702 4.83734,-3.96995 1.56143,-7.02173 -3.27745,-3.00847 -8.38315,-5.59494 -15.28602,-7.7818"
         id="path10653" />
      <path
         inkscape:connector-curvature="0"
         d="m 501.40677,256.67853 c 8.2855,2.25963 15.62021,4.79866 21.99648,7.63322 6.47283,2.86893 10.57529,5.66316 12.22278,8.37595 1.63106,2.73812 0.58249,4.87053 -3.20352,6.3666 -3.80218,1.50245 -9.99557,2.22018 -18.54554,2.1403 -8.62384,-0.10275 -18.11647,-1.06013 -28.37944,-2.85438 -10.12931,-1.77086 -19.50731,-3.97401 -28.10366,-6.58751 -8.56668,-2.60446 -15.80044,-5.43615 -21.72056,-8.47841 -5.84614,-2.99034 -9.07173,-5.68938 -9.76924,-8.11339 -0.65546,-2.38528 0.97453,-4.15611 4.85105,-5.33841 3.86545,-1.17881 9.7319,-1.68234 17.63502,-1.51931 7.87476,0.13718 16.4959,0.97944 25.94841,2.5416 9.5079,1.56414 18.52115,3.50283 27.06822,5.83374 m -7.95134,2.81325 c -6.85533,-1.90745 -14.01072,-3.3192 -21.50235,-4.25178 -10.05394,-1.23699 -17.19863,-1.16034 -21.54591,0.23293 -3.8666,1.23928 -4.20012,3.13888 -0.92004,5.7292 3.34951,2.64513 9.06763,5.18338 17.21435,7.60636 6.79993,2.02243 14.60664,3.46973 23.38184,4.3222 8.75636,0.83617 15.0472,0.55232 18.80158,-0.84401 3.74096,-1.39134 3.77541,-3.41948 0.18938,-6.0547 -3.58531,-2.60191 -8.79935,-4.84267 -15.61885,-6.7402"
         id="path10655" />
      <path
         inkscape:connector-curvature="0"
         d="m 498.86956,241.45737 c 0,0 41.97186,10.7737 41.97186,10.7737 4.72482,1.21282 8.18703,1.90051 10.35328,2.05414 3.39916,0.24557 6.37558,-0.10546 8.90933,-1.04781 3.64783,-1.3567 4.55117,-3.19879 2.7674,-5.50388 -0.6968,-0.87747 -0.71509,-1.43265 -0.0598,-1.67007 0.90171,-0.32661 2.7423,-0.34832 5.5286,-0.0653 2.81508,0.27553 5.77095,0.78832 8.87752,1.54145 2.9075,0.70494 5.07478,1.45029 6.49612,2.23688 2.387,1.26153 3.46837,2.88671 3.22214,4.89035 -0.30366,2.00954 -1.58865,3.47386 -3.86359,4.37282 -4.437,1.75331 -10.95243,2.27794 -19.46295,1.55789 -8.51408,-0.7447 -17.18129,-2.27383 -25.91666,-4.55876 0,0 -46.39955,-12.13682 -46.39955,-12.13682 0,0 -2.7752,0.89546 -2.7752,0.89546 -1.86215,0.6009 -4.11562,0.79062 -6.74951,0.56709 -2.66817,-0.24844 -5.48254,-0.76797 -8.43243,-1.555 -2.86659,-0.7648 -4.7821,-1.50445 -5.75594,-2.21936 -1.00485,-0.73491 -0.56559,-1.38896 1.30594,-1.96342 0,0 2.78949,-0.8562 2.78949,-0.8562 0,0 -16.98287,-4.44224 -16.98287,-4.44224 -4.41845,-1.15574 -7.17384,-2.07008 -8.2949,-2.74877 -1.14744,-0.69685 -1.14322,-1.20764 0.005,-1.53492 1.11968,-0.31913 2.95891,-0.33663 5.52502,-0.0527 2.53854,0.26248 5.99934,0.95593 10.41152,2.08847 0,0 16.95436,4.35199 16.95436,4.35199 0,0 13.67203,-4.19643 13.67203,-4.19643 1.74162,-0.53454 3.87186,-0.69057 6.40061,-0.46977 2.49444,0.19871 5.18733,0.65224 8.0893,1.36373 2.85684,0.70045 4.8485,1.39785 5.96674,2.09213 1.084,0.67526 0.76656,1.2925 -0.96369,1.85073 0,0 -13.58879,4.3846 -13.58879,4.3846"
         id="path10657" />
      <path
         inkscape:connector-curvature="0"
         d="m 542.64636,227.3322 c 0,0 50.30268,11.56948 50.30268,11.56948 0,0 8.9914,-3.3127 8.9914,-3.3127 1.49284,-0.55001 3.56871,-0.71065 6.23706,-0.48365 2.62245,0.20425 5.57385,0.67066 8.86663,1.40246 3.2418,0.72052 5.60729,1.43801 7.08806,2.15243 1.43645,0.69487 1.42623,1.33017 -0.0428,1.9049 0,0 -19.09238,7.46939 -19.09238,7.46939 -1.57621,0.61665 -3.75607,0.81144 -6.52948,0.58225 -2.82081,-0.2548 -5.92636,-0.7877 -9.3039,-1.59499 -3.28207,-0.78447 -5.59066,-1.54313 -6.93561,-2.27638 -1.38642,-0.75375 -1.27354,-1.42456 0.32574,-2.01378 0,0 3.91972,-1.44414 3.91972,-1.44414 0,0 -50.48283,-11.80771 -50.48283,-11.80771 0,0 -3.22958,1.04207 -3.22958,1.04207 -1.6376,0.52845 -3.71505,0.69487 -6.22312,0.49759 -2.54497,-0.21925 -5.27648,-0.67718 -8.18454,-1.37085 -2.82709,-0.67435 -4.75883,-1.3266 -5.80358,-1.95708 -1.07789,-0.64836 -0.78636,-1.2253 0.864,-1.73188 0,0 3.25512,-0.99911 3.25512,-0.99911 0,0 -7.14548,-1.6713 -7.14548,-1.6713 -8.04906,-1.88263 -13.50193,-3.73905 -16.42509,-5.56951 -2.90745,-1.81796 -2.2591,-3.30015 1.87049,-4.46023 1.82249,-0.51189 4.36616,-0.99693 7.62653,-1.45546 3.20922,-0.47487 5.92956,-0.62662 8.17557,-0.4568 2.27055,0.16423 4.6744,0.52526 7.21938,1.08521 2.73422,0.60161 4.69659,1.1818 5.87988,1.7402 1.13087,0.5485 1.27334,0.94979 0.42127,1.20214 -0.39551,0.11721 -1.19735,0.24708 -2.40585,0.38982 -4.14698,0.45727 -7.26756,0.99245 -9.35671,1.60673 -2.18785,0.6434 -2.79023,1.30053 -1.79181,1.97156 0.96689,0.65524 2.80275,1.29494 5.51496,1.91873 0,0 7.12726,1.63925 7.12726,1.63925 0,0 10.0897,-3.09688 10.0897,-3.09688 1.54811,-0.47515 3.52827,-0.61353 5.94897,-0.41655 2.38432,0.17729 4.99889,0.58126 7.85366,1.21453 2.80935,0.62323 4.80258,1.24333 5.97236,1.86026 1.13393,0.59982 0.93891,1.14763 -0.59531,1.64261 0,0 -10.00235,3.22739 -10.00235,3.22739"
         id="path10659" />
      <path
         inkscape:connector-curvature="0"
         d="m 589.48601,213.95725 c -2.88005,-0.0975 -5.30469,-0.0765 -7.27812,0.0633 -2.03857,0.12703 -3.62912,0.37333 -4.77268,0.73982 -2.28045,0.73092 -2.88262,1.57313 -1.7864,2.52927 0.47168,0.42268 1.34142,0.76925 2.61025,1.03894 1.46337,0.31105 3.30554,0.48238 5.52375,0.51333 1.6416,0.0133 4.00769,-0.2316 7.08668,-0.73274 5.64676,-0.9087 10.09533,-1.42339 13.38057,-1.55014 4.32134,-0.16274 9.37219,0.0625 15.18361,0.67808 5.84524,0.61923 11.48629,1.47712 16.94002,2.57957 7.49865,1.51585 13.00374,3.12101 16.47539,4.81925 5.14156,2.49571 5.79314,4.54187 1.82082,6.11155 -1.60894,0.63579 -3.68997,1.10603 -6.24152,1.40854 -2.4679,0.31155 -5.37436,0.46484 -8.71406,0.45919 0.65791,0.30946 1.08187,0.5806 1.27074,0.81312 0.18903,0.23297 0.11547,0.41567 -0.22205,0.54768 -0.90205,0.3528 -2.75348,0.3937 -5.54721,0.12233 -2.84009,-0.29363 -6.90888,-1.01429 -12.1713,-2.15376 0,0 -7.27125,-1.57445 -7.27125,-1.57445 -5.1361,-1.11212 -8.47726,-1.99207 -10.05479,-2.64523 -1.6166,-0.67078 -1.97587,-1.16244 -1.08732,-1.47738 0.71287,-0.25262 2.01954,-0.31165 3.923,-0.17741 1.8377,0.11988 4.59703,0.49608 8.29255,1.13126 3.64844,0.26305 6.82436,0.32104 9.51832,0.17365 2.6204,-0.16181 4.72453,-0.53848 6.30887,-1.12773 2.57853,-0.95901 3.04281,-2.01212 1.42353,-3.15654 -0.83916,-0.55439 -2.07554,-0.99843 -3.70855,-1.33352 -2.71024,-0.55608 -5.41638,-0.84072 -8.12889,-0.85609 -2.71232,-0.0153 -6.19939,0.39233 -10.48737,1.22807 -6.39329,1.2674 -12.88463,1.65786 -19.39285,1.16129 -6.41377,-0.48024 -13.08239,-1.46912 -19.95419,-2.95254 -6.9653,-1.50361 -11.75935,-3.0305 -14.4257,-4.579 -3.61559,-2.07534 -3.39708,-3.70695 0.56399,-4.91503 1.36734,-0.41695 3.09122,-0.72744 5.1722,-0.93255 2.03564,-0.22281 4.46121,-0.33483 7.27996,-0.33645 -0.48744,-0.28339 -0.79117,-0.5142 -0.91199,-0.69279 -0.10162,-0.18395 -0.0215,-0.31611 0.24059,-0.39658 0.78505,-0.24093 2.39809,-0.24587 4.84466,-0.0149 2.39169,0.21927 5.83727,0.78489 10.36383,1.70278 0,0 4.63024,0.93893 4.63024,0.93893 4.17306,0.84624 6.88071,1.47283 8.10025,1.87564 2.3269,0.78471 2.99384,1.3467 1.98474,1.68224 -0.68071,0.2264 -2.01331,0.27535 -3.99484,0.1466 -1.97906,-0.12856 -4.24374,-0.41553 -6.78748,-0.85957"
         id="path10661" />
    </g>
    <g
       style="display:inline"
       inkscape:label="rwlayer#1"
       id="layer7"
       inkscape:groupmode="layer">
      <g
         inkscape:corner7="0.019282233 : 0.058900499 : 0.53880824 : 1"
         inkscape:corner0="0.22429094 : 0.11834566 : 0 : 1"
         inkscape:perspectiveID="#perspective3054"
         id="g4222"
         style="fill:#dc7000;fill-opacity:0.6956522;stroke:#000000;stroke-linejoin:round;stroke-opacity:1;display:inline"
         sodipodi:type="inkscape:box3d">
        <path
           d="M 252.05613,280.2201 384.72319,334.81304 666.79274,224.25249 541.87079,199.19901 z"
           inkscape:box3dsidetype="13"
           style="fill:#dc7000;fill-opacity:0.6956522;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4232"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 252.05613,231.66533 0,48.55477 289.81466,-81.02109 0,-33.71629 z"
           inkscape:box3dsidetype="6"
           style="fill:#dc7000;fill-opacity:0.6956522;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4224"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 541.87079,165.48272 124.92195,20.6172 0,38.15257 -124.92195,-25.05348 z"
           inkscape:box3dsidetype="11"
           style="fill:#dc7000;fill-opacity:0.6956522;fill-rule:evenodd;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4234"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 252.05613,231.66533 132.66706,44.8271 282.06955,-90.39251 -124.92195,-20.6172 z"
           inkscape:box3dsidetype="5"
           style="fill:#dc7000;fill-opacity:0.6956522;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4226"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 384.72319,276.49243 0,58.32061 282.06955,-110.56055 0,-38.15257 z"
           inkscape:box3dsidetype="14"
           style="fill:#dc7000;fill-opacity:0.6956522;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4230"
           sodipodi:type="inkscape:box3dside" />
        <path
           d="m 252.05613,231.66533 132.66706,44.8271 0,58.32061 -132.66706,-54.59294 z"
           inkscape:box3dsidetype="3"
           style="fill:#dc7000;fill-opacity:0.6956522;stroke:#000000;stroke-linejoin:round;stroke-opacity:1"
           id="path4228"
           sodipodi:type="inkscape:box3dside" />
      </g>
      <path
         inkscape:connector-curvature="0"
         id="path7409"
         d="m 384.72319,334.81304 0,-58.32061 282.06955,-90.39251 0,38.15257 z"
         style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <g
         transform="matrix(0.80267821,0,0,0.80267821,62.825218,56.880895)"
         style="font-size:40px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Italic"
         id="text7712">
        <path
           inkscape:connector-curvature="0"
           d="m 252.05613,245.37246 c 0,0 2.58377,0.91853 2.58377,0.91853 0,0 0.67003,28.68254 0.67003,28.68254 0,0 6.00991,-26.30785 6.00991,-26.30785 0,0 3.09814,1.10138 3.09814,1.10138 0,0 0.9064,29.13092 0.9064,29.13092 0,0 5.85342,-26.72782 5.85342,-26.72782 0,0 2.74237,0.9749 2.74237,0.9749 0,0 -7.58463,33.16045 -7.58463,33.16045 0,0 -3.14227,-1.25917 -3.14227,-1.25917 0,0 -0.79984,-29.88269 -0.79984,-29.88269 0,0 -6.16927,27.09001 -6.16927,27.09001 0,0 -3.09117,-1.23869 -3.09117,-1.23869 0,0 -1.07686,-35.64251 -1.07686,-35.64251"
           id="path7719" />
        <path
           inkscape:connector-curvature="0"
           d="m 287.79597,263.66772 c -0.28884,-0.43333 -0.61869,-0.80462 -0.98942,-1.11388 -0.37042,-0.30892 -0.76619,-0.53938 -1.1872,-0.69144 -1.50601,-0.5438 -2.8179,0.2025 -3.93755,2.23319 -1.11656,2.0034 -1.85585,4.96514 -2.21993,8.88673 0,0 -1.70981,17.89804 -1.70981,17.89804 0,0 -2.76864,-1.10946 -2.76864,-1.10946 0,0 3.29745,-35.07562 3.29745,-35.07562 0,0 2.79152,0.99237 2.79152,0.99237 0,0 -0.53249,5.48111 -0.53249,5.48111 0.74059,-1.84081 1.625,-3.14432 2.65417,-3.90946 1.042,-0.76339 2.15336,-0.93697 3.33464,-0.51836 0.30871,0.10945 0.61252,0.26092 0.91141,0.45449 0.29909,0.17185 0.5984,0.39859 0.89796,0.68032 0,0 -0.54211,5.79198 -0.54211,5.79198"
           id="path7721" />
        <path
           inkscape:connector-curvature="0"
           d="m 292.56008,245.35128 c 0,0 2.89162,0.97705 2.89162,0.97705 0,0 -0.70907,7.48716 -0.70907,7.48716 0,0 -2.88665,-1.00253 -2.88665,-1.00253 0,0 0.7041,-7.46168 0.7041,-7.46168 m -1.31334,13.95333 c 0,0 2.88235,1.02466 2.88235,1.02466 0,0 -3.42832,35.73991 -3.42832,35.73991 0,0 -2.85836,-1.14541 -2.85836,-1.14541 0,0 3.40433,-35.61916 3.40433,-35.61916"
           id="path7723" />
        <path
           inkscape:connector-curvature="0"
           d="m 309.48682,265.7889 c 0,0 -0.45655,4.66236 -0.45655,4.66236 0,0 -5.9382,-2.1453 -5.9382,-2.1453 0,0 -1.90738,19.63158 -1.90738,19.63158 -0.0639,0.73285 -0.11193,1.34923 -0.1439,1.84921 -0.032,0.49995 -0.048,0.89472 -0.048,1.1843 -1e-5,1.42569 0.20251,2.54103 0.60784,3.34663 0.4164,0.8106 1.07925,1.3955 1.98972,1.75468 0,0 3.00258,1.18453 3.00258,1.18453 0,0 -0.50194,4.9795 -0.50194,4.9795 0,0 -2.83827,-1.13736 -2.83827,-1.13736 -1.75347,-0.70265 -3.05838,-1.93771 -3.91896,-3.70464 -0.8482,-1.75906 -1.27165,-4.08007 -1.27165,-6.96573 0,-0.51053 0.0159,-1.0593 0.0476,-1.64631 0.0318,-0.60924 0.0794,-1.2679 0.14289,-1.97605 0,0 1.89388,-19.56447 1.89388,-19.56447 0,0 -2.48097,-0.8963 -2.48097,-0.8963 0,0 0.46008,-4.59549 0.46008,-4.59549 0,0 2.43584,0.86593 2.43584,0.86593 0,0 0.99117,-10.28061 0.99117,-10.28061 0,0 2.95558,1.01275 2.95558,1.01275 0,0 -0.98217,10.32176 -0.98217,10.32176 0,0 5.96075,2.11903 5.96075,2.11903"
           id="path7725" />
        <path
           inkscape:connector-curvature="0"
           d="m 326.77086,288.50631 c 0,0 -2.11917,21.16773 -2.11917,21.16773 0,0 -3.10033,-1.24237 -3.10033,-1.24237 0,0 0.57118,-5.5966 0.57118,-5.5966 -0.90683,1.9249 -1.94003,3.22465 -3.09866,3.90094 -1.14439,0.65615 -2.41844,0.70102 -3.82097,0.13736 -1.57366,-0.63245 -2.86231,-2.13265 -3.86853,-4.49812 -0.99293,-2.37801 -1.4885,-5.10715 -1.4885,-8.19165 0,-4.41285 0.84992,-7.57977 2.55495,-9.50664 1.72298,-1.93059 4.10506,-2.33393 7.15742,-1.19795 0,0 4.29935,1.6001 4.29935,1.6001 0,0 0.16883,-1.62004 0.16883,-1.62004 0.0225,-0.17483 0.0394,-0.36319 0.0507,-0.56513 0.0112,-0.2248 0.0169,-0.5662 0.0169,-1.02419 -2e-5,-2.03791 -0.41079,-3.76742 -1.23112,-5.18647 -0.80758,-1.43506 -1.94341,-2.41584 -3.40486,-2.94303 -1.00115,-0.36108 -2.02764,-0.47008 -3.07927,-0.32789 -1.038,0.1459 -2.10643,0.53972 -3.20508,1.18047 0,0 0.527,-5.57563 0.527,-5.57563 1.14408,-0.47421 2.26368,-0.73276 3.35858,-0.77478 1.10883,-0.0609 2.18164,0.092 3.21813,0.45926 2.21516,0.78511 3.90669,2.36932 5.06825,4.75443 1.17603,2.39577 1.76527,5.48042 1.76529,9.24901 -2e-5,0.75834 -0.0284,1.64404 -0.0851,2.65701 -0.0567,0.98991 -0.14171,2.038 -0.255,3.14416 m -3.36876,1.34525 c 0,0 -3.09125,-1.16846 -3.09125,-1.16846 -2.51456,-0.95045 -4.36861,-0.95956 -5.57074,-0.0335 -1.18775,0.905 -1.78036,2.79153 -1.78036,5.66151 0,1.98867 0.30169,3.66629 0.90572,5.03434 0.6159,1.37437 1.46424,2.27595 2.54643,2.70406 1.66181,0.6574 3.11849,0.0152 4.3679,-1.93292 1.25308,-1.9767 2.08305,-4.94692 2.48743,-8.90911 0,0 0.13487,-1.35589 0.13487,-1.35589"
           id="path7727" />
        <path
           inkscape:connector-curvature="0"
           d="m 347.13009,294.55189 c -2e-5,-3.41012 -0.39774,-6.22506 -1.19207,-8.44179 -0.78109,-2.20838 -1.86163,-3.56012 -3.2394,-4.05701 -0.99824,-0.35995 -1.93565,-0.20773 -2.81262,0.45506 -0.86357,0.64245 -1.61486,1.76619 -2.25446,3.37042 -0.67347,1.68204 -1.20686,3.72671 -1.60067,6.13433 -0.38191,2.38662 -0.57272,4.84375 -0.57271,7.37297 -1e-5,3.20217 0.37593,5.86657 1.12879,7.996 0.76577,2.11448 1.81805,3.43778 3.1589,3.96832 1.01712,0.40245 1.9604,0.30824 2.82934,-0.28424 0.87064,-0.61709 1.63686,-1.72238 2.29808,-3.31677 0.67403,-1.66265 1.21875,-3.69516 1.63369,-6.09732 0.4153,-2.40442 0.62311,-4.77164 0.62313,-7.09997 M 337.0567,281.51791 c 0.78987,-1.85443 1.77924,-3.17561 2.9695,-3.9626 1.20523,-0.80829 2.46671,-0.98024 3.7849,-0.51311 2.03216,0.72026 3.65166,2.65879 4.85388,5.81961 1.21743,3.17392 1.82742,7.10144 1.82744,11.77595 -2e-5,3.82463 -0.35895,7.39468 -1.07589,10.70609 -0.7039,3.31065 -1.71002,6.09679 -3.0163,8.35733 -0.85293,1.49389 -1.83409,2.51088 -2.9426,3.05212 -1.10572,0.53986 -2.26135,0.5666 -3.46649,0.0823 -1.27171,-0.51109 -2.37123,-1.53454 -3.29984,-3.06897 -0.92665,-1.53116 -1.67807,-3.55843 -2.25519,-6.08175 0,0 -0.5706,5.68136 -0.5706,5.68136 0,0 -3.16769,-1.26936 -3.16769,-1.26936 0,0 5.22886,-52.09236 5.22886,-52.09236 0,0 3.20652,1.08346 3.20652,1.08346 0,0 -2.0765,20.42996 -2.0765,20.42996"
           id="path7729" />
        <path
           inkscape:connector-curvature="0"
           d="m 359.06752,267.82359 c 0,0 3.38124,1.1425 3.38124,1.1425 0,0 -5.55435,53.6283 -5.55435,53.6283 0,0 -3.33921,-1.33809 -3.33921,-1.33809 0,0 5.51232,-53.43271 5.51232,-53.43271"
           id="path7731" />
        <path
           inkscape:connector-curvature="0"
           d="m 381.17073,308.13218 c 0.0384,-0.37658 0.0641,-0.77018 0.0769,-1.18085 0.0256,-0.40586 0.0384,-0.81654 0.0385,-1.23197 -2e-5,-2.98137 -0.46146,-5.50826 -1.38292,-7.5775 -0.90686,-2.06038 -2.14287,-3.37156 -3.70532,-3.93518 -1.73397,-0.62542 -3.25989,-0.12256 -4.57984,1.50318 -1.31611,1.59689 -2.31002,4.18671 -2.98387,7.76891 0,0 12.53655,4.65342 12.53655,4.65342 m 3.08753,6.45078 c 0,0 -16.27824,-6.18387 -16.27824,-6.18387 -0.0747,0.88659 -0.1245,1.5899 -0.14939,2.11004 -0.0249,0.52016 -0.0374,0.97278 -0.0374,1.35796 0,3.34636 0.52926,6.14103 1.58968,8.38801 1.07544,2.25725 2.59296,3.77513 4.55703,4.55209 1.51665,0.59999 2.95587,0.84102 4.3169,0.72132 1.36511,-0.12007 2.63824,-0.58361 3.81862,-1.39193 0,0 -0.67396,6.40861 -0.67396,6.40861 -1.26817,0.4707 -2.57744,0.67848 -3.92742,0.62445 -1.33332,-0.0488 -2.68797,-0.35023 -4.06377,-0.90315 -2.92691,-1.1763 -5.1688,-3.41411 -6.73581,-6.71046 -1.54917,-3.30395 -2.32174,-7.40977 -2.32174,-12.32606 0,-4.19681 0.38303,-7.95002 1.15007,-11.26392 0.78077,-3.33904 1.92339,-6.1559 3.43066,-8.452 0.97432,-1.43432 2.13251,-2.39622 3.47601,-2.88445 1.36012,-0.48514 2.80661,-0.4572 4.3403,0.0863 2.41878,0.85727 4.35033,2.93449 5.78837,6.23605 1.45546,3.31676 2.18494,7.33401 2.18497,12.0438 -3e-5,1.1284 -0.0388,2.32815 -0.11628,3.59909 -0.0775,1.24624 -0.19376,2.57565 -0.34866,3.9881"
           id="path7733" />
      </g>
      <g
         transform="translate(0,-6)"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New"
         id="text9181">
        <path
           inkscape:connector-curvature="0"
           d="m 419.10683,281.89145 c 0,0 0,-2.03714 0,-2.03714 -3e-5,-0.69051 0.0779,-1.21057 0.23359,-1.56003 0.16977,-0.35378 0.38897,-0.57387 0.65748,-0.66032 0.26827,-0.0863 0.47992,-0.005 0.63507,0.24347 0.16913,0.24399 0.25367,0.71031 0.2537,1.39901 0,0 0,8.02408 0,8.02408 -3e-5,0.71176 -0.0846,1.24546 -0.2537,1.6012 -0.15515,0.3512 -0.3668,0.57235 -0.63507,0.66333 -0.24024,0.0815 -0.44526,0.0131 -0.61501,-0.20548 -0.15572,-0.22341 -0.24776,-0.64111 -0.27606,-1.25309 -0.0708,-1.90988 -0.71598,-3.41113 -1.93866,-4.50643 -1.6562,-1.51414 -3.55054,-1.92872 -5.68694,-1.23502 -1.40743,0.45705 -2.7403,1.39227 -3.99772,2.80806 -0.93873,1.03358 -1.68859,2.17121 -2.24836,3.41229 -0.97438,2.15669 -1.75138,4.45228 -2.32971,6.88527 -0.4158,1.79161 -0.62389,3.72591 -0.62389,5.80133 0,0 0,5.20043 0,5.20043 0,4.43391 1.00955,7.91984 3.01993,10.44682 1.99887,2.48909 4.30676,3.23169 6.91744,2.24404 1.55697,-0.58902 2.94224,-1.65714 4.15785,-3.20225 1.2255,-1.54498 2.40414,-3.62131 3.53637,-6.22666 0.24009,-0.57118 0.50825,-0.91111 0.80442,-1.02002 0.25361,-0.0933 0.45778,-0.0421 0.61262,0.1533 0.15472,0.19535 0.23206,0.48794 0.23209,0.87783 -3e-5,0.52756 -0.30247,1.44272 -0.90815,2.74722 -1.15807,2.54873 -2.46912,4.64404 -3.9349,6.28471 -1.45779,1.61908 -2.94333,2.71978 -4.45696,3.29882 -1.31723,0.50391 -2.6613,0.60967 -4.03252,0.31496 -1.05399,-0.23099 -1.9274,-0.63787 -2.61886,-1.22095 -0.69284,-0.58423 -1.54974,-1.68494 -2.57189,-3.30482 -1.01027,-1.65369 -1.7028,-3.26411 -2.07569,-4.82896 -0.37329,-1.59011 -0.56008,-3.4145 -0.56008,-5.47187 0,0 0,-6.06566 0,-6.06566 0,-2.93231 0.49291,-6.09055 1.47668,-9.46765 0.99585,-3.39605 2.34392,-6.18065 4.04011,-8.35311 1.70261,-2.18997 3.53533,-3.5965 5.49604,-4.22491 2.99933,-0.96119 5.55976,-0.14235 7.69078,2.4382"
           id="path9188" />
        <path
           inkscape:connector-curvature="0"
           d="m 446.20148,293.70621 c -2e-5,4.24459 -0.90262,8.20511 -2.71524,11.89678 -1.80943,3.70706 -4.00854,6.06196 -6.60502,7.05524 -2.64397,1.01145 -4.90651,0.34117 -6.7797,-2.02677 -1.88367,-2.40388 -2.82947,-5.7829 -2.82946,-10.12702 -1e-5,-4.36681 0.94579,-8.42515 2.82946,-12.15934 1.87319,-3.73593 4.13573,-6.04253 6.7797,-6.93007 2.59648,-0.87152 4.79559,-0.0961 6.60502,2.31138 1.81262,2.38984 2.71522,5.71315 2.71524,9.9798 m -1.66979,0.59968 c -1e-5,-3.50178 -0.74267,-6.22333 -2.23301,-8.17124 -1.48384,-1.96123 -3.2946,-2.58265 -5.43761,-1.85412 -2.1569,0.73328 -4.00807,2.62575 -5.54831,5.68434 -1.53361,3.04527 -2.30304,6.35392 -2.30304,9.91552 0,3.53895 0.76943,6.29496 2.30304,8.26131 1.54024,1.9523 3.39141,2.51514 5.54831,1.69916 2.14301,-0.81073 3.95377,-2.73277 5.43761,-5.75981 1.49034,-3.04055 2.233,-6.29551 2.23301,-9.77516"
           id="path9190" />
        <path
           inkscape:connector-curvature="0"
           d="m 455.60751,276.10974 c 0,0 0,4.15113 0,4.15113 1.11495,-2.3191 2.11892,-3.99679 3.01293,-5.03692 0.89151,-1.03717 1.89309,-1.74157 3.00371,-2.11441 1.19364,-0.40064 2.27776,-0.32355 3.25343,0.22887 0.68978,0.41072 1.31055,1.27219 1.86271,2.58332 0.56341,1.28329 0.84476,2.70473 0.84478,4.26601 0,0 0,16.97118 0,16.97118 0,0 1.29949,-0.48945 1.29949,-0.48945 0.36507,-0.1375 0.62647,-0.10806 0.78443,0.0883 0.15785,0.17489 0.23676,0.46473 0.23678,0.86961 -2e-5,0.38358 -0.079,0.73322 -0.23678,1.04899 -0.15796,0.31594 -0.41936,0.54343 -0.78443,0.68248 0,0 -4.13649,1.57553 -4.13649,1.57553 -0.38266,0.14575 -0.6545,0.1203 -0.81523,-0.0767 -0.16083,-0.19703 -0.24127,-0.48927 -0.24126,-0.8766 -10e-6,-0.40886 0.0804,-0.76201 0.24126,-1.05937 0.16073,-0.31869 0.43257,-0.5501 0.81523,-0.69423 0,0 1.29268,-0.48689 1.29268,-0.48689 0,0 0,-16.56218 0,-16.56218 -2e-5,-1.9081 -0.39958,-3.37817 -1.20018,-4.41215 -0.80264,-1.05804 -1.88008,-1.35848 -3.23511,-0.89784 -1.03568,0.35211 -1.93681,1.02658 -2.70223,2.02432 -0.76727,0.97846 -1.86472,3.15928 -3.29572,6.55195 0,0 0,17.22555 0,17.22555 0,0 1.80355,-0.67931 1.80355,-0.67931 0.3784,-0.14252 0.64933,-0.11436 0.81305,0.0844 0.16361,0.17695 0.24539,0.47148 0.2454,0.88368 -1e-5,0.39049 -0.0818,0.74701 -0.2454,1.06957 -0.16372,0.32276 -0.43465,0.55619 -0.81305,0.70032 0,0 -5.22933,1.99177 -5.22933,1.99177 -0.38503,0.14665 -0.66124,0.12033 -0.82837,-0.0793 -0.16721,-0.19969 -0.25085,-0.49706 -0.25084,-0.89202 -1e-5,-0.4169 0.0836,-0.77761 0.25084,-1.08204 0.16713,-0.32618 0.44334,-0.56178 0.82837,-0.7068 0,0 1.82264,-0.68649 1.82264,-0.68649 0,0 0,-22.83855 0,-22.83855 0,0 -1.36122,0.46482 -1.36122,0.46482 -0.38448,0.13131 -0.6603,0.094 -0.82719,-0.11207 -0.16697,-0.20614 -0.2505,-0.51757 -0.25049,-0.93421 -1e-5,-0.39465 0.0835,-0.75178 0.25049,-1.07132 0.16689,-0.31929 0.44271,-0.54376 0.82719,-0.67343 0,0 2.96436,-0.99954 2.96436,-0.99954"
           id="path9192" />
        <path
           inkscape:connector-curvature="0"
           d="m 479.92231,267.91115 c 0,0 7.93929,-2.67701 7.93929,-2.67701 0.34358,-0.11582 0.58957,-0.0747 0.73824,0.12332 0.14856,0.19796 0.22283,0.49327 0.22285,0.88604 -2e-5,0.37214 -0.0743,0.70755 -0.22285,1.00626 -0.14867,0.29894 -0.39466,0.50704 -0.73824,0.62435 0,0 -7.93929,2.71107 -7.93929,2.71107 0,0 0,17.5856 0,17.5856 -10e-6,1.53103 0.34075,2.68285 1.02117,3.45423 0.69061,0.76528 1.69453,0.8979 3.00873,0.40072 0.98487,-0.37258 2.04735,-1.03413 3.18661,-1.9829 1.13503,-0.96594 2.01495,-1.89616 2.64195,-2.79193 0.22765,-0.35338 0.41536,-0.55761 0.56319,-0.61282 0.1818,-0.0679 0.3408,0.007 0.47704,0.22365 0.13614,0.1963 0.20421,0.46949 0.20422,0.81966 -10e-6,0.30901 -0.0738,0.62518 -0.22124,0.94859 -0.36343,0.81742 -1.25108,1.8964 -2.66748,3.24084 -1.41148,1.32553 -2.77168,2.23999 -4.07986,2.74044 -1.71013,0.65421 -3.07802,0.45516 -4.09907,-0.60245 -1.02442,-1.06109 -1.53788,-2.82281 -1.53788,-5.28253 0,0 0,-17.628 0,-17.628 0,0 -2.75879,0.94206 -2.75879,0.94206 -0.35775,0.12218 -0.61439,0.083 -0.76967,-0.11774 -0.15535,-0.20078 -0.23305,-0.50216 -0.23305,-0.90403 0,-0.38067 0.0777,-0.72418 0.23305,-1.03047 0.15528,-0.30606 0.41192,-0.51941 0.76967,-0.64007 0,0 2.75879,-0.93022 2.75879,-0.93022 0,0 0,-7.82065 0,-7.82065 0,-0.63066 0.0709,-1.10555 0.21258,-1.42455 0.14162,-0.31879 0.31857,-0.51233 0.53079,-0.58066 0.22384,-0.072 0.40634,0.006 0.54755,0.23289 0.14114,0.22719 0.21169,0.65532 0.2117,1.28446 0,0 0,7.80185 0,7.80185"
           id="path9194" />
        <path
           inkscape:connector-curvature="0"
           d="m 507.59418,284.6149 c 0,0 0,-3.63759 0,-3.63759 -1.97126,3.83544 -4.09162,6.19491 -6.36413,7.06425 -1.66058,0.63526 -2.96464,0.36062 -3.90749,-0.82933 -0.94581,-1.21408 -1.41981,-2.9567 -1.41981,-5.22501 0,-2.49306 0.62441,-4.89516 1.86942,-7.19916 1.2399,-2.29455 3.04084,-3.85692 5.3928,-4.68926 0.63133,-0.22341 1.31558,-0.38496 2.05241,-0.48487 0.73499,-0.11963 1.52741,-0.16982 2.3768,-0.15063 0,0 0,-4.08853 0,-4.08853 -10e-6,-1.38285 -0.34377,-2.46702 -1.03247,-3.25387 -0.69032,-0.78861 -1.72878,-0.94811 -3.11901,-0.47551 -1.06879,0.36336 -2.57478,1.45299 -4.52455,3.2767 -0.35386,0.32479 -0.58075,0.50443 -0.68042,0.53862 -0.17727,0.0609 -0.33247,-0.008 -0.46556,-0.20685 -0.12205,-0.20267 -0.1831,-0.48744 -0.18309,-0.85428 -1e-5,-0.34641 0.0555,-0.64039 0.16645,-0.88189 0.15527,-0.35826 0.7811,-0.98775 1.87459,-1.88616 1.71506,-1.42987 3.00589,-2.28846 3.8779,-2.5812 1.72557,-0.5792 3.06445,-0.23562 4.02174,1.02522 0.95419,1.23685 1.43016,2.84357 1.43017,4.82313 0,0 0,16.67655 0,16.67655 0,0 1.79004,-0.67421 1.79004,-0.67421 0.32911,-0.12395 0.56246,-0.0924 0.70028,0.0947 0.13772,0.16703 0.20657,0.43961 0.20659,0.8178 -2e-5,0.35829 -0.0689,0.68305 -0.20659,0.9743 -0.13782,0.29141 -0.37117,0.49978 -0.70028,0.62513 0,0 -3.15579,1.202 -3.15579,1.202 m 0,-12.56621 c -0.63412,-0.11291 -1.30734,-0.12215 -2.01989,-0.0274 -0.71427,0.095 -1.46826,0.28452 -2.26226,0.56886 -1.99974,0.71618 -3.57168,2.08121 -4.70901,4.09722 -0.86414,1.51494 -1.29713,3.10995 -1.29712,4.78174 -1e-5,1.54949 0.32757,2.73182 0.98167,3.54568 0.66373,0.80794 1.62356,0.97347 2.87668,0.4994 1.19328,-0.45143 2.29477,-1.30203 3.30546,-2.54998 1.01808,-1.26789 2.05966,-3.05352 3.12447,-5.35395 0,0 0,-5.5616 0,-5.5616"
           id="path9196" />
        <path
           inkscape:connector-curvature="0"
           d="m 523.702,240.54258 c 0,0 0,6.34723 0,6.34723 0,0 -1.89662,0.61903 -1.89662,0.61903 0,0 0,-6.36799 0,-6.36799 0,0 1.89662,-0.59827 1.89662,-0.59827 m 0.0457,12.59128 c 0,0 0,22.8716 0,22.8716 0,0 4.98692,-1.8783 4.98692,-1.8783 0.30944,-0.11656 0.52886,-0.0834 0.65845,0.0995 0.1295,0.16349 0.19423,0.42857 0.19424,0.79531 -10e-6,0.34743 -0.0648,0.66158 -0.19424,0.94246 -0.12959,0.28103 -0.34901,0.48047 -0.65845,0.59834 0,0 -11.367,4.32951 -11.367,4.32951 -0.31177,0.11876 -0.53541,0.0856 -0.67072,-0.0998 -0.13538,-0.1854 -0.20308,-0.45583 -0.20308,-0.81118 0,-0.37512 0.0677,-0.69681 0.20308,-0.96503 0.13531,-0.28782 0.35895,-0.49043 0.67072,-0.60786 0,0 5.09683,-1.9197 5.09683,-1.9197 0,0 0,-20.43068 0,-20.43068 0,0 -3.77547,1.28922 -3.77547,1.28922 -0.31037,0.106 -0.53819,0.0657 -0.68325,-0.12114 -0.13477,-0.19038 -0.20218,-0.46292 -0.20217,-0.81751 -10e-6,-0.37425 0.0674,-0.70236 0.20217,-0.98427 0.1347,-0.28172 0.36252,-0.47665 0.68325,-0.58482 0,0 5.05872,-1.70573 5.05872,-1.70573"
           id="path9198" />
        <path
           inkscape:connector-curvature="0"
           d="m 537.32375,248.55623 c 0,0 0,3.62744 0,3.62744 0.85157,-1.98473 1.61868,-3.41372 2.30203,-4.28987 0.68168,-0.87397 1.4478,-1.45313 2.29768,-1.73844 0.91383,-0.30672 1.74417,-0.19946 2.49175,0.31998 0.5287,0.38502 1.00462,1.16228 1.42804,2.33096 0.43214,1.14498 0.64797,2.40056 0.64799,3.76807 0,0 0,14.86484 0,14.86484 0,0 0.99719,-0.37559 0.99719,-0.37559 0.28024,-0.10556 0.48092,-0.0691 0.6022,0.1094 0.1212,0.15971 0.18179,0.41693 0.18181,0.77172 -2e-5,0.33612 -0.0606,0.63926 -0.18181,0.90944 -0.12128,0.27032 -0.32196,0.45885 -0.6022,0.56559 0,0 -3.17247,1.20835 -3.17247,1.20835 -0.29322,0.11168 -0.5015,0.0781 -0.62464,-0.10097 -0.1232,-0.17913 -0.18482,-0.43824 -0.18481,-0.77724 -1e-5,-0.35784 0.0616,-0.66361 0.18481,-0.91724 0.12314,-0.27233 0.33142,-0.46371 0.62464,-0.57415 0,0 0.99087,-0.37321 0.99087,-0.37321 0,0 0,-14.50223 0,-14.50223 -2e-5,-1.67078 -0.30634,-2.97304 -0.91998,-3.90831 -0.61502,-0.95611 -1.44029,-1.25912 -2.47769,-0.90646 -0.79254,0.26945 -1.48185,0.82573 -2.06717,1.66956 -0.58655,0.82666 -1.42522,2.69155 -2.51824,5.6018 0,0 0,15.05244 0,15.05244 0,0 1.37768,-0.5189 1.37768,-0.5189 0.28918,-0.10892 0.49624,-0.0731 0.62138,0.10749 0.12507,0.16149 0.18759,0.4224 0.18759,0.7828 0,0.34142 -0.0626,0.64972 -0.18759,0.9249 -0.12514,0.27533 -0.3322,0.46807 -0.62138,0.57821 0,0 -3.99187,1.52045 -3.99187,1.52045 -0.2936,0.11182 -0.50419,0.0772 -0.6316,-0.10415 -0.12747,-0.18138 -0.19123,-0.44453 -0.19122,-0.78936 -1e-5,-0.36399 0.0637,-0.67542 0.19122,-0.93422 0.12741,-0.27783 0.338,-0.47202 0.6316,-0.5826 0,0 1.39041,-0.52369 1.39041,-0.52369 0,0 0,-19.9511 0,-19.9511 0,0 -1.03851,0.35462 -1.03851,0.35462 -0.29323,0.10015 -0.50356,0.0572 -0.63081,-0.1291 -0.12731,-0.18629 -0.19099,-0.46138 -0.19098,-0.82516 -1e-5,-0.3446 0.0636,-0.6533 0.19098,-0.92606 0.12725,-0.27258 0.33758,-0.4583 0.63081,-0.5572 0,0 2.26229,-0.76281 2.26229,-0.76281"
           id="path9200" />
        <path
           inkscape:connector-curvature="0"
           d="m 564.37221,251.7564 c 0,0 -11.52429,4.14925 -11.52429,4.14925 0.20161,2.94498 0.82381,5.14921 1.86378,6.61012 1.04511,1.43359 2.33011,1.85933 3.85161,1.28373 0.8426,-0.31877 1.72276,-0.93491 2.64009,-1.84687 0.91423,-0.90885 1.65753,-1.93361 2.23132,-3.07472 0.16748,-0.33476 0.31285,-0.525 0.43614,-0.57085 0.14082,-0.0524 0.26398,0.0197 0.36951,0.21624 0.10547,0.17832 0.15819,0.42155 0.1582,0.72977 -10e-6,0.30823 -0.0703,0.63376 -0.21096,0.97672 -0.42243,1.06628 -1.1765,2.20515 -2.26499,3.41901 -1.08401,1.1971 -2.20364,2.01781 -3.35931,2.45991 -1.94615,0.7445 -3.58314,0.0702 -4.90528,-2.03457 -1.31936,-2.13686 -1.98142,-5.07429 -1.98141,-8.80462 -10e-6,-3.39624 0.62072,-6.52518 1.85798,-9.37715 1.24083,-2.84225 2.7659,-4.56294 4.57045,-5.16871 1.84627,-0.61971 3.35606,0.10399 4.53489,2.16125 1.17368,2.03023 1.74983,4.98512 1.73227,8.87149 m -1.12272,-1.91239 c -0.22071,-2.44805 -0.8042,-4.29941 -1.75284,-5.55586 -0.94308,-1.26387 -2.07284,-1.67412 -3.3916,-1.2258 -1.32518,0.45052 -2.47072,1.63227 -3.43432,3.54863 -0.96701,1.92314 -1.57083,4.23377 -1.80906,6.92855 0,0 10.38782,-3.69552 10.38782,-3.69552"
           id="path9202" />
        <path
           inkscape:connector-curvature="0"
           d="m 573.09946,236.49319 c 0,0 0,5.67252 0,5.67252 1.39118,-3.11706 2.42557,-5.15863 3.10733,-6.13505 0.68836,-0.9944 1.32057,-1.58768 1.89705,-1.78148 0.62514,-0.2101 1.20313,0.0452 1.73426,0.76436 0.5383,0.69735 0.80705,1.27409 0.80706,1.73125 -1e-5,0.33412 -0.0538,0.63396 -0.16121,0.89952 -0.0993,0.24531 -0.22754,0.39508 -0.38483,0.4493 -0.0829,0.0286 -0.15328,0.0265 -0.21128,-0.006 -0.0581,-0.0505 -0.16584,-0.21587 -0.32347,-0.49644 -0.29063,-0.51722 -0.54416,-0.85379 -0.76045,-1.00936 -0.21651,-0.15563 -0.42901,-0.19806 -0.6375,-0.12711 -0.4593,0.15634 -1.01569,0.73516 -1.66979,1.73811 -0.64734,1.00259 -1.77765,3.30323 -3.39717,6.91661 0,0 0,12.30832 0,12.30832 0,0 4.70377,-1.77166 4.70377,-1.77166 0.25887,-0.0975 0.44243,-0.0607 0.55085,0.11042 0.10835,0.15336 0.16252,0.39774 0.16253,0.73321 -10e-6,0.3178 -0.0542,0.60323 -0.16253,0.85632 -0.10842,0.25321 -0.29198,0.42911 -0.55085,0.52771 0,0 -8.39069,3.19589 -8.39069,3.19589 -0.25883,0.0986 -0.44449,0.0704 -0.55681,-0.0846 -0.11237,-0.17308 -0.16857,-0.42152 -0.16857,-0.74529 0,-0.30576 0.0519,-0.57716 0.15561,-0.81415 0.11232,-0.25813 0.3023,-0.43758 0.56977,-0.53836 0,0 2.61311,-0.98462 2.61311,-0.98462 0,0 0,-18.76796 0,-18.76796 0,0 -1.99291,0.68053 -1.99291,0.68053 -0.25825,0.0882 -0.44347,0.0437 -0.55552,-0.13359 -0.11211,-0.17732 -0.16818,-0.43671 -0.16818,-0.77807 0,-0.32336 0.0517,-0.61034 0.15524,-0.8609 0.11207,-0.25331 0.3016,-0.42495 0.56846,-0.51496 0,0 3.06672,-1.03405 3.06672,-1.03405"
           id="path9204" />
      </g>
    </g>
    <g
       style="display:inline"
       inkscape:label="Image (name)#1"
       id="layer12"
       inkscape:groupmode="layer">
      <g
         id="text8052"
         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New"
         transform="translate(-12.096774,4.8387096)">
        <path
           id="path8059"
           d="m 423.74041,363.69642 c 0,0 0,46.13338 0,46.13338 0,0 6.60461,-3.25288 6.60461,-3.25288 0.45439,-0.22379 0.77972,-0.20169 0.97632,0.0662 0.19645,0.2373 0.29465,0.64448 0.29467,1.22164 -2e-5,0.54682 -0.0983,1.05125 -0.29467,1.51342 -0.1966,0.46245 -0.52193,0.80673 -0.97632,1.03282 0,0 -15.30796,7.61688 -15.30796,7.61688 -0.47355,0.23563 -0.81328,0.21827 -1.01883,-0.0526 -0.20568,-0.27092 -0.30855,-0.68631 -0.30855,-1.24607 0,-0.59083 0.10283,-1.10805 0.30855,-1.55154 0.20555,-0.47431 0.54528,-0.8281 1.01883,-1.06133 0,0 6.75525,-3.32706 6.75525,-3.32706 0,0 0,-46.25099 0,-46.25099 0,0 -6.75525,2.91925 -6.75525,2.91925 -0.47355,0.20469 -0.81328,0.18057 -1.01883,-0.0726 -0.20568,-0.2843 -0.30855,-0.72199 -0.30855,-1.31286 0,-0.59081 0.10283,-1.1013 0.30855,-1.53138 0.20555,-0.46081 0.54528,-0.79235 1.01883,-0.99466 0,0 15.30796,-6.53778 15.30796,-6.53778 0.45439,-0.19399 0.77972,-0.15067 0.97632,0.13006 0.19645,0.25021 0.29465,0.66381 0.29467,1.24095 -2e-5,0.57722 -0.0983,1.09044 -0.29467,1.53969 -0.1966,0.41925 -0.52193,0.72704 -0.97632,0.92336 0,0 -6.60461,2.85414 -6.60461,2.85414"
           inkscape:connector-curvature="0" />
        <path
           id="path8061"
           d="m 441.87507,365.74833 c 0,0 0,3.82064 0,3.82064 1.56942,-4.14583 3.13954,-6.56174 4.71033,-7.25855 0.94216,-0.41791 1.76641,-0.26368 2.47352,0.46081 0.70573,0.69355 1.29521,1.97053 1.76901,3.83012 0.80259,-2.43288 1.61058,-4.33197 2.42395,-5.69892 0.82577,-1.39965 1.64969,-2.28097 2.47179,-2.64567 1.28608,-0.57047 2.30749,-0.15871 3.06643,1.23159 0.99542,1.77766 1.49212,3.97984 1.49215,6.61017 0,0 0,25.73386 0,25.73386 0,0 1.48605,-0.73191 1.48605,-0.73191 0.41748,-0.20562 0.71641,-0.17807 0.89705,0.0826 0.18051,0.23133 0.27074,0.62358 0.27077,1.17682 -3e-5,0.52419 -0.0903,1.00579 -0.27077,1.44493 -0.18064,0.43941 -0.47957,0.76299 -0.89705,0.97072 0,0 -3.25208,1.61816 -3.25208,1.61816 0,0 0,-29.13622 0,-29.13622 -2e-5,-1.87499 -0.27409,-3.30363 -0.82284,-4.287 -0.54964,-0.98475 -1.18481,-1.31612 -1.90601,-0.99255 -0.65174,0.29248 -1.34015,1.11693 -2.06542,2.47501 -0.72674,1.33131 -1.55495,3.70059 -2.48533,7.11235 0,0 0,24.72225 0,24.72225 0,0 1.50177,-0.73965 1.50177,-0.73965 0.42794,-0.21077 0.73434,-0.18473 0.9195,0.078 0.18502,0.23308 0.27752,0.62963 0.27753,1.18976 -1e-5,0.53068 -0.0926,1.01883 -0.27753,1.46455 -0.18516,0.446 -0.49156,0.77547 -0.9195,0.9884 0,0 -3.33363,1.65874 -3.33363,1.65874 0,0 0,-29.23324 0,-29.23324 -2e-5,-1.9874 -0.2882,-3.4883 -0.86521,-4.50391 -0.56348,-1.05333 -1.20023,-1.42148 -1.91062,-1.10276 -0.65361,0.29333 -1.30108,1.01634 -1.94239,2.17018 -0.89094,1.6268 -1.82798,4.16023 -2.81147,7.60421 0,0 0,25.03641 0,25.03641 0,0 1.56211,-0.76936 1.56211,-0.76936 0.43885,-0.21614 0.75303,-0.1917 0.94289,0.0732 0.18975,0.23484 0.28458,0.63583 0.28459,1.20303 -1e-5,0.53738 -0.0948,1.03223 -0.28459,1.48482 -0.18986,0.45281 -0.50404,0.78839 -0.94289,1.00674 0,0 -4.99523,2.48551 -4.99523,2.48551 -0.44529,0.22157 -0.76474,0.19977 -0.95802,-0.0659 -0.19339,-0.26571 -0.29012,-0.67 -0.29011,-1.21278 -1e-5,-0.57291 0.0967,-1.07295 0.29011,-1.5 0.19328,-0.45695 0.51273,-0.7951 0.95802,-1.01441 0,0 1.5765,-0.77645 1.5765,-0.77645 0,0 0,-31.40719 0,-31.40719 0,0 -1.5765,0.71024 -1.5765,0.71024 -0.44529,0.20064 -0.76474,0.16379 -0.95802,-0.11096 -0.19339,-0.27476 -0.29012,-0.69868 -0.29011,-1.27164 -1e-5,-0.54273 0.0967,-1.03824 0.29011,-1.48635 0.19328,-0.44782 0.51273,-0.77089 0.95802,-0.96927 0,0 3.43312,-1.52911 3.43312,-1.52911"
           inkscape:connector-curvature="0" />
        <path
           id="path8063"
           d="m 480.58851,385.41099 c 0,0 0,-5.15657 0,-5.15657 -2.4262,5.5798 -5.03657,9.079 -7.835,10.47699 -2.04539,1.02181 -3.65191,0.72721 -4.81363,-0.89204 -1.16547,-1.65345 -1.74963,-4.09108 -1.74963,-7.30887 0,-3.53667 0.76951,-6.98913 2.30362,-10.34663 1.52759,-3.34322 3.746,-5.68753 6.64239,-7.03536 0.77733,-0.36171 1.61976,-0.63945 2.52684,-0.83351 0.90473,-0.2221 1.88006,-0.34939 2.92541,-0.38255 0,0 0,-5.7958 0,-5.7958 -10e-6,-1.96032 -0.42307,-3.47297 -1.27068,-4.53986 -0.84967,-1.0694 -2.12799,-1.22244 -3.8396,-0.45447 -1.31604,0.59057 -3.17073,2.24198 -5.57246,4.96625 -0.43594,0.48573 -0.71549,0.75657 -0.83828,0.81214 -0.21842,0.0989 -0.40964,0.0122 -0.57362,-0.26044 -0.15038,-0.27883 -0.22559,-0.67845 -0.22559,-1.19879 0,-0.49136 0.0684,-0.91228 0.20509,-1.26267 0.19131,-0.51914 0.96238,-1.45616 2.30947,-2.80749 2.11245,-2.14861 3.70209,-3.45689 4.77581,-3.9332 2.12442,-0.94235 3.77243,-0.54918 4.95058,1.17099 1.17422,1.68619 1.75986,3.93017 1.75988,6.73612 0,0 0,23.63827 0,23.63827 0,0 2.20228,-1.08466 2.20228,-1.08466 0.40486,-0.19939 0.6919,-0.17146 0.86143,0.0837 0.1694,0.2268 0.25409,0.60813 0.25411,1.1441 -2e-5,0.5078 -0.0847,0.973 -0.25411,1.39571 -0.16953,0.42296 -0.45657,0.73515 -0.86143,0.9366 0,0 -3.88288,1.93203 -3.88288,1.93203 m 0,-17.81357 c -0.78041,-0.11482 -1.60899,-0.0799 -2.48605,0.10525 -0.87928,0.18568 -1.80752,0.50815 -2.78512,0.968 -2.46256,1.15841 -4.39871,3.20675 -5.7998,6.14762 -1.06467,2.21091 -1.5982,4.50451 -1.59819,6.87592 -1e-5,2.19789 0.40363,3.85127 1.20954,4.95824 0.81771,1.09778 2.0001,1.26287 3.54357,0.49962 1.46955,-0.72669 2.82587,-2.01263 4.07022,-3.85519 1.2533,-1.87118 2.53536,-4.47776 3.84583,-7.81547 0,0 0,-7.88399 0,-7.88399"
           inkscape:connector-curvature="0" />
        <path
           id="path8065"
           d="m 504.87507,344.02572 c 0,0 0,-6.33756 0,-6.33756 0,0 3.62149,-1.61301 3.62149,-1.61301 0.3655,-0.16275 0.62721,-0.11582 0.78538,0.14085 0.15805,0.25653 0.23705,0.64362 0.23708,1.1613 -3e-5,0.49052 -0.0791,0.93476 -0.23708,1.33282 -0.15817,0.39836 -0.41988,0.67984 -0.78538,0.84448 0,0 -2.07259,0.93375 -2.07259,0.93375 0,0 0,34.44897 0,34.44897 -2e-5,2.29935 -0.22086,4.46439 -0.66296,6.49712 -0.29508,1.35662 -0.78741,2.85674 -1.47785,4.50202 -0.69188,1.64858 -1.32318,2.89693 -1.89359,3.74358 -0.57137,0.84805 -1.33675,1.52227 -2.29743,2.02265 0,0 -4.48946,2.33825 -4.48946,2.33825 -0.37994,0.19787 -0.65249,0.17289 -0.81737,-0.0754 -0.16499,-0.22051 -0.24751,-0.5954 -0.2475,-1.12453 -10e-6,-0.52918 0.0825,-1.0035 0.2475,-1.42286 0.16488,-0.41919 0.43743,-0.72673 0.81737,-0.92267 0,0 4.54567,-2.30289 4.54567,-2.30289 0.92315,-0.47614 1.75064,-1.42648 2.48315,-2.84967 0.74328,-1.42651 1.3553,-3.26448 1.83674,-5.51382 0.27125,-1.28999 0.40681,-2.82626 0.40683,-4.60956 0,0 0,-10.37051 0,-10.37051 -1.66739,5.89686 -3.82848,9.5134 -6.49259,10.83562 -2.17909,1.08151 -4.07329,0.23861 -5.67781,-2.54346 -1.59915,-2.82914 -2.40148,-6.78447 -2.40147,-11.85622 -1e-5,-5.07169 0.80232,-9.76707 2.40147,-14.07131 1.60452,-4.29012 3.49872,-6.9134 5.67781,-7.88005 2.66411,-1.18176 4.8252,0.38981 6.49259,4.69207 m 0,10.41166 c -2e-5,-4.06038 -0.62896,-7.20112 -1.89031,-9.42839 -1.2536,-2.24103 -2.76147,-2.97007 -4.52696,-2.17791 -1.77459,0.79633 -3.30477,2.91596 -4.5872,6.36538 -1.28721,3.43436 -1.9326,7.21098 -1.9326,11.32033 0,4.13734 0.64539,7.33529 1.9326,9.58763 1.28243,2.21618 2.81261,2.88369 4.5872,2.01202 1.76549,-0.86719 3.27336,-3.01347 4.52696,-6.43279 1.26135,-3.44025 1.89029,-7.18583 1.89031,-11.24627"
           inkscape:connector-curvature="0" />
        <path
           id="path8067"
           d="m 529.8044,344.5465 c 0,0 -15.0214,7.10051 -15.0214,7.10051 0.26314,4.28098 1.07521,7.44153 2.43223,9.47797 1.36338,1.99553 3.03922,2.49762 5.02283,1.51672 1.09819,-0.54306 2.24508,-1.52324 3.44017,-2.93807 1.19075,-1.4097 2.1587,-2.97236 2.90578,-4.68889 0.21804,-0.50344 0.40728,-0.79413 0.56779,-0.87226 0.1833,-0.0892 0.34362,0.005 0.48099,0.28146 0.13728,0.25029 0.2059,0.60007 0.20592,1.0494 -2e-5,0.44938 -0.0915,0.9304 -0.27459,1.44334 -0.5499,1.59345 -1.53164,3.3235 -2.9491,5.19415 -1.412,1.84634 -2.87079,3.14741 -4.37696,3.89984 -2.53736,1.26758 -4.67257,0.436 -6.39774,-2.51332 -1.72209,-2.9974 -2.58645,-7.22532 -2.58645,-12.67216 0,-4.95904 0.81041,-9.58368 2.42538,-13.8585 1.61912,-4.25962 3.60849,-6.90642 5.96144,-7.9502 2.40629,-1.06738 4.37322,-0.14533 5.90848,2.75024 1.52811,2.85581 2.27809,7.11232 2.25523,12.77977 m -1.46157,-2.68694 c -0.28736,-3.54969 -1.04714,-6.19709 -2.28263,-7.94479 -1.22853,-1.7594 -2.70063,-2.2574 -4.41951,-1.48616 -1.72781,0.77534 -3.22184,2.60204 -4.47892,5.48524 -1.26182,2.8941 -2.04987,6.32176 -2.36082,10.27751 0,0 13.54188,-6.3318 13.54188,-6.3318"
           inkscape:connector-curvature="0" />
      </g>
    </g>
    <g
       id="text10963"
       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Futura;-inkscape-font-specification:Futura Medium"
       transform="matrix(0.71809444,0,0,0.71809444,82.080142,116.02377)"
       inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         id="path10970"
         d="m 252.05613,354.81009 c 0,0 0,-73.31493 0,-73.31493 0,0 3.38868,1.401 3.38868,1.401 1.52054,0.62872 2.73709,1.51509 3.64624,2.65926 0.92155,1.15157 1.70141,2.77527 2.33858,4.87173 0.64835,2.16908 1.16294,4.75107 1.54316,7.74529 0.39065,3.03432 0.58615,6.01823 0.58616,8.94912 -10e-6,5.34653 -0.63622,9.57957 -1.90503,12.69023 1.22877,1.92249 2.20099,4.74462 2.91443,8.46703 0.725,3.70293 1.08809,7.78667 1.08811,12.24523 -2e-5,5.84786 -0.64525,10.46278 -1.93199,13.83506 -0.77171,2.08048 -1.63651,3.35145 -2.59366,3.81545 -1.04378,0.38383 -2.34639,0.1651 -3.90478,-0.65241 0,0 -5.1699,-2.71206 -5.1699,-2.71206 m 3.40336,-40.26368 c 0,0 1.07352,0.49507 1.07352,0.49507 1.27901,0.58986 2.21681,0.111 2.81048,-1.44041 0.60462,-1.58159 0.90735,-4.16824 0.90736,-7.7578 -1e-5,-3.49331 -0.3077,-6.27138 -0.92222,-8.33141 -0.61341,-2.08813 -1.50181,-3.38041 -2.66303,-3.87846 0,0 -1.20611,-0.51723 -1.20611,-0.51723 0,0 0,21.43024 0,21.43024 m 0,31.59642 c 0,0 2.12098,1.0792 2.12098,1.0792 1.56006,0.79381 2.71009,0.38538 3.44582,-1.23071 0.77722,-1.76027 1.16653,-4.29727 1.16654,-7.60796 -1e-5,-3.2142 -0.37434,-6.09507 -1.12175,-8.63833 -0.7259,-2.49601 -2.01962,-4.18458 -3.87458,-5.06609 0,0 -1.73701,-0.82543 -1.73701,-0.82543 0,0 0,22.28932 0,22.28932"
         inkscape:connector-curvature="0" />
      <path
         id="path10972"
         d="m 272.95516,318.05887 c 0,0 0,27.38443 0,27.38443 -10e-6,7.90343 0.98616,12.3602 2.9671,13.3747 1.99248,1.02041 2.99308,-2.45348 2.9931,-10.42612 0,0 0,-27.62428 0,-27.62428 0,0 3.5597,1.61778 3.5597,1.61778 0,0 0,28.01587 0,28.01587 -2e-5,3.87456 -0.15371,7.14154 -0.46088,9.79921 -0.29635,2.363 -0.80903,4.36412 -1.53709,6.00225 -1.19955,2.64012 -2.71925,3.47147 -4.55483,2.50486 -1.81544,-0.95602 -3.30722,-3.35739 -4.47951,-7.19797 -0.71785,-2.35856 -1.22454,-4.84843 -1.52104,-7.47161 -0.28603,-2.35571 -0.42896,-5.70986 -0.42895,-10.06389 0,0 0,-27.48878 0,-27.48878 0,0 3.4624,1.57355 3.4624,1.57355"
         inkscape:connector-curvature="0" />
      <path
         id="path10974"
         d="m 296.26263,337.06199 c 0,0 -3.06393,3.56502 -3.06393,3.56502 -0.48078,-3.25229 -1.07536,-5.04233 -1.78317,-5.37295 -0.33707,-0.15741 -0.62496,0.06 -0.86377,0.6519 -0.23866,0.55807 -0.35792,1.3727 -0.35791,2.44422 -10e-6,1.87525 0.70533,4.07067 2.12031,6.59386 1.95771,3.53383 3.28179,6.57062 3.96502,9.09921 0.68454,2.53353 1.02731,5.66263 1.02732,9.38364 -1e-5,4.7697 -0.5748,8.46498 -1.72155,11.07953 -1.11013,2.45482 -2.44639,3.26727 -4.00621,2.44587 -2.65634,-1.39883 -4.52528,-6.3666 -5.61934,-14.89109 0,0 3.09805,-2.88498 3.09805,-2.88498 0.43247,2.55923 0.76259,4.2157 0.99008,4.96747 0.44455,1.49948 0.97659,2.40845 1.59653,2.72594 1.24315,0.63666 1.86639,-0.79371 1.8664,-4.29282 -1e-5,-2.0187 -0.48121,-4.143 -1.44161,-6.36829 -0.37037,-0.75441 -0.74034,-1.49123 -1.10991,-2.21054 -0.3692,-0.71854 -0.74342,-1.45572 -1.12265,-2.21154 -1.05967,-2.12522 -1.80382,-4.09186 -2.23449,-5.90308 -0.54834,-2.29933 -0.82218,-5.04714 -0.82218,-8.2461 0,-4.23189 0.46728,-7.51461 1.40371,-9.85292 0.96057,-2.33469 2.12977,-3.19317 3.50971,-2.56876 2.04183,0.92403 3.56729,4.86919 4.56959,11.84641"
         inkscape:connector-curvature="0" />
      <path
         id="path10976"
         d="m 305.87224,373.74548 c 0,0 -7.36895,-44.07576 -7.36895,-44.07576 0,0 4.37264,1.98723 4.37264,1.98723 0,0 5.05922,31.14284 5.05922,31.14284 0,0 4.78506,-26.66891 4.78506,-26.66891 0,0 4.42827,2.01251 4.42827,2.01251 0,0 -13.36109,70.94431 -13.36109,70.94431 0,0 -4.31706,-2.42938 -4.31706,-2.42938 0,0 6.40191,-32.91284 6.40191,-32.91284"
         inkscape:connector-curvature="0" />
      <path
         id="path10978"
         d="m 320.58526,390.7595 c 0,0 0,-80.9319 0,-80.9319 0,0 4.13158,1.70815 4.13158,1.70815 1.85533,0.76714 3.34037,1.80475 4.45055,3.11286 1.12564,1.31726 2.07847,3.1499 2.85713,5.49865 0.79249,2.43006 1.42159,5.31052 1.88649,8.64052 0.47771,3.37527 0.7168,6.68514 0.71682,9.9264 -2e-5,5.91271 -0.77803,10.55984 -2.32917,13.93073 1.50217,2.19251 2.69114,5.36674 3.56386,9.52332 0.88707,4.13662 1.33141,8.67481 1.33143,13.60714 -2e-5,6.46928 -0.78959,11.53605 -2.36369,15.18868 -0.94375,2.25405 -2.00105,3.60684 -3.17093,4.06153 -1.27537,0.36067 -2.8664,0.0396 -4.769,-0.95852 0,0 -6.30507,-3.30756 -6.30507,-3.30756 m 4.14949,-44.2658 c 0,0 1.3098,0.60403 1.3098,0.60403 1.5611,0.71995 2.70612,0.24091 3.43115,-1.44195 0.73854,-1.71596 1.10838,-4.55903 1.10839,-8.52665 -1e-5,-3.86122 -0.37591,-6.94748 -1.12654,-9.25529 -0.74912,-2.33835 -1.83384,-3.81055 -3.25119,-4.41845 0,0 -1.47161,-0.63109 -1.47161,-0.63109 0,0 0,23.6694 0,23.6694 m 0,34.8978 c 0,0 2.58822,1.31694 2.58822,1.31694 1.90485,0.96926 3.30964,0.5858 4.20862,-1.15726 0.94991,-1.90043 1.4258,-4.68271 1.42581,-8.3432 -1e-5,-3.55382 -0.4576,-6.7602 -1.37107,-9.61384 -0.88698,-2.79955 -2.46728,-4.73743 -4.73203,-5.81367 0,0 -2.11955,-1.00721 -2.11955,-1.00721 0,0 0,24.61824 0,24.61824"
         inkscape:connector-curvature="0" />
      <path
         id="path10980"
         d="m 341.02978,374.86334 c 0,-7.58031 0.94324,-13.58541 2.83689,-18.03209 1.90324,-4.46909 4.23548,-6.08903 7.00465,-4.83597 2.80241,1.26822 5.19693,5.08204 7.17562,11.4591 1.9627,6.39795 2.94785,13.61113 2.94787,21.61494 -2e-5,8.07762 -0.99173,14.34113 -2.96745,18.7734 -1.97859,4.36606 -4.39233,5.78851 -7.23288,4.29267 -2.79403,-1.47134 -5.11934,-5.407 -6.98438,-11.79134 -1.85584,-6.2808 -2.78032,-13.43331 -2.78032,-21.48071 m 4.32968,2.33405 c -1e-5,5.27553 0.49258,9.69619 1.47972,13.26896 1.01512,3.63141 2.358,5.87802 4.03214,6.7354 1.6944,0.86776 3.0541,0.011 4.07547,-2.57854 1.02408,-2.59641 1.53716,-6.50064 1.53718,-11.70745 -2e-5,-5.20678 -0.5131,-9.61348 -1.53718,-13.21288 -1.03428,-3.63232 -2.39394,-5.83885 -4.07547,-6.62442 -1.64864,-0.77008 -2.97891,0.16745 -3.99412,2.80484 -1.01252,2.63034 -1.51775,6.39995 -1.51774,11.31409"
         inkscape:connector-curvature="0" />
      <path
         id="path10982"
         d="m 371.81801,388.06805 c 0,0 -7.03657,-28.27692 -7.03657,-28.27692 0,0 5.37653,2.44347 5.37653,2.44347 0,0 4.40854,17.99359 4.40854,17.99359 0,0 4.54148,-13.92608 4.54148,-13.92608 0,0 5.7463,2.61152 5.7463,2.61152 0,0 -7.47868,21.85902 -7.47868,21.85902 0,0 8.6759,34.32953 8.6759,34.32953 0,0 -5.59774,-2.9365 -5.59774,-2.9365 0,0 -5.88726,-23.58269 -5.88726,-23.58269 0,0 -5.94081,17.37785 -5.94081,17.37785 0,0 -5.49434,-2.88225 -5.49434,-2.88225 0,0 8.68665,-25.01054 8.68665,-25.01054"
         inkscape:connector-curvature="0" />
    </g>
  </g>
</svg>