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.016676 0.020805 0.040926
2
+ 0.020730 0.026845 0.050988
3
+ 0.024857 0.032994 0.060093
4
+ 0.029068 0.039446 0.068308
5
+ 0.033368 0.045525 0.075874
6
+ 0.037988 0.051323 0.083044
7
+ 0.042445 0.056896 0.089845
8
+ 0.046801 0.062188 0.096248
9
+ 0.050791 0.067321 0.102713
10
+ 0.054346 0.072297 0.109350
11
+ 0.057478 0.077174 0.116136
12
+ 0.060311 0.082090 0.123053
13
+ 0.062687 0.086805 0.130275
14
+ 0.064598 0.091497 0.137576
15
+ 0.066483 0.096035 0.145044
16
+ 0.068488 0.100766 0.152589
17
+ 0.070445 0.105643 0.160275
18
+ 0.072511 0.110663 0.168079
19
+ 0.074651 0.115786 0.175929
20
+ 0.076809 0.121000 0.183869
21
+ 0.079090 0.126414 0.191829
22
+ 0.081519 0.131910 0.199794
23
+ 0.083960 0.137520 0.207794
24
+ 0.086450 0.143196 0.215756
25
+ 0.089103 0.148960 0.223655
26
+ 0.091864 0.154815 0.231514
27
+ 0.094703 0.160735 0.239260
28
+ 0.097621 0.166730 0.246908
29
+ 0.100641 0.172726 0.254450
30
+ 0.103827 0.178795 0.261823
31
+ 0.107108 0.184867 0.269059
32
+ 0.110476 0.190934 0.276105
33
+ 0.113916 0.197039 0.282951
34
+ 0.117471 0.203096 0.289588
35
+ 0.121115 0.209147 0.296005
36
+ 0.124877 0.215159 0.302189
37
+ 0.128699 0.221162 0.308145
38
+ 0.132608 0.227080 0.313854
39
+ 0.136532 0.232929 0.319290
40
+ 0.140571 0.238725 0.324455
41
+ 0.144621 0.244435 0.329379
42
+ 0.148672 0.250064 0.334003
43
+ 0.152785 0.255619 0.338342
44
+ 0.156931 0.261056 0.342432
45
+ 0.161083 0.266391 0.346216
46
+ 0.165185 0.271594 0.349751
47
+ 0.169369 0.276719 0.353003
48
+ 0.173459 0.281698 0.355988
49
+ 0.177591 0.286546 0.358691
50
+ 0.181627 0.291307 0.361153
51
+ 0.185720 0.295907 0.363363
52
+ 0.189708 0.300392 0.365328
53
+ 0.193698 0.304757 0.367055
54
+ 0.197620 0.309004 0.368560
55
+ 0.201497 0.313095 0.369827
56
+ 0.205358 0.317078 0.370890
57
+ 0.209159 0.320942 0.371754
58
+ 0.212903 0.324666 0.372427
59
+ 0.216634 0.328293 0.372916
60
+ 0.220291 0.331796 0.373232
61
+ 0.223875 0.335205 0.373382
62
+ 0.227453 0.338472 0.373375
63
+ 0.230971 0.341661 0.373219
64
+ 0.234459 0.344741 0.372924
65
+ 0.237895 0.347739 0.372498
66
+ 0.241298 0.350646 0.371950
67
+ 0.244657 0.353454 0.371285
68
+ 0.248040 0.356207 0.370513
69
+ 0.251368 0.358865 0.369640
70
+ 0.254684 0.361484 0.368675
71
+ 0.257962 0.364028 0.367595
72
+ 0.261272 0.366537 0.366454
73
+ 0.264566 0.368986 0.365205
74
+ 0.267857 0.371384 0.363883
75
+ 0.271188 0.373770 0.362490
76
+ 0.274509 0.376117 0.361011
77
+ 0.277868 0.378431 0.359476
78
+ 0.281227 0.380740 0.357873
79
+ 0.284629 0.383023 0.356192
80
+ 0.288066 0.385286 0.354445
81
+ 0.291553 0.387555 0.352636
82
+ 0.295048 0.389818 0.350777
83
+ 0.298606 0.392087 0.348841
84
+ 0.302196 0.394351 0.346861
85
+ 0.305869 0.396620 0.344815
86
+ 0.309563 0.398901 0.342731
87
+ 0.313300 0.401202 0.340581
88
+ 0.317096 0.403501 0.338378
89
+ 0.320954 0.405818 0.336139
90
+ 0.324845 0.408138 0.333865
91
+ 0.328820 0.410492 0.331523
92
+ 0.332840 0.412852 0.329175
93
+ 0.336899 0.415220 0.326750
94
+ 0.341025 0.417621 0.324312
95
+ 0.345204 0.420032 0.321843
96
+ 0.349441 0.422455 0.319347
97
+ 0.353725 0.424919 0.316817
98
+ 0.358083 0.427393 0.314257
99
+ 0.362484 0.429877 0.311671
100
+ 0.366948 0.432395 0.309099
101
+ 0.371460 0.434921 0.306479
102
+ 0.376052 0.437473 0.303829
103
+ 0.380694 0.440037 0.301181
104
+ 0.385381 0.442632 0.298528
105
+ 0.390145 0.445236 0.295862
106
+ 0.394979 0.447862 0.293185
107
+ 0.399865 0.450524 0.290503
108
+ 0.404825 0.453196 0.287821
109
+ 0.409865 0.455890 0.285134
110
+ 0.414956 0.458607 0.282476
111
+ 0.420126 0.461346 0.279789
112
+ 0.425373 0.464110 0.277116
113
+ 0.430690 0.466885 0.274441
114
+ 0.436086 0.469688 0.271776
115
+ 0.441559 0.472499 0.269167
116
+ 0.447107 0.475345 0.266532
117
+ 0.452752 0.478193 0.263941
118
+ 0.458462 0.481065 0.261348
119
+ 0.464277 0.483960 0.258802
120
+ 0.470163 0.486878 0.256263
121
+ 0.476139 0.489800 0.253791
122
+ 0.482209 0.492743 0.251350
123
+ 0.488370 0.495705 0.248939
124
+ 0.494624 0.498687 0.246567
125
+ 0.500968 0.501673 0.244253
126
+ 0.507407 0.504671 0.242024
127
+ 0.513948 0.507677 0.239837
128
+ 0.520571 0.510686 0.237742
129
+ 0.527304 0.513717 0.235706
130
+ 0.534121 0.516742 0.233730
131
+ 0.541040 0.519769 0.231899
132
+ 0.548059 0.522809 0.230107
133
+ 0.555158 0.525842 0.228488
134
+ 0.562366 0.528877 0.226942
135
+ 0.569640 0.531896 0.225527
136
+ 0.577021 0.534911 0.224227
137
+ 0.584476 0.537924 0.223121
138
+ 0.592021 0.540910 0.222121
139
+ 0.599635 0.543890 0.221315
140
+ 0.607329 0.546853 0.220680
141
+ 0.615078 0.549792 0.220207
142
+ 0.622908 0.552706 0.219927
143
+ 0.630795 0.555590 0.219851
144
+ 0.638727 0.558451 0.219989
145
+ 0.646714 0.561287 0.220349
146
+ 0.654734 0.564090 0.220932
147
+ 0.662803 0.566850 0.221721
148
+ 0.670890 0.569563 0.222792
149
+ 0.678993 0.572251 0.224070
150
+ 0.687116 0.574882 0.225646
151
+ 0.695241 0.577478 0.227455
152
+ 0.703364 0.580033 0.229505
153
+ 0.711476 0.582526 0.231864
154
+ 0.719564 0.584984 0.234456
155
+ 0.727620 0.587378 0.237320
156
+ 0.735641 0.589727 0.240398
157
+ 0.743621 0.592038 0.243777
158
+ 0.751545 0.594280 0.247429
159
+ 0.759394 0.596478 0.251322
160
+ 0.767180 0.598620 0.255447
161
+ 0.774885 0.600715 0.259821
162
+ 0.782505 0.602761 0.264424
163
+ 0.790025 0.604760 0.269275
164
+ 0.797441 0.606708 0.274317
165
+ 0.804750 0.608616 0.279601
166
+ 0.811939 0.610467 0.285058
167
+ 0.819001 0.612280 0.290739
168
+ 0.825939 0.614055 0.296610
169
+ 0.832738 0.615797 0.302634
170
+ 0.839401 0.617502 0.308870
171
+ 0.845911 0.619182 0.315228
172
+ 0.852283 0.620822 0.321749
173
+ 0.858490 0.622430 0.328424
174
+ 0.864549 0.624029 0.335239
175
+ 0.870443 0.625595 0.342158
176
+ 0.876183 0.627148 0.349201
177
+ 0.881759 0.628691 0.356360
178
+ 0.887168 0.630217 0.363605
179
+ 0.892416 0.631734 0.370951
180
+ 0.897497 0.633246 0.378392
181
+ 0.902410 0.634755 0.385897
182
+ 0.907162 0.636265 0.393484
183
+ 0.911746 0.637771 0.401142
184
+ 0.916166 0.639285 0.408837
185
+ 0.920427 0.640803 0.416594
186
+ 0.924528 0.642336 0.424388
187
+ 0.928471 0.643870 0.432235
188
+ 0.932258 0.645422 0.440094
189
+ 0.935896 0.646994 0.447982
190
+ 0.939378 0.648573 0.455903
191
+ 0.942715 0.650173 0.463840
192
+ 0.945901 0.651792 0.471788
193
+ 0.948949 0.653420 0.479739
194
+ 0.951858 0.655074 0.487696
195
+ 0.954635 0.656758 0.495641
196
+ 0.957276 0.658450 0.503591
197
+ 0.959792 0.660168 0.511534
198
+ 0.962180 0.661914 0.519470
199
+ 0.964449 0.663675 0.527390
200
+ 0.966604 0.665454 0.535289
201
+ 0.968644 0.667261 0.543180
202
+ 0.970572 0.669090 0.551044
203
+ 0.972399 0.670941 0.558882
204
+ 0.974117 0.672815 0.566713
205
+ 0.975739 0.674704 0.574501
206
+ 0.977270 0.676622 0.582278
207
+ 0.978704 0.678555 0.590027
208
+ 0.980057 0.680508 0.597758
209
+ 0.981321 0.682490 0.605457
210
+ 0.982506 0.684487 0.613137
211
+ 0.983608 0.686511 0.620805
212
+ 0.984644 0.688555 0.628443
213
+ 0.985601 0.690608 0.636061
214
+ 0.986493 0.692700 0.643658
215
+ 0.987320 0.694792 0.651252
216
+ 0.988078 0.696918 0.658823
217
+ 0.988782 0.699059 0.666392
218
+ 0.989428 0.701226 0.673958
219
+ 0.990015 0.703415 0.681514
220
+ 0.990548 0.705621 0.689085
221
+ 0.991031 0.707850 0.696647
222
+ 0.991465 0.710106 0.704220
223
+ 0.991851 0.712378 0.711809
224
+ 0.992190 0.714678 0.719411
225
+ 0.992485 0.717011 0.727030
226
+ 0.992736 0.719357 0.734678
227
+ 0.992944 0.721725 0.742348
228
+ 0.993109 0.724127 0.750045
229
+ 0.993234 0.726554 0.757782
230
+ 0.993318 0.729004 0.765555
231
+ 0.993363 0.731482 0.773357
232
+ 0.993369 0.733990 0.781210
233
+ 0.993336 0.736518 0.789104
234
+ 0.993264 0.739084 0.797034
235
+ 0.993154 0.741661 0.805017
236
+ 0.993005 0.744274 0.813044
237
+ 0.992818 0.746912 0.821120
238
+ 0.992592 0.749568 0.829245
239
+ 0.992327 0.752258 0.837411
240
+ 0.992024 0.754973 0.845618
241
+ 0.991682 0.757702 0.853871
242
+ 0.991301 0.760457 0.862176
243
+ 0.990881 0.763229 0.870507
244
+ 0.990421 0.766027 0.878885
245
+ 0.989923 0.768835 0.887296
246
+ 0.989384 0.771671 0.895743
247
+ 0.988802 0.774511 0.904216
248
+ 0.988179 0.777377 0.912720
249
+ 0.987520 0.780244 0.921246
250
+ 0.986818 0.783128 0.929798
251
+ 0.986072 0.786027 0.938370
252
+ 0.985285 0.788931 0.946960
253
+ 0.984458 0.791839 0.955569
254
+ 0.983582 0.794760 0.964184
255
+ 0.982670 0.797684 0.972824
256
+ 0.981712 0.800618 0.981469
@@ -0,0 +1,256 @@
1
+ 0.004637 0.098343 0.349833
2
+ 0.008580 0.104559 0.350923
3
+ 0.012565 0.110825 0.351981
4
+ 0.016171 0.116932 0.353057
5
+ 0.019623 0.122982 0.354106
6
+ 0.022916 0.129014 0.355168
7
+ 0.026056 0.135014 0.356195
8
+ 0.029046 0.140931 0.357225
9
+ 0.031891 0.146753 0.358229
10
+ 0.034696 0.152562 0.359228
11
+ 0.037367 0.158357 0.360219
12
+ 0.039804 0.164072 0.361200
13
+ 0.042104 0.169711 0.362175
14
+ 0.044107 0.175274 0.363120
15
+ 0.045968 0.180761 0.364057
16
+ 0.047742 0.186205 0.364976
17
+ 0.049465 0.191514 0.365883
18
+ 0.050890 0.196766 0.366763
19
+ 0.052254 0.201845 0.367610
20
+ 0.053547 0.206876 0.368458
21
+ 0.054774 0.211752 0.369266
22
+ 0.055952 0.216510 0.370049
23
+ 0.057021 0.221141 0.370813
24
+ 0.057975 0.225648 0.371557
25
+ 0.059056 0.230019 0.372281
26
+ 0.060029 0.234335 0.372984
27
+ 0.060869 0.238500 0.373673
28
+ 0.061774 0.242593 0.374342
29
+ 0.062771 0.246598 0.374979
30
+ 0.063628 0.250519 0.375608
31
+ 0.064516 0.254395 0.376235
32
+ 0.065420 0.258168 0.376837
33
+ 0.066347 0.261923 0.377420
34
+ 0.067303 0.265626 0.377994
35
+ 0.068289 0.269301 0.378559
36
+ 0.069324 0.272923 0.379112
37
+ 0.070259 0.276546 0.379654
38
+ 0.071367 0.280126 0.380186
39
+ 0.072397 0.283712 0.380708
40
+ 0.073609 0.287275 0.381213
41
+ 0.074722 0.290850 0.381694
42
+ 0.075923 0.294401 0.382160
43
+ 0.077185 0.297955 0.382618
44
+ 0.078521 0.301501 0.383059
45
+ 0.079937 0.305058 0.383472
46
+ 0.081445 0.308597 0.383855
47
+ 0.082923 0.312102 0.384210
48
+ 0.084562 0.315645 0.384537
49
+ 0.086163 0.319146 0.384832
50
+ 0.087968 0.322650 0.385091
51
+ 0.089792 0.326111 0.385310
52
+ 0.091746 0.329599 0.385487
53
+ 0.093708 0.333047 0.385618
54
+ 0.095823 0.336461 0.385699
55
+ 0.098076 0.339885 0.385728
56
+ 0.100356 0.343272 0.385700
57
+ 0.102811 0.346633 0.385611
58
+ 0.105329 0.349979 0.385460
59
+ 0.107987 0.353292 0.385241
60
+ 0.110818 0.356590 0.384953
61
+ 0.113716 0.359846 0.384591
62
+ 0.116737 0.363076 0.384154
63
+ 0.119874 0.366291 0.383641
64
+ 0.123139 0.369454 0.383038
65
+ 0.126576 0.372589 0.382340
66
+ 0.130156 0.375698 0.381574
67
+ 0.133788 0.378770 0.380713
68
+ 0.137589 0.381805 0.379750
69
+ 0.141488 0.384800 0.378701
70
+ 0.145532 0.387762 0.377561
71
+ 0.149666 0.390693 0.376333
72
+ 0.153889 0.393575 0.374991
73
+ 0.158287 0.396424 0.373569
74
+ 0.162762 0.399230 0.372042
75
+ 0.167344 0.402003 0.370431
76
+ 0.172003 0.404743 0.368738
77
+ 0.176781 0.407449 0.366938
78
+ 0.181640 0.410124 0.365049
79
+ 0.186615 0.412757 0.363076
80
+ 0.191653 0.415346 0.361015
81
+ 0.196804 0.417914 0.358876
82
+ 0.201972 0.420449 0.356673
83
+ 0.207271 0.422956 0.354373
84
+ 0.212607 0.425450 0.351993
85
+ 0.218027 0.427911 0.349563
86
+ 0.223504 0.430345 0.347062
87
+ 0.229043 0.432764 0.344476
88
+ 0.234654 0.435164 0.341852
89
+ 0.240272 0.437545 0.339169
90
+ 0.245982 0.439903 0.336410
91
+ 0.251759 0.442260 0.333629
92
+ 0.257547 0.444599 0.330774
93
+ 0.263409 0.446918 0.327894
94
+ 0.269300 0.449242 0.324965
95
+ 0.275221 0.451550 0.322012
96
+ 0.281172 0.453849 0.319020
97
+ 0.287175 0.456145 0.316006
98
+ 0.293216 0.458438 0.312941
99
+ 0.299300 0.460720 0.309880
100
+ 0.305400 0.463000 0.306777
101
+ 0.311512 0.465284 0.303650
102
+ 0.317673 0.467571 0.300520
103
+ 0.323850 0.469853 0.297387
104
+ 0.330066 0.472127 0.294217
105
+ 0.336283 0.474399 0.291064
106
+ 0.342551 0.476670 0.287877
107
+ 0.348821 0.478945 0.284696
108
+ 0.355133 0.481216 0.281518
109
+ 0.361443 0.483493 0.278338
110
+ 0.367784 0.485773 0.275148
111
+ 0.374169 0.488065 0.271939
112
+ 0.380564 0.490346 0.268779
113
+ 0.386976 0.492625 0.265584
114
+ 0.393432 0.494929 0.262401
115
+ 0.399911 0.497226 0.259238
116
+ 0.406433 0.499522 0.256044
117
+ 0.412984 0.501846 0.252898
118
+ 0.419564 0.504170 0.249730
119
+ 0.426174 0.506490 0.246602
120
+ 0.432844 0.508841 0.243475
121
+ 0.439544 0.511184 0.240371
122
+ 0.446292 0.513556 0.237334
123
+ 0.453095 0.515924 0.234271
124
+ 0.459940 0.518331 0.231262
125
+ 0.466852 0.520735 0.228294
126
+ 0.473806 0.523168 0.225350
127
+ 0.480827 0.525610 0.222487
128
+ 0.487926 0.528073 0.219689
129
+ 0.495074 0.530561 0.216965
130
+ 0.502293 0.533067 0.214322
131
+ 0.509585 0.535591 0.211799
132
+ 0.516956 0.538156 0.209364
133
+ 0.524395 0.540725 0.207098
134
+ 0.531919 0.543327 0.204958
135
+ 0.539513 0.545957 0.202999
136
+ 0.547198 0.548608 0.201224
137
+ 0.554960 0.551277 0.199680
138
+ 0.562810 0.553974 0.198389
139
+ 0.570723 0.556699 0.197370
140
+ 0.578726 0.559444 0.196644
141
+ 0.586800 0.562218 0.196211
142
+ 0.594947 0.564990 0.196125
143
+ 0.603162 0.567801 0.196417
144
+ 0.611435 0.570616 0.197082
145
+ 0.619762 0.573454 0.198141
146
+ 0.628129 0.576301 0.199637
147
+ 0.636533 0.579142 0.201587
148
+ 0.644949 0.581983 0.204022
149
+ 0.653386 0.584833 0.206876
150
+ 0.661828 0.587663 0.210168
151
+ 0.670246 0.590490 0.213943
152
+ 0.678626 0.593304 0.218155
153
+ 0.686968 0.596087 0.222809
154
+ 0.695248 0.598847 0.227875
155
+ 0.703452 0.601573 0.233312
156
+ 0.711566 0.604272 0.239170
157
+ 0.719571 0.606922 0.245346
158
+ 0.727453 0.609526 0.251884
159
+ 0.735211 0.612081 0.258684
160
+ 0.742823 0.614585 0.265760
161
+ 0.750275 0.617046 0.273064
162
+ 0.757569 0.619447 0.280559
163
+ 0.764695 0.621775 0.288258
164
+ 0.771646 0.624066 0.296099
165
+ 0.778414 0.626281 0.304057
166
+ 0.785008 0.628449 0.312105
167
+ 0.791414 0.630553 0.320265
168
+ 0.797642 0.632594 0.328440
169
+ 0.803694 0.634586 0.336654
170
+ 0.809572 0.636521 0.344891
171
+ 0.815275 0.638397 0.353127
172
+ 0.820812 0.640231 0.361344
173
+ 0.826193 0.642012 0.369540
174
+ 0.831423 0.643746 0.377704
175
+ 0.836498 0.645442 0.385816
176
+ 0.841438 0.647106 0.393892
177
+ 0.846241 0.648727 0.401904
178
+ 0.850921 0.650319 0.409880
179
+ 0.855491 0.651886 0.417778
180
+ 0.859944 0.653422 0.425620
181
+ 0.864294 0.654944 0.433400
182
+ 0.868550 0.656464 0.441129
183
+ 0.872709 0.657965 0.448814
184
+ 0.876785 0.659459 0.456431
185
+ 0.880792 0.660959 0.464021
186
+ 0.884727 0.662478 0.471563
187
+ 0.888597 0.664004 0.479070
188
+ 0.892407 0.665555 0.486558
189
+ 0.896161 0.667138 0.494037
190
+ 0.899867 0.668767 0.501512
191
+ 0.903528 0.670447 0.508991
192
+ 0.907149 0.672180 0.516481
193
+ 0.910733 0.673988 0.524014
194
+ 0.914285 0.675882 0.531586
195
+ 0.917806 0.677876 0.539214
196
+ 0.921295 0.679968 0.546917
197
+ 0.924761 0.682193 0.554701
198
+ 0.928203 0.684556 0.562590
199
+ 0.931623 0.687077 0.570573
200
+ 0.935018 0.689766 0.578695
201
+ 0.938388 0.692640 0.586948
202
+ 0.941729 0.695707 0.595351
203
+ 0.945043 0.698986 0.603915
204
+ 0.948316 0.702501 0.612626
205
+ 0.951554 0.706258 0.621515
206
+ 0.954746 0.710260 0.630581
207
+ 0.957886 0.714519 0.639804
208
+ 0.960963 0.719053 0.649193
209
+ 0.963967 0.723851 0.658728
210
+ 0.966899 0.728920 0.668419
211
+ 0.969737 0.734257 0.678227
212
+ 0.972482 0.739853 0.688143
213
+ 0.975108 0.745684 0.698135
214
+ 0.977623 0.751759 0.708191
215
+ 0.980008 0.758039 0.718265
216
+ 0.982258 0.764508 0.728333
217
+ 0.984363 0.771146 0.738362
218
+ 0.986319 0.777917 0.748321
219
+ 0.988123 0.784799 0.758171
220
+ 0.989780 0.791754 0.767880
221
+ 0.991281 0.798766 0.777438
222
+ 0.992638 0.805795 0.786803
223
+ 0.993846 0.812822 0.795954
224
+ 0.994914 0.819823 0.804891
225
+ 0.995854 0.826783 0.813590
226
+ 0.996670 0.833675 0.822058
227
+ 0.997373 0.840486 0.830275
228
+ 0.997972 0.847203 0.838249
229
+ 0.998474 0.853825 0.845983
230
+ 0.998889 0.860347 0.853484
231
+ 0.999224 0.866751 0.860762
232
+ 0.999489 0.873048 0.867823
233
+ 0.999692 0.879227 0.874668
234
+ 0.999842 0.885298 0.881323
235
+ 0.999948 0.891255 0.887786
236
+ 1.000000 0.897109 0.894081
237
+ 1.000000 0.902855 0.900211
238
+ 1.000000 0.908502 0.906194
239
+ 1.000000 0.914057 0.912034
240
+ 1.000000 0.919515 0.917749
241
+ 1.000000 0.924887 0.923339
242
+ 1.000000 0.930178 0.928808
243
+ 1.000000 0.935378 0.934173
244
+ 1.000000 0.940497 0.939436
245
+ 1.000000 0.945530 0.944595
246
+ 1.000000 0.950480 0.949652
247
+ 1.000000 0.955350 0.954618
248
+ 1.000000 0.960136 0.959490
249
+ 1.000000 0.964839 0.964271
250
+ 1.000000 0.969468 0.968970
251
+ 1.000000 0.974019 0.973585
252
+ 1.000000 0.978494 0.978119
253
+ 1.000000 0.982906 0.982588
254
+ 1.000000 0.987256 0.986989
255
+ 1.000000 0.991546 0.991332
256
+ 1.000000 0.995792 0.995630