-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrbitDistribution.nb
More file actions
1383 lines (1370 loc) · 86.6 KB
/
OrbitDistribution.nb
File metadata and controls
1383 lines (1370 loc) · 86.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 87065, 1373]
NotebookOptionsPosition[ 86294, 1351]
NotebookOutlinePosition[ 86657, 1367]
CellTagsIndexPosition[ 86614, 1364]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[{
RowBox[{
RowBox[{"<<", "getFeigenbaum`"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"rInv", "=",
RowBox[{"{",
RowBox[{"0", ",", "2"}], "}"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"f", "[",
RowBox[{"r_", ",", "x_"}], "]"}], ":=",
RowBox[{"1", "-",
RowBox[{"r", "*",
RowBox[{"x", "^", "2"}]}]}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"p", "=",
RowBox[{"getFeigenbaum", "[",
RowBox[{"f", ",", "rInv", ",", "4", ",", "15"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"eventualOrbit", "[",
RowBox[{"r_", ",", "x0_"}], "]"}], ":=",
RowBox[{"NestList", "[",
RowBox[{
RowBox[{
RowBox[{"f", "[",
RowBox[{"r", ",", "#"}], "]"}], "&"}], ",", "x0", ",",
RowBox[{"10", "^", "7"}]}], "]"}]}], ";"}]}], "Input",
CellChangeTimes->{{3.791543559913454*^9, 3.7915436329395237`*^9}, {
3.791543666147048*^9, 3.791543682808178*^9}, {3.79154375531572*^9,
3.7915437646995616`*^9}, {3.791543803016419*^9, 3.791543842559123*^9}, {
3.7915438853486433`*^9, 3.7915439380023546`*^9}, {3.791545662418041*^9,
3.7915456633355875`*^9}, {3.7915462179541683`*^9, 3.791546242851938*^9}, {
3.791548182515709*^9, 3.7915481900114326`*^9}, {3.7915482417638454`*^9,
3.791548241926533*^9}, {3.7986179547556615`*^9, 3.7986179551316614`*^9}, {
3.7986181217146616`*^9, 3.7986182802096615`*^9}, {3.7986184654716616`*^9,
3.7986184733106613`*^9}, {3.798619868448158*^9, 3.7986198884961624`*^9}, {
3.7986210616292243`*^9, 3.7986210616602235`*^9}, {3.801034311284745*^9,
3.8010343114475327`*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"fba7ac12-abc4-4bd7-90f8-79b5f4e4e48f"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Histogram", "[",
RowBox[{
RowBox[{"eventualOrbit", "[",
RowBox[{
RowBox[{"p", "[",
RowBox[{"[",
RowBox[{"15", ",", "1"}], "]"}], "]"}], ",", "0.5"}], "]"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-", "1"}], ",", "1", ",",
RowBox[{"4", "/", "1000"}]}], "}"}], ",", "\"\<Count\>\"", ",",
RowBox[{"ImageSize", "\[Rule]", "Large"}], ",",
RowBox[{"AxesLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"x", ",", "n"}], "}"}]}], ",",
RowBox[{"ChartStyle", "\[Rule]",
RowBox[{"RGBColor", "[",
RowBox[{"0.42", ",", "0.26", ",", "1"}], "]"}]}], ",",
RowBox[{"AspectRatio", "\[Rule]",
RowBox[{"1", "/", "6"}]}], ",",
RowBox[{"Ticks", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"-", "0.5"}], ",", "0", ",", "0.5", ",", "1"}], "}"}], ",",
"Automatic"}], "}"}]}]}], "]"}]], "Input",
CellChangeTimes->{{3.791543559913454*^9, 3.7915436329395237`*^9}, {
3.791543666147048*^9, 3.791543682808178*^9}, {3.79154375531572*^9,
3.7915437646995616`*^9}, {3.791543803016419*^9, 3.791543842559123*^9}, {
3.7915438853486433`*^9, 3.7915439616037207`*^9}, {3.791544041198661*^9,
3.7915441051723957`*^9}, {3.7915441680691752`*^9,
3.7915441999917903`*^9}, {3.7915444038128676`*^9,
3.7915444689881063`*^9}, {3.791544569070343*^9, 3.791544675969431*^9}, {
3.7915447703104153`*^9, 3.7915448000207453`*^9}, {3.7915448535241385`*^9,
3.7915448600407453`*^9}, {3.7915448918534584`*^9, 3.791544908255637*^9}, {
3.791545269595231*^9, 3.7915452855846095`*^9}, {3.7915453552077184`*^9,
3.7915454022570167`*^9}, {3.7915454606779537`*^9, 3.79154549654889*^9}, {
3.7915455935902643`*^9, 3.791545647351514*^9}, {3.7915456886873355`*^9,
3.7915456957987633`*^9}, {3.791546031488263*^9, 3.7915460427154493`*^9}, {
3.7915461903587723`*^9, 3.7915462100396633`*^9}, {3.7915480284714904`*^9,
3.7915480350006638`*^9}, {3.791548221997375*^9, 3.7915482389576063`*^9}, {
3.79154829070671*^9, 3.7915483308664193`*^9}, {3.794204420227644*^9,
3.79420443148107*^9}, {3.79420449434877*^9, 3.7942045213591394`*^9}, {
3.794204561824709*^9, 3.7942045638201127`*^9}, {3.7942045961252375`*^9,
3.7942045965388174`*^9}, {3.7942046463154306`*^9,
3.7942046551734257`*^9}, {3.7942047430456142`*^9, 3.794204743972312*^9}, {
3.7946390796542215`*^9, 3.7946390852652283`*^9}, {3.7946393598718023`*^9,
3.7946393599585567`*^9}, {3.7946395421571507`*^9, 3.7946395425032578`*^9},
3.7946396477724857`*^9, {3.7946397088842793`*^9, 3.794639766818202*^9}, {
3.7946397973321705`*^9, 3.7946397996739373`*^9}, 3.794639961579401*^9, {
3.7946400180478973`*^9, 3.7946400225667734`*^9}, {3.7946403982733793`*^9,
3.79464041247069*^9}, 3.7946404503983283`*^9, {3.7946404886334805`*^9,
3.7946405186323624`*^9}, 3.7946405538811145`*^9, {3.7946406277520027`*^9,
3.794640676142721*^9}, {3.7946407101248693`*^9, 3.7946407467569575`*^9}, {
3.7946407805996647`*^9, 3.7946407838858433`*^9}, {3.7986184867596617`*^9,
3.7986184867906613`*^9}, 3.7986185534346614`*^9, 3.798618593024661*^9,
3.798618924334461*^9, {3.798619464887806*^9, 3.7986194741757345`*^9}, {
3.7986196000463204`*^9, 3.7986196020605216`*^9}, 3.7986198595542684`*^9},
CellLabel->"In[6]:=",ExpressionUUID->"3a382450-e7ae-4c13-9646-db135a872e55"],
Cell[BoxData[
GraphicsBox[{
{RGBColor[0.42, 0.26, 1], EdgeForm[Opacity[0.]], {},
{RGBColor[0.42, 0.26, 1], EdgeForm[Opacity[0.]],
RectangleBox[{-0.404, 0}, {-0.4, 312500.},
RoundingRadius->0], RectangleBox[{-0.4, 0}, {-0.396, 312499.},
RoundingRadius->0], RectangleBox[{-0.396, 0}, {-0.392, 1.},
RoundingRadius->0], RectangleBox[{-0.392, 0}, {-0.388, 312499.},
RoundingRadius->0], RectangleBox[{-0.388, 0}, {-0.384, 312500.},
RoundingRadius->0], RectangleBox[{-0.356, 0}, {-0.352, 1.},
RoundingRadius->0], RectangleBox[{-0.348, 0}, {-0.344, 78125.},
RoundingRadius->0], RectangleBox[{-0.344, 0}, {-0.34, 234374.},
RoundingRadius->0], RectangleBox[{-0.34, 0}, {-0.336, 1.},
RoundingRadius->0], RectangleBox[{-0.336, 0}, {-0.332, 156248.},
RoundingRadius->0], RectangleBox[{-0.332, 0}, {-0.328, 156250.},
RoundingRadius->0], RectangleBox[{-0.328, 0}, {-0.324, 1.},
RoundingRadius->0], RectangleBox[{-0.312, 0}, {-0.308, 234373.},
RoundingRadius->0], RectangleBox[{-0.308, 0}, {-0.304, 156252.},
RoundingRadius->0], RectangleBox[{-0.304, 0}, {-0.3, 234374.},
RoundingRadius->0], RectangleBox[{-0.284, 0}, {-0.28, 1.},
RoundingRadius->0], RectangleBox[{-0.112, 0}, {-0.108, 1.},
RoundingRadius->0], RectangleBox[{-0.064, 0}, {-0.06, 312500.},
RoundingRadius->0], RectangleBox[{-0.06, 0}, {-0.056, 1.},
RoundingRadius->0], RectangleBox[{-0.056, 0}, {-0.052, 156248.},
RoundingRadius->0], RectangleBox[{-0.052, 0}, {-0.048, 156250.},
RoundingRadius->0], RectangleBox[{-0.012, 0}, {-0.008, 117188.},
RoundingRadius->0], RectangleBox[{-0.008, 0}, {-0.004, 39062.},
RoundingRadius->0], RectangleBox[{-0.004, 0}, {0., 51881.},
RoundingRadius->0], RectangleBox[{0., 0}, {0.004, 84838.},
RoundingRadius->0], RectangleBox[{0.004, 0}, {0.008, 19531.},
RoundingRadius->0], RectangleBox[{0.016, 0}, {0.02, 78125.},
RoundingRadius->0], RectangleBox[{0.02, 0}, {0.024, 78125.},
RoundingRadius->0], RectangleBox[{0.024, 0}, {0.028, 156249.},
RoundingRadius->0], RectangleBox[{0.044, 0}, {0.048, 1.},
RoundingRadius->0], RectangleBox[{0.12, 0}, {0.124, 312499.},
RoundingRadius->0], RectangleBox[{0.124, 0}, {0.128, 1.},
RoundingRadius->0], RectangleBox[{0.128, 0}, {0.132, 78125.},
RoundingRadius->0], RectangleBox[{0.132, 0}, {0.136, 78125.},
RoundingRadius->0], RectangleBox[{0.136, 0}, {0.14, 156250.},
RoundingRadius->0], RectangleBox[{0.152, 0}, {0.156, 312498.},
RoundingRadius->0], RectangleBox[{0.156, 0}, {0.16, 312501.},
RoundingRadius->0], RectangleBox[{0.176, 0}, {0.18, 1.},
RoundingRadius->0], RectangleBox[{0.408, 0}, {0.412, 1.},
RoundingRadius->0], RectangleBox[{0.5, 0}, {0.504, 1.},
RoundingRadius->0], RectangleBox[{0.648, 0}, {0.652, 1.},
RoundingRadius->0], RectangleBox[{0.764, 0}, {0.768, 1.},
RoundingRadius->0], RectangleBox[{0.772, 0}, {0.776, 312501.},
RoundingRadius->0], RectangleBox[{0.776, 0}, {0.78, 312498.},
RoundingRadius->0], RectangleBox[{0.784, 0}, {0.788, 312499.},
RoundingRadius->0], RectangleBox[{0.788, 0}, {0.792, 253908.},
RoundingRadius->0], RectangleBox[{0.792, 0}, {0.796, 58593.},
RoundingRadius->0], RectangleBox[{0.824, 0}, {0.828, 1.},
RoundingRadius->0], RectangleBox[{0.832, 0}, {0.836, 234373.},
RoundingRadius->0], RectangleBox[{0.836, 0}, {0.84, 78126.},
RoundingRadius->0], RectangleBox[{0.84, 0}, {0.844, 78125.},
RoundingRadius->0], RectangleBox[{0.844, 0}, {0.848, 78125.},
RoundingRadius->0], RectangleBox[{0.848, 0}, {0.852, 156250.},
RoundingRadius->0], RectangleBox[{0.864, 0}, {0.868, 312498.},
RoundingRadius->0], RectangleBox[{0.868, 0}, {0.872, 312501.},
RoundingRadius->0], RectangleBox[{0.888, 0}, {0.892, 1.},
RoundingRadius->0], RectangleBox[{0.952, 0}, {0.956, 1.},
RoundingRadius->0], RectangleBox[{0.964, 0}, {0.968, 624999.},
RoundingRadius->0], RectangleBox[{0.972, 0}, {0.976, 312499.},
RoundingRadius->0], RectangleBox[{0.976, 0}, {0.98, 312500.},
RoundingRadius->0], RectangleBox[{0.98, 0}, {0.984, 1.},
RoundingRadius->0], RectangleBox[{0.992, 0}, {0.996, 390626.},
RoundingRadius->0], RectangleBox[{0.996, 0}, {1., 858764.},
RoundingRadius->
0]}, {}, {}}, {{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, \
{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, \
{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, \
{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}}},
AspectRatio->NCache[
Rational[1, 6], 0.16666666666666666`],
Axes->{True, True},
AxesLabel->{
FormBox["x", TraditionalForm],
FormBox["n", TraditionalForm]},
AxesOrigin->{-1.04, 0},
FrameLabel->{{None, None}, {None, None}},
FrameTicks->{{Automatic, Automatic}, {Automatic, Automatic}},
GridLines->{None, None},
GridLinesStyle->Directive[
GrayLevel[0.5, 0.4]],
ImageSize->Large,
PlotRange->{{-1., 1.}, {All, All}},
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.02],
Scaled[0.05]}},
Ticks->{{{-0.5,
FormBox[
RowBox[{"-", "0.5`"}], TraditionalForm]}, {0,
FormBox["0", TraditionalForm]}, {0.5,
FormBox["0.5`", TraditionalForm]}, {1,
FormBox["1", TraditionalForm]}}, Automatic}]], "Output",
CellChangeTimes->{
3.7986181004226613`*^9, {3.7986185305936613`*^9, 3.7986185586006613`*^9},
3.7986186362576613`*^9, 3.7986193524035587`*^9, 3.798619643788694*^9,
3.801034658338562*^9},
CellLabel->"Out[6]=",ExpressionUUID->"e356301c-5bb2-47e1-891d-621490f26ab5"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Histogram", "[",
RowBox[{
RowBox[{"eventualOrbit", "[",
RowBox[{"2", ",", "0.2"}], "]"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-", "1"}], ",", "1", ",",
RowBox[{"2", "/", "1000"}]}], "}"}], ",", "\"\<Count\>\"", ",",
RowBox[{"ImageSize", "\[Rule]", "Large"}], ",",
RowBox[{"AxesLabel", "\[Rule]",
RowBox[{"{",
RowBox[{"x", ",", "n"}], "}"}]}], ",",
RowBox[{"ChartStyle", "\[Rule]",
RowBox[{"RGBColor", "[",
RowBox[{"0.42", ",", "0.26", ",", "1"}], "]"}]}], ",",
RowBox[{"AspectRatio", "\[Rule]",
RowBox[{"1", "/", "6"}]}]}], "]"}]], "Input",
CellChangeTimes->{{3.791543559913454*^9, 3.791543632939524*^9}, {
3.791543666147048*^9, 3.791543682808178*^9}, {3.79154375531572*^9,
3.791543764699562*^9}, {3.791543803016419*^9, 3.791543842559123*^9}, {
3.7915438853486433`*^9, 3.7915439616037207`*^9}, {3.791544041198661*^9,
3.7915441051723957`*^9}, {3.791544168069175*^9, 3.7915441999917903`*^9}, {
3.7915444038128676`*^9, 3.791544468988106*^9}, {3.791544569070343*^9,
3.791544675969431*^9}, {3.791544770310415*^9, 3.7915448000207453`*^9}, {
3.7915448535241385`*^9, 3.7915448600407453`*^9}, {3.791544891853458*^9,
3.791544908255637*^9}, {3.791545269595231*^9, 3.7915452855846095`*^9}, {
3.7915453552077184`*^9, 3.7915454022570167`*^9}, {3.7915454606779537`*^9,
3.79154549654889*^9}, {3.7915455935902643`*^9, 3.791545647351514*^9}, {
3.7915456886873355`*^9, 3.7915456957987633`*^9}, {3.791546031488263*^9,
3.7915460427154493`*^9}, {3.7915461903587723`*^9,
3.7915462100396633`*^9}, {3.79154802847149*^9, 3.791548063310811*^9}, {
3.7915482452452793`*^9, 3.7915482467911572`*^9}, {3.794209448537941*^9,
3.7942094497752*^9}, {3.7942094856006684`*^9, 3.794209486001725*^9}, {
3.7946398041021056`*^9, 3.794639804196822*^9}, 3.7986190073044615`*^9},
CellLabel->"In[7]:=",ExpressionUUID->"c32bf234-be12-461f-9fed-87664aa17714"],
Cell[BoxData[
GraphicsBox[{
{RGBColor[0.42, 0.26, 1], EdgeForm[Opacity[0.]], {},
{RGBColor[0.42, 0.26, 1], EdgeForm[Opacity[0.]], RectangleBox[{-1., 0}, {-0.998, 200907.},
RoundingRadius->0], RectangleBox[{-0.998, 0}, {-0.996, 83315.},
RoundingRadius->0], RectangleBox[{-0.996, 0}, {-0.994, 64079.},
RoundingRadius->0], RectangleBox[{-0.994, 0}, {-0.992, 54175.},
RoundingRadius->0], RectangleBox[{-0.992, 0}, {-0.99, 47658.},
RoundingRadius->0], RectangleBox[{-0.99, 0}, {-0.988, 43091.},
RoundingRadius->0], RectangleBox[{-0.988, 0}, {-0.986, 39829.},
RoundingRadius->0], RectangleBox[{-0.986, 0}, {-0.984, 37155.},
RoundingRadius->0], RectangleBox[{-0.984, 0}, {-0.982, 35027.},
RoundingRadius->0], RectangleBox[{-0.982, 0}, {-0.98, 32691.},
RoundingRadius->0], RectangleBox[{-0.98, 0}, {-0.978, 31204.},
RoundingRadius->0], RectangleBox[{-0.978, 0}, {-0.976, 30020.},
RoundingRadius->0], RectangleBox[{-0.976, 0}, {-0.974, 28785.},
RoundingRadius->0], RectangleBox[{-0.974, 0}, {-0.972, 27647.},
RoundingRadius->0], RectangleBox[{-0.972, 0}, {-0.97, 26548.},
RoundingRadius->0], RectangleBox[{-0.97, 0}, {-0.968, 25999.},
RoundingRadius->0], RectangleBox[{-0.968, 0}, {-0.966, 24780.},
RoundingRadius->0], RectangleBox[{-0.966, 0}, {-0.964, 24376.},
RoundingRadius->0], RectangleBox[{-0.964, 0}, {-0.962, 23718.},
RoundingRadius->0], RectangleBox[{-0.962, 0}, {-0.96, 22922.},
RoundingRadius->0], RectangleBox[{-0.96, 0}, {-0.958, 22466.},
RoundingRadius->0], RectangleBox[{-0.958, 0}, {-0.956, 22014.},
RoundingRadius->0], RectangleBox[{-0.956, 0}, {-0.954, 21545.},
RoundingRadius->0], RectangleBox[{-0.954, 0}, {-0.952, 20905.},
RoundingRadius->0], RectangleBox[{-0.952, 0}, {-0.95, 20832.},
RoundingRadius->0], RectangleBox[{-0.95, 0}, {-0.948, 20075.},
RoundingRadius->0], RectangleBox[{-0.948, 0}, {-0.946, 19921.},
RoundingRadius->0], RectangleBox[{-0.946, 0}, {-0.944, 19434.},
RoundingRadius->0], RectangleBox[{-0.944, 0}, {-0.942, 19081.},
RoundingRadius->0], RectangleBox[{-0.942, 0}, {-0.94, 19099.},
RoundingRadius->0], RectangleBox[{-0.94, 0}, {-0.938, 18520.},
RoundingRadius->0], RectangleBox[{-0.938, 0}, {-0.936, 18351.},
RoundingRadius->0], RectangleBox[{-0.936, 0}, {-0.934, 18009.},
RoundingRadius->0], RectangleBox[{-0.934, 0}, {-0.932, 17859.},
RoundingRadius->0], RectangleBox[{-0.932, 0}, {-0.93, 17416.},
RoundingRadius->0], RectangleBox[{-0.93, 0}, {-0.928, 17431.},
RoundingRadius->0], RectangleBox[{-0.928, 0}, {-0.926, 16659.},
RoundingRadius->0], RectangleBox[{-0.926, 0}, {-0.924, 16796.},
RoundingRadius->0], RectangleBox[{-0.924, 0}, {-0.922, 16578.},
RoundingRadius->0], RectangleBox[{-0.922, 0}, {-0.92, 16400.},
RoundingRadius->0], RectangleBox[{-0.92, 0}, {-0.918, 16429.},
RoundingRadius->0], RectangleBox[{-0.918, 0}, {-0.916, 15858.},
RoundingRadius->0], RectangleBox[{-0.916, 0}, {-0.914, 15939.},
RoundingRadius->0], RectangleBox[{-0.914, 0}, {-0.912, 15437.},
RoundingRadius->0], RectangleBox[{-0.912, 0}, {-0.91, 15411.},
RoundingRadius->0], RectangleBox[{-0.91, 0}, {-0.908, 15221.},
RoundingRadius->0], RectangleBox[{-0.908, 0}, {-0.906, 15228.},
RoundingRadius->0], RectangleBox[{-0.906, 0}, {-0.904, 15096.},
RoundingRadius->0], RectangleBox[{-0.904, 0}, {-0.902, 15079.},
RoundingRadius->0], RectangleBox[{-0.902, 0}, {-0.9, 14645.},
RoundingRadius->0], RectangleBox[{-0.9, 0}, {-0.898, 14455.},
RoundingRadius->0], RectangleBox[{-0.898, 0}, {-0.896, 14289.},
RoundingRadius->0], RectangleBox[{-0.896, 0}, {-0.894, 14144.},
RoundingRadius->0], RectangleBox[{-0.894, 0}, {-0.892, 14315.},
RoundingRadius->0], RectangleBox[{-0.892, 0}, {-0.89, 14186.},
RoundingRadius->0], RectangleBox[{-0.89, 0}, {-0.888, 13705.},
RoundingRadius->0], RectangleBox[{-0.888, 0}, {-0.886, 13709.},
RoundingRadius->0], RectangleBox[{-0.886, 0}, {-0.884, 13854.},
RoundingRadius->0], RectangleBox[{-0.884, 0}, {-0.882, 13639.},
RoundingRadius->0], RectangleBox[{-0.882, 0}, {-0.88, 13477.},
RoundingRadius->0], RectangleBox[{-0.88, 0}, {-0.878, 13422.},
RoundingRadius->0], RectangleBox[{-0.878, 0}, {-0.876, 13191.},
RoundingRadius->0], RectangleBox[{-0.876, 0}, {-0.874, 13268.},
RoundingRadius->0], RectangleBox[{-0.874, 0}, {-0.872, 12929.},
RoundingRadius->0], RectangleBox[{-0.872, 0}, {-0.87, 12983.},
RoundingRadius->0], RectangleBox[{-0.87, 0}, {-0.868, 13033.},
RoundingRadius->0], RectangleBox[{-0.868, 0}, {-0.866, 12796.},
RoundingRadius->0], RectangleBox[{-0.866, 0}, {-0.864, 12641.},
RoundingRadius->0], RectangleBox[{-0.864, 0}, {-0.862, 12509.},
RoundingRadius->0], RectangleBox[{-0.862, 0}, {-0.86, 12477.},
RoundingRadius->0], RectangleBox[{-0.86, 0}, {-0.858, 12533.},
RoundingRadius->0], RectangleBox[{-0.858, 0}, {-0.856, 12265.},
RoundingRadius->0], RectangleBox[{-0.856, 0}, {-0.854, 12250.},
RoundingRadius->0], RectangleBox[{-0.854, 0}, {-0.852, 12384.},
RoundingRadius->0], RectangleBox[{-0.852, 0}, {-0.85, 12032.},
RoundingRadius->0], RectangleBox[{-0.85, 0}, {-0.848, 12267.},
RoundingRadius->0], RectangleBox[{-0.848, 0}, {-0.846, 12005.},
RoundingRadius->0], RectangleBox[{-0.846, 0}, {-0.844, 11886.},
RoundingRadius->0], RectangleBox[{-0.844, 0}, {-0.842, 11813.},
RoundingRadius->0], RectangleBox[{-0.842, 0}, {-0.84, 11857.},
RoundingRadius->0], RectangleBox[{-0.84, 0}, {-0.838, 11642.},
RoundingRadius->0], RectangleBox[{-0.838, 0}, {-0.836, 11491.},
RoundingRadius->0], RectangleBox[{-0.836, 0}, {-0.834, 11458.},
RoundingRadius->0], RectangleBox[{-0.834, 0}, {-0.832, 11564.},
RoundingRadius->0], RectangleBox[{-0.832, 0}, {-0.83, 11479.},
RoundingRadius->0], RectangleBox[{-0.83, 0}, {-0.828, 11314.},
RoundingRadius->0], RectangleBox[{-0.828, 0}, {-0.826, 11323.},
RoundingRadius->0], RectangleBox[{-0.826, 0}, {-0.824, 11353.},
RoundingRadius->0], RectangleBox[{-0.824, 0}, {-0.822, 11275.},
RoundingRadius->0], RectangleBox[{-0.822, 0}, {-0.82, 11200.},
RoundingRadius->0], RectangleBox[{-0.82, 0}, {-0.818, 11174.},
RoundingRadius->0], RectangleBox[{-0.818, 0}, {-0.816, 10848.},
RoundingRadius->0], RectangleBox[{-0.816, 0}, {-0.814, 10897.},
RoundingRadius->0], RectangleBox[{-0.814, 0}, {-0.812, 10864.},
RoundingRadius->0], RectangleBox[{-0.812, 0}, {-0.81, 10957.},
RoundingRadius->0], RectangleBox[{-0.81, 0}, {-0.808, 11035.},
RoundingRadius->0], RectangleBox[{-0.808, 0}, {-0.806, 10692.},
RoundingRadius->0], RectangleBox[{-0.806, 0}, {-0.804, 10646.},
RoundingRadius->0], RectangleBox[{-0.804, 0}, {-0.802, 10775.},
RoundingRadius->0], RectangleBox[{-0.802, 0}, {-0.8, 10564.},
RoundingRadius->0], RectangleBox[{-0.8, 0}, {-0.798, 10685.},
RoundingRadius->0], RectangleBox[{-0.798, 0}, {-0.796, 10510.},
RoundingRadius->0], RectangleBox[{-0.796, 0}, {-0.794, 10594.},
RoundingRadius->0], RectangleBox[{-0.794, 0}, {-0.792, 10431.},
RoundingRadius->0], RectangleBox[{-0.792, 0}, {-0.79, 10653.},
RoundingRadius->0], RectangleBox[{-0.79, 0}, {-0.788, 10357.},
RoundingRadius->0], RectangleBox[{-0.788, 0}, {-0.786, 10229.},
RoundingRadius->0], RectangleBox[{-0.786, 0}, {-0.784, 10208.},
RoundingRadius->0], RectangleBox[{-0.784, 0}, {-0.782, 10285.},
RoundingRadius->0], RectangleBox[{-0.782, 0}, {-0.78, 9982.},
RoundingRadius->0], RectangleBox[{-0.78, 0}, {-0.778, 9989.},
RoundingRadius->0], RectangleBox[{-0.778, 0}, {-0.776, 10110.},
RoundingRadius->0], RectangleBox[{-0.776, 0}, {-0.774, 10063.},
RoundingRadius->0], RectangleBox[{-0.774, 0}, {-0.772, 10028.},
RoundingRadius->0], RectangleBox[{-0.772, 0}, {-0.77, 10228.},
RoundingRadius->0], RectangleBox[{-0.77, 0}, {-0.768, 9918.},
RoundingRadius->0], RectangleBox[{-0.768, 0}, {-0.766, 9845.},
RoundingRadius->0], RectangleBox[{-0.766, 0}, {-0.764, 9833.},
RoundingRadius->0], RectangleBox[{-0.764, 0}, {-0.762, 9882.},
RoundingRadius->0], RectangleBox[{-0.762, 0}, {-0.76, 9835.},
RoundingRadius->0], RectangleBox[{-0.76, 0}, {-0.758, 9689.},
RoundingRadius->0], RectangleBox[{-0.758, 0}, {-0.756, 9745.},
RoundingRadius->0], RectangleBox[{-0.756, 0}, {-0.754, 9802.},
RoundingRadius->0], RectangleBox[{-0.754, 0}, {-0.752, 9635.},
RoundingRadius->0], RectangleBox[{-0.752, 0}, {-0.75, 9883.},
RoundingRadius->0], RectangleBox[{-0.75, 0}, {-0.748, 9548.},
RoundingRadius->0], RectangleBox[{-0.748, 0}, {-0.746, 9657.},
RoundingRadius->0], RectangleBox[{-0.746, 0}, {-0.744, 9530.},
RoundingRadius->0], RectangleBox[{-0.744, 0}, {-0.742, 9535.},
RoundingRadius->0], RectangleBox[{-0.742, 0}, {-0.74, 9579.},
RoundingRadius->0], RectangleBox[{-0.74, 0}, {-0.738, 9402.},
RoundingRadius->0], RectangleBox[{-0.738, 0}, {-0.736, 9416.},
RoundingRadius->0], RectangleBox[{-0.736, 0}, {-0.734, 9378.},
RoundingRadius->0], RectangleBox[{-0.734, 0}, {-0.732, 9412.},
RoundingRadius->0], RectangleBox[{-0.732, 0}, {-0.73, 9362.},
RoundingRadius->0], RectangleBox[{-0.73, 0}, {-0.728, 9238.},
RoundingRadius->0], RectangleBox[{-0.728, 0}, {-0.726, 9434.},
RoundingRadius->0], RectangleBox[{-0.726, 0}, {-0.724, 9342.},
RoundingRadius->0], RectangleBox[{-0.724, 0}, {-0.722, 9440.},
RoundingRadius->0], RectangleBox[{-0.722, 0}, {-0.72, 9232.},
RoundingRadius->0], RectangleBox[{-0.72, 0}, {-0.718, 9092.},
RoundingRadius->0], RectangleBox[{-0.718, 0}, {-0.716, 8971.},
RoundingRadius->0], RectangleBox[{-0.716, 0}, {-0.714, 9120.},
RoundingRadius->0], RectangleBox[{-0.714, 0}, {-0.712, 9090.},
RoundingRadius->0], RectangleBox[{-0.712, 0}, {-0.71, 8981.},
RoundingRadius->0], RectangleBox[{-0.71, 0}, {-0.708, 9111.},
RoundingRadius->0], RectangleBox[{-0.708, 0}, {-0.706, 9039.},
RoundingRadius->0], RectangleBox[{-0.706, 0}, {-0.704, 8889.},
RoundingRadius->0], RectangleBox[{-0.704, 0}, {-0.702, 8869.},
RoundingRadius->0], RectangleBox[{-0.702, 0}, {-0.7, 8954.},
RoundingRadius->0], RectangleBox[{-0.7, 0}, {-0.698, 8874.},
RoundingRadius->0], RectangleBox[{-0.698, 0}, {-0.696, 8921.},
RoundingRadius->0], RectangleBox[{-0.696, 0}, {-0.694, 8963.},
RoundingRadius->0], RectangleBox[{-0.694, 0}, {-0.692, 9033.},
RoundingRadius->0], RectangleBox[{-0.692, 0}, {-0.69, 8838.},
RoundingRadius->0], RectangleBox[{-0.69, 0}, {-0.688, 8839.},
RoundingRadius->0], RectangleBox[{-0.688, 0}, {-0.686, 9038.},
RoundingRadius->0], RectangleBox[{-0.686, 0}, {-0.684, 8877.},
RoundingRadius->0], RectangleBox[{-0.684, 0}, {-0.682, 8743.},
RoundingRadius->0], RectangleBox[{-0.682, 0}, {-0.68, 8689.},
RoundingRadius->0], RectangleBox[{-0.68, 0}, {-0.678, 8567.},
RoundingRadius->0], RectangleBox[{-0.678, 0}, {-0.676, 8757.},
RoundingRadius->0], RectangleBox[{-0.676, 0}, {-0.674, 8629.},
RoundingRadius->0], RectangleBox[{-0.674, 0}, {-0.672, 8630.},
RoundingRadius->0], RectangleBox[{-0.672, 0}, {-0.67, 8472.},
RoundingRadius->0], RectangleBox[{-0.67, 0}, {-0.668, 8458.},
RoundingRadius->0], RectangleBox[{-0.668, 0}, {-0.666, 8617.},
RoundingRadius->0], RectangleBox[{-0.666, 0}, {-0.664, 8384.},
RoundingRadius->0], RectangleBox[{-0.664, 0}, {-0.662, 8423.},
RoundingRadius->0], RectangleBox[{-0.662, 0}, {-0.66, 8391.},
RoundingRadius->0], RectangleBox[{-0.66, 0}, {-0.658, 8346.},
RoundingRadius->0], RectangleBox[{-0.658, 0}, {-0.656, 8421.},
RoundingRadius->0], RectangleBox[{-0.656, 0}, {-0.654, 8348.},
RoundingRadius->0], RectangleBox[{-0.654, 0}, {-0.652, 8499.},
RoundingRadius->0], RectangleBox[{-0.652, 0}, {-0.65, 8367.},
RoundingRadius->0], RectangleBox[{-0.65, 0}, {-0.648, 8312.},
RoundingRadius->0], RectangleBox[{-0.648, 0}, {-0.646, 8376.},
RoundingRadius->0], RectangleBox[{-0.646, 0}, {-0.644, 8295.},
RoundingRadius->0], RectangleBox[{-0.644, 0}, {-0.642, 8222.},
RoundingRadius->0], RectangleBox[{-0.642, 0}, {-0.64, 8400.},
RoundingRadius->0], RectangleBox[{-0.64, 0}, {-0.638, 8250.},
RoundingRadius->0], RectangleBox[{-0.638, 0}, {-0.636, 8254.},
RoundingRadius->0], RectangleBox[{-0.636, 0}, {-0.634, 8247.},
RoundingRadius->0], RectangleBox[{-0.634, 0}, {-0.632, 8408.},
RoundingRadius->0], RectangleBox[{-0.632, 0}, {-0.63, 8283.},
RoundingRadius->0], RectangleBox[{-0.63, 0}, {-0.628, 8180.},
RoundingRadius->0], RectangleBox[{-0.628, 0}, {-0.626, 8089.},
RoundingRadius->0], RectangleBox[{-0.626, 0}, {-0.624, 8128.},
RoundingRadius->0], RectangleBox[{-0.624, 0}, {-0.622, 7956.},
RoundingRadius->0], RectangleBox[{-0.622, 0}, {-0.62, 8033.},
RoundingRadius->0], RectangleBox[{-0.62, 0}, {-0.618, 7948.},
RoundingRadius->0], RectangleBox[{-0.618, 0}, {-0.616, 8005.},
RoundingRadius->0], RectangleBox[{-0.616, 0}, {-0.614, 8076.},
RoundingRadius->0], RectangleBox[{-0.614, 0}, {-0.612, 8153.},
RoundingRadius->0], RectangleBox[{-0.612, 0}, {-0.61, 8032.},
RoundingRadius->0], RectangleBox[{-0.61, 0}, {-0.608, 7788.},
RoundingRadius->0], RectangleBox[{-0.608, 0}, {-0.606, 8025.},
RoundingRadius->0], RectangleBox[{-0.606, 0}, {-0.604, 7890.},
RoundingRadius->0], RectangleBox[{-0.604, 0}, {-0.602, 7939.},
RoundingRadius->0], RectangleBox[{-0.602, 0}, {-0.6, 7926.},
RoundingRadius->0], RectangleBox[{-0.6, 0}, {-0.598, 7956.},
RoundingRadius->0], RectangleBox[{-0.598, 0}, {-0.596, 8023.},
RoundingRadius->0], RectangleBox[{-0.596, 0}, {-0.594, 7800.},
RoundingRadius->0], RectangleBox[{-0.594, 0}, {-0.592, 7789.},
RoundingRadius->0], RectangleBox[{-0.592, 0}, {-0.59, 7926.},
RoundingRadius->0], RectangleBox[{-0.59, 0}, {-0.588, 7921.},
RoundingRadius->0], RectangleBox[{-0.588, 0}, {-0.586, 7763.},
RoundingRadius->0], RectangleBox[{-0.586, 0}, {-0.584, 8013.},
RoundingRadius->0], RectangleBox[{-0.584, 0}, {-0.582, 7661.},
RoundingRadius->0], RectangleBox[{-0.582, 0}, {-0.58, 7826.},
RoundingRadius->0], RectangleBox[{-0.58, 0}, {-0.578, 7634.},
RoundingRadius->0], RectangleBox[{-0.578, 0}, {-0.576, 7829.},
RoundingRadius->0], RectangleBox[{-0.576, 0}, {-0.574, 7857.},
RoundingRadius->0], RectangleBox[{-0.574, 0}, {-0.572, 7591.},
RoundingRadius->0], RectangleBox[{-0.572, 0}, {-0.57, 7783.},
RoundingRadius->0], RectangleBox[{-0.57, 0}, {-0.568, 7704.},
RoundingRadius->0], RectangleBox[{-0.568, 0}, {-0.566, 7870.},
RoundingRadius->0], RectangleBox[{-0.566, 0}, {-0.564, 7677.},
RoundingRadius->0], RectangleBox[{-0.564, 0}, {-0.562, 7815.},
RoundingRadius->0], RectangleBox[{-0.562, 0}, {-0.56, 7639.},
RoundingRadius->0], RectangleBox[{-0.56, 0}, {-0.558, 7686.},
RoundingRadius->0], RectangleBox[{-0.558, 0}, {-0.556, 7803.},
RoundingRadius->0], RectangleBox[{-0.556, 0}, {-0.554, 7637.},
RoundingRadius->0], RectangleBox[{-0.554, 0}, {-0.552, 7683.},
RoundingRadius->0], RectangleBox[{-0.552, 0}, {-0.55, 7645.},
RoundingRadius->0], RectangleBox[{-0.55, 0}, {-0.548, 7571.},
RoundingRadius->0], RectangleBox[{-0.548, 0}, {-0.546, 7622.},
RoundingRadius->0], RectangleBox[{-0.546, 0}, {-0.544, 7667.},
RoundingRadius->0], RectangleBox[{-0.544, 0}, {-0.542, 7691.},
RoundingRadius->0], RectangleBox[{-0.542, 0}, {-0.54, 7592.},
RoundingRadius->0], RectangleBox[{-0.54, 0}, {-0.538, 7591.},
RoundingRadius->0], RectangleBox[{-0.538, 0}, {-0.536, 7486.},
RoundingRadius->0], RectangleBox[{-0.536, 0}, {-0.534, 7646.},
RoundingRadius->0], RectangleBox[{-0.534, 0}, {-0.532, 7464.},
RoundingRadius->0], RectangleBox[{-0.532, 0}, {-0.53, 7390.},
RoundingRadius->0], RectangleBox[{-0.53, 0}, {-0.528, 7638.},
RoundingRadius->0], RectangleBox[{-0.528, 0}, {-0.526, 7407.},
RoundingRadius->0], RectangleBox[{-0.526, 0}, {-0.524, 7593.},
RoundingRadius->0], RectangleBox[{-0.524, 0}, {-0.522, 7473.},
RoundingRadius->0], RectangleBox[{-0.522, 0}, {-0.52, 7361.},
RoundingRadius->0], RectangleBox[{-0.52, 0}, {-0.518, 7401.},
RoundingRadius->0], RectangleBox[{-0.518, 0}, {-0.516, 7540.},
RoundingRadius->0], RectangleBox[{-0.516, 0}, {-0.514, 7457.},
RoundingRadius->0], RectangleBox[{-0.514, 0}, {-0.512, 7397.},
RoundingRadius->0], RectangleBox[{-0.512, 0}, {-0.51, 7633.},
RoundingRadius->0], RectangleBox[{-0.51, 0}, {-0.508, 7352.},
RoundingRadius->0], RectangleBox[{-0.508, 0}, {-0.506, 7322.},
RoundingRadius->0], RectangleBox[{-0.506, 0}, {-0.504, 7310.},
RoundingRadius->0], RectangleBox[{-0.504, 0}, {-0.502, 7323.},
RoundingRadius->0], RectangleBox[{-0.502, 0}, {-0.5, 7416.},
RoundingRadius->0], RectangleBox[{-0.5, 0}, {-0.498, 7283.},
RoundingRadius->0], RectangleBox[{-0.498, 0}, {-0.496, 7336.},
RoundingRadius->0], RectangleBox[{-0.496, 0}, {-0.494, 7258.},
RoundingRadius->0], RectangleBox[{-0.494, 0}, {-0.492, 7259.},
RoundingRadius->0], RectangleBox[{-0.492, 0}, {-0.49, 7344.},
RoundingRadius->0], RectangleBox[{-0.49, 0}, {-0.488, 7218.},
RoundingRadius->0], RectangleBox[{-0.488, 0}, {-0.486, 7218.},
RoundingRadius->0], RectangleBox[{-0.486, 0}, {-0.484, 7222.},
RoundingRadius->0], RectangleBox[{-0.484, 0}, {-0.482, 7157.},
RoundingRadius->0], RectangleBox[{-0.482, 0}, {-0.48, 7328.},
RoundingRadius->0], RectangleBox[{-0.48, 0}, {-0.478, 7203.},
RoundingRadius->0], RectangleBox[{-0.478, 0}, {-0.476, 7427.},
RoundingRadius->0], RectangleBox[{-0.476, 0}, {-0.474, 7175.},
RoundingRadius->0], RectangleBox[{-0.474, 0}, {-0.472, 7349.},
RoundingRadius->0], RectangleBox[{-0.472, 0}, {-0.47, 7111.},
RoundingRadius->0], RectangleBox[{-0.47, 0}, {-0.468, 7243.},
RoundingRadius->0], RectangleBox[{-0.468, 0}, {-0.466, 7034.},
RoundingRadius->0], RectangleBox[{-0.466, 0}, {-0.464, 7292.},
RoundingRadius->0], RectangleBox[{-0.464, 0}, {-0.462, 7190.},
RoundingRadius->0], RectangleBox[{-0.462, 0}, {-0.46, 7166.},
RoundingRadius->0], RectangleBox[{-0.46, 0}, {-0.458, 7050.},
RoundingRadius->0], RectangleBox[{-0.458, 0}, {-0.456, 7138.},
RoundingRadius->0], RectangleBox[{-0.456, 0}, {-0.454, 7099.},
RoundingRadius->0], RectangleBox[{-0.454, 0}, {-0.452, 7251.},
RoundingRadius->0], RectangleBox[{-0.452, 0}, {-0.45, 6961.},
RoundingRadius->0], RectangleBox[{-0.45, 0}, {-0.448, 7105.},
RoundingRadius->0], RectangleBox[{-0.448, 0}, {-0.446, 7023.},
RoundingRadius->0], RectangleBox[{-0.446, 0}, {-0.444, 7049.},
RoundingRadius->0], RectangleBox[{-0.444, 0}, {-0.442, 7265.},
RoundingRadius->0], RectangleBox[{-0.442, 0}, {-0.44, 6986.},
RoundingRadius->0], RectangleBox[{-0.44, 0}, {-0.438, 7189.},
RoundingRadius->0], RectangleBox[{-0.438, 0}, {-0.436, 7218.},
RoundingRadius->0], RectangleBox[{-0.436, 0}, {-0.434, 7060.},
RoundingRadius->0], RectangleBox[{-0.434, 0}, {-0.432, 6972.},
RoundingRadius->0], RectangleBox[{-0.432, 0}, {-0.43, 7027.},
RoundingRadius->0], RectangleBox[{-0.43, 0}, {-0.428, 7031.},
RoundingRadius->0], RectangleBox[{-0.428, 0}, {-0.426, 7113.},
RoundingRadius->0], RectangleBox[{-0.426, 0}, {-0.424, 7025.},
RoundingRadius->0], RectangleBox[{-0.424, 0}, {-0.422, 7024.},
RoundingRadius->0], RectangleBox[{-0.422, 0}, {-0.42, 6908.},
RoundingRadius->0], RectangleBox[{-0.42, 0}, {-0.418, 6943.},
RoundingRadius->0], RectangleBox[{-0.418, 0}, {-0.416, 6975.},
RoundingRadius->0], RectangleBox[{-0.416, 0}, {-0.414, 6989.},
RoundingRadius->0], RectangleBox[{-0.414, 0}, {-0.412, 7130.},
RoundingRadius->0], RectangleBox[{-0.412, 0}, {-0.41, 6940.},
RoundingRadius->0], RectangleBox[{-0.41, 0}, {-0.408, 6942.},
RoundingRadius->0], RectangleBox[{-0.408, 0}, {-0.406, 7016.},
RoundingRadius->0], RectangleBox[{-0.406, 0}, {-0.404, 6923.},
RoundingRadius->0], RectangleBox[{-0.404, 0}, {-0.402, 6998.},
RoundingRadius->0], RectangleBox[{-0.402, 0}, {-0.4, 6765.},
RoundingRadius->0], RectangleBox[{-0.4, 0}, {-0.398, 7001.},
RoundingRadius->0], RectangleBox[{-0.398, 0}, {-0.396, 6987.},
RoundingRadius->0], RectangleBox[{-0.396, 0}, {-0.394, 6869.},
RoundingRadius->0], RectangleBox[{-0.394, 0}, {-0.392, 6960.},
RoundingRadius->0], RectangleBox[{-0.392, 0}, {-0.39, 7038.},
RoundingRadius->0], RectangleBox[{-0.39, 0}, {-0.388, 7051.},
RoundingRadius->0], RectangleBox[{-0.388, 0}, {-0.386, 6854.},
RoundingRadius->0], RectangleBox[{-0.386, 0}, {-0.384, 6838.},
RoundingRadius->0], RectangleBox[{-0.384, 0}, {-0.382, 6746.},
RoundingRadius->0], RectangleBox[{-0.382, 0}, {-0.38, 6910.},
RoundingRadius->0], RectangleBox[{-0.38, 0}, {-0.378, 6942.},
RoundingRadius->0], RectangleBox[{-0.378, 0}, {-0.376, 6931.},
RoundingRadius->0], RectangleBox[{-0.376, 0}, {-0.374, 6752.},
RoundingRadius->0], RectangleBox[{-0.374, 0}, {-0.372, 6830.},
RoundingRadius->0], RectangleBox[{-0.372, 0}, {-0.37, 6857.},
RoundingRadius->0], RectangleBox[{-0.37, 0}, {-0.368, 6763.},
RoundingRadius->0], RectangleBox[{-0.368, 0}, {-0.366, 6847.},
RoundingRadius->0], RectangleBox[{-0.366, 0}, {-0.364, 6830.},
RoundingRadius->0], RectangleBox[{-0.364, 0}, {-0.362, 6857.},
RoundingRadius->0], RectangleBox[{-0.362, 0}, {-0.36, 6904.},
RoundingRadius->0], RectangleBox[{-0.36, 0}, {-0.358, 6911.},
RoundingRadius->0], RectangleBox[{-0.358, 0}, {-0.356, 6792.},
RoundingRadius->0], RectangleBox[{-0.356, 0}, {-0.354, 6762.},
RoundingRadius->0], RectangleBox[{-0.354, 0}, {-0.352, 6723.},
RoundingRadius->0], RectangleBox[{-0.352, 0}, {-0.35, 6805.},
RoundingRadius->0], RectangleBox[{-0.35, 0}, {-0.348, 6812.},
RoundingRadius->0], RectangleBox[{-0.348, 0}, {-0.346, 6850.},
RoundingRadius->0], RectangleBox[{-0.346, 0}, {-0.344, 6798.},
RoundingRadius->0], RectangleBox[{-0.344, 0}, {-0.342, 6795.},
RoundingRadius->0], RectangleBox[{-0.342, 0}, {-0.34, 6932.},
RoundingRadius->0], RectangleBox[{-0.34, 0}, {-0.338, 6627.},
RoundingRadius->0], RectangleBox[{-0.338, 0}, {-0.336, 6704.},
RoundingRadius->0], RectangleBox[{-0.336, 0}, {-0.334, 6787.},
RoundingRadius->0], RectangleBox[{-0.334, 0}, {-0.332, 6717.},
RoundingRadius->0], RectangleBox[{-0.332, 0}, {-0.33, 6868.},
RoundingRadius->0], RectangleBox[{-0.33, 0}, {-0.328, 6629.},
RoundingRadius->0], RectangleBox[{-0.328, 0}, {-0.326, 6752.},
RoundingRadius->0], RectangleBox[{-0.326, 0}, {-0.324, 6761.},
RoundingRadius->0], RectangleBox[{-0.324, 0}, {-0.322, 6692.},
RoundingRadius->0], RectangleBox[{-0.322, 0}, {-0.32, 6535.},
RoundingRadius->0], RectangleBox[{-0.32, 0}, {-0.318, 6706.},
RoundingRadius->0], RectangleBox[{-0.318, 0}, {-0.316, 6802.},
RoundingRadius->0], RectangleBox[{-0.316, 0}, {-0.314, 6781.},
RoundingRadius->0], RectangleBox[{-0.314, 0}, {-0.312, 6734.},
RoundingRadius->0], RectangleBox[{-0.312, 0}, {-0.31, 6827.},
RoundingRadius->0], RectangleBox[{-0.31, 0}, {-0.308, 6819.},
RoundingRadius->0], RectangleBox[{-0.308, 0}, {-0.306, 6671.},
RoundingRadius->0], RectangleBox[{-0.306, 0}, {-0.304, 6673.},
RoundingRadius->0], RectangleBox[{-0.304, 0}, {-0.302, 6824.},
RoundingRadius->0], RectangleBox[{-0.302, 0}, {-0.3, 6686.},
RoundingRadius->0], RectangleBox[{-0.3, 0}, {-0.298, 6692.},
RoundingRadius->0], RectangleBox[{-0.298, 0}, {-0.296, 6632.},
RoundingRadius->0], RectangleBox[{-0.296, 0}, {-0.294, 6669.},
RoundingRadius->0], RectangleBox[{-0.294, 0}, {-0.292, 6562.},
RoundingRadius->0], RectangleBox[{-0.292, 0}, {-0.29, 6726.},
RoundingRadius->0], RectangleBox[{-0.29, 0}, {-0.288, 6696.},
RoundingRadius->0], RectangleBox[{-0.288, 0}, {-0.286, 6669.},
RoundingRadius->0], RectangleBox[{-0.286, 0}, {-0.284, 6796.},
RoundingRadius->0], RectangleBox[{-0.284, 0}, {-0.282, 6607.},
RoundingRadius->0], RectangleBox[{-0.282, 0}, {-0.28, 6512.},
RoundingRadius->0], RectangleBox[{-0.28, 0}, {-0.278, 6713.},
RoundingRadius->0], RectangleBox[{-0.278, 0}, {-0.276, 6738.},
RoundingRadius->0], RectangleBox[{-0.276, 0}, {-0.274, 6665.},
RoundingRadius->0], RectangleBox[{-0.274, 0}, {-0.272, 6456.},
RoundingRadius->0], RectangleBox[{-0.272, 0}, {-0.27, 6519.},
RoundingRadius->0], RectangleBox[{-0.27, 0}, {-0.268, 6658.},
RoundingRadius->0], RectangleBox[{-0.268, 0}, {-0.266, 6511.},
RoundingRadius->0], RectangleBox[{-0.266, 0}, {-0.264, 6686.},
RoundingRadius->0], RectangleBox[{-0.264, 0}, {-0.262, 6491.},
RoundingRadius->0], RectangleBox[{-0.262, 0}, {-0.26, 6549.},
RoundingRadius->0], RectangleBox[{-0.26, 0}, {-0.258, 6444.},
RoundingRadius->0], RectangleBox[{-0.258, 0}, {-0.256, 6515.},
RoundingRadius->0], RectangleBox[{-0.256, 0}, {-0.254, 6674.},
RoundingRadius->0], RectangleBox[{-0.254, 0}, {-0.252, 6728.},
RoundingRadius->0], RectangleBox[{-0.252, 0}, {-0.25, 6575.},
RoundingRadius->0], RectangleBox[{-0.25, 0}, {-0.248, 6586.},
RoundingRadius->0], RectangleBox[{-0.248, 0}, {-0.246, 6649.},
RoundingRadius->0], RectangleBox[{-0.246, 0}, {-0.244, 6478.},
RoundingRadius->0], RectangleBox[{-0.244, 0}, {-0.242, 6644.},
RoundingRadius->0], RectangleBox[{-0.242, 0}, {-0.24, 6467.},
RoundingRadius->0], RectangleBox[{-0.24, 0}, {-0.238, 6573.},
RoundingRadius->0], RectangleBox[{-0.238, 0}, {-0.236, 6514.},
RoundingRadius->0], RectangleBox[{-0.236, 0}, {-0.234, 6531.},
RoundingRadius->0], RectangleBox[{-0.234, 0}, {-0.232, 6383.},
RoundingRadius->0], RectangleBox[{-0.232, 0}, {-0.23, 6403.},
RoundingRadius->0], RectangleBox[{-0.23, 0}, {-0.228, 6552.},
RoundingRadius->0], RectangleBox[{-0.228, 0}, {-0.226, 6595.},
RoundingRadius->0], RectangleBox[{-0.226, 0}, {-0.224, 6495.},
RoundingRadius->0], RectangleBox[{-0.224, 0}, {-0.222, 6382.},
RoundingRadius->0], RectangleBox[{-0.222, 0}, {-0.22, 6414.},
RoundingRadius->0], RectangleBox[{-0.22, 0}, {-0.218, 6489.},
RoundingRadius->0], RectangleBox[{-0.218, 0}, {-0.216, 6513.},
RoundingRadius->0], RectangleBox[{-0.216, 0}, {-0.214, 6447.},
RoundingRadius->0], RectangleBox[{-0.214, 0}, {-0.212, 6538.},
RoundingRadius->0], RectangleBox[{-0.212, 0}, {-0.21, 6298.},
RoundingRadius->0], RectangleBox[{-0.21, 0}, {-0.208, 6492.},
RoundingRadius->0], RectangleBox[{-0.208, 0}, {-0.206, 6440.},
RoundingRadius->0], RectangleBox[{-0.206, 0}, {-0.204, 6590.},
RoundingRadius->0], RectangleBox[{-0.204, 0}, {-0.202, 6593.},
RoundingRadius->0], RectangleBox[{-0.202, 0}, {-0.2, 6525.},
RoundingRadius->0], RectangleBox[{-0.2, 0}, {-0.198, 6489.},
RoundingRadius->0], RectangleBox[{-0.198, 0}, {-0.196, 6352.},
RoundingRadius->0], RectangleBox[{-0.196, 0}, {-0.194, 6660.},
RoundingRadius->0], RectangleBox[{-0.194, 0}, {-0.192, 6515.},
RoundingRadius->0], RectangleBox[{-0.192, 0}, {-0.19, 6464.},
RoundingRadius->0], RectangleBox[{-0.19, 0}, {-0.188, 6644.},
RoundingRadius->0], RectangleBox[{-0.188, 0}, {-0.186, 6544.},
RoundingRadius->0], RectangleBox[{-0.186, 0}, {-0.184, 6493.},
RoundingRadius->0], RectangleBox[{-0.184, 0}, {-0.182, 6382.},
RoundingRadius->0], RectangleBox[{-0.182, 0}, {-0.18, 6476.},
RoundingRadius->0], RectangleBox[{-0.18, 0}, {-0.178, 6502.},
RoundingRadius->0], RectangleBox[{-0.178, 0}, {-0.176, 6494.},
RoundingRadius->0], RectangleBox[{-0.176, 0}, {-0.174, 6363.},
RoundingRadius->0], RectangleBox[{-0.174, 0}, {-0.172, 6431.},
RoundingRadius->0], RectangleBox[{-0.172, 0}, {-0.17, 6392.},
RoundingRadius->0], RectangleBox[{-0.17, 0}, {-0.168, 6356.},
RoundingRadius->0], RectangleBox[{-0.168, 0}, {-0.166, 6421.},
RoundingRadius->0], RectangleBox[{-0.166, 0}, {-0.164, 6486.},
RoundingRadius->0], RectangleBox[{-0.164, 0}, {-0.162, 6576.},
RoundingRadius->0], RectangleBox[{-0.162, 0}, {-0.16, 6492.},
RoundingRadius->0], RectangleBox[{-0.16, 0}, {-0.158, 6458.},
RoundingRadius->0], RectangleBox[{-0.158, 0}, {-0.156, 6385.},
RoundingRadius->0], RectangleBox[{-0.156, 0}, {-0.154, 6406.},
RoundingRadius->0], RectangleBox[{-0.154, 0}, {-0.152, 6413.},
RoundingRadius->0], RectangleBox[{-0.152, 0}, {-0.15, 6539.},
RoundingRadius->0], RectangleBox[{-0.15, 0}, {-0.148, 6496.},
RoundingRadius->0], RectangleBox[{-0.148, 0}, {-0.146, 6407.},
RoundingRadius->0], RectangleBox[{-0.146, 0}, {-0.144, 6389.},
RoundingRadius->0], RectangleBox[{-0.144, 0}, {-0.142, 6452.},
RoundingRadius->0], RectangleBox[{-0.142, 0}, {-0.14, 6513.},
RoundingRadius->0], RectangleBox[{-0.14, 0}, {-0.138, 6562.},
RoundingRadius->0], RectangleBox[{-0.138, 0}, {-0.136, 6385.},
RoundingRadius->0], RectangleBox[{-0.136, 0}, {-0.134, 6419.},
RoundingRadius->0], RectangleBox[{-0.134, 0}, {-0.132, 6418.},
RoundingRadius->0], RectangleBox[{-0.132, 0}, {-0.13, 6376.},
RoundingRadius->0], RectangleBox[{-0.13, 0}, {-0.128, 6370.},
RoundingRadius->0], RectangleBox[{-0.128, 0}, {-0.126, 6607.},
RoundingRadius->0], RectangleBox[{-0.126, 0}, {-0.124, 6322.},
RoundingRadius->0], RectangleBox[{-0.124, 0}, {-0.122, 6506.},
RoundingRadius->0], RectangleBox[{-0.122, 0}, {-0.12, 6546.},
RoundingRadius->0], RectangleBox[{-0.12, 0}, {-0.118, 6357.},
RoundingRadius->0], RectangleBox[{-0.118, 0}, {-0.116, 6489.},
RoundingRadius->0], RectangleBox[{-0.116, 0}, {-0.114, 6305.},
RoundingRadius->0], RectangleBox[{-0.114, 0}, {-0.112, 6502.},
RoundingRadius->0], RectangleBox[{-0.112, 0}, {-0.11, 6447.},
RoundingRadius->0], RectangleBox[{-0.11, 0}, {-0.108, 6420.},
RoundingRadius->0], RectangleBox[{-0.108, 0}, {-0.106, 6371.},
RoundingRadius->0], RectangleBox[{-0.106, 0}, {-0.104, 6353.},
RoundingRadius->0], RectangleBox[{-0.104, 0}, {-0.102, 6345.},
RoundingRadius->0], RectangleBox[{-0.102, 0}, {-0.1, 6665.},
RoundingRadius->0], RectangleBox[{-0.1, 0}, {-0.098, 6572.},
RoundingRadius->0], RectangleBox[{-0.098, 0}, {-0.096, 6374.},
RoundingRadius->0], RectangleBox[{-0.096, 0}, {-0.094, 6435.},
RoundingRadius->0], RectangleBox[{-0.094, 0}, {-0.092, 6232.},
RoundingRadius->0], RectangleBox[{-0.092, 0}, {-0.09, 6410.},
RoundingRadius->0], RectangleBox[{-0.09, 0}, {-0.088, 6318.},
RoundingRadius->0], RectangleBox[{-0.088, 0}, {-0.086, 6487.},
RoundingRadius->0], RectangleBox[{-0.086, 0}, {-0.084, 6357.},
RoundingRadius->0], RectangleBox[{-0.084, 0}, {-0.082, 6342.},
RoundingRadius->0], RectangleBox[{-0.082, 0}, {-0.08, 6321.},
RoundingRadius->0], RectangleBox[{-0.08, 0}, {-0.078, 6473.},
RoundingRadius->0], RectangleBox[{-0.078, 0}, {-0.076, 6297.},
RoundingRadius->0], RectangleBox[{-0.076, 0}, {-0.074, 6399.},
RoundingRadius->0], RectangleBox[{-0.074, 0}, {-0.072, 6469.},
RoundingRadius->0], RectangleBox[{-0.072, 0}, {-0.07, 6440.},
RoundingRadius->0], RectangleBox[{-0.07, 0}, {-0.068, 6450.},
RoundingRadius->0], RectangleBox[{-0.068, 0}, {-0.066, 6419.},
RoundingRadius->0], RectangleBox[{-0.066, 0}, {-0.064, 6285.},
RoundingRadius->0], RectangleBox[{-0.064, 0}, {-0.062, 6315.},
RoundingRadius->0], RectangleBox[{-0.062, 0}, {-0.06, 6307.},
RoundingRadius->0], RectangleBox[{-0.06, 0}, {-0.058, 6423.},
RoundingRadius->0], RectangleBox[{-0.058, 0}, {-0.056, 6290.},
RoundingRadius->0], RectangleBox[{-0.056, 0}, {-0.054, 6538.},
RoundingRadius->0], RectangleBox[{-0.054, 0}, {-0.052, 6262.},
RoundingRadius->0], RectangleBox[{-0.052, 0}, {-0.05, 6363.},
RoundingRadius->0], RectangleBox[{-0.05, 0}, {-0.048, 6416.},
RoundingRadius->0], RectangleBox[{-0.048, 0}, {-0.046, 6453.},
RoundingRadius->0], RectangleBox[{-0.046, 0}, {-0.044, 6531.},
RoundingRadius->0], RectangleBox[{-0.044, 0}, {-0.042, 6476.},
RoundingRadius->0], RectangleBox[{-0.042, 0}, {-0.04, 6399.},
RoundingRadius->0], RectangleBox[{-0.04, 0}, {-0.038, 6438.},
RoundingRadius->0], RectangleBox[{-0.038, 0}, {-0.036, 6167.},
RoundingRadius->0], RectangleBox[{-0.036, 0}, {-0.034, 6431.},
RoundingRadius->0], RectangleBox[{-0.034, 0}, {-0.032, 6333.},
RoundingRadius->0], RectangleBox[{-0.032, 0}, {-0.03, 6352.},
RoundingRadius->0], RectangleBox[{-0.03, 0}, {-0.028, 6268.},
RoundingRadius->0], RectangleBox[{-0.028, 0}, {-0.026, 6359.},
RoundingRadius->0], RectangleBox[{-0.026, 0}, {-0.024, 6361.},
RoundingRadius->0], RectangleBox[{-0.024, 0}, {-0.022, 6360.},
RoundingRadius->0], RectangleBox[{-0.022, 0}, {-0.02, 6409.},
RoundingRadius->0], RectangleBox[{-0.02, 0}, {-0.018, 6313.},
RoundingRadius->0], RectangleBox[{-0.018, 0}, {-0.016, 6402.},
RoundingRadius->0], RectangleBox[{-0.016, 0}, {-0.014, 6481.},
RoundingRadius->0], RectangleBox[{-0.014, 0}, {-0.012, 6304.},
RoundingRadius->0], RectangleBox[{-0.012, 0}, {-0.01, 6497.},
RoundingRadius->0], RectangleBox[{-0.01, 0}, {-0.008, 6402.},
RoundingRadius->0], RectangleBox[{-0.008, 0}, {-0.006, 6456.},
RoundingRadius->0], RectangleBox[{-0.006, 0}, {-0.004, 6372.},
RoundingRadius->0], RectangleBox[{-0.004, 0}, {-0.002, 6343.},
RoundingRadius->0], RectangleBox[{-0.002, 0}, {0., 6395.},
RoundingRadius->0], RectangleBox[{0., 0}, {0.002, 6339.},
RoundingRadius->0], RectangleBox[{0.002, 0}, {0.004, 6217.},
RoundingRadius->0], RectangleBox[{0.004, 0}, {0.006, 6276.},
RoundingRadius->0], RectangleBox[{0.006, 0}, {0.008, 6331.},
RoundingRadius->0], RectangleBox[{0.008, 0}, {0.01, 6370.},
RoundingRadius->0], RectangleBox[{0.01, 0}, {0.012, 6391.},
RoundingRadius->0], RectangleBox[{0.012, 0}, {0.014, 6283.},
RoundingRadius->0], RectangleBox[{0.014, 0}, {0.016, 6469.},
RoundingRadius->0], RectangleBox[{0.016, 0}, {0.018, 6212.},
RoundingRadius->0], RectangleBox[{0.018, 0}, {0.02, 6418.},
RoundingRadius->0], RectangleBox[{0.02, 0}, {0.022, 6323.},
RoundingRadius->0], RectangleBox[{0.022, 0}, {0.024, 6483.},
RoundingRadius->0], RectangleBox[{0.024, 0}, {0.026, 6381.},
RoundingRadius->0], RectangleBox[{0.026, 0}, {0.028, 6434.},
RoundingRadius->0], RectangleBox[{0.028, 0}, {0.03, 6377.},
RoundingRadius->0], RectangleBox[{0.03, 0}, {0.032, 6337.},
RoundingRadius->0], RectangleBox[{0.032, 0}, {0.034, 6555.},
RoundingRadius->0], RectangleBox[{0.034, 0}, {0.036, 6417.},
RoundingRadius->0], RectangleBox[{0.036, 0}, {0.038, 6465.},
RoundingRadius->0], RectangleBox[{0.038, 0}, {0.04, 6503.},
RoundingRadius->0], RectangleBox[{0.04, 0}, {0.042, 6429.},
RoundingRadius->0], RectangleBox[{0.042, 0}, {0.044, 6433.},
RoundingRadius->0], RectangleBox[{0.044, 0}, {0.046, 6419.},
RoundingRadius->0], RectangleBox[{0.046, 0}, {0.048, 6282.},
RoundingRadius->0], RectangleBox[{0.048, 0}, {0.05, 6321.},
RoundingRadius->0], RectangleBox[{0.05, 0}, {0.052, 6492.},
RoundingRadius->0], RectangleBox[{0.052, 0}, {0.054, 6448.},
RoundingRadius->0], RectangleBox[{0.054, 0}, {0.056, 6428.},
RoundingRadius->0], RectangleBox[{0.056, 0}, {0.058, 6303.},
RoundingRadius->0], RectangleBox[{0.058, 0}, {0.06, 6505.},
RoundingRadius->0], RectangleBox[{0.06, 0}, {0.062, 6407.},
RoundingRadius->0], RectangleBox[{0.062, 0}, {0.064, 6434.},
RoundingRadius->0], RectangleBox[{0.064, 0}, {0.066, 6416.},
RoundingRadius->0], RectangleBox[{0.066, 0}, {0.068, 6369.},
RoundingRadius->0], RectangleBox[{0.068, 0}, {0.07, 6393.},
RoundingRadius->0], RectangleBox[{0.07, 0}, {0.072, 6358.},
RoundingRadius->0], RectangleBox[{0.072, 0}, {0.074, 6371.},
RoundingRadius->0], RectangleBox[{0.074, 0}, {0.076, 6467.},
RoundingRadius->0], RectangleBox[{0.076, 0}, {0.078, 6289.},
RoundingRadius->0], RectangleBox[{0.078, 0}, {0.08, 6398.},
RoundingRadius->0], RectangleBox[{0.08, 0}, {0.082, 6395.},
RoundingRadius->0], RectangleBox[{0.082, 0}, {0.084, 6374.},
RoundingRadius->0], RectangleBox[{0.084, 0}, {0.086, 6350.},
RoundingRadius->0], RectangleBox[{0.086, 0}, {0.088, 6380.},
RoundingRadius->0], RectangleBox[{0.088, 0}, {0.09, 6514.},
RoundingRadius->0], RectangleBox[{0.09, 0}, {0.092, 6473.},
RoundingRadius->0], RectangleBox[{0.092, 0}, {0.094, 6466.},
RoundingRadius->0], RectangleBox[{0.094, 0}, {0.096, 6439.},
RoundingRadius->0], RectangleBox[{0.096, 0}, {0.098, 6239.},
RoundingRadius->0], RectangleBox[{0.098, 0}, {0.1, 6372.},
RoundingRadius->0], RectangleBox[{0.1, 0}, {0.102, 6372.},
RoundingRadius->0], RectangleBox[{0.102, 0}, {0.104, 6469.},
RoundingRadius->0], RectangleBox[{0.104, 0}, {0.106, 6423.},
RoundingRadius->0], RectangleBox[{0.106, 0}, {0.108, 6313.},
RoundingRadius->0], RectangleBox[{0.108, 0}, {0.11, 6466.},
RoundingRadius->0], RectangleBox[{0.11, 0}, {0.112, 6453.},
RoundingRadius->0], RectangleBox[{0.112, 0}, {0.114, 6346.},
RoundingRadius->0], RectangleBox[{0.114, 0}, {0.116, 6295.},
RoundingRadius->0], RectangleBox[{0.116, 0}, {0.118, 6506.},
RoundingRadius->0], RectangleBox[{0.118, 0}, {0.12, 6339.},
RoundingRadius->0], RectangleBox[{0.12, 0}, {0.122, 6479.},
RoundingRadius->0], RectangleBox[{0.122, 0}, {0.124, 6429.},
RoundingRadius->0], RectangleBox[{0.124, 0}, {0.126, 6379.},
RoundingRadius->0], RectangleBox[{0.126, 0}, {0.128, 6340.},
RoundingRadius->0], RectangleBox[{0.128, 0}, {0.13, 6548.},
RoundingRadius->0], RectangleBox[{0.13, 0}, {0.132, 6442.},
RoundingRadius->0], RectangleBox[{0.132, 0}, {0.134, 6314.},
RoundingRadius->0], RectangleBox[{0.134, 0}, {0.136, 6395.},
RoundingRadius->0], RectangleBox[{0.136, 0}, {0.138, 6465.},
RoundingRadius->0], RectangleBox[{0.138, 0}, {0.14, 6483.},
RoundingRadius->0], RectangleBox[{0.14, 0}, {0.142, 6477.},
RoundingRadius->0], RectangleBox[{0.142, 0}, {0.144, 6397.},
RoundingRadius->0], RectangleBox[{0.144, 0}, {0.146, 6360.},
RoundingRadius->0], RectangleBox[{0.146, 0}, {0.148, 6284.},
RoundingRadius->0], RectangleBox[{0.148, 0}, {0.15, 6406.},
RoundingRadius->0], RectangleBox[{0.15, 0}, {0.152, 6517.},
RoundingRadius->0], RectangleBox[{0.152, 0}, {0.154, 6368.},
RoundingRadius->0], RectangleBox[{0.154, 0}, {0.156, 6317.},
RoundingRadius->0], RectangleBox[{0.156, 0}, {0.158, 6474.},
RoundingRadius->0], RectangleBox[{0.158, 0}, {0.16, 6500.},
RoundingRadius->0], RectangleBox[{0.16, 0}, {0.162, 6469.},
RoundingRadius->0], RectangleBox[{0.162, 0}, {0.164, 6515.},
RoundingRadius->0], RectangleBox[{0.164, 0}, {0.166, 6458.},
RoundingRadius->0], RectangleBox[{0.166, 0}, {0.168, 6344.},
RoundingRadius->0], RectangleBox[{0.168, 0}, {0.17, 6425.},
RoundingRadius->0], RectangleBox[{0.17, 0}, {0.172, 6398.},
RoundingRadius->0], RectangleBox[{0.172, 0}, {0.174, 6314.},
RoundingRadius->0], RectangleBox[{0.174, 0}, {0.176, 6540.},
RoundingRadius->0], RectangleBox[{0.176, 0}, {0.178, 6445.},
RoundingRadius->0], RectangleBox[{0.178, 0}, {0.18, 6530.},
RoundingRadius->0], RectangleBox[{0.18, 0}, {0.182, 6545.},
RoundingRadius->0], RectangleBox[{0.182, 0}, {0.184, 6428.},
RoundingRadius->0], RectangleBox[{0.184, 0}, {0.186, 6483.},
RoundingRadius->0], RectangleBox[{0.186, 0}, {0.188, 6434.},
RoundingRadius->0], RectangleBox[{0.188, 0}, {0.19, 6558.},
RoundingRadius->0], RectangleBox[{0.19, 0}, {0.192, 6500.},
RoundingRadius->0], RectangleBox[{0.192, 0}, {0.194, 6535.},
RoundingRadius->0], RectangleBox[{0.194, 0}, {0.196, 6420.},
RoundingRadius->0], RectangleBox[{0.196, 0}, {0.198, 6386.},
RoundingRadius->0], RectangleBox[{0.198, 0}, {0.2, 6760.},
RoundingRadius->0], RectangleBox[{0.2, 0}, {0.202, 6622.},
RoundingRadius->0], RectangleBox[{0.202, 0}, {0.204, 6512.},
RoundingRadius->0], RectangleBox[{0.204, 0}, {0.206, 6533.},
RoundingRadius->0], RectangleBox[{0.206, 0}, {0.208, 6454.},
RoundingRadius->0], RectangleBox[{0.208, 0}, {0.21, 6394.},
RoundingRadius->0], RectangleBox[{0.21, 0}, {0.212, 6474.},
RoundingRadius->0], RectangleBox[{0.212, 0}, {0.214, 6593.},
RoundingRadius->0], RectangleBox[{0.214, 0}, {0.216, 6399.},
RoundingRadius->0], RectangleBox[{0.216, 0}, {0.218, 6423.},
RoundingRadius->0], RectangleBox[{0.218, 0}, {0.22, 6532.},
RoundingRadius->0], RectangleBox[{0.22, 0}, {0.222, 6455.},
RoundingRadius->0], RectangleBox[{0.222, 0}, {0.224, 6432.},
RoundingRadius->0], RectangleBox[{0.224, 0}, {0.226, 6540.},
RoundingRadius->0], RectangleBox[{0.226, 0}, {0.228, 6350.},
RoundingRadius->0], RectangleBox[{0.228, 0}, {0.23, 6499.},
RoundingRadius->0], RectangleBox[{0.23, 0}, {0.232, 6439.},
RoundingRadius->0], RectangleBox[{0.232, 0}, {0.234, 6534.},
RoundingRadius->0], RectangleBox[{0.234, 0}, {0.236, 6523.},
RoundingRadius->0], RectangleBox[{0.236, 0}, {0.238, 6547.},
RoundingRadius->0], RectangleBox[{0.238, 0}, {0.24, 6594.},
RoundingRadius->0], RectangleBox[{0.24, 0}, {0.242, 6561.},
RoundingRadius->0], RectangleBox[{0.242, 0}, {0.244, 6625.},
RoundingRadius->0], RectangleBox[{0.244, 0}, {0.246, 6627.},
RoundingRadius->0], RectangleBox[{0.246, 0}, {0.248, 6668.},
RoundingRadius->0], RectangleBox[{0.248, 0}, {0.25, 6499.},
RoundingRadius->0], RectangleBox[{0.25, 0}, {0.252, 6574.},
RoundingRadius->0], RectangleBox[{0.252, 0}, {0.254, 6524.},
RoundingRadius->0], RectangleBox[{0.254, 0}, {0.256, 6629.},
RoundingRadius->0], RectangleBox[{0.256, 0}, {0.258, 6496.},
RoundingRadius->0], RectangleBox[{0.258, 0}, {0.26, 6575.},
RoundingRadius->0], RectangleBox[{0.26, 0}, {0.262, 6629.},
RoundingRadius->0], RectangleBox[{0.262, 0}, {0.264, 6568.},
RoundingRadius->0], RectangleBox[{0.264, 0}, {0.266, 6582.},
RoundingRadius->0], RectangleBox[{0.266, 0}, {0.268, 6625.},
RoundingRadius->0], RectangleBox[{0.268, 0}, {0.27, 6566.},
RoundingRadius->0], RectangleBox[{0.27, 0}, {0.272, 6521.},
RoundingRadius->0], RectangleBox[{0.272, 0}, {0.274, 6533.},
RoundingRadius->0], RectangleBox[{0.274, 0}, {0.276, 6564.},
RoundingRadius->0], RectangleBox[{0.276, 0}, {0.278, 6509.},
RoundingRadius->0], RectangleBox[{0.278, 0}, {0.28, 6546.},
RoundingRadius->0], RectangleBox[{0.28, 0}, {0.282, 6575.},
RoundingRadius->0], RectangleBox[{0.282, 0}, {0.284, 6641.},
RoundingRadius->0], RectangleBox[{0.284, 0}, {0.286, 6569.},
RoundingRadius->0], RectangleBox[{0.286, 0}, {0.288, 6803.},
RoundingRadius->0], RectangleBox[{0.288, 0}, {0.29, 6703.},
RoundingRadius->0], RectangleBox[{0.29, 0}, {0.292, 6567.},
RoundingRadius->0], RectangleBox[{0.292, 0}, {0.294, 6615.},
RoundingRadius->0], RectangleBox[{0.294, 0}, {0.296, 6604.},
RoundingRadius->0], RectangleBox[{0.296, 0}, {0.298, 6597.},
RoundingRadius->0], RectangleBox[{0.298, 0}, {0.3, 6636.},
RoundingRadius->0], RectangleBox[{0.3, 0}, {0.302, 6701.},
RoundingRadius->0], RectangleBox[{0.302, 0}, {0.304, 6732.},
RoundingRadius->0], RectangleBox[{0.304, 0}, {0.306, 6683.},
RoundingRadius->0], RectangleBox[{0.306, 0}, {0.308, 6639.},
RoundingRadius->0], RectangleBox[{0.308, 0}, {0.31, 6712.},
RoundingRadius->0], RectangleBox[{0.31, 0}, {0.312, 6725.},
RoundingRadius->0], RectangleBox[{0.312, 0}, {0.314, 6747.},
RoundingRadius->0], RectangleBox[{0.314, 0}, {0.316, 6683.},
RoundingRadius->0], RectangleBox[{0.316, 0}, {0.318, 6686.},
RoundingRadius->0], RectangleBox[{0.318, 0}, {0.32, 6626.},
RoundingRadius->0], RectangleBox[{0.32, 0}, {0.322, 6581.},
RoundingRadius->0], RectangleBox[{0.322, 0}, {0.324, 6675.},
RoundingRadius->0], RectangleBox[{0.324, 0}, {0.326, 6700.},
RoundingRadius->0], RectangleBox[{0.326, 0}, {0.328, 6617.},
RoundingRadius->0], RectangleBox[{0.328, 0}, {0.33, 6699.},
RoundingRadius->0], RectangleBox[{0.33, 0}, {0.332, 6571.},
RoundingRadius->0], RectangleBox[{0.332, 0}, {0.334, 6669.},
RoundingRadius->0], RectangleBox[{0.334, 0}, {0.336, 6860.},
RoundingRadius->0], RectangleBox[{0.336, 0}, {0.338, 6824.},
RoundingRadius->0], RectangleBox[{0.338, 0}, {0.34, 6853.},
RoundingRadius->0], RectangleBox[{0.34, 0}, {0.342, 6654.},
RoundingRadius->0], RectangleBox[{0.342, 0}, {0.344, 6639.},
RoundingRadius->0], RectangleBox[{0.344, 0}, {0.346, 6794.},
RoundingRadius->0], RectangleBox[{0.346, 0}, {0.348, 6931.},
RoundingRadius->0], RectangleBox[{0.348, 0}, {0.35, 6747.},
RoundingRadius->0], RectangleBox[{0.35, 0}, {0.352, 6829.},
RoundingRadius->0], RectangleBox[{0.352, 0}, {0.354, 6855.},
RoundingRadius->0], RectangleBox[{0.354, 0}, {0.356, 6908.},
RoundingRadius->0], RectangleBox[{0.356, 0}, {0.358, 6864.},
RoundingRadius->0], RectangleBox[{0.358, 0}, {0.36, 6960.},
RoundingRadius->0], RectangleBox[{0.36, 0}, {0.362, 6676.},
RoundingRadius->0], RectangleBox[{0.362, 0}, {0.364, 6714.},
RoundingRadius->0], RectangleBox[{0.364, 0}, {0.366, 6861.},
RoundingRadius->0], RectangleBox[{0.366, 0}, {0.368, 6867.},
RoundingRadius->0], RectangleBox[{0.368, 0}, {0.37, 6761.},
RoundingRadius->0], RectangleBox[{0.37, 0}, {0.372, 6784.},
RoundingRadius->0], RectangleBox[{0.372, 0}, {0.374, 7010.},
RoundingRadius->0], RectangleBox[{0.374, 0}, {0.376, 6785.},
RoundingRadius->0], RectangleBox[{0.376, 0}, {0.378, 6991.},
RoundingRadius->0], RectangleBox[{0.378, 0}, {0.38, 6978.},
RoundingRadius->0], RectangleBox[{0.38, 0}, {0.382, 6976.},
RoundingRadius->0], RectangleBox[{0.382, 0}, {0.384, 6770.},
RoundingRadius->0], RectangleBox[{0.384, 0}, {0.386, 6942.},
RoundingRadius->0], RectangleBox[{0.386, 0}, {0.388, 6946.},
RoundingRadius->0], RectangleBox[{0.388, 0}, {0.39, 6947.},
RoundingRadius->0], RectangleBox[{0.39, 0}, {0.392, 6953.},
RoundingRadius->0], RectangleBox[{0.392, 0}, {0.394, 6872.},
RoundingRadius->0], RectangleBox[{0.394, 0}, {0.396, 6868.},
RoundingRadius->0], RectangleBox[{0.396, 0}, {0.398, 6811.},
RoundingRadius->0], RectangleBox[{0.398, 0}, {0.4, 6987.},
RoundingRadius->0], RectangleBox[{0.4, 0}, {0.402, 7050.},
RoundingRadius->0], RectangleBox[{0.402, 0}, {0.404, 7061.},
RoundingRadius->0], RectangleBox[{0.404, 0}, {0.406, 6956.},
RoundingRadius->0], RectangleBox[{0.406, 0}, {0.408, 7076.},
RoundingRadius->0], RectangleBox[{0.408, 0}, {0.41, 7105.},
RoundingRadius->0], RectangleBox[{0.41, 0}, {0.412, 7073.},
RoundingRadius->0], RectangleBox[{0.412, 0}, {0.414, 7062.},
RoundingRadius->0], RectangleBox[{0.414, 0}, {0.416, 7063.},
RoundingRadius->0], RectangleBox[{0.416, 0}, {0.418, 6811.},
RoundingRadius->0], RectangleBox[{0.418, 0}, {0.42, 7083.},
RoundingRadius->0], RectangleBox[{0.42, 0}, {0.422, 7000.},
RoundingRadius->0], RectangleBox[{0.422, 0}, {0.424, 7029.},
RoundingRadius->0], RectangleBox[{0.424, 0}, {0.426, 7024.},
RoundingRadius->0], RectangleBox[{0.426, 0}, {0.428, 6911.},
RoundingRadius->0], RectangleBox[{0.428, 0}, {0.43, 7207.},
RoundingRadius->0], RectangleBox[{0.43, 0}, {0.432, 6960.},
RoundingRadius->0], RectangleBox[{0.432, 0}, {0.434, 6982.},
RoundingRadius->0], RectangleBox[{0.434, 0}, {0.436, 7004.},
RoundingRadius->0], RectangleBox[{0.436, 0}, {0.438, 7046.},
RoundingRadius->0], RectangleBox[{0.438, 0}, {0.44, 7165.},
RoundingRadius->0], RectangleBox[{0.44, 0}, {0.442, 7112.},
RoundingRadius->0], RectangleBox[{0.442, 0}, {0.444, 7060.},
RoundingRadius->0], RectangleBox[{0.444, 0}, {0.446, 7073.},
RoundingRadius->0], RectangleBox[{0.446, 0}, {0.448, 6974.},
RoundingRadius->0], RectangleBox[{0.448, 0}, {0.45, 7122.},
RoundingRadius->0], RectangleBox[{0.45, 0}, {0.452, 7293.},
RoundingRadius->0], RectangleBox[{0.452, 0}, {0.454, 7101.},