summaryrefslogtreecommitdiff
path: root/doc/dependency-tree.svg
blob: db130c1a4a83f72dfb89ed3d99d1f61d3b50ecc7 (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
<?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:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="744.09448819"
   height="1052.3622047"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.46"
   sodipodi:docname="dependency-tree.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <defs
     id="defs4">
    <marker
       inkscape:stockid="Arrow2Lend"
       orient="auto"
       refY="0.0"
       refX="0.0"
       id="Arrow2Lend"
       style="overflow:visible;">
      <path
         id="path3985"
         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
         transform="scale(1.1) rotate(180) translate(1,0)" />
    </marker>
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       id="perspective10" />
    <inkscape:perspective
       id="perspective2504"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 526.18109 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2561"
       inkscape:persp3d-origin="205 : 53.333333 : 1"
       inkscape:vp_z="410 : 80 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 80 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2643"
       inkscape:persp3d-origin="345 : 90 : 1"
       inkscape:vp_z="690 : 135 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 135 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2722"
       inkscape:persp3d-origin="490 : 83.333333 : 1"
       inkscape:vp_z="980 : 125 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 125 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2802"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 526.18109 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2857"
       inkscape:persp3d-origin="238.282 : 72.307709 : 1"
       inkscape:vp_z="476.564 : 108.46156 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 108.46156 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2924"
       inkscape:persp3d-origin="1100 : 213.33333 : 1"
       inkscape:vp_z="2200 : 320 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 320 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective3004"
       inkscape:persp3d-origin="500 : 166.66667 : 1"
       inkscape:vp_z="1000 : 250 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 250 : 1"
       sodipodi:type="inkscape:persp3d" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3015">
      <rect
         style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         id="rect3017"
         width="264.28571"
         height="401.42856"
         x="1035.7142"
         y="76.647896"
         ry="0" />
    </clipPath>
    <inkscape:perspective
       id="perspective4821"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 526.18109 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective4928"
       inkscape:persp3d-origin="197.89696 : 43.04542 : 1"
       inkscape:vp_z="395.79391 : 64.56813 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 64.56813 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective3289"
       inkscape:persp3d-origin="300 : 400 : 1"
       inkscape:vp_z="700 : 600 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="-50 : 600 : 1"
       sodipodi:type="inkscape:persp3d" />
    <inkscape:perspective
       id="perspective2590"
       inkscape:persp3d-origin="64 : 42.666667 : 1"
       inkscape:vp_z="128 : 64 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 64 : 1"
       sodipodi:type="inkscape:persp3d" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#rect3059_1_"
       id="linearGradient7853"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(4.2532,0,0,-3.6645,-99.2402,1774.7)"
       x1="100.7996"
       y1="430.92969"
       x2="109.1761"
       y2="430.92969" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#rect3057_1_"
       id="linearGradient7855"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(4.2532,0,0,-4.2532,-106.139,2068.99)"
       x1="115.8259"
       y1="454.40631"
       x2="123.0828"
       y2="454.40631" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#rect3051_1_"
       id="linearGradient7857"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(4.2532,0,0,-4.2532,-101.264,2072.24)"
       x1="130.05051"
       y1="462.78909"
       x2="136.4381"
       y2="462.78909" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#path2094_1_"
       id="linearGradient7859"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(4.2532,0,0,-4.2532,-99.6348,2078.75)"
       x1="115.8323"
       y1="457.33499"
       x2="104.7427"
       y2="470.53329" />
    <inkscape:perspective
       id="perspective8001"
       inkscape:persp3d-origin="67.000031 : 67.333333 : 1"
       inkscape:vp_z="134.00006 : 101 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 101 : 1"
       sodipodi:type="inkscape:persp3d" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     gridtolerance="10000"
     guidetolerance="10"
     objecttolerance="10"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.4"
     inkscape:cx="313.6708"
     inkscape:cy="406.65454"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="1563"
     inkscape:window-height="980"
     inkscape:window-x="20"
     inkscape:window-y="14" />
  <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" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1">
    <g
       id="g2646"
       transform="matrix(9.743774e-2,0,0,9.743774e-2,275.80315,723.38791)">
      <path
         id="path25345"
         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         transform="matrix(1.079545,0,0,1.079545,-521.3741,-27.12071)"
         d="M 640.23853,222.03787 C 640.23853,249.14264 618.26578,271.11539 591.16101,271.11539 C 564.05624,271.11539 542.08349,249.14264 542.08349,222.03787 C 542.08349,194.9331 564.05624,172.96035 591.16101,172.96035 C 618.26578,172.96035 640.23853,194.9331 640.23853,222.03787 L 640.23853,222.03787 z" />
      <path
         id="path24454"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 285.83418,10.247082 C 288.65554,6.9807461 291.87058,4.1737036 297.80466,4.5388804 L 554.11195,4.5388804 L 681.49562,105.68157 C 682.90126,108.65248 683.61253,110.92902 683.96915,112.85091 L 684.45326,202.47755 C 682.08558,207.61498 679.30008,212.00034 674.33227,212.45753 L 644.76683,212.45753 C 644.76683,124.83077 515.22193,124.6518 515.22193,212.45753 L 182.38817,212.45753 C 182.38817,125.17065 51.857393,124.83574 51.857393,212.45753 L 15.791737,212.45753 C 12.71653,211.01909 9.9497784,212.35674 5.8866518,202.02701 L 5.492299,137.57457 C 7.5896054,131.71045 10.205427,129.47594 12.815364,127.20023 L 200.16379,96.077198 L 285.83418,10.247082 z" />
      <path
         id="path25343"
         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         transform="matrix(1.079545,0,0,1.079545,-58.73586,-27.14299)"
         d="M 640.23853,222.03787 C 640.23853,249.14264 618.26578,271.11539 591.16101,271.11539 C 564.05624,271.11539 542.08349,249.14264 542.08349,222.03787 C 542.08349,194.9331 564.05624,172.96035 591.16101,172.96035 C 618.26578,172.96035 640.23853,194.9331 640.23853,222.03787 L 640.23853,222.03787 z" />
      <path
         id="path25349"
         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 226.41173,97.07302 L 290.25519,34.075171 C 291.69464,32.851906 292.82676,31.167654 295.32884,31.538345 L 408.85181,31.538345 L 408.85181,108.70014 L 231.27398,108.70014 C 224.51388,106.03369 223.59914,101.99187 226.41173,97.07302 z" />
      <path
         id="path26236"
         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 585.23723,89.186408 L 530.52565,34.0864 C 529.0862,32.863135 527.95408,31.178883 525.452,31.549574 L 429.94598,31.549574 L 429.94598,108.71136 L 592.71536,108.71136 C 600.41757,107.17544 590.2821,96.783985 585.23723,89.186408 z" />
    </g>
    <g
       id="g2725"
       transform="matrix(0.1018413,0,0,0.1018413,276.41453,756.01083)">
      <path
         id="path2727"
         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         d="M 160.58312,199.08511 C 160.58312,226.81161 138.10636,249.28837 110.37986,249.28837 C 82.653362,249.28837 60.176601,226.81161 60.176601,199.08511 C 60.176601,171.35862 82.653362,148.88185 110.37986,148.88185 C 138.10636,148.88185 160.58312,171.35862 160.58312,199.08511 L 160.58312,199.08511 z" />
      <path
         id="path2729"
         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 270.54027,7.362515 C 273.21369,4.2674527 276.26014,1.6076003 281.88306,1.9536287 L 524.75063,1.9536287 L 645.45481,97.7928 C 646.78674,100.60793 647.46071,102.76509 647.79863,104.58621 L 648.25736,189.51319 C 646.01383,194.38123 643.37439,198.53664 638.66707,198.96986 L 610.65193,198.96986 C 610.65193,115.93789 487.89984,115.76831 487.89984,198.96986 L 172.51855,198.96986 C 172.51855,116.25995 48.832289,115.9426 48.832289,198.96986 L 14.657772,198.96986 C 11.743816,197.60684 9.1221418,198.87435 5.2720693,189.08627 L 4.8983948,128.01346 C 6.8857269,122.45683 9.3643852,120.33949 11.837468,118.18311 L 189.36209,88.692043 L 270.54027,7.362515 z" />
      <path
         id="path2731"
         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         d="M 598.96242,199.064 C 598.96242,226.7905 576.48566,249.26726 548.75916,249.26726 C 521.03266,249.26726 498.5559,226.7905 498.5559,199.064 C 498.5559,171.33751 521.03266,148.86074 548.75916,148.86074 C 576.48566,148.86074 598.96242,171.33751 598.96242,199.064 L 598.96242,199.064 z" />
      <path
         id="path2733"
         style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 554.24382,82.162579 L 502.4011,29.951795 C 501.03713,28.792673 499.96437,27.196736 497.59349,27.54799 L 407.09542,27.54799 L 407.09542,100.66372 L 561.32983,100.66372 C 568.62816,99.208338 559.02416,89.361769 554.24382,82.162579 z" />
      <path
         id="path28093"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 787.13419,173.56057 L 707.90245,173.56057 L 707.90245,186.47499 L 658.86255,186.47499 L 658.86255,199.56394 L 782.94573,199.56394 C 783.89147,190.82108 783.62571,181.87631 787.13419,173.56057 z" />
      <path
         id="path2736"
         style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 214.23369,89.635648 L 274.72946,29.941154 C 276.09343,28.782032 277.16619,27.186096 279.53707,27.537349 L 387.10735,27.537349 L 387.10735,100.65309 L 218.84099,100.65309 C 212.43536,98.126456 211.56859,94.296573 214.23369,89.635648 z" />
      <path
         id="path26315"
         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
         d="M 893.91893,199.09866 C 893.91893,226.82516 871.44217,249.30192 843.71567,249.30192 C 815.98917,249.30192 793.51241,226.82516 793.51241,199.09866 C 793.51241,171.37217 815.98917,148.8954 843.71567,148.8954 C 871.44217,148.8954 893.91893,171.37217 893.91893,199.09866 L 893.91893,199.09866 z" />
      <path
         id="path26317"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 708.07697,162.39134 L 708.07697,48.604793 C 710.54619,30.868706 719.63699,29.163014 727.97217,26.615369 L 960.08276,26.615369 C 966.40555,28.250356 974.14601,29.599665 978.05824,47.208639 L 978.05824,162.39134 L 892.19479,162.39134 C 874.56835,126.20501 813.66112,126.0422 794.98756,162.39134 L 708.07697,162.39134 z" />
      <path
         id="path27206"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="M 978.1455,173.56057 L 965.66738,199.56394 L 904.2366,199.56394 C 902.40617,190.85015 902.52331,181.85814 897.77939,173.56057 L 978.1455,173.56057 z" />
    </g>
    <path
       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21093525px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 339.15496,544.90467 L 334.99871,545.12342 L 330.40496,555.74842 L 327.68621,557.84217 L 321.52996,557.68592 L 323.87371,551.65467 L 323.62371,551.62342 L 320.77996,557.71717 L 318.27996,557.71717 L 318.27996,557.59217 L 318.31121,557.15467 L 318.15496,556.90467 L 317.74871,556.71717 L 316.71746,556.68592 L 315.93621,556.84217 L 314.99871,557.46717 L 305.59246,557.40467 L 303.46746,557.65467 L 301.02996,557.87342 L 298.93621,558.34217 L 296.93621,559.18592 L 294.84246,560.34217 L 293.49871,561.34217 L 291.90496,562.71717 L 290.68621,564.02967 L 289.18621,565.77967 L 284.56121,568.12342 L 271.27996,563.96717 L 264.37371,564.62342 L 263.71746,564.71717 L 262.68621,565.34217 L 262.37371,565.84217 L 263.09246,566.43592 L 270.34246,571.12342 L 271.84246,571.81092 L 273.81121,572.34217 L 278.46746,572.65467 L 276.43621,574.52967 L 276.34246,574.90467 L 276.43621,575.15467 L 278.77996,575.93592 L 280.21746,576.09217 L 280.37371,576.49842 L 281.02996,577.15467 L 282.02996,577.31092 L 281.90496,577.52967 L 281.49871,577.87342 L 281.46746,578.37342 L 281.84246,579.18592 L 282.90496,579.77967 L 285.34246,580.06092 L 287.56121,580.02967 L 289.46746,579.84217 L 289.09246,584.12342 L 287.62371,584.24842 L 287.02996,584.49842 L 286.15496,584.99842 L 285.02996,586.21717 L 284.74871,587.37342 C 284.74871,587.37342 284.71123,587.96723 284.74871,588.15467 C 284.7862,588.34209 285.06122,588.52969 285.06121,588.52967 L 286.21746,589.46717 L 286.93621,590.15467 L 287.71746,590.40467 L 288.62371,590.46717 L 289.40496,589.99842 L 289.96746,589.59217 L 290.34246,588.68592 L 291.74871,588.09217 L 295.81121,585.43592 L 295.96746,584.99842 L 295.68621,584.71717 L 293.49871,584.74842 L 292.06121,584.09217 L 291.93621,583.71717 L 292.56121,579.27967 L 295.21746,578.43592 L 299.49871,577.68592 L 302.21746,577.52967 L 304.27996,576.99842 L 310.59246,577.34217 L 317.18621,578.43592 L 317.09246,579.81092 L 316.68621,579.93592 L 316.52996,581.68592 L 316.06121,582.37342 L 315.52996,583.71717 L 315.49871,584.74842 L 315.84246,585.59217 L 316.31121,585.93592 L 317.21746,585.96717 L 317.24871,586.24842 L 317.71746,586.65467 L 318.59246,587.09217 L 319.40496,587.09217 L 320.15496,586.90467 L 320.59246,586.24842 L 320.96746,585.84217 L 320.99871,585.12342 L 325.18621,581.71717 L 325.34246,581.31092 L 325.31121,580.87342 C 325.31121,580.87342 321.07987,580.99845 320.77996,580.99842 C 320.48007,580.99842 320.43621,580.74843 320.43621,580.74842 L 319.99871,580.37342 L 319.84246,579.96717 L 319.59246,579.68592 L 319.59246,578.68592 L 319.87371,578.71717 L 329.87371,579.87342 L 331.46746,579.81092 L 333.52996,579.65467 L 355.09246,576.43592 L 356.15496,576.12342 L 358.62371,574.96717 L 362.68621,572.87342 L 362.68621,572.62342 L 362.62371,572.43592 L 353.81121,573.49842 L 342.65496,574.81092 L 339.62371,575.06092 L 336.90496,574.81092 L 318.37371,573.40467 L 338.27996,561.62342 L 338.27996,559.77967 L 346.96746,560.24842 L 351.24871,559.71717 L 351.96746,559.37342 L 351.90496,558.96717 L 347.81121,558.77967 L 338.43621,558.40467 L 339.15496,544.90467 z M 307.81121,557.84217 C 309.85228,557.85762 312.03648,558.03827 314.40496,558.40467 C 314.68705,558.97043 309.06021,563.00765 304.06121,565.21717 C 298.8501,567.52043 291.74069,566.93487 290.27996,566.09217 C 293.15225,560.86319 298.96659,557.7752 307.81121,557.84217 z"
       id="path1904" />
    <g
       transform="matrix(7.3447011e-2,0,0,7.3447011e-2,245.55403,594.68388)"
       style="display:inline"
       inkscape:label="Silhouette"
       id="layer2">
      <path
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         d="M 955.08118,173.0973 C 929.11244,173.06605 902.95618,183.7223 902.95618,183.7223 L 927.20618,183.7223 L 927.20618,187.9723 L 874.33118,187.9723 L 874.33118,213.8473 L 945.95618,213.8473 L 945.95618,254.9723 L 918.08118,254.9723 L 918.08118,265.8473 L 935.14368,265.8473 L 932.64368,275.9098 C 901.49251,276.75999 870.45266,279.38997 839.45618,282.4723 C 811.2352,285.64994 764.05377,307.30947 706.73743,355.31605 C 700.13564,355.31605 697.41015,355.5348 692.01868,355.5348 C 687.06732,355.5348 680.42183,356.28928 675.48743,357.06605 C 651.73306,360.80545 621.89054,365.87058 598.48743,370.7223 C 590.28611,372.42252 582.28206,376.20422 577.58118,379.75355 C 515.01127,426.99606 458.28885,471.94262 417.58118,505.4098 C 382.09541,534.58385 369.60605,553.04336 369.61243,569.6598 C 369.61881,586.27591 375.20712,606.71712 416.70618,623.3473 C 476.25717,647.21153 534.56943,656.801 598.04993,660.31605 C 672.32392,664.42874 702.01082,665.49513 795.20618,664.2848 L 818.70618,663.9723 L 818.70618,731.19105 L 813.29993,748.2223 L 706.08118,748.2223 C 706.08117,748.22228 701.53588,748.21257 697.98743,747.2223 C 694.40157,746.22162 689.48743,743.06605 689.48743,743.06605 L 677.73743,735.81605 L 701.89368,696.19105 L 725.01868,687.94105 C 725.01871,687.94106 725.95618,687.30049 725.95618,686.0348 C 725.95616,684.79662 725.01868,684.75355 725.01868,684.75355 L 700.48743,684.75355 L 675.95618,684.75355 C 675.95619,684.75355 674.83118,684.51814 674.83118,686.00355 C 674.83117,687.49305 675.95618,688.0348 675.95618,688.0348 L 686.04993,695.75355 L 666.14368,728.6598 L 645.58118,715.87855 L 658.76868,709.9098 C 658.76869,709.90977 660.20618,709.18013 660.20618,707.75355 C 660.20619,706.27199 658.76868,706.5348 658.76868,706.5348 L 631.83118,706.5348 L 604.86243,706.5348 C 604.86244,706.53478 603.86243,706.30102 603.86243,707.7848 C 603.86244,709.24106 604.86243,710.12855 604.86243,710.12855 L 617.61243,715.7848 L 684.45618,757.1598 C 684.45619,757.15983 689.91905,760.89106 694.04993,761.9723 C 698.14854,763.04511 702.98743,762.87855 702.98743,762.87855 L 1116.7062,762.87855 L 1116.7062,748.2223 L 1096.2687,748.2223 L 1091.0187,731.12855 L 1091.0187,631.7848 C 1149.4514,617.01381 1206.5288,597.56688 1263.4874,578.00355 C 2237.6924,456.53048 1096.9432,598.92375 2064.4249,477.87855 L 2064.4249,587.4723 L 2097.7062,587.4723 L 2097.7062,502.0973 L 2130.1124,578.44105 L 2165.2999,592.9723 L 2198.7687,580.6598 L 2191.3937,462.37855 L 2239.7999,455.87855 C 2247.9527,454.85834 2247.7334,450.93656 2248.3937,449.06605 C 2251.0947,448.35222 2252.7687,448.57333 2252.7687,446.5348 C 2252.7687,444.60612 2251.1844,444.38997 2248.2687,443.7848 C 2247.4435,441.74925 2248.2154,437.23528 2239.1437,436.9723 C 2204.0029,435.95523 2235.3982,436.83757 2200.5187,435.8473 C 2308.128,196.86227 2202.8227,430.67944 2311.8624,188.50355 C 2290.7365,188.50355 2290.554,188.50355 2277.4562,188.50355 C 2277.4562,182.99861 2275.6625,181.3473 2274.0812,181.3473 C 2272.7741,181.3473 2270.7062,182.31338 2270.7062,188.50355 C 2257.6121,188.50355 2247.9448,188.72257 2242.1124,197.5348 C 2106.9232,401.75113 2241.1204,199.17926 2105.8937,403.2848 L 2076.2062,402.8473 L 2076.2062,258.9723 L 2042.8312,258.9723 L 2042.8312,374.5973 L 2058.0812,402.6598 L 2035.4874,402.4098 C 2025.4664,402.28912 2022.1561,401.21731 2007.0812,414.06605 C 1819.3699,411.97548 1809.2596,411.63922 1376.1749,404.5973 C 1374.4076,397.11526 1371.5131,390.63677 1368.4562,388.75355 C 1333.0473,366.93977 1294.9657,344.00037 1247.3624,323.75355 C 1187.8718,298.45074 1131.0074,281.42607 1100.4249,278.94105 C 1059.4422,276.03733 1018.3467,275.04568 977.26868,275.0348 L 974.64368,265.9723 L 992.01868,265.9723 L 992.01868,255.0973 L 963.95618,255.0973 L 963.95618,213.9723 L 1076.5812,213.9723 L 1076.5812,188.0973 L 982.70618,188.0973 L 982.70618,183.8473 L 1006.8312,183.8473 C 1006.8312,183.8473 981.04993,173.12855 955.08118,173.0973 z M 887.45618,192.3473 L 908.95618,192.3473 L 908.95618,209.4723 L 887.45618,209.4723 L 887.45618,192.3473 z M 1000.9562,192.3473 L 1063.4562,192.3473 L 1063.4562,209.4723 L 1000.9562,209.4723 L 1000.9562,192.3473 z M 664.14368,362.75355 L 671.42493,377.50355 C 671.42494,377.50355 672.28812,379.28723 671.83118,381.0348 C 671.36335,382.82401 669.29993,383.1598 669.29993,383.1598 L 633.58118,387.75355 C 633.58118,387.75355 620.59579,388.96991 612.45618,388.06605 C 602.01196,386.90628 600.92493,381.06605 600.92493,381.06605 L 599.79993,374.06605 L 664.14368,362.75355 z M 576.89368,385.9098 C 576.89369,385.9098 581.21767,386.76416 588.20618,393.9723 C 599.91209,406.04607 600.32538,409.83961 600.95618,411.9723 C 601.61244,414.19105 600.14368,417.00355 600.14368,417.00355 L 546.70618,518.9723 C 546.70619,518.97231 543.95618,524.5348 536.64368,526.3473 C 529.33119,528.15981 517.45618,526.2223 517.45618,526.2223 C 517.45619,526.22231 516.93106,526.10671 442.45618,510.9723 C 431.86664,508.81591 420.42493,509.0348 420.42493,509.0348 C 420.42494,509.03481 457.37805,478.73792 496.92493,447.62855 C 536.47181,416.51918 576.89368,385.9098 576.89368,385.9098 z M 665.33118,410.1598 C 668.3207,410.14764 674.82888,410.78963 679.26868,416.2848 C 686.89369,425.7223 683.70618,437.7223 683.70618,437.7223 L 667.45618,497.2223 C 667.45619,497.22231 664.84823,507.39169 653.45618,516.0973 C 643.55218,523.66578 632.83118,522.9723 632.83118,522.9723 L 586.33118,523.2223 C 586.33119,523.22231 576.48871,523.70911 571.95618,515.0973 C 567.58119,506.78481 574.89368,493.9098 574.89368,493.9098 L 612.20618,422.4723 C 612.20619,422.4723 613.95618,419.2848 616.89368,417.4723 C 619.83119,415.6598 623.95618,415.2223 623.95618,415.2223 L 663.70618,410.2223 C 663.70618,410.2223 664.33467,410.16385 665.33118,410.1598 z M 724.95618,413.2223 C 724.95618,413.2223 795.81706,413.2223 827.95618,413.2223 C 843.65722,413.2223 842.84667,435.69109 842.20618,455.2223 C 841.51342,476.34785 830.29317,509.83131 815.20618,510.8473 C 774.34617,513.59051 701.70619,518.22231 701.70618,518.2223 C 701.70618,518.2223 696.26869,518.09731 693.83118,515.5973 C 691.39368,513.0973 691.89369,508.28481 691.89368,508.2848 L 703.95618,463.5973 L 716.08118,419.1598 C 716.08118,419.1598 717.20619,416.1598 719.45618,414.7223 C 721.70618,413.2848 724.95619,413.2223 724.95618,413.2223 z M 567.45618,534.7223 C 632.23743,534.7223 569.67494,534.72231 632.95618,534.7223 C 641.02039,534.7223 655.62592,539.66105 649.20618,563.7223 C 641.34496,593.18629 629.49432,592.22231 625.20618,592.2223 C 560.29993,592.2223 623.14369,592.22231 558.45618,592.2223 C 552.81703,592.2223 522.45619,593.84731 536.70618,566.4723 C 551.05867,538.90041 560.78842,534.72231 567.45618,534.7223 z M 512.98743,548.12855 C 515.32794,548.04606 520.34583,548.30833 523.20618,551.7223 C 527.08118,556.3473 523.45619,563.47231 523.45618,563.4723 L 489.70618,627.9723 C 489.70618,627.9723 409.70017,616.89158 415.20618,586.7223 C 420.62391,557.03678 459.20619,551.22231 459.20618,551.2223 L 511.70618,548.2223 C 511.70618,548.2223 512.20726,548.15605 512.98743,548.12855 z M 1076.3312,635.44105 L 1076.3312,731.2223 L 1071.0187,748.2223 L 838.58118,748.25355 L 833.29993,731.19105 L 833.29993,663.81605 C 868.15785,663.46374 944.46422,658.85048 970.83118,655.4723 C 1006.4378,651.21068 1041.4552,643.59762 1076.3312,635.44105 z"
         id="path5852"
         sodipodi:nodetypes="ccccccccccccccsssssssscccccsccccscccscccccscccscccscccccccccccccccccscccccscccccccccccsscccccccccccccccccccccccccsccsccccssccscccsccsccsccsccsccccssccscccsccsssssccsccsccccccccccc" />
      <path
         id="path5856"
         d="M 1088.1061,762.11376 L 1175.3218,762.11399 C 1175.3218,762.11399 1177.4275,762.28967 1180.5384,760.9888"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         id="path5854"
         d="M 2131.3628,578.16007 L 2224.9433,616.72557 C 2224.9433,616.72557 2234.7359,619.80641 2243.0982,618.70611 C 2251.4469,617.60759 2252.2307,615.95536 2252.2307,615.95536"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         sodipodi:nodetypes="cczc"
         id="path5858"
         d="M 997.74489,200.75773 L 1089.6687,200.75773 C 1089.6687,200.75773 1287.2167,204.64682 1489.0073,232.57753 C 1689.3837,260.50825 1885.5174,301.16689 1885.5174,301.16689"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
         d="M 913.24564,200.75773 L 865.8695,200.75773 C 865.81228,200.75773 707.53408,204.1253 522.54173,238.56148 C 337.67534,272.97422 197.17281,307.08911 197.30002,306.82374"
         id="path5860"
         sodipodi:nodetypes="cczc" />
      <path
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
         d="M 990.81251,255.85473 L 997.68751,212.22973"
         id="path5868"
         sodipodi:nodetypes="cc" />
      <path
         sodipodi:nodetypes="cc"
         id="path5866"
         d="M 919.34376,255.85473 L 912.46876,212.22973"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
    </g>
    <g
       id="g3007"
       transform="matrix(9.743774e-2,0,0,9.743774e-2,257.78587,794.1967)">
      <path
         id="path2991"
         d="M 295.78419,86.816926 L 295.78419,335.08252 L 687.71625,335.4031 C 664.71649,354.19396 650.35734,380.09418 650.54503,414.08813 L 261.47933,413.85667 C 257.75238,281.97351 70.642616,282.42223 66.576854,413.09434 C 38.473995,412.88466 34.575813,406.50199 34.30487,380.61469 L 34.304868,281.61469 C 33.952015,237.37253 28.42681,266.57731 61.177014,182.67997 C 94.875059,93.246445 85.585107,101.51291 116.0648,99.204795 L 295.78419,86.816926 z M 217.93865,233.19966 L 219.48981,127.72046 L 119.43969,133.92512 C 101.20003,135.14704 101.04823,135.26154 94.62105,156.41701 L 69.026832,224.66825 C 60.428592,245.6025 61.79713,251.77115 85.314062,248.71131 L 217.93865,233.19966 z M 966.63494,335.59074 L 966.82552,391.36792 L 902.21802,414.23783 L 845.4914,414.20156 C 845.7223,381.85903 832.28136,354.65711 808.44981,335.54893 L 966.63494,335.59074 z"
         style="fill:#000000;fill-rule:evenodd;stroke:none" />
      <rect
         id="rect2993"
         style="fill:#000000;stroke:none"
         width="631.32404"
         height="301.70154"
         y="12.158683"
         x="335.82718" />
      <circle
         id="circle2995"
         style="fill:#000000;stroke:none"
         cy="412"
         cx="164"
         r="77"
         sodipodi:cx="164"
         sodipodi:cy="412"
         sodipodi:rx="77"
         sodipodi:ry="77" />
      <circle
         id="circle2997"
         style="fill:#000000;stroke:none"
         cy="412"
         cx="748"
         r="77"
         sodipodi:cx="748"
         sodipodi:cy="412"
         sodipodi:rx="77"
         sodipodi:ry="77" />
    </g>
    <g
       id="g7911"
       transform="matrix(0.6818324,0,0,0.6818324,165.91082,272.13388)">
      <rect
         y="699.81897"
         x="448.50772"
         height="47.477169"
         width="110.10663"
         id="rect7904"
         style="opacity:1;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.14644223;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <text
         id="text3048"
         y="732.34119"
         x="462.5054"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="732.34119"
           x="462.5054"
           id="tspan3050"
           sodipodi:role="line">Gasoline</tspan></text>
    </g>
    <g
       id="g3857"
       transform="translate(3.0304576,-14.142136)">
      <g
         transform="translate(48.487322,31.819805)"
         id="g3845">
        <path
           style="fill:#782121"
           d="M 537.55485,624.57034 L 531.86477,624.57182 C 528.73523,624.57263 526.12378,624.60525 526.06155,624.64431 C 525.99933,624.68337 525.91708,624.88007 525.87879,625.08143 C 525.8103,625.44158 525.8026,625.44707 525.40582,625.41848 L 525.00248,625.38942 L 524.97378,624.74692 C 524.94582,624.12095 524.95274,624.09995 525.24241,623.93115 L 525.53975,623.75789 L 525.53975,618.46987 C 525.53975,613.32775 525.53436,613.17508 525.34438,612.93683 C 525.08254,612.60846 525.08254,611.89168 525.34438,611.56147 C 525.52858,611.32916 525.5354,611.13475 525.5354,606.11701 C 525.5354,601.09928 525.52858,600.90486 525.34438,600.67256 C 525.08254,600.34235 525.08254,599.62556 525.34438,599.29719 C 525.53436,599.05895 525.53975,598.90627 525.53975,593.76416 L 525.53975,588.47613 L 525.24669,588.30536 C 525.08099,588.2088 524.95364,588.05321 524.95364,587.94732 L 524.94185,587.56732 L 524.97217,587.20596 C 525.00173,586.8536 525.01222,586.8446 525.39322,586.8446 C 525.76074,586.8446 525.78574,586.86279 525.81402,587.1506 C 525.83056,587.3189 525.90253,587.50445 525.97397,587.56293 C 526.05862,587.63224 526.57536,587.6599 527.458,587.64238 L 528.81215,587.6155 L 528.84201,587.26171 C 528.86985,586.93185 528.89794,586.90357 529.25717,586.8437 C 529.54874,586.7951 529.64247,586.73466 529.64247,586.59523 C 529.64247,586.44451 529.71358,586.41097 530.0332,586.41097 L 530.42394,586.41097 L 530.6193,586.41097 L 530.9612,586.41097 C 531.23111,586.41097 531.30309,586.44925 531.30309,586.59276 C 531.30309,586.73398 531.39992,586.78886 531.73708,586.83874 C 532.15318,586.90029 532.1723,586.91762 532.20108,587.25922 L 532.23109,587.6155 L 535.08834,587.64105 L 537.94559,587.66659 L 538.14096,587.66368 L 541.61732,587.66368 L 545.09368,587.66368 L 545.02767,587.27823 L 544.96165,586.89279 L 545.5075,586.89279 L 546.05335,586.89279 L 546.24871,586.89279 L 546.79846,586.89279 L 547.34821,586.89279 L 547.28572,587.27823 L 547.22324,587.66368 L 548.23054,587.66368 C 549.3514,587.66368 549.47228,587.60967 549.47228,587.10888 C 549.47228,586.78784 549.47549,586.78557 549.88744,586.81497 L 550.30259,586.8446 L 550.33102,587.5299 C 550.35934,588.21261 550.35832,588.21566 550.06239,588.33658 L 549.76533,588.45796 L 549.76533,593.75507 C 549.76533,598.90627 549.77071,599.05893 549.9607,599.29719 C 549.98066,599.9286 550.40157,599.76954 549.9607,600.69885 C 549.77568,600.93088 549.76533,601.08977 549.76533,603.69907 L 549.76533,606.45428 L 549.76533,606.647 L 549.7675,608.98378 C 549.76952,611.15464 549.78324,611.33767 549.9607,611.56147 C 550.22253,611.89168 550.22253,612.60846 549.9607,612.93683 C 549.77072,613.17508 549.76533,613.32775 549.76533,618.46987 L 549.76533,623.75789 L 550.06266,623.93115 C 550.35234,624.09995 550.35925,624.12095 550.33129,624.74692 L 550.30259,625.38942 L 549.8583,625.41799 L 549.41402,625.44657 L 549.32104,625.03255 L 549.22807,624.61852 L 543.48915,624.59366 L 537.75022,624.5688 L 537.55485,624.57034 z M 549.76533,624.38793 C 549.76533,624.3406 549.69318,624.27456 549.60499,624.24118 C 549.47092,624.19043 549.46488,624.20453 549.56811,624.32723 C 549.70878,624.49444 549.76533,624.51184 549.76533,624.38793 z M 549.27708,590.57863 L 549.27725,588.19367 L 548.00719,588.22312 C 546.78112,588.25155 546.73713,588.24571 546.73713,588.05449 C 546.73713,587.87663 546.67729,587.85641 546.15103,587.85641 C 545.6294,587.85641 545.56493,587.87768 545.56493,588.04978 C 545.56493,588.24177 545.51584,588.24297 538.6538,588.21841 L 531.74267,588.19367 L 531.71176,587.92868 L 531.68085,587.66368 L 530.52162,587.66368 L 529.36239,587.66368 L 529.33148,587.92868 L 529.30057,588.19367 L 527.6643,588.19367 L 526.02802,588.19367 L 526.02809,590.57863 L 526.02816,592.96359 L 537.65254,592.96359 L 549.27691,592.96359 L 549.27708,590.57863 z"
           id="path3068"
           sodipodi:nodetypes="ccssccccccsssssccccccssscccssccccsscccccccccccccccccsccccccccccccsscccccccccccccssccccsssccccccccccccccc" />
        <path
           style="fill:#000000;stroke:#000000;stroke-width:0.20404322;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 526.24362,624.50877 C 525.63459,624.40268 526.03282,623.63259 525.91969,623.19959 C 525.88743,619.90325 526.00272,616.59995 525.83374,613.30925 C 525.33572,612.0778 526.23342,610.59652 525.91712,609.1555 C 525.88403,606.36661 526.00407,603.56946 525.83365,600.78604 C 525.31216,599.62202 526.25417,598.26688 525.90541,596.90219 C 525.91034,595.58039 525.84732,594.2537 525.9431,592.93491 C 526.06823,594.98472 526.00057,597.04163 526.01939,599.09472 C 533.85919,599.09472 541.69899,599.09472 549.53878,599.09472 C 549.55762,597.04163 549.49027,594.98474 549.61508,592.9349 C 549.72385,595.05527 549.62917,597.18273 549.63069,599.30612 C 550.82172,599.9932 549.19555,601.11566 549.64984,602.14827 C 549.62871,605.36083 549.64232,608.57353 549.63847,611.78615 C 550.67249,612.34332 549.62728,613.04381 549.63847,613.75814 C 549.63847,617.26043 549.63847,620.76271 549.63847,624.26499 C 548.6202,624.89473 547.31862,624.51846 546.18118,624.64248 C 539.65481,624.62924 533.12553,624.72135 526.60104,624.56502 L 526.43063,624.5483 L 526.24361,624.50875 L 526.24362,624.50877 z M 549.33049,624.28666 C 549.77118,623.98761 549.4366,623.32128 549.53646,622.86078 C 549.52064,619.77233 549.5048,616.68389 549.48897,613.59544 C 541.68238,613.59544 533.8758,613.59544 526.0692,613.59544 C 526.07837,617.08246 525.96899,620.57277 526.09214,624.0572 C 527.04604,624.80276 528.77939,624.27451 530.04962,624.44877 C 536.34541,624.43312 542.64433,624.53184 548.9381,624.38172 L 549.21354,624.34045 L 549.33051,624.28665 L 549.33049,624.28666 z M 550.01782,612.49894 C 549.14965,611.53515 547.28703,612.19756 546.0071,611.98443 C 539.44622,611.99239 532.88319,611.91086 526.3237,612.04489 C 525.19469,612.06554 525.73827,613.10278 526.66959,612.71828 C 534.44206,612.76716 542.2147,612.7187 549.98724,612.71066 C 549.99743,612.64009 550.00763,612.56951 550.01782,612.49894 z M 549.51475,606.34508 C 549.52334,604.58368 549.53193,602.82227 549.54053,601.06087 C 541.74167,601.05445 533.94266,601.07874 526.14394,601.03631 C 526.0249,604.53932 526.00328,608.05111 526.06525,611.5559 C 529.75279,611.75811 533.46208,611.62367 537.1586,611.65554 C 541.26872,611.64686 545.37884,611.63799 549.48897,611.62923 C 549.49756,609.86784 549.50615,608.10646 549.51475,606.34508 z M 549.6683,600.11444 C 550.61384,599.29704 548.08244,599.56653 547.56439,599.50506 C 540.53502,599.49582 533.50413,599.43846 526.47561,599.54666 C 525.26717,599.40317 525.57348,600.64882 526.6439,600.23433 C 534.05724,600.27503 541.47228,600.32271 548.88495,600.21584 C 549.14583,600.19323 549.419,600.20893 549.6683,600.11444 z M 525.12246,612.17577 C 525.39285,611.66233 525.19742,612.49864 525.12246,612.17577 z M 550.29267,612.10042 C 550.22914,611.71217 550.58001,612.51955 550.29267,612.10042 z M 525.37802,611.74786 C 525.75458,611.25773 525.25178,612.1981 525.37802,611.74786 z M 550.08283,611.77015 C 549.92234,611.23164 550.43105,612.1613 550.08283,611.77015 z"
           id="path3072"
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
      </g>
      <use
         height="1052.3622"
         width="744.09448"
         transform="translate(27.5,0)"
         id="use3853"
         xlink:href="#g3845"
         y="0"
         x="0" />
      <use
         height="1052.3622"
         width="744.09448"
         transform="translate(55.215611,0.3278927)"
         id="use3855"
         xlink:href="#g3845"
         y="0"
         x="0" />
    </g>
    <g
       id="g7906"
       transform="matrix(0.7326526,0,0,0.7326526,129.98931,153.87822)">
      <rect
         y="605.87476"
         x="448.50772"
         height="41.416256"
         width="98.994949"
         id="rect7902"
         style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.14644223;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <text
         id="text3876"
         y="632.20807"
         x="463.64862"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="632.20807"
           x="463.64862"
           id="tspan3878"
           sodipodi:role="line">Jet Fuel</tspan></text>
    </g>
    <g
       id="g3880"
       transform="translate(23.514628,160.13061)">
      <g
         transform="translate(48.487322,31.819805)"
         id="g3882"
         style="fill:#d45500">
        <path
           style="fill:#d45500"
           d="M 537.55485,624.57034 L 531.86477,624.57182 C 528.73523,624.57263 526.12378,624.60525 526.06155,624.64431 C 525.99933,624.68337 525.91708,624.88007 525.87879,625.08143 C 525.8103,625.44158 525.8026,625.44707 525.40582,625.41848 L 525.00248,625.38942 L 524.97378,624.74692 C 524.94582,624.12095 524.95274,624.09995 525.24241,623.93115 L 525.53975,623.75789 L 525.53975,618.46987 C 525.53975,613.32775 525.53436,613.17508 525.34438,612.93683 C 525.08254,612.60846 525.08254,611.89168 525.34438,611.56147 C 525.52858,611.32916 525.5354,611.13475 525.5354,606.11701 C 525.5354,601.09928 525.52858,600.90486 525.34438,600.67256 C 525.08254,600.34235 525.08254,599.62556 525.34438,599.29719 C 525.53436,599.05895 525.53975,598.90627 525.53975,593.76416 L 525.53975,588.47613 L 525.24669,588.30536 C 525.08099,588.2088 524.95364,588.05321 524.95364,587.94732 L 524.94185,587.56732 L 524.97217,587.20596 C 525.00173,586.8536 525.01222,586.8446 525.39322,586.8446 C 525.76074,586.8446 525.78574,586.86279 525.81402,587.1506 C 525.83056,587.3189 525.90253,587.50445 525.97397,587.56293 C 526.05862,587.63224 526.57536,587.6599 527.458,587.64238 L 528.81215,587.6155 L 528.84201,587.26171 C 528.86985,586.93185 528.89794,586.90357 529.25717,586.8437 C 529.54874,586.7951 529.64247,586.73466 529.64247,586.59523 C 529.64247,586.44451 529.71358,586.41097 530.0332,586.41097 L 530.42394,586.41097 L 530.6193,586.41097 L 530.9612,586.41097 C 531.23111,586.41097 531.30309,586.44925 531.30309,586.59276 C 531.30309,586.73398 531.39992,586.78886 531.73708,586.83874 C 532.15318,586.90029 532.1723,586.91762 532.20108,587.25922 L 532.23109,587.6155 L 535.08834,587.64105 L 537.94559,587.66659 L 538.14096,587.66368 L 541.61732,587.66368 L 545.09368,587.66368 L 545.02767,587.27823 L 544.96165,586.89279 L 545.5075,586.89279 L 546.05335,586.89279 L 546.24871,586.89279 L 546.79846,586.89279 L 547.34821,586.89279 L 547.28572,587.27823 L 547.22324,587.66368 L 548.23054,587.66368 C 549.3514,587.66368 549.47228,587.60967 549.47228,587.10888 C 549.47228,586.78784 549.47549,586.78557 549.88744,586.81497 L 550.30259,586.8446 L 550.33102,587.5299 C 550.35934,588.21261 550.35832,588.21566 550.06239,588.33658 L 549.76533,588.45796 L 549.76533,593.75507 C 549.76533,598.90627 549.77071,599.05893 549.9607,599.29719 C 549.98066,599.9286 550.40157,599.76954 549.9607,600.69885 C 549.77568,600.93088 549.76533,601.08977 549.76533,603.69907 L 549.76533,606.45428 L 549.76533,606.647 L 549.7675,608.98378 C 549.76952,611.15464 549.78324,611.33767 549.9607,611.56147 C 550.22253,611.89168 550.22253,612.60846 549.9607,612.93683 C 549.77072,613.17508 549.76533,613.32775 549.76533,618.46987 L 549.76533,623.75789 L 550.06266,623.93115 C 550.35234,624.09995 550.35925,624.12095 550.33129,624.74692 L 550.30259,625.38942 L 549.8583,625.41799 L 549.41402,625.44657 L 549.32104,625.03255 L 549.22807,624.61852 L 543.48915,624.59366 L 537.75022,624.5688 L 537.55485,624.57034 z M 549.76533,624.38793 C 549.76533,624.3406 549.69318,624.27456 549.60499,624.24118 C 549.47092,624.19043 549.46488,624.20453 549.56811,624.32723 C 549.70878,624.49444 549.76533,624.51184 549.76533,624.38793 z M 549.27708,590.57863 L 549.27725,588.19367 L 548.00719,588.22312 C 546.78112,588.25155 546.73713,588.24571 546.73713,588.05449 C 546.73713,587.87663 546.67729,587.85641 546.15103,587.85641 C 545.6294,587.85641 545.56493,587.87768 545.56493,588.04978 C 545.56493,588.24177 545.51584,588.24297 538.6538,588.21841 L 531.74267,588.19367 L 531.71176,587.92868 L 531.68085,587.66368 L 530.52162,587.66368 L 529.36239,587.66368 L 529.33148,587.92868 L 529.30057,588.19367 L 527.6643,588.19367 L 526.02802,588.19367 L 526.02809,590.57863 L 526.02816,592.96359 L 537.65254,592.96359 L 549.27691,592.96359 L 549.27708,590.57863 z"
           id="path3884"
           sodipodi:nodetypes="ccssccccccsssssccccccssscccssccccsscccccccccccccccccsccccccccccccsscccccccccccccssccccsssccccccccccccccc" />
        <path
           style="fill:#d45500;stroke:#000000;stroke-width:0.20404322;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 526.24362,624.50877 C 525.63459,624.40268 526.03282,623.63259 525.91969,623.19959 C 525.88743,619.90325 526.00272,616.59995 525.83374,613.30925 C 525.33572,612.0778 526.23342,610.59652 525.91712,609.1555 C 525.88403,606.36661 526.00407,603.56946 525.83365,600.78604 C 525.31216,599.62202 526.25417,598.26688 525.90541,596.90219 C 525.91034,595.58039 525.84732,594.2537 525.9431,592.93491 C 526.06823,594.98472 526.00057,597.04163 526.01939,599.09472 C 533.85919,599.09472 541.69899,599.09472 549.53878,599.09472 C 549.55762,597.04163 549.49027,594.98474 549.61508,592.9349 C 549.72385,595.05527 549.62917,597.18273 549.63069,599.30612 C 550.82172,599.9932 549.19555,601.11566 549.64984,602.14827 C 549.62871,605.36083 549.64232,608.57353 549.63847,611.78615 C 550.67249,612.34332 549.62728,613.04381 549.63847,613.75814 C 549.63847,617.26043 549.63847,620.76271 549.63847,624.26499 C 548.6202,624.89473 547.31862,624.51846 546.18118,624.64248 C 539.65481,624.62924 533.12553,624.72135 526.60104,624.56502 L 526.43063,624.5483 L 526.24361,624.50875 L 526.24362,624.50877 z M 549.33049,624.28666 C 549.77118,623.98761 549.4366,623.32128 549.53646,622.86078 C 549.52064,619.77233 549.5048,616.68389 549.48897,613.59544 C 541.68238,613.59544 533.8758,613.59544 526.0692,613.59544 C 526.07837,617.08246 525.96899,620.57277 526.09214,624.0572 C 527.04604,624.80276 528.77939,624.27451 530.04962,624.44877 C 536.34541,624.43312 542.64433,624.53184 548.9381,624.38172 L 549.21354,624.34045 L 549.33051,624.28665 L 549.33049,624.28666 z M 550.01782,612.49894 C 549.14965,611.53515 547.28703,612.19756 546.0071,611.98443 C 539.44622,611.99239 532.88319,611.91086 526.3237,612.04489 C 525.19469,612.06554 525.73827,613.10278 526.66959,612.71828 C 534.44206,612.76716 542.2147,612.7187 549.98724,612.71066 C 549.99743,612.64009 550.00763,612.56951 550.01782,612.49894 z M 549.51475,606.34508 C 549.52334,604.58368 549.53193,602.82227 549.54053,601.06087 C 541.74167,601.05445 533.94266,601.07874 526.14394,601.03631 C 526.0249,604.53932 526.00328,608.05111 526.06525,611.5559 C 529.75279,611.75811 533.46208,611.62367 537.1586,611.65554 C 541.26872,611.64686 545.37884,611.63799 549.48897,611.62923 C 549.49756,609.86784 549.50615,608.10646 549.51475,606.34508 z M 549.6683,600.11444 C 550.61384,599.29704 548.08244,599.56653 547.56439,599.50506 C 540.53502,599.49582 533.50413,599.43846 526.47561,599.54666 C 525.26717,599.40317 525.57348,600.64882 526.6439,600.23433 C 534.05724,600.27503 541.47228,600.32271 548.88495,600.21584 C 549.14583,600.19323 549.419,600.20893 549.6683,600.11444 z M 525.12246,612.17577 C 525.39285,611.66233 525.19742,612.49864 525.12246,612.17577 z M 550.29267,612.10042 C 550.22914,611.71217 550.58001,612.51955 550.29267,612.10042 z M 525.37802,611.74786 C 525.75458,611.25773 525.25178,612.1981 525.37802,611.74786 z M 550.08283,611.77015 C 549.92234,611.23164 550.43105,612.1613 550.08283,611.77015 z"
           id="path3886"
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
      </g>
      <use
         height="1052.3622"
         width="744.09448"
         transform="translate(27.5,0)"
         id="use3888"
         xlink:href="#g3845"
         y="0"
         x="0" />
      <g
         id="use3892"
         transform="translate(75.987322,31.819805)"
         style="fill:#d45500">
        <path
           sodipodi:nodetypes="ccssccccccsssssccccccssscccssccccsscccccccccccccccccsccccccccccccsscccccccccccccssccccsssccccccccccccccc"
           id="path3898"
           d="M 537.55485,624.57034 L 531.86477,624.57182 C 528.73523,624.57263 526.12378,624.60525 526.06155,624.64431 C 525.99933,624.68337 525.91708,624.88007 525.87879,625.08143 C 525.8103,625.44158 525.8026,625.44707 525.40582,625.41848 L 525.00248,625.38942 L 524.97378,624.74692 C 524.94582,624.12095 524.95274,624.09995 525.24241,623.93115 L 525.53975,623.75789 L 525.53975,618.46987 C 525.53975,613.32775 525.53436,613.17508 525.34438,612.93683 C 525.08254,612.60846 525.08254,611.89168 525.34438,611.56147 C 525.52858,611.32916 525.5354,611.13475 525.5354,606.11701 C 525.5354,601.09928 525.52858,600.90486 525.34438,600.67256 C 525.08254,600.34235 525.08254,599.62556 525.34438,599.29719 C 525.53436,599.05895 525.53975,598.90627 525.53975,593.76416 L 525.53975,588.47613 L 525.24669,588.30536 C 525.08099,588.2088 524.95364,588.05321 524.95364,587.94732 L 524.94185,587.56732 L 524.97217,587.20596 C 525.00173,586.8536 525.01222,586.8446 525.39322,586.8446 C 525.76074,586.8446 525.78574,586.86279 525.81402,587.1506 C 525.83056,587.3189 525.90253,587.50445 525.97397,587.56293 C 526.05862,587.63224 526.57536,587.6599 527.458,587.64238 L 528.81215,587.6155 L 528.84201,587.26171 C 528.86985,586.93185 528.89794,586.90357 529.25717,586.8437 C 529.54874,586.7951 529.64247,586.73466 529.64247,586.59523 C 529.64247,586.44451 529.71358,586.41097 530.0332,586.41097 L 530.42394,586.41097 L 530.6193,586.41097 L 530.9612,586.41097 C 531.23111,586.41097 531.30309,586.44925 531.30309,586.59276 C 531.30309,586.73398 531.39992,586.78886 531.73708,586.83874 C 532.15318,586.90029 532.1723,586.91762 532.20108,587.25922 L 532.23109,587.6155 L 535.08834,587.64105 L 537.94559,587.66659 L 538.14096,587.66368 L 541.61732,587.66368 L 545.09368,587.66368 L 545.02767,587.27823 L 544.96165,586.89279 L 545.5075,586.89279 L 546.05335,586.89279 L 546.24871,586.89279 L 546.79846,586.89279 L 547.34821,586.89279 L 547.28572,587.27823 L 547.22324,587.66368 L 548.23054,587.66368 C 549.3514,587.66368 549.47228,587.60967 549.47228,587.10888 C 549.47228,586.78784 549.47549,586.78557 549.88744,586.81497 L 550.30259,586.8446 L 550.33102,587.5299 C 550.35934,588.21261 550.35832,588.21566 550.06239,588.33658 L 549.76533,588.45796 L 549.76533,593.75507 C 549.76533,598.90627 549.77071,599.05893 549.9607,599.29719 C 549.98066,599.9286 550.40157,599.76954 549.9607,600.69885 C 549.77568,600.93088 549.76533,601.08977 549.76533,603.69907 L 549.76533,606.45428 L 549.76533,606.647 L 549.7675,608.98378 C 549.76952,611.15464 549.78324,611.33767 549.9607,611.56147 C 550.22253,611.89168 550.22253,612.60846 549.9607,612.93683 C 549.77072,613.17508 549.76533,613.32775 549.76533,618.46987 L 549.76533,623.75789 L 550.06266,623.93115 C 550.35234,624.09995 550.35925,624.12095 550.33129,624.74692 L 550.30259,625.38942 L 549.8583,625.41799 L 549.41402,625.44657 L 549.32104,625.03255 L 549.22807,624.61852 L 543.48915,624.59366 L 537.75022,624.5688 L 537.55485,624.57034 z M 549.76533,624.38793 C 549.76533,624.3406 549.69318,624.27456 549.60499,624.24118 C 549.47092,624.19043 549.46488,624.20453 549.56811,624.32723 C 549.70878,624.49444 549.76533,624.51184 549.76533,624.38793 z M 549.27708,590.57863 L 549.27725,588.19367 L 548.00719,588.22312 C 546.78112,588.25155 546.73713,588.24571 546.73713,588.05449 C 546.73713,587.87663 546.67729,587.85641 546.15103,587.85641 C 545.6294,587.85641 545.56493,587.87768 545.56493,588.04978 C 545.56493,588.24177 545.51584,588.24297 538.6538,588.21841 L 531.74267,588.19367 L 531.71176,587.92868 L 531.68085,587.66368 L 530.52162,587.66368 L 529.36239,587.66368 L 529.33148,587.92868 L 529.30057,588.19367 L 527.6643,588.19367 L 526.02802,588.19367 L 526.02809,590.57863 L 526.02816,592.96359 L 537.65254,592.96359 L 549.27691,592.96359 L 549.27708,590.57863 z"
           style="fill:#d45500" />
        <path
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
           id="path3900"
           d="M 526.24362,624.50877 C 525.63459,624.40268 526.03282,623.63259 525.91969,623.19959 C 525.88743,619.90325 526.00272,616.59995 525.83374,613.30925 C 525.33572,612.0778 526.23342,610.59652 525.91712,609.1555 C 525.88403,606.36661 526.00407,603.56946 525.83365,600.78604 C 525.31216,599.62202 526.25417,598.26688 525.90541,596.90219 C 525.91034,595.58039 525.84732,594.2537 525.9431,592.93491 C 526.06823,594.98472 526.00057,597.04163 526.01939,599.09472 C 533.85919,599.09472 541.69899,599.09472 549.53878,599.09472 C 549.55762,597.04163 549.49027,594.98474 549.61508,592.9349 C 549.72385,595.05527 549.62917,597.18273 549.63069,599.30612 C 550.82172,599.9932 549.19555,601.11566 549.64984,602.14827 C 549.62871,605.36083 549.64232,608.57353 549.63847,611.78615 C 550.67249,612.34332 549.62728,613.04381 549.63847,613.75814 C 549.63847,617.26043 549.63847,620.76271 549.63847,624.26499 C 548.6202,624.89473 547.31862,624.51846 546.18118,624.64248 C 539.65481,624.62924 533.12553,624.72135 526.60104,624.56502 L 526.43063,624.5483 L 526.24361,624.50875 L 526.24362,624.50877 z M 549.33049,624.28666 C 549.77118,623.98761 549.4366,623.32128 549.53646,622.86078 C 549.52064,619.77233 549.5048,616.68389 549.48897,613.59544 C 541.68238,613.59544 533.8758,613.59544 526.0692,613.59544 C 526.07837,617.08246 525.96899,620.57277 526.09214,624.0572 C 527.04604,624.80276 528.77939,624.27451 530.04962,624.44877 C 536.34541,624.43312 542.64433,624.53184 548.9381,624.38172 L 549.21354,624.34045 L 549.33051,624.28665 L 549.33049,624.28666 z M 550.01782,612.49894 C 549.14965,611.53515 547.28703,612.19756 546.0071,611.98443 C 539.44622,611.99239 532.88319,611.91086 526.3237,612.04489 C 525.19469,612.06554 525.73827,613.10278 526.66959,612.71828 C 534.44206,612.76716 542.2147,612.7187 549.98724,612.71066 C 549.99743,612.64009 550.00763,612.56951 550.01782,612.49894 z M 549.51475,606.34508 C 549.52334,604.58368 549.53193,602.82227 549.54053,601.06087 C 541.74167,601.05445 533.94266,601.07874 526.14394,601.03631 C 526.0249,604.53932 526.00328,608.05111 526.06525,611.5559 C 529.75279,611.75811 533.46208,611.62367 537.1586,611.65554 C 541.26872,611.64686 545.37884,611.63799 549.48897,611.62923 C 549.49756,609.86784 549.50615,608.10646 549.51475,606.34508 z M 549.6683,600.11444 C 550.61384,599.29704 548.08244,599.56653 547.56439,599.50506 C 540.53502,599.49582 533.50413,599.43846 526.47561,599.54666 C 525.26717,599.40317 525.57348,600.64882 526.6439,600.23433 C 534.05724,600.27503 541.47228,600.32271 548.88495,600.21584 C 549.14583,600.19323 549.419,600.20893 549.6683,600.11444 z M 525.12246,612.17577 C 525.39285,611.66233 525.19742,612.49864 525.12246,612.17577 z M 550.29267,612.10042 C 550.22914,611.71217 550.58001,612.51955 550.29267,612.10042 z M 525.37802,611.74786 C 525.75458,611.25773 525.25178,612.1981 525.37802,611.74786 z M 550.08283,611.77015 C 549.92234,611.23164 550.43105,612.1613 550.08283,611.77015 z"
           style="fill:#d45500;stroke:#000000;stroke-width:0.20404322;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
    </g>
    <g
       id="g3949"
       transform="matrix(0.6998883,0,0,0.6998883,-82.648861,164.37975)">
      <rect
         y="573.79077"
         x="215"
         height="50"
         width="102.14286"
         id="rect3938"
         style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <text
         id="text3920"
         y="591.64795"
         x="220"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="591.64795"
           x="220"
           id="tspan3922"
           sodipodi:role="line">Air</tspan><tspan
           id="tspan3930"
           y="616.64795"
           x="220"
           sodipodi:role="line">Transport</tspan></text>
    </g>
    <g
       id="g3955"
       transform="matrix(0.6869664,0,0,0.6869664,-75.120337,169.56455)">
      <rect
         y="703.79077"
         x="209.64285"
         height="50"
         width="102.14286"
         id="rect3940"
         style="opacity:1;fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <text
         id="text3924"
         y="722.36218"
         x="215.71429"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="722.36218"
           x="215.71429"
           id="tspan3926"
           sodipodi:role="line">Ground</tspan><tspan
           id="tspan3928"
           y="747.36218"
           x="215.71429"
           sodipodi:role="line">Transport</tspan></text>
    </g>
    <g
       id="g3944"
       transform="matrix(0.7322112,0,0,0.7322112,-8.9446933,59.976219)">
      <rect
         y="629.50507"
         x="30.714285"
         height="37.142857"
         width="147.85715"
         id="rect3942"
         style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <text
         id="text3932"
         y="655.93359"
         x="32.857143"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="655.93359"
           x="32.857143"
           id="tspan3934"
           sodipodi:role="line">Transportation</tspan></text>
    </g>
    <g
       transform="matrix(0.2809488,0,0,0.2809488,509.58431,407.36433)"
       id="g4931"
       inkscape:label="Layer 1">
      <g
         transform="matrix(2.0252654,0,0,2.0252654,-650.19567,-24.834567)"
         id="g5594">
        <path
           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.14691848;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 591.06409,243.31497 C 583.381,244.65968 573.78694,246.09174 565.375,248.96875 C 547.6116,253.90889 530.03079,259.53443 512.25,264.4375 C 495.17454,268.93893 478.35956,274.41427 461.09375,278.15625 C 450.52335,279.97848 440.22431,282.89739 430,286.09375 C 422.76838,288.25738 416.06166,290.58777 408.5625,293.09375 C 412.952,293.83416 417.20682,295.50863 421.46875,296.75746 C 424.96324,298.0069 428.33502,299.311 431.65625,300.96875 C 435.01867,302.18282 437.26393,303.06725 440.15625,303.8125 C 442.42225,304.21235 446.79192,305.41717 448.96875,306.15625 C 450.01756,306.57449 450.52458,306.66364 451.25411,306.93069 C 458.85602,304.18451 467.4015,301.37483 475.125,299 C 488.50877,293.77122 503.10228,288.34048 517.73058,282.35701 C 529.6957,277.17597 542.73826,271.53017 554.8125,267.21875 C 564.89,264.54827 572.24959,260.98805 582.02178,257.10038 C 589.38897,254.42818 596.75636,251.48552 603.84375,248.3125 C 602.02913,247.74257 600.23198,247.23073 598.24498,246.51335 C 596.5221,245.80116 594.30296,244.86668 592.77623,244.12626 C 592.40417,243.9884 591.32766,243.48495 591.06409,243.31497 z"
           id="path5528"
           sodipodi:nodetypes="ccccccccccccccccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 417.60788,292.4367 L 432.79659,287.3738 L 436.71626,288.84367 L 422.99742,294.39653 L 417.60788,292.4367 z"
           id="path5544" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 425.36555,295.94807 L 440.55426,290.88517 L 444.47393,292.35504 L 430.75509,297.9079 L 425.36555,295.94807 z"
           id="path5546" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 434.51144,299.37778 L 449.70015,294.31488 L 453.61982,295.78475 L 439.90098,301.33761 L 434.51144,299.37778 z"
           id="path5548" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 443.49401,303.13413 L 458.68272,298.07123 L 462.60239,299.5411 L 448.88355,305.09396 L 443.49401,303.13413 z"
           id="path5550" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 585.99775,245.01535 L 590.91217,244.05087 L 592.59765,244.74066 L 587.62236,245.85808 L 585.99775,245.01535 z"
           id="path5552"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 588.99258,246.6306 L 593.32958,245.26193 L 595.18828,246.06719 L 590.38623,247.53107 L 588.99258,246.6306 z"
           id="path5554"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 591.34757,248.08042 L 596.37747,246.42302 L 598.06294,247.05507 L 592.85669,248.92315 L 591.34757,248.08042 z"
           id="path5556"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 594.09583,249.72064 L 598.89478,247.65905 L 600.58025,248.40658 L 595.95141,250.27466 L 594.09583,249.72064 z"
           id="path5558"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 450.92504,292.60001 L 464.07226,288.43537 L 460.72421,287.53711 L 447.90363,291.45678 L 450.92504,292.60001 z"
           id="path5560"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 466.75883,287.34407 L 479.49775,283.99603 L 476.1497,283.09777 L 463.90074,286.52748 L 466.75883,287.34407 z"
           id="path5562"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 481.57306,282.80906 L 493.41373,279.70599 L 490.06568,278.80773 L 478.46999,281.99247 L 481.57306,282.80906 z"
           id="path5564"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 494.71447,279.08653 L 506.39182,275.16687 L 504.02368,274.51359 L 492.18302,278.10662 L 494.71447,279.08653 z"
           id="path5566"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 507.84188,274.71654 L 517.47773,271.53181 L 515.5179,271.04185 L 505.55541,273.9816 L 507.84188,274.71654 z"
           id="path5568"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 518.54753,271.07365 L 526.46853,268.70552 L 524.1004,268.5422 L 516.5877,270.58369 L 518.54753,271.07365 z"
           id="path5570"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 527.77806,268.19475 L 535.6174,265.82662 L 533.90255,265.33666 L 525.73657,268.03143 L 527.77806,268.19475 z"
           id="path5572"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 536.65974,265.28903 L 543.4375,263.3292 L 541.96763,262.83924 L 535.18987,264.96239 L 536.65974,265.28903 z"
           id="path5574"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 544.42544,262.83504 L 551.77482,260.79355 L 550.05997,260.30359 L 542.95557,262.42674 L 544.42544,262.83504 z"
           id="path5578"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 553.28552,260.22193 L 560.14494,258.09878 L 558.43009,257.60882 L 551.32569,259.89529 L 553.28552,260.22193 z"
           id="path5580"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 561.08402,257.69048 L 566.75938,255.97562 L 565.16702,255.64898 L 559.45083,257.36384 L 561.08402,257.69048 z"
           id="path5582"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 567.82096,255.5265 L 573.29217,253.97497 L 571.57732,253.48501 L 565.77947,255.36318 L 567.82096,255.5265 z"
           id="path5584"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 573.57796,253.64832 L 578.39589,252.13762 L 577.29349,251.68849 L 572.02643,253.24002 L 573.57796,253.64832 z"
           id="path5586"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 579.27373,251.72932 L 583.52004,250.62692 L 582.41764,250.17779 L 577.7222,251.32102 L 579.27373,251.72932 z"
           id="path5588"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 584.21414,250.21861 L 587.43971,249.48368 L 586.33731,249.03455 L 582.66261,249.81031 L 584.21414,250.21861 z"
           id="path5590"
           sodipodi:nodetypes="ccccc" />
        <path
           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
           d="M 588.05215,249.01413 L 591.27772,248.2792 L 590.17532,247.83007 L 586.50062,248.60583 L 588.05215,249.01413 z"
           id="path5592"
           sodipodi:nodetypes="ccccc" />
      </g>
    </g>
    <g
       transform="matrix(-0.4319966,0,0,0.4319966,445.85622,615.16046)"
       id="g5011"
       inkscape:label="Vrstva 1">
      <path
         d="M 229.51519,196.326 C 229.4281,187.91511 230.1524,182.20886 232.4386,181.70896 L 244.28611,180.17032 C 252.66774,176.30003 261.40281,171.48723 269.05815,169.55373 C 274.93731,168.38304 281.15776,167.66738 287.82952,167.5535 C 301.25501,167.76759 316.18707,166.85178 325.67998,170.01532 C 334.72154,174.19114 343.62862,178.63592 352.14452,183.86305 C 363.6226,184.64626 387.0517,187.83915 390.45659,191.55624 C 392.15438,193.8359 393.50587,196.28871 394.14931,199.09555 C 395.63708,199.71059 395.53206,201.91842 394.91863,204.63465 L 394.76477,210.17374 L 389.07181,212.48169 L 377.83976,213.86646 L 374.91635,214.63578 C 370.67851,224.57791 354.94286,223.34528 350.6059,214.17419 L 347.06703,214.78965 L 283.98292,214.17419 L 283.2136,215.25123 L 278.28997,215.09737 C 274.98511,225.24615 256.11858,226.17532 253.2102,213.7126 L 250.74838,213.7126 L 243.36292,212.63555 L 232.13088,211.09692 C 229.06899,209.28004 227.79251,207.90953 227.51497,206.78873 L 228.28428,205.71169 L 227.66883,199.55714 C 228.08299,197.47362 228.46288,196.80466 229.51519,196.326 z M 297.68492,169.95662 C 290.91403,169.96765 284.2943,170.21643 278.33698,171.52918 L 279.72518,183.30713 L 300.63482,184.03376 C 301.49383,183.85202 302.38742,183.71129 302.21823,182.24429 L 300.03833,169.95662 C 299.25073,169.95278 298.46932,169.95534 297.68492,169.95662 z M 277.33922,171.75693 C 273.33071,172.73488 269.64048,174.2259 266.43975,176.4963 C 265.17125,177.34613 264.70702,178.35403 264.75873,179.4679 C 265.34656,182.01244 266.84804,183.03561 269.02092,182.93839 L 278.72741,183.27459 L 277.33922,171.75693 z M 304.60042,170.0568 L 309.06078,182.74404 C 309.62332,183.66176 310.4409,184.34995 311.93522,184.42907 L 333.64231,185.32114 C 330.54799,183.21376 333.09339,179.31933 336.2194,180.16694 C 330.35379,175.28232 323.98493,172.18197 317.08941,170.94887 C 313.04459,170.29699 308.82923,170.15671 304.60042,170.0568 z M 232.72288,182.64294 C 230.93943,183.28084 230.50692,187.81569 230.43438,193.38893 L 236.25513,193.33918 C 236.4787,191.39064 236.52027,189.4421 236.28,187.49356 C 235.70728,184.08488 234.11268,183.66325 232.72288,182.64294 z M 271.36656,187.8631 L 276.87696,187.8631 C 277.3149,187.8631 277.66746,188.21566 277.66746,188.65359 C 277.66746,189.09153 277.3149,189.44408 276.87696,189.44408 L 271.36656,189.44408 C 270.92862,189.44408 270.57606,189.09153 270.57606,188.65359 C 270.57606,188.21566 270.92862,187.8631 271.36656,187.8631 z M 309.36769,188.77222 L 314.8781,188.77222 C 315.31604,188.77222 315.66859,189.12478 315.66859,189.56271 C 315.66859,190.00064 315.31604,190.3532 314.8781,190.3532 L 309.36769,190.3532 C 308.92975,190.3532 308.5772,190.00064 308.5772,189.56271 C 308.5772,189.12478 308.92975,188.77222 309.36769,188.77222 z M 275.11693,209.98843 C 275.11693,215.0273 271.02743,219.11681 265.98855,219.11681 C 260.9497,219.11681 256.86019,215.0273 256.86019,209.98843 C 256.86019,204.94957 260.9497,200.86005 265.98855,200.86005 C 271.02743,200.86005 275.11693,204.94957 275.11693,209.98843 z M 372.55659,208.83131 C 372.55659,213.87018 368.46707,217.95969 363.42821,217.95969 C 358.38934,217.95969 354.29983,213.87018 354.29983,208.83131 C 354.29983,203.79245 358.38934,199.70293 363.42821,199.70293 C 368.46707,199.70293 372.55659,203.79245 372.55659,208.83131 z M 380.18502,197.80327 L 391.97932,197.87937 C 391.06953,195.91607 389.89572,194.17979 388.07326,192.75582 L 383.50772,193.11092 C 382.67006,193.23742 382.31646,193.60595 382.01123,193.99866 L 380.18502,197.80327 z"
         style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
         id="path2220" />
    </g>
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 434.0515,559.85844 L 362.79168,564.44845"
       id="path5018"
       inkscape:connector-type="polyline"
       inkscape:connection-end="#path1904"
       inkscape:connection-start="#g7846" />
    <g
       id="g7846"
       transform="matrix(0.738139,0,0,0.738139,80.853298,151.24556)">
      <rect
         y="535.2193"
         x="478.57144"
         height="30.714285"
         width="92.85714"
         id="rect7844"
         style="opacity:1;fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.14644223;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <text
         id="text5020"
         y="555.79791"
         x="487.18582"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="555.79791"
           x="487.18582"
           id="tspan5022"
           sodipodi:role="line">Runway</tspan></text>
    </g>
    <g
       transform="matrix(0.127885,0,0,0.201938,592.47573,670.78507)"
       id="g8190">
      <g
         id="g5161">
	
		<linearGradient
   x1="100.7996"
   y1="430.92969"
   x2="109.1761"
   y2="430.92969"
   id="rect3059_1_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(4.2532,0,0,-3.6645,-99.2402,1774.7)">
		<stop
   style="stop-color: rgb(190, 194, 192); stop-opacity: 1;"
   offset="0"
   id="stop8131" />

		<stop
   style="stop-color: rgb(86, 93, 89); stop-opacity: 1;"
   offset="1"
   id="stop8133" />

	</linearGradient>

	
		<rect
   width="30.311001"
   height="116.923"
   x="332.13501"
   y="137.07899"
   style="fill:url(#linearGradient7853);stroke:#8b8b8b;stroke-width:5.31650019;stroke-linecap:round;stroke-linejoin:round"
   id="rect3059" />

	
		<linearGradient
   x1="115.8259"
   y1="454.40631"
   x2="123.0828"
   y2="454.40631"
   id="rect3057_1_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(4.2532,0,0,-4.2532,-106.139,2068.99)">
		<stop
   style="stop-color: rgb(190, 194, 192); stop-opacity: 1;"
   offset="0"
   id="stop8137" />

		<stop
   style="stop-color: rgb(86, 93, 89); stop-opacity: 1;"
   offset="1"
   id="stop8139" />

	</linearGradient>

	
		<rect
   width="25.551001"
   height="135.705"
   x="389.14099"
   y="68.477997"
   style="fill:url(#linearGradient7855);stroke:#8b8b8b;stroke-width:5.31650019;stroke-linecap:round;stroke-linejoin:round"
   id="rect3057" />

	
		<linearGradient
   x1="130.05051"
   y1="462.78909"
   x2="136.4381"
   y2="462.78909"
   id="rect3051_1_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(4.2532,0,0,-4.2532,-101.264,2072.24)">
		<stop
   style="stop-color: rgb(190, 194, 192); stop-opacity: 1;"
   offset="0"
   id="stop8143" />

		<stop
   style="stop-color: rgb(86, 93, 89); stop-opacity: 1;"
   offset="1"
   id="stop8145" />

	</linearGradient>

	
		<rect
   width="21.851"
   height="135.705"
   x="454.522"
   y="36.078999"
   style="fill:url(#linearGradient7857);stroke:#8b8b8b;stroke-width:5.31650019;stroke-linecap:round;stroke-linejoin:round"
   id="rect3051" />

	
		<linearGradient
   x1="115.8323"
   y1="457.33499"
   x2="104.7427"
   y2="470.53329"
   id="path2094_1_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(4.2532,0,0,-4.2532,-99.6348,2078.75)">
		<stop
   style="stop-color: rgb(190, 194, 192); stop-opacity: 1;"
   offset="0"
   id="stop8149" />

		<stop
   style="stop-color: rgb(86, 93, 89); stop-opacity: 1;"
   offset="1"
   id="stop8151" />

	</linearGradient>

	<path
   d="M 489.642,14.259 L 489.742,54.919 C 489.742,54.919 303.42,142.745 310.738,244.395 C 317.834,342.944 291.221,135.426 291.221,135.426 L 489.642,14.259 z"
   style="fill:url(#linearGradient7859);stroke:#666666;stroke-width:4.25320005;stroke-linejoin:round"
   id="path2094" />

	<path
   d="M 344.01,14.544 C 132.333,77.475 25.63,258.77 12.385,315.455 L 328.847,315.455 C 284.559,165.002 287.413,148.434 487.543,14.544 L 344.01,14.544 L 344.01,14.544 z"
   style="stroke:#727272;stroke-width:8.50629997;stroke-linecap:round;stroke-linejoin:round"
   id="rect1307" />

</g>
      <g
         id="Layer_3">
	<path
   d=""
   id="path8156" />

	<g
   id="g8158">
		<path
   d="M 204.997,211.529 C 201.464,222.028 198.684,232.563 196.5,242.5 L 163.993,242.839 C 166.871,232.742 170.534,221.925 175.186,210.964 L 204.997,211.529 z"
   style="fill:#ffffff"
   id="path8160" />

		<path
   d="M 192.809,263.547 C 189.135,285.622 188.499,301.5 188.499,301.5 L 153.499,301.5 C 153.499,301.5 154.343,286.312 159.089,264.48 L 192.809,263.547 z"
   style="fill:#ffffff"
   id="path8162" />

		<path
   d="M 183.644,189.691 L 211.5,190.5 C 214.76,183.195 218.462,176.119 222.656,169.498 L 196.212,169.498 C 191.552,176.054 187.372,182.829 183.644,189.691 z"
   style="fill:#ffffff"
   id="path8164" />

		<path
   d="M 335.3,55.5 L 346.5,55.5 L 346.5,57.597 C 350.229,54.898 353.991,52.173 357.679,49.5 L 344.104,49.5 C 341.261,51.431 338.326,53.431 335.3,55.5 z"
   style="fill:#ffffff"
   id="path8166" />

		<path
   d="M 314.98,69.5 L 329.5,69.5 L 329.5,69.88 C 332.319,67.847 335.286,65.705 338.338,63.5 L 323.651,63.5 C 320.811,65.458 317.919,67.46 314.98,69.5 z"
   style="fill:#ffffff"
   id="path8168" />

		<path
   d="M 280.906,93.5 L 296.192,93.5 C 301.198,89.887 305.687,86.893 310.496,83.498 C 311.677,82.665 313.1,81.652 314.716,80.5 L 299.237,80.5 C 293.219,84.733 287.086,89.079 280.906,93.5 z"
   style="fill:#ffffff"
   id="path8170" />

		<path
   d="M 360.5,38.424 C 358.562,39.726 356.542,41.085 354.443,42.5 L 366.5,42.5 L 366.5,43.104 C 368.689,41.516 370.813,39.975 372.845,38.5 L 360.5,38.5 L 360.5,38.424 z"
   style="fill:#ffffff"
   id="path8172" />

		<path
   d="M 249.308,116.5 L 268.295,116.5 C 274.541,110.788 279.807,106.263 284.441,102.5 L 268.405,102.5 C 262.017,107.129 255.629,111.81 249.308,116.5 z"
   style="fill:#ffffff"
   id="path8174" />

		<path
   d="M 225.496,134.498 C 218.743,139.707 212.598,145.429 206.984,151.498 L 232.595,151.498 C 233.221,150.822 233.853,150.154 234.495,149.498 C 241.566,142.273 247.854,135.998 253.499,130.5 L 230.704,130.5 C 228.958,131.835 227.219,133.169 225.496,134.498 z"
   style="fill:#ffffff"
   id="path8176" />

		<path
   d="M 399.496,18.498 L 387.496,20.498 C 387.496,20.498 386.425,21.197 384.442,22.5 L 394.693,22.5 L 399.496,18.498 z"
   style="fill:#ffffff"
   id="path8178" />

		<path
   d="M 367.852,33.5 L 379.731,33.5 C 383.668,30.642 386.978,28.236 389.367,26.5 L 378.38,26.5 C 375.469,28.426 371.929,30.778 367.852,33.5 z"
   style="fill:#ffffff"
   id="path8180" />

	</g>

</g>
    </g>
    <g
       id="Layer_2"
       transform="translate(-218.35538,871.67259)">
	<path
   d=""
   style="fill:#ffffff;stroke:#000000"
   id="path8183" />

</g>
    <g
       id="g8062"
       transform="translate(10.606602,-108.08633)">
      <rect
         y="787.67786"
         x="455.55447"
         height="28.332918"
         width="62.062584"
         id="rect7916"
         style="opacity:1;fill:#916f6f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.09779607;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <text
         xml:space="preserve"
         style="font-size:13.35626507px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         x="466.34793"
         y="805.89191"
         id="text5204"><tspan
           sodipodi:role="line"
           id="tspan5206"
           x="466.34793"
           y="805.89191">Roads</tspan></text>
    </g>
    <g
       id="g5240"
       transform="translate(-67.142857,-3.5714286)">
      <path
         id="path5236"
         d="M 95.714286,553.07647 L 95,675.21933 L 135.71429,674.50504"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         id="path5238"
         d="M 96.428572,586.6479 L 135,585.93361"
         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
    </g>
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 559.3412,557.20271 L 502.70107,557.47967"
       id="path7851"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g4931"
       inkscape:connection-end="#g7846" />
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 576.45966,620.18651 L 531.17221,616.16824"
       id="path7922"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g3857"
       inkscape:connection-end="#g7906" />
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 458.53601,616.66708 L 415.39014,621.0873"
       id="path7924"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g7906"
       inkscape:connection-end="#layer2" />
    <text
       xml:space="preserve"
       style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="287.89349"
       y="306.36453"
       id="text8026"><tspan
         sodipodi:role="line"
         id="tspan8028"
         x="287.89349"
         y="306.36453" /></text>
    <g
       id="g8052"
       transform="matrix(0.5519452,0,0,0.5519452,186.91362,295.27552)">
      <path
         sodipodi:nodetypes="ccccscccc"
         d="M 298.33616,289.78091 C 308.94358,289.78091 326.42157,289.78093 326.42157,289.78093 L 326.42157,251.35038 L 298.33616,251.34828 C 287.72875,251.34828 279.11984,259.95718 279.11984,270.56459 C 279.11984,281.17201 287.72875,289.78091 298.33616,289.78091 z"
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.47817874;stroke-linecap:square;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
         id="path6087" />
      <text
         id="text8034"
         y="275.30234"
         x="286.12573"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="275.30234"
           x="286.12573"
           id="tspan8036"
           sodipodi:role="line">and</tspan></text>
    </g>
    <g
       id="g8057"
       transform="matrix(0.5519452,0,0,0.5519452,255.65123,596.60536)">
      <path
         sodipodi:nodetypes="ccscccccccccc"
         d="M 329.25764,338.56086 L 329.25764,338.65323 C 326.00751,344.29275 324.1302,350.80492 324.1302,357.77718 C 324.1302,364.74943 326.00751,371.2616 329.25764,376.90113 L 329.25764,376.99353 L 324.1302,376.99353 L 309.34841,376.99353 C 295.14205,376.99353 282.74109,369.24888 276.08939,357.77718 C 282.74109,346.30547 295.14206,338.56086 309.34841,338.56086 L 324.1302,338.56086 L 329.25764,338.56086 z"
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.47817874;stroke-linecap:square;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline"
         id="rect9115" />
      <text
         id="text8038"
         y="363.43814"
         x="294.71201"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="363.43814"
           x="294.71201"
           id="tspan8040"
           sodipodi:role="line">or</tspan></text>
    </g>
    <g
       id="g8075"
       transform="translate(67.680221,-83.842661)">
      <rect
         y="894.76013"
         x="407.07324"
         height="27.310581"
         width="58.414299"
         id="rect8073"
         style="opacity:1;fill:#a05a2c;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.10997851;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <text
         id="text8067"
         y="912.96722"
         x="413.90091"
         style="font-size:15.02005386px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="912.96722"
           x="413.90091"
           id="tspan8069"
           sodipodi:role="line">Diesel</tspan></text>
    </g>
    <g
       id="g8080"
       transform="translate(17.240244,220.66432)">
      <g
         transform="translate(48.487322,31.819805)"
         id="g8082"
         style="fill:#a05a2c">
        <path
           style="fill:#a05a2c"
           d="M 537.55485,624.57034 L 531.86477,624.57182 C 528.73523,624.57263 526.12378,624.60525 526.06155,624.64431 C 525.99933,624.68337 525.91708,624.88007 525.87879,625.08143 C 525.8103,625.44158 525.8026,625.44707 525.40582,625.41848 L 525.00248,625.38942 L 524.97378,624.74692 C 524.94582,624.12095 524.95274,624.09995 525.24241,623.93115 L 525.53975,623.75789 L 525.53975,618.46987 C 525.53975,613.32775 525.53436,613.17508 525.34438,612.93683 C 525.08254,612.60846 525.08254,611.89168 525.34438,611.56147 C 525.52858,611.32916 525.5354,611.13475 525.5354,606.11701 C 525.5354,601.09928 525.52858,600.90486 525.34438,600.67256 C 525.08254,600.34235 525.08254,599.62556 525.34438,599.29719 C 525.53436,599.05895 525.53975,598.90627 525.53975,593.76416 L 525.53975,588.47613 L 525.24669,588.30536 C 525.08099,588.2088 524.95364,588.05321 524.95364,587.94732 L 524.94185,587.56732 L 524.97217,587.20596 C 525.00173,586.8536 525.01222,586.8446 525.39322,586.8446 C 525.76074,586.8446 525.78574,586.86279 525.81402,587.1506 C 525.83056,587.3189 525.90253,587.50445 525.97397,587.56293 C 526.05862,587.63224 526.57536,587.6599 527.458,587.64238 L 528.81215,587.6155 L 528.84201,587.26171 C 528.86985,586.93185 528.89794,586.90357 529.25717,586.8437 C 529.54874,586.7951 529.64247,586.73466 529.64247,586.59523 C 529.64247,586.44451 529.71358,586.41097 530.0332,586.41097 L 530.42394,586.41097 L 530.6193,586.41097 L 530.9612,586.41097 C 531.23111,586.41097 531.30309,586.44925 531.30309,586.59276 C 531.30309,586.73398 531.39992,586.78886 531.73708,586.83874 C 532.15318,586.90029 532.1723,586.91762 532.20108,587.25922 L 532.23109,587.6155 L 535.08834,587.64105 L 537.94559,587.66659 L 538.14096,587.66368 L 541.61732,587.66368 L 545.09368,587.66368 L 545.02767,587.27823 L 544.96165,586.89279 L 545.5075,586.89279 L 546.05335,586.89279 L 546.24871,586.89279 L 546.79846,586.89279 L 547.34821,586.89279 L 547.28572,587.27823 L 547.22324,587.66368 L 548.23054,587.66368 C 549.3514,587.66368 549.47228,587.60967 549.47228,587.10888 C 549.47228,586.78784 549.47549,586.78557 549.88744,586.81497 L 550.30259,586.8446 L 550.33102,587.5299 C 550.35934,588.21261 550.35832,588.21566 550.06239,588.33658 L 549.76533,588.45796 L 549.76533,593.75507 C 549.76533,598.90627 549.77071,599.05893 549.9607,599.29719 C 549.98066,599.9286 550.40157,599.76954 549.9607,600.69885 C 549.77568,600.93088 549.76533,601.08977 549.76533,603.69907 L 549.76533,606.45428 L 549.76533,606.647 L 549.7675,608.98378 C 549.76952,611.15464 549.78324,611.33767 549.9607,611.56147 C 550.22253,611.89168 550.22253,612.60846 549.9607,612.93683 C 549.77072,613.17508 549.76533,613.32775 549.76533,618.46987 L 549.76533,623.75789 L 550.06266,623.93115 C 550.35234,624.09995 550.35925,624.12095 550.33129,624.74692 L 550.30259,625.38942 L 549.8583,625.41799 L 549.41402,625.44657 L 549.32104,625.03255 L 549.22807,624.61852 L 543.48915,624.59366 L 537.75022,624.5688 L 537.55485,624.57034 z M 549.76533,624.38793 C 549.76533,624.3406 549.69318,624.27456 549.60499,624.24118 C 549.47092,624.19043 549.46488,624.20453 549.56811,624.32723 C 549.70878,624.49444 549.76533,624.51184 549.76533,624.38793 z M 549.27708,590.57863 L 549.27725,588.19367 L 548.00719,588.22312 C 546.78112,588.25155 546.73713,588.24571 546.73713,588.05449 C 546.73713,587.87663 546.67729,587.85641 546.15103,587.85641 C 545.6294,587.85641 545.56493,587.87768 545.56493,588.04978 C 545.56493,588.24177 545.51584,588.24297 538.6538,588.21841 L 531.74267,588.19367 L 531.71176,587.92868 L 531.68085,587.66368 L 530.52162,587.66368 L 529.36239,587.66368 L 529.33148,587.92868 L 529.30057,588.19367 L 527.6643,588.19367 L 526.02802,588.19367 L 526.02809,590.57863 L 526.02816,592.96359 L 537.65254,592.96359 L 549.27691,592.96359 L 549.27708,590.57863 z"
           id="path8084"
           sodipodi:nodetypes="ccssccccccsssssccccccssscccssccccsscccccccccccccccccsccccccccccccsscccccccccccccssccccsssccccccccccccccc" />
        <path
           style="fill:#a05a2c;stroke:#000000;stroke-width:0.20404322;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           d="M 526.24362,624.50877 C 525.63459,624.40268 526.03282,623.63259 525.91969,623.19959 C 525.88743,619.90325 526.00272,616.59995 525.83374,613.30925 C 525.33572,612.0778 526.23342,610.59652 525.91712,609.1555 C 525.88403,606.36661 526.00407,603.56946 525.83365,600.78604 C 525.31216,599.62202 526.25417,598.26688 525.90541,596.90219 C 525.91034,595.58039 525.84732,594.2537 525.9431,592.93491 C 526.06823,594.98472 526.00057,597.04163 526.01939,599.09472 C 533.85919,599.09472 541.69899,599.09472 549.53878,599.09472 C 549.55762,597.04163 549.49027,594.98474 549.61508,592.9349 C 549.72385,595.05527 549.62917,597.18273 549.63069,599.30612 C 550.82172,599.9932 549.19555,601.11566 549.64984,602.14827 C 549.62871,605.36083 549.64232,608.57353 549.63847,611.78615 C 550.67249,612.34332 549.62728,613.04381 549.63847,613.75814 C 549.63847,617.26043 549.63847,620.76271 549.63847,624.26499 C 548.6202,624.89473 547.31862,624.51846 546.18118,624.64248 C 539.65481,624.62924 533.12553,624.72135 526.60104,624.56502 L 526.43063,624.5483 L 526.24361,624.50875 L 526.24362,624.50877 z M 549.33049,624.28666 C 549.77118,623.98761 549.4366,623.32128 549.53646,622.86078 C 549.52064,619.77233 549.5048,616.68389 549.48897,613.59544 C 541.68238,613.59544 533.8758,613.59544 526.0692,613.59544 C 526.07837,617.08246 525.96899,620.57277 526.09214,624.0572 C 527.04604,624.80276 528.77939,624.27451 530.04962,624.44877 C 536.34541,624.43312 542.64433,624.53184 548.9381,624.38172 L 549.21354,624.34045 L 549.33051,624.28665 L 549.33049,624.28666 z M 550.01782,612.49894 C 549.14965,611.53515 547.28703,612.19756 546.0071,611.98443 C 539.44622,611.99239 532.88319,611.91086 526.3237,612.04489 C 525.19469,612.06554 525.73827,613.10278 526.66959,612.71828 C 534.44206,612.76716 542.2147,612.7187 549.98724,612.71066 C 549.99743,612.64009 550.00763,612.56951 550.01782,612.49894 z M 549.51475,606.34508 C 549.52334,604.58368 549.53193,602.82227 549.54053,601.06087 C 541.74167,601.05445 533.94266,601.07874 526.14394,601.03631 C 526.0249,604.53932 526.00328,608.05111 526.06525,611.5559 C 529.75279,611.75811 533.46208,611.62367 537.1586,611.65554 C 541.26872,611.64686 545.37884,611.63799 549.48897,611.62923 C 549.49756,609.86784 549.50615,608.10646 549.51475,606.34508 z M 549.6683,600.11444 C 550.61384,599.29704 548.08244,599.56653 547.56439,599.50506 C 540.53502,599.49582 533.50413,599.43846 526.47561,599.54666 C 525.26717,599.40317 525.57348,600.64882 526.6439,600.23433 C 534.05724,600.27503 541.47228,600.32271 548.88495,600.21584 C 549.14583,600.19323 549.419,600.20893 549.6683,600.11444 z M 525.12246,612.17577 C 525.39285,611.66233 525.19742,612.49864 525.12246,612.17577 z M 550.29267,612.10042 C 550.22914,611.71217 550.58001,612.51955 550.29267,612.10042 z M 525.37802,611.74786 C 525.75458,611.25773 525.25178,612.1981 525.37802,611.74786 z M 550.08283,611.77015 C 549.92234,611.23164 550.43105,612.1613 550.08283,611.77015 z"
           id="path8086"
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
      </g>
      <use
         height="1052.3622"
         width="744.09448"
         transform="translate(27.5,0)"
         id="use8088"
         xlink:href="#g3845"
         y="0"
         x="0" />
      <g
         id="g8090"
         transform="translate(75.987322,31.819805)"
         style="fill:#d45500">
        <path
           sodipodi:nodetypes="ccssccccccsssssccccccssscccssccccsscccccccccccccccccsccccccccccccsscccccccccccccssccccsssccccccccccccccc"
           id="path8092"
           d="M 537.55485,624.57034 L 531.86477,624.57182 C 528.73523,624.57263 526.12378,624.60525 526.06155,624.64431 C 525.99933,624.68337 525.91708,624.88007 525.87879,625.08143 C 525.8103,625.44158 525.8026,625.44707 525.40582,625.41848 L 525.00248,625.38942 L 524.97378,624.74692 C 524.94582,624.12095 524.95274,624.09995 525.24241,623.93115 L 525.53975,623.75789 L 525.53975,618.46987 C 525.53975,613.32775 525.53436,613.17508 525.34438,612.93683 C 525.08254,612.60846 525.08254,611.89168 525.34438,611.56147 C 525.52858,611.32916 525.5354,611.13475 525.5354,606.11701 C 525.5354,601.09928 525.52858,600.90486 525.34438,600.67256 C 525.08254,600.34235 525.08254,599.62556 525.34438,599.29719 C 525.53436,599.05895 525.53975,598.90627 525.53975,593.76416 L 525.53975,588.47613 L 525.24669,588.30536 C 525.08099,588.2088 524.95364,588.05321 524.95364,587.94732 L 524.94185,587.56732 L 524.97217,587.20596 C 525.00173,586.8536 525.01222,586.8446 525.39322,586.8446 C 525.76074,586.8446 525.78574,586.86279 525.81402,587.1506 C 525.83056,587.3189 525.90253,587.50445 525.97397,587.56293 C 526.05862,587.63224 526.57536,587.6599 527.458,587.64238 L 528.81215,587.6155 L 528.84201,587.26171 C 528.86985,586.93185 528.89794,586.90357 529.25717,586.8437 C 529.54874,586.7951 529.64247,586.73466 529.64247,586.59523 C 529.64247,586.44451 529.71358,586.41097 530.0332,586.41097 L 530.42394,586.41097 L 530.6193,586.41097 L 530.9612,586.41097 C 531.23111,586.41097 531.30309,586.44925 531.30309,586.59276 C 531.30309,586.73398 531.39992,586.78886 531.73708,586.83874 C 532.15318,586.90029 532.1723,586.91762 532.20108,587.25922 L 532.23109,587.6155 L 535.08834,587.64105 L 537.94559,587.66659 L 538.14096,587.66368 L 541.61732,587.66368 L 545.09368,587.66368 L 545.02767,587.27823 L 544.96165,586.89279 L 545.5075,586.89279 L 546.05335,586.89279 L 546.24871,586.89279 L 546.79846,586.89279 L 547.34821,586.89279 L 547.28572,587.27823 L 547.22324,587.66368 L 548.23054,587.66368 C 549.3514,587.66368 549.47228,587.60967 549.47228,587.10888 C 549.47228,586.78784 549.47549,586.78557 549.88744,586.81497 L 550.30259,586.8446 L 550.33102,587.5299 C 550.35934,588.21261 550.35832,588.21566 550.06239,588.33658 L 549.76533,588.45796 L 549.76533,593.75507 C 549.76533,598.90627 549.77071,599.05893 549.9607,599.29719 C 549.98066,599.9286 550.40157,599.76954 549.9607,600.69885 C 549.77568,600.93088 549.76533,601.08977 549.76533,603.69907 L 549.76533,606.45428 L 549.76533,606.647 L 549.7675,608.98378 C 549.76952,611.15464 549.78324,611.33767 549.9607,611.56147 C 550.22253,611.89168 550.22253,612.60846 549.9607,612.93683 C 549.77072,613.17508 549.76533,613.32775 549.76533,618.46987 L 549.76533,623.75789 L 550.06266,623.93115 C 550.35234,624.09995 550.35925,624.12095 550.33129,624.74692 L 550.30259,625.38942 L 549.8583,625.41799 L 549.41402,625.44657 L 549.32104,625.03255 L 549.22807,624.61852 L 543.48915,624.59366 L 537.75022,624.5688 L 537.55485,624.57034 z M 549.76533,624.38793 C 549.76533,624.3406 549.69318,624.27456 549.60499,624.24118 C 549.47092,624.19043 549.46488,624.20453 549.56811,624.32723 C 549.70878,624.49444 549.76533,624.51184 549.76533,624.38793 z M 549.27708,590.57863 L 549.27725,588.19367 L 548.00719,588.22312 C 546.78112,588.25155 546.73713,588.24571 546.73713,588.05449 C 546.73713,587.87663 546.67729,587.85641 546.15103,587.85641 C 545.6294,587.85641 545.56493,587.87768 545.56493,588.04978 C 545.56493,588.24177 545.51584,588.24297 538.6538,588.21841 L 531.74267,588.19367 L 531.71176,587.92868 L 531.68085,587.66368 L 530.52162,587.66368 L 529.36239,587.66368 L 529.33148,587.92868 L 529.30057,588.19367 L 527.6643,588.19367 L 526.02802,588.19367 L 526.02809,590.57863 L 526.02816,592.96359 L 537.65254,592.96359 L 549.27691,592.96359 L 549.27708,590.57863 z"
           style="fill:#a05a2c" />
        <path
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
           id="path8094"
           d="M 526.24362,624.50877 C 525.63459,624.40268 526.03282,623.63259 525.91969,623.19959 C 525.88743,619.90325 526.00272,616.59995 525.83374,613.30925 C 525.33572,612.0778 526.23342,610.59652 525.91712,609.1555 C 525.88403,606.36661 526.00407,603.56946 525.83365,600.78604 C 525.31216,599.62202 526.25417,598.26688 525.90541,596.90219 C 525.91034,595.58039 525.84732,594.2537 525.9431,592.93491 C 526.06823,594.98472 526.00057,597.04163 526.01939,599.09472 C 533.85919,599.09472 541.69899,599.09472 549.53878,599.09472 C 549.55762,597.04163 549.49027,594.98474 549.61508,592.9349 C 549.72385,595.05527 549.62917,597.18273 549.63069,599.30612 C 550.82172,599.9932 549.19555,601.11566 549.64984,602.14827 C 549.62871,605.36083 549.64232,608.57353 549.63847,611.78615 C 550.67249,612.34332 549.62728,613.04381 549.63847,613.75814 C 549.63847,617.26043 549.63847,620.76271 549.63847,624.26499 C 548.6202,624.89473 547.31862,624.51846 546.18118,624.64248 C 539.65481,624.62924 533.12553,624.72135 526.60104,624.56502 L 526.43063,624.5483 L 526.24361,624.50875 L 526.24362,624.50877 z M 549.33049,624.28666 C 549.77118,623.98761 549.4366,623.32128 549.53646,622.86078 C 549.52064,619.77233 549.5048,616.68389 549.48897,613.59544 C 541.68238,613.59544 533.8758,613.59544 526.0692,613.59544 C 526.07837,617.08246 525.96899,620.57277 526.09214,624.0572 C 527.04604,624.80276 528.77939,624.27451 530.04962,624.44877 C 536.34541,624.43312 542.64433,624.53184 548.9381,624.38172 L 549.21354,624.34045 L 549.33051,624.28665 L 549.33049,624.28666 z M 550.01782,612.49894 C 549.14965,611.53515 547.28703,612.19756 546.0071,611.98443 C 539.44622,611.99239 532.88319,611.91086 526.3237,612.04489 C 525.19469,612.06554 525.73827,613.10278 526.66959,612.71828 C 534.44206,612.76716 542.2147,612.7187 549.98724,612.71066 C 549.99743,612.64009 550.00763,612.56951 550.01782,612.49894 z M 549.51475,606.34508 C 549.52334,604.58368 549.53193,602.82227 549.54053,601.06087 C 541.74167,601.05445 533.94266,601.07874 526.14394,601.03631 C 526.0249,604.53932 526.00328,608.05111 526.06525,611.5559 C 529.75279,611.75811 533.46208,611.62367 537.1586,611.65554 C 541.26872,611.64686 545.37884,611.63799 549.48897,611.62923 C 549.49756,609.86784 549.50615,608.10646 549.51475,606.34508 z M 549.6683,600.11444 C 550.61384,599.29704 548.08244,599.56653 547.56439,599.50506 C 540.53502,599.49582 533.50413,599.43846 526.47561,599.54666 C 525.26717,599.40317 525.57348,600.64882 526.6439,600.23433 C 534.05724,600.27503 541.47228,600.32271 548.88495,600.21584 C 549.14583,600.19323 549.419,600.20893 549.6683,600.11444 z M 525.12246,612.17577 C 525.39285,611.66233 525.19742,612.49864 525.12246,612.17577 z M 550.29267,612.10042 C 550.22914,611.71217 550.58001,612.51955 550.29267,612.10042 z M 525.37802,611.74786 C 525.75458,611.25773 525.25178,612.1981 525.37802,611.74786 z M 550.08283,611.77015 C 549.92234,611.23164 550.43105,612.1613 550.08283,611.77015 z"
           style="fill:#784421;stroke:#000000;stroke-width:0.20404322;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
    </g>
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 596.94383,790.35263 L 546.84211,776.1408"
       id="path8096"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g3880"
       inkscape:connection-end="#g7911" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
       d="M 590.66944,850.48385 L 533.23026,833.31937"
       id="path8100"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8080"
       inkscape:connection-end="#g8075" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 593.51567,701.58979 L 528.28616,696.28624"
       id="path8617"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8190"
       inkscape:connection-end="#g8062" />
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 471.66799,777.90004 L 437.79134,789.09506"
       id="path8619"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g7911"
       inkscape:connection-end="#g8057" />
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 407.62951,786.4203 L 334.46106,749.26353"
       id="path8625"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8057"
       inkscape:connection-end="#g2646" />
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 407.62951,790.11803 L 374.43494,781.40006"
       id="path8627"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8057"
       inkscape:connection-end="#g2725" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 474.69096,823.68907 L 352.0229,819.98553"
       id="path8629"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8075"
       inkscape:connection-end="#g3007" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 471.66799,752.9487 L 347.1715,711.44609"
       id="path8631"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g7911"
       inkscape:connection-end="#g5011" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 466.09858,694.71763 L 347.57053,698.37575"
       id="path8633"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8062"
       inkscape:connection-end="#g5011" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 466.09858,700.84313 L 342.49473,729.00796"
       id="path8635"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8062"
       inkscape:connection-end="#g2646" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 466.09858,707.4262 L 355.12793,756.2067"
       id="path8637"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8062"
       inkscape:connection-end="#g2725" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 475.46576,707.98694 L 342.02064,795.38141"
       id="path8639"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8062"
       inkscape:connection-end="#g3007" />
    <path
       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 474.69096,813.58757 L 437.79134,799.73878"
       id="path8641"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8075"
       inkscape:connection-end="#g8057" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 458.53601,603.93025 L 362.79168,580.16281"
       id="path8643"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g7906"
       inkscape:connection-end="#path1904" />
    <g
       id="g8649"
       transform="matrix(0.5519452,0,0,0.5519452,15.797949,409.88878)">
      <path
         sodipodi:nodetypes="ccscccccccccc"
         d="M 329.25764,338.56086 L 329.25764,338.65323 C 326.00751,344.29275 324.1302,350.80492 324.1302,357.77718 C 324.1302,364.74943 326.00751,371.2616 329.25764,376.90113 L 329.25764,376.99353 L 324.1302,376.99353 L 309.34841,376.99353 C 295.14205,376.99353 282.74109,369.24888 276.08939,357.77718 C 282.74109,346.30547 295.14206,338.56086 309.34841,338.56086 L 324.1302,338.56086 L 329.25764,338.56086 z"
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.47817874;stroke-linecap:square;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline"
         id="path8651" />
      <text
         id="text8653"
         y="363.43814"
         x="294.71201"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="363.43814"
           x="294.71201"
           id="tspan8655"
           sodipodi:role="line">or</tspan></text>
    </g>
    <g
       id="g8657"
       transform="matrix(0.5519452,0,0,0.5519452,15.083664,548.46021)">
      <path
         sodipodi:nodetypes="ccscccccccccc"
         d="M 329.25764,338.56086 L 329.25764,338.65323 C 326.00751,344.29275 324.1302,350.80492 324.1302,357.77718 C 324.1302,364.74943 326.00751,371.2616 329.25764,376.90113 L 329.25764,376.99353 L 324.1302,376.99353 L 309.34841,376.99353 C 295.14205,376.99353 282.74109,369.24888 276.08939,357.77718 C 282.74109,346.30547 295.14206,338.56086 309.34841,338.56086 L 324.1302,338.56086 L 329.25764,338.56086 z"
         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.47817874;stroke-linecap:square;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline"
         id="path8659" />
      <text
         id="text8661"
         y="363.43814"
         x="294.71201"
         style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
         xml:space="preserve"><tspan
           y="363.43814"
           x="294.71201"
           id="tspan8663"
           sodipodi:role="line">or</tspan></text>
    </g>
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 262.26824,583.0646 L 197.93806,602.74785"
       id="path8665"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#path1904"
       inkscape:connection-end="#g8649" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 259.82478,618.15223 L 197.93806,609.47619"
       id="path8667"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#layer2"
       inkscape:connection-end="#g8649" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 278.07511,711.44609 L 197.22377,740.51204"
       id="path8669"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g5011"
       inkscape:connection-end="#g8657" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 276.33831,738.9853 L 197.22377,744.82117"
       id="path8671"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g2646"
       inkscape:connection-end="#g8657" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 276.91339,760.95056 L 197.22377,748.32328"
       id="path8673"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g2725"
       inkscape:connection-end="#g8657" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 266.78324,795.38141 L 197.22377,754.74405"
       id="path8675"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g3007"
       inkscape:connection-end="#g8657" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 170.77259,734.91931 L 121.78173,687.46218"
       id="path8677"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8657"
       inkscape:connection-end="#g3955" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow2Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="M 167.77623,602.81698 L 139.38571,594.26041"
       id="path8679"
       inkscape:connector-type="polyline"
       inkscape:connection-start="#g8649"
       inkscape:connection-end="#g3949" />
  </g>
</svg>