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.018013 0.350759 0.550621
2
+ 0.025926 0.351768 0.549169
3
+ 0.033826 0.352811 0.547716
4
+ 0.042005 0.353841 0.546281
5
+ 0.049338 0.354908 0.544840
6
+ 0.056017 0.355959 0.543414
7
+ 0.062265 0.357028 0.541994
8
+ 0.068128 0.358100 0.540593
9
+ 0.073701 0.359182 0.539198
10
+ 0.078892 0.360282 0.537826
11
+ 0.084046 0.361406 0.536460
12
+ 0.088911 0.362538 0.535106
13
+ 0.093625 0.363683 0.533770
14
+ 0.098277 0.364850 0.532469
15
+ 0.102767 0.366043 0.531173
16
+ 0.107196 0.367238 0.529904
17
+ 0.111530 0.368473 0.528660
18
+ 0.115796 0.369711 0.527433
19
+ 0.119983 0.370978 0.526240
20
+ 0.124153 0.372273 0.525066
21
+ 0.128323 0.373600 0.523925
22
+ 0.132437 0.374944 0.522816
23
+ 0.136500 0.376327 0.521730
24
+ 0.140616 0.377721 0.520689
25
+ 0.144686 0.379151 0.519678
26
+ 0.148719 0.380620 0.518714
27
+ 0.152787 0.382103 0.517778
28
+ 0.156880 0.383639 0.516880
29
+ 0.160967 0.385187 0.516015
30
+ 0.165034 0.386780 0.515209
31
+ 0.169188 0.388418 0.514450
32
+ 0.173284 0.390074 0.513728
33
+ 0.177458 0.391784 0.513049
34
+ 0.181592 0.393517 0.512422
35
+ 0.185830 0.395300 0.511845
36
+ 0.190026 0.397104 0.511321
37
+ 0.194305 0.398958 0.510850
38
+ 0.198549 0.400868 0.510433
39
+ 0.202868 0.402785 0.510071
40
+ 0.207227 0.404752 0.509765
41
+ 0.211608 0.406770 0.509516
42
+ 0.216023 0.408819 0.509326
43
+ 0.220468 0.410915 0.509193
44
+ 0.224906 0.413048 0.509120
45
+ 0.229427 0.415209 0.509106
46
+ 0.233980 0.417425 0.509152
47
+ 0.238555 0.419670 0.509259
48
+ 0.243169 0.421944 0.509426
49
+ 0.247844 0.424274 0.509654
50
+ 0.252519 0.426636 0.509944
51
+ 0.257235 0.429035 0.510295
52
+ 0.261980 0.431476 0.510707
53
+ 0.266757 0.433929 0.511179
54
+ 0.271562 0.436442 0.511713
55
+ 0.276427 0.438969 0.512307
56
+ 0.281279 0.441547 0.512960
57
+ 0.286174 0.444150 0.513674
58
+ 0.291121 0.446773 0.514442
59
+ 0.296067 0.449435 0.515256
60
+ 0.301040 0.452126 0.516129
61
+ 0.306067 0.454839 0.517072
62
+ 0.311084 0.457568 0.518054
63
+ 0.316136 0.460327 0.519088
64
+ 0.321195 0.463112 0.520158
65
+ 0.326271 0.465925 0.521293
66
+ 0.331376 0.468763 0.522466
67
+ 0.336503 0.471617 0.523691
68
+ 0.341646 0.474484 0.524950
69
+ 0.346799 0.477365 0.526255
70
+ 0.351949 0.480270 0.527589
71
+ 0.357142 0.483182 0.528972
72
+ 0.362317 0.486115 0.530374
73
+ 0.367501 0.489060 0.531815
74
+ 0.372703 0.492024 0.533281
75
+ 0.377914 0.494993 0.534782
76
+ 0.383132 0.497979 0.536306
77
+ 0.388342 0.500959 0.537855
78
+ 0.393557 0.503956 0.539411
79
+ 0.398777 0.506954 0.540996
80
+ 0.404000 0.509965 0.542602
81
+ 0.409218 0.512981 0.544212
82
+ 0.414432 0.515995 0.545841
83
+ 0.419650 0.519033 0.547467
84
+ 0.424857 0.522048 0.549112
85
+ 0.430056 0.525086 0.550751
86
+ 0.435257 0.528117 0.552399
87
+ 0.440432 0.531151 0.554040
88
+ 0.445604 0.534181 0.555673
89
+ 0.450777 0.537224 0.557322
90
+ 0.455926 0.540248 0.558938
91
+ 0.461063 0.543281 0.560560
92
+ 0.466184 0.546313 0.562171
93
+ 0.471298 0.549333 0.563759
94
+ 0.476382 0.552353 0.565318
95
+ 0.481447 0.555359 0.566883
96
+ 0.486494 0.558366 0.568406
97
+ 0.491529 0.561375 0.569911
98
+ 0.496511 0.564373 0.571394
99
+ 0.501497 0.567363 0.572853
100
+ 0.506434 0.570334 0.574264
101
+ 0.511351 0.573311 0.575664
102
+ 0.516233 0.576275 0.577015
103
+ 0.521092 0.579218 0.578325
104
+ 0.525913 0.582146 0.579613
105
+ 0.530693 0.585077 0.580845
106
+ 0.535431 0.587976 0.582038
107
+ 0.540137 0.590874 0.583189
108
+ 0.544802 0.593755 0.584297
109
+ 0.549422 0.596618 0.585361
110
+ 0.553992 0.599465 0.586365
111
+ 0.558512 0.602287 0.587319
112
+ 0.563002 0.605094 0.588223
113
+ 0.567427 0.607888 0.589076
114
+ 0.571798 0.610651 0.589876
115
+ 0.576130 0.613389 0.590621
116
+ 0.580390 0.616118 0.591311
117
+ 0.584599 0.618823 0.591946
118
+ 0.588745 0.621488 0.592520
119
+ 0.592850 0.624146 0.593031
120
+ 0.596881 0.626766 0.593482
121
+ 0.600848 0.629364 0.593876
122
+ 0.604762 0.631940 0.594210
123
+ 0.608614 0.634489 0.594485
124
+ 0.612386 0.637005 0.594700
125
+ 0.616108 0.639492 0.594855
126
+ 0.619766 0.641951 0.594950
127
+ 0.623353 0.644379 0.594986
128
+ 0.626869 0.646788 0.594963
129
+ 0.630330 0.649163 0.594880
130
+ 0.633720 0.651506 0.594740
131
+ 0.637043 0.653816 0.594542
132
+ 0.640302 0.656106 0.594288
133
+ 0.643489 0.658356 0.593978
134
+ 0.646622 0.660577 0.593613
135
+ 0.649688 0.662780 0.593195
136
+ 0.652681 0.664939 0.592725
137
+ 0.655625 0.667078 0.592201
138
+ 0.658498 0.669191 0.591621
139
+ 0.661315 0.671269 0.590991
140
+ 0.664071 0.673324 0.590315
141
+ 0.666762 0.675347 0.589592
142
+ 0.669407 0.677352 0.588824
143
+ 0.671988 0.679316 0.588014
144
+ 0.674515 0.681260 0.587161
145
+ 0.676996 0.683188 0.586270
146
+ 0.679411 0.685086 0.585337
147
+ 0.681782 0.686958 0.584356
148
+ 0.684106 0.688813 0.583340
149
+ 0.686388 0.690633 0.582290
150
+ 0.688623 0.692451 0.581208
151
+ 0.690803 0.694226 0.580096
152
+ 0.692958 0.696002 0.578945
153
+ 0.695057 0.697744 0.577758
154
+ 0.697123 0.699474 0.576563
155
+ 0.699151 0.701189 0.575319
156
+ 0.701148 0.702889 0.574052
157
+ 0.703111 0.704568 0.572773
158
+ 0.705037 0.706239 0.571455
159
+ 0.706939 0.707888 0.570119
160
+ 0.708812 0.709534 0.568766
161
+ 0.710652 0.711164 0.567398
162
+ 0.712465 0.712776 0.566002
163
+ 0.714262 0.714386 0.564593
164
+ 0.716043 0.715996 0.563175
165
+ 0.717795 0.717590 0.561735
166
+ 0.719530 0.719173 0.560283
167
+ 0.721243 0.720751 0.558812
168
+ 0.722948 0.722327 0.557351
169
+ 0.724644 0.723904 0.555854
170
+ 0.726322 0.725482 0.554375
171
+ 0.727989 0.727048 0.552876
172
+ 0.729654 0.728619 0.551380
173
+ 0.731305 0.730196 0.549877
174
+ 0.732960 0.731770 0.548378
175
+ 0.734608 0.733350 0.546870
176
+ 0.736247 0.734937 0.545368
177
+ 0.737894 0.736523 0.543867
178
+ 0.739553 0.738123 0.542376
179
+ 0.741196 0.739743 0.540887
180
+ 0.742865 0.741355 0.539408
181
+ 0.744528 0.742998 0.537952
182
+ 0.746207 0.744643 0.536499
183
+ 0.747902 0.746310 0.535057
184
+ 0.749600 0.748000 0.533633
185
+ 0.751333 0.749698 0.532246
186
+ 0.753066 0.751437 0.530868
187
+ 0.754839 0.753183 0.529524
188
+ 0.756623 0.754973 0.528201
189
+ 0.758441 0.756781 0.526921
190
+ 0.760284 0.758628 0.525665
191
+ 0.762160 0.760507 0.524453
192
+ 0.764075 0.762421 0.523289
193
+ 0.766029 0.764383 0.522158
194
+ 0.768018 0.766385 0.521095
195
+ 0.770058 0.768431 0.520075
196
+ 0.772146 0.770535 0.519134
197
+ 0.774281 0.772685 0.518247
198
+ 0.776480 0.774894 0.517432
199
+ 0.778729 0.777170 0.516685
200
+ 0.781043 0.779497 0.516019
201
+ 0.783422 0.781900 0.515451
202
+ 0.785872 0.784371 0.514980
203
+ 0.788391 0.786913 0.514607
204
+ 0.790986 0.789529 0.514339
205
+ 0.793667 0.792226 0.514183
206
+ 0.796417 0.795008 0.514147
207
+ 0.799266 0.797874 0.514237
208
+ 0.802191 0.800830 0.514461
209
+ 0.805212 0.803876 0.514822
210
+ 0.808328 0.807015 0.515329
211
+ 0.811535 0.810241 0.515991
212
+ 0.814834 0.813567 0.516827
213
+ 0.818231 0.816990 0.517823
214
+ 0.821730 0.820503 0.518989
215
+ 0.825314 0.824114 0.520319
216
+ 0.829003 0.827817 0.521841
217
+ 0.832774 0.831619 0.523560
218
+ 0.836643 0.835499 0.525456
219
+ 0.840597 0.839471 0.527545
220
+ 0.844633 0.843518 0.529830
221
+ 0.848747 0.847648 0.532308
222
+ 0.852937 0.851853 0.534973
223
+ 0.857192 0.856121 0.537842
224
+ 0.861512 0.860452 0.540887
225
+ 0.865887 0.864832 0.544128
226
+ 0.870305 0.869266 0.547548
227
+ 0.874771 0.873734 0.551151
228
+ 0.879265 0.878238 0.554923
229
+ 0.883790 0.882761 0.558857
230
+ 0.888327 0.887307 0.562964
231
+ 0.892874 0.891864 0.567211
232
+ 0.897426 0.896421 0.571595
233
+ 0.901967 0.900970 0.576130
234
+ 0.906500 0.905515 0.580769
235
+ 0.911012 0.910036 0.585540
236
+ 0.915496 0.914534 0.590402
237
+ 0.919957 0.919001 0.595373
238
+ 0.924378 0.923444 0.600430
239
+ 0.928760 0.927840 0.605563
240
+ 0.933100 0.932200 0.610780
241
+ 0.937399 0.936525 0.616050
242
+ 0.941643 0.940794 0.621377
243
+ 0.945841 0.945023 0.626756
244
+ 0.949988 0.949200 0.632179
245
+ 0.954086 0.953337 0.637637
246
+ 0.958134 0.957421 0.643125
247
+ 0.962126 0.961461 0.648644
248
+ 0.966076 0.965459 0.654183
249
+ 0.969980 0.969417 0.659744
250
+ 0.973841 0.973336 0.665317
251
+ 0.977661 0.977216 0.670909
252
+ 0.981443 0.981063 0.676508
253
+ 0.985190 0.984882 0.682110
254
+ 0.988902 0.988667 0.687731
255
+ 0.992589 0.992433 0.693355
256
+ 0.996243 0.996171 0.698978
@@ -0,0 +1,256 @@
1
+ 0.003670 0.005082 0.002454
2
+ 0.005663 0.009394 0.010695
3
+ 0.007674 0.013900 0.019154
4
+ 0.009708 0.018228 0.027418
5
+ 0.011981 0.022573 0.035904
6
+ 0.014040 0.026935 0.043975
7
+ 0.016150 0.031315 0.051380
8
+ 0.018294 0.035927 0.058123
9
+ 0.020473 0.040333 0.064433
10
+ 0.022689 0.044608 0.070257
11
+ 0.024947 0.048672 0.075728
12
+ 0.027247 0.052453 0.080952
13
+ 0.029592 0.056240 0.085837
14
+ 0.031984 0.059842 0.090619
15
+ 0.034477 0.063258 0.095163
16
+ 0.037057 0.066553 0.099530
17
+ 0.039346 0.069830 0.103998
18
+ 0.041492 0.072993 0.108476
19
+ 0.043238 0.076022 0.113097
20
+ 0.045051 0.079044 0.117653
21
+ 0.046508 0.082102 0.122270
22
+ 0.047784 0.084964 0.126972
23
+ 0.049035 0.087853 0.131740
24
+ 0.049925 0.090660 0.136487
25
+ 0.050671 0.093388 0.141349
26
+ 0.051245 0.096126 0.146191
27
+ 0.051698 0.098921 0.151077
28
+ 0.052160 0.101711 0.156035
29
+ 0.052632 0.104509 0.160983
30
+ 0.053115 0.107415 0.165953
31
+ 0.053612 0.110322 0.170991
32
+ 0.054125 0.113245 0.176024
33
+ 0.054655 0.116178 0.181122
34
+ 0.055201 0.119133 0.186266
35
+ 0.055777 0.122093 0.191399
36
+ 0.056384 0.125156 0.196606
37
+ 0.056955 0.128228 0.201777
38
+ 0.057498 0.131313 0.207043
39
+ 0.058136 0.134437 0.212303
40
+ 0.058867 0.137574 0.217588
41
+ 0.059601 0.140732 0.222913
42
+ 0.060281 0.143906 0.228260
43
+ 0.060943 0.147106 0.233599
44
+ 0.061699 0.150350 0.239005
45
+ 0.062585 0.153583 0.244413
46
+ 0.063381 0.156880 0.249856
47
+ 0.064199 0.160147 0.255349
48
+ 0.065067 0.163520 0.260829
49
+ 0.065965 0.166855 0.266348
50
+ 0.066906 0.170203 0.271861
51
+ 0.067880 0.173572 0.277439
52
+ 0.068913 0.176975 0.283021
53
+ 0.069887 0.180377 0.288612
54
+ 0.070924 0.183813 0.294223
55
+ 0.071974 0.187281 0.299872
56
+ 0.073118 0.190723 0.305543
57
+ 0.074222 0.194231 0.311213
58
+ 0.075341 0.197696 0.316910
59
+ 0.076503 0.201186 0.322635
60
+ 0.077709 0.204732 0.328362
61
+ 0.078959 0.208256 0.334122
62
+ 0.080255 0.211814 0.339892
63
+ 0.081609 0.215346 0.345666
64
+ 0.082887 0.218921 0.351475
65
+ 0.084299 0.222494 0.357309
66
+ 0.085598 0.226090 0.363130
67
+ 0.087109 0.229650 0.368992
68
+ 0.088529 0.233252 0.374856
69
+ 0.090015 0.236896 0.380747
70
+ 0.091564 0.240476 0.386631
71
+ 0.093033 0.244102 0.392550
72
+ 0.094704 0.247758 0.398482
73
+ 0.096248 0.251395 0.404418
74
+ 0.097979 0.255039 0.410388
75
+ 0.099642 0.258672 0.416349
76
+ 0.101383 0.262321 0.422323
77
+ 0.103203 0.265984 0.428328
78
+ 0.104971 0.269647 0.434331
79
+ 0.106919 0.273308 0.440353
80
+ 0.108794 0.276974 0.446386
81
+ 0.110796 0.280624 0.452440
82
+ 0.112829 0.284309 0.458486
83
+ 0.114836 0.287988 0.464562
84
+ 0.116986 0.291687 0.470635
85
+ 0.119188 0.295360 0.476721
86
+ 0.121396 0.299066 0.482819
87
+ 0.123708 0.302746 0.488929
88
+ 0.126126 0.306472 0.495056
89
+ 0.128541 0.310183 0.501188
90
+ 0.131066 0.313894 0.507327
91
+ 0.133637 0.317616 0.513482
92
+ 0.136253 0.321349 0.519640
93
+ 0.138999 0.325090 0.525817
94
+ 0.141836 0.328866 0.532002
95
+ 0.144744 0.332645 0.538202
96
+ 0.147724 0.336417 0.544400
97
+ 0.150788 0.340235 0.550616
98
+ 0.153954 0.344049 0.556846
99
+ 0.157229 0.347914 0.563083
100
+ 0.160607 0.351779 0.569319
101
+ 0.164133 0.355699 0.575583
102
+ 0.167706 0.359624 0.581840
103
+ 0.171419 0.363587 0.588109
104
+ 0.175265 0.367587 0.594392
105
+ 0.179226 0.371629 0.600674
106
+ 0.183305 0.375718 0.606966
107
+ 0.187565 0.379846 0.613242
108
+ 0.191894 0.384020 0.619535
109
+ 0.196417 0.388241 0.625804
110
+ 0.201015 0.392511 0.632072
111
+ 0.205827 0.396829 0.638320
112
+ 0.210739 0.401218 0.644544
113
+ 0.215817 0.405646 0.650748
114
+ 0.221030 0.410127 0.656915
115
+ 0.226372 0.414649 0.663036
116
+ 0.231855 0.419234 0.669101
117
+ 0.237474 0.423854 0.675105
118
+ 0.243180 0.428532 0.681034
119
+ 0.249055 0.433240 0.686890
120
+ 0.255036 0.437998 0.692653
121
+ 0.261091 0.442773 0.698295
122
+ 0.267239 0.447563 0.703833
123
+ 0.273508 0.452398 0.709242
124
+ 0.279816 0.457215 0.714499
125
+ 0.286168 0.462049 0.719619
126
+ 0.292592 0.466879 0.724569
127
+ 0.299049 0.471693 0.729348
128
+ 0.305518 0.476477 0.733948
129
+ 0.311961 0.481232 0.738357
130
+ 0.318440 0.485956 0.742578
131
+ 0.324876 0.490646 0.746591
132
+ 0.331288 0.495266 0.750405
133
+ 0.337672 0.499827 0.754012
134
+ 0.343988 0.504348 0.757409
135
+ 0.350272 0.508784 0.760601
136
+ 0.356473 0.513144 0.763584
137
+ 0.362597 0.517441 0.766369
138
+ 0.368662 0.521642 0.768950
139
+ 0.374638 0.525784 0.771348
140
+ 0.380536 0.529840 0.773546
141
+ 0.386338 0.533807 0.775571
142
+ 0.392078 0.537716 0.777427
143
+ 0.397732 0.541523 0.779108
144
+ 0.403303 0.545276 0.780636
145
+ 0.408790 0.548951 0.782021
146
+ 0.414204 0.552548 0.783260
147
+ 0.419551 0.556072 0.784376
148
+ 0.424823 0.559551 0.785364
149
+ 0.430026 0.562964 0.786243
150
+ 0.435177 0.566313 0.787016
151
+ 0.440255 0.569607 0.787687
152
+ 0.445286 0.572867 0.788275
153
+ 0.450272 0.576076 0.788785
154
+ 0.455212 0.579234 0.789218
155
+ 0.460098 0.582352 0.789582
156
+ 0.464961 0.585451 0.789885
157
+ 0.469792 0.588497 0.790134
158
+ 0.474582 0.591534 0.790333
159
+ 0.479345 0.594535 0.790488
160
+ 0.484077 0.597517 0.790604
161
+ 0.488801 0.600474 0.790685
162
+ 0.493499 0.603420 0.790734
163
+ 0.498197 0.606341 0.790756
164
+ 0.502852 0.609260 0.790754
165
+ 0.507519 0.612153 0.790731
166
+ 0.512164 0.615042 0.790690
167
+ 0.516809 0.617927 0.790634
168
+ 0.521439 0.620809 0.790566
169
+ 0.526076 0.623681 0.790487
170
+ 0.530700 0.626540 0.790399
171
+ 0.535321 0.629403 0.790306
172
+ 0.539944 0.632270 0.790209
173
+ 0.544573 0.635131 0.790109
174
+ 0.549202 0.637997 0.790009
175
+ 0.553824 0.640861 0.789910
176
+ 0.558450 0.643730 0.789815
177
+ 0.563097 0.646609 0.789724
178
+ 0.567734 0.649493 0.789639
179
+ 0.572383 0.652376 0.789563
180
+ 0.577037 0.655270 0.789496
181
+ 0.581693 0.658180 0.789442
182
+ 0.586368 0.661093 0.789401
183
+ 0.591047 0.664026 0.789377
184
+ 0.595739 0.666964 0.789370
185
+ 0.600443 0.669929 0.789384
186
+ 0.605160 0.672904 0.789420
187
+ 0.609892 0.675894 0.789482
188
+ 0.614636 0.678906 0.789572
189
+ 0.619411 0.681941 0.789692
190
+ 0.624191 0.685007 0.789847
191
+ 0.628990 0.688096 0.790038
192
+ 0.633816 0.691207 0.790270
193
+ 0.638657 0.694353 0.790546
194
+ 0.643523 0.697537 0.790870
195
+ 0.648417 0.700758 0.791244
196
+ 0.653336 0.704011 0.791674
197
+ 0.658290 0.707307 0.792164
198
+ 0.663273 0.710647 0.792717
199
+ 0.668281 0.714028 0.793339
200
+ 0.673322 0.717468 0.794031
201
+ 0.678397 0.720943 0.794794
202
+ 0.683508 0.724484 0.795640
203
+ 0.688662 0.728074 0.796572
204
+ 0.693840 0.731726 0.797595
205
+ 0.699066 0.735437 0.798713
206
+ 0.704334 0.739216 0.799930
207
+ 0.709643 0.743052 0.801241
208
+ 0.714987 0.746954 0.802662
209
+ 0.720376 0.750930 0.804198
210
+ 0.725811 0.754971 0.805841
211
+ 0.731277 0.759079 0.807606
212
+ 0.736794 0.763263 0.809490
213
+ 0.742352 0.767519 0.811496
214
+ 0.747950 0.771854 0.813625
215
+ 0.753582 0.776256 0.815890
216
+ 0.759257 0.780731 0.818274
217
+ 0.764976 0.785284 0.820797
218
+ 0.770726 0.789903 0.823450
219
+ 0.776512 0.794598 0.826237
220
+ 0.782330 0.799364 0.829160
221
+ 0.788178 0.804194 0.832210
222
+ 0.794064 0.809095 0.835391
223
+ 0.799971 0.814056 0.838704
224
+ 0.805900 0.819083 0.842152
225
+ 0.811858 0.824176 0.845719
226
+ 0.817833 0.829331 0.849420
227
+ 0.823830 0.834537 0.853235
228
+ 0.829848 0.839800 0.857174
229
+ 0.835874 0.845109 0.861230
230
+ 0.841917 0.850469 0.865398
231
+ 0.847964 0.855881 0.869677
232
+ 0.854024 0.861331 0.874062
233
+ 0.860096 0.866825 0.878548
234
+ 0.866168 0.872362 0.883130
235
+ 0.872247 0.877930 0.887806
236
+ 0.878324 0.883534 0.892575
237
+ 0.884407 0.889169 0.897425
238
+ 0.890486 0.894836 0.902352
239
+ 0.896571 0.900524 0.907359
240
+ 0.902651 0.906243 0.912433
241
+ 0.908728 0.911983 0.917579
242
+ 0.914806 0.917749 0.922782
243
+ 0.920878 0.923531 0.928041
244
+ 0.926953 0.929328 0.933358
245
+ 0.933024 0.935148 0.938729
246
+ 0.939097 0.940984 0.944142
247
+ 0.945168 0.946835 0.949594
248
+ 0.951235 0.952699 0.955088
249
+ 0.957300 0.958578 0.960614
250
+ 0.963367 0.964462 0.966166
251
+ 0.969433 0.970364 0.971751
252
+ 0.975501 0.976274 0.977357
253
+ 0.981575 0.982200 0.982983
254
+ 0.987647 0.988127 0.988628
255
+ 0.993723 0.994068 0.994287
256
+ 0.999801 1.000000 0.999961