-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2053 lines (2035 loc) · 145 KB
/
index.html
File metadata and controls
2053 lines (2035 loc) · 145 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TJKH4MF');</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" lang="zh-Hant-TW" content="" />
<meta property="og:description" content="六年過去,當人們已經逐漸淡忘324行政院驅離事件當晚的血腥與暴力,仍有一群人,尚未擺脫國家暴力事件的餘波,仍在法庭裡穿梭......" />
<meta property="og:title" content="查無此人—324行政院暴力驅離事件七週年" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://324.jrf.org.tw/" />
<meta property="og:image" content="https://324.jrf.org.tw/images/fb-.jpg">
<meta property="og:description" content="六年過去,當人們已經逐漸淡忘324行政院驅離事件當晚的血腥與暴力,仍有一群人,尚未擺脫國家暴力事件的餘波,仍在法庭裡穿梭......">
<title>查無此人—324行政院暴力驅離事件七週年</title>
<link href="images/icon.png" rel="shortcut icon" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TJKH4MF"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="gradient-bg">
<!--主視覺-->
<div>
<div class="person"><img id="person" width="110px" src="images/p.gif" alt=""></div>
</div>
<!--主視覺-->
<!--引文-->
<div class="container">
<div style="height: 50vh"></div>
<p class="text-center hidden-xs"><span style="color: #fff;font-weight: 700;font-size: 6em">查無此人</span></p>
<p class="text-center visible-xs"><span style="color: #fff;font-weight: 700;font-size: 3em">查無此人</span></p>
<P class="text-center" style="color: #fff;font-size: 1.4em">324行政院暴力驅離事件七週年</P>
<div class="row">
<div style="height: 30vh" class="hidden-xs col-md-6 col-md-offset-3">
<blockquote>
<p style="color: #fff;font-size:1em">運動至今不過七年,與我們如此靠近的社會運動中所發生的國家暴力,仍然在重蹈有被害人、無加害人的覆轍……。</p>
</blockquote>
</div>
<div style="height: 30vh" class="visible-xs col-md-6 col-md-offset-3" style="margin-top: -150px;margin-bottom: 200px">
<blockquote>
<p style="color: #fff;font-size: 0.8em">六年過去,當人們已經逐漸淡忘當晚的血腥與暴力,<br>仍有一群人,尚未擺脫國家暴力事件的餘波,在法庭裡穿梭......</p>
</blockquote>
</div>
</div>
<p class="text-center"><span style="border:#ffffff solid 1px;padding: 30px 5px 20px 5px;border-radius: 20px"><i style="color: #fff;font-size: 2em" class="fas fa-angle-double-down"></i></span></p>
</div>
<div style="height: 10vh"></div>
<!--時間軸-->
<div class="container">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-6 pull-left">
<p class="date-title"><i class="far fa-calendar-alt"></i> 2014-3-19 <small>07:00pm</small></p>
<div class="col-xs-12 mission">
<img src="images/20140319.jpg" width="100%">
<p>昨天看到佔領立法院的新聞後,就一直關注立院場內的直播,擔心議場裡的人會被驅離,和朋友們一起到立法院靜坐。
</p>
<p>現場已經有不少人眾集,下班後的晚上我都會來到這裡...。</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 pull-right">
<p class="date-title"><i class="far fa-calendar-alt"></i> 2014-3-23 <small>07:30pm</small></p>
<div class="col-xs-12 mission">
<p>反黑箱服貿運動已經持續了5天,政府終於召開記者會,卻只是重申服貿重要性,對於運動訴求卻不正面回應,我感到憤怒與失望。
</p>
<p>許多人已經在行政院集結,我跟著人群來到行政院抗議,希望可以獲得政府的重視與正面回應...</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 pull-left">
<p class="date-title"><i class="far fa-calendar-alt"></i> 2014-3-23 <small>08:30pm</small></p>
<div class="col-xs-12 mission">
<p>「退回服貿、捍衛民主!」<br>「退回服貿、捍衛民主!」<br>「退回服貿、捍衛民主!」</p>
<p>行政院的車道上已經有許多靜坐的民眾,我也席地而坐,和大家一起呼口號。警察似乎越來越多了,大家開始不安起來...
</p>
</div>
</div>
</div>
</div>
</div>
<!-- 影片視窗 -->
<!-- A01 -->
<div class="modal fade" id="v-A01" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">A01 員警以警棍戳民眾下體</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/DbJciUMqpt0?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- A01 end-->
<!-- A02 -->
<div class="modal fade" id="v-A02" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">A02 流血民眾質問現場員警</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/aNIRcGqEYck?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- A02 end-->
<!-- B01 -->
<div class="modal fade" id="v-B01" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">B01 員警以警棍敲打被拖行的民眾</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/BN9JQQMyp3c?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- B01 end-->
<!-- B02 -->
<div class="modal fade" id="v-B02" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">B02 員警以警盾敲打靜坐民眾</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/xwM85DptJzw?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- B02 end-->
<!-- B03-4 -->
<div class="modal fade" id="v-B03-4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">B03-4 員警以警盾剁、腳踢被拖出的民眾</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/fQMzDmDCRxg?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- B03-4 end-->
<!-- B05 -->
<div class="modal fade" id="v-B05" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">B05 民眾被拖入警盾前,員警施暴後再被拖出</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/vln_bcg-p1o?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- B05 end-->
<!-- B06 -->
<div class="modal fade" id="v-B06" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">B06 警棍敲打、腳踢</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/A_PiPlJuEa4?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- B06 end-->
<!-- C01 -->
<div class="modal fade" id="v-C01" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">C01 員警左手抓住民眾右手打巴掌</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/K95YcixoEwI?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- C01 end-->
<!-- D01-3 -->
<div class="modal fade" id="v-D01-3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">D01-3 長棍敲頭、盾牌推擠民眾</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/yVVX1a4sIFU?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- D01-3 end-->
<!-- D04 -->
<div class="modal fade" id="v-D04" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">D04 高壓噴水車直噴靜坐民眾</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/VBJOZpyAS-s?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- D04 end-->
<!-- D05 -->
<div class="modal fade" id="v-D05" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="stop-video close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">D05 員警以長棍敲打、腳踢民眾</span>
</div>
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="youtube-video" src='https://www.youtube.com/embed/h0T-uoehbtw?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- D05 end-->
<!-- Modal end-->
<div class="container">
<div style="margin-top: 4em;">
<div class="visible-xs" style="height: 30vh"></div>
<div class="col-md-8 col-md-offset-2">
<p class="text-center" style="color: #ffffff;line-height: 3em"><strong style="color: #ff931e">點選</strong>地圖中<br class="visible-xs"><span class="nobreak"> 「<img src="images/watercannons.png" alt="水砲車" width="50px"> 水砲車」 、</span><br class="visible-xs"><span class="nobreak"> 「<img src="images/stick.png" alt="警棍" width="30px"> 警棍 」、</span><br class="visible-xs"><span class="nobreak">「<img src="images/shield.png" alt="警盾" width="30px"> 警盾」 </span><br class="visible-xs">圖示看影片</p>
</div>
<div class="visible-xs" style="height: 30vh"></div>
<div style="height: 100px"></div>
<!--地圖-->
<svg version="1.1" id="map" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 989 780.6" style="enable-background:new 0 0 989 780.6;" xml:space="preserve">
<style type="text/css">
.st0 {
fill: #3F3F3F;
}
.st1 {
fill: #8E8E8E;
}
.st2 {
fill: #E80A0A;
}
.st3 {
fill: #0000FF;
}
.st4 {
fill: #FFFFFF;
}
.st5 {
fill: #A6A8AB;
}
.st6 {
fill: #B3B3B3;
}
.st7 {
fill: #D03F28;
}
.st8 {
fill: #F0553C;
}
.st9 {
fill: #C8BDA9;
}
.st10 {
fill: none;
stroke: #FFFFFF;
stroke-width: 2;
stroke-miterlimit: 10;
}
.st11 {
fill: none;
stroke: #FFFFFF;
stroke-width: 2;
stroke-miterlimit: 10;
stroke-dasharray: 7.823, 7.823;
}
.st12 {
fill: none;
stroke: #FFFFFF;
stroke-width: 2;
stroke-miterlimit: 10;
stroke-dasharray: 6.1574, 6.1574;
}
.st13 {
fill: #5060EF;
}
.st14 {
fill: #29282A;
}
.st15 {
opacity: 0.17;
fill: #3942EA;
enable-background: new;
}
</style>
<g id="bg">
<g>
<g>
<rect x="457.3" y="222.9" class="st0" width="42.1" height="303.7"/>
<rect x="194.3" y="223" class="st0" width="574.1" height="45.7"/>
<rect x="194.3" y="223" class="st0" width="55" height="315"/>
<g>
<g>
<rect x="319.8" y="315.5" class="st0" width="317.8" height="39.8"/>
<rect x="319.8" y="315.5" class="st0" width="31.9" height="216.4"/>
</g>
<rect x="609.1" y="315.5" class="st0" width="31.9" height="216.4"/>
</g>
<rect x="716.6" y="222.9" class="st0" width="54.2" height="315"/>
</g>
<rect x="319.8" y="500.5" class="st0" width="321.2" height="31.9"/>
</g>
<g>
<rect x="48.9" y="99" class="st1" width="854.2" height="85.8"/>
<rect x="48.9" y="623" class="st1" width="854.2" height="61.9"/>
<rect x="72.3" y="78.1" class="st1" width="86.9" height="636.7"/>
<rect x="811.7" y="78.1" class="st1" width="60" height="636.7"/>
</g>
<g>
<g>
<rect x="475.1" y="363.4" class="st2" width="23" height="15"/>
<g>
<rect x="475.2" y="363.4" class="st3" width="11.1" height="7.8"/>
<g>
<path class="st4" d="M478.9,367.4c0-1,0.8-1.8,1.8-1.8s1.8,0.8,1.8,1.8s-0.8,1.8-1.8,1.8C479.7,369.2,478.9,368.4,478.9,367.4z
"/>
<path class="st4" d="M479,364.4c0.4,0.3,0.7,0.7,1.1,1c-0.1,0-0.2,0.1-0.3,0.1c-0.5,0.3-0.5,0.3-0.6-0.3
C479.1,365,479,364.7,479,364.4L479,364.4z"/>
<path class="st4" d="M479.2,366c-0.2,0.3-0.3,0.5-0.4,0.7c-0.3-0.4-0.7-0.7-1-1.1C478.2,365.7,478.7,365.8,479.2,366z"/>
<path class="st4" d="M478.8,368c0.1,0.2,0.3,0.4,0.4,0.7c-0.5,0.1-1,0.3-1.5,0.4C478.1,368.8,478.5,368.4,478.8,368z"/>
<path class="st4" d="M479,370.3c0.1-0.3,0.2-0.7,0.3-1c0.1-0.4,0.1-0.4,0.5-0.2c0.1,0,0.2,0.1,0.3,0.2
C479.8,369.7,479.4,370,479,370.3C479,370.4,479,370.4,479,370.3z"/>
<path class="st4" d="M480.7,370.8c-0.1-0.4-0.2-0.8-0.3-1.2c0-0.2,0-0.3,0.2-0.2c0.2,0,0.4,0,0.6,0c-0.1,0.5-0.3,1-0.4,1.5
C480.8,370.8,480.7,370.8,480.7,370.8z"/>
<path class="st4" d="M480.8,363.9c0.1,0.5,0.3,0.9,0.4,1.5c-0.3,0-0.5,0-0.8,0c0,0-0.1-0.1-0.1-0.2c0.1-0.4,0.2-0.8,0.3-1.3
C480.7,363.9,480.8,363.9,480.8,363.9z"/>
<path class="st4" d="M482.5,364.4c-0.1,0.5-0.3,0.9-0.4,1.4c-0.2-0.1-0.4-0.2-0.6-0.3c0,0-0.1-0.2,0-0.2
c0.3-0.3,0.6-0.6,0.9-0.9H482.5z"/>
<path class="st4" d="M482.4,370.4c-0.3-0.3-0.6-0.6-0.9-0.9c0,0,0-0.2,0.1-0.2c0.2-0.1,0.3-0.2,0.6-0.3c0.1,0.5,0.3,1,0.4,1.4
C482.5,370.3,482.4,370.3,482.4,370.4z"/>
<path class="st4" d="M477.3,367.3c0.4-0.1,0.9-0.2,1.3-0.4l0,0c0.3,0.1,0.1,0.4,0.1,0.6c0,0-0.1,0.2-0.2,0.1
c-0.4-0.1-0.8-0.2-1.3-0.3C477.3,367.4,477.3,367.3,477.3,367.3z"/>
<path class="st4" d="M482.3,366c0.5-0.1,1-0.3,1.5-0.4c0,0.1-0.1,0.2-0.1,0.2c-0.3,0.3-0.5,0.5-0.8,0.8c-0.1,0.1-0.2,0.1-0.3,0
C482.5,366.4,482.4,366.2,482.3,366z"/>
<path class="st4" d="M483.7,369.1c-0.5-0.1-0.9-0.3-1.4-0.4c0.1-0.2,0.2-0.4,0.4-0.6c0,0,0.1,0,0.2,0c0.3,0.3,0.6,0.6,0.9,0.9
C483.7,369.1,483.7,369.1,483.7,369.1z"/>
<path class="st4" d="M484.2,367.4c-0.4,0.1-0.8,0.2-1.2,0.3l0,0c-0.2,0-0.2-0.1-0.2-0.2c0.1-0.2-0.2-0.6,0.2-0.6
c0.4,0,0.8,0.2,1.3,0.3C484.2,367.3,484.2,367.4,484.2,367.4z"/>
</g>
</g>
<g>
<path class="st5" d="M475.6,363.4c-0.6,0-1.1,0.2-1.1,0.4l0.1,37.7c0,0.2,0.5,0.4,1.1,0.4s1.1-0.2,1.1-0.4l-0.1-37.7
C476.6,363.6,476.2,363.4,475.6,363.4z"/>
<path class="st6" d="M476.6,363.8L476.6,363.8c0-0.2-0.5-0.4-1.1-0.4v0.7l0,0l0.1,36.9l0,0v0.7c0.6,0,1.1-0.2,1.1-0.4l0,0l0,0
L476.6,363.8z"/>
</g>
</g>
<g>
<g>
<rect x="440.1" y="387" class="st7" width="24.7" height="90.9"/>
</g>
<g>
<rect x="491.9" y="387" class="st7" width="25.3" height="90.9"/>
</g>
<g>
<rect x="440.1" y="396.5" class="st7" width="76.8" height="74.6"/>
</g>
<g>
<g>
<rect x="461.7" y="408.9" class="st8" width="8.3" height="22.1"/>
</g>
<g>
<rect x="474.1" y="408.8" class="st8" width="8.3" height="22.1"/>
</g>
<g>
<rect x="485.9" y="408.9" class="st8" width="8.3" height="22.1"/>
</g>
<g>
<g>
<path class="st8" d="M450.3,425.3L450.3,425.3c-3.1,0-5.7-2.3-5.7-5.2v-5.9c0-2.9,2.5-5.2,5.7-5.2l0,0c3.1,0,5.7,2.3,5.7,5.2
v5.9C456,423,453.4,425.3,450.3,425.3z"/>
</g>
<g>
<rect x="444.6" y="412.8" class="st8" width="11.4" height="12.5"/>
</g>
</g>
<g>
<g>
<path class="st8" d="M505.1,425.5L505.1,425.5c-3.1,0-5.7-2.3-5.7-5.2v-5.9c0-2.9,2.5-5.2,5.7-5.2l0,0c3.1,0,5.7,2.3,5.7,5.2
v5.9C510.8,423.1,508.3,425.5,505.1,425.5z"/>
</g>
<g>
<rect x="499.4" y="413" class="st8" width="11.4" height="12.5"/>
</g>
</g>
</g>
<g>
<rect x="368.5" y="479.5" class="st7" width="220.3" height="60.5"/>
</g>
<g>
<rect x="440.1" y="468" class="st7" width="77" height="73.9"/>
</g>
<g>
<g>
<g>
<g>
<rect x="377.7" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="377.7" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="377.7" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect x="391.8" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="391.8" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="391.8" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect x="406.8" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="406.8" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="406.8" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect x="421.2" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="421.2" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="421.2" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<rect x="526.4" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="526.4" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="526.4" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect x="540.5" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="540.5" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="540.5" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect x="555.5" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="555.5" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="555.5" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
<g>
<g>
<g>
<rect x="569.9" y="488.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="569.9" y="503.8" class="st8" width="8.4" height="12.2"/>
</g>
</g>
<g>
<g>
<rect x="569.9" y="519.3" class="st8" width="8.4" height="12.2"/>
</g>
</g>
</g>
</g>
<g>
<rect x="444.4" y="496.1" class="st8" width="11.4" height="43.2"/>
</g>
<g>
<rect x="500.2" y="496.1" class="st8" width="11.4" height="43.2"/>
</g>
<g>
<rect x="464.9" y="509.8" class="st8" width="27" height="29.5"/>
</g>
<g>
<rect x="368.5" y="539.1" class="st9" width="220.3" height="5.5"/>
</g>
<g>
<rect x="472.9" y="519" class="st8" width="1" height="11.1"/>
</g>
<g>
<rect x="481.4" y="519" class="st8" width="1" height="11.1"/>
</g>
<rect x="377.8" y="471.1" class="st7" width="51.9" height="14.1"/>
<rect x="526.4" y="468" class="st7" width="51.9" height="14.1"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="371.1" y1="141.9" x2="367.1" y2="141.9"/>
<line class="st11" x1="359.3" y1="141.9" x2="144.2" y2="141.9"/>
<line class="st10" x1="140.3" y1="141.9" x2="136.3" y2="141.9"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="812.4" y1="141.9" x2="808.4" y2="141.9"/>
<line class="st11" x1="800.6" y1="141.9" x2="585.5" y2="141.9"/>
<line class="st10" x1="581.5" y1="141.9" x2="577.5" y2="141.9"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="815.4" y1="653.9" x2="811.4" y2="653.9"/>
<line class="st11" x1="803.6" y1="653.9" x2="588.5" y2="653.9"/>
<line class="st10" x1="584.5" y1="653.9" x2="580.5" y2="653.9"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="377.6" y1="653.9" x2="373.6" y2="653.9"/>
<line class="st11" x1="365.8" y1="653.9" x2="150.7" y2="653.9"/>
<line class="st10" x1="146.8" y1="653.9" x2="142.8" y2="653.9"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="109.9" y1="102.4" x2="109.9" y2="105.4"/>
<line class="st12" x1="109.9" y1="111.6" x2="109.9" y2="280.9"/>
<line class="st10" x1="109.9" y1="284" x2="109.9" y2="287"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="841.7" y1="111.5" x2="841.7" y2="114.5"/>
<line class="st12" x1="841.7" y1="120.7" x2="841.7" y2="290"/>
<line class="st10" x1="841.7" y1="293.1" x2="841.7" y2="296"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="841.7" y1="479.6" x2="841.7" y2="482.6"/>
<line class="st12" x1="841.7" y1="488.8" x2="841.7" y2="658.1"/>
<line class="st10" x1="841.7" y1="661.2" x2="841.7" y2="664.2"/>
</g>
</g>
<g>
<g>
<line class="st10" x1="115.8" y1="485.8" x2="115.8" y2="488.7"/>
<line class="st12" x1="115.8" y1="494.9" x2="115.8" y2="664.2"/>
<line class="st10" x1="115.8" y1="667.3" x2="115.8" y2="670.3"/>
</g>
</g>
<g>
<path class="st4" d="M110.3,306.8c0-0.7,0.3-1,0.9-1l4.8,0.4c0.6,0,1.1,0.1,1.4,0.5c0,0.1-0.2,0.4-0.6,0.8
c-0.5,0.3-0.7,0.6-0.7,1.2v4c0,0.5,0.3,0.8,0.8,0.8h4c0.6,0.3,1.3-0.3,2.2-1.6c0.6-0.6,1.2-0.7,1.8-0.3l2.9,1.8
c1.1,0.4,1.2,1,0.4,1.7c-0.4,0.3-0.6,0.8-0.6,1.3v9.7c0,0.6-0.3,1-1,1.1c-1.2,0.1-2.4,0.3-3.5,0.4c-0.8,0.1-1.2-0.2-1.2-0.9v-0.8
c0-0.5-0.3-0.8-0.8-0.8h-4.2c-0.5,0-0.8,0.3-0.8,0.8v9c0,0.6-0.3,1-1,1.1l-3.5,0.5c-0.8,0.1-1.2-0.2-1.2-0.8V326
c0-0.5-0.3-0.8-0.8-0.8h-3.7c-0.5,0-0.8,0.3-0.8,0.9s-0.3,1-1,1.1l-3.3,0.4c-0.7,0.1-1.1-0.2-1.1-0.7v-14.8c0-0.6,0.3-0.8,1-0.6
c1.4,0.6,2.8,1.2,4.2,1.8c0.5,0.2,1,0.3,1.4,0.3h3.3c0.5,0,0.8-0.3,0.8-0.8L110.3,306.8L110.3,306.8z M110.3,315.2
c0-0.5-0.3-0.8-0.8-0.8h-3.7c-0.5,0-0.8,0.3-0.8,0.8v8.3c0,0.5,0.3,0.8,0.8,0.8h3.7c0.5,0,0.8-0.3,0.8-0.8V315.2z M121.7,315.2
c0-0.5-0.3-0.8-0.8-0.8h-4.2c-0.5,0-0.8,0.3-0.8,0.8v8.3c0,0.5,0.3,0.8,0.8,0.8h4.2c0.5,0,0.8-0.3,0.8-0.8V315.2z"/>
<path class="st4" d="M110.1,350.4c0-0.6,0.3-1,0.9-0.9l4.8,0.4c0.5,0,0.9,0.1,1.3,0.5c0.1,0.3-0.2,0.6-0.8,0.9
c-0.4,0.2-0.6,0.6-0.6,1.1v21.9c0,0.5,0.3,0.8,0.8,0.8h3.6c0.5,0,0.8-0.3,0.8-0.8V355c0-0.6,0.3-1,1-0.9l4.8,0.3
c0.4,0,0.8,0.1,1.2,0.3c0.4,0.4,0.3,0.8-0.5,1.1c-0.4,0.2-0.6,0.5-0.6,1v20.9c0,0.6-0.3,1-1,1.1c-1.3,0.1-2.6,0.3-3.9,0.5
c-0.7,0.1-1-0.2-1-0.8v-1.7c0-0.5-0.3-0.8-0.8-0.8h-14.3c-0.5,0-0.8,0.3-0.8,0.8v1.1c0,0.6-0.3,1-1,1.1c-1.1,0.1-2.2,0.3-3.3,0.4
c-0.7,0.1-1.1-0.2-1.1-0.7v-23.8c0-0.6,0.3-1,1-1l4.8,0.3c0.3,0,0.6,0.2,0.7,0.5c0,0.1-0.2,0.3-0.5,0.6c-0.4,0.2-0.6,0.5-0.6,0.9
v18.2c0,0.5,0.3,0.8,0.8,0.8h3.4c0.5,0,0.8-0.3,0.8-0.8C110.1,374.3,110.1,350.4,110.1,350.4z"/>
<path class="st4" d="M106.5,393.9c0-0.6,0.3-1,1-0.9c1.6,0.1,3.2,0.2,4.8,0.4c0.4,0.1,0.6,0.3,0.6,0.5c0,0.3-0.3,0.5-0.8,0.8
c-0.3,0.1-0.5,0.5-0.5,1v25.9c0,0.6-0.3,1-1,1.1c-1.1,0.1-2.2,0.3-3.2,0.5c-0.7,0.1-1-0.2-1-0.8v-6.8c0-0.5-0.3-0.5-0.8,0.1
l-3.6,4.5c-0.2,0.7-0.6,1.1-1.1,1.2c-0.2-0.1-0.4-0.5-0.7-1.3l-1.3-4.3c-0.2-0.7,0-1.2,0.7-1.5l6-2.3c0.5-0.2,0.8-0.6,0.8-1.1
v-6.5c0-0.5-0.3-0.8-0.8-0.8H100c-0.6,0-1-0.1-1.2-0.5c-0.1-0.3,0.2-0.5,0.8-0.5h5.9c0.5,0,0.8-0.3,0.8-0.8
C106.5,401.9,106.5,393.9,106.5,393.9z M115.3,393.9c0-0.6,0.3-1,0.9-0.9c1.6,0.1,3.2,0.2,4.8,0.4c0.9,0.3,0.9,0.7,0,1.4
c-0.4,0.2-0.6,0.5-0.6,1v5.3c0,0.7,0.2,0.8,0.6,0.3c0.6-0.9,1.2-1.9,1.6-2.8c0.4-0.7,0.9-0.8,1.7-0.2c1.3,1,2.6,2,3.9,3.1
c0.5,0.4,0.7,0.7,0.5,1.1c-0.1,0.1-0.3,0.1-0.8,0.1c-0.4-0.1-1.1,0.1-2,0.6c-1.5,0.7-3,1.4-4.5,2c-0.7,0.3-1,0.7-1,1.3v9.5
c-0.1,1.3,0.5,1.8,1.7,1.6c1.1,0.2,1.9-0.3,2.3-1.4c0.3-0.7,0.6-2,1-3.9c0.2-0.8,0.3-1.2,0.6-1.2c0.3,0,0.4,0.3,0.4,1
c0,1.4,0.1,2.7,0.3,3.8c0.1,0.7,0.6,1.2,1.5,1.4c0.7,0.2,0.9,0.6,0.8,1.3c-0.4,1.4-0.9,2.5-1.5,3.2c-0.7,0.6-1.5,0.9-2.4,1H118
c-1-0.1-1.8-0.6-2.3-1.7c-0.2-0.4-0.3-0.9-0.4-1.3L115.3,393.9L115.3,393.9z"/>
<path class="st4" d="M114.2,437c0.1-0.6,0.4-0.9,1-0.7c1.6,0.4,3.2,0.8,4.8,1.3c0.8,0.4,0.7,0.8-0.3,1.2c-0.2,0.1-0.4,0.3-0.6,0.8
s-0.1,0.8,0.4,0.8h1.9c0.5,0,1.1-0.3,1.6-0.9s1.2-0.6,1.8-0.2c0.8,0.5,1.5,1,2.3,1.5c0.7,0.4,1.1,0.7,1.3,1.1
c-0.1,0.3-0.3,0.6-0.6,0.7c-0.3,0.1-0.5,0.4-0.7,0.8c-0.9,1.7-1.9,3.1-2.8,4.4c-0.4,0.5-0.3,0.9,0.3,1c1.1,0.3,2.3,0.5,3.5,0.6
c0.7,0.1,1.1,0.3,1.1,0.5s-0.3,0.7-0.9,1.3c-0.4,0.7-0.8,1.7-1,2.9c-0.1,0.8-0.5,1-1.2,0.7c-1.5-0.5-3.2-1.3-4.9-2.4
c-0.6-0.5-1.3-0.5-1.9-0.1c-1.3,0.7-2.7,1.3-4.5,1.9c-0.6,0.2-0.6,0.4-0.1,0.5l1.7,0.6c0.6,0.2,1.1,0.3,1.5,0.3h3.1
c0.5,0,1.1-0.3,1.7-0.9s1.2-0.6,1.9-0.2c0.8,0.5,1.6,1,2.3,1.5c1.1,0.5,1.2,1,0.4,1.6c-0.2,0.1-0.3,0.4-0.3,0.9v6.6
c0,0.6-0.3,1-1,1.1l-3.3,0.5c-0.7,0.1-1-0.2-1-0.8v-0.7c0-0.5-0.3-0.8-0.8-0.8H118c-0.5,0-0.8,0.3-0.8,0.9s-0.3,1-1,1.1l-2.9,0.5
c-0.8,0.1-1.2-0.2-1.2-0.8v-5.8c0-0.5-0.3-0.6-1-0.3l-10.1,5.3c-0.3,0.6-0.6,1-0.9,1.2c-0.3,0.1-0.6-0.2-0.8-0.8l-1-4.5
c-0.2-0.6-0.1-1,0.3-1s0.6-0.3,0.6-0.7V452c0-0.6,0.3-1,1-0.9l2.3,0.1c0.8,0.1,1.3,0.2,1.3,0.3c0,0.1-0.1,0.3-0.3,0.5
c-0.2,0.1-0.3,0.5-0.3,1v6.2c0,0.5,0.2,0.8,0.5,0.8c0.3-0.1,0.5-0.4,0.5-0.9v-9.2c0-0.5-0.3-0.7-1-0.7c-0.9,0.1-1.8,0.2-2.6,0.4
c-0.7,0.1-1-0.1-1-0.8v-10.6c0-0.6,0.3-0.9,1-0.7c0.8,0.2,1.5,0.5,2.3,0.8c0.8,0.5,1.9,0.6,3.3,0.5c0.5,0,1.1-0.3,1.7-0.9
c0.6-0.5,1.2-0.5,1.9-0.1l1.7,1.1c1.2,0.5,1.5,1.1,0.7,1.6c-0.3,0.1-0.4,0.5-0.4,1v5.1c0,0.7,0.2,0.7,0.4,0
C113.2,443.9,113.8,440.8,114.2,437z M107,440.3c0-0.6-0.2-0.9-0.7-0.9h-1.2c-0.5,0-0.8,0.3-0.8,0.8v5.7c0,0.5,0.3,0.8,0.8,0.8
h1.2c0.5,0,0.8-0.3,0.8-0.8v-5.6H107z M116.3,446.5c-0.2-0.6-0.6-0.6-1.1,0c-1,1.1-2,2-3.1,2.7c-0.6,0.4-1,0.5-1.1,0.4
s0-0.3,0.1-0.5c0.1-0.3-0.2-0.3-0.8-0.2l-0.8,0.1c-0.6,0.1-0.8,0.3-0.8,0.8v2.3c0,0.5,0.1,0.8,0.2,0.8s0.4-0.3,0.8-0.9l0.4-0.6
c0.4-0.6,0.9-0.7,1.5-0.1l0.6,0.7c0.7,0.7,1.2,1,1.6,0.8c1.4-1.1,2.5-2,3.3-2.8c0.4-0.5,0.4-1.1,0.1-1.7
C116.8,447.6,116.6,447,116.3,446.5z M110.7,454.5c1.3-0.5,1.3-0.7,0.2-0.7h-1.3c-0.5,0-0.8,0.3-0.8,0.8v3.8c0,0.5,0.3,0.7,1,0.7
l1.9-0.2c0.5-0.1,0.8-0.4,0.8-0.9v-2c0-0.5-0.3-0.7-1-0.6c-0.1,0-0.2,0-0.3,0c-0.8,0.1-1.2,0.1-1.2-0.1
C109.8,455.1,110.1,454.8,110.7,454.5z M121.7,442.1c0.3-0.6,0.1-0.8-0.3-0.8h-2.1c-0.5,0-0.9,0.3-1.3,1l-0.7,1.4
c-0.3,0.5-0.2,1,0.2,1.5c0.3,0.3,0.6,0.6,0.9,1c0.6,0.4,1,0.3,1.4-0.3C120.5,444.7,121.1,443.4,121.7,442.1z M121.8,457.6
c0-0.6-0.3-0.8-0.7-0.8h-3c-0.5,0-0.8,0.3-0.8,0.8v5.3c0,0.5,0.3,0.8,0.8,0.8h2.9c0.5,0,0.8-0.3,0.8-0.8
C121.8,462.9,121.8,457.6,121.8,457.6z"/>
</g>
<g>
<g>
<path class="st4" d="M849.8,309.8c0.6-0.8,1.2-0.9,1.8-0.4l1.6,1.3c0.8,0.7,1.1,1.1,0.9,1.5c-0.2,0.3-0.6,0.5-1.2,0.5h-9.1
c-0.5,0-0.8,0.3-0.8,1c0,2.2-0.2,4.6-0.3,7.1c0,0.6,0.2,0.9,0.6,0.9h5.9c0.5,0,1-0.3,1.6-1l1.1-1.3c0.5-0.6,1.1-0.7,1.8-0.1
l1.6,1.4c0.8,0.7,1,1.1,0.8,1.5c-0.2,0.3-0.7,0.5-1.3,0.5h-11.5c-0.5,0-0.7,0.3-0.3,1c1.6,2.8,3.8,4.9,6.7,6.2
c1.9,0.9,4,1.6,6.2,2.2c0.7,0.2,1,0.4,1,0.6c0,0.3-0.3,0.7-1,1.2c-1,1.1-1.7,2.5-1.9,4.2c-0.1,0.7-0.5,0.9-1.2,0.5
c-3.4-1.8-5.8-3.7-7.4-5.8c-1.2-1.7-2.2-4-3-6.8c-0.2-0.6-0.4-0.4-0.5,0.4c-0.3,1.8-1,3.4-1.9,5c-1.3,2-3,3.5-4.8,4.6
c-2.4,1.4-5.1,2.5-8.1,3.3c-0.7,0.2-1,0.2-1.1-0.1s0.3-0.6,1.1-1c4.4-2.5,7.3-5.7,8.6-9.5c0.5-1.8,0.8-3.4,1-5
c0.1-0.5-0.2-0.8-0.7-0.8h-8.6c-0.6,0-1-0.1-1.2-0.5c-0.1-0.3,0.1-0.5,0.8-0.5h9c0.5,0,0.8-0.3,0.9-1c0.2-2.4,0.3-4.8,0.3-7.2
c0-0.5-0.3-0.8-0.8-0.8h-7.5c-0.6,0-1-0.1-1.2-0.5c-0.1-0.3,0.1-0.5,0.8-0.5h19.1c0.5,0,1-0.3,1.5-1L849.8,309.8z"/>
<path class="st4" d="M841,375.1c0-0.6,0.3-1,1-0.9c1.6,0.1,3.2,0.2,4.8,0.4c0.4,0.1,0.6,0.3,0.6,0.5c-0.1,0.4-0.4,0.6-0.8,0.8
c-0.3,0.2-0.5,0.5-0.5,1v0.9c0,0.5,0.3,0.8,1,0.8s1.3-0.3,1.8-0.8l0.7-0.7c0.6-0.6,1.3-0.8,1.9-0.4l2.9,1.9
c0.7,0.5,0.6,0.9-0.1,1.3c-0.6,0.2-0.9,1-0.6,2.2c0,1.1,0.3,1.1,0.9-0.2c0.5-0.6,0.9-0.6,1.4,0c0.1,0.1,0.2,0.2,0.2,0.3
c0.7,0.6,0.8,1.2,0.5,1.5c-0.1,0.2-0.5,0.3-1.1,0.3h-1c-0.5,0-0.8,0.3-0.8,0.8v3.3c0,0.6-0.2,1-0.6,1.1c-0.4,0-0.3,0.3,0.3,0.9
l1.7,1.4c0.6,0.5,0.8,0.9,0.6,1.2c-0.2,0.3-0.7,0.5-1.3,0.5h-7.4c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h3
c0.6,0.3,1.4-0.4,2.3-1.9c0.6-0.8,1.3-0.9,1.9-0.3l1.7,1.4c0.6,0.5,0.8,1,0.7,1.2c-0.3,0.3-0.7,0.5-1.3,0.5h-8.3
c-0.5,0-0.8,0.3-0.8,0.8v4.5c0,0.6-0.3,1-1,1.1c-1,0.1-2.1,0.3-3.2,0.5c-0.6,0.1-1-0.2-1-0.9v-5.2c0-0.5-0.3-0.8-0.8-0.8h-6.2
c-0.6,0-1-0.1-1.2-0.4s0.1-0.5,0.6-0.5h6.7c0.5,0,0.8-0.3,0.8-0.8V394c0-0.5-0.3-0.8-0.8-0.8h-5.1c-0.6,0-1-0.1-1.2-0.5
c-0.1-0.3,0.2-0.5,0.8-0.5h5.4c0.5,0,0.8-0.3,0.8-0.8v-1.8c0-0.5-0.3-0.8-0.8-0.8h-3.3c-0.6,0-1-0.1-1.2-0.5
c-0.1-0.3,0.1-0.5,0.8-0.5h3.6c0.5,0,0.8-0.3,0.8-0.8v-2.3c0-0.5-0.3-0.8-0.8-0.8h-3.6c-0.6,0-1-0.1-1.2-0.3
c-0.1-0.1-0.2,0.1-0.4,0.9c-0.9,3.7-1.8,7.5-2.7,11.2c0,0.7,0,1.2,0.3,1.5c1.2,1.9,1.5,3.6,1,5.2c-0.6,1.3-1.8,1.9-3.4,1.7
c-0.5-0.1-0.9-0.3-1.3-0.5c-0.9-0.8-1.2-1.9-0.9-3.3c0.2-0.9,0.4-1.7,0.7-2.6c0.3-1.1-0.2-1.9-1.6-2.3c-0.6-0.1-1-0.3-1-0.5
s0.3-0.4,1-0.4s1.2-0.3,1.5-0.8l2-3.8c0.3-0.6,0.2-0.8-0.5-0.6c-1.2,0.2-2-0.6-2.5-2.4c-0.1-1-0.4-1.9-1-2.6
c-0.6-0.6-0.9-1-0.8-1.1c0.1-0.2,0.5-0.3,1.3-0.3c1,0.1,1.9,0.2,2.6,0.4c1.1,0.3,1.9,1,2.5,2.4c0.1,0.6,0.3,0.6,0.7-0.1
c0.8-1.6,1.6-3.1,2.4-4.7c0.4-0.7,0.6-1,0.7-1c0.1,0.2,0.1,0.6-0.1,1.2c-0.1,0.4-0.2,0.8-0.3,1.2c-0.1,0.5,0.1,0.8,0.6,0.8h4
c0.5,0,0.8-0.3,0.8-0.8V380c0-0.5-0.3-0.8-0.8-0.8h-2.6c-0.6,0-1-0.1-1.2-0.4s0.1-0.4,0.7-0.4h3c0.5,0,0.8-0.3,0.8-0.8L841,375.1
L841,375.1z M827.3,375.1c0.1-0.1,0.4-0.2,1.1-0.2c2.2,0,3.8,0.4,4.9,1.3c0.8,0.7,1.3,1.6,1.3,2.5c0,1.1-0.5,1.9-1.3,2.5
c-1.2,0.7-2.3,0.5-3.4-0.8c-0.2-0.3-0.3-0.7-0.4-1.1c0-1.2-0.5-2.2-1.5-3.2C827.5,375.7,827.2,375.3,827.3,375.1z M848.4,380.2
c0-0.6-0.2-0.9-0.7-0.9h-0.8c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h0.8c0.5,0,0.8-0.3,0.8-0.8L848.4,380.2
L848.4,380.2z M848.4,384.9c0-0.6-0.3-0.8-0.7-0.8h-0.8c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h0.8
c0.5,0,0.8-0.3,0.8-0.8L848.4,384.9L848.4,384.9z M848.4,389.3c0-0.3-0.3-0.5-0.7-0.5h-0.8c-0.5,0-0.8,0.3-0.8,0.8v1.8
c0,0.5,0.3,0.8,0.8,0.8h2.2c0.5,0,1-0.3,1.6-1l0.8-1c0.6-0.7,0.5-1-0.1-0.9l-1.9,0.3C848.8,389.7,848.4,389.6,848.4,389.3z"/>
<path class="st4" d="M829.9,440.2c0.2-0.7,0.6-1,1.2-0.8c1.7,0.4,3.3,0.8,5,1.2c0.5,0.4,0.3,0.7-0.3,1c-0.4,0.2-0.8,0.5-1.1,1
c-0.7,1-1.8,2-3.1,3.3c-0.5,0.4-0.4,0.7,0.3,0.8l4.3,1c0.3,0,0.5,0.2,0.6,0.5c-0.1,0.4-0.3,0.6-0.6,0.6c-0.3,0.1-0.6,0.4-0.9,0.7
c-0.4,0.5-0.3,0.8,0.2,0.8h1.7c0.5,0,0.8-0.3,0.8-0.8v-2.9c0-0.5-0.3-0.8-0.8-0.8h-1.3c-0.6,0-1-0.1-1.2-0.4
c-0.1-0.3,0.1-0.4,0.7-0.4h1.7c0.5,0,0.8-0.3,0.8-0.8v-3.8c0-0.6,0.3-1,1-0.9l2.3,0.2c1.3,0,2.2,0.1,2.7,0.4
c0.4,0.4,0.2,0.8-0.6,1c-0.3,0.1-0.5,0.5-0.5,1v2c0,0.5,0.2,0.5,0.7-0.1l0.3-0.4c0.5-0.6,1.1-0.6,1.8,0l0.6,0.5
c0.6,0.6,0.9,1,0.7,1.3s-0.6,0.4-1.3,0.4h-2.1c-0.5,0-0.8,0.3-0.8,0.8v2.9c0,0.5,0.3,0.5,0.9-0.1c0.1-0.1,0.2-0.2,0.3-0.3
c0.5-0.6,1.1-0.6,1.8,0c1.1,1,2,1.5,2.5,1.4h1.5c0.5,0,1-0.3,1.5-1l0.8-1c0.6-0.8,1.2-0.9,1.8-0.4s1.3,1,1.9,1.6
c0.6,0.5,0.8,0.9,0.6,1.2c-0.2,0.3-0.6,0.5-1.3,0.5h-0.8c-0.5,0-0.8,0.3-0.8,0.8v14.5c0.2,1.6-0.5,2.5-2,2.9
c-0.9,0.2-1.8,0.3-2.7,0.3c-0.6,0-1-0.3-1.2-1c-0.1-1.1-0.8-2-2-2.8c-0.5-0.3-0.8-0.5-0.8-0.6s0.3-0.2,1-0.2h1.6
c0.5,0,0.8-0.3,0.8-0.8V452c0-0.5-0.3-0.8-0.8-0.8H835c-0.6,0-1,0-1-0.1s-0.3,0.2-0.9,0.9c-0.6,0.6-0.7,1-0.5,1.1
c0.4,0.1,0.6,0.2,0.6,0.3c0,0.1-0.1,0.3-0.3,0.5c-0.2,0.1-0.3,0.5-0.3,1v13.6c0,0.6-0.3,1-1,1.1l-2.6,0.2c-0.7,0.1-1-0.2-1-0.8
v-11.5c0.3-1-0.2-1-1.3,0.1c-0.8,0.5-1.3,0.8-1.4,0.6c-0.1-0.1,0.1-0.5,0.6-1.2c2-2.9,3.3-6.1,4.1-9.6c0.1-0.6-0.1-0.6-0.8-0.1
s-1.5,1-2.2,1.5c-0.8,0.5-1.3,0.7-1.4,0.6c-0.1-0.1,0.1-0.5,0.5-1.2C828.1,445.9,829.2,443.2,829.9,440.2z M837.8,453
c0-0.7,0.3-1,0.9-1c1.4,0.1,2.8,0.2,4.1,0.3c0.5,0,0.7,0.2,0.8,0.6c-0.1,0.1-0.3,0.3-0.6,0.5s-0.5,0.5-0.5,1v0.9
c0,0.5,0,0.8,0.1,0.8s0.4-0.3,1-1l0.3-0.4c0.6-0.7,1.2-0.8,1.8-0.3l0.9,0.7c0.8,0.6,1.1,1.1,0.9,1.4c-0.2,0.3-0.5,0.5-1.2,0.5
h-3.2c-0.5,0-0.8,0.3-0.8,0.8v2.8c0,0.5,0.3,0.8,1,0.7l3.3-0.3c0.7-0.1,1.1,0,1.1,0.2s-0.3,0.5-0.9,0.8
c-3.5,1.6-7.1,3.2-10.6,4.9c-0.3,0.1-0.6,0.4-0.9,0.8c-0.3,0.5-0.6,0.6-0.9,0.5c-0.3-0.3-0.5-0.7-0.5-1.2
c-0.3-1.3-0.6-2.6-0.9-3.9c-0.2-0.6,0.1-1,0.8-1c0.9-0.1,1.8-0.1,2.8-0.2c0.5-0.1,0.8-0.4,0.8-0.9v-3c0-0.5-0.3-0.8-0.8-0.8h-1.8
c-0.6,0-1-0.1-1.2-0.5c-0.1-0.3,0.2-0.5,0.8-0.5h2.2c0.5,0,0.8-0.3,0.8-0.8L837.8,453L837.8,453z M851.7,441.6
c0.6-0.7,1.2-0.8,1.8-0.3l1.6,1.4c0.6,0.5,0.9,1,0.7,1.3s-0.7,0.5-1.3,0.5h-7c-0.6,0-1-0.1-1.2-0.5c-0.1-0.3,0.1-0.5,0.8-0.5h2.2
c0.5,0,1-0.3,1.6-1L851.7,441.6z"/>
</g>
</g>
<g>
<g>
<path class="st4" d="M395.8,127c0-0.6,0.3-0.9,1-0.9c1.6,0.1,3.2,0.2,4.8,0.3c0.4,0.1,0.6,0.3,0.6,0.5c0,0.3-0.3,0.5-0.8,0.8
c-0.3,0.2-0.5,0.5-0.5,1v25.9c0,0.6-0.3,1-1,1.1c-1.1,0.1-2.1,0.3-3.2,0.5c-0.7,0.1-1-0.2-1-0.8v-6.8c0-0.5-0.3-0.5-0.8,0.1
l-3.6,4.5c-0.2,0.7-0.5,1.1-1.1,1.2c-0.2-0.1-0.4-0.5-0.7-1.3l-1.4-4.3c-0.2-0.7,0-1.2,0.7-1.5l6-2.3c0.5-0.2,0.8-0.6,0.8-1.1
v-6.4c0-0.5-0.3-0.8-0.8-0.8h-5.6c-0.6,0-1-0.1-1.2-0.4c-0.1-0.3,0.2-0.4,0.8-0.4h5.9c0.5,0,0.8-0.3,0.8-0.8V127H395.8z
M404.6,127c0-0.6,0.3-0.9,0.9-0.9c1.6,0.1,3.2,0.2,4.8,0.3c0.9,0.3,0.9,0.7,0,1.4c-0.4,0.2-0.5,0.5-0.5,1v5.3
c0,0.7,0.2,0.8,0.6,0.3c0.6-0.9,1.1-1.9,1.6-2.8c0.4-0.7,1-0.8,1.7-0.2c1.3,1,2.6,2,3.9,3.1c0.5,0.4,0.7,0.7,0.5,1.1
c-0.1,0.1-0.3,0.1-0.8,0.1c-0.4-0.1-1.1,0.1-2,0.6c-1.5,0.7-3,1.4-4.5,2c-0.7,0.3-1,0.7-1,1.3v9.5c-0.1,1.3,0.5,1.8,1.7,1.6
c1.1,0.2,1.9-0.3,2.3-1.4c0.3-0.7,0.6-2,1-3.9c0.1-0.8,0.4-1.2,0.6-1.2c0.3,0,0.5,0.3,0.5,1c0,1.4,0.1,2.7,0.3,3.8
c0.1,0.7,0.6,1.2,1.5,1.4c0.7,0.2,1,0.6,0.8,1.3c-0.4,1.4-0.9,2.5-1.5,3.2c-0.7,0.6-1.5,0.9-2.4,1h-7.2c-1-0.1-1.8-0.6-2.4-1.7
c-0.2-0.4-0.3-0.9-0.4-1.3V127L404.6,127z"/>
<path class="st4" d="M460.6,126.7c0.6-0.7,1.1-0.8,1.7-0.3l2,1.7c0.7,0.6,1,1,0.7,1.3s-0.7,0.5-1.4,0.5h-10
c-0.5,0-0.8,0.3-0.8,0.8V142c0,0.5,0.3,0.8,0.8,0.8h5c0.5,0,1-0.3,1.6-1l1.3-1.6c0.5-0.6,1.1-0.7,1.7-0.2
c0.8,0.6,1.5,1.2,2.3,1.9c0.6,0.6,0.9,1,0.6,1.3s-0.8,0.4-1.4,0.4h-11c-0.5,0-0.8,0.3-0.8,0.8v10.9c0,0.6-0.3,1-1,1.1l-3.4,0.4
c-0.7,0.1-1.1-0.2-1.1-0.7v-11.6c0-0.5-0.3-0.8-0.8-0.8h-10.1c-0.6,0-1-0.1-1.2-0.4c-0.1-0.3,0.2-0.4,0.8-0.4h10.4
c0.5,0,0.8-0.3,0.8-0.8v-11.3c0-0.5-0.3-0.8-0.8-0.8H437c-0.6,0-1-0.1-1.1-0.4c-0.1-0.3,0.1-0.5,0.6-0.5h21.3c0.5,0,1-0.3,1.6-1
L460.6,126.7z M437.8,131.7c0.1-0.2,0.5-0.2,1.1,0c1.9,0.6,3.5,1.3,4.8,2.3c1.8,1.8,2.2,3.6,1.3,5.3c-1.2,1.9-2.4,2.3-3.6,1.3
c-0.5-0.7-0.8-1.6-1-2.6c-0.3-1.7-1-3.4-2.1-5.2C437.9,132.3,437.7,131.9,437.8,131.7z M458.2,131.9c0.3-0.7,0.7-1,1.2-0.7
l4.9,2.2c0.6,0.5,0.9,0.8,0.9,0.9c-0.1,0.2-0.3,0.4-0.7,0.5c-0.6,0.1-1,0.3-1.3,0.5c-2.6,2.4-5.2,4.4-7.7,5.8
c-0.6,0.3-1,0.4-1.1,0.2s0-0.7,0.4-1.3C456.2,137.2,457.4,134.4,458.2,131.9z"/>
<path class="st4" d="M495.7,127c0-0.6,0.3-0.9,1-0.9l3.5,0.3c0.5,0,0.9,0.1,1.5,0.2c0.5,0.4,0.4,0.7-0.3,1.1
c-0.6,0.1-0.8,0.8-0.6,2.1c0,0.5,0.3,0.8,0.8,0.8h5.1c0.5,0,1-0.3,1.6-1l1.1-1.4c0.6-0.7,1.1-0.8,1.8-0.2l2.2,1.8
c0.6,0.5,0.7,0.8,0.5,1.1c-0.3,0.3-0.7,0.5-1.4,0.5h-10.8c-0.5,0-0.8,0.3-0.8,0.8v1.3c0,0.5,0.3,0.8,0.8,0.8h2.8
c0.5,0.2,1.2-0.2,2.1-1.1c0.6-0.5,1.3-0.6,1.9-0.2l2.6,1.7c0.6,0.5,0.8,0.8,0.8,1c-0.1,0.1-0.3,0.3-0.6,0.5
c-0.3,0.2-0.5,0.5-0.5,1v7.1c0,0.6-0.3,1-1,1.1c-1.1,0.1-2.2,0.3-3.4,0.5c-0.7,0.1-1.1-0.1-1.1-0.5c0-0.5-0.3-0.8-0.8-0.8H502
c-0.5,0-0.5,0.2,0.1,0.7c2.6,1.9,6.3,3.1,11.1,3.7c0.7,0.1,1.1,0.3,1.1,0.4c0,0.3-0.3,0.7-0.9,1.2c-0.9,1-1.5,2.3-1.8,3.9
c-0.1,0.7-0.6,0.9-1.4,0.6c-1.9-0.8-3.6-1.8-5.2-3c-1.7-1.6-2.9-3.1-3.6-4.4c-0.4-0.9-0.6-1-0.6-0.3v7.7c0,0.6-0.3,1-1,1.1
c-1,0.1-1.9,0.2-2.9,0.4c-0.8,0.1-1.2-0.2-1.2-0.8V151c0-0.5-0.3-0.6-1-0.1c-2.9,1.9-6.2,3.4-10,4.4c-0.8,0.2-1.2,0.2-1.4-0.1
c-0.1-0.2,0.1-0.5,0.8-0.9c4.1-2,7.3-4.9,9.6-8.9c0.3-0.5,0.2-0.8-0.3-0.8h-1.5c-0.5,0-0.8,0.2-0.8,0.6c0,0.4-0.3,0.7-1,0.8
l-3.2,0.5c-0.6,0.1-1-0.2-1-0.8v-12c0-0.6,0.3-0.9,1-0.7l3.5,1.2c0.4,0.1,0.8,0.2,1.3,0.2h3c0.5,0,0.8-0.3,0.8-0.8v-1.3
c0-0.5-0.3-0.8-0.8-0.8h-10.1c-0.6,0-1-0.1-1.1-0.4c-0.2-0.3,0-0.5,0.6-0.5h10.6c0.5,0,0.8-0.3,0.8-0.8L495.7,127L495.7,127z
M495.7,136c0-0.5-0.3-0.8-0.8-0.8H492c-0.5,0-0.8,0.3-0.8,0.8v2.2c0,0.5,0.3,0.8,0.8,0.8h2.9c0.5,0,0.8-0.3,0.8-0.8L495.7,136
L495.7,136z M495.7,140.6c0-0.6-0.3-0.8-0.7-0.8h-3c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h2.9c0.5,0,0.8-0.3,0.8-0.8
L495.7,140.6L495.7,140.6z M505.1,136c0-0.5-0.3-0.8-0.8-0.8h-2.8c-0.5,0-0.8,0.3-0.8,0.8v2.2c0,0.5,0.3,0.8,0.8,0.8h2.8
c0.5,0,0.8-0.3,0.8-0.8V136z M505.1,140.6c0-0.6-0.3-0.8-0.7-0.8h-2.8c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h2.8
c0.5,0,0.8-0.3,0.8-0.8L505.1,140.6L505.1,140.6z"/>
<path class="st4" d="M547,126.7c0.1-0.6,0.4-0.9,1-0.7c1.6,0.4,3.2,0.8,4.8,1.3c0.8,0.4,0.7,0.8-0.3,1.2
c-0.2,0.1-0.4,0.3-0.6,0.8c-0.2,0.5-0.1,0.8,0.4,0.8h1.9c0.5,0,1.1-0.3,1.6-0.9s1.2-0.6,1.8-0.2c0.8,0.5,1.5,1,2.3,1.5
c0.7,0.4,1.1,0.7,1.3,1.1c-0.1,0.3-0.3,0.6-0.6,0.7c-0.3,0.1-0.5,0.4-0.7,0.8c-1,1.7-1.9,3.1-2.8,4.4c-0.5,0.5-0.3,0.9,0.3,1
c1.1,0.3,2.3,0.5,3.5,0.6c0.7,0.1,1.1,0.3,1.1,0.5s-0.3,0.7-0.9,1.3c-0.4,0.7-0.8,1.7-1,2.9c-0.1,0.8-0.5,1-1.2,0.7
c-1.5-0.5-3.2-1.3-4.9-2.4c-0.6-0.4-1.3-0.5-1.9-0.1c-1.3,0.7-2.7,1.3-4.5,1.9c-0.6,0.2-0.6,0.4-0.1,0.6l1.7,0.6
c0.6,0.2,1.1,0.3,1.5,0.3h3.1c0.5,0,1.1-0.3,1.7-0.9c0.6-0.6,1.2-0.6,1.9-0.2c0.8,0.5,1.5,1,2.3,1.5c1.1,0.5,1.3,1,0.5,1.6
c-0.2,0.1-0.3,0.4-0.3,0.9v6.6c0,0.6-0.3,1-1,1.1l-3.3,0.4c-0.7,0.1-1-0.2-1-0.8v-0.7c0-0.5-0.3-0.8-0.8-0.8H551
c-0.5,0-0.8,0.3-0.8,0.9c0,0.6-0.3,1-1,1.1l-2.9,0.4c-0.8,0.1-1.2-0.2-1.2-0.8v-5.8c0-0.5-0.3-0.6-1-0.3l-10,5.3
c-0.3,0.6-0.6,1-0.9,1.2c-0.3,0.1-0.6-0.2-0.8-0.8l-1-4.5c-0.2-0.6,0-1,0.3-1c0.4,0,0.6-0.3,0.6-0.7v-7.5c0-0.6,0.3-1,1-0.9
l2.3,0.1c0.8,0.1,1.3,0.2,1.3,0.3s-0.1,0.3-0.3,0.5c-0.2,0.1-0.3,0.4-0.3,1v6.2c0,0.5,0.2,0.8,0.5,0.8c0.3-0.1,0.5-0.4,0.5-0.9
v-9.2c0-0.5-0.3-0.7-1-0.7c-0.9,0.1-1.8,0.2-2.6,0.4c-0.7,0.1-1-0.1-1-0.8v-10.6c0-0.6,0.3-0.9,1-0.7c0.8,0.2,1.5,0.5,2.3,0.8
c0.8,0.5,1.9,0.6,3.3,0.5c0.5,0,1.1-0.3,1.7-0.9c0.6-0.5,1.2-0.5,1.9-0.1l1.7,1.1c1.2,0.5,1.5,1.1,0.7,1.6
c-0.3,0.1-0.5,0.5-0.5,1v5.1c0,0.7,0.2,0.7,0.5,0C546,133.6,546.7,130.4,547,126.7z M539.9,130c0-0.6-0.2-0.9-0.7-0.9H538
c-0.5,0-0.8,0.3-0.8,0.8v5.7c0,0.5,0.3,0.8,0.8,0.8h1.2c0.5,0,0.8-0.3,0.8-0.8L539.9,130L539.9,130z M549.2,136.1
c-0.2-0.6-0.6-0.6-1.1,0c-1,1.1-2,2-3.1,2.7c-0.6,0.4-1,0.5-1.1,0.4s0-0.3,0.1-0.6s-0.2-0.3-0.8-0.2l-0.8,0.1
c-0.6,0.1-0.8,0.3-0.8,0.8v2.3c0,0.5,0,0.8,0.2,0.8c0.1,0,0.4-0.3,0.8-0.9l0.4-0.6c0.4-0.6,0.9-0.7,1.5-0.1l0.6,0.7
c0.7,0.7,1.2,0.9,1.6,0.8c1.4-1.1,2.5-2,3.3-2.8c0.4-0.5,0.4-1.1,0.1-1.7C549.7,137.2,549.4,136.7,549.2,136.1z M543.6,144.1
c1.3-0.5,1.3-0.7,0.2-0.7h-1.3c-0.5,0-0.8,0.3-0.8,0.8v3.8c0,0.5,0.3,0.7,1,0.7l1.9-0.2c0.5-0.1,0.8-0.4,0.8-0.9v-2
c0-0.5-0.3-0.7-1-0.6c-0.1,0-0.2,0.1-0.3,0c-0.8,0.1-1.2,0.1-1.2-0.1C542.6,144.7,542.9,144.5,543.6,144.1z M554.5,131.8
c0.3-0.6,0.1-0.8-0.3-0.8h-2.1c-0.5,0-1,0.3-1.3,1l-0.7,1.4c-0.3,0.5-0.2,1,0.2,1.6c0.3,0.3,0.6,0.6,0.9,1c0.6,0.4,1,0.3,1.4-0.3
C553.3,134.3,554,133.1,554.5,131.8z M554.7,147.2c0-0.6-0.3-0.8-0.7-0.8h-3c-0.5,0-0.8,0.3-0.8,0.8v5.3c0,0.5,0.3,0.8,0.8,0.8
h2.9c0.5,0,0.8-0.3,0.8-0.8V147.2z"/>
</g>
</g>
<g>
<g>
<path class="st4" d="M394.4,659.1c0.1-0.7,0.3-1.1,0.5-1.1c0.2,0.1,0.3,0.4,0.5,1.1c0.4,2,0.5,4,0.4,5.9
c-0.1,0.8-0.5,1.3-1.3,1.8c-0.9,0.5-1.8,0.6-2.9,0.3c-0.6-0.1-1-0.6-1.4-1.3c-0.4-1.1,0.2-2.3,1.6-3.4
C393.1,661.5,394,660.5,394.4,659.1z M402.2,639.7c0-0.7,0.3-1,0.9-1c1.6,0.1,3.2,0.2,4.8,0.3c0.6,0,1,0.1,1.4,0.5
c0.1,0.3-0.2,0.6-0.8,1c-0.6,0.1-0.9,0.7-0.6,1.8c0,0.5,0.3,0.8,0.8,0.8h2.3c0.6,0.3,1.3-0.3,2.3-1.7c0.6-0.6,1.2-0.7,1.8-0.3
l2.9,1.8c1.1,0.4,1.3,1,0.4,1.7c-0.5,0.4-0.8,0.9-0.8,1.3v6.8c0,0.6-0.3,1-1,1.1c-1.2,0.1-2.4,0.3-3.6,0.4c-0.6,0-1-0.3-1-0.9
v-0.8c0-0.5-0.3-0.8-0.8-0.8h-2.5c-0.5,0-0.8,0.3-0.8,0.8v1.7c0,0.6-0.3,1-1,1.1l-3.5,0.5c-0.8,0.1-1.1-0.2-1.1-0.8v-2.5
c0-0.5-0.3-0.8-0.8-0.8H399c-0.5,0-0.8,0.3-0.8,1c0,0.7-0.3,1.1-1,1.2c-1.1,0.1-2.2,0.3-3.3,0.4c-0.7,0.1-1-0.2-1-0.8v-11.8
c0-0.6,0.3-0.8,1-0.6l3.5,1.5c0.7,0.5,2,0.7,4,0.5c0.5,0,0.8-0.3,0.8-0.8V639.7z M397.2,657.4c0-0.7,0.3-1,0.9-0.9
c1.1,0.1,2.3,0.2,3.5,0.3c0.6,0,1,0.1,1.4,0.3c0.3,0.2,0.2,0.6-0.2,1c-0.3,0.3-0.5,0.7-0.5,1.2c0,1.1,0,2.2,0.1,3.4
c0.3,0.5,0.7,0.7,1.2,0.5h6.6c0.8-0.2,1.4-0.6,1.6-1.3l0.5-1.3c0.2-0.7,0.5-1,0.7-1c0.3,0,0.4,0.3,0.4,1c-0.1,1.3,0.3,2.3,1,2.9
c0.2,0.1,0.3,0.5,0.2,1.1c-0.2,1-0.5,1.9-0.9,2.5c-1,1-1.9,1.5-2.9,1.3h-11.7c-1.1-0.4-1.8-1.3-2-2.6L397.2,657.4L397.2,657.4z
M402.2,644.8c0-0.5-0.3-0.8-0.8-0.8H399c-0.5,0-0.8,0.3-0.8,0.8v5.3c0,0.5,0.3,0.8,0.8,0.8h2.5c0.5,0,0.8-0.3,0.8-0.8V644.8z
M403.4,656.2c0.1-0.2,0.5-0.3,1-0.3c1.4,0,2.7,0.3,3.7,0.7c1,0.7,1.7,1.5,1.9,2.4c0.3,1.2,0,2.2-0.7,2.9
c-0.7,0.6-1.4,0.7-2.3,0.4c-1.2-0.5-1.8-1.5-1.7-2.9c-0.1-0.6-0.4-1.3-0.9-1.9C403.7,656.8,403.3,656.3,403.4,656.2z
M411.9,644.8c0-0.5-0.3-0.8-0.8-0.8h-2.5c-0.5,0-0.8,0.3-0.8,0.8v5.3c0,0.5,0.3,0.8,0.8,0.8h2.5c0.5,0,0.8-0.3,0.8-0.8V644.8z
M413.4,657.9c0.1-0.1,0.5,0,1.1,0.2c1.9,0.6,3.4,1.3,4.8,2.3c1.7,1.8,2.1,3.5,1.2,5.2c-0.4,0.7-0.9,1.2-1.5,1.4
c-1.1,0.5-1.9,0-2.4-1.3l-0.7-2.6c-0.3-1.3-0.9-2.5-1.9-3.9C413.5,658.4,413.3,658,413.4,657.9z"/>
<path class="st4" d="M447,639.4c0-0.6,0.3-0.9,0.9-0.9c1.6,0,3.2,0.1,4.8,0.3c0.9,0.2,0.9,0.6,0,1.2c-0.3,0.1-0.4,0.4-0.4,0.9
v0.8c0,0.5,0.2,0.8,0.6,0.8c0.5,0.2,1.2-0.3,2-1.6c0.6-0.6,1.2-0.7,1.8-0.2l1,0.7c0.6,0.5,1.1,0.5,1.5-0.1l0.5-0.7
c0.5-0.7,1.1-0.8,1.7-0.4l3.5,2.3c0.6,0.6,0.9,0.9,0.9,1c0,0.3-0.3,0.4-0.6,0.5c-0.6,0.1-1,0.2-1.3,0.5l-3.2,2.8
c-0.6,0.5-0.6,0.7-0.1,0.7h0.9c0.6,0.3,1.4-0.4,2.4-1.9c0.6-0.7,1.2-0.8,1.7-0.3l1.7,1.4c0.7,0.6,0.9,1,0.7,1.3
c-0.2,0.3-0.7,0.5-1.3,0.5h-7.3c-0.5,0-1,0.2-1.4,0.5l-1.8,1.4c-0.5,0.4-0.5,0.6,0,0.6h1.5c0.5,0,1.1-0.3,1.6-0.9
c0.6-0.6,1.2-0.7,1.9-0.3l2.9,2c0.7,0.3,1,0.8,0.7,1.3c-0.1,0.1-0.4,0.1-0.9,0.1c-0.5-0.1-1.1,0.1-2,0.6
c-1.6,0.7-3.3,1.5-4.9,2.3c-0.2,0.1-0.3,0.3-0.5,0.5c-0.5,0.3-0.8,0.7-0.8,1.2c0,0.5,0.3,0.8,0.8,0.8h3.5c0.5,0,1-0.3,1.6-1
l1-1.3c0.5-0.6,1.1-0.7,1.8-0.2l1.6,1.4c0.7,0.7,1,1.2,0.8,1.5c-0.2,0.3-0.6,0.4-1.3,0.4h-8.9c-0.5,0-0.8,0.3-0.8,0.8v6.6
c-0.4,1.3-1.3,2-2.6,2.1c-0.8,0.1-1.6,0.2-2.4,0.2c-0.6,0-1-0.3-1.2-1c-0.4-1.4-1.3-2.4-2.6-3.1c-0.7-0.3-1-0.5-1-0.6
c0-0.1,0.4-0.2,1-0.2h2.8c0.5,0,0.8-0.3,0.8-0.8v-3.3c0-0.5-0.3-0.8-0.8-0.8h-9.7c-0.6,0-1-0.1-1.2-0.3c-0.1-0.3,0.1-0.5,0.6-0.5
H450c0.5,0,0.8-0.3,0.8-0.8v-1.6c0-0.6,0.3-1,1-0.9c0.9,0,1.8,0.1,2.7,0.2c0.5,0,1-0.3,1.7-0.9l1.8-2c0.5-0.5,0.4-0.8-0.1-0.8
h-2.7c-0.5,0-1,0.1-1.4,0.4c-3.9,2.3-8.9,4-14.9,5.4c-0.6,0.2-1,0.2-1,0.1c-0.1-0.2,0.3-0.4,1-0.8c2.4-1,5-2.3,7.7-3.9
c0.8-0.5,1.3-0.8,1.5-1.1c-0.1-0.1-0.4-0.1-0.9-0.1h-5c-0.6,0-1-0.2-1.2-0.5c-0.1-0.3,0.2-0.5,0.8-0.5h7.1c0.5,0,1-0.2,1.4-0.5
l1.6-1.3c0.5-0.5,0.5-0.7-0.1-0.7h-12.7c-0.6,0-1-0.1-1.2-0.3c-0.1-0.3,0.1-0.5,0.7-0.5h7.6c0.5,0,0.8-0.3,0.8-0.8v-3
c0-0.5-0.3-0.8-0.8-0.8h-4.2c-0.6,0-1-0.1-1.2-0.3c-0.1-0.3,0.1-0.5,0.7-0.5h4.6c0.5,0,0.8-0.3,0.8-0.8L447,639.4L447,639.4z
M457.2,644c0.5-0.5,0.4-0.8-0.1-0.8h-3.8c-0.5,0-0.8,0.3-0.8,0.8v3c0,0.5,0.2,0.8,0.6,0.8s0.9-0.3,1.4-0.8
C455.4,646,456.3,645,457.2,644z"/>
<path class="st4" d="M497,639.6c0-0.6,0.3-1,1-0.9l3.5,0.3c0.5,0,0.9,0.1,1.5,0.2c0.5,0.4,0.4,0.7-0.3,1.1
c-0.6,0.1-0.8,0.8-0.6,2.1c0,0.5,0.3,0.8,0.8,0.8h5.1c0.5,0,1-0.3,1.6-1l1.1-1.3c0.6-0.7,1.2-0.8,1.8-0.2l2.2,1.8
c0.6,0.5,0.7,0.8,0.5,1.1c-0.3,0.3-0.7,0.5-1.4,0.5h-10.8c-0.5,0-0.8,0.3-0.8,0.8v1.3c0,0.5,0.3,0.8,0.8,0.8h2.8
c0.5,0.2,1.2-0.2,2.1-1.1c0.6-0.5,1.3-0.6,1.9-0.2l2.6,1.7c0.6,0.5,0.8,0.8,0.8,1c-0.1,0.1-0.3,0.3-0.6,0.5
c-0.3,0.2-0.5,0.5-0.5,1v7.1c0,0.6-0.3,1-1,1.1c-1.1,0.1-2.2,0.3-3.4,0.5c-0.7,0.1-1.1,0-1.1-0.5c0-0.5-0.3-0.8-0.8-0.8h-2.5
c-0.5,0-0.5,0.2,0.1,0.7c2.6,1.8,6.3,3.1,11.1,3.7c0.7,0.1,1.1,0.3,1.1,0.4c0,0.3-0.3,0.7-0.9,1.2c-0.9,1-1.5,2.3-1.8,3.9
c-0.2,0.7-0.6,0.9-1.4,0.5c-1.9-0.8-3.6-1.8-5.2-3c-1.7-1.6-2.9-3.1-3.6-4.5c-0.4-0.9-0.6-1-0.6-0.3v7.7c0,0.6-0.3,1-1,1.1
c-1,0.1-1.9,0.2-2.9,0.3c-0.8,0.1-1.2-0.2-1.2-0.8v-4.8c0-0.5-0.3-0.6-1-0.1c-2.9,2-6.2,3.4-10,4.5c-0.8,0.2-1.2,0.2-1.4-0.1
c-0.1-0.2,0.1-0.5,0.8-0.9c4.1-2,7.3-4.9,9.6-8.9c0.3-0.5,0.2-0.8-0.3-0.8h-1.5c-0.5,0-0.8,0.2-0.8,0.6c0,0.4-0.3,0.7-1,0.8
l-3.2,0.5c-0.6,0.1-1-0.2-1-0.8v-12c0-0.6,0.3-0.9,1-0.7l3.5,1.2c0.4,0.1,0.8,0.2,1.3,0.2h3c0.5,0,0.8-0.3,0.8-0.8v-1.3
c0-0.5-0.3-0.8-0.8-0.8h-10.1c-0.6,0-1-0.1-1.1-0.3c-0.2-0.3,0-0.5,0.6-0.5h10.6c0.5,0,0.8-0.3,0.8-0.8L497,639.6L497,639.6z
M497,648.6c0-0.5-0.3-0.8-0.8-0.8h-2.9c-0.5,0-0.8,0.3-0.8,0.8v2.2c0,0.5,0.3,0.8,0.8,0.8h2.9c0.5,0,0.8-0.3,0.8-0.8V648.6z
M497,653.3c0-0.6-0.3-0.8-0.7-0.8h-3c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h2.9c0.5,0,0.8-0.3,0.8-0.8V653.3z
M506.4,648.6c0-0.5-0.3-0.8-0.8-0.8h-2.8c-0.5,0-0.8,0.3-0.8,0.8v2.2c0,0.5,0.3,0.8,0.8,0.8h2.8c0.5,0,0.8-0.3,0.8-0.8V648.6z
M506.4,653.3c0-0.6-0.3-0.8-0.7-0.8h-2.8c-0.5,0-0.8,0.3-0.8,0.8v2.3c0,0.5,0.3,0.8,0.8,0.8h2.8c0.5,0,0.8-0.3,0.8-0.8
L506.4,653.3L506.4,653.3z"/>
<path class="st4" d="M549.4,639.4c0.1-0.6,0.4-0.9,1-0.7c1.6,0.4,3.2,0.8,4.8,1.3c0.8,0.4,0.7,0.8-0.3,1.2
c-0.2,0.1-0.4,0.3-0.6,0.8c-0.2,0.5-0.1,0.8,0.4,0.8h1.9c0.5,0,1.1-0.3,1.6-0.9s1.2-0.6,1.8-0.2c0.8,0.5,1.5,1,2.3,1.5
c0.7,0.4,1.1,0.7,1.3,1.1c-0.1,0.3-0.3,0.6-0.6,0.7c-0.3,0.1-0.5,0.4-0.7,0.8c-1,1.7-1.9,3.2-2.8,4.4c-0.5,0.5-0.3,0.9,0.3,1
c1.1,0.3,2.3,0.5,3.5,0.6c0.7,0.1,1.1,0.3,1.1,0.5c0,0.2-0.3,0.7-0.9,1.3c-0.4,0.7-0.8,1.7-1,2.9c-0.1,0.8-0.5,1-1.2,0.7
c-1.5-0.5-3.2-1.3-4.9-2.4c-0.6-0.5-1.3-0.5-1.9-0.1c-1.3,0.7-2.7,1.3-4.5,1.9c-0.6,0.2-0.6,0.3-0.1,0.5l1.7,0.6
c0.6,0.2,1.1,0.3,1.5,0.3h3.1c0.5,0,1.1-0.3,1.7-0.9c0.6-0.6,1.2-0.6,1.9-0.2c0.8,0.5,1.5,1,2.3,1.5c1.1,0.5,1.3,1,0.5,1.6
c-0.2,0.1-0.3,0.4-0.3,0.9v6.6c0,0.6-0.3,1-1,1.1l-3.3,0.5c-0.7,0.1-1-0.2-1-0.8v-0.7c0-0.5-0.3-0.8-0.8-0.8h-2.9
c-0.5,0-0.8,0.3-0.8,0.9c0,0.6-0.3,1-1,1.1l-2.9,0.5c-0.8,0.1-1.2-0.2-1.2-0.8v-5.8c0-0.5-0.3-0.6-1-0.3l-10,5.3
c-0.3,0.6-0.6,1-0.9,1.2c-0.3,0.1-0.6-0.2-0.8-0.8l-1-4.5c-0.2-0.6,0-1,0.3-1c0.4,0,0.6-0.3,0.6-0.7v-7.5c0-0.6,0.3-1,1-0.9
l2.3,0.1c0.8,0.1,1.3,0.2,1.3,0.3c0,0.1-0.1,0.3-0.3,0.5c-0.2,0.1-0.3,0.5-0.3,1v6.2c0,0.5,0.2,0.8,0.5,0.8
c0.3-0.1,0.5-0.3,0.5-0.9v-9.2c0-0.5-0.3-0.7-1-0.7c-0.9,0.1-1.8,0.2-2.6,0.3c-0.7,0.1-1-0.2-1-0.8v-10.6c0-0.6,0.3-0.9,1-0.7
c0.8,0.2,1.5,0.5,2.3,0.8c0.8,0.5,1.9,0.6,3.3,0.5c0.5,0,1.1-0.3,1.7-0.9c0.6-0.5,1.2-0.5,1.9-0.1l1.7,1.1
c1.2,0.5,1.5,1.1,0.7,1.6c-0.3,0.2-0.5,0.5-0.5,1v5.1c0,0.7,0.2,0.7,0.5,0C548.4,646.3,549.1,643.1,549.4,639.4z M542.3,642.7
c0-0.6-0.2-0.9-0.7-0.9h-1.2c-0.5,0-0.8,0.3-0.8,0.8v5.7c0,0.5,0.3,0.8,0.8,0.8h1.2c0.5,0,0.8-0.3,0.8-0.8V642.7z M551.6,648.8
c-0.2-0.6-0.6-0.6-1.1,0c-1,1.1-2,2-3.1,2.7c-0.6,0.4-1,0.5-1.1,0.4c-0.1-0.1,0-0.3,0.1-0.5c0.1-0.3-0.2-0.3-0.8-0.2l-0.8,0.1
c-0.6,0.1-0.8,0.3-0.8,0.8v2.3c0,0.5,0,0.8,0.2,0.8c0.1,0,0.4-0.3,0.8-0.9l0.4-0.6c0.4-0.6,0.9-0.7,1.5-0.1l0.6,0.7
c0.7,0.7,1.2,1,1.6,0.8c1.4-1.1,2.5-2,3.3-2.8c0.4-0.5,0.4-1.1,0.1-1.7C552.1,649.9,551.8,649.4,551.6,648.8z M546,656.9
c1.3-0.5,1.3-0.7,0.2-0.7h-1.3c-0.5,0-0.8,0.3-0.8,0.8v3.8c0,0.5,0.3,0.7,1,0.7l1.9-0.2c0.5-0.1,0.8-0.4,0.8-0.9v-2
c0-0.5-0.3-0.7-1-0.6c-0.1,0-0.2,0-0.3,0c-0.8,0.2-1.2,0.1-1.2-0.1C545,657.4,545.3,657.2,546,656.9z M557,644.5
c0.3-0.6,0.1-0.8-0.3-0.8h-2.1c-0.5,0-1,0.3-1.3,1l-0.7,1.4c-0.3,0.5-0.2,1,0.2,1.5c0.3,0.3,0.6,0.6,0.9,1c0.6,0.4,1,0.3,1.4-0.3
C555.7,647,556.4,645.8,557,644.5z M557.1,659.9c0-0.6-0.3-0.8-0.7-0.8h-3c-0.5,0-0.8,0.3-0.8,0.8v5.3c0,0.5,0.3,0.8,0.8,0.8h2.9
c0.5,0,0.8-0.3,0.8-0.8V659.9z"/>
</g>
</g>
</g>
<a data-toggle="modal" data-target="#v-D05">
<g id="D05">
<g>
<path class="st13" d="M380.1,453.1c-7.9-7.9-18.1-11.8-28.4-11.8c-10.3,0-20.5,3.9-28.4,11.8c-15.7,15.7-15.7,40.1,0.6,58.8
c15,17.3,27.8,26.4,27.8,26.4l0,0c0,0,12.7-9.1,27.8-26.4C395.8,493.2,395.8,468.7,380.1,453.1z" />
<path class="st4" d="M351.7,514.2c-18.2,0-33-14.8-33-33c0-18.2,14.8-33,33-33c18.2,0,33,14.8,33,33
C384.7,499.4,369.9,514.2,351.7,514.2z" />
</g>
<g>
<path class="st14" d="M336.9,460.4c-0.7,0.5-0.8,1.4-0.4,2.1l18.4,25.9l-5.2,3.7l1.4,1.9l5.2-3.7l8.8,12.4
c0.5,0.7,1.4,0.8,2.1,0.3c0.7-0.5,0.8-1.4,0.4-2.1l-8.8-12.4l-1.4-1.9l-18.4-25.9C338.5,460.1,337.5,460,336.9,460.4z" />
<path class="st13" d="M349,491.1c-1.1,0.8-1.4,2.3-0.6,3.4s2.3,1.4,3.4,0.6L349,491.1z" />
<path class="st13" d="M363.4,493.4c-0.2-0.3-0.7-0.4-1-0.2c0.3-0.2,0.4-0.7,0.2-1c-0.2-0.3-0.7-0.4-1-0.2l-3,2.1
c-0.3,0.2-0.4,0.7-0.2,1c0.2,0.3,0.7,0.4,1,0.2c-0.3,0.2-0.4,0.7-0.2,1s0.7,0.4,1,0.2c-0.3,0.2-0.4,0.7-0.2,1
c0.2,0.3,0.7,0.4,1,0.2c-0.3,0.2-0.4,0.7-0.2,1c0.2,0.3,0.7,0.4,1,0.2c-0.3,0.2-0.4,0.7-0.2,1c0.2,0.3,0.7,0.4,1,0.2
c-0.3,0.2-0.4,0.7-0.2,1c0.2,0.3,0.7,0.4,1,0.2c-0.3,0.2-0.4,0.7-0.2,1c0.2,0.3,0.7,0.4,1,0.2l3-2.1c0.3-0.2,0.4-0.7,0.2-1
c-0.2-0.3-0.7-0.4-1-0.2c0.3-0.2,0.4-0.7,0.2-1c-0.2-0.3-0.7-0.4-1-0.2c0.3-0.2,0.4-0.7,0.2-1c-0.2-0.3-0.7-0.4-1-0.2
c0.3-0.2,0.4-0.7,0.2-1c-0.2-0.3-0.7-0.4-1-0.2c0.3-0.2,0.4-0.7,0.2-1c-0.2-0.3-0.7-0.4-1-0.2
C363.6,494.2,363.6,493.7,363.4,493.4z" />
<path class="st14" d="M367.5,501l-8.8-12.4l-1.4-1.9l-18.4-25.9c-0.5-0.7-1.4-0.8-2.1-0.4l30.3,42.6
C367.8,502.6,368,501.7,367.5,501z" />
<path class="st13" d="M362.6,492.3c-0.2-0.3-0.7-0.4-1.1-0.1l-1.8,1.3l5.7,8l1.8-1.3c0.4-0.3,0.5-0.7,0.3-1s-0.7-0.3-1.1-0.1
c0.4-0.3,0.5-0.7,0.3-1s-0.7-0.4-1.1-0.1c0.4-0.3,0.5-0.7,0.3-1s-0.7-0.4-1.1-0.1c0.4-0.3,0.5-0.7,0.3-1s-0.7-0.4-1.1-0.1
c0.4-0.3,0.5-0.7,0.3-1s-0.7-0.4-1.1-0.1c0.4-0.3,0.5-0.7,0.3-1s-0.7-0.4-1.1-0.1C362.7,493.1,362.8,492.6,362.6,492.3z" />
</g>
</g>
</a>
<a data-toggle="modal" data-target="#v-D04">
<g id="D04">
<g>
<g>
<path class="st13" d="M326.8,523.9c-7.9-7.8-18.1-11.8-28.4-11.8c-10.3,0-20.5,3.9-28.4,11.8c-15.7,15.7-15.7,40.1,0.6,58.8
c15,17.3,27.8,26.4,27.8,26.4l0,0c0,0,12.7-9.1,27.8-26.4C342.5,564,342.5,539.6,326.8,523.9z" />
<path class="st4" d="M298.4,585c-18.2,0-33-14.8-33-33c0-18.2,14.8-33,33-33c18.2,0,33,14.8,33,33
C331.4,570.3,316.6,585,298.4,585z" />
</g>
</g>
<g>
<rect x="289" y="557.2" class="st14" width="35.9" height="3.8" />
<polygon class="st14" points="289,557.2 289,540.5 279.1,540.5 273.7,550.8 273.7,561 284.5,561 289,561 300.6,561 300.6,557.2
" />
<polygon class="st13" points="286.2,551.8 277.3,551.8 277.3,549.2 280.6,542.6 286.2,542.6 " />
<rect x="296" y="556.4" class="st14" width="9.1" height="5.2" />
<g>
<circle class="st13" cx="280.7" cy="561" r="4.2" />
<circle class="st14" cx="280.7" cy="561" r="1.9" />
</g>
<g>
<circle class="st13" cx="317" cy="561" r="4.2" />
<circle class="st14" cx="317" cy="561" r="1.9" />
</g>
<polygon class="st13" points="319.6,536.7 292.5,536.7 292.5,533 292.5,533 292.5,530.4 284.9,530.4 284.9,533.9 289,533.9
289,536.7 289,543.8 289,557.2 318.8,557.2 323.2,550.8 " />
<rect x="292.3" y="539.1" class="st14" width="2.2" height="16.1" />
<rect x="296.9" y="539.1" class="st14" width="2.2" height="16.1" />
<rect x="301.6" y="539.1" class="st14" width="2.2" height="16.1" />
<rect x="306.3" y="539.1" class="st14" width="2.2" height="16.1" />
<rect x="311" y="539.1" class="st14" width="2.2" height="16.1" />
<rect x="315.6" y="539.1" class="st14" width="2.2" height="16.1" />