-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
1913 lines (1888 loc) · 123 KB
/
header.php
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
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package lowres
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1 minimum-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js" integrity="sha512-z4OUqw38qNLpn1libAN9BsoDx6nbNFio5lA6CuTp9NlK83b89hgyCVq+N5FdBJptINztxn1Z3SaKSKUS5UP60Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- <script src="./wp-content/themes/lowres/assets/animation.js"></script> -->
<!-- <script src="http://localhost:8888/wordpress/wp-content/themes/lowres/assets/code.js"></script> -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- <script src='http://localhost:8888/wordpress/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=6.0.2' id='wpb_composer_front_js-js'></script> -->
<!-- <script src='http://localhost:8888/wordpress/wp-includes/js/wp-embed.min.js?ver=5.5.3' id='wp-embed-js'></script> -->
<!-- <script src='http://localhost:8888/wordpress/wp-includes/js/hoverintent-js.min.js?ver=2.2.1' id='hoverintent-js-js'></script> -->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div class="global-nav">
<div class="global-nav-container container">
<a class="global-nav__logo" href="https://itp.nyu.edu" title="NYU Homepage"></a>
</div>
</div>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'lowres' ); ?></a>
<?php if ( is_front_page() && is_home() ) : ?>
<header id="masthead" class="site-header--nobg">
<div class="homepage__svgcontainer">
<svg version="1.1" id="Laag_1" class="site-header--svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1995.6 1117.7" style="enable-background:new 0 0 1995.6 1117.7;" xml:space="preserve">
<style type="text/css">
.st0{fill:#A34694;}
<!-- .st1{display:none;} -->
.st2{fill:#FDFCE7;}
.st3{display:inline;fill:#FDFCE7;stroke:#666666;stroke-width:0.25;stroke-miterlimit:10;}
.st4{display:inline;fill:#FFFFFF;}
.st5{fill:#FDFCE7;}
.st6{fill:#FFFFFF;}
.st7{fill:#FDFCE7;stroke:#666666;stroke-width:0.25;stroke-miterlimit:10;}
.st8{fill:none;stroke:#666666;stroke-width:0.25;stroke-miterlimit:10;}
</style>
<g id="Laag_7">
<rect x="164.1" y="32.9" class="st0" width="1595.3" height="819.6"/>
<g>
<image style="overflow:visible;enable-background:new;" class="imageheader" width="1393" height="716" id="N5VSIe" href="./wp-content/themes/lowres/assets/carousel/02.jpg" transform="matrix(1.294 0 0 1.294 73.4205 -1.2709)"></image>
</g>
</g>
<g id="bg_1" class="st1">
<rect x="418.8" y="250.4" class="st2" width="75.5" height="29.1"/>
<rect x="631.4" y="558.9" class="st2" width="83.3" height="110.6"/>
<rect x="1132.3" y="646.1" class="st2" width="56.3" height="52.4"/>
<rect x="827.9" y="698.5" class="st2" width="58.1" height="29.1"/>
<rect x="418.6" y="389.6" class="st2" width="75.5" height="29.1"/>
<rect x="317.4" y="503.1" class="st2" width="176.7" height="26.2"/>
<rect x="520.4" y="279.1" class="st2" width="52.4" height="139.7"/>
<rect x="743.6" y="587.5" class="st2" width="84.2" height="81.5"/>
<rect x="827.8" y="529.3" class="st2" width="87.2" height="29.1"/>
<rect x="631.2" y="698" class="st2" width="83.3" height="110.6"/>
<rect x="1217.5" y="308.2" class="st2" width="30.7" height="81.5"/>
<rect x="445.4" y="195.6" class="st2" width="49.1" height="29.1"/>
<rect x="445.4" y="335.3" class="st2" width="49.1" height="29.1"/>
<rect x="445.4" y="559.3" class="st2" width="63.8" height="29.1"/>
<rect x="494.5" y="669.8" class="st2" width="26.3" height="29.1"/>
<rect x="1103.5" y="140.3" class="st2" width="29.1" height="139.7"/>
<rect x="1218" y="169.4" class="st2" width="30.7" height="81.5"/>
<rect x="744" y="280" class="st2" width="84.2" height="29.1"/>
<rect x="744" y="390.5" class="st2" width="84.2" height="29.1"/>
<rect x="828.2" y="390.5" class="st2" width="87.2" height="29.1"/>
<rect x="857.2" y="309.1" class="st2" width="29" height="81.9"/>
<rect x="1132.6" y="309.1" class="st2" width="56.3" height="29.1"/>
<rect x="1353.1" y="280" class="st2" width="52.3" height="29.1"/>
<rect x="1277.8" y="309.1" class="st2" width="101.2" height="26.3"/>
<rect x="1379.1" y="530.2" class="st2" width="75.5" height="29.1"/>
<rect x="1379.1" y="390.5" class="st2" width="75.5" height="29.1"/>
<rect x="960.3" y="280" class="st2" width="29.1" height="110.6"/>
<rect x="828.2" y="448.7" class="st2" width="29.1" height="81.5"/>
<rect x="631.7" y="419.6" class="st2" width="83.3" height="110.6"/>
<rect x="744" y="448.7" class="st2" width="84.2" height="81.5"/>
<rect x="857.2" y="448.7" class="st2" width="29" height="81.9"/>
<rect x="1035.4" y="530.2" class="st2" width="68.1" height="29.1"/>
<rect x="1064.5" y="419.6" class="st2" width="39" height="110.6"/>
<rect x="1132.6" y="448.7" class="st2" width="56.3" height="29.1"/>
<rect x="1188.9" y="419.6" class="st2" width="88.9" height="29.1"/>
<rect x="1405.4" y="448.7" class="st2" width="49.1" height="26.2"/>
<rect x="520.9" y="419.6" class="st2" width="52.4" height="139.7"/>
<rect x="1064.5" y="559.3" class="st2" width="39" height="110.6"/>
<rect x="1188.9" y="559.3" class="st2" width="88.9" height="29.1"/>
<rect x="1277.8" y="588.4" class="st2" width="101.2" height="26.3"/>
<rect x="1353.1" y="669.8" class="st2" width="26" height="29.1"/>
<rect x="1405.4" y="559.3" class="st2" width="63.8" height="29.1"/>
<rect x="1277.8" y="728" class="st2" width="101.2" height="26.3"/>
<rect x="915.4" y="390.5" class="st2" width="44.9" height="29.1"/>
<rect x="1188.9" y="367.3" class="st2" width="29.1" height="52.4"/>
<rect x="1469.2" y="280" class="st2" width="11.7" height="29.1"/>
<rect x="1277.8" y="474.9" class="st2" width="66.3" height="29.1"/>
<rect x="1591.8" y="279.4" class="st2" width="83.3" height="110.6"/>
<rect x="1591.8" y="419.1" class="st2" width="83.3" height="110.6"/>
<rect x="1591.8" y="558.8" class="st2" width="83.3" height="110.6"/>
<rect x="445.2" y="448.3" class="st3" width="49.1" height="26.2"/>
<rect x="631.5" y="139.9" class="st3" width="83.3" height="110.6"/>
<rect x="857.1" y="169" class="st3" width="29" height="81.9"/>
<rect x="520.7" y="139.9" class="st3" width="52.4" height="139.7"/>
<rect x="631.5" y="279.6" class="st3" width="83.3" height="110.6"/>
<rect x="915.2" y="558.9" class="st3" width="44.9" height="110.6"/>
<rect x="1217.8" y="588" class="st3" width="30.7" height="81.5"/>
<rect x="960.1" y="698.6" class="st3" width="29.1" height="110.6"/>
<rect x="743.8" y="727.7" class="st3" width="84.2" height="81.5"/>
<rect x="1064.3" y="698.6" class="st3" width="39" height="110.6"/>
<rect x="1533.4" y="279.4" class="st3" width="29.3" height="139.7"/>
<rect x="317.7" y="169.1" class="st2" width="101.2" height="26.3"/>
<rect x="1591.8" y="139.8" class="st2" width="83.3" height="110.6"/>
<rect x="1277.8" y="783.3" class="st2" width="176.7" height="26.2"/>
</g>
<g id="bg_2" class="st1">
<rect x="383.9" y="614.3" class="st2" width="61.3" height="29"/>
<rect x="743.8" y="308.8" class="st2" width="84.2" height="81.5"/>
<rect x="915.2" y="279.7" class="st2" width="44.9" height="110.6"/>
<rect x="989.2" y="419.3" class="st2" width="46" height="110.6"/>
<rect x="989.2" y="559" class="st2" width="46" height="110.6"/>
<rect x="1663.1" y="669.3" class="st2" width="41.1" height="29.1"/>
<rect x="1533.4" y="558.8" class="st2" width="29.3" height="139.7"/>
<rect x="1132.3" y="337.7" class="st2" width="56.3" height="29.1"/>
<rect x="1188.6" y="279.5" class="st2" width="88.9" height="29.1"/>
<rect x="1217.7" y="448.3" class="st2" width="30.7" height="81.5"/>
<rect x="1277.5" y="503.6" class="st2" width="176.7" height="26.2"/>
<rect x="743.7" y="669.4" class="st2" width="84.2" height="29.1"/>
<rect x="827.9" y="669.4" class="st2" width="87.2" height="29.1"/>
<rect x="1277.5" y="643.2" class="st2" width="176.7" height="26.2"/>
<rect x="1217.7" y="390.1" class="st2" width="59.8" height="29.1"/>
<rect x="445" y="279.1" class="st2" width="63.8" height="29.1"/>
<rect x="743.6" y="168.5" class="st2" width="84.2" height="81.5"/>
<rect x="1454.1" y="168.5" class="st2" width="26.3" height="55.1"/>
<rect x="572.8" y="418.7" class="st2" width="29.3" height="139.7"/>
<rect x="1480.7" y="278.9" class="st2" width="52.4" height="139.7"/>
<rect x="494.5" y="309.1" class="st2" width="26.3" height="55.1"/>
<rect x="509.2" y="280" class="st2" width="11.7" height="29.1"/>
<rect x="445.4" y="419.6" class="st2" width="63.8" height="29.1"/>
<rect x="494.5" y="448.7" class="st2" width="26.3" height="55.1"/>
<rect x="1277.8" y="250.9" class="st2" width="75.2" height="29.1"/>
<rect x="1277.8" y="195.6" class="st2" width="66.3" height="29.1"/>
<rect x="702.9" y="250.9" class="st2" width="41.1" height="29.1"/>
<rect x="960.3" y="250.9" class="st2" width="29.1" height="29.1"/>
<rect x="1277.8" y="224.7" class="st2" width="176.7" height="26.2"/>
<rect x="714.9" y="309.1" class="st2" width="29.1" height="81.5"/>
<rect x="602.6" y="280" class="st2" width="29.1" height="110.6"/>
<rect x="744" y="419.6" class="st2" width="84.2" height="29.1"/>
<rect x="1035.4" y="419.6" class="st2" width="29.1" height="110.6"/>
<rect x="1103.5" y="419.6" class="st2" width="29.1" height="139.7"/>
<rect x="1405.4" y="335.3" class="st2" width="49.1" height="29.1"/>
<rect x="1454.5" y="364.2" class="st2" width="26.3" height="26.4"/>
<rect x="915.4" y="530.2" class="st2" width="44.9" height="29.1"/>
<rect x="1132.6" y="506.9" class="st2" width="56.3" height="52.4"/>
<rect x="1277.8" y="448.7" class="st2" width="101.2" height="26.3"/>
<rect x="744" y="559.3" class="st2" width="84.2" height="29.1"/>
<rect x="1353.1" y="559.3" class="st2" width="52.3" height="29.1"/>
<rect x="520.9" y="559.3" class="st2" width="52.4" height="139.7"/>
<rect x="1132.6" y="757.1" class="st2" width="56.3" height="29.1"/>
<rect x="1277.8" y="390.5" class="st2" width="75.2" height="29.1"/>
<rect x="1277.8" y="335.3" class="st2" width="66.3" height="29.1"/>
<rect x="1035.4" y="280" class="st2" width="29.1" height="110.6"/>
<rect x="631.7" y="530.2" class="st2" width="71.3" height="29.1"/>
<rect x="702.9" y="530.2" class="st2" width="41.1" height="29.1"/>
<rect x="915.4" y="419.6" class="st2" width="44.9" height="110.6"/>
<rect x="1132.6" y="559.3" class="st2" width="56.3" height="29.1"/>
<rect x="1132.6" y="617.5" class="st2" width="56.3" height="29.1"/>
<rect x="1132.6" y="699" class="st2" width="56.3" height="29.1"/>
<rect x="1248.7" y="728" class="st2" width="29.1" height="81.5"/>
<rect x="714.9" y="448.7" class="st2" width="29.1" height="81.5"/>
<rect x="1481.2" y="419.4" class="st2" width="52.4" height="139.7"/>
<rect x="631.7" y="669.9" class="st2" width="71.3" height="29.1"/>
<rect x="1562.7" y="419.1" class="st2" width="29.1" height="110.6"/>
<rect x="1663.1" y="529.7" class="st2" width="41.1" height="29.1"/>
<rect x="317.7" y="448.4" class="st2" width="101.2" height="26.3"/>
<rect x="288.6" y="169.1" class="st2" width="29.1" height="81.5"/>
<rect x="383.9" y="195.4" class="st2" width="61.3" height="29"/>
<rect x="445.2" y="169.1" class="st2" width="49.1" height="26.2"/>
<rect x="317.7" y="279.7" class="st2" width="75.2" height="29.1"/>
<rect x="317.7" y="698.6" class="st2" width="75.2" height="29.1"/>
<rect x="317.7" y="753.9" class="st2" width="66.3" height="29.1"/>
<rect x="257.8" y="727.7" class="st2" width="30.7" height="81.5"/>
<rect x="1591.8" y="250.3" class="st2" width="71.3" height="29.1"/>
<rect x="1663.1" y="250.3" class="st2" width="41.1" height="29.1"/>
<rect x="1704.1" y="168.9" class="st2" width="84.2" height="81.5"/>
<rect x="1675.1" y="727.5" class="st2" width="29.1" height="81.5"/>
<rect x="1704.1" y="727.5" class="st2" width="84.2" height="81.5"/>
<rect x="445.4" y="448.7" class="st4" width="49.1" height="26.2"/>
<rect x="317.7" y="529.9" class="st2" width="75.2" height="29.1"/>
<rect x="288.6" y="448.4" class="st2" width="29.1" height="81.5"/>
<rect x="317.7" y="390.2" class="st2" width="75.2" height="29.1"/>
<rect x="1704.1" y="250.3" class="st2" width="84.2" height="29.1"/>
<rect x="1704.1" y="390" class="st2" width="84.2" height="29.1"/>
<rect x="1704.1" y="419.1" class="st2" width="84.2" height="29.1"/>
<rect x="1675.1" y="448.2" class="st2" width="29.1" height="81.5"/>
<rect x="1591.8" y="669.3" class="st2" width="71.3" height="29.1"/>
<rect x="1675.1" y="308.5" class="st2" width="29.1" height="81.5"/>
<rect x="1704.1" y="448.2" class="st2" width="84.2" height="81.5"/>
<rect x="1704.1" y="587.8" class="st2" width="84.2" height="81.5"/>
<rect x="317.7" y="335" class="st2" width="66.3" height="29.1"/>
<rect x="288.6" y="308.8" class="st2" width="29.1" height="81.5"/>
<rect x="317.7" y="474.6" class="st2" width="66.3" height="29.1"/>
<rect x="288.6" y="588.1" class="st2" width="29.1" height="81.5"/>
<rect x="317.7" y="169" class="st3" width="101.2" height="26.3"/>
<rect x="1591.8" y="139.7" class="st3" width="83.3" height="110.6"/>
</g>
<g id="bg_3" class="st1">
<rect x="418.9" y="308.7" class="st2" width="26.3" height="26.4"/>
<rect x="392.9" y="279.7" class="st2" width="52.3" height="29.1"/>
<rect x="418.9" y="448.3" class="st2" width="26.3" height="26.4"/>
<rect x="392.9" y="559" class="st2" width="52.3" height="29.1"/>
<rect x="1103.3" y="279.7" class="st2" width="29.1" height="139.7"/>
<rect x="1064.3" y="279.7" class="st2" width="39" height="110.6"/>
<rect x="1562.7" y="250.3" class="st2" width="29.1" height="29.1"/>
<rect x="1562.7" y="669.3" class="st2" width="29.1" height="29.1"/>
<rect x="1591.8" y="698.4" class="st2" width="83.3" height="110.6"/>
<rect x="317.5" y="363.9" class="st2" width="176.7" height="26.2"/>
<rect x="418.8" y="529.8" class="st2" width="75.5" height="29.1"/>
<rect x="1277.5" y="363.9" class="st2" width="176.7" height="26.2"/>
<rect x="827.9" y="250.4" class="st2" width="87.2" height="29.1"/>
<rect x="1343.8" y="474.6" class="st2" width="61.3" height="29"/>
<rect x="1480.9" y="558.6" class="st2" width="52.4" height="139.7"/>
<rect x="1378.6" y="250" class="st2" width="75.5" height="29.1"/>
<rect x="1343.6" y="334.4" class="st2" width="61.3" height="29"/>
<rect x="419.1" y="669.9" class="st2" width="75.5" height="29.1"/>
<rect x="445.4" y="614.6" class="st2" width="49.1" height="29.1"/>
<rect x="1405.4" y="195.6" class="st2" width="49.1" height="29.1"/>
<rect x="1188.9" y="227.6" class="st2" width="29.1" height="52.4"/>
<rect x="714.9" y="169.4" class="st2" width="29.1" height="81.5"/>
<rect x="1035.4" y="250.9" class="st2" width="68.1" height="29.1"/>
<rect x="1132.6" y="280" class="st2" width="56.3" height="29.1"/>
<rect x="702.9" y="390.5" class="st2" width="41.1" height="29.1"/>
<rect x="1035.4" y="390.5" class="st2" width="68.1" height="29.1"/>
<rect x="1277.8" y="530.2" class="st2" width="75.2" height="29.1"/>
<rect x="1132.6" y="477.8" class="st2" width="56.3" height="29.1"/>
<rect x="886.3" y="419.6" class="st2" width="29.1" height="110.6"/>
<rect x="1248.7" y="309.1" class="st2" width="29.1" height="81.5"/>
<rect x="1188.9" y="506.9" class="st2" width="29.1" height="52.4"/>
<rect x="714.9" y="448.7" class="st2" width="29.1" height="81.5"/>
<rect x="744" y="530.2" class="st2" width="84.2" height="29.1"/>
<rect x="1277.8" y="559.3" class="st2" width="75.2" height="29.1"/>
<rect x="960.3" y="559.3" class="st2" width="29.1" height="110.6"/>
<rect x="1035.4" y="559.3" class="st2" width="29.1" height="110.6"/>
<rect x="1103.5" y="559.3" class="st2" width="29.1" height="139.7"/>
<rect x="1248.7" y="588.4" class="st2" width="29.1" height="81.5"/>
<rect x="915.4" y="669.9" class="st2" width="44.9" height="29.1"/>
<rect x="1188.9" y="588.4" class="st2" width="29.1" height="29.1"/>
<rect x="828.2" y="559.3" class="st2" width="58.1" height="29.1"/>
<rect x="702.9" y="669.9" class="st2" width="41.1" height="29.1"/>
<rect x="1188.9" y="617.5" class="st2" width="29.1" height="29.1"/>
<rect x="1277.8" y="699" class="st2" width="75.2" height="29.1"/>
<rect x="1405.4" y="419.6" class="st2" width="63.8" height="29.1"/>
<rect x="602.6" y="530.2" class="st2" width="29.1" height="29.1"/>
<rect x="1379.1" y="669.9" class="st2" width="75.5" height="29.1"/>
<rect x="989.4" y="699" class="st2" width="46" height="110.6"/>
<rect x="1188.9" y="699" class="st2" width="88.9" height="29.1"/>
<rect x="1481.2" y="140.1" class="st2" width="52.4" height="139.7"/>
<rect x="714.9" y="588.4" class="st2" width="29.1" height="81.5"/>
<rect x="602.6" y="559.3" class="st2" width="29.1" height="110.6"/>
<rect x="602.6" y="390.5" class="st2" width="29.1" height="29.1"/>
<rect x="1405.4" y="728" class="st2" width="49.1" height="26.2"/>
<rect x="1591.8" y="390" class="st2" width="71.3" height="29.1"/>
<rect x="1591.8" y="529.7" class="st2" width="71.3" height="29.1"/>
<rect x="1533.4" y="419.1" class="st2" width="29.3" height="139.7"/>
<rect x="317.7" y="588.1" class="st2" width="101.2" height="26.3"/>
<rect x="317.7" y="669.5" class="st2" width="75.2" height="29.1"/>
<rect x="445.2" y="698.6" class="st3" width="63.8" height="29.1"/>
<rect x="989.2" y="139.9" class="st3" width="46" height="110.6"/>
<rect x="1277.7" y="169" class="st3" width="101.2" height="26.3"/>
<rect x="989.2" y="279.6" class="st3" width="46" height="110.6"/>
<rect x="1132.4" y="366.9" class="st3" width="56.3" height="52.4"/>
<rect x="857.1" y="588" class="st3" width="29" height="81.8"/>
<rect x="573.1" y="698.6" class="st2" width="29.3" height="139.7"/>
<rect x="1562.7" y="139.8" class="st2" width="29.1" height="110.6"/>
<rect x="1562.7" y="529.7" class="st2" width="29.1" height="29.1"/>
<rect x="494.5" y="530.2" class="st2" width="26.3" height="29.1"/>
<rect x="509.2" y="419.6" class="st2" width="11.7" height="29.1"/>
<rect x="1454.5" y="250.9" class="st2" width="26.3" height="29.1"/>
<rect x="1405.4" y="280" class="st2" width="63.8" height="29.1"/>
<rect x="828.2" y="309.1" class="st2" width="29.1" height="81.5"/>
<rect x="631.7" y="390.5" class="st2" width="71.3" height="29.1"/>
<rect x="1188.9" y="338.2" class="st2" width="29.1" height="29.1"/>
<rect x="1454.5" y="309.1" class="st2" width="26.3" height="55.1"/>
<rect x="1277.8" y="419.6" class="st2" width="75.2" height="29.1"/>
<rect x="989.4" y="390.5" class="st2" width="46" height="29.1"/>
<rect x="1454.5" y="503.8" class="st2" width="26.3" height="26.4"/>
<rect x="989.4" y="530.2" class="st2" width="46" height="29.1"/>
<rect x="1405.4" y="614.6" class="st2" width="49.1" height="29.1"/>
<rect x="1379.1" y="588.3" class="st2" width="26.3" height="26.3"/>
<rect x="602.6" y="669.9" class="st2" width="29.1" height="29.1"/>
<rect x="960.3" y="669.9" class="st2" width="29.1" height="29.1"/>
<rect x="1218" y="669.9" class="st2" width="59.8" height="29.1"/>
<rect x="1454.5" y="669.8" class="st2" width="26.3" height="29.1"/>
<rect x="714.9" y="699" class="st2" width="29.1" height="29.1"/>
<rect x="1132.6" y="728" class="st2" width="56.3" height="29.1"/>
<rect x="1188.9" y="757.1" class="st2" width="29.1" height="29.1"/>
<rect x="1353.1" y="699" class="st2" width="52.3" height="29.1"/>
<rect x="1562.7" y="390" class="st2" width="29.1" height="29.1"/>
<rect x="1277.7" y="782.9" class="st3" width="176.7" height="26.2"/>
<rect x="494.5" y="364.2" class="st2" width="26.3" height="26.4"/>
<rect x="602.6" y="250.9" class="st2" width="29.1" height="29.1"/>
<rect x="714.9" y="280" class="st2" width="29.1" height="29.1"/>
<rect x="960.3" y="390.5" class="st2" width="29.1" height="29.1"/>
<rect x="1353.1" y="390.5" class="st2" width="26" height="29.1"/>
<rect x="1379.1" y="448.7" class="st2" width="26.3" height="26.4"/>
<rect x="1188.9" y="448.7" class="st2" width="29.1" height="29.1"/>
<rect x="1353.1" y="530.2" class="st2" width="26" height="29.1"/>
<rect x="714.9" y="559.3" class="st2" width="29.1" height="29.1"/>
<rect x="1379.1" y="309" class="st2" width="26.3" height="26.4"/>
<rect x="1454.5" y="530.2" class="st2" width="26.3" height="29.1"/>
<rect x="1454.5" y="390.5" class="st2" width="26.3" height="29.1"/>
<rect x="1469.2" y="559.3" class="st2" width="11.7" height="29.1"/>
<rect x="1469.2" y="699" class="st2" width="11.7" height="29.1"/>
<rect x="999" y="121.5" class="st2" width="65.1" height="31.7"/>
<rect x="1000.9" y="184.9" class="st2" width="61.3" height="31.7"/>
<rect x="1003.1" y="153.2" class="st2" width="57" height="31.7"/>
<rect x="999" y="730.1" class="st2" width="65.1" height="31.7"/>
<rect x="1015.7" y="793.5" class="st2" width="31.7" height="88.8"/>
<rect x="1017.2" y="793.5" class="st2" width="28.7" height="28.7"/>
<rect x="1000.9" y="64.4" class="st2" width="61.3" height="31.7"/>
<rect x="1007.1" y="121.5" class="st2" width="48.9" height="31.7"/>
<rect x="1015.7" y="96.1" class="st2" width="31.7" height="57.1"/>
<rect x="984" y="121.5" class="st2" width="95" height="31.7"/>
<rect x="985.7" y="32.8" class="st2" width="91.7" height="88.8"/>
<rect x="1006.5" y="1.1" class="st2" width="50.1" height="120.5"/>
<rect x="994.5" y="121.5" class="st2" width="74.2" height="31.7"/>
<rect x="935.3" y="93" class="st2" width="192.5" height="28.5"/>
<rect x="1004.8" y="32.8" class="st2" width="53.5" height="28.5"/>
<rect x="1003" y="1.1" class="st2" width="57.1" height="152.2"/>
<rect x="1000.9" y="153.2" class="st2" width="61.3" height="31.7"/>
<rect x="990.6" y="153.2" class="st2" width="81.9" height="31.7"/>
<rect x="986.2" y="0.8" class="st2" width="90.7" height="120.5"/>
<rect x="1015.7" y="184.7" class="st2" width="31.7" height="88.8"/>
<rect x="1015.6" y="153" class="st2" width="31.9" height="152.2"/>
<rect x="1015.7" y="248.3" class="st2" width="31.7" height="57.1"/>
<rect x="1014.8" y="337.1" class="st2" width="33.4" height="88.8"/>
<rect x="1015.7" y="704.8" class="st2" width="31.7" height="57.1"/>
<rect x="1015.7" y="552.6" class="st2" width="31.7" height="57.1"/>
<rect x="985.7" y="761.5" class="st2" width="91.7" height="31.7"/>
<rect x="1015.7" y="400.5" class="st2" width="31.7" height="57.1"/>
<rect x="1000.9" y="673.1" class="st2" width="61.3" height="31.7"/>
<rect x="999.9" y="153.1" class="st3" width="63.3" height="31.7"/>
</g>
<g id="bg_4" class="st1">
<rect x="445.4" y="754.2" class="st2" width="49.1" height="29.1"/>
<rect x="494.5" y="728" class="st2" width="26.3" height="55.1"/>
<rect x="1132.6" y="198.5" class="st2" width="56.3" height="29.1"/>
<rect x="828.2" y="169.4" class="st2" width="29.1" height="81.5"/>
<rect x="744" y="250.9" class="st2" width="84.2" height="29.1"/>
<rect x="631.7" y="250.9" class="st2" width="71.3" height="29.1"/>
<rect x="1218" y="250.9" class="st2" width="59.8" height="29.1"/>
<rect x="1344.1" y="195.7" class="st2" width="61.3" height="29"/>
<rect x="573.3" y="140.3" class="st2" width="29.3" height="139.7"/>
<rect x="1188.9" y="309.1" class="st2" width="29.1" height="29.1"/>
<rect x="828.2" y="280" class="st2" width="58.1" height="29.1"/>
<rect x="1405.4" y="309.1" class="st2" width="49.1" height="26.2"/>
<rect x="573.3" y="280" class="st2" width="29.3" height="139.7"/>
<rect x="1132.6" y="419.6" class="st2" width="56.3" height="29.1"/>
<rect x="1405.4" y="474.9" class="st2" width="49.1" height="29.1"/>
<rect x="960.3" y="419.6" class="st2" width="29.1" height="110.6"/>
<rect x="392.9" y="250.6" class="st2" width="26" height="29.1"/>
<rect x="383.9" y="335" class="st2" width="61.3" height="29"/>
<rect x="392.9" y="390.2" class="st2" width="26" height="29.1"/>
<rect x="392.9" y="419.3" class="st2" width="52.3" height="29.1"/>
<rect x="383.9" y="474.7" class="st2" width="61.3" height="29"/>
<rect x="317.7" y="559" class="st2" width="75.2" height="29.1"/>
<rect x="418.9" y="588" class="st2" width="26.3" height="26.3"/>
<rect x="392.9" y="698.6" class="st2" width="52.3" height="29.1"/>
<rect x="1103.3" y="698.6" class="st2" width="29.1" height="139.7"/>
<rect x="743.8" y="809.2" class="st2" width="84.2" height="29.1"/>
<rect x="631.5" y="809.2" class="st2" width="71.3" height="29.1"/>
<rect x="1132.4" y="785.9" class="st2" width="56.3" height="52.4"/>
<rect x="1217.8" y="727.7" class="st2" width="30.7" height="81.5"/>
<rect x="520.7" y="698.6" class="st2" width="52.4" height="139.7"/>
<rect x="1562.7" y="279.4" class="st2" width="29.1" height="110.6"/>
<rect x="1562.7" y="558.8" class="st2" width="29.1" height="110.6"/>
<rect x="1562.7" y="698.4" class="st2" width="29.1" height="110.6"/>
<rect x="1533.4" y="698.4" class="st2" width="29.3" height="139.7"/>
<rect x="1481" y="698.4" class="st2" width="52.4" height="139.7"/>
<rect x="494.5" y="224.5" class="st2" width="26.3" height="26.4"/>
<rect x="445.4" y="309.1" class="st2" width="49.1" height="26.2"/>
<rect x="494.5" y="390.5" class="st2" width="26.3" height="29.1"/>
<rect x="445.4" y="474.9" class="st2" width="49.1" height="29.1"/>
<rect x="494.5" y="503.8" class="st2" width="26.3" height="26.4"/>
<rect x="602.6" y="419.6" class="st2" width="29.1" height="110.6"/>
<rect x="828.2" y="419.6" class="st2" width="58.1" height="29.1"/>
<rect x="1188.9" y="477.8" class="st2" width="29.1" height="29.1"/>
<rect x="1218" y="530.2" class="st2" width="59.8" height="29.1"/>
<rect x="1353.1" y="419.6" class="st2" width="52.3" height="29.1"/>
<rect x="886.3" y="559.3" class="st2" width="29.1" height="110.6"/>
<rect x="1454.5" y="448.7" class="st2" width="26.3" height="55.1"/>
<rect x="989.4" y="669.9" class="st2" width="46" height="29.1"/>
<rect x="1188.9" y="646.6" class="st2" width="29.1" height="52.4"/>
<rect x="828.2" y="588.4" class="st2" width="29.1" height="81.5"/>
<rect x="1035.4" y="669.9" class="st2" width="68.1" height="29.1"/>
<rect x="317.7" y="250.6" class="st2" width="75.2" height="29.1"/>
<rect x="1035.4" y="699" class="st2" width="29.1" height="110.6"/>
<rect x="1405.4" y="588.4" class="st2" width="49.1" height="26.2"/>
<rect x="1454.5" y="588.4" class="st2" width="26.3" height="55.1"/>
<rect x="1405.4" y="699" class="st2" width="63.8" height="29.1"/>
<rect x="886.3" y="699" class="st2" width="29.1" height="110.6"/>
<rect x="1188.9" y="728" class="st2" width="29.1" height="29.1"/>
<rect x="714.9" y="728" class="st2" width="29.1" height="81.5"/>
<rect x="602.6" y="699" class="st2" width="29.1" height="110.6"/>
<rect x="828.2" y="728" class="st2" width="29.1" height="81.5"/>
<rect x="1454.5" y="728" class="st2" width="26.3" height="55.1"/>
<rect x="989.4" y="529.8" class="st2" width="45.9" height="29.5"/>
<rect x="317.7" y="308.8" class="st2" width="101.2" height="26.3"/>
<rect x="317.7" y="419.3" class="st2" width="75.2" height="29.1"/>
<rect x="392.9" y="529.9" class="st2" width="26" height="29.1"/>
<rect x="317.7" y="224.3" class="st3" width="176.7" height="26.2"/>
<rect x="445.2" y="169" class="st3" width="49.1" height="26.2"/>
<rect x="445.2" y="588" class="st3" width="49.1" height="26.2"/>
<rect x="1035.2" y="139.9" class="st3" width="29.1" height="110.6"/>
<rect x="1132.4" y="227.2" class="st3" width="56.3" height="52.4"/>
<rect x="1343.9" y="614.3" class="st3" width="61.3" height="29"/>
<rect x="445.1" y="727.6" class="st2" width="49.1" height="26.2"/>
<rect x="989.1" y="250.4" class="st2" width="46" height="29.1"/>
<rect x="1277.5" y="669.4" class="st2" width="75.2" height="29.1"/>
<rect x="743.7" y="698.5" class="st2" width="84.2" height="29.1"/>
<rect x="1343.8" y="753.9" class="st2" width="61.3" height="29"/>
<rect x="1248.4" y="169" class="st2" width="29.1" height="81.5"/>
<rect x="1277.5" y="614.1" class="st2" width="66.3" height="29.1"/>
<rect x="1277.5" y="753.8" class="st2" width="66.3" height="29.1"/>
<rect x="494.1" y="168.5" class="st2" width="26.3" height="55.1"/>
<rect x="494.1" y="587.5" class="st2" width="26.3" height="55.1"/>
<rect x="914.9" y="139.4" class="st2" width="44.9" height="110.6"/>
<rect x="1277.4" y="279.1" class="st2" width="75.2" height="29.1"/>
<rect x="885.8" y="279.1" class="st2" width="29.1" height="110.6"/>
<rect x="1132.1" y="587.5" class="st2" width="56.3" height="29.1"/>
<rect x="572.8" y="558.4" class="st2" width="29.3" height="139.7"/>
<rect x="317.4" y="642.8" class="st2" width="176.7" height="26.2"/>
<rect x="914.9" y="698" class="st2" width="44.9" height="110.6"/>
<rect x="1277.7" y="169.1" class="st2" width="101.2" height="26.3"/>
<rect x="857.1" y="588.1" class="st2" width="29" height="81.8"/>
<rect x="1132.1" y="226.7" class="st2" width="56.3" height="52.4"/>
<rect x="988.9" y="279.1" class="st2" width="46" height="110.6"/>
<rect x="1132.1" y="366.4" class="st2" width="56.3" height="52.4"/>
<rect x="988.9" y="139.4" class="st2" width="46" height="110.6"/>
<rect x="631.2" y="279.1" class="st2" width="83.3" height="110.6"/>
<rect x="914.9" y="558.4" class="st2" width="44.9" height="110.6"/>
<rect x="631.2" y="139.4" class="st2" width="83.3" height="110.6"/>
<rect x="520.4" y="139.4" class="st2" width="52.4" height="139.7"/>
<rect x="317.8" y="224.7" class="st2" width="176.7" height="26.2"/>
<rect x="445.4" y="588.4" class="st2" width="49.1" height="26.2"/>
<rect x="445.4" y="699" class="st2" width="63.8" height="29.1"/>
<rect x="1035.4" y="140.3" class="st2" width="29.1" height="110.6"/>
<rect x="857.2" y="169.4" class="st2" width="29" height="81.9"/>
<rect x="1218" y="588.4" class="st2" width="30.7" height="81.5"/>
<rect x="1344.1" y="614.7" class="st2" width="61.3" height="29"/>
<rect x="960.3" y="699" class="st2" width="29.1" height="110.6"/>
<rect x="744" y="728" class="st2" width="84.2" height="81.5"/>
<rect x="1064.5" y="699" class="st2" width="39" height="110.6"/>
<rect x="1533.6" y="279.8" class="st2" width="29.3" height="139.7"/>
<rect x="993.4" y="64.7" class="st2" width="76.3" height="33.5"/>
<rect x="929.9" y="98.2" class="st2" width="203.4" height="30.2"/>
<rect x="1003.3" y="34.6" class="st2" width="56.5" height="30.2"/>
<rect x="988.3" y="161.8" class="st2" width="86.5" height="33.5"/>
<rect x="994.8" y="161.8" class="st2" width="73.4" height="33.5"/>
<rect x="1013.9" y="195.3" class="st2" width="35.3" height="93.8"/>
<rect x="1013.9" y="677.5" class="st2" width="35.3" height="93.8"/>
<rect x="1014.8" y="1.2" class="st2" width="33.5" height="127.3"/>
<rect x="1014.8" y="1.2" class="st2" width="33.5" height="160.8"/>
<rect x="1014.8" y="34.6" class="st2" width="33.5" height="93.8"/>
<rect x="983.6" y="1.2" class="st2" width="95.9" height="127.3"/>
<rect x="997.1" y="128.3" class="st2" width="68.8" height="33.5"/>
<rect x="1014.7" y="1.2" class="st2" width="33.7" height="160.8"/>
<rect x="983.1" y="161.8" class="st2" width="96.9" height="33.5"/>
<rect x="1001.5" y="161.8" class="st2" width="60.2" height="33.5"/>
<rect x="1014.7" y="0.8" class="st2" width="33.7" height="160.8"/>
<rect x="1014.8" y="677.2" class="st2" width="33.5" height="93.8"/>
<rect x="1009.1" y="161.1" class="st2" width="44.9" height="127.3"/>
<rect x="1014.8" y="516.7" class="st2" width="33.5" height="33.5"/>
<rect x="1013.9" y="516.7" class="st2" width="35.3" height="93.8"/>
<rect x="983.1" y="610.3" class="st2" width="96.9" height="33.5"/>
<rect x="983.1" y="355.7" class="st2" width="96.9" height="93.8"/>
<rect x="997.1" y="289.1" class="st2" width="68.8" height="33.5"/>
<rect x="980.4" y="322.6" class="st2" width="102.3" height="33.5"/>
<rect x="980.4" y="644" class="st2" width="102.3" height="33.5"/>
<rect x="929.9" y="901.7" class="st3" width="203.4" height="30.2"/>
<rect x="983.1" y="34.5" class="st3" width="96.9" height="93.8"/>
<rect x="992.4" y="128.2" class="st3" width="78.4" height="33.5"/>
<rect x="929.9" y="98.2" class="st3" width="203.4" height="30.2"/>
<rect x="1003.3" y="34.5" class="st3" width="56.5" height="30.2"/>
<rect x="999.2" y="161.7" class="st3" width="64.8" height="33.5"/>
<rect x="1001.4" y="0.7" class="st3" width="60.3" height="160.8"/>
</g>
<g id="bg_5" class="st1">
<rect x="143.3" y="0.4" class="st2" width="29.1" height="139.7"/>
<rect x="104.3" y="0.4" class="st2" width="39" height="110.6"/>
<rect x="172.4" y="87.6" class="st2" width="56.3" height="52.4"/>
<rect x="257.8" y="29.5" class="st2" width="30.7" height="81.5"/>
<rect x="317.7" y="29.5" class="st2" width="101.2" height="26.3"/>
<rect x="172.4" y="140" class="st2" width="56.3" height="29.1"/>
<rect x="172.4" y="198.2" class="st2" width="56.3" height="29.1"/>
<rect x="75.2" y="140" class="st2" width="29.1" height="110.6"/>
<rect x="143.3" y="140" class="st2" width="29.1" height="139.7"/>
<rect x="75.2" y="250.6" class="st2" width="68.1" height="29.1"/>
<rect x="104.3" y="140" class="st2" width="39" height="110.6"/>
<rect x="228.7" y="419.3" class="st2" width="88.9" height="29.1"/>
<rect x="228.7" y="477.5" class="st2" width="29.1" height="29.1"/>
<rect x="104.3" y="559" class="st2" width="39" height="110.6"/>
<rect x="172.4" y="646.3" class="st2" width="56.3" height="52.4"/>
<rect x="172.4" y="588.1" class="st2" width="56.3" height="29.1"/>
<rect x="228.7" y="727.7" class="st2" width="29.1" height="29.1"/>
<rect x="172.4" y="727.7" class="st2" width="56.3" height="29.1"/>
<rect x="228.7" y="698.6" class="st2" width="88.9" height="29.1"/>
<rect x="383.9" y="754" class="st2" width="61.3" height="29"/>
<rect x="317.7" y="783" class="st2" width="176.7" height="26.2"/>
<rect x="989.2" y="110.9" class="st2" width="46" height="29.1"/>
<rect x="1188.7" y="29.5" class="st2" width="29.1" height="29.1"/>
<rect x="714.8" y="29.5" class="st2" width="29.1" height="81.5"/>
<rect x="857.1" y="29.5" class="st2" width="29" height="81.8"/>
<rect x="960.1" y="110.9" class="st2" width="29.1" height="29.1"/>
<rect x="1277.7" y="29.5" class="st2" width="101.2" height="26.3"/>
<rect x="1343.9" y="55.7" class="st2" width="61.3" height="29"/>
<rect x="1405.2" y="140" class="st2" width="63.8" height="29.1"/>
<rect x="1188.7" y="140" class="st2" width="88.9" height="29.1"/>
<rect x="1469" y="140" class="st2" width="11.7" height="29.1"/>
<rect x="1788.3" y="29.2" class="st2" width="29.1" height="81.5"/>
<rect x="1562.7" y="110.7" class="st2" width="29.1" height="29.1"/>
<rect x="1663.1" y="110.7" class="st2" width="41.1" height="29.1"/>
<rect x="1788.3" y="110.7" class="st2" width="87.2" height="29.1"/>
<rect x="1817.4" y="29.2" class="st2" width="29" height="81.8"/>
<rect x="1481" y="0.1" class="st2" width="52.4" height="139.7"/>
<rect x="1788.3" y="168.9" class="st2" width="29.1" height="81.5"/>
<rect x="1675.1" y="139.8" class="st2" width="29.1" height="29.1"/>
<rect x="1788.3" y="139.8" class="st2" width="58.1" height="29.1"/>
<rect x="1788.3" y="250.3" class="st2" width="87.2" height="29.1"/>
<rect x="1704.1" y="279.4" class="st2" width="84.2" height="29.1"/>
<rect x="1788.3" y="279.4" class="st2" width="58.1" height="29.1"/>
<rect x="1817.4" y="448.2" class="st2" width="29" height="81.9"/>
<rect x="1704.1" y="669.3" class="st2" width="84.2" height="29.1"/>
<rect x="1788.3" y="669.3" class="st2" width="87.2" height="29.1"/>
<rect x="1788.3" y="727.5" class="st2" width="29.1" height="81.5"/>
<rect x="1788.3" y="698.4" class="st2" width="58.1" height="29.1"/>
<rect x="104.3" y="279.7" class="st2" width="39" height="110.6"/>
<rect x="143.3" y="419.3" class="st2" width="29.1" height="139.7"/>
<rect x="172.4" y="506.6" class="st2" width="56.3" height="52.4"/>
<rect x="228.7" y="588.1" class="st2" width="29.1" height="29.1"/>
<rect x="1817.4" y="308.5" class="st2" width="29" height="81.9"/>
<rect x="1788.3" y="419.1" class="st2" width="58.1" height="29.1"/>
<rect x="1704.1" y="558.8" class="st2" width="84.2" height="29.1"/>
<rect x="1788.3" y="587.8" class="st2" width="29.1" height="81.5"/>
<rect x="1788.3" y="308.5" class="st2" width="29.1" height="81.5"/>
<rect x="1788.3" y="448.2" class="st2" width="29.1" height="81.5"/>
<rect x="1788.3" y="558.8" class="st2" width="58.1" height="29.1"/>
<rect x="172.4" y="279.7" class="st2" width="56.3" height="29.1"/>
<rect x="75.2" y="390.2" class="st2" width="68.1" height="29.1"/>
<rect x="172.4" y="367" class="st2" width="56.3" height="52.4"/>
<rect x="172.4" y="308.8" class="st2" width="56.3" height="29.1"/>
<rect x="257.8" y="390.2" class="st2" width="59.8" height="29.1"/>
<rect x="75.2" y="529.9" class="st2" width="68.1" height="29.1"/>
<rect x="172.4" y="448.4" class="st2" width="56.3" height="29.1"/>
<rect x="172.4" y="559" class="st2" width="56.3" height="29.1"/>
<rect x="383.9" y="55.6" class="st2" width="61.3" height="29"/>
<rect x="915.2" y="0.3" class="st2" width="44.9" height="110.6"/>
<rect x="1704.1" y="29.1" class="st2" width="84.2" height="81.5"/>
<rect x="317.7" y="195.3" class="st2" width="66.3" height="29.1"/>
<rect x="172.4" y="227.3" class="st2" width="56.3" height="52.4"/>
<rect x="228.7" y="140" class="st2" width="88.9" height="29.1"/>
<rect x="228.7" y="198.2" class="st2" width="29.1" height="29.1"/>
<rect x="172.4" y="337.9" class="st2" width="56.3" height="29.1"/>
<rect x="172.4" y="698.6" class="st2" width="56.3" height="29.1"/>
<rect x="317.7" y="809.2" class="st2" width="75.2" height="29.1"/>
<rect x="172.4" y="756.8" class="st2" width="56.3" height="29.1"/>
<rect x="228.7" y="785.9" class="st4" width="29.1" height="52.4"/>
<rect x="172.4" y="785.9" class="st2" width="56.3" height="52.4"/>
<rect x="317.7" y="727.7" class="st2" width="101.2" height="26.3"/>
<rect x="1378.9" y="110.9" class="st2" width="75.5" height="29.1"/>
<rect x="1277.7" y="110.9" class="st2" width="75.2" height="29.1"/>
<rect x="631.5" y="110.9" class="st2" width="71.3" height="29.1"/>
<rect x="1188.7" y="169.1" class="st2" width="29.1" height="29.1"/>
<rect x="828" y="140" class="st2" width="58.1" height="29.1"/>
<rect x="1405.2" y="169.1" class="st2" width="49.1" height="26.2"/>
<rect x="1277.7" y="809.2" class="st2" width="75.2" height="29.1"/>
<rect x="1704.1" y="110.7" class="st2" width="84.2" height="29.1"/>
<rect x="1591.8" y="110.7" class="st2" width="71.3" height="29.1"/>
<rect x="1704.1" y="29.2" class="st4" width="84.2" height="81.5"/>
<rect x="1704.1" y="139.8" class="st2" width="84.2" height="29.1"/>
<rect x="1704.1" y="809" class="st2" width="84.2" height="29.1"/>
<rect x="1591.8" y="809" class="st2" width="71.3" height="29.1"/>
<rect x="602.3" y="139.9" class="st2" width="29.1" height="110.6"/>
<rect x="886.3" y="140.3" class="st2" width="29.1" height="110.6"/>
<rect x="960.3" y="140.3" class="st2" width="29.1" height="110.6"/>
<rect x="143.3" y="279.7" class="st2" width="29.1" height="139.7"/>
<rect x="317.7" y="614.3" class="st2" width="66.3" height="29.1"/>
<rect x="143.3" y="559" class="st2" width="29.1" height="139.7"/>
<rect x="172.4" y="477.5" class="st2" width="56.3" height="29.1"/>
<rect x="257.8" y="529.9" class="st2" width="59.8" height="29.1"/>
<rect x="1817.4" y="727.4" class="st3" width="29" height="81.8"/>
<rect x="418.9" y="110.9" class="st2" width="75.5" height="29.1"/>
<rect x="317.7" y="110.9" class="st2" width="75.2" height="29.1"/>
<rect x="228.7" y="87.6" class="st2" width="29.1" height="52.4"/>
<rect x="494.4" y="110.9" class="st2" width="26.3" height="29.1"/>
<rect x="1378.9" y="169" class="st2" width="26.3" height="26.4"/>
<rect x="1132.4" y="169.1" class="st2" width="56.3" height="29.1"/>
<rect x="1675.1" y="698.4" class="st2" width="29.1" height="29.1"/>
<rect x="494.5" y="643.5" class="st2" width="26.3" height="26.3"/>
<rect x="509.2" y="559.3" class="st2" width="11.7" height="29.1"/>
<rect x="1454.5" y="224.5" class="st2" width="26.3" height="26.4"/>
<rect x="1675.1" y="558.8" class="st2" width="29.1" height="29.1"/>
<rect x="1663.1" y="390" class="st2" width="41.1" height="29.1"/>
<rect x="228.7" y="337.9" class="st2" width="29.1" height="29.1"/>
<rect x="228.7" y="617.2" class="st2" width="29.1" height="29.1"/>
</g>
<rect x="172.4" y="0.4" class="st5" width="56.3" height="29.1"/>
<rect x="317.7" y="0.4" class="st5" width="75.2" height="29.1"/>
<rect x="445.2" y="0.4" class="st5" width="63.8" height="29.1"/>
<rect x="445.2" y="55.6" class="st5" width="49.1" height="29.1"/>
<rect x="172.4" y="58.5" class="st5" width="56.3" height="29.1"/>
<rect x="0.1" y="0.4" class="st5" width="29.1" height="110.6"/>
<rect x="75.2" y="0.4" class="st5" width="29.1" height="110.6"/>
<rect x="288.6" y="29.5" class="st5" width="29.1" height="81.5"/>
<rect x="418.9" y="29.4" class="st5" width="26.3" height="26.4"/>
<rect x="494.4" y="84.6" class="st5" width="26.3" height="26.3"/>
<rect x="29.2" y="110.9" class="st5" width="46" height="29.1"/>
<rect x="228.7" y="29.5" class="st5" width="29.1" height="29.1"/>
<rect x="29.2" y="0.4" class="st6" width="46" height="110.6"/>
<rect x="0.1" y="110.9" class="st5" width="29.1" height="29.1"/>
<rect x="75.2" y="110.9" class="st6" width="68.1" height="29.1"/>
<rect x="172.4" y="29.5" class="st5" width="56.3" height="29.1"/>
<rect x="228.7" y="0.4" class="st5" width="88.9" height="29.1"/>
<rect x="228.7" y="58.5" class="st5" width="29.1" height="29.1"/>
<rect x="392.9" y="0.4" class="st5" width="52.3" height="29.1"/>
<rect x="383.9" y="55.7" class="st6" width="61.3" height="29"/>
<rect x="392.9" y="110.9" class="st6" width="26" height="29.1"/>
<rect x="494.4" y="29.5" class="st5" width="26.3" height="55.1"/>
<rect x="509" y="0.4" class="st5" width="11.7" height="29.1"/>
<rect x="0.1" y="140" class="st6" width="29.1" height="110.6"/>
<rect x="418.9" y="169" class="st5" width="26.3" height="26.4"/>
<rect x="29.2" y="250.6" class="st5" width="46" height="29.1"/>
<rect x="228.7" y="169.1" class="st5" width="29.1" height="29.1"/>
<rect x="29.2" y="140" class="st5" width="46" height="110.6"/>
<rect x="0.1" y="250.6" class="st5" width="29.1" height="29.1"/>
<rect x="509" y="140" class="st5" width="11.7" height="29.1"/>
<rect x="0.1" y="279.7" class="st6" width="29.1" height="110.6"/>
<rect x="75.2" y="279.7" class="st5" width="29.1" height="110.6"/>
<rect x="29.2" y="390.2" class="st5" width="46" height="29.1"/>
<rect x="228.7" y="308.8" class="st5" width="29.1" height="29.1"/>
<rect x="29.2" y="279.7" class="st6" width="46" height="110.6"/>
<rect x="0.1" y="390.2" class="st5" width="29.1" height="29.1"/>
<rect x="0.1" y="419.3" class="st6" width="29.1" height="110.6"/>
<rect x="75.2" y="419.3" class="st6" width="29.1" height="110.6"/>
<rect x="29.2" y="529.9" class="st5" width="46" height="29.1"/>
<rect x="29.2" y="419.3" class="st5" width="46" height="110.6"/>
<rect x="0.1" y="529.9" class="st5" width="29.1" height="29.1"/>
<rect x="0.1" y="559" class="st5" width="29.1" height="110.6"/>
<rect x="75.2" y="559" class="st5" width="29.1" height="110.6"/>
<rect x="29.2" y="669.5" class="st5" width="46" height="29.1"/>
<rect x="29.2" y="559" class="st6" width="46" height="110.6"/>
<rect x="0.1" y="669.5" class="st6" width="29.1" height="29.1"/>
<rect x="75.2" y="669.5" class="st5" width="68.1" height="29.1"/>
<rect x="392.9" y="669.5" class="st5" width="26" height="29.1"/>
<rect x="418.9" y="809.2" class="st5" width="75.5" height="29.1"/>
<rect x="0.1" y="698.6" class="st5" width="29.1" height="110.6"/>
<rect x="75.2" y="698.6" class="st5" width="29.1" height="110.6"/>
<rect x="143.3" y="698.6" class="st5" width="29.1" height="139.7"/>
<rect x="29.2" y="809.2" class="st5" width="46" height="29.1"/>
<rect x="29.2" y="698.6" class="st6" width="46" height="110.6"/>
<rect x="0.1" y="809.2" class="st5" width="29.1" height="29.1"/>
<rect x="75.2" y="809.2" class="st5" width="68.1" height="29.1"/>
<rect x="104.3" y="698.6" class="st5" width="39" height="110.6"/>
<rect x="228.7" y="756.8" class="st5" width="29.1" height="29.1"/>
<rect x="257.8" y="809.2" class="st5" width="59.8" height="29.1"/>
<rect x="392.9" y="809.2" class="st5" width="26" height="29.1"/>
<rect x="494.4" y="809.2" class="st5" width="26.3" height="29.1"/>
<rect x="172.4" y="838.3" class="st5" width="56.3" height="29.1"/>
<rect x="317.7" y="838.3" class="st6" width="75.2" height="29.1"/>
<rect x="445.2" y="838.3" class="st5" width="63.8" height="29.1"/>
<rect x="418.9" y="948.9" class="st5" width="75.5" height="29.1"/>
<rect x="445.2" y="893.6" class="st5" width="49.1" height="29.1"/>
<rect x="317.7" y="948.9" class="st5" width="75.2" height="29.1"/>
<rect x="317.7" y="893.6" class="st5" width="66.3" height="29.1"/>
<rect x="172.4" y="896.5" class="st5" width="56.3" height="29.1"/>
<rect x="0.1" y="838.3" class="st6" width="29.1" height="110.6"/>
<rect x="75.2" y="838.3" class="st6" width="29.1" height="110.6"/>
<rect x="143.3" y="838.3" class="st5" width="29.1" height="139.7"/>
<rect x="288.6" y="867.4" class="st5" width="29.1" height="81.5"/>
<rect x="418.9" y="867.3" class="st5" width="26.3" height="26.3"/>
<rect x="494.4" y="922.5" class="st5" width="26.3" height="26.3"/>
<rect x="29.2" y="948.9" class="st6" width="46" height="29.1"/>
<rect x="228.7" y="867.4" class="st5" width="29.1" height="29.1"/>
<rect x="228.7" y="925.6" class="st5" width="29.1" height="52.4"/>
<rect x="29.2" y="838.3" class="st5" width="46" height="110.6"/>
<rect x="0.1" y="948.9" class="st5" width="29.1" height="29.1"/>
<rect x="75.2" y="948.9" class="st6" width="68.1" height="29.1"/>
<rect x="104.3" y="838.3" class="st5" width="39" height="110.6"/>
<rect x="172.4" y="925.6" class="st6" width="56.3" height="52.4"/>
<rect x="172.4" y="867.4" class="st5" width="56.3" height="29.1"/>
<rect x="228.7" y="838.3" class="st5" width="88.9" height="29.1"/>
<rect x="228.7" y="896.5" class="st5" width="29.1" height="29.1"/>
<rect x="257.8" y="948.9" class="st6" width="59.8" height="29.1"/>
<rect x="257.8" y="867.4" class="st5" width="30.7" height="81.5"/>
<rect x="392.9" y="838.3" class="st5" width="52.3" height="29.1"/>
<rect x="317.7" y="867.4" class="st5" width="101.2" height="26.3"/>
<rect x="383.9" y="893.7" class="st6" width="61.3" height="29"/>
<rect x="317.7" y="922.7" class="st5" width="176.7" height="26.2"/>
<rect x="392.9" y="948.8" class="st5" width="26" height="29.1"/>
<rect x="445.2" y="867.4" class="st5" width="49.1" height="26.2"/>
<rect x="494.4" y="948.8" class="st5" width="26.3" height="29.1"/>
<rect x="494.4" y="867.4" class="st5" width="26.3" height="55.1"/>
<rect x="509" y="838.3" class="st5" width="11.7" height="29.1"/>
<rect x="172.4" y="978" class="st5" width="56.3" height="29.1"/>
<rect x="317.7" y="978" class="st5" width="75.2" height="29.1"/>
<rect x="445.2" y="978" class="st5" width="63.8" height="29.1"/>
<rect x="418.9" y="1088.5" class="st6" width="75.5" height="29.1"/>
<rect x="445.2" y="1033.2" class="st5" width="49.1" height="29.1"/>
<rect x="317.7" y="1088.5" class="st6" width="75.2" height="29.1"/>
<rect x="317.7" y="1033.2" class="st5" width="66.3" height="29.1"/>
<rect x="172.4" y="1036.1" class="st5" width="56.3" height="29.1"/>
<rect x="0.1" y="978" class="st6" width="29.1" height="110.6"/>
<rect x="75.2" y="978" class="st5" width="29.1" height="110.6"/>
<rect x="143.3" y="978" class="st5" width="29.1" height="139.7"/>
<rect x="288.6" y="1007" class="st5" width="29.1" height="81.5"/>
<rect x="418.9" y="1007" class="st5" width="26.3" height="26.3"/>
<rect x="494.4" y="1062.2" class="st6" width="26.3" height="26.3"/>
<rect x="29.2" y="1088.5" class="st6" width="46" height="29.1"/>
<rect x="228.7" y="1007" class="st6" width="29.1" height="29.1"/>
<rect x="228.7" y="1065.2" class="st6" width="29.1" height="52.4"/>
<rect x="29.2" y="978" class="st6" width="46" height="110.6"/>
<rect x="0.1" y="1088.5" class="st5" width="29.1" height="29.1"/>
<rect x="75.2" y="1088.5" class="st6" width="68.1" height="29.1"/>
<rect x="104.3" y="978" class="st6" width="39" height="110.6"/>
<rect x="172.4" y="1065.2" class="st6" width="56.3" height="52.4"/>
<rect x="172.4" y="1007" class="st6" width="56.3" height="29.1"/>
<rect x="228.7" y="978" class="st6" width="88.9" height="29.1"/>
<rect x="228.7" y="1036.1" class="st5" width="29.1" height="29.1"/>
<rect x="257.8" y="1088.5" class="st5" width="59.8" height="29.1"/>
<rect x="257.8" y="1007" class="st6" width="30.7" height="81.5"/>
<rect x="392.9" y="978" class="st6" width="52.3" height="29.1"/>
<rect x="317.7" y="1007" class="st6" width="101.2" height="26.3"/>
<rect x="383.9" y="1033.3" class="st5" width="61.3" height="29"/>
<rect x="317.7" y="1062.3" class="st6" width="176.7" height="26.2"/>
<rect x="392.9" y="1088.5" class="st5" width="26" height="29.1"/>
<rect x="445.2" y="1007" class="st6" width="49.1" height="26.2"/>
<rect x="494.4" y="1088.5" class="st5" width="26.3" height="29.1"/>
<rect x="494.4" y="1007" class="st6" width="26.3" height="55.1"/>
<rect x="509" y="978" class="st5" width="11.7" height="29.1"/>
<rect x="743.8" y="0.4" class="st5" width="84.2" height="29.1"/>
<rect x="1132.4" y="0.4" class="st5" width="56.3" height="29.1"/>
<rect x="1277.7" y="0.4" class="st5" width="75.2" height="29.1"/>
<rect x="1405.2" y="0.4" class="st5" width="63.8" height="29.1"/>
<rect x="1405.2" y="55.6" class="st5" width="49.1" height="29.1"/>
<rect x="1277.7" y="55.6" class="st5" width="66.3" height="29.1"/>
<rect x="886.1" y="0.4" class="st5" width="29.1" height="110.6"/>
<rect x="1035.2" y="0.4" class="st6" width="29.1" height="110.6"/>
<rect x="1378.9" y="29.4" class="st5" width="26.3" height="26.4"/>
<rect x="1454.4" y="84.6" class="st5" width="26.3" height="26.3"/>
<rect x="602.4" y="0.4" class="st5" width="29.1" height="110.6"/>
<rect x="828" y="29.5" class="st5" width="29.1" height="81.5"/>
<rect x="743.8" y="110.9" class="st5" width="84.2" height="29.1"/>
<rect x="602.4" y="110.9" class="st5" width="29.1" height="29.1"/>
<rect x="714.8" y="0.4" class="st5" width="29.1" height="29.1"/>
<rect x="828" y="0.4" class="st5" width="58.1" height="29.1"/>
<rect x="702.8" y="110.9" class="st5" width="41.1" height="29.1"/>
<rect x="915.2" y="0.4" class="st6" width="44.9" height="110.6"/>
<rect x="1064.3" y="0.4" class="st5" width="39" height="110.6"/>
<rect x="1132.4" y="87.6" class="st5" width="56.3" height="52.4"/>
<rect x="1132.4" y="29.5" class="st5" width="56.3" height="29.1"/>
<rect x="1188.7" y="0.4" class="st5" width="88.9" height="29.1"/>
<rect x="1188.7" y="58.5" class="st5" width="29.1" height="29.1"/>
<rect x="1217.8" y="29.5" class="st5" width="30.7" height="81.5"/>
<rect x="1352.9" y="0.4" class="st5" width="52.3" height="29.1"/>
<rect x="1352.9" y="110.9" class="st5" width="26" height="29.1"/>
<rect x="1454.4" y="110.9" class="st5" width="26.3" height="29.1"/>
<rect x="1454.4" y="29.5" class="st5" width="26.3" height="55.1"/>
<rect x="1469" y="0.4" class="st5" width="11.7" height="29.1"/>
<rect x="714.8" y="140" class="st5" width="29.1" height="29.1"/>
<rect x="1378.9" y="809.2" class="st5" width="75.5" height="29.1"/>
<rect x="915.2" y="809.2" class="st5" width="44.9" height="29.1"/>
<rect x="989.2" y="809.2" class="st5" width="46" height="29.1"/>
<rect x="1188.7" y="785.9" class="st5" width="29.1" height="52.4"/>
<rect x="602.4" y="809.2" class="st5" width="29.1" height="29.1"/>
<rect x="702.8" y="809.2" class="st5" width="41.1" height="29.1"/>
<rect x="828" y="809.2" class="st5" width="87.2" height="29.1"/>
<rect x="857.1" y="727.7" class="st5" width="29" height="81.8"/>
<rect x="960.1" y="809.2" class="st5" width="29.1" height="29.1"/>
<rect x="1035.2" y="809.2" class="st5" width="68.1" height="29.1"/>
<rect x="1217.8" y="809.2" class="st5" width="59.8" height="29.1"/>
<rect x="1352.9" y="809.2" class="st5" width="26" height="29.1"/>
<rect x="1454.4" y="809.2" class="st5" width="26.3" height="29.1"/>
<rect x="743.8" y="838.3" class="st5" width="84.2" height="29.1"/>
<rect x="1132.4" y="838.3" class="st5" width="56.3" height="29.1"/>
<rect x="1277.7" y="838.3" class="st5" width="75.2" height="29.1"/>
<rect x="1405.2" y="838.3" class="st6" width="63.8" height="29.1"/>
<rect x="1378.9" y="948.9" class="st6" width="75.5" height="29.1"/>
<rect x="1405.2" y="893.6" class="st5" width="49.1" height="29.1"/>
<rect x="1277.7" y="948.9" class="st5" width="75.2" height="29.1"/>
<rect x="1277.7" y="893.6" class="st5" width="66.3" height="29.1"/>
<rect x="1132.4" y="896.5" class="st5" width="56.3" height="29.1"/>
<rect x="886.1" y="838.3" class="st5" width="29.1" height="110.6"/>
<rect x="960.1" y="838.3" class="st6" width="29.1" height="110.6"/>
<rect x="1035.2" y="838.3" class="st5" width="29.1" height="110.6"/>
<rect x="1103.3" y="838.3" class="st5" width="29.1" height="139.7"/>
<rect x="1248.6" y="867.4" class="st6" width="29.1" height="81.5"/>
<rect x="1378.9" y="867.3" class="st5" width="26.3" height="26.3"/>
<rect x="1454.4" y="922.5" class="st5" width="26.3" height="26.3"/>
<rect x="915.2" y="948.9" class="st6" width="44.9" height="29.1"/>
<rect x="989.2" y="948.9" class="st5" width="46" height="29.1"/>
<rect x="1188.7" y="867.4" class="st5" width="29.1" height="29.1"/>
<rect x="1188.7" y="925.6" class="st5" width="29.1" height="52.4"/>
<rect x="714.8" y="867.4" class="st5" width="29.1" height="81.5"/>
<rect x="602.4" y="838.3" class="st5" width="29.1" height="110.6"/>
<rect x="828" y="867.4" class="st5" width="29.1" height="81.5"/>
<rect x="743.8" y="948.9" class="st5" width="84.2" height="29.1"/>
<rect x="631.5" y="948.9" class="st5" width="71.3" height="29.1"/>
<rect x="631.5" y="838.3" class="st6" width="83.3" height="110.6"/>
<rect x="602.4" y="948.9" class="st5" width="29.1" height="29.1"/>
<rect x="714.8" y="838.3" class="st5" width="29.1" height="29.1"/>
<rect x="828" y="838.3" class="st5" width="58.1" height="29.1"/>
<rect x="702.8" y="948.9" class="st5" width="41.1" height="29.1"/>
<rect x="828" y="948.9" class="st5" width="87.2" height="29.1"/>
<rect x="743.8" y="867.4" class="st6" width="84.2" height="81.5"/>
<rect x="857.1" y="867.4" class="st5" width="29" height="81.8"/>
<rect x="915.2" y="838.3" class="st5" width="44.9" height="110.6"/>
<rect x="989.2" y="838.3" class="st6" width="46" height="110.6"/>
<rect x="960.1" y="948.9" class="st5" width="29.1" height="29.1"/>
<rect x="1035.2" y="948.9" class="st5" width="68.1" height="29.1"/>
<rect x="1064.3" y="838.3" class="st6" width="39" height="110.6"/>
<rect x="1132.4" y="925.6" class="st5" width="56.3" height="52.4"/>
<rect x="1132.4" y="867.4" class="st5" width="56.3" height="29.1"/>
<rect x="1188.7" y="838.3" class="st6" width="88.9" height="29.1"/>
<rect x="1188.7" y="896.5" class="st5" width="29.1" height="29.1"/>
<rect x="1217.8" y="948.9" class="st5" width="59.8" height="29.1"/>
<rect x="1217.8" y="867.4" class="st5" width="30.7" height="81.5"/>
<rect x="1352.9" y="838.3" class="st5" width="52.3" height="29.1"/>
<rect x="1277.7" y="867.4" class="st5" width="101.2" height="26.3"/>
<rect x="1343.9" y="893.7" class="st6" width="61.3" height="29"/>
<rect x="1277.7" y="922.7" class="st5" width="176.7" height="26.2"/>
<rect x="1352.9" y="948.8" class="st5" width="26" height="29.1"/>
<rect x="1405.2" y="867.4" class="st6" width="49.1" height="26.2"/>
<rect x="1454.4" y="948.8" class="st6" width="26.3" height="29.1"/>
<rect x="1454.4" y="867.4" class="st5" width="26.3" height="55.1"/>
<rect x="1469" y="838.3" class="st5" width="11.7" height="29.1"/>
<rect x="573.1" y="838.3" class="st5" width="29.3" height="139.7"/>
<rect x="520.7" y="838.3" class="st6" width="52.4" height="139.7"/>
<rect x="743.8" y="978" class="st5" width="84.2" height="29.1"/>
<rect x="1132.4" y="978" class="st5" width="56.3" height="29.1"/>
<rect x="1277.7" y="978" class="st6" width="75.2" height="29.1"/>
<rect x="1405.2" y="978" class="st5" width="63.8" height="29.1"/>
<rect x="1378.9" y="1088.5" class="st5" width="75.5" height="29.1"/>
<rect x="1405.2" y="1033.2" class="st5" width="49.1" height="29.1"/>
<rect x="1277.7" y="1088.5" class="st6" width="75.2" height="29.1"/>
<rect x="1277.7" y="1033.2" class="st6" width="66.3" height="29.1"/>
<rect x="1132.4" y="1036.1" class="st5" width="56.3" height="29.1"/>
<rect x="886.1" y="978" class="st6" width="29.1" height="110.6"/>
<rect x="960.1" y="978" class="st5" width="29.1" height="110.6"/>
<rect x="1035.2" y="978" class="st5" width="29.1" height="110.6"/>
<rect x="1103.3" y="978" class="st6" width="29.1" height="139.7"/>
<rect x="1248.6" y="1007" class="st6" width="29.1" height="81.5"/>
<rect x="1378.9" y="1007" class="st5" width="26.3" height="26.3"/>
<rect x="1454.4" y="1062.2" class="st6" width="26.3" height="26.3"/>
<rect x="915.2" y="1088.5" class="st6" width="44.9" height="29.1"/>
<rect x="989.2" y="1088.5" class="st5" width="46" height="29.1"/>
<rect x="1188.7" y="1007" class="st5" width="29.1" height="29.1"/>
<rect x="1188.7" y="1065.2" class="st6" width="29.1" height="52.4"/>
<rect x="714.8" y="1007" class="st6" width="29.1" height="81.5"/>
<rect x="602.4" y="978" class="st5" width="29.1" height="110.6"/>
<rect x="828" y="1007" class="st5" width="29.1" height="81.5"/>
<rect x="743.8" y="1088.5" class="st6" width="84.2" height="29.1"/>
<rect x="631.5" y="1088.5" class="st6" width="71.3" height="29.1"/>
<rect x="631.5" y="978" class="st6" width="83.3" height="110.6"/>
<rect x="602.4" y="1088.5" class="st6" width="29.1" height="29.1"/>
<rect x="714.8" y="978" class="st5" width="29.1" height="29.1"/>
<rect x="828" y="978" class="st6" width="58.1" height="29.1"/>
<rect x="702.8" y="1088.5" class="st5" width="41.1" height="29.1"/>
<rect x="828" y="1088.5" class="st5" width="87.2" height="29.1"/>
<rect x="743.8" y="1007" class="st6" width="84.2" height="81.5"/>
<rect x="857.1" y="1007" class="st6" width="29" height="81.9"/>
<rect x="915.2" y="978" class="st5" width="44.9" height="110.6"/>
<rect x="989.2" y="978" class="st6" width="46" height="110.6"/>
<rect x="960.1" y="1088.5" class="st6" width="29.1" height="29.1"/>
<rect x="1035.2" y="1088.5" class="st6" width="68.1" height="29.1"/>
<rect x="1064.3" y="978" class="st5" width="39" height="110.6"/>
<rect x="1132.4" y="1065.2" class="st6" width="56.3" height="52.4"/>
<rect x="1132.4" y="1007" class="st6" width="56.3" height="29.1"/>
<rect x="1188.7" y="978" class="st6" width="88.9" height="29.1"/>
<rect x="1188.7" y="1036.1" class="st6" width="29.1" height="29.1"/>
<rect x="1217.8" y="1088.5" class="st5" width="59.8" height="29.1"/>
<rect x="1217.8" y="1007" class="st6" width="30.7" height="81.5"/>
<rect x="1352.9" y="978" class="st6" width="52.3" height="29.1"/>
<rect x="1277.7" y="1007" class="st5" width="101.2" height="26.3"/>
<rect x="1343.9" y="1033.3" class="st6" width="61.3" height="29"/>
<rect x="1277.7" y="1062.3" class="st6" width="176.7" height="26.2"/>
<rect x="1352.9" y="1088.5" class="st5" width="26" height="29.1"/>
<rect x="1405.2" y="1007" class="st6" width="49.1" height="26.2"/>
<rect x="1454.4" y="1088.5" class="st5" width="26.3" height="29.1"/>
<rect x="1454.4" y="1007" class="st6" width="26.3" height="55.1"/>
<rect x="1469" y="978" class="st6" width="11.7" height="29.1"/>
<rect x="573.1" y="978" class="st6" width="29.3" height="139.7"/>
<rect x="520.7" y="978" class="st6" width="52.4" height="139.7"/>
<rect x="1704.1" y="0.1" class="st5" width="84.2" height="29.1"/>
<rect x="1846.4" y="0.1" class="st5" width="29.1" height="110.6"/>
<rect x="1920.4" y="0.1" class="st5" width="29.1" height="110.6"/>
<rect x="1875.5" y="110.7" class="st5" width="44.9" height="29.1"/>
<rect x="1949.5" y="110.7" class="st5" width="46" height="29.1"/>
<rect x="1675.1" y="29.2" class="st5" width="29.1" height="81.5"/>
<rect x="1562.7" y="0.1" class="st5" width="29.1" height="110.6"/>
<rect x="1675.1" y="0.1" class="st5" width="29.1" height="29.1"/>
<rect x="1788.3" y="0.1" class="st5" width="58.1" height="29.1"/>
<rect x="1875.5" y="0.1" class="st6" width="44.9" height="110.6"/>
<rect x="1949.5" y="0.1" class="st6" width="46" height="110.6"/>
<rect x="1920.4" y="110.7" class="st5" width="29.1" height="29.1"/>
<rect x="1846.4" y="139.8" class="st5" width="29.1" height="110.6"/>
<rect x="1920.4" y="139.8" class="st6" width="29.1" height="110.6"/>
<rect x="1875.5" y="250.3" class="st5" width="44.9" height="29.1"/>
<rect x="1949.5" y="250.3" class="st6" width="46" height="29.1"/>
<rect x="1817.4" y="168.9" class="st6" width="29" height="81.9"/>
<rect x="1875.5" y="139.8" class="st6" width="44.9" height="110.6"/>
<rect x="1949.5" y="139.8" class="st6" width="46" height="110.6"/>
<rect x="1920.4" y="250.3" class="st5" width="29.1" height="29.1"/>
<rect x="1846.4" y="279.4" class="st6" width="29.1" height="110.6"/>
<rect x="1920.4" y="279.4" class="st6" width="29.1" height="110.6"/>
<rect x="1949.5" y="390" class="st6" width="46" height="29.1"/>
<rect x="1875.5" y="279.4" class="st5" width="44.9" height="110.6"/>
<rect x="1949.5" y="279.4" class="st5" width="46" height="110.6"/>
<rect x="1920.4" y="390" class="st5" width="29.1" height="29.1"/>
<rect x="1920.4" y="419.1" class="st5" width="29.1" height="110.6"/>
<rect x="1875.5" y="529.7" class="st5" width="44.9" height="29.1"/>
<rect x="1949.5" y="529.7" class="st6" width="46" height="29.1"/>
<rect x="1875.5" y="419.1" class="st6" width="44.9" height="110.6"/>
<rect x="1949.5" y="419.1" class="st6" width="46" height="110.6"/>
<rect x="1920.4" y="529.7" class="st6" width="29.1" height="29.1"/>
<rect x="1846.4" y="558.8" class="st5" width="29.1" height="110.6"/>
<rect x="1920.4" y="558.8" class="st5" width="29.1" height="110.6"/>
<rect x="1875.5" y="669.3" class="st5" width="44.9" height="29.1"/>
<rect x="1949.5" y="669.3" class="st6" width="46" height="29.1"/>
<rect x="1817.4" y="587.8" class="st5" width="29" height="81.8"/>
<rect x="1875.5" y="558.8" class="st6" width="44.9" height="110.6"/>
<rect x="1949.5" y="558.8" class="st5" width="46" height="110.6"/>
<rect x="1920.4" y="669.3" class="st6" width="29.1" height="29.1"/>
<rect x="1846.4" y="698.4" class="st5" width="29.1" height="110.6"/>
<rect x="1920.4" y="698.4" class="st5" width="29.1" height="110.6"/>
<rect x="1875.5" y="809" class="st6" width="44.9" height="29.1"/>
<rect x="1949.5" y="809" class="st5" width="46" height="29.1"/>
<rect x="1562.7" y="809" class="st5" width="29.1" height="29.1"/>
<rect x="1663.1" y="809" class="st5" width="41.1" height="29.1"/>
<rect x="1788.3" y="809" class="st5" width="87.2" height="29.1"/>
<rect x="1817.4" y="727.5" class="st6" width="29" height="81.8"/>
<rect x="1875.5" y="698.4" class="st6" width="44.9" height="110.6"/>
<rect x="1949.5" y="698.4" class="st6" width="46" height="110.6"/>
<rect x="1920.4" y="809" class="st6" width="29.1" height="29.1"/>
<rect x="1704.1" y="838.1" class="st5" width="84.2" height="29.1"/>
<rect x="1846.4" y="838.1" class="st6" width="29.1" height="110.6"/>
<rect x="1920.4" y="838.1" class="st6" width="29.1" height="110.6"/>
<rect x="1875.5" y="948.6" class="st6" width="44.9" height="29.1"/>
<rect x="1949.5" y="948.6" class="st5" width="46" height="29.1"/>
<rect x="1675.1" y="867.2" class="st5" width="29.1" height="81.5"/>
<rect x="1562.7" y="838.1" class="st5" width="29.1" height="110.6"/>
<rect x="1788.3" y="867.2" class="st5" width="29.1" height="81.5"/>
<rect x="1704.1" y="948.6" class="st6" width="84.2" height="29.1"/>
<rect x="1591.8" y="948.6" class="st5" width="71.3" height="29.1"/>
<rect x="1591.8" y="838.1" class="st6" width="83.3" height="110.6"/>
<rect x="1562.7" y="948.6" class="st6" width="29.1" height="29.1"/>
<rect x="1675.1" y="838.1" class="st5" width="29.1" height="29.1"/>
<rect x="1788.3" y="838.1" class="st5" width="58.1" height="29.1"/>
<rect x="1663.1" y="948.6" class="st6" width="41.1" height="29.1"/>
<rect x="1788.3" y="948.6" class="st5" width="87.2" height="29.1"/>
<rect x="1704.1" y="867.2" class="st5" width="84.2" height="81.5"/>
<rect x="1817.4" y="867.2" class="st6" width="29" height="81.8"/>
<rect x="1875.5" y="838.1" class="st5" width="44.9" height="110.6"/>
<rect x="1949.5" y="838.1" class="st6" width="46" height="110.6"/>
<rect x="1920.4" y="948.6" class="st5" width="29.1" height="29.1"/>
<rect x="1533.4" y="838.1" class="st5" width="29.3" height="139.7"/>
<rect x="1481" y="838.1" class="st5" width="52.4" height="139.7"/>
<rect x="1704.1" y="977.7" class="st5" width="84.2" height="29.1"/>
<rect x="1846.4" y="977.7" class="st6" width="29.1" height="110.6"/>
<rect x="1920.4" y="977.7" class="st5" width="29.1" height="110.6"/>
<rect x="1875.5" y="1088.3" class="st6" width="44.9" height="29.1"/>
<rect x="1949.5" y="1088.3" class="st5" width="46" height="29.1"/>
<rect x="1675.1" y="1006.8" class="st6" width="29.1" height="81.5"/>
<rect x="1562.7" y="977.7" class="st5" width="29.1" height="110.6"/>
<rect x="1788.3" y="1006.8" class="st5" width="29.1" height="81.5"/>
<rect x="1704.1" y="1088.3" class="st6" width="84.2" height="29.1"/>
<rect x="1591.8" y="1088.3" class="st5" width="71.3" height="29.1"/>
<rect x="1591.8" y="977.7" class="st6" width="83.3" height="110.6"/>
<rect x="1562.7" y="1088.3" class="st6" width="29.1" height="29.1"/>
<rect x="1675.1" y="977.7" class="st5" width="29.1" height="29.1"/>
<rect x="1788.3" y="977.7" class="st6" width="58.1" height="29.1"/>
<rect x="1663.1" y="1088.3" class="st6" width="41.1" height="29.1"/>
<rect x="1788.3" y="1088.3" class="st5" width="87.2" height="29.1"/>
<rect x="1704.1" y="1006.8" class="st6" width="84.2" height="81.5"/>
<rect x="1817.4" y="1006.8" class="st6" width="29" height="81.9"/>