Newer
Older
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
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="165" viewBox="0 0 2400 660">
<defs>
<clipPath id="clip130">
<rect x="0" y="0" width="2400" height="660"/>
</clipPath>
</defs>
<path clip-path="url(#clip130)" d="
M0 660 L2400 660 L2400 0 L0 0 Z
" fill="#ffffff" fill-rule="evenodd" fill-opacity="1"/>
<defs>
<clipPath id="clip131">
<rect x="480" y="0" width="1681" height="660"/>
</clipPath>
</defs>
<path clip-path="url(#clip130)" d="
M47.2441 612.756 L552.756 612.756 L552.756 87.9401 L47.2441 87.9401 Z
" fill="#ffffff" fill-rule="evenodd" fill-opacity="1"/>
<defs>
<clipPath id="clip132">
<rect x="47" y="87" width="507" height="526"/>
</clipPath>
</defs>
<polyline clip-path="url(#clip130)" style="stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none" points="
47.2441,612.756 552.756,612.756
"/>
<polyline clip-path="url(#clip130)" style="stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,87.9401
"/>
<path clip-path="url(#clip130)" d="M267.937 9.62495 Q262.509 18.942 259.876 28.0566 Q257.243 37.1711 257.243 46.5287 Q257.243 55.8863 259.876 65.0818 Q262.549 74.2369 267.937 83.5134 L261.456 83.5134 Q255.379 73.9938 252.341 64.7983 Q249.343 55.6027 249.343 46.5287 Q249.343 37.4952 252.341 28.3401 Q255.339 19.1851 261.456 9.62495 L267.937 9.62495 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" /><path clip-path="url(#clip130)" d="M303.018 49.7694 Q293.984 49.7694 290.501 51.8354 Q287.017 53.9013 287.017 58.8839 Q287.017 62.8538 289.609 65.2034 Q292.243 67.5124 296.739 67.5124 Q302.937 67.5124 306.664 63.1374 Q310.431 58.7219 310.431 51.4303 L310.431 49.7694 L303.018 49.7694 M317.885 46.6907 L317.885 72.576 L310.431 72.576 L310.431 65.6895 Q307.879 69.8214 304.071 71.8063 Q300.263 73.7508 294.754 73.7508 Q287.787 73.7508 283.655 69.8619 Q279.563 65.9325 279.563 59.3701 Q279.563 51.7138 284.667 47.825 Q289.812 43.9361 299.98 43.9361 L310.431 43.9361 L310.431 43.2069 Q310.431 38.0623 307.028 35.2672 Q303.666 32.4315 297.549 32.4315 Q293.66 32.4315 289.974 33.3632 Q286.288 34.295 282.885 36.1584 L282.885 29.2718 Q286.976 27.692 290.825 26.9223 Q294.673 26.1121 298.319 26.1121 Q308.163 26.1121 313.024 31.2163 Q317.885 36.3204 317.885 46.6907 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" /><path clip-path="url(#clip130)" d="M332.063 9.62495 L338.544 9.62495 Q344.621 19.1851 347.618 28.3401 Q350.657 37.4952 350.657 46.5287 Q350.657 55.6027 347.618 64.7983 Q344.621 73.9938 338.544 83.5134 L332.063 83.5134 Q337.451 74.2369 340.084 65.0818 Q342.757 55.8863 342.757 46.5287 Q342.757 37.1711 340.084 28.0566 Q337.451 18.942 332.063 9.62495 Z" fill="#000000" fill-rule="evenodd" fill-opacity="1" /><path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 195.045 L552.756 184.335 L552.756 173.624 L552.756 162.914 L552.756 152.203 L552.756 141.493 L552.756 130.782 L552.756 120.072
L552.756 109.361 L552.756 98.6507 L552.756 87.9401 L552.756 87.9401 L552.756 87.9401 L552.756 87.9401 L542.439 87.9401 L532.123 87.9401 L521.806 87.9401 L511.49 87.9401
L501.173 87.9401 L490.857 87.9401 L480.54 87.9401 L470.223 87.9401 L459.907 87.9401 L449.59 87.9401 L439.274 87.9401 L428.957 87.9401 L418.641 87.9401 L408.324 87.9401
L398.007 87.9401 L387.691 87.9401 L377.374 87.9401 L367.058 87.9401 L356.741 87.9401 L346.425 87.9401 L336.108 87.9401 L325.791 87.9401 L315.475 87.9401 L305.158 87.9401
L294.842 87.9401 L284.525 87.9401 L274.209 87.9401 L263.892 87.9401 L253.575 87.9401 L243.259 87.9401 L232.942 87.9401 L222.626 87.9401 L212.309 87.9401 L201.993 87.9401
L191.676 87.9401 L181.359 87.9401 L171.043 87.9401 L160.726 87.9401 L150.41 87.9401 L140.093 87.9401 L129.777 87.9401 L119.46 87.9401 L109.143 87.9401 L98.8269 87.9401
L88.5104 87.9401 L78.1938 87.9401 L67.8772 87.9401 L57.5607 87.9401 L47.2441 87.9401 L47.2441 87.9401 L47.2441 87.9401 L47.2441 87.9401 L47.2441 98.6507 L47.2441 109.361
L47.2441 120.072 L47.2441 130.782 L47.2441 141.493 L47.2441 152.203 L47.2441 162.914 L47.2441 173.624 L47.2441 184.335 L47.2441 195.045 L47.2441 205.756 L47.2441 216.466
L47.2441 227.177 L47.2441 237.887 L47.2441 248.598 L47.2441 259.309 L47.2441 270.019 L47.2441 280.73 L47.2441 291.44 L47.2441 302.151 L47.2441 312.861 L47.2441 323.572
L47.2441 334.282 L47.2441 344.993 L47.2441 355.703 L47.2441 366.414 L47.2441 377.124 L47.2441 387.835 L47.2441 398.545 L47.2441 409.256 L47.2441 419.966 L47.2441 430.677
L47.2441 441.387 L47.2441 452.098 L47.2441 462.809 L47.2441 473.519 L47.2441 484.23 L47.2441 494.94 L47.2441 505.651 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782
L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#440154" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 195.045 L552.756 184.335 L552.756 173.624 L552.756 162.914 L552.756 152.203 L552.756 141.493 L552.756 130.782 L552.756 120.072
L552.756 109.361 L552.756 109.361 L552.756 104.387 L544.913 109.361 L542.439 110.789 L532.123 116.939 L527.185 120.072 L521.806 123.175 L511.49 129.564 L509.57 130.782
L501.173 135.626 L491.922 141.493 L490.857 142.108 L480.54 148.144 L474.14 152.203 L470.223 154.463 L459.907 160.732 L456.468 162.914 L449.59 166.882 L439.274 173.394
L438.911 173.624 L428.957 179.365 L421.122 184.335 L418.641 185.767 L408.324 191.918 L403.394 195.045 L398.007 198.154 L387.691 204.543 L385.78 205.756 L377.374 210.604
L368.13 216.466 L367.058 217.086 L356.741 223.122 L350.349 227.177 L346.425 229.442 L336.108 235.711 L332.677 237.887 L325.791 241.86 L315.475 248.374 L315.121 248.598
L305.158 254.344 L297.331 259.309 L294.842 260.745 L284.525 266.897 L279.604 270.019 L274.209 273.132 L263.892 279.522 L261.989 280.73 L253.575 285.583 L244.339 291.44
L243.259 292.064 L232.942 298.101 L226.558 302.151 L222.626 304.42 L212.309 310.69 L208.887 312.861 L201.993 316.839 L191.676 323.353 L191.331 323.572 L181.359 329.323
L173.54 334.282 L171.043 335.723 L160.726 341.876 L155.813 344.993 L150.41 348.111 L140.093 354.501 L138.199 355.703 L129.777 360.562 L120.548 366.414 L119.46 367.042
L109.143 373.08 L102.767 377.124 L98.8269 379.398 L88.5104 385.669 L85.0964 387.835 L78.1938 391.817 L67.8772 398.332 L67.5408 398.545 L57.5607 404.301 L49.749 409.256
L47.2441 410.702 L47.2441 419.966 L47.2441 419.966 L47.2441 430.677 L47.2441 441.387 L47.2441 452.098 L47.2441 462.809 L47.2441 473.519 L47.2441 484.23 L47.2441 494.94
L47.2441 505.651 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045
L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#48196b" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 195.045 L552.756 184.335 L552.756 173.624 L552.756 162.914 L552.756 152.203 L552.756 141.493 L552.756 141.493 L552.756 135.792
L543.71 141.493 L542.439 142.232 L532.123 148.311 L525.948 152.203 L521.806 154.612 L511.49 160.89 L508.281 162.914 L501.173 167.044 L490.857 173.534 L490.713 173.624
L480.54 179.533 L472.922 184.335 L470.223 185.905 L459.907 192.082 L455.207 195.045 L449.59 198.311 L439.274 204.693 L437.589 205.756 L428.957 210.771 L419.919 216.466
L418.641 217.21 L408.324 223.289 L402.157 227.177 L398.007 229.59 L387.691 235.869 L384.49 237.887 L377.374 242.023 L367.058 248.513 L366.923 248.598 L356.741 254.512
L349.131 259.309 L346.425 260.883 L336.108 267.061 L331.416 270.019 L325.791 273.289 L315.475 279.672 L313.799 280.73 L305.158 285.75 L296.128 291.44 L294.842 292.188
L284.525 298.268 L278.367 302.151 L274.209 304.568 L263.892 310.848 L260.7 312.861 L253.575 317.002 L243.259 323.492 L243.133 323.572 L232.942 329.491 L225.34 334.282
L222.626 335.861 L212.309 342.039 L207.626 344.993 L201.993 348.267 L191.676 354.651 L190.008 355.703 L181.359 360.728 L172.337 366.414 L171.043 367.167 L160.726 373.247
L154.576 377.124 L150.41 379.547 L140.093 385.827 L136.909 387.835 L129.777 391.98 L119.46 398.471 L119.343 398.545 L109.143 404.469 L101.549 409.256 L98.8269 410.839
L88.5104 417.018 L83.8351 419.966 L78.1938 423.246 L67.8772 429.63 L66.2179 430.677 L57.5607 435.707 L48.5457 441.387 L47.2441 442.145 L47.2441 452.098 L47.2441 452.098
L47.2441 462.809 L47.2441 473.519 L47.2441 484.23 L47.2441 494.94 L47.2441 505.651 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203
L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#462f7c" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 195.045 L552.756 184.335 L552.756 173.624 L552.756 162.914 L552.756 162.914 L552.756 155.602 L542.439 161.971 L540.936 162.914
L532.123 168.071 L523.253 173.624 L521.806 174.472 L511.49 180.587 L505.508 184.335 L501.173 186.874 L490.857 193.156 L487.842 195.045 L480.54 199.32 L470.257 205.756
L470.223 205.776 L459.907 211.812 L452.476 216.466 L449.59 218.157 L439.274 224.354 L434.77 227.177 L428.957 230.581 L418.641 236.95 L417.145 237.887 L408.324 243.049
L399.462 248.598 L398.007 249.451 L387.691 255.566 L381.718 259.309 L377.374 261.853 L367.058 268.135 L364.052 270.019 L356.741 274.298 L346.466 280.73 L346.425 280.754
L336.108 286.791 L328.685 291.44 L325.791 293.136 L315.475 299.333 L310.979 302.151 L305.158 305.559 L294.842 311.929 L293.355 312.861 L284.525 318.028 L275.671 323.572
L274.209 324.429 L263.892 330.545 L257.927 334.282 L253.575 336.831 L243.259 343.113 L240.261 344.993 L232.942 349.277 L222.675 355.703 L222.626 355.732 L212.309 361.769
L204.894 366.414 L201.993 368.114 L191.676 374.312 L187.189 377.124 L181.359 380.538 L171.043 386.908 L169.565 387.835 L160.726 393.006 L151.88 398.545 L150.41 399.407
L140.093 405.524 L134.136 409.256 L129.777 411.81 L119.46 418.092 L116.471 419.966 L109.143 424.256 L98.8841 430.677 L98.8269 430.711 L88.5104 436.748 L81.1031 441.387
L78.1938 443.092 L67.8772 449.291 L63.398 452.098 L57.5607 455.516 L47.2441 461.887 L47.2441 462.809 L47.2441 462.809 L47.2441 473.519 L47.2441 484.23 L47.2441 494.94
L47.2441 505.651 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045
L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#404387" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 195.045 L552.756 184.335 L552.756 173.624 L552.756 173.624 L552.756 170.791 L548.206 173.624 L542.439 177.026 L532.123 183.366
L530.568 184.335 L521.806 189.498 L512.889 195.045 L511.49 195.872 L501.173 202.009 L495.155 205.756 L490.857 208.292 L480.54 214.562 L477.483 216.466 L470.223 220.747
L459.907 227.16 L459.88 227.177 L449.59 233.238 L442.119 237.887 L439.274 239.567 L428.957 245.769 L424.416 248.598 L418.641 252.004 L408.324 258.345 L406.778 259.309
L398.007 264.477 L389.098 270.019 L387.691 270.85 L377.374 276.988 L371.364 280.73 L367.058 283.271 L356.741 289.541 L353.693 291.44 L346.425 295.725 L336.108 302.139
L336.09 302.151 L325.791 308.217 L318.328 312.861 L315.475 314.546 L305.158 320.748 L300.625 323.572 L294.842 326.983 L284.525 333.324 L282.987 334.282 L274.209 339.455
L265.307 344.993 L263.892 345.829 L253.575 351.967 L247.573 355.703 L243.259 358.249 L232.942 364.52 L229.902 366.414 L222.626 370.704 L212.309 377.118 L212.299 377.124
L201.993 383.195 L194.537 387.835 L191.676 389.524 L181.359 395.727 L176.834 398.545 L171.043 401.961 L160.726 408.302 L159.197 409.256 L150.41 414.434 L141.516 419.966
L140.093 420.807 L129.777 426.945 L123.783 430.677 L119.46 433.228 L109.143 439.498 L106.112 441.387 L98.8269 445.682 L88.5104 452.097 L88.5091 452.098 L78.1938 458.174
L70.7466 462.809 L67.8772 464.503 L57.5607 470.706 L53.0439 473.519 L47.2441 476.94 L47.2441 484.23 L47.2441 484.23 L47.2441 494.94 L47.2441 505.651 L47.2441 516.361
L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756
L47.2441 612.756 Z
" fill="#38568b" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 195.045 L552.756 184.335 L552.756 184.335 L552.756 183.662 L551.669 184.335 L542.439 189.811 L533.971 195.045 L532.123 196.145
L521.806 202.322 L516.256 205.756 L511.49 208.588 L501.173 214.866 L498.588 216.466 L490.857 221.056 L480.949 227.177 L480.54 227.421 L470.223 233.552 L463.213 237.887
L459.907 239.853 L449.59 246.079 L445.521 248.598 L439.274 252.308 L428.957 258.64 L427.879 259.309 L418.641 264.79 L410.18 270.019 L408.324 271.123 L398.007 277.301
L392.465 280.73 L387.691 283.567 L377.374 289.845 L374.798 291.44 L367.058 296.035 L357.158 302.151 L356.741 302.399 L346.425 308.531 L339.422 312.861 L336.108 314.832
L325.791 321.058 L321.73 323.572 L315.475 327.287 L305.158 333.619 L304.088 334.282 L294.842 339.768 L286.39 344.993 L284.525 346.102 L274.209 352.279 L268.675 355.703
L263.892 358.545 L253.575 364.823 L251.007 366.414 L243.259 371.014 L233.368 377.124 L232.942 377.377 L222.626 383.509 L215.631 387.835 L212.309 389.81 L201.993 396.036
L197.939 398.545 L191.676 402.266 L181.359 408.598 L180.298 409.256 L171.043 414.747 L162.599 419.966 L160.726 421.08 L150.41 427.258 L144.884 430.677 L140.093 433.524
L129.777 439.802 L127.217 441.387 L119.46 445.992 L109.577 452.098 L109.143 452.356 L98.8269 458.488 L91.8404 462.809 L88.5104 464.789 L78.1938 471.015 L74.1487 473.519
L67.8772 477.244 L57.5607 483.577 L56.5072 484.23 L47.2441 489.726 L47.2441 494.94 L47.2441 494.94 L47.2441 505.651 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782
L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#30678d" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 205.756 L552.756 205.756 L552.756 195.12 L542.439 201.283 L535.158 205.756 L532.123 207.574 L521.806 213.797 L517.465 216.466 L511.49 220.041
L501.173 226.335 L499.805 227.177 L490.857 232.524 L482.121 237.887 L480.54 238.835 L470.223 245.026 L464.412 248.598 L459.907 251.295 L449.59 257.552 L446.735 259.309
L439.274 263.769 L429.089 270.019 L428.957 270.098 L418.641 276.262 L411.368 280.73 L408.324 282.552 L398.007 288.775 L393.674 291.44 L387.691 295.019 L377.374 301.314
L376.014 302.151 L367.058 307.502 L358.33 312.861 L356.741 313.813 L346.425 320.005 L340.622 323.572 L336.108 326.273 L325.791 332.531 L322.944 334.282 L315.475 338.748
L305.298 344.993 L305.158 345.077 L294.842 351.24 L287.577 355.703 L284.525 357.531 L274.209 363.754 L269.884 366.414 L263.892 369.998 L253.575 376.292 L252.224 377.124
L243.259 382.481 L234.539 387.835 L232.942 388.792 L222.626 394.984 L216.831 398.545 L212.309 401.252 L201.993 407.509 L199.154 409.256 L191.676 413.727 L181.507 419.966
L181.359 420.055 L171.043 426.219 L163.786 430.677 L160.726 432.509 L150.41 438.733 L146.093 441.387 L140.093 444.976 L129.777 451.271 L128.433 452.098 L119.46 457.46
L110.748 462.809 L109.143 463.77 L98.8269 469.962 L93.0403 473.519 L88.5104 476.23 L78.1938 482.488 L75.3633 484.23 L67.8772 488.705 L57.7166 494.94 L57.5607 495.034
L47.2441 501.198 L47.2441 505.651 L47.2441 505.651 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624
L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#29788e" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 216.466 L552.756 205.803 L542.439 212.007 L535.132 216.466 L532.123 218.281 L521.806 224.51 L517.441 227.177 L511.49 230.762 L501.173 237.028
L499.769 237.887 L490.857 243.249 L482.087 248.598 L480.54 249.531 L470.223 255.747 L464.389 259.309 L459.907 262.01 L449.59 268.257 L446.707 270.019 L439.274 274.494
L429.043 280.73 L428.957 280.782 L418.641 286.986 L411.341 291.44 L408.324 293.26 L398.007 299.489 L393.651 302.151 L387.691 305.741 L377.374 312.007 L375.978 312.861
L367.058 318.228 L358.296 323.572 L356.741 324.51 L346.425 330.725 L340.599 334.282 L336.108 336.989 L325.791 343.235 L322.917 344.993 L315.475 349.473 L305.253 355.703
L305.158 355.76 L294.842 361.964 L287.55 366.414 L284.525 368.238 L274.209 374.468 L269.86 377.124 L263.892 380.719 L253.575 386.986 L252.187 387.835 L243.259 393.207
L234.505 398.545 L232.942 399.488 L222.626 405.704 L216.808 409.256 L212.309 411.967 L201.993 418.214 L199.126 419.966 L191.676 424.451 L181.462 430.677 L181.359 430.739
L171.043 436.943 L163.76 441.387 L160.726 443.217 L150.41 449.446 L146.069 452.098 L140.093 455.698 L129.777 461.965 L128.397 462.809 L119.46 468.185 L110.714 473.519
L109.143 474.467 L98.8269 480.682 L93.0174 484.23 L88.5104 486.946 L78.1938 493.193 L75.3353 494.94 L67.8772 499.43 L57.6713 505.651 L57.5607 505.717 L47.2441 511.922
L47.2441 516.361 L47.2441 516.361 L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045
L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#23888d" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 216.466 L552.756 216.466 L552.756 216.147 L552.23 216.466 L542.439 222.395 L534.548 227.177 L532.123 228.65 L521.806 234.888 L516.862 237.887 L511.49 241.146
L501.173 247.385 L499.175 248.598 L490.857 253.638 L481.494 259.309 L480.54 259.889 L470.223 266.13 L463.81 270.019 L459.907 272.388 L449.59 278.625 L446.123 280.73
L439.274 284.882 L428.957 291.125 L428.439 291.44 L418.641 297.373 L410.757 302.151 L408.324 303.628 L398.007 309.866 L393.071 312.861 L387.691 316.125 L377.374 322.363
L375.385 323.572 L367.058 328.617 L357.704 334.282 L356.741 334.867 L346.425 341.109 L340.019 344.993 L336.108 347.367 L325.791 353.603 L322.332 355.703 L315.475 359.86
L305.158 366.104 L304.648 366.414 L294.842 372.352 L286.967 377.124 L284.525 378.607 L274.209 384.845 L269.28 387.835 L263.892 391.103 L253.575 397.342 L251.594 398.545
L243.259 403.596 L233.913 409.256 L232.942 409.846 L222.626 416.087 L216.228 419.966 L212.309 422.345 L201.993 428.582 L198.541 430.677 L191.676 434.839 L181.359 441.083
L180.858 441.387 L171.043 447.331 L163.176 452.098 L160.726 453.586 L150.41 459.823 L145.49 462.809 L140.093 466.082 L129.777 472.321 L127.804 473.519 L119.46 478.574
L110.122 484.23 L109.143 484.824 L98.8269 491.066 L92.4377 494.94 L88.5104 497.324 L78.1938 503.56 L74.7508 505.651 L67.8772 509.818 L57.5607 516.061 L57.0671 516.361
L47.2441 522.309 L47.2441 527.072 L47.2441 527.072 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045
L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#1e988a" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 227.177
L552.756 227.177 L552.756 226.5 L551.634 227.177 L542.439 232.784 L533.958 237.887 L532.123 239.01 L521.806 245.27 L516.282 248.598 L511.49 251.525 L501.173 257.75
L498.59 259.309 L490.857 264.027 L480.892 270.019 L480.54 270.235 L470.223 276.517 L463.227 280.73 L459.907 282.759 L449.59 289 L445.542 291.44 L439.274 295.267
L428.957 301.479 L427.843 302.151 L418.641 307.762 L410.167 312.861 L408.324 313.988 L398.007 320.249 L392.491 323.572 L387.691 326.504 L377.374 332.729 L374.799 334.282
L367.058 339.005 L357.102 344.993 L356.741 345.213 L346.425 351.496 L339.436 355.703 L336.108 357.737 L325.791 363.978 L321.751 366.414 L315.475 370.245 L305.158 376.457
L304.053 377.124 L294.842 382.741 L286.377 387.835 L284.525 388.967 L274.209 395.227 L268.701 398.545 L263.892 401.483 L253.575 407.707 L251.008 409.256 L243.259 413.984
L233.311 419.966 L232.942 420.192 L222.626 426.474 L215.646 430.677 L212.309 432.716 L201.993 438.957 L197.961 441.387 L191.676 445.224 L181.359 451.436 L180.262 452.098
L171.043 457.72 L162.586 462.809 L160.726 463.946 L150.41 470.206 L144.91 473.519 L140.093 476.461 L129.777 482.686 L127.217 484.23 L119.46 488.962 L109.521 494.94
L109.143 495.171 L98.8269 501.453 L91.8551 505.651 L88.5104 507.695 L78.1938 513.936 L74.1701 516.361 L67.8772 520.203 L57.5607 526.414 L56.4712 527.072 L47.2441 532.698
L47.2441 537.782 L47.2441 537.782 L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756
L47.2441 612.756 Z
" fill="#22a784" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 248.598 L552.756 237.887 L552.756 237.887
L552.756 237.193 L551.597 237.887 L542.439 243.509 L533.924 248.598 L532.123 249.706 L521.806 255.989 L516.259 259.309 L511.49 262.241 L501.173 268.454 L498.561 270.019
L490.857 274.751 L480.847 280.73 L480.54 280.919 L470.223 287.241 L463.2 291.44 L459.907 293.466 L449.59 299.713 L445.518 302.151 L439.274 305.988 L428.957 312.171
L427.806 312.861 L418.641 318.487 L410.133 323.572 L408.324 324.685 L398.007 330.968 L392.468 334.282 L387.691 337.219 L377.374 343.433 L374.77 344.993 L367.058 349.73
L357.056 355.703 L356.741 355.897 L346.425 362.219 L339.41 366.414 L336.108 368.445 L325.791 374.691 L321.727 377.124 L315.475 380.967 L305.158 387.15 L304.015 387.835
L294.842 393.466 L286.343 398.545 L284.525 399.664 L274.209 405.947 L268.677 409.256 L263.892 412.198 L253.575 418.411 L250.979 419.966 L243.259 424.708 L233.266 430.677
L232.942 430.876 L222.626 437.198 L215.619 441.387 L212.309 443.424 L201.993 449.67 L197.937 452.098 L191.676 455.945 L181.359 462.128 L180.224 462.809 L171.043 468.445
L162.552 473.519 L160.726 474.643 L150.41 480.925 L144.887 484.23 L140.093 487.177 L129.777 493.39 L127.189 494.94 L119.46 499.687 L109.475 505.651 L109.143 505.855
L98.8269 512.176 L91.8284 516.361 L88.5104 518.402 L78.1938 524.648 L74.146 527.072 L67.8772 530.924 L57.5607 537.107 L56.4335 537.782 L47.2441 543.423 L47.2441 548.493
L47.2441 548.493 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#35b778" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 259.309 L552.756 259.309 L552.756 248.602 L542.439 254.974
L535.139 259.309 L532.123 261.176 L521.806 267.438 L517.464 270.019 L511.49 273.715 L501.173 279.878 L499.743 280.73 L490.857 286.221 L482.062 291.44 L480.54 292.383
L470.223 298.699 L464.412 302.151 L459.907 304.939 L449.59 311.15 L446.713 312.861 L439.274 317.461 L428.971 323.572 L428.957 323.581 L418.641 329.953 L411.348 334.282
L408.324 336.155 L398.007 342.417 L393.673 344.993 L387.691 348.694 L377.374 354.857 L375.952 355.703 L367.058 361.2 L358.272 366.414 L356.741 367.362 L346.425 373.677
L340.622 377.124 L336.108 379.918 L325.791 386.129 L322.923 387.835 L315.475 392.44 L305.181 398.545 L305.158 398.56 L294.842 404.931 L287.558 409.256 L284.525 411.134
L274.209 417.395 L269.883 419.966 L263.892 423.672 L253.575 429.835 L252.161 430.677 L243.259 436.178 L234.481 441.387 L232.942 442.341 L222.626 448.656 L216.831 452.098
L212.309 454.897 L201.993 461.107 L199.132 462.809 L191.676 467.419 L181.391 473.519 L181.359 473.538 L171.043 479.91 L163.767 484.23 L160.726 486.113 L150.41 492.374
L146.092 494.94 L140.093 498.651 L129.777 504.814 L128.37 505.651 L119.46 511.157 L110.691 516.361 L109.143 517.32 L98.8269 523.634 L93.0405 527.072 L88.5104 529.875
L78.1938 536.086 L75.3411 537.782 L67.8772 542.397 L57.6002 548.493 L57.5607 548.517 L47.2441 554.888 L47.2441 559.203 L47.2441 559.203 L47.2441 569.914 L47.2441 580.624
L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#53c567" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 270.019 L552.756 270.019 L552.756 261.481 L542.439 267.73 L538.562 270.019
L532.123 274.027 L521.806 280.146 L520.819 280.73 L511.49 286.532 L503.163 291.44 L501.173 292.68 L490.857 298.999 L485.515 302.151 L480.54 305.249 L470.223 311.432
L467.802 312.861 L459.907 317.774 L450.066 323.572 L449.59 323.868 L439.274 330.26 L432.452 334.282 L428.957 336.46 L418.641 342.709 L414.771 344.993 L408.324 349.006
L398.007 355.125 L397.028 355.703 L387.691 361.511 L379.372 366.414 L377.374 367.659 L367.058 373.978 L361.724 377.124 L356.741 380.228 L346.425 386.41 L344.012 387.835
L336.108 392.753 L326.275 398.545 L325.791 398.847 L315.475 405.238 L308.661 409.256 L305.158 411.438 L294.842 417.687 L290.98 419.966 L284.525 423.985 L274.209 430.103
L273.237 430.677 L263.892 436.49 L255.582 441.387 L253.575 442.638 L243.259 448.956 L237.933 452.098 L232.942 455.206 L222.626 461.388 L220.221 462.809 L212.309 467.731
L202.485 473.519 L201.993 473.826 L191.676 480.217 L184.871 484.23 L181.359 486.417 L171.043 492.666 L167.189 494.94 L160.726 498.963 L150.41 505.082 L149.446 505.651
L140.093 511.468 L131.791 516.361 L129.777 517.617 L119.46 523.935 L114.143 527.072 L109.143 530.185 L98.8269 536.367 L96.4299 537.782 L88.5104 542.71 L78.6945 548.493
L78.1938 548.805 L67.8772 555.195 L61.0801 559.203 L57.5607 561.396 L47.2441 567.644 L47.2441 569.914 L47.2441 569.914 L47.2441 580.624 L47.2441 591.335 L47.2441 602.045
L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#79d151" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 291.44 L552.756 280.73 L552.756 280.73 L552.756 276.705 L545.882 280.73 L542.439 282.888 L532.123 289.145
L528.205 291.44 L521.806 295.449 L511.49 301.541 L510.449 302.151 L501.173 307.958 L492.795 312.861 L490.857 314.077 L480.54 320.42 L475.158 323.572 L470.223 326.664
L459.907 332.837 L457.441 334.282 L449.59 339.199 L439.686 344.993 L439.274 345.251 L428.957 351.684 L422.091 355.703 L418.641 357.867 L408.324 364.123 L404.414 366.414
L398.007 370.427 L387.691 376.519 L386.658 377.124 L377.374 382.937 L369.004 387.835 L367.058 389.055 L356.741 395.398 L351.367 398.545 L346.425 401.643 L336.108 407.815
L333.65 409.256 L325.791 414.177 L315.896 419.966 L315.475 420.23 L305.158 426.662 L298.301 430.677 L294.842 432.845 L284.525 439.101 L280.623 441.387 L274.209 445.406
L263.892 451.497 L262.867 452.098 L253.575 457.915 L245.214 462.809 L243.259 464.034 L232.942 470.377 L227.577 473.519 L222.626 476.622 L212.309 482.794 L209.859 484.23
L201.993 489.156 L192.105 494.94 L191.676 495.209 L181.359 501.641 L174.51 505.651 L171.043 507.824 L160.726 514.08 L156.832 516.361 L150.41 520.385 L140.093 526.476
L139.076 527.072 L129.777 532.894 L121.423 537.782 L119.46 539.013 L109.143 545.355 L103.786 548.493 L98.8269 551.601 L88.5104 557.772 L86.0683 559.203 L78.1938 564.135
L68.3149 569.914 L67.8772 570.188 L57.5607 576.62 L50.7199 580.624 L47.2441 582.803 L47.2441 591.335 L47.2441 591.335 L47.2441 602.045 L47.2441 612.756 L47.2441 612.756
L47.2441 612.756 Z
" fill="#a5da35" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M47.2441 612.756 L47.2441 612.756 L57.5607 612.756 L67.8772 612.756 L78.1938 612.756 L88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756
L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756 L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756
L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756 L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756
L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756 L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756
L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756 L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756
L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045 L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493
L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94 L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387
L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835 L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282
L552.756 323.572 L552.756 312.861 L552.756 302.151 L552.756 302.151 L552.756 296.495 L543.019 302.151 L542.439 302.517 L532.123 308.976 L525.437 312.861 L521.806 315.151
L511.49 321.401 L507.756 323.572 L501.173 327.722 L490.857 333.773 L489.982 334.282 L480.54 340.232 L472.346 344.993 L470.223 346.332 L459.907 352.684 L454.714 355.703
L449.59 358.934 L439.274 365.083 L436.985 366.414 L428.957 371.473 L419.229 377.124 L418.641 377.496 L408.324 383.954 L401.647 387.835 L398.007 390.13 L387.691 396.379
L383.966 398.545 L377.374 402.701 L367.058 408.752 L366.191 409.256 L356.741 415.21 L348.555 419.966 L346.425 421.311 L336.108 427.663 L330.923 430.677 L325.791 433.913
L315.475 440.061 L313.194 441.387 L305.158 446.452 L295.439 452.098 L294.842 452.475 L284.525 458.933 L277.856 462.809 L274.209 465.109 L263.892 471.357 L260.175 473.519
L253.575 477.679 L243.259 483.73 L242.4 484.23 L232.942 490.189 L224.765 494.94 L222.626 496.29 L212.309 502.641 L207.132 505.651 L201.993 508.891 L191.676 515.039
L189.403 516.361 L181.359 521.431 L171.649 527.072 L171.043 527.454 L160.726 533.911 L154.066 537.782 L150.41 540.088 L140.093 546.336 L136.384 548.493 L129.777 552.658
L119.46 558.708 L118.609 559.203 L109.143 565.167 L100.975 569.914 L98.8269 571.269 L88.5104 577.619 L83.3416 580.624 L78.1938 583.87 L67.8772 590.017 L65.6124 591.335
L57.5607 596.409 L47.8583 602.045 L47.2441 602.433 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 L47.2441 612.756 Z
" fill="#d2e11b" fill-rule="evenodd" fill-opacity="1"/>
<path clip-path="url(#clip132)" d="
M88.5104 612.756 L98.8269 612.756 L109.143 612.756 L119.46 612.756 L129.777 612.756 L140.093 612.756 L150.41 612.756 L160.726 612.756 L171.043 612.756 L181.359 612.756
L191.676 612.756 L201.993 612.756 L212.309 612.756 L222.626 612.756 L232.942 612.756 L243.259 612.756 L253.575 612.756 L263.892 612.756 L274.209 612.756 L284.525 612.756
L294.842 612.756 L305.158 612.756 L315.475 612.756 L325.791 612.756 L336.108 612.756 L346.425 612.756 L356.741 612.756 L367.058 612.756 L377.374 612.756 L387.691 612.756
L398.007 612.756 L408.324 612.756 L418.641 612.756 L428.957 612.756 L439.274 612.756 L449.59 612.756 L459.907 612.756 L470.223 612.756 L480.54 612.756 L490.857 612.756
L501.173 612.756 L511.49 612.756 L521.806 612.756 L532.123 612.756 L542.439 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 612.756 L552.756 602.045
L552.756 591.335 L552.756 580.624 L552.756 569.914 L552.756 559.203 L552.756 548.493 L552.756 537.782 L552.756 527.072 L552.756 516.361 L552.756 505.651 L552.756 494.94
L552.756 484.23 L552.756 473.519 L552.756 462.809 L552.756 452.098 L552.756 441.387 L552.756 430.677 L552.756 419.966 L552.756 409.256 L552.756 398.545 L552.756 387.835
L552.756 377.124 L552.756 366.414 L552.756 355.703 L552.756 344.993 L552.756 334.282 L552.756 334.282 L552.756 327.876 L542.439 333.882 L541.746 334.282 L532.123 340.385
L524.135 344.993 L521.806 346.47 L511.49 352.827 L506.504 355.703 L501.173 359.085 L490.857 365.205 L488.762 366.414 L480.54 371.628 L471.011 377.124 L470.223 377.624
L459.907 384.103 L453.439 387.835 L449.59 390.276 L439.274 396.513 L435.751 398.545 L428.957 402.855 L418.641 408.86 L417.955 409.256 L408.324 415.363 L400.344 419.966
L398.007 421.449 L387.691 427.805 L382.714 430.677 L377.374 434.064 L367.058 440.183 L364.971 441.387 L356.741 446.607 L347.221 452.098 L346.425 452.603 L336.108 459.081
L329.648 462.809 L325.791 465.255 L315.475 471.491 L311.961 473.519 L305.158 477.834 L294.842 483.838 L294.164 484.23 L284.525 490.342 L276.554 494.94 L274.209 496.428
L263.892 502.783 L258.923 505.651 L253.575 509.043 L243.259 515.161 L241.18 516.361 L232.942 521.586 L223.431 527.072 L222.626 527.583 L212.309 534.06 L205.858 537.782
L201.993 540.234 L191.676 546.469 L188.17 548.493 L181.359 552.812 L171.043 558.816 L170.373 559.203 L160.726 565.32 L152.764 569.914 L150.41 571.407 L140.093 577.762
L135.132 580.624 L129.777 584.022 L119.46 590.139 L117.389 591.335 L109.143 596.564 L99.6405 602.045 L98.8269 602.562 L88.5104 609.038 L82.067 612.756 L78.1938 612.756
L88.5104 612.756 Z
" fill="#fde724" fill-rule="evenodd" fill-opacity="1"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.045 552.756,184.335 552.756,173.624 552.756,162.914 552.756,152.203 552.756,141.493 552.756,130.782 552.756,120.072
552.756,109.361 552.756,98.6507 552.756,87.9401 542.439,87.9401 532.123,87.9401 521.806,87.9401 511.49,87.9401
501.173,87.9401 490.857,87.9401 480.54,87.9401 470.223,87.9401 459.907,87.9401 449.59,87.9401 439.274,87.9401 428.957,87.9401 418.641,87.9401 408.324,87.9401
398.007,87.9401 387.691,87.9401 377.374,87.9401 367.058,87.9401 356.741,87.9401 346.425,87.9401 336.108,87.9401 325.791,87.9401 315.475,87.9401 305.158,87.9401
294.842,87.9401 284.525,87.9401 274.209,87.9401 263.892,87.9401 253.575,87.9401 243.259,87.9401 232.942,87.9401 222.626,87.9401 212.309,87.9401 201.993,87.9401
191.676,87.9401 181.359,87.9401 171.043,87.9401 160.726,87.9401 150.41,87.9401 140.093,87.9401 129.777,87.9401 119.46,87.9401 109.143,87.9401 98.8269,87.9401
88.5104,87.9401 78.1938,87.9401 67.8772,87.9401 57.5607,87.9401 47.2441,87.9401 47.2441,98.6507 47.2441,109.361
47.2441,120.072 47.2441,130.782 47.2441,141.493 47.2441,152.203 47.2441,162.914 47.2441,173.624 47.2441,184.335 47.2441,195.045 47.2441,205.756 47.2441,216.466
47.2441,227.177 47.2441,237.887 47.2441,248.598 47.2441,259.309 47.2441,270.019 47.2441,280.73 47.2441,291.44 47.2441,302.151 47.2441,312.861 47.2441,323.572
47.2441,334.282 47.2441,344.993 47.2441,355.703 47.2441,366.414 47.2441,377.124 47.2441,387.835 47.2441,398.545 47.2441,409.256 47.2441,419.966 47.2441,430.677
47.2441,441.387 47.2441,452.098 47.2441,462.809 47.2441,473.519 47.2441,484.23 47.2441,494.94 47.2441,505.651 47.2441,516.361 47.2441,527.072 47.2441,537.782
47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.045 552.756,184.335 552.756,173.624 552.756,162.914 552.756,152.203 552.756,141.493 552.756,130.782 552.756,120.072
552.756,109.361 552.756,104.387 544.913,109.361 542.439,110.789 532.123,116.939 527.185,120.072 521.806,123.175 511.49,129.564 509.57,130.782
501.173,135.626 491.922,141.493 490.857,142.108 480.54,148.144 474.14,152.203 470.223,154.463 459.907,160.732 456.468,162.914 449.59,166.882 439.274,173.394
438.911,173.624 428.957,179.365 421.122,184.335 418.641,185.767 408.324,191.918 403.394,195.045 398.007,198.154 387.691,204.543 385.78,205.756 377.374,210.604
368.13,216.466 367.058,217.086 356.741,223.122 350.349,227.177 346.425,229.442 336.108,235.711 332.677,237.887 325.791,241.86 315.475,248.374 315.121,248.598
305.158,254.344 297.331,259.309 294.842,260.745 284.525,266.897 279.604,270.019 274.209,273.132 263.892,279.522 261.989,280.73 253.575,285.583 244.339,291.44
243.259,292.064 232.942,298.101 226.558,302.151 222.626,304.42 212.309,310.69 208.887,312.861 201.993,316.839 191.676,323.353 191.331,323.572 181.359,329.323
173.54,334.282 171.043,335.723 160.726,341.876 155.813,344.993 150.41,348.111 140.093,354.501 138.199,355.703 129.777,360.562 120.548,366.414 119.46,367.042
109.143,373.08 102.767,377.124 98.8269,379.398 88.5104,385.669 85.0964,387.835 78.1938,391.817 67.8772,398.332 67.5408,398.545 57.5607,404.301 49.749,409.256
47.2441,410.702 47.2441,419.966 47.2441,430.677 47.2441,441.387 47.2441,452.098 47.2441,462.809 47.2441,473.519 47.2441,484.23 47.2441,494.94
47.2441,505.651 47.2441,516.361 47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045
47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.045 552.756,184.335 552.756,173.624 552.756,162.914 552.756,152.203 552.756,141.493 552.756,135.792
543.71,141.493 542.439,142.232 532.123,148.311 525.948,152.203 521.806,154.612 511.49,160.89 508.281,162.914 501.173,167.044 490.857,173.534 490.713,173.624
480.54,179.533 472.922,184.335 470.223,185.905 459.907,192.082 455.207,195.045 449.59,198.311 439.274,204.693 437.589,205.756 428.957,210.771 419.919,216.466
418.641,217.21 408.324,223.289 402.157,227.177 398.007,229.59 387.691,235.869 384.49,237.887 377.374,242.023 367.058,248.513 366.923,248.598 356.741,254.512
349.131,259.309 346.425,260.883 336.108,267.061 331.416,270.019 325.791,273.289 315.475,279.672 313.799,280.73 305.158,285.75 296.128,291.44 294.842,292.188
284.525,298.268 278.367,302.151 274.209,304.568 263.892,310.848 260.7,312.861 253.575,317.002 243.259,323.492 243.133,323.572 232.942,329.491 225.34,334.282
222.626,335.861 212.309,342.039 207.626,344.993 201.993,348.267 191.676,354.651 190.008,355.703 181.359,360.728 172.337,366.414 171.043,367.167 160.726,373.247
154.576,377.124 150.41,379.547 140.093,385.827 136.909,387.835 129.777,391.98 119.46,398.471 119.343,398.545 109.143,404.469 101.549,409.256 98.8269,410.839
88.5104,417.018 83.8351,419.966 78.1938,423.246 67.8772,429.63 66.2179,430.677 57.5607,435.707 48.5457,441.387 47.2441,442.145 47.2441,452.098
47.2441,462.809 47.2441,473.519 47.2441,484.23 47.2441,494.94 47.2441,505.651 47.2441,516.361 47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203
47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.045 552.756,184.335 552.756,173.624 552.756,162.914 552.756,155.602 542.439,161.971 540.936,162.914
532.123,168.071 523.253,173.624 521.806,174.472 511.49,180.587 505.508,184.335 501.173,186.874 490.857,193.156 487.842,195.045 480.54,199.32 470.257,205.756
470.223,205.776 459.907,211.812 452.476,216.466 449.59,218.157 439.274,224.354 434.77,227.177 428.957,230.581 418.641,236.95 417.145,237.887 408.324,243.049
399.462,248.598 398.007,249.451 387.691,255.566 381.718,259.309 377.374,261.853 367.058,268.135 364.052,270.019 356.741,274.298 346.466,280.73 346.425,280.754
336.108,286.791 328.685,291.44 325.791,293.136 315.475,299.333 310.979,302.151 305.158,305.559 294.842,311.929 293.355,312.861 284.525,318.028 275.671,323.572
274.209,324.429 263.892,330.545 257.927,334.282 253.575,336.831 243.259,343.113 240.261,344.993 232.942,349.277 222.675,355.703 222.626,355.732 212.309,361.769
204.894,366.414 201.993,368.114 191.676,374.312 187.189,377.124 181.359,380.538 171.043,386.908 169.565,387.835 160.726,393.006 151.88,398.545 150.41,399.407
140.093,405.524 134.136,409.256 129.777,411.81 119.46,418.092 116.471,419.966 109.143,424.256 98.8841,430.677 98.8269,430.711 88.5104,436.748 81.1031,441.387
78.1938,443.092 67.8772,449.291 63.398,452.098 57.5607,455.516 47.2441,461.887 47.2441,462.809 47.2441,473.519 47.2441,484.23 47.2441,494.94
47.2441,505.651 47.2441,516.361 47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045
47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.045 552.756,184.335 552.756,173.624 552.756,170.791 548.206,173.624 542.439,177.026 532.123,183.366
530.568,184.335 521.806,189.498 512.889,195.045 511.49,195.872 501.173,202.009 495.155,205.756 490.857,208.292 480.54,214.562 477.483,216.466 470.223,220.747
459.907,227.16 459.88,227.177 449.59,233.238 442.119,237.887 439.274,239.567 428.957,245.769 424.416,248.598 418.641,252.004 408.324,258.345 406.778,259.309
398.007,264.477 389.098,270.019 387.691,270.85 377.374,276.988 371.364,280.73 367.058,283.271 356.741,289.541 353.693,291.44 346.425,295.725 336.108,302.139
336.09,302.151 325.791,308.217 318.328,312.861 315.475,314.546 305.158,320.748 300.625,323.572 294.842,326.983 284.525,333.324 282.987,334.282 274.209,339.455
265.307,344.993 263.892,345.829 253.575,351.967 247.573,355.703 243.259,358.249 232.942,364.52 229.902,366.414 222.626,370.704 212.309,377.118 212.299,377.124
201.993,383.195 194.537,387.835 191.676,389.524 181.359,395.727 176.834,398.545 171.043,401.961 160.726,408.302 159.197,409.256 150.41,414.434 141.516,419.966
140.093,420.807 129.777,426.945 123.783,430.677 119.46,433.228 109.143,439.498 106.112,441.387 98.8269,445.682 88.5104,452.097 88.5091,452.098 78.1938,458.174
70.7466,462.809 67.8772,464.503 57.5607,470.706 53.0439,473.519 47.2441,476.94 47.2441,484.23 47.2441,494.94 47.2441,505.651 47.2441,516.361
47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.045 552.756,184.335 552.756,183.662 551.669,184.335 542.439,189.811 533.971,195.045 532.123,196.145
521.806,202.322 516.256,205.756 511.49,208.588 501.173,214.866 498.588,216.466 490.857,221.056 480.949,227.177 480.54,227.421 470.223,233.552 463.213,237.887
459.907,239.853 449.59,246.079 445.521,248.598 439.274,252.308 428.957,258.64 427.879,259.309 418.641,264.79 410.18,270.019 408.324,271.123 398.007,277.301
392.465,280.73 387.691,283.567 377.374,289.845 374.798,291.44 367.058,296.035 357.158,302.151 356.741,302.399 346.425,308.531 339.422,312.861 336.108,314.832
325.791,321.058 321.73,323.572 315.475,327.287 305.158,333.619 304.088,334.282 294.842,339.768 286.39,344.993 284.525,346.102 274.209,352.279 268.675,355.703
263.892,358.545 253.575,364.823 251.007,366.414 243.259,371.014 233.368,377.124 232.942,377.377 222.626,383.509 215.631,387.835 212.309,389.81 201.993,396.036
197.939,398.545 191.676,402.266 181.359,408.598 180.298,409.256 171.043,414.747 162.599,419.966 160.726,421.08 150.41,427.258 144.884,430.677 140.093,433.524
129.777,439.802 127.217,441.387 119.46,445.992 109.577,452.098 109.143,452.356 98.8269,458.488 91.8404,462.809 88.5104,464.789 78.1938,471.015 74.1487,473.519
67.8772,477.244 57.5607,483.577 56.5072,484.23 47.2441,489.726 47.2441,494.94 47.2441,505.651 47.2441,516.361 47.2441,527.072 47.2441,537.782
47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.756 552.756,195.12 542.439,201.283 535.158,205.756 532.123,207.574 521.806,213.797 517.465,216.466 511.49,220.041
501.173,226.335 499.805,227.177 490.857,232.524 482.121,237.887 480.54,238.835 470.223,245.026 464.412,248.598 459.907,251.295 449.59,257.552 446.735,259.309
439.274,263.769 429.089,270.019 428.957,270.098 418.641,276.262 411.368,280.73 408.324,282.552 398.007,288.775 393.674,291.44 387.691,295.019 377.374,301.314
376.014,302.151 367.058,307.502 358.33,312.861 356.741,313.813 346.425,320.005 340.622,323.572 336.108,326.273 325.791,332.531 322.944,334.282 315.475,338.748
305.298,344.993 305.158,345.077 294.842,351.24 287.577,355.703 284.525,357.531 274.209,363.754 269.884,366.414 263.892,369.998 253.575,376.292 252.224,377.124
243.259,382.481 234.539,387.835 232.942,388.792 222.626,394.984 216.831,398.545 212.309,401.252 201.993,407.509 199.154,409.256 191.676,413.727 181.507,419.966
181.359,420.055 171.043,426.219 163.786,430.677 160.726,432.509 150.41,438.733 146.093,441.387 140.093,444.976 129.777,451.271 128.433,452.098 119.46,457.46
110.748,462.809 109.143,463.77 98.8269,469.962 93.0403,473.519 88.5104,476.23 78.1938,482.488 75.3633,484.23 67.8772,488.705 57.7166,494.94 57.5607,495.034
47.2441,501.198 47.2441,505.651 47.2441,516.361 47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624
47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,205.803 542.439,212.007 535.132,216.466 532.123,218.281 521.806,224.51 517.441,227.177 511.49,230.762 501.173,237.028
499.769,237.887 490.857,243.249 482.087,248.598 480.54,249.531 470.223,255.747 464.389,259.309 459.907,262.01 449.59,268.257 446.707,270.019 439.274,274.494
429.043,280.73 428.957,280.782 418.641,286.986 411.341,291.44 408.324,293.26 398.007,299.489 393.651,302.151 387.691,305.741 377.374,312.007 375.978,312.861
367.058,318.228 358.296,323.572 356.741,324.51 346.425,330.725 340.599,334.282 336.108,336.989 325.791,343.235 322.917,344.993 315.475,349.473 305.253,355.703
305.158,355.76 294.842,361.964 287.55,366.414 284.525,368.238 274.209,374.468 269.86,377.124 263.892,380.719 253.575,386.986 252.187,387.835 243.259,393.207
234.505,398.545 232.942,399.488 222.626,405.704 216.808,409.256 212.309,411.967 201.993,418.214 199.126,419.966 191.676,424.451 181.462,430.677 181.359,430.739
171.043,436.943 163.76,441.387 160.726,443.217 150.41,449.446 146.069,452.098 140.093,455.698 129.777,461.965 128.397,462.809 119.46,468.185 110.714,473.519
109.143,474.467 98.8269,480.682 93.0174,484.23 88.5104,486.946 78.1938,493.193 75.3353,494.94 67.8772,499.43 57.6713,505.651 57.5607,505.717 47.2441,511.922
47.2441,516.361 47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045
47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,216.466 552.756,216.147 552.23,216.466 542.439,222.395 534.548,227.177 532.123,228.65 521.806,234.888 516.862,237.887 511.49,241.146
501.173,247.385 499.175,248.598 490.857,253.638 481.494,259.309 480.54,259.889 470.223,266.13 463.81,270.019 459.907,272.388 449.59,278.625 446.123,280.73
439.274,284.882 428.957,291.125 428.439,291.44 418.641,297.373 410.757,302.151 408.324,303.628 398.007,309.866 393.071,312.861 387.691,316.125 377.374,322.363
375.385,323.572 367.058,328.617 357.704,334.282 356.741,334.867 346.425,341.109 340.019,344.993 336.108,347.367 325.791,353.603 322.332,355.703 315.475,359.86
305.158,366.104 304.648,366.414 294.842,372.352 286.967,377.124 284.525,378.607 274.209,384.845 269.28,387.835 263.892,391.103 253.575,397.342 251.594,398.545
243.259,403.596 233.913,409.256 232.942,409.846 222.626,416.087 216.228,419.966 212.309,422.345 201.993,428.582 198.541,430.677 191.676,434.839 181.359,441.083
180.858,441.387 171.043,447.331 163.176,452.098 160.726,453.586 150.41,459.823 145.49,462.809 140.093,466.082 129.777,472.321 127.804,473.519 119.46,478.574
110.122,484.23 109.143,484.824 98.8269,491.066 92.4377,494.94 88.5104,497.324 78.1938,503.56 74.7508,505.651 67.8772,509.818 57.5607,516.061 57.0671,516.361
47.2441,522.309 47.2441,527.072 47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045
47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887 552.756,227.177
552.756,226.5 551.634,227.177 542.439,232.784 533.958,237.887 532.123,239.01 521.806,245.27 516.282,248.598 511.49,251.525 501.173,257.75
498.59,259.309 490.857,264.027 480.892,270.019 480.54,270.235 470.223,276.517 463.227,280.73 459.907,282.759 449.59,289 445.542,291.44 439.274,295.267
428.957,301.479 427.843,302.151 418.641,307.762 410.167,312.861 408.324,313.988 398.007,320.249 392.491,323.572 387.691,326.504 377.374,332.729 374.799,334.282
367.058,339.005 357.102,344.993 356.741,345.213 346.425,351.496 339.436,355.703 336.108,357.737 325.791,363.978 321.751,366.414 315.475,370.245 305.158,376.457
304.053,377.124 294.842,382.741 286.377,387.835 284.525,388.967 274.209,395.227 268.701,398.545 263.892,401.483 253.575,407.707 251.008,409.256 243.259,413.984
233.311,419.966 232.942,420.192 222.626,426.474 215.646,430.677 212.309,432.716 201.993,438.957 197.961,441.387 191.676,445.224 181.359,451.436 180.262,452.098
171.043,457.72 162.586,462.809 160.726,463.946 150.41,470.206 144.91,473.519 140.093,476.461 129.777,482.686 127.217,484.23 119.46,488.962 109.521,494.94
109.143,495.171 98.8269,501.453 91.8551,505.651 88.5104,507.695 78.1938,513.936 74.1701,516.361 67.8772,520.203 57.5607,526.414 56.4712,527.072 47.2441,532.698
47.2441,537.782 47.2441,548.493 47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.598 552.756,237.887
552.756,237.193 551.597,237.887 542.439,243.509 533.924,248.598 532.123,249.706 521.806,255.989 516.259,259.309 511.49,262.241 501.173,268.454 498.561,270.019
490.857,274.751 480.847,280.73 480.54,280.919 470.223,287.241 463.2,291.44 459.907,293.466 449.59,299.713 445.518,302.151 439.274,305.988 428.957,312.171
427.806,312.861 418.641,318.487 410.133,323.572 408.324,324.685 398.007,330.968 392.468,334.282 387.691,337.219 377.374,343.433 374.77,344.993 367.058,349.73
357.056,355.703 356.741,355.897 346.425,362.219 339.41,366.414 336.108,368.445 325.791,374.691 321.727,377.124 315.475,380.967 305.158,387.15 304.015,387.835
294.842,393.466 286.343,398.545 284.525,399.664 274.209,405.947 268.677,409.256 263.892,412.198 253.575,418.411 250.979,419.966 243.259,424.708 233.266,430.677
232.942,430.876 222.626,437.198 215.619,441.387 212.309,443.424 201.993,449.67 197.937,452.098 191.676,455.945 181.359,462.128 180.224,462.809 171.043,468.445
162.552,473.519 160.726,474.643 150.41,480.925 144.887,484.23 140.093,487.177 129.777,493.39 127.189,494.94 119.46,499.687 109.475,505.651 109.143,505.855
98.8269,512.176 91.8284,516.361 88.5104,518.402 78.1938,524.648 74.146,527.072 67.8772,530.924 57.5607,537.107 56.4335,537.782 47.2441,543.423 47.2441,548.493
47.2441,559.203 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,259.309 552.756,248.602 542.439,254.974
535.139,259.309 532.123,261.176 521.806,267.438 517.464,270.019 511.49,273.715 501.173,279.878 499.743,280.73 490.857,286.221 482.062,291.44 480.54,292.383
470.223,298.699 464.412,302.151 459.907,304.939 449.59,311.15 446.713,312.861 439.274,317.461 428.971,323.572 428.957,323.581 418.641,329.953 411.348,334.282
408.324,336.155 398.007,342.417 393.673,344.993 387.691,348.694 377.374,354.857 375.952,355.703 367.058,361.2 358.272,366.414 356.741,367.362 346.425,373.677
340.622,377.124 336.108,379.918 325.791,386.129 322.923,387.835 315.475,392.44 305.181,398.545 305.158,398.56 294.842,404.931 287.558,409.256 284.525,411.134
274.209,417.395 269.883,419.966 263.892,423.672 253.575,429.835 252.161,430.677 243.259,436.178 234.481,441.387 232.942,442.341 222.626,448.656 216.831,452.098
212.309,454.897 201.993,461.107 199.132,462.809 191.676,467.419 181.391,473.519 181.359,473.538 171.043,479.91 163.767,484.23 160.726,486.113 150.41,492.374
146.092,494.94 140.093,498.651 129.777,504.814 128.37,505.651 119.46,511.157 110.691,516.361 109.143,517.32 98.8269,523.634 93.0405,527.072 88.5104,529.875
78.1938,536.086 75.3411,537.782 67.8772,542.397 57.6002,548.493 57.5607,548.517 47.2441,554.888 47.2441,559.203 47.2441,569.914 47.2441,580.624
47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,270.019 552.756,261.481 542.439,267.73 538.562,270.019
532.123,274.027 521.806,280.146 520.819,280.73 511.49,286.532 503.163,291.44 501.173,292.68 490.857,298.999 485.515,302.151 480.54,305.249 470.223,311.432
467.802,312.861 459.907,317.774 450.066,323.572 449.59,323.868 439.274,330.26 432.452,334.282 428.957,336.46 418.641,342.709 414.771,344.993 408.324,349.006
398.007,355.125 397.028,355.703 387.691,361.511 379.372,366.414 377.374,367.659 367.058,373.978 361.724,377.124 356.741,380.228 346.425,386.41 344.012,387.835
336.108,392.753 326.275,398.545 325.791,398.847 315.475,405.238 308.661,409.256 305.158,411.438 294.842,417.687 290.98,419.966 284.525,423.985 274.209,430.103
273.237,430.677 263.892,436.49 255.582,441.387 253.575,442.638 243.259,448.956 237.933,452.098 232.942,455.206 222.626,461.388 220.221,462.809 212.309,467.731
202.485,473.519 201.993,473.826 191.676,480.217 184.871,484.23 181.359,486.417 171.043,492.666 167.189,494.94 160.726,498.963 150.41,505.082 149.446,505.651
140.093,511.468 131.791,516.361 129.777,517.617 119.46,523.935 114.143,527.072 109.143,530.185 98.8269,536.367 96.4299,537.782 88.5104,542.71 78.6945,548.493
78.1938,548.805 67.8772,555.195 61.0801,559.203 57.5607,561.396 47.2441,567.644 47.2441,569.914 47.2441,580.624 47.2441,591.335 47.2441,602.045
47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,291.44 552.756,280.73 552.756,276.705 545.882,280.73 542.439,282.888 532.123,289.145
528.205,291.44 521.806,295.449 511.49,301.541 510.449,302.151 501.173,307.958 492.795,312.861 490.857,314.077 480.54,320.42 475.158,323.572 470.223,326.664
459.907,332.837 457.441,334.282 449.59,339.199 439.686,344.993 439.274,345.251 428.957,351.684 422.091,355.703 418.641,357.867 408.324,364.123 404.414,366.414
398.007,370.427 387.691,376.519 386.658,377.124 377.374,382.937 369.004,387.835 367.058,389.055 356.741,395.398 351.367,398.545 346.425,401.643 336.108,407.815
333.65,409.256 325.791,414.177 315.896,419.966 315.475,420.23 305.158,426.662 298.301,430.677 294.842,432.845 284.525,439.101 280.623,441.387 274.209,445.406
263.892,451.497 262.867,452.098 253.575,457.915 245.214,462.809 243.259,464.034 232.942,470.377 227.577,473.519 222.626,476.622 212.309,482.794 209.859,484.23
201.993,489.156 192.105,494.94 191.676,495.209 181.359,501.641 174.51,505.651 171.043,507.824 160.726,514.08 156.832,516.361 150.41,520.385 140.093,526.476
139.076,527.072 129.777,532.894 121.423,537.782 119.46,539.013 109.143,545.355 103.786,548.493 98.8269,551.601 88.5104,557.772 86.0683,559.203 78.1938,564.135
68.3149,569.914 67.8772,570.188 57.5607,576.62 50.7199,580.624 47.2441,582.803 47.2441,591.335 47.2441,602.045 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
47.2441,612.756 47.2441,612.756 57.5607,612.756 67.8772,612.756 78.1938,612.756 88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756
140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756 191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756
243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756 294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756
346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756 398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756
449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756 501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756
552.756,612.756 552.756,602.045 552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493
552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94 552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387
552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835 552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282
552.756,323.572 552.756,312.861 552.756,302.151 552.756,296.495 543.019,302.151 542.439,302.517 532.123,308.976 525.437,312.861 521.806,315.151
511.49,321.401 507.756,323.572 501.173,327.722 490.857,333.773 489.982,334.282 480.54,340.232 472.346,344.993 470.223,346.332 459.907,352.684 454.714,355.703
449.59,358.934 439.274,365.083 436.985,366.414 428.957,371.473 419.229,377.124 418.641,377.496 408.324,383.954 401.647,387.835 398.007,390.13 387.691,396.379
383.966,398.545 377.374,402.701 367.058,408.752 366.191,409.256 356.741,415.21 348.555,419.966 346.425,421.311 336.108,427.663 330.923,430.677 325.791,433.913
315.475,440.061 313.194,441.387 305.158,446.452 295.439,452.098 294.842,452.475 284.525,458.933 277.856,462.809 274.209,465.109 263.892,471.357 260.175,473.519
253.575,477.679 243.259,483.73 242.4,484.23 232.942,490.189 224.765,494.94 222.626,496.29 212.309,502.641 207.132,505.651 201.993,508.891 191.676,515.039
189.403,516.361 181.359,521.431 171.649,527.072 171.043,527.454 160.726,533.911 154.066,537.782 150.41,540.088 140.093,546.336 136.384,548.493 129.777,552.658
119.46,558.708 118.609,559.203 109.143,565.167 100.975,569.914 98.8269,571.269 88.5104,577.619 83.3416,580.624 78.1938,583.87 67.8772,590.017 65.6124,591.335
57.5607,596.409 47.8583,602.045 47.2441,602.433 47.2441,612.756
"/>
<polyline clip-path="url(#clip132)" style="stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.4; stroke-opacity:1; fill:none" points="
88.5104,612.756 98.8269,612.756 109.143,612.756 119.46,612.756 129.777,612.756 140.093,612.756 150.41,612.756 160.726,612.756 171.043,612.756 181.359,612.756
191.676,612.756 201.993,612.756 212.309,612.756 222.626,612.756 232.942,612.756 243.259,612.756 253.575,612.756 263.892,612.756 274.209,612.756 284.525,612.756
294.842,612.756 305.158,612.756 315.475,612.756 325.791,612.756 336.108,612.756 346.425,612.756 356.741,612.756 367.058,612.756 377.374,612.756 387.691,612.756
398.007,612.756 408.324,612.756 418.641,612.756 428.957,612.756 439.274,612.756 449.59,612.756 459.907,612.756 470.223,612.756 480.54,612.756 490.857,612.756
501.173,612.756 511.49,612.756 521.806,612.756 532.123,612.756 542.439,612.756 552.756,612.756 552.756,602.045
552.756,591.335 552.756,580.624 552.756,569.914 552.756,559.203 552.756,548.493 552.756,537.782 552.756,527.072 552.756,516.361 552.756,505.651 552.756,494.94
552.756,484.23 552.756,473.519 552.756,462.809 552.756,452.098 552.756,441.387 552.756,430.677 552.756,419.966 552.756,409.256 552.756,398.545 552.756,387.835
552.756,377.124 552.756,366.414 552.756,355.703 552.756,344.993 552.756,334.282 552.756,327.876 542.439,333.882 541.746,334.282 532.123,340.385
524.135,344.993 521.806,346.47 511.49,352.827 506.504,355.703 501.173,359.085 490.857,365.205 488.762,366.414 480.54,371.628 471.011,377.124 470.223,377.624
459.907,384.103 453.439,387.835 449.59,390.276 439.274,396.513 435.751,398.545 428.957,402.855 418.641,408.86 417.955,409.256 408.324,415.363 400.344,419.966
398.007,421.449 387.691,427.805 382.714,430.677 377.374,434.064 367.058,440.183 364.971,441.387 356.741,446.607 347.221,452.098 346.425,452.603 336.108,459.081
329.648,462.809 325.791,465.255 315.475,471.491 311.961,473.519 305.158,477.834 294.842,483.838 294.164,484.23 284.525,490.342 276.554,494.94 274.209,496.428
263.892,502.783 258.923,505.651 253.575,509.043 243.259,515.161 241.18,516.361 232.942,521.586 223.431,527.072 222.626,527.583 212.309,534.06 205.858,537.782
201.993,540.234 191.676,546.469 188.17,548.493 181.359,552.812 171.043,558.816 170.373,559.203 160.726,565.32 152.764,569.914 150.41,571.407 140.093,577.762
135.132,580.624 129.777,584.022 119.46,590.139 117.389,591.335 109.143,596.564 99.6405,602.045 98.8269,602.562 88.5104,609.038 82.067,612.756 78.1938,612.756
88.5104,612.756
"/>
<circle clip-path="url(#clip132)" cx="155.465" cy="181.738" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="151.576" cy="175.942" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="165.269" cy="192.606" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.318" cy="151.786" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="187.195" cy="147.385" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="127.224" cy="177.49" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="169.217" cy="150.77" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="98.6944" cy="154.655" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="148.757" cy="136.416" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.085" cy="182.447" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="180.757" cy="155.844" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="124.518" cy="177.358" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="121.224" cy="207.245" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="157.503" cy="126.898" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="168.021" cy="200.223" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="121.689" cy="197.156" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="76.4019" cy="185.571" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="155.361" cy="166.311" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="172.792" cy="172.247" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="179.379" cy="178.846" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.491" cy="159.34" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.097" cy="169.183" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="176.347" cy="113.21" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="89.8943" cy="89.6112" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="201.958" cy="160.476" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.302" cy="150.876" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.556" cy="132.208" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.09" cy="221.052" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="116.441" cy="124.571" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.156" cy="129.916" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="113.614" cy="176.817" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="161.184" cy="175.82" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="143.797" cy="191.033" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="161.607" cy="143.847" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="158.407" cy="156.849" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="175.614" cy="233.857" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="118.189" cy="248.933" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="115.602" cy="150.012" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="146.824" cy="200.107" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="171.665" cy="130.789" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="137.93" cy="143.532" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="116.985" cy="171.75" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="133.988" cy="159.002" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.546" cy="218.335" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.889" cy="178.498" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="68.4206" cy="203.695" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="148.553" cy="236.766" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="170.668" cy="114.724" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="171.314" cy="138.618" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="180.603" cy="145.443" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.674" cy="158.69" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="151.583" cy="174.926" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="153.187" cy="200.32" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.733" cy="188.213" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.083" cy="166.736" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="108.399" cy="152.582" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="141.852" cy="181.989" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="128.403" cy="142.473" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="109.769" cy="126.981" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="107.202" cy="144.093" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="149.993" cy="122.588" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="155.737" cy="145.04" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="178.416" cy="139.302" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="101.132" cy="236.611" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="103.675" cy="134.875" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="111.835" cy="157.386" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="169.284" cy="196.388" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="81.8094" cy="197.232" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="132.262" cy="139.318" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="147.981" cy="150.264" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="76.7337" cy="144.618" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="161.681" cy="126.403" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="138.503" cy="190.606" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="182.512" cy="193.1" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="128.75" cy="153.085" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="175.959" cy="195.434" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="154.422" cy="192.29" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="104.738" cy="163.696" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="119.005" cy="129.909" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.441" cy="144.309" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="199.993" cy="148.2" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="123.606" cy="212.612" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="115.524" cy="170.026" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="162.205" cy="149.611" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="156.653" cy="155.599" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="96.2397" cy="180.985" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="105.476" cy="146.087" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="137.838" cy="174.743" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="117.092" cy="184.149" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="206.266" cy="220.97" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="132.399" cy="127.942" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="150.129" cy="170.625" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.938" cy="199.007" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="230.655" cy="186.536" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="87.7163" cy="140.396" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="146.095" cy="219.206" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.631" cy="140.055" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="175.761" cy="194.392" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="148.409" cy="174.202" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="145.648" cy="104.233" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="139.78" cy="175.961" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="173.748" cy="192.267" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="145.8" cy="138.874" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="189.358" cy="138.901" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="133.355" cy="189.248" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="137.207" cy="172.325" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.567" cy="139.851" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="151.38" cy="162.184" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="135.178" cy="145.273" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="190.705" cy="123.74" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="141.138" cy="192.337" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="89.1916" cy="195.886" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="147.656" cy="169.612" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="156.826" cy="144.196" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="77.208" cy="182.466" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="161.295" cy="164.026" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="158.119" cy="165.496" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="137.346" cy="177.887" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="112.937" cy="178.176" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.705" cy="217.494" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="134.443" cy="157.85" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="132.415" cy="140.582" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.373" cy="183.343" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="99.0369" cy="143.903" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="177.928" cy="150.736" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="86.6272" cy="157.714" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="176.627" cy="207.787" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.851" cy="218.573" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.624" cy="207.046" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="167.047" cy="197.672" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="197.809" cy="188.256" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="92.1806" cy="179.168" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="119.101" cy="179.981" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="127.106" cy="212.541" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="171.879" cy="143.796" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="158.924" cy="175.587" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="195.306" cy="162.289" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="102.939" cy="162.672" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="181.535" cy="197.073" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="144.42" cy="159.028" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="169.095" cy="148.242" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.371" cy="166.378" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="141.249" cy="166.202" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="168.994" cy="181.736" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="101.593" cy="152.047" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="180.149" cy="167.724" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="99.7791" cy="157.85" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="185.547" cy="132.875" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="136.809" cy="181.086" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="127.327" cy="161.493" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.477" cy="201.259" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="142.357" cy="201.565" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="184.654" cy="176.065" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="135.04" cy="181.202" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="205.572" cy="164.66" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="177.638" cy="161.135" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="158.118" cy="163.377" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="115.057" cy="146.84" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.467" cy="195.377" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="100.546" cy="153.064" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="77.1399" cy="215.604" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="86.0085" cy="174.26" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="166.162" cy="134.613" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="165.799" cy="214.082" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="127.265" cy="187.463" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="180.066" cy="205.805" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="138.07" cy="221.547" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="130.513" cy="182.389" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="150.889" cy="202.775" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="147.222" cy="134.941" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="178.445" cy="178.975" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="133.92" cy="199.749" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="150.72" cy="212.085" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="148.811" cy="213.81" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="160.238" cy="156.738" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="95.4325" cy="120.063" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="118.347" cy="162.27" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="108.008" cy="155.061" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="158.556" cy="128.904" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.453" cy="169.884" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="130.79" cy="173.863" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="149.268" cy="146.944" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="135.008" cy="211.634" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="165.553" cy="148.388" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.625" cy="173.673" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.525" cy="189.489" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="138.262" cy="163.846" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="154.28" cy="125.786" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="191.482" cy="156.371" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="159.623" cy="205.13" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="185.452" cy="147.754" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="142.343" cy="176.19" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.232" cy="109.984" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="160.021" cy="180.19" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="127.464" cy="193.498" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="139.137" cy="178.011" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.02" cy="121.815" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="129.922" cy="177.012" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="225.763" cy="219.812" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="146.394" cy="137.315" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="150.921" cy="228.25" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="218.913" cy="167.652" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="85.2411" cy="175.289" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="121.199" cy="218.818" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.475" cy="100.604" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="197.341" cy="160.654" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="109.743" cy="142.949" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="119.495" cy="147.991" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="98.5426" cy="164.305" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="129.758" cy="187.544" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="104.693" cy="196.079" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="175.172" cy="148.319" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="180.505" cy="103.577" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="191.06" cy="128.193" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="117.983" cy="121.04" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="169.21" cy="154.613" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.251" cy="199.991" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="132.996" cy="164.892" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="164.009" cy="186.919" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="132.808" cy="178.283" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="92.1257" cy="165.98" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.145" cy="215.102" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="155.595" cy="186.208" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="141.122" cy="190.397" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="120.283" cy="177.128" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="140.952" cy="150.325" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="141.362" cy="150.312" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="150.559" cy="124.398" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.04" cy="198.233" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="162.93" cy="211.076" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="103.265" cy="203.323" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="186.906" cy="182.29" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="146.006" cy="170.284" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="139.862" cy="165.274" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="162.899" cy="140.169" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.07" cy="169.952" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.539" cy="137.365" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="162.752" cy="150.283" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="201.273" cy="186.853" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="83.4068" cy="199.722" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="110.079" cy="142.699" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="159.09" cy="167.962" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="129.425" cy="184.549" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="136.688" cy="162.321" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="119.626" cy="153.902" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="181.827" cy="157.651" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="145.117" cy="195.031" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="121.193" cy="146.205" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.815" cy="178.738" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="139.03" cy="175.762" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="137.611" cy="168.516" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="147.38" cy="174.713" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="196.301" cy="157.973" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="133.644" cy="277.845" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="126.798" cy="149.787" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="163.125" cy="179.108" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="158.365" cy="204.006" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="127.991" cy="194.652" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="141.166" cy="133.719" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="139.428" cy="141.647" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="106.897" cy="153.328" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.773" cy="146.19" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="157.133" cy="161.667" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="123.431" cy="190.311" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="203.555" cy="172.894" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="174.375" cy="161.971" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="92.3478" cy="169.665" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="150.243" cy="130.113" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="128" cy="133.918" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="145.156" cy="182.829" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="119.008" cy="201.23" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="171.533" cy="131.304" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="157.738" cy="169.541" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="173.435" cy="190.32" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="68.0825" cy="176.489" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="98.5572" cy="125.256" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="125.74" cy="128.258" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="186.846" cy="195.684" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="121.828" cy="98.3116" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="192.645" cy="161.609" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="113.712" cy="115.236" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="173.389" cy="175.548" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="80.5489" cy="131.015" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="114.275" cy="153.701" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="165.979" cy="131.184" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="133.527" cy="182.242" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="122.222" cy="97.7474" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="184.563" cy="88.7964" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="132.89" cy="118.329" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="105.489" cy="197.794" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="196.858" cy="162.545" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="97.2034" cy="93.958" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="151.011" cy="184.372" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="94.4488" cy="170.996" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="131.82" cy="169.265" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="113.728" cy="133.653" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="165.957" cy="178.954" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="136.675" cy="132.155" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.349" cy="186.056" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="138.231" cy="137.653" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="91.919" cy="197.031" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="182.607" cy="125.263" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>
<circle clip-path="url(#clip132)" cx="152.436" cy="133.041" r="14.4" fill="#e69f00" fill-rule="evenodd" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1.32"/>