-
Notifications
You must be signed in to change notification settings - Fork 0
/
book-a-tour.html
2539 lines (2530 loc) · 238 KB
/
book-a-tour.html
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 xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta name="pinterest-rich-pin" content="false" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="pingback" href="https://www.oldforester.com/xmlrpc.php" />
<link rel="apple-touch-icon" sizes="57x57" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="wp-content/themes/mightily/dist/assets/icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="wp-content/themes/mightily/dist/assets/icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="wp-content/themes/mightily/dist/assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="wp-content/themes/mightily/dist/assets/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="wp-content/themes/mightily/dist/assets/icons/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="https://www.oldforester.com/wp-content/themes/mightily/dist/assets/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Distillery Tours - Old Forester | First Bottled Bourbon™</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="Distillery tours are available at our Main St. Louisville location. Discover the process behind Old Forester - from barrelling to bottling. Book a tour now." />
<link rel="canonical" href="book-a-tour.html" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Distillery Tours - Old Forester | First Bottled Bourbon™" />
<meta property="og:description" content="Distillery tours are available at our Main St. Louisville location. Discover the process behind Old Forester - from barrelling to bottling. Book a tour now." />
<meta property="og:url" content="https://www.oldforester.com/book-a-tour/" />
<meta property="og:site_name" content="Old Forester" />
<meta property="article:publisher" content="https://www.facebook.com/oldforester/?rf=804233199768985" />
<meta property="og:image" content="https://static.oldforester.com/app/uploads/2019/06/28193849/Old-Fo-Distillery-Tour-Photo.jpg" />
<meta property="og:image:secure_url" content="https://static.oldforester.com/app/uploads/2019/06/28193849/Old-Fo-Distillery-Tour-Photo.jpg" />
<meta property="og:image:width" content="980" />
<meta property="og:image:height" content="730" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="Distillery tours are available at our Main St. Louisville location. Discover the process behind Old Forester - from barrelling to bottling. Book a tour now." />
<meta name="twitter:title" content="Distillery Tours - Old Forester | First Bottled Bourbon™" />
<meta name="twitter:site" content="@oldforester" />
<meta name="twitter:image" content="https://static.oldforester.com/app/uploads/2019/06/28193849/Old-Fo-Distillery-Tour-Photo.jpg" />
<meta name="twitter:creator" content="@oldforester" />
<script type='application/ld+json' class='yoast-schema-graph yoast-schema-graph--main'>{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.oldforester.com/#organization","name":"Old Forester","url":"https://www.oldforester.com/","sameAs":["https://www.facebook.com/oldforester/?rf=804233199768985","https://www.instagram.com/oldforester/","https://twitter.com/oldforester"],"logo":{"@type":"ImageObject","@id":"https://www.oldforester.com/#logo","url":"https://static.oldforester.com/app/uploads/2019/06/28193943/OldForesterDistillingCo-Logo-1ColorLocation-768x768.jpg","width":768,"height":768,"caption":"Old Forester"},"image":{"@id":"https://www.oldforester.com/#logo"}},{"@type":"WebSite","@id":"https://www.oldforester.com/#website","url":"https://www.oldforester.com/","name":"Old Forester","publisher":{"@id":"https://www.oldforester.com/#organization"},"potentialAction":{"@type":"SearchAction","target":"https://www.oldforester.com/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"ImageObject","@id":"https://www.oldforester.com/book-a-tour/#primaryimage","url":"https://static.oldforester.com/app/uploads/2019/06/28193849/Old-Fo-Distillery-Tour-Photo.jpg","width":980,"height":730,"caption":"Old Forester tour guests walking down stairs"},{"@type":"WebPage","@id":"https://www.oldforester.com/book-a-tour/#webpage","url":"https://www.oldforester.com/book-a-tour/","inLanguage":"en-US","name":"Distillery Tours - Old Forester | First Bottled Bourbon\u2122","isPartOf":{"@id":"https://www.oldforester.com/#website"},"primaryImageOfPage":{"@id":"https://www.oldforester.com/book-a-tour/#primaryimage"},"datePublished":"2019-06-12T20:41:34+00:00","dateModified":"2020-07-22T15:00:00+00:00","description":"Distillery tours are available at our Main St. Louisville location. Discover the process behind Old Forester - from barrelling to bottling. Book a tour now."}]}</script>
<link rel='dns-prefetch' href='https://ajax.googleapis.com/' />
<link rel='dns-prefetch' href='https://kit.fontawesome.com/' />
<link rel='dns-prefetch' href='https://fonts.googleapis.com/' />
<link rel='dns-prefetch' href='https://s.w.org/' />
<link rel='stylesheet' id='wp-block-library-css' href='wp-includes/css/dist/block-library/style.min.css%3Fver=5.2.css' type='text/css' media='all' />
<link rel='stylesheet' id='bfcd-styles-css' href='wp-content/plugins/brown-forman-charitable-contributions/public/css/app.css%3Fver=5.2.css' type='text/css' media='all' />
<link rel='stylesheet' id='bfcf-styles-css' href='wp-content/plugins/brownforman-bf_contact_form-11142bacb39d/public/css/app.css%3Fver=5.2.css' type='text/css' media='all' />
<link rel='stylesheet' id='mightily-font-css' href='wp-content/themes/mightily/dist/assets/css/fonts.css%3Fver=12.08.2020.16.28.53.css' type='text/css' media='all' />
<link rel='stylesheet' id='jquery-ui-css-css' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css?ver=5.2' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-css' href='https://fonts.googleapis.com/css?family=Playfair+Display&display=swap&ver=5.2' type='text/css' media='all' />
<link rel='stylesheet' id='mightily-css-css' href='wp-content/themes/mightily/dist/assets/css/style.min.css%3Fver=12.08.2020.16.28.53.css' type='text/css' media='all' />
<script type='text/javascript' src='https://kit.fontawesome.com/18e4650c23.js?ver=1.0'></script>
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed%3Furl=https:%252F%252Fwww.oldforester.com%252Fbook-a-tour%252F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed%3Furl=https:%252F%252Fwww.oldforester.com%252Fbook-a-tour%252F&format=xml" />
</head>
<body class="page-template-default page page-id-1128">
<a class="skipnav" href="book-a-tour.html#main">Skip to main content</a>
<header class="header" role="banner">
<div class="wrapper">
<a class="header-logo" href="index.html" title="Old Forester Home Page">
<svg version="1.1" id="svg-logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 800 434" style="enable-background:new 0 0 800 434;" xml:space="preserve">
<style type="text/css">
.st0{fill:#121820;}
.st1{fill:#CAAB5D;}
.st2{fill:#F9EFE2;}
.st3{opacity:0.85;fill:#BC2F2C;}
.st4{opacity:0.85;}
.st5{fill:#BC2F2C;}
</style>
<g id="XMLID_6519_">
<polygon id="XMLID_6545_" class="st0" points="80.4,134.9 97.9,140.5 88.2,112.4 10.7,112.4 14.5,127.4 14.2,228.6 10.3,243.6
48.2,243.6 43.4,224.9 43.7,187.4 61.9,187.4 76.4,192 76.5,160.2 61.9,164.9 43.8,164.9 43.9,134.9 " />
<path id="XMLID_6542_" class="st0" d="M321.4,0l-41.2,0l-20.6,19.9l-0.1,67.4l20.6,19.9l41.3,0L342,87.2l0-67.4L321.4,0z
M307.1,87.2l-12.7,0l-6.3-3.1l-3.2-6.1l0-50.5l3.2-6.1l6.3-3.1l12.7,0l6.3,3.1l3.2,6.1l0,50.5l-3.2,6.1L307.1,87.2z" />
<path id="XMLID_6540_" class="st0" d="M410.5,87.5l-21.2,0l0-55.4l4.1-14.3l-32.1,0l3.3,11.9l0,65.6l-3.3,11.9l57.9,0l9.4-25
L410.5,87.5z" />
<path id="XMLID_6537_" class="st0" d="M497.4,17.7l-57.2,0l3.4,11.9l0,65.6l-3.3,11.9l57.3,0L518,88.9l-0.1-53L497.4,17.7z
M492,79.7l-2.9,5.2l-5.9,2.6l-14.2,0l-0.1-51.3l14.3,0l5.9,2.6l2.9,5.2L492,79.7z" />
<path id="XMLID_6534_" class="st0" d="M163.1,136.2l-41.3,0l-20.7,19.9l-0.2,67.6l20.6,20l41.3,0l20.7-20l0.1-67.6L163.1,136.2z
M148.7,223.7h-12.7l-6.3-3.1l-3.2-6.1l0.1-50.6l3.2-6.1l6.3-3.1l12.7,0l6.3,3.1l3.2,6.1l-0.1,50.6l-3.2,6.1L148.7,223.7z" />
<path id="XMLID_6531_" class="st0" d="M284,229l-11.9-31.5l17.5-16.9l0-26.1l-19-18.4l-65.1,0l3.2,12.3l-0.1,82.8l-3.2,12.3h30.2
l-3.2-12.3l-0.1-29.2l16.8,0l13.5,41.5l31.8,0L284,229z M232.4,183.8l0-29.1l20.7,0l8,3.8l3.1,6.1l0,9.2l-3.2,6.1l-8,3.8H232.4z" />
<path id="XMLID_6529_" class="st0" d="M367.7,223.6l-29.5,0l-0.7-29.2l15.1,0l11.9,3.8l0-26.1l-11.9,3.8l-15.1,0.1l-0.1-21.5
l30.2,0l14.3,4.6l-7.9-23l-63.5,0l3.2,12.3l0,82.8l-3.2,12.3l65.1,0l8.7-25.3L367.7,223.6z" />
<path id="XMLID_6527_" class="st0" d="M460.2,180.7l-28.2-5.4l-5.6-5.4l0-6.1l3.2-6.1l6.3-3.1l23.4,0l14.3,4.6l-8-23l-44,0
L401,156.1l0,23l15.1,14.6l28.2,5.4l5.6,5.4l0,10l-3.2,6.1l-9.1,3.1l-23.6,0l-16.2-5.4l8.7,25.3l48.1,0l20.6-20l0-28.4L460.2,180.7
z" />
<path id="XMLID_6525_" class="st0" d="M556.5,154.5l15,5.4l-7.1-23.7l-71.4,0l-7.1,23.7l15-5.4l15.9,0l0.1,75.2l-4.8,13.8l33.3,0
l-4.8-13.8l-0.1-75.2L556.5,154.5z" />
<path id="XMLID_6523_" class="st0" d="M641.7,223.7l-29.5,0l-0.8-29.2l15.1,0l11.9,3.8l-0.1-26.1l-11.9,3.8l-15.1,0.1l-0.1-21.5
l30.2,0l14.3,4.6l-8-23l-63.5,0l3.2,12.3l0.2,82.8l-3.2,12.3l65.1,0l8.7-25.3L641.7,223.7z" />
<path id="XMLID_6520_" class="st0" d="M753.3,229l-12-31.5l17.4-16.9l-0.1-26.1l-19.1-18.4l-65.1,0l3.2,12.3l0.3,82.8l-3.1,12.3
l30.2,0l-3.2-12.3l-0.2-29.2l16.8,0l13.7,41.5l31.8,0L753.3,229z M701.4,183.8l-0.1-29.1H722l8,3.8l3.2,6.1l0,9.2l-3.1,6.1
l-7.9,3.8L701.4,183.8z" />
</g>
<g id="XMLID_6490_">
<path id="XMLID_6512_" class="st1" d="M725.7,188.2L725.7,188.2L725.7,188.2L725.7,188.2z M589,139.8l0.3,0L589,139.8L589,139.8z" />
<polygon id="XMLID_6511_" class="st1" points="281.6,103.7 263,85.7 263.1,21.3 281.7,3.3 285.2,3.3 265.7,22.2 265.6,85.4
284.5,103.7 " />
<polygon id="XMLID_6510_" class="st1" points="322.5,79.7 319.1,87 308,90.6 308,90.6 308.7,90.3 315,87.2 316,86.7 316.5,85.7
319.7,79.6 320.1,78.8 320.1,26.6 319.7,25.8 316.6,19.7 316.1,18.7 315.1,18.2 310,15.8 318.8,19.1 322.7,26.5 " />
<polygon id="XMLID_6509_" class="st1" points="365.8,21 368.5,21 370.8,29.7 370.6,96.3 368.6,103.6 365.8,103.6 368.1,95.6
368.1,29 " />
<polygon id="XMLID_6508_" class="st1" points="449.7,96.2 447.7,103.6 444.8,103.6 446.9,96.1 447.1,95.6 447,29 446.9,28.6
444.8,21 447.6,21 449.8,29.6 " />
<polygon id="XMLID_6507_" class="st1" points="498,81.1 494.2,87.7 484,90.8 484,90.8 491.5,87.5 495,81.3 495.4,80.5 495.4,42.9
494.9,42.1 492,36.9 491.5,35.9 490.5,35.5 485,33.1 485.1,33.1 494.1,36 498,42.8 " />
<polygon id="XMLID_6506_" class="st1" points="123.1,240.1 104.5,222.1 104.7,157.5 123.3,139.5 126.8,139.5 107.2,158.2
107.1,221.6 126.3,240.1 " />
<polygon id="XMLID_6505_" class="st1" points="164.1,215.9 160.6,223.2 149.6,226.9 149.6,226.9 157.6,223.1 161.3,215.9
161.7,215.2 161.8,162.8 161.4,162.1 158.2,156 157.7,155 156.7,154.5 150.4,151.4 150.2,151.3 160.5,155.2 164.4,162.6 " />
<polygon id="XMLID_6504_" class="st1" points="214.7,231.5 212.6,240.1 209.9,240.1 211.9,232.1 212.1,231.7 212.3,147.9
212.2,147.5 210.1,139.5 212.8,139.5 214.9,148 " />
<polygon id="XMLID_6503_" class="st1" points="265.1,240.1 252.4,200.9 251.8,198.8 251.9,198.8 251.9,198.9 254.4,198.9
267.8,240.1 " />
<polygon id="XMLID_6502_" class="st1" points="270.4,175.1 266.4,182.8 254.3,187 254.3,187 262.7,182.9 263.7,182.4 264.2,181.4
267.4,175.3 267.8,174.5 267.8,163.6 267.4,162.9 264.3,156.7 263.7,155.7 262.7,155.2 254.9,151.5 254.9,151.5 266.5,156
270.4,163.6 " />
<polygon id="XMLID_6501_" class="st1" points="316.9,147.5 314.9,139.5 317.4,139.5 317.5,139.9 319.7,148 319.6,231.9
317.5,240.1 314.8,240.1 316.9,232.1 317,231.7 317.1,147.9 " />
<polygon id="XMLID_6500_" class="st1" points="404.5,177.5 404.5,157.5 423.1,139.5 426.7,139.5 426.3,139.9 407.1,158.3
407.1,177.2 421.9,191.2 417.8,190.4 " />
<polygon id="XMLID_6499_" class="st1" points="447.9,223.7 449.2,223.3 449.8,222.1 453,215.9 453.4,215.2 453.4,202.9
452.3,201.8 446.8,196.5 446.6,196.3 447.7,196.6 456,202.5 456,215.8 451.4,224.7 440.6,227.3 438.5,226.9 438.8,226.8 " />
<polygon id="XMLID_6498_" class="st1" points="403.4,223.5 406.3,224.5 411.7,240.1 409.1,240.1 " />
<polygon id="XMLID_6497_" class="st1" points="495.4,139.5 498.1,139.5 498,139.9 494,153.3 491,154.4 " />
<polygon id="XMLID_6496_" class="st1" points="520,230.8 520.2,230.3 520.1,151.3 520.2,151.3 520.2,151.3 522.7,151.3
522.8,230.3 519.6,240.1 516.8,240.1 " />
<polygon id="XMLID_6495_" class="st1" points="590.9,147.5 588.8,139.5 591.5,139.5 593.7,147.9 593.9,231.8 591.8,240.1
589,240.1 591,232.1 591.1,231.7 591,147.9 " />
<polygon id="XMLID_6494_" class="st1" points="684,231.5 681.9,240.1 679.2,240.1 681.3,232.1 681.4,231.7 681.2,147.9
681.1,147.5 679,139.5 681.6,139.5 683.9,148 " />
<polygon id="XMLID_6493_" class="st1" points="734.5,240.1 721.6,200.9 721,198.8 721,198.8 721.1,198.9 723.6,198.9 737.1,240.1
" />
<polygon id="XMLID_6492_" class="st1" points="739.5,175.1 735.5,182.8 723.4,187 723.4,187 731.8,182.9 732.8,182.4 733.3,181.4
736.4,175.3 736.8,174.5 736.8,163.6 736.4,162.9 733.2,156.7 732.7,155.7 731.7,155.2 723.9,151.5 723.9,151.5 735.5,156
739.5,163.6 " />
<polygon id="XMLID_6491_" class="st1" points="18.3,126.5 15.5,115.8 18.2,115.8 20.8,126.4 20.7,228.9 17.9,240.2 15.2,240.2
18,229.5 18.1,229.1 18.4,126.9 " />
</g>
<g>
<g id="XMLID_6549_">
<polygon id="XMLID_7150_" class="st1" points="14.1,247.3 22.1,255 24.1,255 16.2,247.3 " />
<polygon id="XMLID_7149_" class="st1" points="19.8,247.3 27.7,255 29.9,255 22,247.3 " />
<polygon id="XMLID_7148_" class="st1" points="25.6,247.3 33.5,255 35.7,255 27.8,247.3 " />
<polygon id="XMLID_6590_" class="st1" points="31.3,247.3 39.2,255 41.5,255 33.6,247.3 " />
<polygon id="XMLID_6589_" class="st1" points="37.1,247.3 45,255 47.2,255 39.4,247.3 " />
<polygon id="XMLID_6588_" class="st1" points="42.9,247.3 50.8,255 53,255 45.1,247.3 " />
<polygon id="XMLID_6587_" class="st1" points="48.7,247.3 56.6,255 58.8,255 50.9,247.3 " />
<polygon id="XMLID_6586_" class="st1" points="51.4,242.1 52.1,245 62.4,255 62.4,255 61.6,252.1 " />
<polygon id="XMLID_6585_" class="st1" points="60.4,247.5 59.7,244.6 49.5,234.5 50.2,237.5 " />
<polygon id="XMLID_6584_" class="st1" points="47.5,227 48.3,229.9 58.5,239.9 57.8,237 " />
<polygon id="XMLID_6583_" class="st1" points="55.8,229.5 46.9,220.7 46.9,222.9 56.6,232.4 " />
<polygon id="XMLID_6582_" class="st1" points="54.3,223.4 54.3,222.3 47,215.1 47,217.3 54.7,224.8 " />
<polygon id="XMLID_6581_" class="st1" points="54.4,216.7 47,209.5 47,211.7 54.3,218.8 " />
<polygon id="XMLID_6580_" class="st1" points="54.4,211.1 47.1,203.9 47.1,206 54.4,213.2 " />
<polygon id="XMLID_6579_" class="st1" points="54.5,205.4 47.1,198.3 47.1,200.4 54.4,207.6 " />
<polygon id="XMLID_6578_" class="st1" points="54.5,199.8 47.2,192.7 47.2,194.8 54.5,202 " />
<polygon id="XMLID_6577_" class="st1" points="49.1,191 57,198.8 59.2,198.8 51.3,191 " />
<polygon id="XMLID_6576_" class="st1" points="54.9,191 64,200 67.3,201 57.1,191 " />
<polygon id="XMLID_6575_" class="st1" points="61.3,191 60.6,191 72.6,202.7 75.9,203.8 63.6,191.8 " />
<polygon id="XMLID_6574_" class="st1" points="68.9,193.5 81.2,205.5 84.5,206.6 72.2,194.5 " />
<polygon id="XMLID_6573_" class="st1" points="79.9,196.4 79.9,197 77.5,196.2 87.3,205.9 87.3,203.7 " />
<polygon id="XMLID_6572_" class="st1" points="87.3,200.2 87.3,198 80,190.8 79.9,193 " />
<polygon id="XMLID_6571_" class="st1" points="80,185.2 80,187.3 87.3,194.6 87.3,192.4 " />
<polygon id="XMLID_6570_" class="st1" points="80,179.5 80,181.7 87.4,188.9 87.4,186.7 " />
<polygon id="XMLID_6569_" class="st1" points="80,173.9 80,176 87.4,183.3 87.4,181.1 " />
<polygon id="XMLID_6568_" class="st1" points="80,168.2 80,170.4 87.4,177.6 87.4,175.4 " />
<polygon id="XMLID_6567_" class="st1" points="80,162.6 80,164.8 87.4,172 87.4,169.8 " />
<polygon id="XMLID_6566_" class="st1" points="47.3,159.5 47.3,161.7 50.5,164.9 52.7,164.9 " />
<polygon id="XMLID_6565_" class="st1" points="47.3,153.9 47.3,156.1 54.7,163.3 54.7,161.1 " />
<polygon id="XMLID_6564_" class="st1" points="54.7,157.7 54.7,155.5 47.3,148.3 47.3,150.4 " />
<polygon id="XMLID_6563_" class="st1" points="47.4,142.6 47.4,144.8 54.7,152 54.7,149.8 " />
<polygon id="XMLID_6562_" class="st1" points="54.7,146.4 54.7,146.3 56.9,146.3 49,138.6 47.4,138.6 47.4,139.2 " />
<polygon id="XMLID_6561_" class="st1" points="62.6,146.3 54.8,138.6 52.5,138.6 60.4,146.3 " />
<polygon id="XMLID_6560_" class="st1" points="68.4,146.3 60.5,138.6 58.3,138.6 66.2,146.3 " />
<polygon id="XMLID_6559_" class="st1" points="74.2,146.3 66.3,138.6 64.1,138.6 72,146.3 " />
<polygon id="XMLID_6558_" class="st1" points="78.8,146.3 80.5,146.8 72.1,138.6 69.8,138.6 77.7,146.3 " />
<polygon id="XMLID_6557_" class="st1" points="75.6,138.6 85.8,148.5 88.7,149.5 89.1,149.6 77.8,138.6 " />
<polygon id="XMLID_6556_" class="st1" points="82.1,139.3 93.8,150.7 96.8,151.5 85.4,140.3 " />
<polygon id="XMLID_6555_" class="st1" points="94,143.1 90.7,142 101.5,152.6 104.2,153.3 104.3,153.2 " />
<polygon id="XMLID_6554_" class="st1" points="102.6,145.9 99.3,144.8 106.1,151.4 107.2,150.3 " />
<polygon id="XMLID_6553_" class="st1" points="101,138.6 102.1,141.9 109,148.6 110.1,147.5 " />
<polygon id="XMLID_6552_" class="st1" points="99.2,133.3 110.2,144.1 109.2,141 98,130.1 " />
<polygon id="XMLID_6551_" class="st1" points="96.2,124.8 107.5,135.9 106.5,132.7 95.1,121.5 " />
<polygon id="XMLID_6550_" class="st1" points="104.9,127.7 103.9,124.6 92.3,113.3 93.3,116.3 " />
</g>
<g id="XMLID_6068_">
<g id="XMLID_6443_">
<polygon id="XMLID_6489_" class="st1" points="341.6,223.1 342.2,223.6 344.4,223.6 341.6,220.8 " />
<polygon id="XMLID_6488_" class="st1" points="341.5,217.3 348,223.6 348.8,223.6 348.8,222.3 341.5,215.1 " />
<polygon id="XMLID_6487_" class="st1" points="341.4,211.5 348.8,218.8 348.8,216.6 341.4,209.3 " />
<polygon id="XMLID_6486_" class="st1" points="341.3,205.8 348.8,213.1 348.8,211 341.2,203.6 " />
<polygon id="XMLID_6485_" class="st1" points="341.1,198.1 341.2,200 348.7,207.4 348.7,205.8 349.4,205.8 341.4,198.1 " />
<polygon id="XMLID_6484_" class="st1" points="345,198.1 353.6,206.5 356.6,207.3 347.2,198.1 " />
<polygon id="XMLID_6483_" class="st1" points="352.1,198.1 350.8,198.1 361.3,208.4 364.3,209.2 353.5,198.6 " />
<polygon id="XMLID_6482_" class="st1" points="358.8,200.3 369.1,210.4 372.1,211.1 362.1,201.4 " />
<polygon id="XMLID_6481_" class="st1" points="368,203.3 367.4,203.1 375.4,210.9 375.4,208.7 368,201.5 " />
<polygon id="XMLID_6480_" class="st1" points="368,198 375.4,205.3 375.4,203.1 368,195.9 " />
<polygon id="XMLID_6479_" class="st1" points="368,192.4 375.4,199.6 375.4,197.4 368,190.2 " />
<polygon id="XMLID_6478_" class="st1" points="368,186.8 375.4,194 375.4,191.8 368,184.6 " />
<polygon id="XMLID_6477_" class="st1" points="368,181.1 375.4,188.3 375.4,186.2 368,178.9 " />
<polygon id="XMLID_6476_" class="st1" points="368,175.5 375.4,182.7 375.4,180.5 368,173.3 " />
<polygon id="XMLID_6475_" class="st1" points="314.3,247.2 320.2,253 322.3,255 324.5,255 316.6,247.2 " />
<polygon id="XMLID_6474_" class="st1" points="320.1,247.2 328,255 330.3,255 322.4,247.2 " />
<polygon id="XMLID_6473_" class="st1" points="325.9,247.2 333.8,255 336,255 328.1,247.2 " />
<polygon id="XMLID_6472_" class="st1" points="331.7,247.2 339.6,255 341.8,255 333.9,247.2 " />
<polygon id="XMLID_6471_" class="st1" points="337.5,247.2 345.4,255 347.6,255 339.7,247.2 " />
<polygon id="XMLID_6470_" class="st1" points="343.2,247.2 351.2,255 353.4,255 345.5,247.2 " />
<polygon id="XMLID_6469_" class="st1" points="349,247.2 356.9,255 359.2,255 351.3,247.2 " />
<polygon id="XMLID_6468_" class="st1" points="354.8,247.2 362.7,255 364.9,255 357,247.2 " />
<polygon id="XMLID_6467_" class="st1" points="360.6,247.2 368.5,255 370.7,255 362.8,247.2 " />
<polygon id="XMLID_6466_" class="st1" points="366.4,247.2 374.3,255 376.5,255 368.6,247.2 " />
<polygon id="XMLID_6465_" class="st1" points="372.1,247.2 380.1,255 382.3,255 374.4,247.2 " />
<polygon id="XMLID_6464_" class="st1" points="378.1,247.2 377.9,247.2 383.9,253.1 384.5,251.5 378.6,245.7 " />
<polygon id="XMLID_6463_" class="st1" points="379.5,243.1 385.4,248.9 385.9,247.2 380.1,241.5 " />
<polygon id="XMLID_6462_" class="st1" points="381,238.9 386.8,244.6 387.4,243 381.5,237.3 " />
<polygon id="XMLID_6461_" class="st1" points="382.4,234.7 388.3,240.4 388.9,238.8 383,233.1 " />
<polygon id="XMLID_6460_" class="st1" points="383.9,230.5 389.7,236.2 390.3,234.6 384.4,228.8 " />
<polygon id="XMLID_6459_" class="st1" points="385.3,226.3 391.2,232 391.8,230.4 385.9,224.6 " />
<polygon id="XMLID_6458_" class="st1" points="392.7,227.8 393.1,226.6 387.2,221 386.8,222 " />
<polygon id="XMLID_6457_" class="st1" points="341,176.1 342,176.1 341,175.1 " />
<polygon id="XMLID_6456_" class="st1" points="341,171.7 345.5,176.1 347.8,176.1 341,169.5 " />
<polygon id="XMLID_6455_" class="st1" points="341,166 348.8,173.6 348.8,171.5 341,163.8 " />
<polygon id="XMLID_6454_" class="st1" points="341,158.2 341,160.3 348.8,168 348.8,167.3 350.3,167.3 341.1,158.2 " />
<polygon id="XMLID_6453_" class="st1" points="344.6,158.2 353.9,167.3 356.1,167.3 346.9,158.2 " />
<polygon id="XMLID_6452_" class="st1" points="350.4,158.2 359.7,167.3 361.9,167.3 352.6,158.2 " />
<polygon id="XMLID_6451_" class="st1" points="356.2,158.2 365.4,167.3 367.7,167.3 358.4,158.2 " />
<polygon id="XMLID_6450_" class="st1" points="361.9,158.2 371.5,167.6 374.7,168.6 364.2,158.2 " />
<polygon id="XMLID_6449_" class="st1" points="368,158.5 379.8,170.1 383.1,171.1 371.3,159.6 " />
<polygon id="XMLID_6448_" class="st1" points="376.6,161.3 388.2,172.6 391.4,173.6 379.9,162.4 " />
<polygon id="XMLID_6447_" class="st1" points="387.7,164.9 385.2,164.1 396.4,175 395.7,172.1 387.4,164 " />
<polygon id="XMLID_6446_" class="st1" points="385.6,158.8 394.6,167.6 393.9,164.7 384.4,155.5 " />
<polygon id="XMLID_6445_" class="st1" points="382.6,150.3 392.8,160.2 392.1,157.3 381.5,147 " />
<polygon id="XMLID_6444_" class="st1" points="379.7,141.8 391,152.8 390.3,149.9 378.6,138.5 " />
</g>
<polygon id="XMLID_6442_" class="st1" points="364.7,172.3 364.5,172.2 364.5,172.3 " />
<g id="XMLID_6399_">
<polygon id="XMLID_6441_" class="st1" points="130,218 135.8,223.7 135.9,223.7 137.3,223.7 137.3,223 130,215.8 " />
<polygon id="XMLID_6440_" class="st1" points="130,212.3 137.3,219.5 137.3,217.4 130,210.1 " />
<polygon id="XMLID_6439_" class="st1" points="130,206.7 137.4,213.9 137.4,211.7 130,204.5 " />
<polygon id="XMLID_6438_" class="st1" points="130,201 137.4,208.3 137.4,206.1 130,198.9 " />
<polygon id="XMLID_6437_" class="st1" points="130,195.4 137.4,202.6 137.4,200.4 130,193.2 " />
<polygon id="XMLID_6436_" class="st1" points="130,189.7 137.4,197 137.4,194.8 130,187.6 " />
<polygon id="XMLID_6435_" class="st1" points="130,184.1 137.4,191.3 137.4,189.1 130,181.9 " />
<polygon id="XMLID_6434_" class="st1" points="130.1,178.5 137.4,185.7 137.4,183.5 130.1,176.3 " />
<polygon id="XMLID_6433_" class="st1" points="130.1,172.8 137.4,180 137.4,177.9 130.1,170.6 " />
<polygon id="XMLID_6432_" class="st1" points="130.1,167.2 137.5,174.4 137.5,172.2 130.1,165 " />
<polygon id="XMLID_6431_" class="st1" points="131.2,162.6 137.5,168.8 137.5,166.7 137.5,166.6 131.9,161.2 " />
<polygon id="XMLID_6430_" class="st1" points="134,159.7 140.5,166 142.7,166 135.5,159 " />
<polygon id="XMLID_6429_" class="st1" points="138.3,158.3 146.3,166 148.5,166 140.6,158.3 " />
<polygon id="XMLID_6428_" class="st1" points="144.1,158.3 152,166 154.3,166 146.3,158.3 " />
<polygon id="XMLID_6427_" class="st1" points="149.9,158.3 157.8,166 158.3,166 158.3,164.4 152.1,158.3 " />
<polygon id="XMLID_6426_" class="st1" points="125.3,247.3 126.4,248.4 133.2,255.1 135.4,255.1 127.5,247.3 " />
<polygon id="XMLID_6425_" class="st1" points="131,247.3 139,255.1 141.2,255.1 133.3,247.3 " />
<polygon id="XMLID_6424_" class="st1" points="136.8,247.3 144.8,255.1 147,255.1 139.1,247.3 " />
<polygon id="XMLID_6423_" class="st1" points="142.6,247.3 150.5,255.1 152.8,255.1 144.8,247.3 " />
<polygon id="XMLID_6422_" class="st1" points="148.4,247.3 156.3,255.1 158.5,255.1 150.6,247.3 " />
<polygon id="XMLID_6421_" class="st1" points="154.2,247.3 162.1,255.1 164.3,255.1 156.4,247.3 " />
<polygon id="XMLID_6420_" class="st1" points="159.9,247.3 167.9,255.1 169.6,255.1 169.8,254.8 162.2,247.3 " />
<polygon id="XMLID_6419_" class="st1" points="165,246.6 171.6,253.1 172.7,252 166.1,245.6 " />
<polygon id="XMLID_6418_" class="st1" points="167.9,243.8 174.5,250.3 175.6,249.2 169,242.7 " />
<polygon id="XMLID_6417_" class="st1" points="170.8,241 177.4,247.5 178.6,246.4 172,239.9 " />
<polygon id="XMLID_6416_" class="st1" points="173.7,238.2 180.3,244.7 181.5,243.6 174.9,237.1 " />
<polygon id="XMLID_6415_" class="st1" points="176.7,235.4 183.2,241.9 184.4,240.8 177.8,234.3 " />
<polygon id="XMLID_6414_" class="st1" points="179.6,232.6 186.1,239 187.3,237.9 180.7,231.5 " />
<polygon id="XMLID_6413_" class="st1" points="182.5,229.8 189,236.2 190.2,235.1 183.6,228.7 " />
<polygon id="XMLID_6412_" class="st1" points="185.4,227 191.9,233.4 193.1,232.3 186.5,225.9 " />
<polygon id="XMLID_6411_" class="st1" points="187.1,223 194.5,230.3 194.5,228.1 187.1,220.9 " />
<polygon id="XMLID_6410_" class="st1" points="187.1,217.4 194.5,224.6 194.5,222.4 187.1,215.2 " />
<polygon id="XMLID_6409_" class="st1" points="187.2,211.7 194.5,219 194.5,216.8 187.2,209.6 " />
<polygon id="XMLID_6408_" class="st1" points="187.2,206.1 194.6,213.3 194.6,211.2 187.2,203.9 " />
<polygon id="XMLID_6407_" class="st1" points="187.2,200.4 194.6,207.7 194.6,205.5 187.2,198.3 " />
<polygon id="XMLID_6406_" class="st1" points="187.2,194.8 194.6,202 194.6,199.9 187.2,192.6 " />
<polygon id="XMLID_6405_" class="st1" points="187.2,189.2 194.6,196.4 194.6,194.2 187.2,187 " />
<polygon id="XMLID_6404_" class="st1" points="187.2,183.5 194.6,190.8 194.6,188.6 187.2,181.3 " />
<polygon id="XMLID_6403_" class="st1" points="187.2,177.9 194.6,185.1 194.6,182.9 187.2,175.7 " />
<polygon id="XMLID_6402_" class="st1" points="187.2,172.2 194.6,179.5 194.6,177.3 187.2,170.1 " />
<polygon id="XMLID_6401_" class="st1" points="187.2,166.6 194.6,173.8 194.6,171.7 187.2,164.4 " />
<polygon id="XMLID_6400_" class="st1" points="187.3,161 194.7,168.2 194.7,166 187.3,158.8 " />
</g>
<g id="XMLID_6356_">
<polygon id="XMLID_6398_" class="st1" points="294.4,87.3 295.8,87.3 295.8,86.5 288.4,79.4 288.4,81.5 294.2,87.2 " />
<polygon id="XMLID_6397_" class="st1" points="295.8,80.9 288.4,73.7 288.4,75.9 295.8,83.1 " />
<polygon id="XMLID_6396_" class="st1" points="295.8,75.3 288.4,68.1 288.4,70.3 295.8,77.5 " />
<polygon id="XMLID_6395_" class="st1" points="295.8,69.7 288.4,62.5 288.4,64.6 295.8,71.8 " />
<polygon id="XMLID_6394_" class="st1" points="295.8,64 288.4,56.8 288.4,59 295.8,66.2 " />
<polygon id="XMLID_6393_" class="st1" points="295.8,58.4 288.5,51.2 288.5,53.4 295.8,60.6 " />
<polygon id="XMLID_6392_" class="st1" points="295.8,52.8 288.5,45.6 288.5,47.7 295.8,55 " />
<polygon id="XMLID_6391_" class="st1" points="295.8,47.2 288.5,40 288.5,42.1 295.8,49.3 " />
<polygon id="XMLID_6390_" class="st1" points="295.8,41.5 288.5,34.3 288.5,36.5 295.8,43.7 " />
<polygon id="XMLID_6389_" class="st1" points="295.8,35.9 288.5,28.7 288.5,30.9 295.8,38.1 " />
<polygon id="XMLID_6388_" class="st1" points="295.9,30.4 295.9,30.3 290.3,24.9 289.6,26.3 295.9,32.4 " />
<polygon id="XMLID_6387_" class="st1" points="301.1,29.7 293.8,22.7 292.4,23.4 298.9,29.7 " />
<polygon id="XMLID_6386_" class="st1" points="306.8,29.7 298.9,22 296.7,22 304.6,29.7 " />
<polygon id="XMLID_6385_" class="st1" points="312.6,29.7 304.7,22 302.5,22 310.4,29.7 " />
<polygon id="XMLID_6384_" class="st1" points="316.7,29.7 316.7,28.1 310.4,22 308.2,22 316.2,29.7 " />
<polygon id="XMLID_6383_" class="st1" points="284.9,111.9 291.7,118.6 293.9,118.6 286,110.8 283.8,110.8 " />
<polygon id="XMLID_6382_" class="st1" points="297.5,118.6 299.7,118.6 291.8,110.8 289.6,110.8 " />
<polygon id="XMLID_6381_" class="st1" points="303.3,118.6 305.5,118.6 297.6,110.8 295.3,110.8 " />
<polygon id="XMLID_6380_" class="st1" points="309,118.6 311.3,118.6 303.3,110.8 301.1,110.8 " />
<polygon id="XMLID_6379_" class="st1" points="314.8,118.6 317,118.6 309.1,110.8 306.9,110.8 " />
<polygon id="XMLID_6378_" class="st1" points="320.6,118.6 322.8,118.6 314.9,110.8 312.6,110.8 " />
<polygon id="XMLID_6377_" class="st1" points="326.4,118.6 328,118.6 328.3,118.3 320.6,110.8 318.4,110.8 " />
<polygon id="XMLID_6376_" class="st1" points="330.1,116.6 331.2,115.5 324.6,109 323.5,110.1 " />
<polygon id="XMLID_6375_" class="st1" points="333,113.8 334.1,112.7 327.5,106.2 326.4,107.3 " />
<polygon id="XMLID_6374_" class="st1" points="335.9,111 337,109.9 330.4,103.4 329.3,104.5 " />
<polygon id="XMLID_6373_" class="st1" points="338.8,108.1 339.9,107.1 333.3,100.6 332.2,101.7 " />
<polygon id="XMLID_6372_" class="st1" points="341.7,105.3 342.8,104.3 336.2,97.8 335.1,98.9 " />
<polygon id="XMLID_6371_" class="st1" points="344.6,102.5 345.7,101.4 339.1,95 338,96.1 " />
<polygon id="XMLID_6370_" class="st1" points="347.5,99.7 348.6,98.6 342,92.2 340.9,93.3 " />
<polygon id="XMLID_6369_" class="st1" points="350.4,96.9 351.5,95.8 344.9,89.4 343.8,90.5 " />
<polygon id="XMLID_6368_" class="st1" points="352.9,93.8 352.9,91.6 345.5,84.4 345.5,86.6 " />
<polygon id="XMLID_6367_" class="st1" points="352.9,88.2 352.9,86 345.5,78.8 345.5,80.9 " />
<polygon id="XMLID_6366_" class="st1" points="352.9,82.5 352.9,80.4 345.5,73.1 345.5,75.3 " />
<polygon id="XMLID_6365_" class="st1" points="352.9,76.9 352.9,74.7 345.5,67.5 345.5,69.7 " />
<polygon id="XMLID_6364_" class="st1" points="352.9,71.3 353,69.1 345.5,61.9 345.5,64.1 " />
<polygon id="XMLID_6363_" class="st1" points="353,65.7 353,63.5 345.5,56.3 345.5,58.4 " />
<polygon id="XMLID_6362_" class="st1" points="353,60 353,57.9 345.5,50.6 345.5,52.8 " />
<polygon id="XMLID_6361_" class="st1" points="353,54.4 353,52.3 345.5,45 345.5,47.2 " />
<polygon id="XMLID_6360_" class="st1" points="353,48.8 353,46.6 345.5,39.4 345.5,41.5 " />
<polygon id="XMLID_6359_" class="st1" points="353,43.2 353,41 345.5,33.8 345.5,35.9 " />
<polygon id="XMLID_6358_" class="st1" points="353,37.6 353,35.4 345.5,28.1 345.5,30.3 " />
<polygon id="XMLID_6357_" class="st1" points="353,32 353,29.8 345.5,22.5 345.5,24.7 " />
</g>
<g id="XMLID_6316_">
<polygon id="XMLID_6355_" class="st1" points="452.1,118.5 454.3,118.5 446.4,110.8 444.2,110.8 " />
<polygon id="XMLID_6354_" class="st1" points="457.8,118.5 460,118.5 452.1,110.8 449.9,110.8 " />
<polygon id="XMLID_6353_" class="st1" points="463.6,118.5 465.8,118.5 457.9,110.8 455.7,110.8 " />
<polygon id="XMLID_6352_" class="st1" points="469.4,118.5 471.6,118.5 463.7,110.8 461.4,110.8 " />
<polygon id="XMLID_6351_" class="st1" points="475.1,118.5 477.3,118.5 469.4,110.8 467.2,110.8 " />
<polygon id="XMLID_6350_" class="st1" points="480.9,118.5 483.1,118.5 475.2,110.8 473,110.8 " />
<polygon id="XMLID_6349_" class="st1" points="486.7,118.5 488.9,118.5 481,110.8 478.8,110.8 " />
<polygon id="XMLID_6348_" class="st1" points="492.4,118.5 494.7,118.5 486.8,110.8 484.5,110.8 " />
<polygon id="XMLID_6347_" class="st1" points="498.2,118.5 500.4,118.5 492.5,110.8 490.3,110.8 " />
<polygon id="XMLID_6346_" class="st1" points="503.9,118.5 505.1,117.5 498.3,110.8 496.1,110.8 " />
<polygon id="XMLID_6345_" class="st1" points="506.9,115.8 508.1,114.8 501.6,108.4 500.4,109.4 " />
<polygon id="XMLID_6344_" class="st1" points="509.9,113.1 511.1,112.1 504.6,105.7 503.4,106.7 " />
<polygon id="XMLID_6343_" class="st1" points="513,110.5 514.1,109.4 507.6,103 506.4,104 " />
<polygon id="XMLID_6342_" class="st1" points="516,107.8 517.1,106.8 510.6,100.3 509.5,101.4 " />
<polygon id="XMLID_6341_" class="st1" points="519,105.1 520.2,104.1 513.6,97.6 512.5,98.7 " />
<polygon id="XMLID_6340_" class="st1" points="522,102.4 523.2,101.4 516.7,95 515.5,96 " />
<polygon id="XMLID_6339_" class="st1" points="525,99.7 526.2,98.7 519.7,92.3 518.5,93.3 " />
<polygon id="XMLID_6338_" class="st1" points="521.5,90.6 528.1,97.1 528.9,96.3 528.9,95.7 521.5,88.5 521.5,90.6 " />
<polygon id="XMLID_6337_" class="st1" points="528.9,92.2 528.9,90 521.5,82.8 521.5,85 " />
<polygon id="XMLID_6336_" class="st1" points="528.9,86.6 528.9,84.4 521.5,77.2 521.5,79.4 " />
<polygon id="XMLID_6335_" class="st1" points="528.9,81 528.9,78.8 521.5,71.6 521.5,73.8 " />
<polygon id="XMLID_6334_" class="st1" points="528.9,75.3 528.9,73.2 521.5,66 521.5,68.1 " />
<polygon id="XMLID_6333_" class="st1" points="528.9,69.7 528.9,67.5 521.5,60.3 521.5,62.5 " />
<polygon id="XMLID_6332_" class="st1" points="528.9,64.1 528.9,61.9 521.5,54.7 521.5,56.9 " />
<polygon id="XMLID_6331_" class="st1" points="528.9,58.5 528.9,56.3 521.5,49.1 521.5,51.3 " />
<polygon id="XMLID_6330_" class="st1" points="528.9,52.8 528.9,50.7 521.5,43.5 521.5,45.6 " />
<polygon id="XMLID_6329_" class="st1" points="528.9,47.2 528.9,45 521.5,37.8 521.5,40 " />
<polygon id="XMLID_6328_" class="st1" points="472.4,87.5 474.4,87.5 472.4,85.6 " />
<polygon id="XMLID_6327_" class="st1" points="472.4,80 472.4,82.1 477.9,87.5 479.8,87.5 479.8,87.1 " />
<polygon id="XMLID_6326_" class="st1" points="479.8,81.5 472.4,74.3 472.4,76.5 479.8,83.7 " />
<polygon id="XMLID_6325_" class="st1" points="479.8,75.9 472.4,68.7 472.4,70.9 479.8,78 " />
<polygon id="XMLID_6324_" class="st1" points="479.8,70.2 472.4,63.1 472.4,65.2 479.8,72.4 " />
<polygon id="XMLID_6323_" class="st1" points="479.8,64.6 472.4,57.4 472.4,59.6 479.8,66.8 " />
<polygon id="XMLID_6322_" class="st1" points="479.8,59 472.4,51.8 472.4,54 479.8,61.2 " />
<polygon id="XMLID_6321_" class="st1" points="479.8,53.4 472.4,46.2 472.4,48.3 479.8,55.5 " />
<polygon id="XMLID_6320_" class="st1" points="479.7,47.7 472.3,40.5 472.4,42.7 479.7,49.9 " />
<polygon id="XMLID_6319_" class="st1" points="485.3,47.5 477.4,39.8 475.2,39.8 483.1,47.5 " />
<polygon id="XMLID_6318_" class="st1" points="491.1,47.5 483.2,39.8 480.9,39.8 488.8,47.5 " />
<polygon id="XMLID_6317_" class="st1" points="491.9,43.9 490.4,41.3 488.9,39.8 486.7,39.8 491.9,44.9 " />
</g>
<g id="XMLID_6276_">
<polygon id="XMLID_6315_" class="st1" points="424.6,199.1 434.5,208.8 437.3,209.3 427.3,199.6 " />
<polygon id="XMLID_6314_" class="st1" points="431.7,200.4 441.7,210.1 444.4,210.6 434.5,200.9 " />
<polygon id="XMLID_6313_" class="st1" points="438.9,201.8 448.8,211.4 449.9,211.7 449.9,210.3 441.7,202.3 " />
<polygon id="XMLID_6312_" class="st1" points="446.1,203.1 449.9,206.9 449.9,204.7 448.8,203.7 " />
<polygon id="XMLID_6311_" class="st1" points="429.9,170.4 435.6,176 438.4,176.5 429.9,168.3 429.9,168.4 " />
<polygon id="XMLID_6310_" class="st1" points="429.9,164.7 429.9,164.8 440.3,175 439,172.3 439.1,171.6 430.6,163.3 " />
<polygon id="XMLID_6309_" class="st1" points="432.1,160.5 431.8,161 439.9,168.9 440.3,167.2 440.4,167.2 433,160.1 " />
<polygon id="XMLID_6308_" class="st1" points="436.7,158.3 435.4,158.9 443,166.3 443.8,166 444.9,166 437,158.3 " />
<polygon id="XMLID_6307_" class="st1" points="440.6,158.3 448.5,166 450.7,166 442.8,158.3 " />
<polygon id="XMLID_6306_" class="st1" points="446.3,158.3 454.2,166 456.5,166 448.6,158.3 " />
<polygon id="XMLID_6305_" class="st1" points="452.1,158.3 460.9,166.8 463.9,167.6 454.3,158.3 " />
<polygon id="XMLID_6304_" class="st1" points="458.8,158.3 457.9,158.3 468.7,168.9 471.8,169.6 460.7,158.9 " />
<polygon id="XMLID_6303_" class="st1" points="466,160.6 476.6,170.9 479.6,171.7 469.4,161.7 " />
<polygon id="XMLID_6302_" class="st1" points="474.7,163.4 484.4,172.9 486.2,173.4 486,172.2 478,164.5 " />
<polygon id="XMLID_6301_" class="st1" points="477.9,161 485.2,168 484.7,165.3 476.8,157.7 " />
<polygon id="XMLID_6300_" class="st1" points="475,152.5 483.9,161.1 483.3,158.4 473.9,149.2 " />
<polygon id="XMLID_6299_" class="st1" points="472.1,144 482.5,154.2 482,151.5 470.9,140.7 " />
<polygon id="XMLID_6298_" class="st1" points="410.4,247.3 418.4,255 420.5,255 412.6,247.3 " />
<polygon id="XMLID_6297_" class="st1" points="416.1,247.3 424.1,255 426.3,255 418.4,247.3 " />
<polygon id="XMLID_6296_" class="st1" points="421.9,247.3 429.8,255 432.1,255 424.2,247.3 " />
<polygon id="XMLID_6295_" class="st1" points="427.7,247.3 435.6,255 437.9,255 429.9,247.3 " />
<polygon id="XMLID_6294_" class="st1" points="433.5,247.3 441.4,255 443.6,255 435.7,247.3 " />
<polygon id="XMLID_6293_" class="st1" points="439.3,247.3 447.2,255 449.4,255 441.5,247.3 " />
<polygon id="XMLID_6292_" class="st1" points="445,247.3 453,255 455.2,255 447.3,247.3 " />
<polygon id="XMLID_6291_" class="st1" points="450.8,247.3 458.7,255 459,255 461,255 453.1,247.3 " />
<polygon id="XMLID_6290_" class="st1" points="479,224 486.2,231.1 486.2,228.9 479,221.8 " />
<polygon id="XMLID_6289_" class="st1" points="478.8,218.2 486.2,225.4 486.2,223.2 478.8,216 " />
<polygon id="XMLID_6288_" class="st1" points="478.8,212.5 486.2,219.8 486.2,217.6 478.8,210.4 " />
<polygon id="XMLID_6287_" class="st1" points="478.8,206.9 486.2,214.1 486.2,212 478.8,204.7 " />
<polygon id="XMLID_6286_" class="st1" points="478.8,201.3 486.2,208.5 486.2,206.3 478.8,199.1 " />
<g id="XMLID_6277_">
<polygon id="XMLID_6285_" class="st1" points="456.3,247.2 463,253.6 464.1,252.6 457.5,246.1 " />
<polygon id="XMLID_6284_" class="st1" points="459.2,244.4 465.9,250.8 467,249.7 460.4,243.3 " />
<polygon id="XMLID_6283_" class="st1" points="462.1,241.6 468.8,248 469.9,246.9 463.3,240.5 " />
<polygon id="XMLID_6282_" class="st1" points="465.1,238.7 471.7,245.2 472.8,244.1 466.2,237.7 " />
<polygon id="XMLID_6281_" class="st1" points="468,235.9 474.6,242.4 475.7,241.3 469.1,234.9 " />
<polygon id="XMLID_6280_" class="st1" points="470.9,233.1 477.4,239.6 478.6,238.5 472,232 " />
<polygon id="XMLID_6279_" class="st1" points="473.8,230.3 480.3,236.7 481.5,235.7 474.9,229.2 " />
<polygon id="XMLID_6278_" class="st1" points="476.7,227.5 483.2,233.9 484.4,232.8 477.8,226.4 " />
</g>
</g>
<g id="XMLID_6240_">
<polygon id="XMLID_6275_" class="st1" points="515.9,247.2 523.8,255 526.1,255 518.1,247.2 " />
<polygon id="XMLID_6274_" class="st1" points="521.7,247.2 529.6,255 531.8,255 523.9,247.2 " />
<polygon id="XMLID_6273_" class="st1" points="527.5,247.2 535.4,255 537.6,255 529.7,247.2 " />
<polygon id="XMLID_6272_" class="st1" points="533.2,247.2 541.2,255 543.4,255 535.5,247.2 " />
<polygon id="XMLID_6271_" class="st1" points="539,247.2 546.9,255 549.2,255 541.2,247.2 " />
<polygon id="XMLID_6270_" class="st1" points="544.8,247.2 552.7,255 555,255 547,247.2 " />
<polygon id="XMLID_6269_" class="st1" points="550.4,247.1 558.5,255 560.7,255 549.2,243.8 " />
<polygon id="XMLID_6268_" class="st1" points="547.4,238.5 559.3,250.1 558.2,246.8 546.3,235.3 " />
<polygon id="XMLID_6267_" class="st1" points="544.2,229.1 544.5,230 556.4,241.6 555.2,238.3 544.2,227.5 " />
<polygon id="XMLID_6266_" class="st1" points="544.2,224.1 553.4,233.1 552.3,229.8 544.2,221.9 " />
<polygon id="XMLID_6265_" class="st1" points="544.2,218.4 551.6,225.7 551.6,223.5 544.2,216.3 " />
<polygon id="XMLID_6264_" class="st1" points="544.1,212.8 551.6,220 551.6,217.8 544.1,210.6 " />
<polygon id="XMLID_6263_" class="st1" points="544.1,207.1 551.5,214.4 551.5,212.2 544.1,205 " />
<polygon id="XMLID_6262_" class="st1" points="544.1,201.5 551.5,208.7 551.5,206.5 544.1,199.3 " />
<polygon id="XMLID_6261_" class="st1" points="544.1,195.9 551.5,203.1 551.5,200.9 544.1,193.7 " />
<polygon id="XMLID_6260_" class="st1" points="544.1,190.2 551.5,197.4 551.5,195.3 544.1,188 " />
<polygon id="XMLID_6259_" class="st1" points="544.1,184.6 551.5,191.8 551.5,189.6 544.1,182.4 " />
<polygon id="XMLID_6258_" class="st1" points="544.1,178.9 551.5,186.2 551.5,184 544.1,176.8 " />
<polygon id="XMLID_6257_" class="st1" points="544.1,173.3 551.5,180.5 551.5,178.3 544.1,171.1 " />
<polygon id="XMLID_6256_" class="st1" points="544.1,167.7 551.5,174.9 551.5,172.7 544.1,165.5 " />
<polygon id="XMLID_6255_" class="st1" points="544.1,162 551.5,169.2 551.5,167.1 544.1,159.9 " />
<polygon id="XMLID_6254_" class="st1" points="545.9,158.2 553.9,165.9 554.6,165.9 556.7,166.5 548.2,158.2 " />
<polygon id="XMLID_6253_" class="st1" points="551.7,158.2 561.7,167.9 564.8,168.8 553.9,158.2 " />
<polygon id="XMLID_6252_" class="st1" points="558.4,159.1 569.8,170.2 572.9,171.1 562,160.4 " />
<polygon id="XMLID_6251_" class="st1" points="567.6,162.4 577.9,172.5 581.1,173.4 571.1,163.7 " />
<polygon id="XMLID_6250_" class="st1" points="576.9,165.7 576.7,165.7 583,171.8 582.6,169.3 576,162.8 " />
<polygon id="XMLID_6249_" class="st1" points="574.5,157.9 582,165.2 581.6,162.6 573.6,154.9 " />
<polygon id="XMLID_6248_" class="st1" points="572.2,150 580.9,158.5 580.5,156 571.2,146.9 " />
<polygon id="XMLID_6247_" class="st1" points="569.8,142 579.9,151.9 579.5,149.3 568.9,139 " />
<polygon id="XMLID_6246_" class="st1" points="488.9,162.7 495.1,168.7 496.7,168.1 490.5,162.1 " />
<polygon id="XMLID_6245_" class="st1" points="493.2,161.2 499.3,167.2 500.9,166.6 494.8,160.6 " />
<polygon id="XMLID_6244_" class="st1" points="497.4,159.7 503.8,165.9 506,165.9 499,159.1 " />
<polygon id="XMLID_6243_" class="st1" points="501.7,158.2 509.6,165.9 511.8,165.9 503.9,158.2 " />
<polygon id="XMLID_6242_" class="st1" points="509.7,158.2 507.4,158.2 515.4,165.9 516.8,165.9 516.8,165.1 " />
<polygon id="XMLID_6241_" class="st1" points="516.8,159.5 515.4,158.2 513.2,158.2 516.8,161.7 " />
</g>
<g id="XMLID_6193_">
<polygon id="XMLID_6239_" class="st1" points="615.6,223.1 616.2,223.6 618.4,223.6 615.6,220.9 " />
<polygon id="XMLID_6238_" class="st1" points="615.5,217.3 621.9,223.6 622.8,223.6 622.8,222.3 615.4,215.1 " />
<polygon id="XMLID_6237_" class="st1" points="615.4,211.6 622.8,218.8 622.8,216.6 615.3,209.4 " />
<polygon id="XMLID_6236_" class="st1" points="615.2,205.8 622.8,213.2 622.8,211 615.2,203.6 " />
<polygon id="XMLID_6235_" class="st1" points="615,198.1 615.1,200.1 622.7,207.5 622.6,205.9 623.3,205.9 615.3,198.1 " />
<polygon id="XMLID_6234_" class="st1" points="618.9,198.1 627.5,206.5 630.5,207.3 621.1,198.2 " />
<polygon id="XMLID_6233_" class="st1" points="626,198.2 624.7,198.2 635.3,208.5 638.3,209.2 627.4,198.6 " />
<polygon id="XMLID_6232_" class="st1" points="632.7,200.3 643,210.4 646,211.2 636,201.4 " />
<polygon id="XMLID_6231_" class="st1" points="641.9,203.3 641.3,203.1 649.4,210.9 649.3,208.8 641.9,201.5 " />
<polygon id="XMLID_6230_" class="st1" points="641.9,198.1 649.3,205.3 649.3,203.1 641.9,195.9 " />
<polygon id="XMLID_6229_" class="st1" points="641.9,192.4 649.3,199.7 649.3,197.5 641.9,190.3 " />
<polygon id="XMLID_6228_" class="st1" points="641.9,186.8 649.3,194 649.3,191.8 641.9,184.6 " />
<polygon id="XMLID_6227_" class="st1" points="641.9,181.1 649.3,188.4 649.3,186.2 641.9,179 " />
<polygon id="XMLID_6226_" class="st1" points="641.9,175.5 649.3,182.7 649.3,180.6 641.9,173.3 " />
<polygon id="XMLID_6225_" class="st1" points="588.4,247.3 594.3,253.1 596.3,255 598.5,255 590.6,247.3 " />
<polygon id="XMLID_6224_" class="st1" points="594.2,247.3 602.1,255 604.3,255 596.4,247.3 " />
<polygon id="XMLID_6223_" class="st1" points="599.9,247.3 607.9,255 610.1,255 602.2,247.3 " />
<polygon id="XMLID_6222_" class="st1" points="605.7,247.3 613.7,255 615.9,255 608,247.3 " />
<polygon id="XMLID_6221_" class="st1" points="611.5,247.3 619.4,255 621.7,255 613.7,247.3 " />
<polygon id="XMLID_6220_" class="st1" points="617.3,247.3 625.2,255 627.4,255 619.5,247.3 " />
<polygon id="XMLID_6219_" class="st1" points="623.1,247.3 631,255 633.2,255 625.3,247.3 " />
<polygon id="XMLID_6218_" class="st1" points="628.8,247.3 636.8,255 639,255 631.1,247.3 " />
<polygon id="XMLID_6217_" class="st1" points="634.6,247.3 642.6,255 644.8,255 636.9,247.3 " />
<polygon id="XMLID_6216_" class="st1" points="640.4,247.3 648.3,255 650.6,255 642.6,247.3 " />
<polygon id="XMLID_6215_" class="st1" points="646.2,247.3 654.1,255 656.3,255 648.4,247.3 " />
<polygon id="XMLID_6214_" class="st1" points="652.1,247.3 652,247.3 658,253.1 658.5,251.5 652.7,245.8 " />
<polygon id="XMLID_6213_" class="st1" points="653.5,243.2 659.4,248.9 660,247.3 654.1,241.5 " />
<polygon id="XMLID_6212_" class="st1" points="655,239 660.9,244.7 661.4,243.1 655.5,237.3 " />
<polygon id="XMLID_6211_" class="st1" points="656.4,234.7 662.3,240.5 662.9,238.8 657,233.1 " />
<polygon id="XMLID_6210_" class="st1" points="657.9,230.5 663.8,236.2 664.3,234.6 658.4,228.9 " />
<polygon id="XMLID_6209_" class="st1" points="659.3,226.3 665.2,232 665.8,230.4 659.9,224.7 " />
<polygon id="XMLID_6208_" class="st1" points="666.7,227.8 667,226.7 661.1,221 660.8,222.1 " />
<polygon id="XMLID_6207_" class="st1" points="614.9,176.1 615.8,176.1 614.9,175.2 " />
<polygon id="XMLID_6206_" class="st1" points="614.9,171.7 619.4,176.1 621.6,176.1 614.8,169.5 " />
<polygon id="XMLID_6205_" class="st1" points="614.8,166 622.7,173.7 622.7,171.5 614.8,163.9 " />
<polygon id="XMLID_6204_" class="st1" points="614.8,158.3 614.8,160.4 622.7,168 622.7,167.3 624.1,167.3 614.9,158.3 " />
<polygon id="XMLID_6203_" class="st1" points="618.4,158.3 627.7,167.3 629.9,167.3 620.6,158.3 " />
<polygon id="XMLID_6202_" class="st1" points="624.2,158.3 633.5,167.3 635.7,167.3 626.4,158.3 " />
<polygon id="XMLID_6201_" class="st1" points="630,158.3 639.2,167.3 641.5,167.3 632.2,158.3 " />
<polygon id="XMLID_6200_" class="st1" points="635.7,158.3 645.3,167.6 648.6,168.6 638,158.3 " />
<polygon id="XMLID_6199_" class="st1" points="641.8,158.6 653.7,170.1 656.9,171.1 645.1,159.6 " />
<polygon id="XMLID_6198_" class="st1" points="650.4,161.3 662,172.6 665.2,173.6 653.7,162.4 " />
<polygon id="XMLID_6197_" class="st1" points="661.5,164.9 659,164.1 670.2,175 669.5,172.1 661.2,164 " />
<polygon id="XMLID_6196_" class="st1" points="659.4,158.8 668.4,167.6 667.7,164.8 658.2,155.5 " />
<polygon id="XMLID_6195_" class="st1" points="656.4,150.3 666.6,160.2 665.9,157.4 655.3,147 " />
<polygon id="XMLID_6194_" class="st1" points="653.5,141.8 664.8,152.8 664.1,150 652.3,138.5 " />
</g>
<polygon id="XMLID_6192_" class="st1" points="638.5,172.3 638.4,172.3 638.4,172.3 " />
<g id="XMLID_6161_">
<polygon id="XMLID_6191_" class="st1" points="372.9,118.3 373.1,118.5 375.3,118.5 367.4,110.8 365.2,110.8 " />
<polygon id="XMLID_6190_" class="st1" points="378.8,118.5 381.1,118.5 373.2,110.8 370.9,110.8 " />
<polygon id="XMLID_6189_" class="st1" points="384.6,118.5 386.8,118.5 378.9,110.8 376.7,110.8 " />
<polygon id="XMLID_6188_" class="st1" points="390.4,118.5 392.6,118.5 384.7,110.8 382.5,110.8 " />
<polygon id="XMLID_6187_" class="st1" points="396.2,118.5 398.4,118.5 390.5,110.8 388.3,110.8 " />
<polygon id="XMLID_6186_" class="st1" points="401.9,118.5 404.2,118.5 396.3,110.8 394,110.8 " />
<polygon id="XMLID_6185_" class="st1" points="407.7,118.5 409.9,118.5 402,110.8 399.8,110.8 " />
<polygon id="XMLID_6184_" class="st1" points="413.5,118.5 415.7,118.5 407.8,110.8 405.6,110.8 " />
<polygon id="XMLID_6183_" class="st1" points="419.2,118.5 421.5,118.5 413.6,110.8 411.3,110.8 " />
<polygon id="XMLID_6182_" class="st1" points="425,118.5 426.6,118.5 426.7,118 419.3,110.8 417.1,110.8 " />
<polygon id="XMLID_6181_" class="st1" points="392.8,87.1 393.2,87.5 395.4,87.5 392.8,84.9 " />
<polygon id="XMLID_6180_" class="st1" points="399,87.5 400.2,87.5 400.2,86.5 392.8,79.3 392.8,81.5 " />
<polygon id="XMLID_6179_" class="st1" points="427.7,115.5 428.3,113.9 422.5,108.2 421.9,109.8 " />
<polygon id="XMLID_6178_" class="st1" points="429.3,111.4 429.9,109.8 424,104.1 423.4,105.7 " />
<polygon id="XMLID_6177_" class="st1" points="400.2,83 400.2,80.9 392.8,73.7 392.8,75.8 " />
<polygon id="XMLID_6176_" class="st1" points="430.8,107.3 431.4,105.7 425.6,100 425,101.6 " />
<polygon id="XMLID_6175_" class="st1" points="400.2,77.4 400.2,75.2 392.8,68 392.8,70.2 " />
<polygon id="XMLID_6174_" class="st1" points="432.4,103.2 433,101.6 427.1,95.9 426.5,97.5 " />
<polygon id="XMLID_6173_" class="st1" points="400.2,71.8 400.2,69.6 392.8,62.4 392.8,64.6 " />
<polygon id="XMLID_6172_" class="st1" points="433.9,99 434.5,97.5 428.7,91.8 428.1,93.4 " />
<polygon id="XMLID_6171_" class="st1" points="400.2,66.2 400.2,64 392.8,56.8 392.8,59 " />
<polygon id="XMLID_6170_" class="st1" points="435.5,94.9 436.1,93.3 430.2,87.7 429.6,89.2 " />
<polygon id="XMLID_6169_" class="st1" points="400.2,60.5 400.2,58.4 392.8,51.2 392.8,53.3 " />
<polygon id="XMLID_6168_" class="st1" points="400.2,54.9 400.2,52.7 392.8,45.5 392.8,47.7 " />
<polygon id="XMLID_6167_" class="st1" points="437,90.8 437.6,89.2 434.6,86.3 431.8,83.6 431.2,85.1 " />
<polygon id="XMLID_6166_" class="st1" points="400.2,49.3 400.2,47.1 392.8,39.9 392.8,42.1 " />
<polygon id="XMLID_6165_" class="st1" points="400.2,43.7 400.2,41.5 392.8,34.3 392.8,36.5 " />
<polygon id="XMLID_6164_" class="st1" points="400.2,38 400.2,35.9 393.7,29.5 393.2,31.2 " />
<polygon id="XMLID_6163_" class="st1" points="400.5,32.7 401,31 394.9,25.1 394.5,26.8 " />
<polygon id="XMLID_6162_" class="st1" points="401.7,28.3 402.2,26.6 396.2,20.7 395.7,22.4 " />
</g>
<g id="XMLID_6115_">
<polygon id="XMLID_6160_" class="st1" points="209.5,247.3 217.4,255 219.6,255 211.7,247.3 " />
<polygon id="XMLID_6159_" class="st1" points="215.3,247.3 223.2,255 225.4,255 217.5,247.3 " />
<polygon id="XMLID_6158_" class="st1" points="221.1,247.3 229,255 231.2,255 223.3,247.3 " />
<polygon id="XMLID_6157_" class="st1" points="226.8,247.3 234.7,255 237,255 229.1,247.3 " />
<polygon id="XMLID_6156_" class="st1" points="232.6,247.3 240.5,255 242.8,255 234.8,247.3 " />
<polygon id="XMLID_6155_" class="st1" points="240.1,247.3 238.4,247.3 246.3,255 248.5,255 240,246.6 " />
<polygon id="XMLID_6154_" class="st1" points="238.8,242 249.1,252.1 248.3,249.2 238,239.1 " />
<polygon id="XMLID_6153_" class="st1" points="236.8,234.4 247.1,244.5 246.4,241.6 236.1,231.5 " />
<polygon id="XMLID_6152_" class="st1" points="235.9,227.9 245.2,237 244.5,234.1 235.9,225.7 " />
<polygon id="XMLID_6151_" class="st1" points="235.9,222.2 243.4,229.5 243.4,227.3 235.9,220 " />
<polygon id="XMLID_6150_" class="st1" points="235.9,216.5 243.4,223.9 243.4,221.7 235.9,214.3 " />
<polygon id="XMLID_6149_" class="st1" points="235.9,210.9 243.4,218.2 243.4,216 235.9,208.7 " />
<polygon id="XMLID_6148_" class="st1" points="236.5,205.8 244.6,213.7 246.8,213.7 238.7,205.8 " />
<polygon id="XMLID_6147_" class="st1" points="242.3,205.8 250.4,213.7 252.6,213.7 244.5,205.8 " />
<polygon id="XMLID_6146_" class="st1" points="248,205.8 251.3,209 250.2,205.8 " />
<polygon id="XMLID_6145_" class="st1" points="267.3,247.3 275.2,255 277.4,255 269.5,247.3 " />
<polygon id="XMLID_6144_" class="st1" points="273.1,247.3 281,255 283.2,255 275.3,247.3 " />
<polygon id="XMLID_6143_" class="st1" points="278.9,247.3 286.8,255 289,255 281.1,247.3 " />
<polygon id="XMLID_6142_" class="st1" points="284.6,247.3 292.5,255 294.8,255 286.9,247.3 " />
<polygon id="XMLID_6141_" class="st1" points="290.4,247.3 298.3,255 300.5,255 292.6,247.3 " />
<polygon id="XMLID_6140_" class="st1" points="296.2,247.3 304.1,255 306.3,255 298.4,247.3 " />
<polygon id="XMLID_6139_" class="st1" points="300.1,245.4 309.9,255 312.1,255 294.9,238.2 " />
<polygon id="XMLID_6138_" class="st1" points="287,227 308.5,248 304.6,242.1 285.7,223.5 " />
<polygon id="XMLID_6137_" class="st1" points="283.6,218 301.6,235.6 297.7,229.6 282.3,214.6 " />
<polygon id="XMLID_6136_" class="st1" points="280.3,209.1 293,221.5 291.6,218 279,205.6 " />
<polygon id="XMLID_6135_" class="st1" points="276.3,198.5 276.9,200.1 289.6,212.5 288.3,209.1 276.9,198 " />
<polygon id="XMLID_6134_" class="st1" points="278.7,196.2 286.2,203.6 285.1,200.6 285.2,200.5 279.8,195.1 " />
<polygon id="XMLID_6133_" class="st1" points="281.6,193.4 287,198.7 288.1,197.7 282.7,192.3 " />
<polygon id="XMLID_6132_" class="st1" points="284.5,190.6 289.9,195.9 291,194.8 285.6,189.5 " />
<polygon id="XMLID_6131_" class="st1" points="287.4,187.8 292.8,193.1 293.9,192 288.5,186.7 " />
<polygon id="XMLID_6130_" class="st1" points="290.3,185 295.7,190.3 296.9,189.2 291.4,183.9 " />
<polygon id="XMLID_6129_" class="st1" points="293.1,182.1 298.6,187.5 299.8,186.4 293.1,179.9 " />
<polygon id="XMLID_6128_" class="st1" points="293.1,176.5 300.5,183.7 300.5,181.5 293.1,174.3 " />
<polygon id="XMLID_6127_" class="st1" points="293.1,170.8 300.5,178 300.5,175.9 293.1,168.6 " />
<polygon id="XMLID_6126_" class="st1" points="293.1,165.2 300.5,172.4 300.5,170.2 293.1,163 " />
<polygon id="XMLID_6125_" class="st1" points="293.1,159.5 300.5,166.7 300.4,164.5 293.1,157.4 " />
<polygon id="XMLID_6124_" class="st1" points="235.9,182.6 237,183.8 239.3,183.8 235.9,180.4 " />
<polygon id="XMLID_6123_" class="st1" points="235.9,177 242.8,183.8 243.3,183.8 243.3,182.1 235.9,174.8 " />
<polygon id="XMLID_6122_" class="st1" points="235.9,171.3 243.3,178.6 243.3,176.4 235.9,169.2 " />
<polygon id="XMLID_6121_" class="st1" points="235.9,165.7 243.3,173 243.3,170.8 235.9,163.5 " />
<polygon id="XMLID_6120_" class="st1" points="235.9,158.3 235.9,160 243.3,167.3 243.3,166 244.2,166 236.3,158.3 " />
<polygon id="XMLID_6119_" class="st1" points="239.9,158.3 247.8,166 250,166 242.1,158.3 " />
<polygon id="XMLID_6118_" class="st1" points="245.6,158.3 253.5,166 255.8,166 247.9,158.3 " />
<polygon id="XMLID_6117_" class="st1" points="259.3,166 261.5,166 253.6,158.3 251.4,158.3 " />
<polygon id="XMLID_6116_" class="st1" points="259.4,158.3 257.2,158.3 264.3,165.2 264.3,164.6 262.7,161.4 " />
</g>
<g id="XMLID_6069_">
<polygon id="XMLID_6114_" class="st1" points="678.9,247.3 686.8,255 689,255 681.1,247.3 " />
<polygon id="XMLID_6113_" class="st1" points="684.7,247.3 692.6,255 694.8,255 686.9,247.3 " />
<polygon id="XMLID_6112_" class="st1" points="690.4,247.3 698.4,255 700.6,255 692.7,247.3 " />
<polygon id="XMLID_6111_" class="st1" points="696.2,247.3 704.2,255 706.4,255 698.4,247.3 " />
<polygon id="XMLID_6110_" class="st1" points="702,247.3 709.9,255 712.2,255 704.2,247.3 " />
<polygon id="XMLID_6109_" class="st1" points="709.5,247.3 707.8,247.3 715.7,255 717.9,255 709.3,246.6 " />
<polygon id="XMLID_6108_" class="st1" points="708.1,242 718.5,252.1 717.7,249.2 707.4,239.1 " />
<polygon id="XMLID_6107_" class="st1" points="706.2,234.4 716.5,244.5 715.7,241.6 705.4,231.5 " />
<polygon id="XMLID_6106_" class="st1" points="705.2,227.9 714.5,237 713.8,234.1 705.2,225.7 " />
<polygon id="XMLID_6105_" class="st1" points="705.2,222.2 712.7,229.5 712.6,227.3 705.1,220 " />
<polygon id="XMLID_6104_" class="st1" points="705.1,216.5 712.6,223.9 712.6,221.7 705.1,214.3 " />
<polygon id="XMLID_6103_" class="st1" points="705.1,210.9 712.6,218.2 712.6,216 705.1,208.7 " />
<polygon id="XMLID_6102_" class="st1" points="705.7,205.8 713.8,213.7 716,213.7 707.9,205.8 " />
<polygon id="XMLID_6101_" class="st1" points="711.4,205.8 719.6,213.7 721.8,213.7 713.7,205.8 " />
<polygon id="XMLID_6100_" class="st1" points="717.2,205.8 720.5,209 719.4,205.8 " />
<polygon id="XMLID_6099_" class="st1" points="736.7,247.3 744.6,255 746.8,255 738.9,247.3 " />
<polygon id="XMLID_6098_" class="st1" points="742.5,247.3 750.4,255 752.6,255 744.7,247.3 " />
<polygon id="XMLID_6097_" class="st1" points="748.2,247.3 756.2,255 758.4,255 750.5,247.3 " />
<polygon id="XMLID_6096_" class="st1" points="754,247.3 761.9,255 764.2,255 756.2,247.3 " />
<polygon id="XMLID_6095_" class="st1" points="759.8,247.3 767.7,255 769.9,255 762,247.3 " />
<polygon id="XMLID_6094_" class="st1" points="765.6,247.3 773.5,255 775.7,255 767.8,247.3 " />
<polygon id="XMLID_6093_" class="st1" points="769.4,245.4 779.3,255 781.5,255 764.3,238.2 " />
<polygon id="XMLID_6092_" class="st1" points="756.3,227 777.9,248 774,242.1 755,223.5 " />
<polygon id="XMLID_6091_" class="st1" points="752.9,218 770.9,235.6 767,229.6 751.6,214.6 " />
<polygon id="XMLID_6090_" class="st1" points="749.5,209.1 762.2,221.5 760.9,218 748.1,205.6 " />
<polygon id="XMLID_6089_" class="st1" points="745.4,198.5 746,200.1 758.8,212.5 757.5,209.1 746,198 " />
<polygon id="XMLID_6088_" class="st1" points="747.8,196.2 755.4,203.6 754.2,200.6 754.4,200.5 748.9,195.1 " />
<polygon id="XMLID_6087_" class="st1" points="750.7,193.4 756.2,198.7 757.3,197.7 751.8,192.3 " />
<polygon id="XMLID_6086_" class="st1" points="753.6,190.6 759.1,195.9 760.2,194.8 754.7,189.5 " />
<polygon id="XMLID_6085_" class="st1" points="756.5,187.8 761.9,193.1 763.1,192 757.6,186.7 " />
<polygon id="XMLID_6084_" class="st1" points="759.4,185 764.8,190.3 766,189.2 760.5,183.9 " />
<polygon id="XMLID_6083_" class="st1" points="762.2,182.1 767.7,187.5 768.9,186.4 762.2,179.9 " />
<polygon id="XMLID_6082_" class="st1" points="762.1,176.5 769.6,183.7 769.6,181.5 762.1,174.3 " />
<polygon id="XMLID_6081_" class="st1" points="762.1,170.8 769.6,178 769.5,175.9 762.1,168.6 " />
<polygon id="XMLID_6080_" class="st1" points="762.1,165.2 769.5,172.4 769.5,170.2 762.1,163 " />
<polygon id="XMLID_6079_" class="st1" points="762.1,159.5 769.5,166.7 769.4,164.5 762.1,157.4 " />
<polygon id="XMLID_6078_" class="st1" points="704.9,182.6 706.1,183.8 708.3,183.8 704.9,180.4 " />
<polygon id="XMLID_6077_" class="st1" points="704.9,177 711.9,183.8 712.4,183.8 712.4,182.1 704.9,174.8 " />
<polygon id="XMLID_6076_" class="st1" points="704.9,171.3 712.4,178.6 712.4,176.4 704.9,169.2 " />
<polygon id="XMLID_6075_" class="st1" points="704.9,165.7 712.4,173 712.3,170.8 704.9,163.5 " />
<polygon id="XMLID_6074_" class="st1" points="704.9,158.3 704.9,160 712.3,167.3 712.3,166 713.2,166 705.3,158.3 " />
<polygon id="XMLID_6073_" class="st1" points="708.8,158.3 716.8,166 719,166 711.1,158.3 " />
<polygon id="XMLID_6072_" class="st1" points="714.6,158.3 722.5,166 724.8,166 716.8,158.3 " />
<polygon id="XMLID_6071_" class="st1" points="728.3,166 730.5,166 722.6,158.3 720.4,158.3 " />
<polygon id="XMLID_6070_" class="st1" points="728.4,158.3 726.1,158.3 733.3,165.2 733.3,164.6 731.6,161.4 " />
</g>
</g>
</g>
<g>
<path id="XMLID_6051_" class="st0" d="M172.2,59.8l13.7,0l0,5.8h-3.6l0-2.7h-4.9l0,4.3h3.9l0,3h-3.9l0,4.9h4.9l0-3.3h3.6l0,6.2
l-13.7,0l0-3.1h1.5l0-11.9h-1.5L172.2,59.8z M204.5,70.4c0.2,0.6,0.3,1.4,0.3,2.5c0,1-0.1,1.9-0.3,2.5c-0.2,0.7-0.6,1.2-1.2,1.7
c-0.5,0.4-1.3,0.7-2.1,0.9c-0.9,0.2-2,0.2-3.3,0.2c-0.8,0-1.5,0-2.1-0.1c-0.6,0-1.2-0.1-1.8-0.1c-0.5-0.1-1-0.1-1.3-0.2
c-0.4-0.1-0.7-0.1-0.9-0.2l-0.1,0l0-5.8h3.5l0,3.4c0.1,0,0.2,0,0.3,0.1c0.2,0,0.5,0,0.7,0.1c0.3,0,0.5,0,0.8,0.1
c1,0.1,1.9,0,2.4-0.1c0.4-0.1,0.7-0.2,0.9-0.4c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.7,0.1-1.2c0-0.4,0-0.8-0.1-1
c-0.1-0.2-0.2-0.4-0.5-0.6c-0.2-0.2-0.6-0.3-1-0.5c-0.5-0.1-1-0.3-1.8-0.5c-1.2-0.3-2.1-0.6-2.9-0.8c-0.8-0.3-1.4-0.6-1.8-1
c-0.5-0.4-0.8-0.9-1-1.6c-0.2-0.6-0.3-1.5-0.3-2.5c0-0.9,0.1-1.7,0.3-2.3c0.2-0.6,0.6-1.2,1.1-1.6c0.5-0.4,1.2-0.7,2-0.8
c0.8-0.2,1.8-0.2,2.9-0.2c0.6,0,1.2,0,1.8,0.1c0.6,0,1.2,0.1,1.8,0.2c0.5,0.1,1,0.1,1.5,0.2c0.4,0.1,0.7,0.1,0.9,0.2l0.1,0l0,5.3
h-3.5l0-2.9l-0.2,0l-0.1,0c-0.2,0-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.8,0c-0.8,0-1.6,0-2.1,0.1c-0.3,0.1-0.6,0.2-0.8,0.3
c-0.2,0.1-0.3,0.3-0.4,0.6c-0.1,0.3-0.1,0.6-0.1,1c0,0.4,0,0.8,0.1,1c0.1,0.2,0.2,0.4,0.5,0.6c0.2,0.2,0.6,0.3,1,0.5
c0.4,0.1,1,0.3,1.7,0.5c1.1,0.3,2.1,0.5,2.9,0.8c0.8,0.3,1.4,0.6,1.9,1C204,69.3,204.3,69.8,204.5,70.4z M208.4,59.8l15.3,0l0,5.8
h-3.4l0-2.9h-2.4l0,12.2h1.8l0,3.1l-7.4,0l0-3.1h1.8l0-12.2h-2.4l0,2.9h-3.4L208.4,59.8z M241.3,61.4c-0.6-0.7-1.3-1.1-2.3-1.3
c-0.9-0.2-2-0.3-3.3-0.3l-7.6,0l0,3.2h1.5l0,11.9h-1.5l0,3.1h0.2c0.2,0,1,0,2.3,0c1.3,0,3,0,5.1,0c1.3,0,2.4-0.1,3.3-0.3
c0.9-0.2,1.7-0.7,2.3-1.3c0.6-0.7,1-1.6,1.2-2.8c0.3-1.2,0.4-2.8,0.4-4.7c0-1.9-0.1-3.5-0.4-4.7C242.3,63,241.9,62.1,241.3,61.4z
M237.4,74.8c-0.4,0.2-1,0.2-1.6,0.2l-2.3,0l0-12.3h2.3c0.6,0,1.2,0.1,1.6,0.2c0.4,0.1,0.7,0.4,1,0.8c0.2,0.4,0.4,1,0.5,1.7
c0.1,0.7,0.2,1.6,0.2,2.7l0,1.3c0,1.1-0.1,2-0.2,2.8c-0.1,0.7-0.3,1.3-0.5,1.7C238.1,74.4,237.8,74.7,237.4,74.8z M550.9,74.9h2
l0,3.1l-8.1,0l0-3.1h2.4l0-11.9h-2.4l0-3.2h6.2L550.9,74.9z M570.4,70.1c-0.2-0.4-0.6-0.7-1-1c-0.3-0.2-0.8-0.5-1.3-0.8
c0.4-0.2,0.7-0.5,1-0.7c0.3-0.3,0.6-0.6,0.8-0.9c0.2-0.3,0.3-0.7,0.4-1.1c0.1-0.4,0.1-0.8,0.1-1.4c0-0.9-0.1-1.7-0.3-2.3
c-0.2-0.6-0.6-1.1-1.1-1.5c-0.5-0.4-1.1-0.6-1.9-0.8c-0.8-0.1-1.7-0.2-2.7-0.2c-1.1,0-2,0.1-2.7,0.2c-0.8,0.2-1.4,0.4-1.9,0.8
c-0.5,0.4-0.9,0.9-1.1,1.5c-0.2,0.6-0.4,1.4-0.4,2.3c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.4,0.7,0.8,0.9
c0.3,0.2,0.6,0.4,0.9,0.6c-0.5,0.3-0.9,0.5-1.2,0.7c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,0.8-0.5,1.3c-0.1,0.5-0.1,1.1-0.1,1.9
c0,0.9,0.1,1.7,0.4,2.4c0.2,0.7,0.6,1.2,1.2,1.6c0.5,0.4,1.2,0.7,2,0.9c0.8,0.2,1.8,0.3,3,0.3c1.2,0,2.2-0.1,3-0.3
c0.9-0.2,1.6-0.5,2.1-0.9c0.5-0.4,1-0.9,1.2-1.6c0.3-0.6,0.4-1.4,0.4-2.4c0-0.7,0-1.3-0.1-1.8C570.8,70.9,570.6,70.4,570.4,70.1z
M567,65.3c0,0.3-0.1,0.5-0.2,0.7c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.2-0.5,0.4-0.9,0.6l-0.7-0.3c-0.6-0.2-1.1-0.4-1.5-0.6
c-0.4-0.2-0.7-0.3-0.9-0.5c-0.2-0.2-0.3-0.4-0.4-0.6c-0.1-0.2-0.1-0.6-0.1-1c0-0.7,0.2-1.1,0.5-1.3c0.4-0.2,1-0.3,1.9-0.3
c0.9,0,1.6,0.1,2.1,0.3c0.4,0.2,0.6,0.6,0.6,1.3C567,64.6,567,65,567,65.3z M563.2,69.6l0.6,0.2c0.8,0.3,1.5,0.6,2,0.8
c0.5,0.2,0.8,0.4,1.1,0.6c0.2,0.2,0.4,0.5,0.4,0.8c0.1,0.3,0.1,0.7,0.1,1.3c0,0.8-0.2,1.3-0.7,1.6c-0.5,0.3-1.3,0.4-2.4,0.4
s-1.9-0.1-2.4-0.4c-0.5-0.3-0.7-0.8-0.7-1.6c0-0.6,0-1,0-1.4c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.5,0.6-0.7
C562.4,70.2,562.7,69.9,563.2,69.6z M575.3,59.8l12.6,0l0,3.5L581.7,78h-3.9l6.5-15.3l-5.4,0l0,2.3l-3.6,0L575.3,59.8z M605.3,64.3
c-0.2-1.2-0.6-2.2-1.1-2.9c-0.5-0.7-1.2-1.2-2.1-1.5c-0.8-0.3-1.9-0.4-3.1-0.4c-1.2,0-2.3,0.1-3.1,0.4c-0.9,0.3-1.6,0.8-2.1,1.5
c-0.5,0.7-0.9,1.7-1.1,2.9c-0.2,1.2-0.3,2.7-0.3,4.6c0,1.8,0.1,3.4,0.3,4.6c0.2,1.2,0.6,2.2,1.1,2.9c0.5,0.7,1.2,1.2,2.1,1.5
c0.8,0.3,1.9,0.4,3.1,0.4c1.2,0,2.3-0.1,3.1-0.4c0.9-0.3,1.6-0.8,2.1-1.5c0.5-0.7,0.9-1.7,1.1-2.9c0.2-1.2,0.3-2.7,0.3-4.6
C605.6,67,605.5,65.5,605.3,64.3z M600.4,75c-0.4,0.2-0.8,0.2-1.4,0.2c-0.6,0-1-0.1-1.4-0.2c-0.4-0.1-0.6-0.4-0.8-0.8
c-0.2-0.4-0.4-0.9-0.5-1.6c-0.1-0.7-0.1-1.5-0.1-2.5l0-2.5c0-1,0-1.9,0.1-2.5c0.1-0.6,0.2-1.2,0.4-1.5c0.2-0.4,0.5-0.6,0.8-0.7
c0.4-0.1,0.8-0.2,1.4-0.2c0.6,0,1,0.1,1.4,0.2c0.4,0.1,0.6,0.4,0.8,0.7c0.2,0.4,0.4,0.9,0.5,1.5c0.1,0.7,0.1,1.5,0.1,2.5l0,2.5
c0,1,0,1.9-0.1,2.5c-0.1,0.7-0.2,1.2-0.4,1.5C601.1,74.6,600.8,74.9,600.4,75z" />
</g>
<path class="st2" d="M299.2,362.3c0,6.9,0.7,9.6,3,11.4c2.2,1.7,4.6,2.2,11.2,2.2h4l0,2.8l-65.4,0l0-2.8h4c6.6,0,8.9-0.5,11.2-2.2
c2.2-1.8,3-4.6,3-11.4L270,320c0-7.7-2.1-10-9.5-10l-9.2,0l0-2.8h3.7c14.4,0.7,34.1-6.3,41.3-14.9h2.9L299.2,362.3z M498.3,306.6
c9.8,8.1,14.9,18.9,14.9,31.5c0,24.8-19.9,43.4-46.6,43.4c-26.8,0-47.4-18.7-47.4-43c0-24.6,20.5-43.5,47.2-43.5
C477.8,295,489.5,299.3,498.3,306.6z M451.5,344.3c0,9,0.8,18.2,2,23.4c1.5,6.9,6.1,10.9,12.3,10.9c6.3,0,11.3-4.2,12.9-10.8
c1.2-4.9,2-14.6,2-24l0-12.9c0-24.3-3.9-33.2-14.2-33.2c-5.5,0-10.4,3.6-12.3,8.8c-2,5.4-2.7,12.5-2.7,25.1L451.5,344.3z" />
<g>
<path class="st3" d="M133.3,347l0-17.9c0-0.4,0-0.8,0.1-1.3c0-0.5,0.1-1,0.2-1.7l-3.5-0.4c-1.3,2.8-3.7,4.2-7.1,4.3l0.1,2h4.9l0,15
c0,1-1.5,1.6-4.5,1.6l0,2.1h13.8l0-2.1C134.6,348.5,133.3,348,133.3,347z" />
<path class="st3" d="M159.2,337c1.5-0.5,2.7-1.2,3.6-2.1c0.9-0.9,1.3-1.9,1.3-3.1c0-1-0.2-1.9-0.7-2.7c-0.5-0.8-1.1-1.4-1.9-1.9
c-0.8-0.5-1.8-0.9-2.9-1.1c-1.1-0.2-2.3-0.4-3.6-0.4c-1.3,0-2.5,0.1-3.6,0.4c-1.1,0.2-2.1,0.6-2.9,1.1c-0.8,0.5-1.4,1.2-1.9,1.9
c-0.5,0.8-0.7,1.7-0.7,2.8c0,0.7,0.1,1.4,0.4,1.9c0.2,0.6,0.6,1.1,1,1.6c0.4,0.5,0.9,0.9,1.5,1.3c0.5,0.4,1.1,0.7,1.8,1
c-1.9,0.5-3.3,1.3-4.3,2.5c-0.9,1.2-1.4,2.5-1.4,3.9c0,1.2,0.3,2.2,0.8,3.1c0.5,0.9,1.2,1.6,2.1,2.2c0.9,0.6,2,1,3.2,1.3
c1.2,0.3,2.6,0.4,4.1,0.4c1.5,0,2.8-0.1,4-0.4c1.2-0.3,2.3-0.7,3.2-1.3c0.9-0.6,1.6-1.3,2.1-2.3c0.5-0.9,0.8-2,0.8-3.2
c0-1.7-0.5-3.2-1.5-4.4C162.6,338.4,161.1,337.5,159.2,337z M151.9,329.1c0.8-0.6,1.9-0.9,3.4-0.9c0.9,0,1.6,0.1,2.2,0.3
c0.6,0.2,1.1,0.5,1.4,0.8c0.4,0.3,0.6,0.7,0.8,1.2c0.2,0.4,0.2,0.9,0.2,1.4c0,1.2-0.3,2.1-0.9,2.7c-0.6,0.6-1.4,1.1-2.5,1.5
c-0.8-0.2-1.5-0.5-2.2-0.7c-0.7-0.3-1.3-0.6-1.9-0.9c-0.5-0.4-1-0.7-1.3-1.2c-0.3-0.4-0.5-0.9-0.5-1.5
C150.8,330.5,151.2,329.7,151.9,329.1z M154.7,348.7c-1.9,0-3.3-0.4-4.3-1.2c-0.9-0.8-1.4-1.9-1.4-3.3c0-1.4,0.3-2.5,0.8-3.3
c0.5-0.8,1.5-1.4,2.8-1.9c0.8,0.3,1.7,0.6,2.5,0.9c0.9,0.3,1.7,0.6,2.5,1c0.8,0.4,1.4,0.9,1.9,1.5c0.5,0.6,0.7,1.4,0.7,2.3
C160.3,347.4,158.4,348.7,154.7,348.7z" />
<path class="st3" d="M188.7,327.4c-0.5,0.3-1.1,0.5-1.8,0.5c-1.2,0-2.1-0.1-2.9-0.4c-0.7-0.3-1.4-0.5-2.1-0.9
c-0.7-0.3-1.4-0.6-2.1-0.9c-0.7-0.3-1.7-0.4-2.9-0.4c-0.9,0-1.6,0.1-2.1,0.4c-0.6,0.3-1,0.6-1.4,1c-0.3,0.4-0.6,0.9-0.7,1.5
c-0.1,0.6-0.2,1.2-0.2,1.9c0,0.3,0,0.6,0,1c0,0.4,0,0.7,0.1,1h1.6c0.1-0.6,0.2-1,0.4-1.4c0.2-0.4,0.4-0.7,0.6-0.9
c0.2-0.2,0.5-0.4,0.8-0.5c0.3-0.1,0.5-0.1,0.8-0.1c0.5,0,1.1,0.1,1.6,0.3c0.5,0.2,1,0.4,1.6,0.7c0.5,0.2,1.1,0.5,1.7,0.7
c0.6,0.2,1.2,0.3,1.9,0.3c0.4,0,0.9,0,1.4-0.1c0.5-0.1,1.1-0.3,1.7-0.6c-1.3,1-2.6,2.1-3.7,3.2c-1.2,1.2-2.2,2.4-3,3.8
c-0.9,1.3-1.6,2.8-2.1,4.3c-0.5,1.5-0.8,3.1-0.8,4.8c0,1.4,0.3,2.5,0.8,3.3c0.5,0.8,1.4,1.2,2.4,1.2c0.6,0,1.1-0.1,1.4-0.3
c0.4-0.2,0.7-0.5,0.9-0.9c0.2-0.4,0.4-0.8,0.4-1.3c0.1-0.5,0.1-1,0.1-1.5c0-0.4,0-0.8-0.1-1.2c0-0.4-0.1-0.8-0.1-1.3
c0-1.7,0.1-3.2,0.3-4.6c0.2-1.3,0.6-2.6,1.2-3.8c0.6-1.2,1.4-2.6,2.5-3.9c1.1-1.4,2.4-3,4.1-4.8l-1.1-1.7
C189.6,326.5,189.2,327.1,188.7,327.4z" />
<path class="st3" d="M216.8,328.7c-0.9-1-2-1.7-3.4-2.2c-1.4-0.4-3-0.7-4.8-0.7s-3.4,0.2-4.8,0.7c-1.4,0.4-2.5,1.2-3.4,2.2
c-0.9,1-1.6,2.3-2,4c-0.5,1.7-0.7,3.7-0.7,6.1c0,2.4,0.2,4.4,0.6,6c0.4,1.6,1.1,2.9,2,3.8c0.9,1,2,1.6,3.4,2c1.4,0.4,3,0.6,4.8,0.6
c1.8,0,3.4-0.2,4.8-0.6c1.4-0.4,2.5-1.1,3.4-2c0.9-1,1.6-2.2,2-3.8c0.5-1.6,0.7-3.6,0.7-6c0-2.4-0.2-4.5-0.7-6.1
C218.4,331,217.7,329.7,216.8,328.7z M213.8,343.5c-0.2,1.3-0.5,2.3-0.9,3.1c-0.4,0.8-1,1.3-1.7,1.7c-0.7,0.3-1.6,0.5-2.7,0.5
c-1.1,0-2-0.2-2.7-0.5c-0.7-0.3-1.2-0.9-1.6-1.7c-0.4-0.8-0.7-1.8-0.8-3.1c-0.2-1.3-0.2-2.8-0.2-4.7c0-1.6,0.1-3,0.2-4.3
c0.2-1.3,0.4-2.4,0.8-3.3c0.4-0.9,1-1.6,1.7-2.1c0.7-0.5,1.6-0.7,2.7-0.7c1.1,0,2,0.2,2.7,0.7c0.7,0.5,1.2,1.2,1.7,2.1
c0.4,0.9,0.7,2,0.9,3.3c0.2,1.3,0.2,2.7,0.2,4.3C214.1,340.6,214,342.2,213.8,343.5z" />
</g>
<path class="st1" d="M302.1,373.6c-2.2-1.8-3-4.6-3-11.4l0.1-69.9h-2.9c-7.6,8.6-27.2,15.7-41.3,14.9h-3.7l0,2.8h9.2
c7.4,0,9.6,2.2,9.5,10l-0.1,42.3c0,6.9-0.8,9.6-3,11.4c-2.2,1.7-4.6,2.2-11.2,2.2h-4l0,2.8l65.4,0l0-2.8h-4
C306.7,375.8,304.3,375.3,302.1,373.6z" />
<path class="st1" d="M496.5,306.5c-8.8-7.4-20.5-11.7-31.9-11.7c-26.8,0-47.2,18.9-47.2,43.5c0,24.3,20.6,43,47.4,43
c26.7,0,46.6-18.6,46.6-43.4C511.4,325.4,506.3,314.6,496.5,306.5z M464,378.5c-6.2,0-10.8-4.1-12.3-10.9c-1.2-5.3-2-14.4-2-23.3
l0-12.7c0-12.5,0.7-19.5,2.7-25c1.9-5.3,6.8-8.8,12.3-8.8c10.3,0,14.1,8.8,14.2,33.1l0,12.9c0,9.3-0.7,19-2,24
C475.3,374.3,470.3,378.5,464,378.5z" />
<path class="st1" d="M363.7,327.3c-12.6,0-23.2,2.7-35.1,9.1l0.6-16.7c7.4,1,13.2,1.3,21.3,1.3c15.6,0,26.3-2.1,35.6-6.9
c8.2-4.3,13.1-9.1,16.7-16.2l0-2.9c-17.1,1.6-26,2.1-38.4,2.1c-13.8,0-26.1-0.7-37.1-2.1l-1.9,44.8l1.9,0c9-5.5,23.4-9.7,33.5-9.7
c9.4,0,13.2,6.7,13.2,23.4c0,17.8-4.1,24.9-14.5,24.9c-9.3,0-18.8-2.3-25.5-6.4c8.3-0.6,13.2-5.4,13.2-13c0-7.6-5.4-12.7-13.4-12.7
c-7.8,0-13.1,5-13.1,12.3c0,13.2,17.2,22.7,41.4,22.7c12.9,0,22.4-2.2,30.4-7.1c7.8-4.8,12.5-12.4,12.5-20.3
C405.1,338.4,387.8,327.3,363.7,327.3z" />
<g>
<path class="st0" d="M298.9,362c0,6.9,0.7,9.6,3,11.4c2.2,1.7,4.6,2.2,11.1,2.2h4l0,2.8l-65.3,0l0-2.8h4c6.6,0,8.9-0.5,11.2-2.2
c2.2-1.8,3-4.5,3-11.4l0.1-42.2c0-7.7-2.1-9.9-9.5-9.9l-9.2,0l0-2.8h3.7c14.4,0.7,34-6.2,41.2-14.8h2.8L298.9,362z M289.6,301.1
c-4.7,3.2-13.9,6.5-21,7.8c3.5,2.3,4.6,5.1,4.6,11.8l-0.1,43c0,6.4-1,9.3-4.2,11.9H292c-2.2-2.8-2.5-3.8-2.5-9.8L289.6,301.1z" />
<path class="st0" d="M327.5,294.9c10.9,1.3,23.3,2.1,37.1,2.1c12.4,0,21.2-0.5,38.5-2.1l0,2.9c-3.6,7.1-8.5,11.9-16.7,16.2
c-9.4,4.8-20.1,6.9-35.7,6.9c-7.9,0-13.9-0.4-21.3-1.2l-0.6,16.5c11.8-6.3,22.5-9,35-9c24.3,0,41.6,11,41.6,26.6
c0,8-4.7,15.5-12.5,20.2c-8,4.9-17.6,7.1-30.5,7.1c-24.3,0-41.5-9.4-41.5-22.8c0-7.2,5.3-12.1,13.1-12.1c7.9,0,13.4,5.2,13.4,12.8
c0,7.6-4.8,12.4-13.3,13c6.7,4.1,16.2,6.4,25.5,6.4c10.3,0,14.5-7.1,14.5-24.8c0-16.8-3.8-23.4-13.2-23.4c-10.1,0-24.5,4-33.6,9.6
h-1.9L327.5,294.9z M338.7,358.9c0-5.8-2.3-10.1-5.7-10.1c-5,0-9.3,4.3-9.3,9.2c0,5,2.7,9.1,8.3,12.9
C336.6,368.4,338.7,364.6,338.7,358.9z M329.4,316.6c5.9,0.7,10.6,1.1,17.6,1.1c14,0,23.1-2.1,31.9-7.2c5.4-3.2,8.4-6.1,12.1-11.5
c-6.6,0.6-14.5,0.9-26.6,0.9c-14.2,0-24.6-0.6-34.4-2.1L329.4,316.6z M377.7,353.6c0,13.7-2,19.6-8.1,24.4
c15.2-1.1,24.3-10.1,24.3-24c0-8.1-3.5-15.1-9.7-19.1c-3.6-2.5-7.7-3.7-14-4.3C375.6,334.8,377.7,341.3,377.7,353.6z" />
<path class="st0" d="M496.4,306.5c9.8,8.1,14.9,18.9,14.9,31.4c0,24.8-19.9,43.3-46.5,43.3c-26.8,0-47.3-18.7-47.3-42.9
c0-24.5,20.4-43.4,47.1-43.4C476,294.9,487.6,299.2,496.4,306.5z M420.9,337.6c0,10.9,4.5,21.3,12.6,29.2c5.1,5,9.4,7.5,16.8,9.8
c-4.1-3.6-6.3-7-8.4-13.2c-1.9-5.8-3.2-16.3-3.2-26.4c0-11,2-21.8,5.2-28.6c2-4,3.8-6.4,8.4-9.7C433.9,303,420.9,319.1,420.9,337.6
z M449.6,344.1c0,9,0.8,18.2,2,23.3c1.5,6.9,6.1,10.9,12.3,10.9c6.3,0,11.3-4.2,12.9-10.8c1.2-4.9,2-14.6,2-23.9l0-12.9
c0-24.3-3.9-33.1-14.1-33.1c-5.4,0-10.4,3.6-12.2,8.8c-2,5.4-2.7,12.5-2.7,25L449.6,344.1z M482.1,343.9c0,10.4-0.8,18.8-2.5,24.4
c-1.2,4-3.1,6.6-7.4,9.9c7.3-1.6,11.9-4.3,16.8-9.7c7.2-7.9,11.2-19,11.2-30.5c0-13.7-6.2-27.2-16-34.8c-3.5-2.6-5.6-3.6-11.1-5.1
c7.1,6.2,8.9,13.7,8.9,35.5L482.1,343.9z" />
</g>
<path d="M656.7,313.7l-123.7,0l0-1.8l123.7,0L656.7,313.7z M656.9,361.5L533,361.6l0,1.8l123.9-0.1L656.9,361.5z M232.3,311.9
l-123.7,0l0,1.8l123.7,0L232.3,311.9z M232.3,361.5l-123.8,0l0,1.8l123.8,0L232.3,361.5z" />
<g>
<g>
<path class="st0" d="M202.4,425.6l-8-16.8l-0.5-1l-0.5,1l-7.2,15c-2.5,5.3-4.2,6.9-7.1,6.9l-0.3,0l-0.5,0l0,0.5l0,0.9l0,0.5h0.5
l12.3,0h0.5l0-0.5l0-0.9l0-0.5h-0.5c-1.6,0-2.1,0-2.6-0.1c-1.6-0.2-1.9-0.8-1.9-1.7c0-0.7,0.4-2,0.9-3.1h9.4l1.1,2.3
c0.4,0.8,0.6,1.2,0.6,1.5c0,0.2,0,0.7-1,0.9c-0.7,0.1-1.2,0.2-3,0.2h-0.5l0,0.5l0,0.9l0,0.5h0.5h14.1h0.5l0-0.5l0-0.9l0-0.5h-0.5
C205.2,430.7,204.5,430.3,202.4,425.6z M188.5,423.9l3.8-8.1l3.8,8.1H188.5z" />
<path class="st0" d="M237.1,409.1h-0.5l0,0.5l0,0.9l0,0.5h0.5c1.2,0,1.8,0.1,2.6,0.4c1.6,0.6,2.6,1.7,2.6,5.6l0,7.8l-16-15.6
l-0.2-0.1H226h-8.8h-0.5l0,0.5l0,0.9l0,0.5h0.5c2.7,0,3.8,0.4,4.7,1.8c0.6,0.9,0.7,1.7,0.7,4l0,7.6c0,3.5-0.3,4.1-1.2,5
c-0.9,0.8-2.1,1.1-3.8,1.1h-0.4h-0.5l0,0.5l0,0.9l0,0.5h0.5h12.9h0.5l0-0.5l0-0.9l0-0.5h-0.5h-0.5c-1.5,0-2.4-0.2-3.2-0.7
c-1.3-0.8-1.7-1.8-1.7-6l0-9.8l18.8,18.5l0.9,0.9l0-1.2l0-15.8c0-2.3,0.5-3.6,1.8-4.6c0.9-0.6,1.7-0.9,3.7-1l0.5,0l0-0.5l0-0.9
l0-0.5h-0.5H237.1z" />
<path class="st0" d="M280.6,409.1h-0.5l0,0.5l0,0.9l0,0.5h0.5c1.2,0,1.8,0.1,2.6,0.4c1.6,0.6,2.6,1.7,2.6,5.6l0,7.8l-16-15.6
l-0.2-0.1h-0.2l-8.8,0h-0.5l0,0.5l0,0.9l0,0.5h0.5c2.7,0,3.8,0.4,4.7,1.8c0.6,0.9,0.7,1.7,0.7,4l0,7.6c0,3.5-0.3,4.1-1.2,5
c-0.9,0.8-2.1,1.1-3.8,1.1h-0.4h-0.5l0,0.5l0,0.9l0,0.5h0.5h12.9h0.5l0-0.5l0-0.9l0-0.5h-0.5h-0.5c-1.5,0-2.4-0.2-3.2-0.7
c-1.3-0.8-1.7-1.8-1.7-6l0-9.8l18.8,18.5l0.9,0.9l0-1.2l0-15.8c0-2.3,0.5-3.6,1.8-4.6c0.9-0.6,1.7-0.9,3.7-1l0.5,0l0-0.5l0-0.9
l0-0.5h-0.5H280.6z" />
<path class="st0" d="M315.3,430.1c-0.6-0.5-0.7-1.1-0.7-4.5l0-9.5c0-3,0.1-3.7,0.5-4.3c0.5-0.6,1.1-0.8,4.7-0.8h0.5l0-0.5l0-0.9
l0-0.5h-0.5h-15.3h-0.5l0,0.5l0,0.9l0,0.5h0.5c3.3,0,4,0.1,4.5,0.6c0.6,0.5,0.7,1.1,0.7,4.5l0,9.5c0,3-0.1,3.7-0.5,4.3
c-0.5,0.6-1.1,0.8-4.7,0.8h-0.5l0,0.5l0,0.9l0,0.5h0.5h15.3h0.5l0-0.5l0-0.9l0-0.5h-0.5C316.6,430.7,315.9,430.5,315.3,430.1z
M315,430.5L315,430.5C315,430.5,315,430.5,315,430.5C315,430.5,315,430.5,315,430.5z" />
<path class="st0" d="M348.5,409.1H348l0,0.5l0,0.9l0,0.5h0.5c1.3,0,1.6,0,2.2,0.1c1.2,0.2,1.9,1.1,1.9,2.6c0,1.2-0.4,2.4-1.8,5.3
l-3.2,6.9l-5.2-10.2c-1.3-2.5-1.3-2.6-1.3-3.2c0-1,1.1-1.5,3.2-1.5h0.5l0-0.5l0-0.9l0-0.5h-0.5l-12.7,0h-0.5l0,0.5l0,0.9l0,0.5
l0.5,0l0.3,0c2,0,2.6,0.4,5.1,5.4l8.5,16.6l0.5,1l0.5-1l7.1-15.2c2.3-4.9,4.3-6.8,7-6.8h0.5l0.1-0.5l0-0.9l0-0.5h-0.5H348.5z" />
<path class="st0" d="M442,430.7c-3.8,0-3.8-0.1-4.7-1.1c-1.8-2.3-3.2-4.8-4.4-7.8l-0.1-0.2l-0.3-0.1c-1.1-0.3-2-0.5-2.7-0.8
c1.6-0.2,2.6-0.3,3.7-0.7c2.7-0.8,4.2-2.6,4.2-4.9c0-1.8-0.8-3.3-2.4-4.3c-1.6-1.1-4.1-1.6-8-1.6h-16.6h-0.5l0,0.5l0,0.9l0,0.5
h0.5c3.3,0,4,0.1,4.5,0.6c0.6,0.5,0.7,1.1,0.7,4.5l0,9.5c0,3.1-0.1,3.7-0.5,4.3c-0.5,0.6-1.1,0.8-4.7,0.8h-0.5l0,0.5l0,0.9l0,0.5
h0.5h15.3h0.5l0-0.5l0-0.9l0-0.5h-0.5c-3.3,0-4-0.1-4.5-0.6c-0.6-0.5-0.7-1.1-0.7-4.5l0-4.8h5c2,2.4,4.2,6.4,6.6,11.5l0.1,0.3h0.3
h9.3h0.5l0-0.5l0-0.9l0-0.5h-0.5H442z M425.8,418.9h-5l0-7.8h5.8c2.2,0,3.3,0.2,4.1,0.7c0.9,0.5,1.4,1.7,1.4,3
C432.1,417.3,431,418.9,425.8,418.9z" />
<path class="st0" d="M509.4,425.6l-8-16.8l-0.5-1l-0.5,1l-7.1,15c-2.5,5.3-4.1,6.9-7.1,6.9l-0.3,0l-0.5,0l0,0.5l0,0.9l0,0.5h0.5
h12.3h0.5l0-0.5l0-0.9l0-0.5h-0.5c-1.6,0-2.1,0-2.6-0.1c-1.6-0.2-1.9-0.8-1.9-1.7c0-0.7,0.4-2,0.9-3.1h9.4l1.1,2.3
c0.4,0.8,0.6,1.2,0.6,1.5c0,0.2,0,0.7-1,0.9c-0.7,0.1-1.2,0.2-3,0.2h-0.5l0,0.5l0,0.9l0,0.5h0.5h14.1h0.5l0-0.5l0-0.9l0-0.5h-0.5
C512.3,430.7,511.6,430.3,509.4,425.6z M495.5,423.9l3.8-8.1l3.8,8.1H495.5z" />
<path class="st0" d="M553.9,430.7c-3.8,0-3.8-0.1-4.7-1.1c-1.8-2.3-3.2-4.8-4.4-7.8l-0.1-0.2l-0.3-0.1c-1.1-0.3-2-0.5-2.7-0.8
c1.6-0.2,2.6-0.3,3.7-0.7c2.7-0.8,4.2-2.6,4.2-4.9c0-1.8-0.8-3.3-2.4-4.3c-1.6-1.1-4.1-1.6-8-1.6h-16.6h-0.5l0,0.5l0,0.9l0,0.5
h0.5c3.3,0,4,0.1,4.5,0.6c0.6,0.5,0.7,1.1,0.7,4.5l0,9.5c0,3.1-0.1,3.7-0.5,4.3c-0.5,0.6-1.1,0.8-4.7,0.8h-0.5l0,0.5l0,0.9l0,0.5
h0.5l15.3,0h0.5l0-0.5l0-0.9l0-0.5H538c-3.3,0-4-0.1-4.5-0.6c-0.6-0.5-0.7-1.1-0.7-4.5l0-4.8h5c2,2.4,4.3,6.4,6.6,11.5l0.1,0.3
h0.3h9.3h0.5l0-0.5l0-0.9l0-0.5h-0.5H553.9z M537.7,418.9h-5l0-7.8h5.8c2.2,0,3.3,0.2,4.1,0.7c0.9,0.5,1.4,1.7,1.4,3
C544,417.3,543,418.9,537.7,418.9z" />
<g>
<path class="st0" d="M588,409.1h-10.3l0,2c2.5,0.1,2.5,0.5,2.5,1.1c0,0.7-0.6,1.8-1.8,3.3l-3.4,4.2l-4.8-6.7
c-0.4-0.5-0.4-0.8-0.4-0.9c0-0.4,0.3-0.8,1.9-0.9l0-2h-11.8h-0.5l0,0.5l0,0.9l0,0.5l0.5,0l0.6,0c1.8,0.1,2.2,0.4,5.5,4.4
c1.7,2.1,4.6,6.1,4.9,6.8c0.1,0.2,0.3,0.9,0.3,2.9l0,0.4c0,3.1-0.1,3.7-0.5,4.3c-0.5,0.6-1.2,0.8-4.8,0.8h-0.5l0,0.5l0,0.9l0,0.5
h0.5h15.4h0.5l0-0.5l0-0.9l0-0.5l-0.5,0c-3.3,0-4.1-0.2-4.7-0.6c-0.5-0.5-0.7-1.1-0.7-4.4l0-3c0-0.6,0.2-1.2,0.6-1.7l5.7-7
c1.6-2,3.2-2.8,5.8-2.9l0.5,0l0-0.5l0-0.9l0-0.5H588z" />
</g>
<g>
<path class="st0" d="M474.9,409.3l0-0.5h-0.5h-0.6h-0.2l-0.1,0.1l-2.6,2.2c-2.5-1.7-5.2-2.5-8.4-2.5c-2.4,0-4.3,0.5-5.9,1.4
c-2,1.2-3.2,3.2-3.2,5.3c0,2,1.1,3.8,2.8,4.7c1.3,0.7,3.3,1.4,5.8,2l5.5,1.3c4.6,1.1,5.2,2.8,5.2,4.2c0,2.3-2.2,3.7-5.8,3.7
c-3.2,0-6.6-1.1-8.7-2.7c-2-1.6-3-3.5-3.3-6.3l0-0.5h-0.5h-0.9h-0.5l0,0.5l0,9.9l0,0.5h0.5h1.4h0.2l0.1-0.1l2.3-2
c2.7,1.7,6,2.7,9.3,2.7c6.1,0,10.5-3.1,10.5-7.4c0-2.4-1.2-4.4-3.4-5.6c-1.6-0.9-3.5-1.5-6.6-2.2l-5.4-1.2
c-4.1-0.9-4.6-2.1-4.6-3.2c0-1.8,1.9-2.9,5.2-2.9c2.9,0,5.7,0.9,7.7,2.5c1.6,1.3,2.4,2.6,2.7,4.3h2.1L474.9,409.3z" />
</g>
<path class="st0" d="M395.6,423.3c-0.2,1.8-0.8,3-1.8,4.2c-1.9,2.3-4.2,3.2-8.8,3.2h-4.3l0-1.3l0-8.2h2.1c2.4,0,4.7,1.8,4.7,4.3
c0,0,0,0.2,0,0.4c0,0.1,0,0.2,0,0.2l0,0c0,0.1,0,0.7,0,0.7h0.5h0.8h0.5l0-0.5l0-11.2l0-0.5h-0.5h-0.8h-0.5c0,0,0,0.5,0,0.5
c0,2.5-2.3,4.3-4.7,4.3h-2.1l0-8.2h6.2c3.8,0,5.4,0.6,7,2.5c0.9,1.1,1.4,2.2,1.7,3.8l2,0l0-7.7l0-0.5H397h-26.4H370l0,0.5l0,0.9
l0,0.5h0.5c3.3,0,4,0.1,4.5,0.6c0.6,0.5,0.7,1.1,0.7,4.5l0,9.5c0,3.1-0.1,3.7-0.5,4.3c-0.5,0.6-1.1,0.8-4.7,0.8H370l0,0.5l0,0.9
l0,0.5h0.5l26.5,0h0.5l0-0.5l0-8.8H395.6z" />
</g>
</g>
<g class="st4">
<path class="st5" d="M561.2,344.3h-1.6c-0.1,0.6-0.2,1-0.4,1.4c-0.2,0.3-0.4,0.6-0.6,0.8c-0.2,0.2-0.5,0.3-0.8,0.4
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.6,0-1.1-0.1-1.6-0.3c-0.5-0.2-1-0.4-1.5-0.6c-0.5-0.2-1.1-0.4-1.7-0.6c-0.6-0.2-1.3-0.3-2.1-0.3
c-0.9,0-1.7,0.1-2.5,0.4c-0.8,0.2-1.6,0.7-2.5,1.5c0.2-0.9,0.8-1.7,1.7-2.3c0.9-0.6,1.9-1.1,3-1.6c1.1-0.5,2.4-0.9,3.6-1.4
c1.3-0.5,2.4-1.1,3.5-1.7c1.1-0.7,2-1.5,2.7-2.6c0.7-1,1-2.3,1-3.9c0-1.4-0.3-2.6-0.8-3.6c-0.6-1-1.3-1.8-2.2-2.4
c-0.9-0.6-1.9-1-3.1-1.3c-1.2-0.3-2.4-0.4-3.6-0.4c-1.5,0-2.9,0.2-4,0.6c-1.1,0.4-2,1-2.7,1.6c-0.7,0.7-1.2,1.4-1.5,2.2
c-0.3,0.8-0.5,1.5-0.5,2.2c0,0.8,0.2,1.5,0.7,2c0.5,0.5,1.1,0.8,1.9,0.8c0.9,0,1.5-0.2,2-0.7c0.5-0.5,0.7-1.1,0.7-1.9
c0-0.6-0.2-1.2-0.6-1.6c-0.4-0.4-0.9-0.6-1.4-0.7c0.2-0.3,0.4-0.5,0.6-0.8c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.4,1.3-0.5
c0.5-0.1,1.1-0.2,1.8-0.2c1.7,0,2.9,0.4,3.7,1.3c0.8,0.9,1.2,2,1.2,3.3c0,1.4-0.3,2.5-0.8,3.4c-0.6,0.9-1.3,1.6-2.2,2.2
c-0.9,0.6-1.9,1.3-2.9,1.9c-1.1,0.6-2.1,1.3-3.1,2.2c-1,0.9-1.9,1.9-2.7,3.2c-0.8,1.3-1.4,2.9-1.8,4.9h1.8c0.5-0.7,1-1.2,1.6-1.5
c0.6-0.4,1.4-0.5,2.3-0.5c1.1,0,2,0.1,2.8,0.4c0.7,0.3,1.4,0.5,2.1,0.9c0.7,0.3,1.4,0.6,2.1,0.9c0.7,0.3,1.7,0.4,2.9,0.4
c0.8,0,1.5-0.1,2.1-0.4c0.6-0.3,1-0.6,1.4-1c0.4-0.4,0.6-0.9,0.7-1.5c0.1-0.6,0.2-1.2,0.2-1.9c0-0.3,0-0.6,0-0.9
C561.3,344.9,561.2,344.6,561.2,344.3z" />
<path class="st5" d="M588,328.7c-0.9-1-2-1.7-3.4-2.2c-1.4-0.4-3-0.7-4.8-0.7c-1.8,0-3.4,0.2-4.8,0.7c-1.4,0.4-2.5,1.2-3.4,2.2
c-0.9,1-1.6,2.3-2,4c-0.4,1.7-0.7,3.7-0.7,6.1c0,2.4,0.2,4.4,0.7,5.9c0.4,1.6,1.1,2.9,2,3.8c0.9,1,2,1.6,3.4,2
c1.4,0.4,3,0.6,4.8,0.6c1.8,0,3.4-0.2,4.8-0.6c1.4-0.4,2.5-1.1,3.4-2c0.9-1,1.6-2.2,2-3.8c0.4-1.6,0.7-3.6,0.7-5.9
c0-2.4-0.2-4.5-0.7-6.1C589.6,331,588.9,329.7,588,328.7z M585.1,343.5c-0.2,1.3-0.4,2.3-0.9,3.1c-0.4,0.8-1,1.3-1.7,1.7
c-0.7,0.3-1.6,0.5-2.7,0.5c-1.1,0-2-0.2-2.7-0.5c-0.7-0.3-1.2-0.9-1.7-1.7c-0.4-0.8-0.7-1.8-0.8-3.1c-0.2-1.3-0.2-2.8-0.2-4.7
c0-1.6,0.1-3,0.2-4.3c0.2-1.3,0.4-2.4,0.8-3.3c0.4-0.9,1-1.6,1.7-2.1c0.7-0.5,1.6-0.7,2.7-0.7c1.1,0,2,0.2,2.7,0.7
c0.7,0.5,1.3,1.2,1.7,2.1c0.4,0.9,0.7,2,0.9,3.3c0.2,1.3,0.2,2.7,0.2,4.3C585.3,340.7,585.2,342.2,585.1,343.5z" />
<path class="st5" d="M618.3,344.3h-1.6c-0.1,0.6-0.2,1-0.4,1.4c-0.2,0.3-0.4,0.6-0.6,0.8c-0.2,0.2-0.5,0.3-0.8,0.4
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.6,0-1.1-0.1-1.6-0.3c-0.5-0.2-1-0.4-1.5-0.6c-0.5-0.2-1.1-0.4-1.7-0.6c-0.6-0.2-1.3-0.3-2.1-0.3
c-0.9,0-1.7,0.1-2.5,0.4c-0.8,0.2-1.6,0.7-2.4,1.5c0.2-0.9,0.8-1.7,1.7-2.3c0.9-0.6,1.9-1.1,3-1.6c1.2-0.5,2.4-0.9,3.6-1.4
c1.3-0.5,2.4-1.1,3.5-1.7c1.1-0.7,2-1.5,2.7-2.6c0.7-1,1-2.3,1-3.9c0-1.4-0.3-2.6-0.8-3.6c-0.6-1-1.3-1.8-2.2-2.4
c-0.9-0.6-1.9-1-3.1-1.3c-1.2-0.3-2.4-0.4-3.6-0.4c-1.5,0-2.9,0.2-4,0.6c-1.1,0.4-2,1-2.7,1.6c-0.7,0.7-1.2,1.4-1.5,2.2
c-0.3,0.8-0.5,1.5-0.5,2.2c0,0.8,0.2,1.5,0.7,2c0.5,0.5,1.1,0.8,1.9,0.8c0.9,0,1.5-0.2,2-0.7c0.5-0.5,0.7-1.1,0.7-1.9
c0-0.6-0.2-1.2-0.6-1.6c-0.4-0.4-0.9-0.6-1.4-0.7c0.2-0.3,0.4-0.5,0.6-0.8c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.4,1.3-0.5
c0.5-0.1,1.1-0.2,1.8-0.2c1.7,0,2.9,0.4,3.7,1.3c0.8,0.9,1.2,2,1.2,3.3c0,1.4-0.3,2.5-0.8,3.4c-0.6,0.9-1.3,1.6-2.2,2.2
c-0.9,0.6-1.9,1.3-2.9,1.9s-2.1,1.3-3.1,2.2c-1,0.9-1.9,1.9-2.7,3.2c-0.8,1.3-1.4,2.9-1.8,4.9h1.8c0.5-0.7,1-1.2,1.6-1.5
c0.6-0.4,1.4-0.5,2.3-0.5c1.1,0,2.1,0.1,2.8,0.4c0.7,0.3,1.4,0.5,2.1,0.9c0.7,0.3,1.4,0.6,2.1,0.9c0.7,0.3,1.7,0.4,2.9,0.4
c0.8,0,1.5-0.1,2.1-0.4c0.6-0.3,1-0.6,1.4-1c0.3-0.4,0.6-0.9,0.7-1.5c0.1-0.6,0.2-1.2,0.2-1.9c0-0.3,0-0.6,0-0.9
C618.4,344.9,618.4,344.6,618.3,344.3z" />
<path class="st5" d="M647.2,332.7c-0.5-1.7-1.1-3-2-4c-0.9-1-2-1.7-3.4-2.2c-1.4-0.4-3-0.7-4.8-0.7c-1.8,0-3.4,0.2-4.8,0.7
c-1.4,0.4-2.5,1.2-3.4,2.2c-0.9,1-1.6,2.3-2,4c-0.4,1.7-0.7,3.7-0.7,6.1c0,2.4,0.2,4.4,0.7,5.9c0.4,1.6,1.1,2.9,2,3.8
c0.9,1,2,1.6,3.4,2c1.4,0.4,3,0.6,4.8,0.6c1.8,0,3.4-0.2,4.8-0.6c1.4-0.4,2.5-1.1,3.4-2c0.9-1,1.6-2.2,2-3.8
c0.4-1.6,0.7-3.6,0.7-5.9C647.9,336.4,647.6,334.3,647.2,332.7z M642.2,343.5c-0.2,1.3-0.4,2.3-0.9,3.1c-0.4,0.8-1,1.3-1.7,1.7
c-0.7,0.3-1.6,0.5-2.7,0.5s-2-0.2-2.7-0.5c-0.7-0.3-1.2-0.9-1.7-1.7c-0.4-0.8-0.7-1.8-0.8-3.1c-0.2-1.3-0.2-2.8-0.3-4.7
c0-1.6,0.1-3,0.2-4.3c0.2-1.3,0.4-2.4,0.8-3.3c0.4-0.9,1-1.6,1.7-2.1c0.7-0.5,1.6-0.7,2.7-0.7c1.1,0,2,0.2,2.7,0.7
c0.7,0.5,1.3,1.2,1.7,2.1c0.4,0.9,0.7,2,0.9,3.3c0.2,1.3,0.2,2.7,0.2,4.3C642.4,340.7,642.3,342.2,642.2,343.5z" />
</g>
<g>
<path id="XMLID_6546_" class="st0" d="M759.2,134.4c-3.7,0-6.7,3.1-6.7,6.9c0,3.8,3,6.9,6.7,6.9c3.7,0,6.7-3.1,6.7-6.9
C765.9,137.5,762.9,134.4,759.2,134.4z M759.2,147.3c-3.2,0-5.6-2.7-5.6-6c0-3.3,2.4-6,5.6-6c3.2,0,5.6,2.6,5.6,6
C764.8,144.6,762.4,147.3,759.2,147.3z" />
<path id="XMLID_6516_" class="st0" d="M762.3,139.5c0-1.5-0.8-2.3-2.6-2.3h-3l0,8.2h1.1l0-3.7h1.5l2.2,3.7h1.2l-2.2-3.7
C761.4,141.6,762.3,140.9,762.3,139.5z M759,140.8h-1.2l0-2.7h1.7c0.8,0,1.7,0.2,1.7,1.3C761.3,140.9,760.1,140.8,759,140.8z" />
</g>
</svg>
<span class="visuallyhidden">Old Forester Logo</span>
</a>
<button class="header-nav-toggle" aria-expanded="false">
<span class="toggle-bar-wrapper" aria-hidden="true">
<span class="toggle-bar toggle-top"></span>
<span class="toggle-bar toggle-mid"></span>
<span class="toggle-bar toggle-bot"></span>
</span>
<span class="visuallyhidden">Show Main Menu</span>
</button>
<nav class="header-nav" role="navigation">
<ul class="menu main-menu">
<li id="menu-item-1218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1218"><a href="whisky/index.html">Whisky</a>
<ul class="sub-menu">
<li id="menu-item-1142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1142"><a href="whiskies.html">Whiskies</a></li>
<li id="menu-item-1144" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1144"><a href="product-locator.html">Product Locator</a></li>
<li id="menu-item-1476" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1476"><a href="our-legacy/index.html">Our Legacy</a></li>
<li id="menu-item-1744" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1744"><a href="our-recipes/index.html">Recipes</a></li>
<li id="menu-item-1151" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1151"><a href="provisions/index.html">Cocktail Provisions</a></li>
<li id="menu-item-2527" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2527"><a href="confections/index.html">Confections</a></li>
<li id="menu-item-1147" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1147"><a href="single-barrel-program/index.html">Single Barrel Program</a></li>
<li id="menu-item-2025" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2025"><a href="subscribe/index.html">Subscribe</a></li>
</ul>
</li>
<li id="menu-item-1131" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-ancestor current-menu-parent current_page_parent current_page_ancestor menu-item-has-children menu-item-1131"><a href="distillery/index.html">Distillery</a>
<ul class="sub-menu">
<li id="menu-item-1488" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1488"><a href="retail-store/index.html">Bottle Shop and Retail</a></li>
<li id="menu-item-3099" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3099"><a href="https://shop.oldforester.com/">Shop Online</a></li>
<li id="menu-item-1773" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1128 current_page_item menu-item-1773"><a href="book-a-tour.html" aria-current="page">Tours</a></li>
<li id="menu-item-1170" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1170"><a href="georges-bar/index.html">George’s Bar</a></li>
<li id="menu-item-1167" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1167"><a href="location.html">Location</a></li>
<li id="menu-item-1166" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1166"><a href="faq/index.html">FAQ</a></li>
<li id="menu-item-2961" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2961"><a href="old-forester-birthday-bourbon-faqs/index.html">Old Forester Birthday Bourbon FAQs</a></li>
</ul>
</li>
<li id="menu-item-1130" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1128 current_page_item menu-item-1130"><a href="book-a-tour.html" aria-current="page">Book a Tour</a></li>
</ul>
<ul class="menu secondary-menu">
<li id="menu-item-296" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-296"><a href="product-locator.html"><i class="fas fa-map-marker-alt"></i> Where To Find</a></li>
</ul>
<ul class="menu social-menu">
<li class="menu-item"><a href="https://www.facebook.com/oldforester" target="_blank" title="Old Forester Facebook"><i class="fab fa-facebook-f"></i><span class="visuallyhidden">Visit Old Forester Facebook Page</span></a></li>
<li class="menu-item"><a href="https://twitter.com/oldforester" target="_blank" title="Old Forester Twitter"><i class="fab fa-twitter"></i><span class="visuallyhidden">Visit Old Forester Twitter Feed</span></a></li>
<li class="menu-item"><a href="https://www.instagram.com/oldforester/" target="_blank" title="Old Forester Instagram"><i class="fab fa-instagram"></i><span class="visuallyhidden">Visit Old Forester Instagram Profile</span></a></li>
<li class="menu-item"><a href="https://www.pinterest.com/oldforester/" target="_blank" title="Old Forester Pinterest"><i class="fab fa-pinterest-p"></i><span class="visuallyhidden">Visit Old Forester Pinterest Page</span></a></li>
<li class="menu-item"><a href="https://www.youtube.com/channel/UCkksXY6QDxyMur-5B5hTjYw" target="_blank" title="Old Forester Youtube"><i class="fab fa-youtube"></i><span class="visuallyhidden">Visit Old Forester Youtube Channel</span></a></li>
</ul>
</nav>
</div>
</header>
<main id="main">
<section id="layout-1" class="layout basic-content ">
<div class="wrapper">
<div class="component intro text-align-center" data-aos="fade-up">
<div class="wrapper">
<h1 class="h1 text-no-lh"><span class="h3 text-gray text-same-line">Experiences</span><span class="h2 text-orange text-new-line">served neat.</span></h1>
<div class="intro-content"><p style="text-align: center;"><strong>Old Forester Distillery offers a variety of tour experiences for everyone from bourbon aficionados to those new to bourbon.</strong></p>
<p style="text-align: center;">Tours typically last an hour: 45 minutes of history, learning how we make our whiskies, and exploring our<br />
working cooperage followed by a 15-minute tasting of three Old Forester expressions.</p>
<p> </p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="layout-2" class="layout listing style-1 events grid position-normal">
<div class="wrapper">
<div class="row">
<h3 class="h4 text-align-center">
<span class="text-orange text-new-line">No events found.</span>
</h3>
</div>
</div>
</section>
</main>
<footer class="footer" role="contentinfo">
<div class="wrapper">
<div class="footer-logo-wrap">
<a class="footer-logo" href="index.html" title="Old Forester Home Page">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 800 434" style="enable-background:new 0 0 800 434;" xml:space="preserve">
<style type="text/css">
.st0{fill:#8A8A89;}
.st1{opacity:0.85;fill:#8A8A89;enable-background:new ;}
</style>
<g id="XMLID_109_">
<path id="XMLID_153_" class="st0" d="M325.5,107.3l20.6-19.9V20.1L325.6,0.2h-41.2l-20.6,19.9l-0.1,67.3l20.6,19.9H325.5z
M323,19.4l3.9,7.4l-0.2,53.1l-3.5,7.3l-11,3.6l0.6-0.3l6.4-3.1l1-0.5l0.5-1l3.2-6.1l0.3-0.8l0.1-52.2l-0.4-0.7l-3.2-6.1l-0.5-1
l-1-0.5l-5-2.4L323,19.4z M298.6,18.5h12.7l6.3,3.1l3.2,6.1v50.5l-3.2,6.1l-6.3,3.1h-12.7l-6.3-3.1l-3.2-6.1V27.7l3.2-6.1
L298.6,18.5z M267.2,21.5l18.7-17.9h3.5l-19.6,18.8v63.2l18.9,18.2h-2.9l-18.6-17.9V21.5z" />
<path id="XMLID_150_" class="st0" d="M15,112.6l3.9,15l-0.3,101.1l-3.9,15h37.8L47.7,225l0.4-37.5h18.1l14.5,4.7l0.1-31.9L66.2,165
H48.1l0.1-30h36.5l17.5,5.7l-9.7-28.1H15z M25,229l-2.7,11.3h-2.8l2.8-10.7l0.1-0.4l0.3-102.1l-0.1-0.4L19.9,116h2.6l2.7,10.6
L25,229z" />
<path id="XMLID_144_" class="st0" d="M276.3,197.7l17.4-16.9v-26.1l-19-18.4h-65l3.2,12.2l-0.1,82.8l-3.2,12.3h30.2l-3.2-12.3
l-0.1-29.1h16.7l13.5,41.4h31.8l-10.3-14.5L276.3,197.7z M218.9,231.6l-2.1,8.5h-2.7l2.1-7.9l0.1-0.4l0.2-83.7l-0.1-0.5l-2.1-7.9
h2.7l2.1,8.5L218.9,231.6z M236.6,183.9v-29.1h20.7l8,3.8l3.1,6.1v9.2l-3.2,6.1l-8,3.8L236.6,183.9z M269.3,240.1L256.6,201l-0.6-2
h0.1v0.1h2.5l13.4,41H269.3z M274.6,175.3l-4,7.6l-12.1,4.2l8.4-4.1l1-0.4l0.5-1.1l3.2-6.1l0.3-0.7l0.1-10.9l-0.4-0.8l-3.2-6.1
l-0.5-1l-1-0.5l-7.8-3.8l11.6,4.5l3.9,7.6V175.3z" />
<path id="XMLID_139_" class="st0" d="M436.1,175.4l-5.6-5.4v-6.1l3.2-6.1l6.3-3.1h23.4l14.3,4.6l-7.9-23h-44l-20.6,19.9v23
l15.1,14.6l28.2,5.4l5.6,5.4v10l-3.2,6.1l-9.1,3.1h-23.6l-16.2-5.4l8.7,25.3h48.1l20.6-19.9v-28.4l-15.1-14.6L436.1,175.4z
M426,191.3l-4.1-0.8l-13.3-12.8v-20l18.6-18h3.6l-0.4,0.4l-19.2,18.3v18.9L426,191.3z M413.2,240.1l-5.7-16.5l2.9,1l5.4,15.5
H413.2z M460,215.9l-4.5,8.9l-10.8,2.6l-2.1-0.4l0.3-0.1l9.1-3.1l1.3-0.4l0.6-1.2l3.2-6.2l0.3-0.7V203l-1-1l-5.6-5.4l-0.2-0.2
l1.2,0.3l8.2,6V215.9z" />
<path id="XMLID_136_" class="st0" d="M342.4,223.7l-0.7-29.2h15.1l11.9,3.8v-26.1l-11.9,3.8l-15.1,0.1l-0.1-21.5h30.2l14.3,4.6
l-7.9-23h-63.5l3.2,12.3v82.8l-3.2,12.3h65.1l8.7-25.3l-16.7,5.4H342.4z M323.8,232l-2.1,8.1H319l2.1-7.9l0.1-0.4v-83.7l-0.1-0.5
l-2.1-7.9h2.6l0.1,0.3l2.1,8.2V232z" />
<path id="XMLID_133_" class="st0" d="M365.3,107.4h57.8l9.4-25l-17.9,5.3h-21.2V32.3l4-14.3h-32.1l3.3,11.9v65.6L365.3,107.4z
M370,21.3h2.6l2.3,8.6l-0.2,66.5l-1.9,7.4h-2.9l2.3-8V29.3L370,21.3z" />
<path id="XMLID_130_" class="st0" d="M616.2,223.8l-0.8-29.2h15.1l11.9,3.8l-0.1-26.1l-11.9,3.8l-15.1,0.1l-0.1-21.5h30.2l14.3,4.6
l-8-23h-63.5l3.2,12.3l0.2,82.8l-3.2,12.3h65.1l8.7-25.3l-16.6,5.4H616.2z M595.7,240.1H593l2-7.9l0.1-0.4l-0.1-83.7l-0.1-0.5
l-2.1-7.9h2.7l2.2,8.4l0.1,83.8L595.7,240.1z" />
<path id="XMLID_126_" class="st0" d="M496.9,136.4l-7,23.7l15-5.4h15.9l0.1,75.2l-4.7,13.8h33.3l-4.8-13.8l-0.1-75.2h15.8l15,5.4
l-7.1-23.7H496.9z M502,140l-4,13.5l-2.9,1l4.4-14.8h2.6L502,140z M523.6,240.1h-2.8l3.2-9.2l0.2-0.5l-0.1-79h0.2h2.4l0.1,79
L523.6,240.1z" />
<path id="XMLID_120_" class="st0" d="M757.2,229.1l-12-31.4l17.4-16.9l-0.1-26.1l-19.1-18.4h-65l3.2,12.2l0.3,82.8l-3.1,12.3H709
l-3.2-12.3l-0.2-29.1h16.7l13.7,41.4h31.8L757.2,229.1z M685.9,240.1h-2.7l2-7.9l0.1-0.4l-0.2-83.7l-0.1-0.5l-2.1-7.9h2.7l2.2,8.5
l0.2,83.4L685.9,240.1z M705.3,183.8L705.3,183.8l-0.1-29h20.7l8,3.8l3.2,6.1v9.2L734,180l-7.9,3.8H705.3z M738.4,240.1L725.5,201
l-0.7-2h0.1l0.1,0.1h2.5l13.5,41H738.4z M739.4,182.9l-12.1,4.2l8.4-4.1l1-0.4l0.5-1.1l3.1-6.1l0.4-0.7v-10.9l-0.4-0.8l-3.2-6.1
l-0.5-1l-1-0.5l-7.8-3.8l11.6,4.5l3.9,7.6l0.1,11.6L739.4,182.9z" />
<path id="XMLID_115_" class="st0" d="M126.1,136.4l-20.7,19.9l-0.2,67.5l20.6,19.9h41.3l20.7-19.9l0.1-67.5l-20.5-19.9H126.1z
M127.4,240.1l-18.6-17.9l0.1-64.5l18.7-18h3.4l-19.5,18.7l-0.1,63.3l19.2,18.4H127.4z M140.2,223.8l-6.3-3.1l-3.2-6.1l0.1-50.6
l3.2-6.1l6.3-3.1H153l6.3,3.1l3.2,6.1l-0.1,50.6l-3.2,6.1l-6.3,3.1H140.2z M168.4,216l-3.5,7.3l-11,3.7l7.9-3.8l3.7-7.2l0.4-0.7
L166,163l-0.4-0.8l-3.1-6.1l-0.5-1l-1-0.5l-6.4-3l-0.1-0.1l10.2,3.9l3.9,7.4L168.4,216z" />
<path id="XMLID_110_" class="st0" d="M447.7,95.5l-3.3,11.9h57.2l20.5-18.2l-0.1-53L501.5,18h-57.2l3.4,11.9V95.5z M489.2,33.3l9,3
L502,43v38.3l-3.8,6.5L488.1,91l7.5-3.3l3.4-6.2l0.5-0.8l-0.1-37.6l-0.4-0.8l-2.9-5.2l-0.6-0.9l-1-0.5L489.2,33.3L489.2,33.3z
M487.2,36.4l5.9,2.6l2.9,5.2v35.7l-2.9,5.2l-5.9,2.6H473l-0.1-51.3H487.2z M451.6,21.3l2.3,8.5l-0.1,66.5l-2,7.5h-2.9l2.1-7.5
l0.1-0.5V29.3l-0.1-0.5l-2.2-7.5H451.6z" />
</g>
<g id="XMLID_92_">
<g id="XMLID_6549_">
<polygon id="XMLID_7150_" class="st0" points="18.5,247.4 26.4,255.1 28.5,255.1 20.6,247.4 " />
<polygon id="XMLID_7149_" class="st0" points="24.1,247.4 32,255.1 34.2,255.1 26.4,247.4 " />
<polygon id="XMLID_7148_" class="st0" points="29.9,247.4 37.8,255.1 40,255.1 32.1,247.4 " />
<polygon id="XMLID_6590_" class="st0" points="35.7,247.4 43.6,255.1 45.8,255.1 37.9,247.4 " />
<polygon id="XMLID_6589_" class="st0" points="41.5,247.4 49.3,255.1 51.6,255.1 43.7,247.4 " />
<polygon id="XMLID_6588_" class="st0" points="47.2,247.4 55.1,255.1 57.3,255.1 49.5,247.4 " />
<polygon id="XMLID_6587_" class="st0" points="53,247.4 60.9,255.1 63.1,255.1 55.2,247.4 " />
<polygon id="XMLID_6586_" class="st0" points="55.7,242.2 56.5,245.1 66.7,255.1 66.7,255.1 65.9,252.2 " />
<polygon id="XMLID_6585_" class="st0" points="64.8,247.6 64,244.7 53.8,234.6 54.5,237.6 " />
<polygon id="XMLID_6584_" class="st0" points="51.9,227.1 52.6,230 62.8,240 62.1,237.1 " />
<polygon id="XMLID_6583_" class="st0" points="60.2,229.6 51.2,220.8 51.2,223 60.9,232.5 " />
<polygon id="XMLID_6582_" class="st0" points="58.6,223.5 58.6,222.4 51.3,215.2 51.3,217.4 59,224.9 " />
<polygon id="XMLID_6581_" class="st0" points="58.7,216.8 51.4,209.6 51.3,211.8 58.7,218.9 " />
<polygon id="XMLID_6580_" class="st0" points="58.7,211.2 51.4,204 51.4,206.2 58.7,213.3 " />
<polygon id="XMLID_6579_" class="st0" points="58.8,205.6 51.5,198.4 51.4,200.5 58.8,207.7 " />
<polygon id="XMLID_6578_" class="st0" points="58.8,200 51.5,192.8 51.5,194.9 58.8,202.1 " />
<polygon id="XMLID_6577_" class="st0" points="53.4,191.2 61.3,198.9 63.5,198.9 55.6,191.2 " />
<polygon id="XMLID_6576_" class="st0" points="59.2,191.2 68.3,200.1 71.6,201.2 61.4,191.2 " />
<polygon id="XMLID_6575_" class="st0" points="65.7,191.2 64.9,191.2 76.9,202.8 80.2,203.9 67.9,191.9 " />
<polygon id="XMLID_6574_" class="st0" points="73.2,193.6 85.5,205.6 88.8,206.7 76.5,194.6 " />