bsplot 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. bsplot/__init__.py +23 -0
  2. bsplot/anat.py +55 -0
  3. bsplot/animate.py +194 -0
  4. bsplot/bioicons.py +777 -0
  5. bsplot/brain.py +188 -0
  6. bsplot/colors.py +1935 -0
  7. bsplot/data/HCP_avg-SC.txt +379 -0
  8. bsplot/data/MNI152.rh.pial +0 -0
  9. bsplot/data/STN_lh.nii.gz +0 -0
  10. bsplot/data/STN_rh.nii.gz +0 -0
  11. bsplot/data/__init__.py +22 -0
  12. bsplot/data/left_electrode.ply +257270 -0
  13. bsplot/data/parcellations/HCP-MMP1.L.label.gii +442 -0
  14. bsplot/data/parcellations/HCP-MMP1.R.label.gii +442 -0
  15. bsplot/data/parcellations/code/split_hcpmmp1.sh +4 -0
  16. bsplot/data/right_electrode.ply +257270 -0
  17. bsplot/data/surface.py +112 -0
  18. bsplot/data/tpl-MNI152NLin2009b_atlas-hcpmmp1_desc-ordered_dseg.nii.gz +0 -0
  19. bsplot/figure.py +177 -0
  20. bsplot/graph/__init__.py +31 -0
  21. bsplot/graph/edges.py +312 -0
  22. bsplot/graph/flowchart.py +762 -0
  23. bsplot/graph/layout.py +201 -0
  24. bsplot/graph/network.py +974 -0
  25. bsplot/graph/nodes.py +452 -0
  26. bsplot/panels.py +110 -0
  27. bsplot/scientific_color_maps/__init__.py +0 -0
  28. bsplot/scientific_color_maps/_sync_from_zenodo_download.sh +1 -0
  29. bsplot/scientific_color_maps/batlowK.txt +256 -0
  30. bsplot/scientific_color_maps/batlowW.txt +256 -0
  31. bsplot/scientific_color_maps/cyclic/bamO.txt +256 -0
  32. bsplot/scientific_color_maps/cyclic/brocO.txt +256 -0
  33. bsplot/scientific_color_maps/cyclic/corkO.txt +256 -0
  34. bsplot/scientific_color_maps/cyclic/romaO.txt +256 -0
  35. bsplot/scientific_color_maps/cyclic/vikO.txt +256 -0
  36. bsplot/scientific_color_maps/diverging/bam.txt +256 -0
  37. bsplot/scientific_color_maps/diverging/berlin.txt +256 -0
  38. bsplot/scientific_color_maps/diverging/broc.txt +256 -0
  39. bsplot/scientific_color_maps/diverging/cork.txt +256 -0
  40. bsplot/scientific_color_maps/diverging/lisbon.txt +256 -0
  41. bsplot/scientific_color_maps/diverging/managua.txt +256 -0
  42. bsplot/scientific_color_maps/diverging/roma.txt +256 -0
  43. bsplot/scientific_color_maps/diverging/tofino.txt +256 -0
  44. bsplot/scientific_color_maps/diverging/vanimo.txt +256 -0
  45. bsplot/scientific_color_maps/diverging/vik.txt +256 -0
  46. bsplot/scientific_color_maps/multisequential/bukavu.txt +256 -0
  47. bsplot/scientific_color_maps/multisequential/fes.txt +256 -0
  48. bsplot/scientific_color_maps/multisequential/oleron.txt +256 -0
  49. bsplot/scientific_color_maps/naviaW.txt +256 -0
  50. bsplot/scientific_color_maps/sequential/acton.txt +256 -0
  51. bsplot/scientific_color_maps/sequential/bamako.txt +256 -0
  52. bsplot/scientific_color_maps/sequential/batlow.txt +256 -0
  53. bsplot/scientific_color_maps/sequential/bilbao.txt +256 -0
  54. bsplot/scientific_color_maps/sequential/buda.txt +256 -0
  55. bsplot/scientific_color_maps/sequential/davos.txt +256 -0
  56. bsplot/scientific_color_maps/sequential/devon.txt +256 -0
  57. bsplot/scientific_color_maps/sequential/glasgow.txt +256 -0
  58. bsplot/scientific_color_maps/sequential/grayC.txt +256 -0
  59. bsplot/scientific_color_maps/sequential/hawaii.txt +256 -0
  60. bsplot/scientific_color_maps/sequential/imola.txt +256 -0
  61. bsplot/scientific_color_maps/sequential/lajolla.txt +256 -0
  62. bsplot/scientific_color_maps/sequential/lapaz.txt +256 -0
  63. bsplot/scientific_color_maps/sequential/lipari.txt +256 -0
  64. bsplot/scientific_color_maps/sequential/navia.txt +256 -0
  65. bsplot/scientific_color_maps/sequential/nuuk.txt +256 -0
  66. bsplot/scientific_color_maps/sequential/oslo.txt +256 -0
  67. bsplot/scientific_color_maps/sequential/tokyo.txt +256 -0
  68. bsplot/scientific_color_maps/sequential/turku.txt +256 -0
  69. bsplot/streamlines.py +314 -0
  70. bsplot/style.py +791 -0
  71. bsplot/styles/black.mplstyle +78 -0
  72. bsplot/styles/bss.mplstyle +50 -0
  73. bsplot/styles/bwcomp.mplstyle +30 -0
  74. bsplot/styles/nature.mplstyle +57 -0
  75. bsplot/styles/transparent.mplstyle +16 -0
  76. bsplot/styles/tvbo.mplstyle +57 -0
  77. bsplot/surface.py +2370 -0
  78. bsplot/templates.py +270 -0
  79. bsplot/text.py +199 -0
  80. bsplot/text2obj.py +59 -0
  81. bsplot/timeseries.py +10 -0
  82. bsplot/utils.py +13 -0
  83. bsplot/volume.py +958 -0
  84. bsplot-0.0.2.dist-info/METADATA +60 -0
  85. bsplot-0.0.2.dist-info/RECORD +89 -0
  86. bsplot-0.0.2.dist-info/WHEEL +5 -0
  87. bsplot-0.0.2.dist-info/entry_points.txt +2 -0
  88. bsplot-0.0.2.dist-info/licenses/LICENSE +193 -0
  89. bsplot-0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,256 @@
1
+ 0.309457 0.186351 0.263735
2
+ 0.314190 0.186088 0.268799
3
+ 0.319432 0.186148 0.274282
4
+ 0.325147 0.186551 0.280197
5
+ 0.331347 0.187352 0.286518
6
+ 0.338005 0.188507 0.293233
7
+ 0.345086 0.190024 0.300292
8
+ 0.352539 0.191933 0.307655
9
+ 0.360321 0.194241 0.315302
10
+ 0.368411 0.196871 0.323164
11
+ 0.376730 0.199805 0.331181
12
+ 0.385222 0.203117 0.339369
13
+ 0.393875 0.206732 0.347622
14
+ 0.402626 0.210573 0.355935
15
+ 0.411441 0.214681 0.364258
16
+ 0.420286 0.219033 0.372586
17
+ 0.429134 0.223572 0.380903
18
+ 0.437964 0.228309 0.389157
19
+ 0.446738 0.233164 0.397348
20
+ 0.455461 0.238202 0.405482
21
+ 0.464119 0.243348 0.413527
22
+ 0.472679 0.248640 0.421480
23
+ 0.481156 0.253994 0.429358
24
+ 0.489540 0.259448 0.437141
25
+ 0.497841 0.264947 0.444823
26
+ 0.506004 0.270557 0.452410
27
+ 0.514091 0.276200 0.459886
28
+ 0.522042 0.281881 0.467281
29
+ 0.529905 0.287597 0.474571
30
+ 0.537651 0.293365 0.481760
31
+ 0.545277 0.299176 0.488851
32
+ 0.552791 0.304992 0.495845
33
+ 0.560199 0.310841 0.502746
34
+ 0.567489 0.316690 0.509557
35
+ 0.574660 0.322565 0.516263
36
+ 0.581731 0.328438 0.522891
37
+ 0.588687 0.334334 0.529423
38
+ 0.595544 0.340226 0.535855
39
+ 0.602293 0.346118 0.542217
40
+ 0.608951 0.352036 0.548501
41
+ 0.615498 0.357980 0.554700
42
+ 0.621966 0.363917 0.560834
43
+ 0.628369 0.369891 0.566920
44
+ 0.634692 0.375904 0.572950
45
+ 0.640951 0.381949 0.578936
46
+ 0.647171 0.388053 0.584897
47
+ 0.653341 0.394218 0.590830
48
+ 0.659489 0.400467 0.596762
49
+ 0.665608 0.406776 0.602679
50
+ 0.671704 0.413186 0.608608
51
+ 0.677792 0.419683 0.614521
52
+ 0.683851 0.426271 0.620464
53
+ 0.689908 0.432978 0.626396
54
+ 0.695947 0.439783 0.632345
55
+ 0.701958 0.446693 0.638296
56
+ 0.707959 0.453708 0.644247
57
+ 0.713931 0.460832 0.650207
58
+ 0.719877 0.468066 0.656163
59
+ 0.725788 0.475416 0.662108
60
+ 0.731652 0.482851 0.668038
61
+ 0.737474 0.490405 0.673946
62
+ 0.743249 0.498060 0.679830
63
+ 0.748955 0.505788 0.685695
64
+ 0.754607 0.513643 0.691513
65
+ 0.760174 0.521567 0.697287
66
+ 0.765668 0.529594 0.703014
67
+ 0.771068 0.537694 0.708676
68
+ 0.776369 0.545865 0.714257
69
+ 0.781564 0.554099 0.719769
70
+ 0.786644 0.562400 0.725186
71
+ 0.791589 0.570729 0.730493
72
+ 0.796402 0.579113 0.735686
73
+ 0.801073 0.587505 0.740754
74
+ 0.805585 0.595916 0.745683
75
+ 0.809934 0.604323 0.750461
76
+ 0.814105 0.612691 0.755072
77
+ 0.818092 0.621032 0.759494
78
+ 0.821892 0.629302 0.763733
79
+ 0.825481 0.637498 0.767765
80
+ 0.828871 0.645585 0.771589
81
+ 0.832042 0.653555 0.775175
82
+ 0.834992 0.661385 0.778533
83
+ 0.837725 0.669049 0.781650
84
+ 0.840232 0.676532 0.784516
85
+ 0.842516 0.683811 0.787127
86
+ 0.844575 0.690881 0.789484
87
+ 0.846414 0.697729 0.791584
88
+ 0.848043 0.704340 0.793438
89
+ 0.849467 0.710707 0.795034
90
+ 0.850679 0.716823 0.796387
91
+ 0.851704 0.722675 0.797505
92
+ 0.852545 0.728280 0.798393
93
+ 0.853199 0.733631 0.799060
94
+ 0.853688 0.738726 0.799513
95
+ 0.854021 0.743569 0.799761
96
+ 0.854204 0.748167 0.799816
97
+ 0.854245 0.752516 0.799688
98
+ 0.854154 0.756640 0.799388
99
+ 0.853939 0.760534 0.798923
100
+ 0.853609 0.764202 0.798306
101
+ 0.853176 0.767656 0.797549
102
+ 0.852646 0.770911 0.796660
103
+ 0.852019 0.773955 0.795651
104
+ 0.851302 0.776821 0.794530
105
+ 0.850515 0.779490 0.793304
106
+ 0.849658 0.781993 0.791974
107
+ 0.848729 0.784323 0.790560
108
+ 0.847737 0.786491 0.789068
109
+ 0.846690 0.788501 0.787492
110
+ 0.845591 0.790366 0.785849
111
+ 0.844440 0.792095 0.784137
112
+ 0.843235 0.793698 0.782352
113
+ 0.841984 0.795166 0.780500
114
+ 0.840675 0.796520 0.778580
115
+ 0.839311 0.797767 0.776588
116
+ 0.837888 0.798912 0.774506
117
+ 0.836394 0.799954 0.772342
118
+ 0.834828 0.800895 0.770075
119
+ 0.833175 0.801744 0.767693
120
+ 0.831433 0.802498 0.765192
121
+ 0.829579 0.803158 0.762536
122
+ 0.827601 0.803719 0.759724
123
+ 0.825493 0.804175 0.756737
124
+ 0.823236 0.804516 0.753547
125
+ 0.820811 0.804733 0.750140
126
+ 0.818203 0.804815 0.746495
127
+ 0.815400 0.804750 0.742593
128
+ 0.812374 0.804519 0.738402
129
+ 0.809118 0.804104 0.733915
130
+ 0.805596 0.803483 0.729101
131
+ 0.801807 0.802638 0.723944
132
+ 0.797724 0.801546 0.718424
133
+ 0.793335 0.800185 0.712521
134
+ 0.788609 0.798521 0.706228
135
+ 0.783540 0.796535 0.699512
136
+ 0.778115 0.794213 0.692391
137
+ 0.772325 0.791515 0.684832
138
+ 0.766170 0.788440 0.676869
139
+ 0.759644 0.784968 0.668493
140
+ 0.752768 0.781087 0.659733
141
+ 0.745556 0.776805 0.650619
142
+ 0.738026 0.772114 0.641182
143
+ 0.730218 0.767033 0.631484
144
+ 0.722150 0.761582 0.621553
145
+ 0.713884 0.755784 0.611465
146
+ 0.705448 0.749656 0.601256
147
+ 0.696889 0.743254 0.590995
148
+ 0.688251 0.736583 0.580733
149
+ 0.679563 0.729701 0.570512
150
+ 0.670885 0.722623 0.560391
151
+ 0.662229 0.715405 0.550391
152
+ 0.653620 0.708054 0.540550
153
+ 0.645096 0.700613 0.530895
154
+ 0.636681 0.693104 0.521440
155
+ 0.628372 0.685545 0.512209
156
+ 0.620190 0.677960 0.503201
157
+ 0.612134 0.670367 0.494446
158
+ 0.604236 0.662773 0.485909
159
+ 0.596470 0.655190 0.477623
160
+ 0.588849 0.647642 0.469583
161
+ 0.581389 0.640134 0.461762
162
+ 0.574072 0.632660 0.454181
163
+ 0.566912 0.625236 0.446824
164
+ 0.559891 0.617867 0.439693
165
+ 0.553007 0.610561 0.432781
166
+ 0.546284 0.603315 0.426069
167
+ 0.539679 0.596130 0.419580
168
+ 0.533226 0.589010 0.413282
169
+ 0.526914 0.581968 0.407172
170
+ 0.520717 0.574994 0.401260
171
+ 0.514663 0.568095 0.395525
172
+ 0.508732 0.561267 0.389953
173
+ 0.502908 0.554517 0.384566
174
+ 0.497226 0.547836 0.379344
175
+ 0.491659 0.541225 0.374286
176
+ 0.486187 0.534698 0.369365
177
+ 0.480833 0.528236 0.364595
178
+ 0.475599 0.521837 0.359972
179
+ 0.470450 0.515513 0.355492
180
+ 0.465388 0.509258 0.351122
181
+ 0.460424 0.503042 0.346875
182
+ 0.455552 0.496890 0.342745
183
+ 0.450746 0.490791 0.338706
184
+ 0.445999 0.484700 0.334785
185
+ 0.441325 0.478657 0.330917
186
+ 0.436703 0.472631 0.327155
187
+ 0.432131 0.466622 0.323474
188
+ 0.427591 0.460610 0.319862
189
+ 0.423078 0.454627 0.316310
190
+ 0.418617 0.448629 0.312805
191
+ 0.414194 0.442636 0.309395
192
+ 0.409806 0.436642 0.306024
193
+ 0.405446 0.430653 0.302685
194
+ 0.401128 0.424671 0.299449
195
+ 0.396828 0.418692 0.296246
196
+ 0.392591 0.412747 0.293104
197
+ 0.388398 0.406798 0.290030
198
+ 0.384244 0.400893 0.287014
199
+ 0.380149 0.394994 0.284074
200
+ 0.376111 0.389146 0.281188
201
+ 0.372115 0.383336 0.278389
202
+ 0.368203 0.377566 0.275657
203
+ 0.364344 0.371847 0.272969
204
+ 0.360555 0.366209 0.270382
205
+ 0.356867 0.360604 0.267825
206
+ 0.353231 0.355114 0.265390
207
+ 0.349687 0.349667 0.263026
208
+ 0.346217 0.344303 0.260727
209
+ 0.342866 0.339056 0.258511
210
+ 0.339591 0.333887 0.256373
211
+ 0.336394 0.328820 0.254342
212
+ 0.333326 0.323846 0.252370
213
+ 0.330337 0.318997 0.250471
214
+ 0.327452 0.314252 0.248696
215
+ 0.324674 0.309640 0.246965
216
+ 0.322009 0.305123 0.245320
217
+ 0.319444 0.300716 0.243769
218
+ 0.316977 0.296450 0.242309
219
+ 0.314604 0.292283 0.240914
220
+ 0.312334 0.288227 0.239613
221
+ 0.310193 0.284282 0.238366
222
+ 0.308103 0.280435 0.237234
223
+ 0.306142 0.276712 0.236133
224
+ 0.304230 0.273054 0.235121
225
+ 0.302414 0.269494 0.234152
226
+ 0.300692 0.265998 0.233248
227
+ 0.299059 0.262568 0.232447
228
+ 0.297484 0.259220 0.231704
229
+ 0.295982 0.255894 0.231002
230
+ 0.294554 0.252650 0.230358
231
+ 0.293206 0.249426 0.229791
232
+ 0.291941 0.246247 0.229311
233
+ 0.290731 0.243100 0.228903
234
+ 0.289612 0.239988 0.228559
235
+ 0.288564 0.236926 0.228286
236
+ 0.287595 0.233831 0.228094
237
+ 0.286723 0.230801 0.227991
238
+ 0.285950 0.227796 0.227986
239
+ 0.285287 0.224780 0.228086
240
+ 0.284740 0.221841 0.228300
241
+ 0.284320 0.218938 0.228635
242
+ 0.284039 0.216081 0.229092
243
+ 0.283909 0.213228 0.229688
244
+ 0.283947 0.210480 0.230472
245
+ 0.284167 0.207793 0.231448
246
+ 0.284590 0.205176 0.232578
247
+ 0.285235 0.202653 0.233925
248
+ 0.286126 0.200228 0.235529
249
+ 0.287291 0.197952 0.237369
250
+ 0.288761 0.195806 0.239455
251
+ 0.290526 0.193826 0.241856
252
+ 0.292654 0.191986 0.244552
253
+ 0.295152 0.190366 0.247637
254
+ 0.298053 0.188977 0.251062
255
+ 0.301386 0.187848 0.254882
256
+ 0.305190 0.186937 0.259096
@@ -0,0 +1,256 @@
1
+ 0.214288 0.184671 0.218215
2
+ 0.213695 0.184686 0.222453
3
+ 0.213149 0.184867 0.226854
4
+ 0.212682 0.185221 0.231411
5
+ 0.212275 0.185739 0.236117
6
+ 0.211909 0.186402 0.240966
7
+ 0.211587 0.187276 0.245990
8
+ 0.211313 0.188325 0.251199
9
+ 0.211092 0.189532 0.256531
10
+ 0.210924 0.190941 0.262046
11
+ 0.210809 0.192553 0.267699
12
+ 0.210745 0.194382 0.273559
13
+ 0.210735 0.196375 0.279552
14
+ 0.210780 0.198545 0.285678
15
+ 0.210881 0.200940 0.292001
16
+ 0.211040 0.203579 0.298451
17
+ 0.211262 0.206410 0.305070
18
+ 0.211550 0.209404 0.311806
19
+ 0.211903 0.212636 0.318715
20
+ 0.212315 0.216096 0.325732
21
+ 0.212791 0.219730 0.332910
22
+ 0.213362 0.223574 0.340178
23
+ 0.214039 0.227633 0.347568
24
+ 0.214773 0.231893 0.355065
25
+ 0.215634 0.236340 0.362634
26
+ 0.216596 0.240963 0.370298
27
+ 0.217645 0.245787 0.378044
28
+ 0.218824 0.250808 0.385842
29
+ 0.220136 0.255983 0.393704
30
+ 0.221557 0.261345 0.401601
31
+ 0.223144 0.266852 0.409534
32
+ 0.224833 0.272515 0.417482
33
+ 0.226739 0.278341 0.425432
34
+ 0.228780 0.284278 0.433373
35
+ 0.230975 0.290351 0.441310
36
+ 0.233330 0.296562 0.449225
37
+ 0.235914 0.302853 0.457093
38
+ 0.238630 0.309288 0.464928
39
+ 0.241573 0.315787 0.472705
40
+ 0.244665 0.322371 0.480427
41
+ 0.248003 0.329040 0.488089
42
+ 0.251502 0.335767 0.495662
43
+ 0.255197 0.342569 0.503161
44
+ 0.259085 0.349413 0.510587
45
+ 0.263163 0.356314 0.517929
46
+ 0.267410 0.363242 0.525169
47
+ 0.271874 0.370215 0.532323
48
+ 0.276548 0.377227 0.539372
49
+ 0.281362 0.384248 0.546343
50
+ 0.286364 0.391305 0.553195
51
+ 0.291568 0.398364 0.559971
52
+ 0.296919 0.405438 0.566641
53
+ 0.302413 0.412524 0.573215
54
+ 0.308091 0.419606 0.579696
55
+ 0.313927 0.426689 0.586079
56
+ 0.319904 0.433767 0.592376
57
+ 0.325999 0.440853 0.598570
58
+ 0.332269 0.447931 0.604691
59
+ 0.338637 0.455015 0.610720
60
+ 0.345144 0.462072 0.616668
61
+ 0.351758 0.469135 0.622528
62
+ 0.358495 0.476172 0.628321
63
+ 0.365342 0.483199 0.634032
64
+ 0.372284 0.490224 0.639667
65
+ 0.379333 0.497233 0.645226
66
+ 0.386464 0.504232 0.650726
67
+ 0.393695 0.511201 0.656160
68
+ 0.401019 0.518174 0.661521
69
+ 0.408397 0.525122 0.666815
70
+ 0.415861 0.532060 0.672059
71
+ 0.423392 0.538981 0.677242
72
+ 0.431005 0.545890 0.682354
73
+ 0.438662 0.552773 0.687419
74
+ 0.446390 0.559650 0.692431
75
+ 0.454175 0.566507 0.697372
76
+ 0.462005 0.573347 0.702265
77
+ 0.469892 0.580171 0.707107
78
+ 0.477810 0.586969 0.711888
79
+ 0.485774 0.593758 0.716617
80
+ 0.493783 0.600522 0.721277
81
+ 0.501828 0.607276 0.725894
82
+ 0.509894 0.613989 0.730443
83
+ 0.517999 0.620702 0.734933
84
+ 0.526123 0.627375 0.739362
85
+ 0.534261 0.634033 0.743716
86
+ 0.542428 0.640654 0.748008
87
+ 0.550601 0.647253 0.752222
88
+ 0.558779 0.653818 0.756366
89
+ 0.566980 0.660350 0.760430
90
+ 0.575165 0.666846 0.764407
91
+ 0.583352 0.673311 0.768293
92
+ 0.591538 0.679723 0.772093
93
+ 0.599707 0.686102 0.775787
94
+ 0.607860 0.692432 0.779376
95
+ 0.615981 0.698695 0.782852
96
+ 0.624083 0.704914 0.786214
97
+ 0.632141 0.711072 0.789441
98
+ 0.640162 0.717162 0.792534
99
+ 0.648124 0.723169 0.795482
100
+ 0.656045 0.729109 0.798280
101
+ 0.663891 0.734966 0.800917
102
+ 0.671658 0.740723 0.803381
103
+ 0.679346 0.746389 0.805665
104
+ 0.686947 0.751950 0.807761
105
+ 0.694436 0.757392 0.809654
106
+ 0.701818 0.762712 0.811334
107
+ 0.709084 0.767902 0.812788
108
+ 0.716205 0.772954 0.814013
109
+ 0.723169 0.777860 0.814994
110
+ 0.729986 0.782599 0.815723
111
+ 0.736619 0.787174 0.816185
112
+ 0.743074 0.791562 0.816371
113
+ 0.749315 0.795762 0.816272
114
+ 0.755356 0.799768 0.815878
115
+ 0.761161 0.803551 0.815178
116
+ 0.766723 0.807121 0.814170
117
+ 0.772035 0.810449 0.812844
118
+ 0.777079 0.813541 0.811199
119
+ 0.781835 0.816386 0.809222
120
+ 0.786299 0.818958 0.806910
121
+ 0.790451 0.821270 0.804260
122
+ 0.794295 0.823300 0.801270
123
+ 0.797801 0.825043 0.797944
124
+ 0.800975 0.826499 0.794284
125
+ 0.803804 0.827651 0.790280
126
+ 0.806279 0.828506 0.785951
127
+ 0.808393 0.829055 0.781290
128
+ 0.810139 0.829292 0.776308
129
+ 0.811525 0.829218 0.771013
130
+ 0.812534 0.828831 0.765411
131
+ 0.813174 0.828128 0.759505
132
+ 0.813444 0.827123 0.753321
133
+ 0.813345 0.825804 0.746865
134
+ 0.812880 0.824182 0.740146
135
+ 0.812055 0.822264 0.733173
136
+ 0.810870 0.820039 0.725967
137
+ 0.809340 0.817532 0.718533
138
+ 0.807461 0.814739 0.710900
139
+ 0.805245 0.811672 0.703069
140
+ 0.802707 0.808333 0.695055
141
+ 0.799858 0.804733 0.686882
142
+ 0.796690 0.800880 0.678558
143
+ 0.793240 0.796781 0.670105
144
+ 0.789498 0.792453 0.661521
145
+ 0.785485 0.787895 0.652825
146
+ 0.781209 0.783124 0.644044
147
+ 0.776687 0.778148 0.635183
148
+ 0.771923 0.772970 0.626251
149
+ 0.766932 0.767608 0.617264
150
+ 0.761729 0.762068 0.608237
151
+ 0.756327 0.756363 0.599168
152
+ 0.750735 0.750498 0.590071
153
+ 0.744955 0.744478 0.580973
154
+ 0.739016 0.738318 0.571868
155
+ 0.732912 0.732032 0.562775
156
+ 0.726659 0.725618 0.553681
157
+ 0.720272 0.719083 0.544622
158
+ 0.713758 0.712439 0.535583
159
+ 0.707126 0.705703 0.526599
160
+ 0.700384 0.698867 0.517644
161
+ 0.693541 0.691955 0.508741
162
+ 0.686609 0.684954 0.499879
163
+ 0.679589 0.677888 0.491108
164
+ 0.672506 0.670753 0.482376
165
+ 0.665342 0.663559 0.473713
166
+ 0.658125 0.656309 0.465135
167
+ 0.650849 0.649010 0.456633
168
+ 0.643524 0.641664 0.448210
169
+ 0.636168 0.634294 0.439875
170
+ 0.628770 0.626876 0.431630
171
+ 0.621338 0.619444 0.423451
172
+ 0.613883 0.611973 0.415385
173
+ 0.606417 0.604497 0.407407
174
+ 0.598935 0.596998 0.399516
175
+ 0.591441 0.589479 0.391743
176
+ 0.583939 0.581964 0.384054
177
+ 0.576450 0.574439 0.376478
178
+ 0.568941 0.566926 0.368990
179
+ 0.561455 0.559400 0.361608
180
+ 0.553976 0.551887 0.354329
181
+ 0.546517 0.544374 0.347166
182
+ 0.539065 0.536882 0.340097
183
+ 0.531638 0.529394 0.333143
184
+ 0.524235 0.521910 0.326273
185
+ 0.516862 0.514470 0.319546
186
+ 0.509514 0.507032 0.312909
187
+ 0.502202 0.499616 0.306407
188
+ 0.494928 0.492238 0.299989
189
+ 0.487693 0.484876 0.293693
190
+ 0.480488 0.477553 0.287517
191
+ 0.473329 0.470263 0.281467
192
+ 0.466230 0.462988 0.275548
193
+ 0.459182 0.455771 0.269729
194
+ 0.452184 0.448589 0.264037
195
+ 0.445229 0.441440 0.258452
196
+ 0.438343 0.434332 0.253020
197
+ 0.431524 0.427286 0.247714
198
+ 0.424758 0.420268 0.242515
199
+ 0.418057 0.413316 0.237495
200
+ 0.411436 0.406411 0.232564
201
+ 0.404885 0.399549 0.227802
202
+ 0.398421 0.392767 0.223173
203
+ 0.392028 0.386034 0.218681
204
+ 0.385714 0.379378 0.214340
205
+ 0.379500 0.372780 0.210145
206
+ 0.373370 0.366268 0.206131
207
+ 0.367330 0.359811 0.202215
208
+ 0.361397 0.353436 0.198491
209
+ 0.355569 0.347155 0.194948
210
+ 0.349826 0.340939 0.191528
211
+ 0.344184 0.334828 0.188318
212
+ 0.338673 0.328788 0.185248
213
+ 0.333275 0.322851 0.182308
214
+ 0.327972 0.317001 0.179590
215
+ 0.322810 0.311258 0.177038
216
+ 0.317747 0.305630 0.174661
217
+ 0.312810 0.300081 0.172428
218
+ 0.308003 0.294651 0.170401
219
+ 0.303324 0.289354 0.168539
220
+ 0.298785 0.284143 0.166869
221
+ 0.294356 0.279078 0.165316
222
+ 0.290069 0.274109 0.164035
223
+ 0.285909 0.269282 0.162862
224
+ 0.281907 0.264551 0.161889
225
+ 0.278016 0.259970 0.161067
226
+ 0.274256 0.255509 0.160391
227
+ 0.270650 0.251184 0.159919
228
+ 0.267133 0.246970 0.159629
229
+ 0.263805 0.242893 0.159504
230
+ 0.260565 0.238964 0.159540
231
+ 0.257468 0.235186 0.159734
232
+ 0.254513 0.231516 0.160093
233
+ 0.251672 0.227982 0.160636
234
+ 0.248950 0.224552 0.161358
235
+ 0.246339 0.221324 0.162193
236
+ 0.243857 0.218198 0.163189
237
+ 0.241520 0.215196 0.164343
238
+ 0.239271 0.212365 0.165602
239
+ 0.237158 0.209641 0.167100
240
+ 0.235131 0.207081 0.168693
241
+ 0.233177 0.204640 0.170438
242
+ 0.231389 0.202315 0.172326
243
+ 0.229641 0.200139 0.174387
244
+ 0.228049 0.198124 0.176551
245
+ 0.226519 0.196258 0.178908
246
+ 0.225052 0.194515 0.181361
247
+ 0.223711 0.192878 0.183994
248
+ 0.222445 0.191398 0.186762
249
+ 0.221263 0.190069 0.189672
250
+ 0.220154 0.188888 0.192726
251
+ 0.219106 0.187863 0.195928
252
+ 0.218138 0.186933 0.199251
253
+ 0.217241 0.186187 0.202752
254
+ 0.216423 0.185596 0.206423
255
+ 0.215641 0.185132 0.210182
256
+ 0.214918 0.184820 0.214128