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.299144 0.000324 0.003027
2
+ 0.304998 0.004836 0.011067
3
+ 0.310884 0.009628 0.019150
4
+ 0.316766 0.014882 0.027066
5
+ 0.322668 0.020224 0.035143
6
+ 0.328553 0.025843 0.042846
7
+ 0.334443 0.031738 0.050036
8
+ 0.340305 0.038107 0.056572
9
+ 0.346140 0.044376 0.062581
10
+ 0.351964 0.050379 0.068143
11
+ 0.357775 0.056223 0.073417
12
+ 0.363522 0.061766 0.078259
13
+ 0.369249 0.067261 0.083028
14
+ 0.374907 0.072554 0.087831
15
+ 0.380507 0.077716 0.092588
16
+ 0.386025 0.082853 0.097458
17
+ 0.391504 0.087894 0.102330
18
+ 0.396896 0.092765 0.107269
19
+ 0.402238 0.097677 0.112215
20
+ 0.407530 0.102448 0.117147
21
+ 0.412769 0.107210 0.122122
22
+ 0.417934 0.111893 0.127145
23
+ 0.423054 0.116531 0.132207
24
+ 0.428142 0.121087 0.137253
25
+ 0.433172 0.125703 0.142294
26
+ 0.438172 0.130260 0.147354
27
+ 0.443127 0.134757 0.152390
28
+ 0.448040 0.139192 0.157454
29
+ 0.452937 0.143689 0.162544
30
+ 0.457787 0.148123 0.167591
31
+ 0.462612 0.152543 0.172633
32
+ 0.467425 0.156976 0.177713
33
+ 0.472203 0.161412 0.182707
34
+ 0.476950 0.165762 0.187777
35
+ 0.481681 0.170179 0.192760
36
+ 0.486383 0.174571 0.197754
37
+ 0.491079 0.178947 0.202731
38
+ 0.495722 0.183310 0.207702
39
+ 0.500357 0.187732 0.212634
40
+ 0.504969 0.192083 0.217555
41
+ 0.509551 0.196499 0.222437
42
+ 0.514110 0.200855 0.227296
43
+ 0.518631 0.205280 0.232121
44
+ 0.523115 0.209702 0.236910
45
+ 0.527559 0.214147 0.241634
46
+ 0.531968 0.218597 0.246306
47
+ 0.536327 0.223075 0.250951
48
+ 0.540630 0.227561 0.255520
49
+ 0.544878 0.232078 0.260021
50
+ 0.549064 0.236615 0.264441
51
+ 0.553164 0.241154 0.268792
52
+ 0.557205 0.245719 0.273027
53
+ 0.561137 0.250309 0.277172
54
+ 0.564979 0.254949 0.281187
55
+ 0.568723 0.259564 0.285095
56
+ 0.572360 0.264188 0.288891
57
+ 0.575875 0.268820 0.292523
58
+ 0.579257 0.273439 0.296021
59
+ 0.582503 0.278044 0.299376
60
+ 0.585628 0.282645 0.302545
61
+ 0.588592 0.287186 0.305597
62
+ 0.591433 0.291736 0.308452
63
+ 0.594120 0.296220 0.311154
64
+ 0.596669 0.300658 0.313695
65
+ 0.599073 0.305062 0.316079
66
+ 0.601335 0.309407 0.318292
67
+ 0.603472 0.313674 0.320378
68
+ 0.605469 0.317879 0.322301
69
+ 0.607363 0.322022 0.324085
70
+ 0.609132 0.326089 0.325748
71
+ 0.610791 0.330114 0.327303
72
+ 0.612350 0.334059 0.328758
73
+ 0.613824 0.337924 0.330102
74
+ 0.615219 0.341745 0.331341
75
+ 0.616547 0.345491 0.332539
76
+ 0.617797 0.349190 0.333637
77
+ 0.619003 0.352829 0.334684
78
+ 0.620147 0.356416 0.335663
79
+ 0.621242 0.359944 0.336592
80
+ 0.622299 0.363429 0.337494
81
+ 0.623334 0.366880 0.338345
82
+ 0.624329 0.370275 0.339190
83
+ 0.625296 0.373647 0.339989
84
+ 0.626244 0.376979 0.340764
85
+ 0.627173 0.380270 0.341523
86
+ 0.628089 0.383537 0.342269
87
+ 0.628983 0.386757 0.343002
88
+ 0.629865 0.389963 0.343704
89
+ 0.630744 0.393146 0.344407
90
+ 0.631603 0.396303 0.345112
91
+ 0.632457 0.399424 0.345790
92
+ 0.633304 0.402537 0.346476
93
+ 0.634147 0.405637 0.347163
94
+ 0.634974 0.408699 0.347827
95
+ 0.635801 0.411747 0.348488
96
+ 0.636627 0.414780 0.349148
97
+ 0.637440 0.417798 0.349804
98
+ 0.638251 0.420792 0.350461
99
+ 0.639058 0.423778 0.351106
100
+ 0.639865 0.426756 0.351737
101
+ 0.640662 0.429714 0.352383
102
+ 0.641455 0.432665 0.353028
103
+ 0.642254 0.435601 0.353655
104
+ 0.643042 0.438516 0.354294
105
+ 0.643828 0.441434 0.354938
106
+ 0.644613 0.444345 0.355565
107
+ 0.645396 0.447230 0.356188
108
+ 0.646179 0.450123 0.356815
109
+ 0.646962 0.453006 0.357444
110
+ 0.647735 0.455876 0.358059
111
+ 0.648511 0.458747 0.358668
112
+ 0.649291 0.461611 0.359292
113
+ 0.650061 0.464476 0.359914
114
+ 0.650832 0.467325 0.360522
115
+ 0.651606 0.470176 0.361144
116
+ 0.652372 0.473012 0.361771
117
+ 0.653137 0.475868 0.362384
118
+ 0.653911 0.478707 0.362995
119
+ 0.654676 0.481550 0.363610
120
+ 0.655449 0.484386 0.364225
121
+ 0.656223 0.487239 0.364841
122
+ 0.656991 0.490076 0.365459
123
+ 0.657763 0.492915 0.366082
124
+ 0.658526 0.495765 0.366698
125
+ 0.659297 0.498625 0.367305
126
+ 0.660072 0.501477 0.367924
127
+ 0.660841 0.504337 0.368553
128
+ 0.661624 0.507191 0.369169
129
+ 0.662401 0.510057 0.369784
130
+ 0.663179 0.512932 0.370404
131
+ 0.663958 0.515805 0.371028
132
+ 0.664733 0.518708 0.371654
133
+ 0.665523 0.521594 0.372284
134
+ 0.666307 0.524505 0.372918
135
+ 0.667100 0.527422 0.373558
136
+ 0.667900 0.530350 0.374203
137
+ 0.668695 0.533286 0.374839
138
+ 0.669498 0.536242 0.375483
139
+ 0.670307 0.539206 0.376149
140
+ 0.671114 0.542190 0.376814
141
+ 0.671930 0.545190 0.377480
142
+ 0.672759 0.548210 0.378163
143
+ 0.673586 0.551243 0.378862
144
+ 0.674424 0.554301 0.379580
145
+ 0.675273 0.557387 0.380323
146
+ 0.676134 0.560488 0.381095
147
+ 0.677011 0.563629 0.381883
148
+ 0.677897 0.566794 0.382725
149
+ 0.678795 0.569985 0.383619
150
+ 0.679716 0.573231 0.384556
151
+ 0.680660 0.576514 0.385570
152
+ 0.681631 0.579835 0.386670
153
+ 0.682633 0.583198 0.387872
154
+ 0.683665 0.586624 0.389193
155
+ 0.684733 0.590100 0.390636
156
+ 0.685847 0.593645 0.392232
157
+ 0.687000 0.597249 0.394004
158
+ 0.688207 0.600910 0.395981
159
+ 0.689467 0.604647 0.398167
160
+ 0.690775 0.608449 0.400602
161
+ 0.692161 0.612303 0.403285
162
+ 0.693595 0.616234 0.406259
163
+ 0.695101 0.620223 0.409528
164
+ 0.696674 0.624257 0.413119
165
+ 0.698307 0.628338 0.417031
166
+ 0.700009 0.632449 0.421261
167
+ 0.701766 0.636591 0.425840
168
+ 0.703589 0.640733 0.430750
169
+ 0.705456 0.644875 0.435976
170
+ 0.707368 0.649012 0.441503
171
+ 0.709323 0.653102 0.447311
172
+ 0.711304 0.657167 0.453393
173
+ 0.713302 0.661161 0.459711
174
+ 0.715323 0.665093 0.466234
175
+ 0.717351 0.668955 0.472935
176
+ 0.719372 0.672732 0.479801
177
+ 0.721385 0.676415 0.486772
178
+ 0.723393 0.680002 0.493840
179
+ 0.725392 0.683506 0.500976
180
+ 0.727358 0.686912 0.508158
181
+ 0.729308 0.690226 0.515344
182
+ 0.731230 0.693452 0.522546
183
+ 0.733133 0.696593 0.529738
184
+ 0.735006 0.699648 0.536904
185
+ 0.736848 0.702635 0.544020
186
+ 0.738669 0.705546 0.551098
187
+ 0.740460 0.708396 0.558117
188
+ 0.742228 0.711184 0.565082
189
+ 0.743970 0.713910 0.571994
190
+ 0.745687 0.716595 0.578834
191
+ 0.747388 0.719224 0.585612
192
+ 0.749057 0.721808 0.592318
193
+ 0.750718 0.724360 0.598947
194
+ 0.752346 0.726871 0.605507
195
+ 0.753965 0.729348 0.612005
196
+ 0.755564 0.731793 0.618437
197
+ 0.757143 0.734208 0.624792
198
+ 0.758711 0.736591 0.631084
199
+ 0.760262 0.738958 0.637303
200
+ 0.761800 0.741287 0.643453
201
+ 0.763330 0.743609 0.649549
202
+ 0.764857 0.745904 0.655572
203
+ 0.766372 0.748189 0.661539
204
+ 0.767884 0.750458 0.667444
205
+ 0.769403 0.752714 0.673294
206
+ 0.770932 0.754980 0.679088
207
+ 0.772465 0.757236 0.684839
208
+ 0.774017 0.759500 0.690544
209
+ 0.775599 0.761784 0.696219
210
+ 0.777218 0.764089 0.701849
211
+ 0.778869 0.766425 0.707465
212
+ 0.780576 0.768799 0.713059
213
+ 0.782350 0.771233 0.718646
214
+ 0.784200 0.773717 0.724233
215
+ 0.786133 0.776287 0.729830
216
+ 0.788164 0.778938 0.735440
217
+ 0.790315 0.781696 0.741077
218
+ 0.792598 0.784566 0.746759
219
+ 0.795021 0.787558 0.752479
220
+ 0.797602 0.790694 0.758263
221
+ 0.800359 0.793990 0.764100
222
+ 0.803293 0.797438 0.770009
223
+ 0.806429 0.801069 0.775994
224
+ 0.809762 0.804883 0.782058
225
+ 0.813308 0.808888 0.788196
226
+ 0.817076 0.813079 0.794420
227
+ 0.821062 0.817473 0.800719
228
+ 0.825268 0.822067 0.807098
229
+ 0.829699 0.826849 0.813543
230
+ 0.834341 0.831823 0.820059
231
+ 0.839189 0.836976 0.826641
232
+ 0.844240 0.842308 0.833271
233
+ 0.849485 0.847799 0.839954
234
+ 0.854907 0.853449 0.846666
235
+ 0.860496 0.859248 0.853419
236
+ 0.866241 0.865175 0.860207
237
+ 0.872133 0.871230 0.867007
238
+ 0.878153 0.877391 0.873834
239
+ 0.884296 0.883661 0.880676
240
+ 0.890544 0.890016 0.887533
241
+ 0.896900 0.896462 0.894410
242
+ 0.903342 0.902984 0.901294
243
+ 0.909869 0.909575 0.908201
244
+ 0.916471 0.916233 0.915116
245
+ 0.923150 0.922959 0.922060
246
+ 0.929891 0.929738 0.929017
247
+ 0.936700 0.936579 0.936007
248
+ 0.943561 0.943467 0.943019
249
+ 0.950481 0.950407 0.950056
250
+ 0.957453 0.957396 0.957125
251
+ 0.964471 0.964429 0.964225
252
+ 0.971542 0.971510 0.971359
253
+ 0.978650 0.978627 0.978520
254
+ 0.985805 0.985790 0.985719
255
+ 0.992994 0.992985 0.992945
256
+ 1.000000 1.000000 1.000000
@@ -0,0 +1,256 @@
1
+ 0.700151 0.002745 0.700612
2
+ 0.700191 0.010833 0.697186
3
+ 0.700226 0.019196 0.693784
4
+ 0.700255 0.027497 0.690410
5
+ 0.700279 0.036129 0.687067
6
+ 0.700299 0.044535 0.683750
7
+ 0.700315 0.052201 0.680467
8
+ 0.700328 0.059479 0.677234
9
+ 0.700339 0.066138 0.674024
10
+ 0.700347 0.072500 0.670865
11
+ 0.700355 0.078557 0.667747
12
+ 0.700362 0.084489 0.664665
13
+ 0.700369 0.090118 0.661647
14
+ 0.700378 0.095602 0.658662
15
+ 0.700389 0.100919 0.655740
16
+ 0.700403 0.106180 0.652854
17
+ 0.700422 0.111272 0.650035
18
+ 0.700447 0.116281 0.647260
19
+ 0.700479 0.121141 0.644532
20
+ 0.700521 0.126029 0.641864
21
+ 0.700575 0.130794 0.639246
22
+ 0.700642 0.135455 0.636684
23
+ 0.700726 0.140079 0.634169
24
+ 0.700829 0.144685 0.631701
25
+ 0.700953 0.149193 0.629284
26
+ 0.701102 0.153641 0.626923
27
+ 0.701279 0.158084 0.624615
28
+ 0.701486 0.162466 0.622349
29
+ 0.701729 0.166801 0.620147
30
+ 0.702012 0.171076 0.617979
31
+ 0.702337 0.175336 0.615867
32
+ 0.702707 0.179555 0.613800
33
+ 0.703122 0.183741 0.611790
34
+ 0.703582 0.187936 0.609823
35
+ 0.704093 0.192033 0.607911
36
+ 0.704658 0.196154 0.606029
37
+ 0.705275 0.200200 0.604213
38
+ 0.705946 0.204298 0.602424
39
+ 0.706671 0.208310 0.600685
40
+ 0.707439 0.212332 0.598992
41
+ 0.708265 0.216333 0.597337
42
+ 0.709140 0.220302 0.595714
43
+ 0.710053 0.224219 0.594134
44
+ 0.711015 0.228186 0.592595
45
+ 0.712011 0.232099 0.591073
46
+ 0.713044 0.235997 0.589585
47
+ 0.714113 0.239864 0.588131
48
+ 0.715214 0.243717 0.586706
49
+ 0.716339 0.247586 0.585309
50
+ 0.717485 0.251421 0.583920
51
+ 0.718642 0.255233 0.582557
52
+ 0.719825 0.259028 0.581216
53
+ 0.721012 0.262798 0.579897
54
+ 0.722212 0.266557 0.578580
55
+ 0.723423 0.270315 0.577284
56
+ 0.724641 0.274034 0.576009
57
+ 0.725860 0.277747 0.574723
58
+ 0.727075 0.281433 0.573468
59
+ 0.728294 0.285107 0.572216
60
+ 0.729516 0.288786 0.570967
61
+ 0.730731 0.292428 0.569729
62
+ 0.731948 0.296063 0.568502
63
+ 0.733159 0.299689 0.567287
64
+ 0.734368 0.303280 0.566067
65
+ 0.735568 0.306883 0.564853
66
+ 0.736769 0.310471 0.563661
67
+ 0.737963 0.314024 0.562464
68
+ 0.739164 0.317574 0.561261
69
+ 0.740347 0.321115 0.560077
70
+ 0.741527 0.324632 0.558885
71
+ 0.742714 0.328153 0.557711
72
+ 0.743886 0.331654 0.556532
73
+ 0.745056 0.335166 0.555357
74
+ 0.746225 0.338633 0.554196
75
+ 0.747393 0.342111 0.553026
76
+ 0.748552 0.345565 0.551874
77
+ 0.749704 0.349024 0.550714
78
+ 0.750868 0.352465 0.549561
79
+ 0.752015 0.355908 0.548416
80
+ 0.753158 0.359324 0.547260
81
+ 0.754311 0.362743 0.546124
82
+ 0.755451 0.366162 0.544977
83
+ 0.756589 0.369556 0.543837
84
+ 0.757726 0.372949 0.542705
85
+ 0.758860 0.376350 0.541561
86
+ 0.759990 0.379722 0.540437
87
+ 0.761122 0.383103 0.539305
88
+ 0.762246 0.386459 0.538189
89
+ 0.763371 0.389823 0.537065
90
+ 0.764497 0.393183 0.535933
91
+ 0.765621 0.396533 0.534816
92
+ 0.766735 0.399878 0.533691
93
+ 0.767850 0.403228 0.532586
94
+ 0.768965 0.406563 0.531468
95
+ 0.770080 0.409898 0.530357
96
+ 0.771197 0.413225 0.529252
97
+ 0.772302 0.416545 0.528136
98
+ 0.773408 0.419864 0.527036
99
+ 0.774514 0.423171 0.525928
100
+ 0.775620 0.426487 0.524822
101
+ 0.776727 0.429800 0.523723
102
+ 0.777826 0.433105 0.522621
103
+ 0.778921 0.436413 0.521521
104
+ 0.780016 0.439713 0.520427
105
+ 0.781110 0.443016 0.519342
106
+ 0.782202 0.446308 0.518256
107
+ 0.783285 0.449611 0.517171
108
+ 0.784373 0.452911 0.516077
109
+ 0.785450 0.456202 0.515007
110
+ 0.786526 0.459505 0.513939
111
+ 0.787590 0.462792 0.512865
112
+ 0.788657 0.466096 0.511800
113
+ 0.789713 0.469411 0.510744
114
+ 0.790763 0.472703 0.509696
115
+ 0.791807 0.476015 0.508661
116
+ 0.792845 0.479325 0.507622
117
+ 0.793877 0.482635 0.506589
118
+ 0.794892 0.485949 0.505565
119
+ 0.795900 0.489268 0.504572
120
+ 0.796901 0.492594 0.503560
121
+ 0.797894 0.495924 0.502571
122
+ 0.798879 0.499261 0.501599
123
+ 0.799853 0.502601 0.500622
124
+ 0.800811 0.505942 0.499654
125
+ 0.801763 0.509301 0.498715
126
+ 0.802706 0.512652 0.497778
127
+ 0.803641 0.516005 0.496832
128
+ 0.804568 0.519378 0.495907
129
+ 0.805481 0.522745 0.495000
130
+ 0.806395 0.526120 0.494092
131
+ 0.807296 0.529496 0.493183
132
+ 0.808190 0.532873 0.492294
133
+ 0.809081 0.536254 0.491419
134
+ 0.809960 0.539633 0.490532
135
+ 0.810839 0.543029 0.489643
136
+ 0.811716 0.546423 0.488777
137
+ 0.812583 0.549811 0.487916
138
+ 0.813449 0.553199 0.487046
139
+ 0.814314 0.556601 0.486178
140
+ 0.815178 0.560003 0.485315
141
+ 0.816042 0.563405 0.484456
142
+ 0.816898 0.566806 0.483600
143
+ 0.817752 0.570200 0.482748
144
+ 0.818608 0.573611 0.481898
145
+ 0.819464 0.577019 0.481035
146
+ 0.820320 0.580426 0.480189
147
+ 0.821177 0.583832 0.479337
148
+ 0.822036 0.587241 0.478479
149
+ 0.822888 0.590654 0.477626
150
+ 0.823741 0.594071 0.476774
151
+ 0.824596 0.597489 0.475924
152
+ 0.825452 0.600903 0.475075
153
+ 0.826310 0.604330 0.474213
154
+ 0.827167 0.607752 0.473350
155
+ 0.828020 0.611173 0.472504
156
+ 0.828883 0.614590 0.471655
157
+ 0.829740 0.618022 0.470796
158
+ 0.830598 0.621451 0.469943
159
+ 0.831459 0.624886 0.469087
160
+ 0.832315 0.628325 0.468218
161
+ 0.833174 0.631759 0.467368
162
+ 0.834038 0.635197 0.466506
163
+ 0.834897 0.638641 0.465638
164
+ 0.835759 0.642088 0.464790
165
+ 0.836622 0.645532 0.463931
166
+ 0.837488 0.648990 0.463055
167
+ 0.838348 0.652439 0.462201
168
+ 0.839214 0.655902 0.461342
169
+ 0.840083 0.659357 0.460469
170
+ 0.840947 0.662826 0.459614
171
+ 0.841815 0.666286 0.458749
172
+ 0.842684 0.669764 0.457878
173
+ 0.843548 0.673236 0.457012
174
+ 0.844421 0.676714 0.456145
175
+ 0.845291 0.680187 0.455282
176
+ 0.846160 0.683675 0.454415
177
+ 0.847033 0.687166 0.453536
178
+ 0.847907 0.690654 0.452675
179
+ 0.848784 0.694149 0.451800
180
+ 0.849662 0.697652 0.450924
181
+ 0.850534 0.701158 0.450049
182
+ 0.851410 0.704667 0.449178
183
+ 0.852296 0.708180 0.448296
184
+ 0.853170 0.711699 0.447413
185
+ 0.854049 0.715220 0.446541
186
+ 0.854936 0.718742 0.445655
187
+ 0.855818 0.722269 0.444788
188
+ 0.856699 0.725811 0.443905
189
+ 0.857584 0.729347 0.443021
190
+ 0.858470 0.732893 0.442142
191
+ 0.859359 0.736436 0.441247
192
+ 0.860250 0.739997 0.440361
193
+ 0.861136 0.743552 0.439474
194
+ 0.862032 0.747115 0.438584
195
+ 0.862924 0.750684 0.437706
196
+ 0.863818 0.754257 0.436810
197
+ 0.864708 0.757833 0.435919
198
+ 0.865604 0.761413 0.435028
199
+ 0.866502 0.765006 0.434120
200
+ 0.867400 0.768593 0.433228
201
+ 0.868307 0.772195 0.432343
202
+ 0.869206 0.775798 0.431443
203
+ 0.870103 0.779408 0.430538
204
+ 0.871012 0.783023 0.429635
205
+ 0.871923 0.786651 0.428733
206
+ 0.872831 0.790273 0.427834
207
+ 0.873742 0.793911 0.426929
208
+ 0.874658 0.797545 0.426015
209
+ 0.875582 0.801192 0.425119
210
+ 0.876504 0.804847 0.424205
211
+ 0.877438 0.808510 0.423294
212
+ 0.878381 0.812177 0.422386
213
+ 0.879330 0.815859 0.421480
214
+ 0.880295 0.819541 0.420578
215
+ 0.881278 0.823243 0.419683
216
+ 0.882276 0.826956 0.418775
217
+ 0.883302 0.830680 0.417880
218
+ 0.884356 0.834420 0.416995
219
+ 0.885442 0.838174 0.416101
220
+ 0.886573 0.841950 0.415222
221
+ 0.887744 0.845741 0.414352
222
+ 0.888981 0.849563 0.413497
223
+ 0.890275 0.853401 0.412658
224
+ 0.891647 0.857274 0.411817
225
+ 0.893098 0.861176 0.411008
226
+ 0.894649 0.865109 0.410221
227
+ 0.896296 0.869084 0.409443
228
+ 0.898055 0.873088 0.408695
229
+ 0.899941 0.877132 0.407976
230
+ 0.901952 0.881224 0.407286
231
+ 0.904103 0.885355 0.406631
232
+ 0.906404 0.889529 0.406013
233
+ 0.908850 0.893747 0.405420
234
+ 0.911455 0.898012 0.404859
235
+ 0.914220 0.902322 0.404346
236
+ 0.917142 0.906675 0.403876
237
+ 0.920217 0.911070 0.403439
238
+ 0.923457 0.915502 0.403034
239
+ 0.926841 0.919982 0.402665
240
+ 0.930380 0.924494 0.402333
241
+ 0.934052 0.929044 0.402037
242
+ 0.937866 0.933626 0.401778
243
+ 0.941799 0.938244 0.401552
244
+ 0.945848 0.942888 0.401355
245
+ 0.950004 0.947555 0.401183
246
+ 0.954258 0.952243 0.401033
247
+ 0.958599 0.956957 0.400902
248
+ 0.963014 0.961688 0.400787
249
+ 0.967502 0.966439 0.400686
250
+ 0.972046 0.971205 0.400598
251
+ 0.976641 0.975983 0.400519
252
+ 0.981286 0.980779 0.400448
253
+ 0.985967 0.985584 0.400383
254
+ 0.990680 0.990397 0.400321
255
+ 0.995418 0.995218 0.400262
256
+ 1.000000 1.000000 0.400203