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.621082 0.690182 0.999507
2
+ 0.612157 0.689228 0.995374
3
+ 0.603202 0.688250 0.991239
4
+ 0.594200 0.687257 0.987092
5
+ 0.585165 0.686248 0.982922
6
+ 0.576088 0.685222 0.978733
7
+ 0.566961 0.684166 0.974524
8
+ 0.557791 0.683098 0.970288
9
+ 0.548590 0.681992 0.966016
10
+ 0.539327 0.680859 0.961704
11
+ 0.530034 0.679691 0.957350
12
+ 0.520687 0.678484 0.952942
13
+ 0.511295 0.677230 0.948466
14
+ 0.501863 0.675908 0.943923
15
+ 0.492368 0.674526 0.939297
16
+ 0.482832 0.673075 0.934574
17
+ 0.473239 0.671530 0.929751
18
+ 0.463610 0.669898 0.924806
19
+ 0.453931 0.668152 0.919735
20
+ 0.444213 0.666275 0.914518
21
+ 0.434440 0.664271 0.909136
22
+ 0.424645 0.662120 0.903586
23
+ 0.414818 0.659791 0.897845
24
+ 0.404975 0.657289 0.891905
25
+ 0.395137 0.654579 0.885750
26
+ 0.385296 0.651674 0.879368
27
+ 0.375493 0.648536 0.872757
28
+ 0.365742 0.645164 0.865903
29
+ 0.356059 0.641552 0.858801
30
+ 0.346453 0.637692 0.851451
31
+ 0.336982 0.633574 0.843855
32
+ 0.327642 0.629189 0.836017
33
+ 0.318487 0.624551 0.827937
34
+ 0.309539 0.619657 0.819628
35
+ 0.300784 0.614497 0.811108
36
+ 0.292309 0.609115 0.802379
37
+ 0.284098 0.603485 0.793470
38
+ 0.276205 0.597634 0.784386
39
+ 0.268595 0.591580 0.775143
40
+ 0.261308 0.585335 0.765780
41
+ 0.254368 0.578908 0.756296
42
+ 0.247753 0.572328 0.746719
43
+ 0.241464 0.565596 0.737066
44
+ 0.235515 0.558748 0.727351
45
+ 0.229842 0.551802 0.717600
46
+ 0.224503 0.544750 0.707805
47
+ 0.219485 0.537628 0.697998
48
+ 0.214694 0.530433 0.688190
49
+ 0.210172 0.523193 0.678377
50
+ 0.205889 0.515897 0.668578
51
+ 0.201771 0.508598 0.658787
52
+ 0.197878 0.501258 0.649030
53
+ 0.194172 0.493903 0.639287
54
+ 0.190556 0.486541 0.629572
55
+ 0.187112 0.479181 0.619898
56
+ 0.183752 0.471826 0.610241
57
+ 0.180500 0.464474 0.600622
58
+ 0.177365 0.457117 0.591037
59
+ 0.174264 0.449788 0.581483
60
+ 0.171224 0.442474 0.571966
61
+ 0.168242 0.435172 0.562486
62
+ 0.165292 0.427884 0.553021
63
+ 0.162439 0.420608 0.543603
64
+ 0.159545 0.413370 0.534210
65
+ 0.156739 0.406147 0.524856
66
+ 0.153905 0.398932 0.515524
67
+ 0.151122 0.391757 0.506230
68
+ 0.148346 0.384591 0.496972
69
+ 0.145641 0.377462 0.487751
70
+ 0.142879 0.370343 0.478544
71
+ 0.140138 0.363257 0.469389
72
+ 0.137466 0.356204 0.460239
73
+ 0.134777 0.349162 0.451147
74
+ 0.132079 0.342150 0.442085
75
+ 0.129401 0.335173 0.433042
76
+ 0.126735 0.328195 0.424036
77
+ 0.124090 0.321259 0.415071
78
+ 0.121456 0.314347 0.406144
79
+ 0.118899 0.307460 0.397234
80
+ 0.116316 0.300608 0.388376
81
+ 0.113731 0.293781 0.379546
82
+ 0.111187 0.286980 0.370748
83
+ 0.108613 0.280217 0.362004
84
+ 0.106159 0.273497 0.353280
85
+ 0.103670 0.266776 0.344594
86
+ 0.101183 0.260108 0.335952
87
+ 0.098776 0.253467 0.327342
88
+ 0.096347 0.246850 0.318783
89
+ 0.094059 0.240264 0.310267
90
+ 0.091788 0.233727 0.301758
91
+ 0.089506 0.227245 0.293318
92
+ 0.087341 0.220800 0.284914
93
+ 0.085142 0.214360 0.276576
94
+ 0.083069 0.207981 0.268249
95
+ 0.081098 0.201631 0.259992
96
+ 0.079130 0.195361 0.251781
97
+ 0.077286 0.189136 0.243589
98
+ 0.075571 0.182943 0.235502
99
+ 0.073993 0.176835 0.227434
100
+ 0.072410 0.170785 0.219433
101
+ 0.071045 0.164795 0.211500
102
+ 0.069767 0.158901 0.203628
103
+ 0.068618 0.153040 0.195818
104
+ 0.067560 0.147319 0.188124
105
+ 0.066665 0.141671 0.180452
106
+ 0.065923 0.136076 0.172917
107
+ 0.065339 0.130695 0.165458
108
+ 0.064911 0.125349 0.158169
109
+ 0.064636 0.120132 0.150946
110
+ 0.064517 0.115070 0.143889
111
+ 0.064554 0.110222 0.136957
112
+ 0.064749 0.105427 0.130230
113
+ 0.065100 0.100849 0.123569
114
+ 0.065383 0.096469 0.117170
115
+ 0.065574 0.092338 0.111008
116
+ 0.065892 0.088201 0.104982
117
+ 0.066388 0.084134 0.099288
118
+ 0.067108 0.080051 0.093829
119
+ 0.068193 0.076099 0.088470
120
+ 0.069720 0.072283 0.083025
121
+ 0.071639 0.068654 0.077544
122
+ 0.073978 0.065058 0.072110
123
+ 0.076596 0.061657 0.066651
124
+ 0.079637 0.058550 0.061133
125
+ 0.082963 0.055666 0.055745
126
+ 0.086537 0.052997 0.050336
127
+ 0.090315 0.050699 0.045040
128
+ 0.094260 0.048753 0.039773
129
+ 0.098319 0.047041 0.034683
130
+ 0.102458 0.045624 0.030074
131
+ 0.106732 0.044705 0.026012
132
+ 0.110986 0.043972 0.022379
133
+ 0.115245 0.043596 0.019150
134
+ 0.119547 0.043567 0.016299
135
+ 0.123812 0.043861 0.013797
136
+ 0.128105 0.044459 0.011588
137
+ 0.132315 0.045229 0.009531
138
+ 0.136451 0.046164 0.007895
139
+ 0.140635 0.047374 0.006502
140
+ 0.144884 0.048634 0.005327
141
+ 0.149230 0.049836 0.004346
142
+ 0.153685 0.050997 0.003537
143
+ 0.158309 0.052130 0.002882
144
+ 0.163014 0.053218 0.002363
145
+ 0.167811 0.054240 0.001963
146
+ 0.172736 0.055172 0.001669
147
+ 0.177801 0.056018 0.001469
148
+ 0.182863 0.056820 0.001340
149
+ 0.188058 0.057574 0.001262
150
+ 0.193233 0.058514 0.001226
151
+ 0.198463 0.059550 0.001227
152
+ 0.203778 0.060501 0.001260
153
+ 0.209092 0.061486 0.001322
154
+ 0.214470 0.062710 0.001412
155
+ 0.219897 0.063823 0.001529
156
+ 0.225345 0.065027 0.001675
157
+ 0.230856 0.066297 0.001853
158
+ 0.236422 0.067645 0.002068
159
+ 0.242016 0.069092 0.002325
160
+ 0.247681 0.070458 0.002632
161
+ 0.253390 0.071986 0.002998
162
+ 0.259176 0.073640 0.003435
163
+ 0.264997 0.075237 0.003955
164
+ 0.270934 0.076965 0.004571
165
+ 0.276928 0.078822 0.005301
166
+ 0.283017 0.080819 0.006161
167
+ 0.289196 0.082879 0.007171
168
+ 0.295466 0.085075 0.008349
169
+ 0.301858 0.087460 0.009726
170
+ 0.308387 0.089912 0.011455
171
+ 0.315024 0.092530 0.013324
172
+ 0.321806 0.095392 0.015413
173
+ 0.328738 0.098396 0.017780
174
+ 0.335805 0.101580 0.020449
175
+ 0.343036 0.104977 0.023440
176
+ 0.350413 0.108640 0.026771
177
+ 0.357947 0.112564 0.030456
178
+ 0.365629 0.116658 0.034571
179
+ 0.373470 0.120971 0.039115
180
+ 0.381463 0.125606 0.043693
181
+ 0.389583 0.130457 0.048471
182
+ 0.397845 0.135474 0.053136
183
+ 0.406220 0.140795 0.057848
184
+ 0.414690 0.146274 0.062715
185
+ 0.423229 0.151979 0.067685
186
+ 0.431837 0.157906 0.073044
187
+ 0.440444 0.164028 0.078620
188
+ 0.449085 0.170269 0.084644
189
+ 0.457704 0.176666 0.090869
190
+ 0.466314 0.183213 0.097335
191
+ 0.474900 0.189888 0.104064
192
+ 0.483420 0.196677 0.111039
193
+ 0.491910 0.203516 0.118190
194
+ 0.500322 0.210433 0.125501
195
+ 0.508690 0.217425 0.132983
196
+ 0.516977 0.224432 0.140623
197
+ 0.525197 0.231543 0.148349
198
+ 0.533349 0.238624 0.156261
199
+ 0.541440 0.245755 0.164233
200
+ 0.549481 0.252923 0.172265
201
+ 0.557462 0.260091 0.180403
202
+ 0.565378 0.267255 0.188640
203
+ 0.573272 0.274461 0.196924
204
+ 0.581112 0.281673 0.205237
205
+ 0.588920 0.288894 0.213625
206
+ 0.596716 0.296114 0.222054
207
+ 0.604484 0.303345 0.230529
208
+ 0.612228 0.310617 0.239052
209
+ 0.619976 0.317867 0.247618
210
+ 0.627708 0.325132 0.256189
211
+ 0.635438 0.332443 0.264815
212
+ 0.643173 0.339745 0.273490
213
+ 0.650917 0.347064 0.282179
214
+ 0.658661 0.354395 0.290887
215
+ 0.666419 0.361751 0.299640
216
+ 0.674194 0.369121 0.308415
217
+ 0.681975 0.376518 0.317219
218
+ 0.689783 0.383920 0.326043
219
+ 0.697596 0.391354 0.334929
220
+ 0.705434 0.398794 0.343796
221
+ 0.713288 0.406271 0.352720
222
+ 0.721158 0.413757 0.361662
223
+ 0.729054 0.421259 0.370618
224
+ 0.736968 0.428796 0.379616
225
+ 0.744900 0.436349 0.388639
226
+ 0.752851 0.443923 0.397680
227
+ 0.760831 0.451512 0.406747
228
+ 0.768821 0.459124 0.415838
229
+ 0.776844 0.466756 0.424962
230
+ 0.784879 0.474407 0.434092
231
+ 0.792935 0.482080 0.443269
232
+ 0.801009 0.489763 0.452465
233
+ 0.809110 0.497486 0.461672
234
+ 0.817222 0.505207 0.470910
235
+ 0.825358 0.512962 0.480170
236
+ 0.833517 0.520732 0.489445
237
+ 0.841692 0.528527 0.498763
238
+ 0.849885 0.536335 0.508096
239
+ 0.858092 0.544161 0.517448
240
+ 0.866324 0.552013 0.526825
241
+ 0.874568 0.559879 0.536218
242
+ 0.882829 0.567761 0.545643
243
+ 0.891110 0.575670 0.555082
244
+ 0.899407 0.583585 0.564550
245
+ 0.907716 0.591530 0.574038
246
+ 0.916031 0.599492 0.583552
247
+ 0.924368 0.607473 0.593095
248
+ 0.932714 0.615460 0.602649
249
+ 0.941076 0.623483 0.612229
250
+ 0.949447 0.631512 0.621832
251
+ 0.957832 0.639563 0.631467
252
+ 0.966219 0.647628 0.641113
253
+ 0.974619 0.655718 0.650792
254
+ 0.983030 0.663823 0.660487
255
+ 0.991448 0.671939 0.670216
256
+ 0.999873 0.680072 0.679950
@@ -0,0 +1,256 @@
1
+ 0.170813 0.100272 0.299848
2
+ 0.170748 0.106342 0.305576
3
+ 0.170609 0.112289 0.311297
4
+ 0.170403 0.118210 0.317049
5
+ 0.170134 0.124041 0.322824
6
+ 0.169811 0.129949 0.328601
7
+ 0.169435 0.135723 0.334405
8
+ 0.168997 0.141581 0.340213
9
+ 0.168498 0.147385 0.346028
10
+ 0.167974 0.153166 0.351874
11
+ 0.167445 0.159000 0.357753
12
+ 0.166877 0.164801 0.363613
13
+ 0.166257 0.170632 0.369507
14
+ 0.165615 0.176451 0.375412
15
+ 0.164988 0.182307 0.381350
16
+ 0.164375 0.188220 0.387280
17
+ 0.163729 0.194112 0.393244
18
+ 0.163063 0.199986 0.399218
19
+ 0.162410 0.205964 0.405225
20
+ 0.161776 0.211935 0.411241
21
+ 0.161137 0.217920 0.417286
22
+ 0.160495 0.223934 0.423329
23
+ 0.159913 0.229986 0.429411
24
+ 0.159401 0.236112 0.435511
25
+ 0.158950 0.242231 0.441620
26
+ 0.158561 0.248420 0.447736
27
+ 0.158251 0.254627 0.453885
28
+ 0.158049 0.260865 0.460036
29
+ 0.157989 0.267147 0.466202
30
+ 0.158100 0.273510 0.472379
31
+ 0.158406 0.279890 0.478549
32
+ 0.158920 0.286307 0.484715
33
+ 0.159665 0.292797 0.490895
34
+ 0.160748 0.299339 0.497035
35
+ 0.162160 0.305921 0.503159
36
+ 0.163910 0.312516 0.509272
37
+ 0.165993 0.319192 0.515336
38
+ 0.168538 0.325884 0.521367
39
+ 0.171487 0.332648 0.527351
40
+ 0.174901 0.339419 0.533271
41
+ 0.178739 0.346199 0.539135
42
+ 0.182999 0.353034 0.544930
43
+ 0.187764 0.359870 0.550650
44
+ 0.192881 0.366728 0.556286
45
+ 0.198422 0.373584 0.561860
46
+ 0.204385 0.380450 0.567340
47
+ 0.210653 0.387302 0.572743
48
+ 0.217273 0.394164 0.578054
49
+ 0.224158 0.401030 0.583302
50
+ 0.231360 0.407862 0.588471
51
+ 0.238748 0.414696 0.593581
52
+ 0.246367 0.421515 0.598619
53
+ 0.254181 0.428339 0.603610
54
+ 0.262132 0.435152 0.608546
55
+ 0.270240 0.441951 0.613423
56
+ 0.278444 0.448742 0.618281
57
+ 0.286742 0.455526 0.623102
58
+ 0.295150 0.462307 0.627893
59
+ 0.303628 0.469101 0.632663
60
+ 0.312163 0.475882 0.637417
61
+ 0.320788 0.482664 0.642159
62
+ 0.329439 0.489447 0.646891
63
+ 0.338110 0.496239 0.651618
64
+ 0.346851 0.503037 0.656342
65
+ 0.355617 0.509847 0.661055
66
+ 0.364396 0.516658 0.665779
67
+ 0.373217 0.523479 0.670506
68
+ 0.382061 0.530301 0.675225
69
+ 0.390941 0.537140 0.679949
70
+ 0.399821 0.543973 0.684683
71
+ 0.408741 0.550822 0.689427
72
+ 0.417677 0.557680 0.694160
73
+ 0.426626 0.564541 0.698909
74
+ 0.435605 0.571413 0.703666
75
+ 0.444595 0.578292 0.708426
76
+ 0.453590 0.585191 0.713186
77
+ 0.462609 0.592090 0.717959
78
+ 0.471661 0.598991 0.722729
79
+ 0.480705 0.605899 0.727513
80
+ 0.489775 0.612823 0.732306
81
+ 0.498868 0.619763 0.737095
82
+ 0.507973 0.626697 0.741893
83
+ 0.517088 0.633649 0.746699
84
+ 0.526218 0.640603 0.751514
85
+ 0.535355 0.647566 0.756326
86
+ 0.544519 0.654537 0.761149
87
+ 0.553689 0.661524 0.765979
88
+ 0.562886 0.668514 0.770814
89
+ 0.572084 0.675509 0.775651
90
+ 0.581296 0.682514 0.780498
91
+ 0.590525 0.689536 0.785353
92
+ 0.599774 0.696557 0.790209
93
+ 0.609036 0.703589 0.795074
94
+ 0.618302 0.710631 0.799949
95
+ 0.627585 0.717684 0.804822
96
+ 0.636886 0.724741 0.809705
97
+ 0.646192 0.731807 0.814590
98
+ 0.655519 0.738885 0.819482
99
+ 0.664852 0.745965 0.824383
100
+ 0.674206 0.753055 0.829293
101
+ 0.683568 0.760160 0.834202
102
+ 0.692951 0.767267 0.839111
103
+ 0.702332 0.774383 0.844025
104
+ 0.711736 0.781512 0.848944
105
+ 0.721141 0.788642 0.853854
106
+ 0.730566 0.795773 0.858767
107
+ 0.740000 0.802911 0.863676
108
+ 0.749428 0.810051 0.868568
109
+ 0.758875 0.817191 0.873433
110
+ 0.768316 0.824324 0.878277
111
+ 0.777764 0.831455 0.883079
112
+ 0.787200 0.838559 0.887829
113
+ 0.796616 0.845645 0.892512
114
+ 0.806017 0.852703 0.897100
115
+ 0.815381 0.859711 0.901565
116
+ 0.824692 0.866656 0.905885
117
+ 0.833942 0.873524 0.910014
118
+ 0.843089 0.880287 0.913910
119
+ 0.852117 0.886920 0.917522
120
+ 0.860974 0.893377 0.920781
121
+ 0.869624 0.899632 0.923647
122
+ 0.878009 0.905622 0.926025
123
+ 0.886061 0.911294 0.927850
124
+ 0.893702 0.916594 0.929054
125
+ 0.900863 0.921454 0.929562
126
+ 0.907460 0.925812 0.929310
127
+ 0.913404 0.929602 0.928248
128
+ 0.918623 0.932772 0.926345
129
+ 0.923067 0.935283 0.923586
130
+ 0.926673 0.937103 0.919971
131
+ 0.929429 0.938215 0.915537
132
+ 0.931330 0.938632 0.910342
133
+ 0.932392 0.938377 0.904431
134
+ 0.932660 0.937487 0.897896
135
+ 0.932188 0.936014 0.890812
136
+ 0.931046 0.934007 0.883261
137
+ 0.929296 0.931540 0.875321
138
+ 0.927022 0.928665 0.867058
139
+ 0.924297 0.925446 0.858541
140
+ 0.921186 0.921935 0.849823
141
+ 0.917759 0.918178 0.840943
142
+ 0.914062 0.914224 0.831943
143
+ 0.910150 0.910107 0.822845
144
+ 0.906063 0.905860 0.813677
145
+ 0.901837 0.901508 0.804466
146
+ 0.897507 0.897082 0.795212
147
+ 0.893086 0.892588 0.785938
148
+ 0.888605 0.888045 0.776645
149
+ 0.884072 0.883469 0.767334
150
+ 0.879495 0.878860 0.758028
151
+ 0.874893 0.874230 0.748712
152
+ 0.870261 0.869582 0.739405
153
+ 0.865614 0.864915 0.730086
154
+ 0.860943 0.860235 0.720766
155
+ 0.856252 0.855534 0.711456
156
+ 0.851534 0.850804 0.702131
157
+ 0.846790 0.846055 0.692818
158
+ 0.842017 0.841276 0.683482
159
+ 0.837197 0.836452 0.674142
160
+ 0.832324 0.831583 0.664785
161
+ 0.827389 0.826647 0.655416
162
+ 0.822383 0.821640 0.646020
163
+ 0.817280 0.816546 0.636606
164
+ 0.812078 0.811349 0.627148
165
+ 0.806758 0.806033 0.617663
166
+ 0.801293 0.800585 0.608152
167
+ 0.795679 0.794985 0.598591
168
+ 0.789900 0.789225 0.589002
169
+ 0.783941 0.783279 0.579401
170
+ 0.777783 0.777151 0.569761
171
+ 0.771426 0.770818 0.560132
172
+ 0.764862 0.764282 0.550498
173
+ 0.758093 0.757545 0.540889
174
+ 0.751125 0.750609 0.531329
175
+ 0.743954 0.743479 0.521826
176
+ 0.736605 0.736161 0.512424
177
+ 0.729094 0.728687 0.503123
178
+ 0.721431 0.721062 0.493968
179
+ 0.713649 0.713314 0.484948
180
+ 0.705759 0.705457 0.476109
181
+ 0.697780 0.697511 0.467440
182
+ 0.689747 0.689508 0.458953
183
+ 0.681656 0.681442 0.450653
184
+ 0.673548 0.673359 0.442544
185
+ 0.665420 0.665250 0.434605
186
+ 0.657294 0.657143 0.426845
187
+ 0.649168 0.649033 0.419245
188
+ 0.641048 0.640928 0.411788
189
+ 0.632958 0.632848 0.404468
190
+ 0.624883 0.624783 0.397274
191
+ 0.616836 0.616742 0.390185
192
+ 0.608813 0.608725 0.383206
193
+ 0.600802 0.600719 0.376299
194
+ 0.592833 0.592753 0.369453
195
+ 0.584878 0.584799 0.362677
196
+ 0.576950 0.576874 0.355964
197
+ 0.569037 0.568960 0.349284
198
+ 0.561156 0.561078 0.342655
199
+ 0.553294 0.553215 0.336042
200
+ 0.545463 0.545383 0.329488
201
+ 0.537650 0.537568 0.322942
202
+ 0.529852 0.529769 0.316424
203
+ 0.522068 0.521982 0.309933
204
+ 0.514328 0.514241 0.303442
205
+ 0.506587 0.506496 0.297009
206
+ 0.498882 0.498790 0.290561
207
+ 0.491202 0.491106 0.284151
208
+ 0.483518 0.483419 0.277769
209
+ 0.475880 0.475778 0.271386
210
+ 0.468247 0.468142 0.265028
211
+ 0.460641 0.460531 0.258705
212
+ 0.453069 0.452958 0.252389
213
+ 0.445503 0.445388 0.246078
214
+ 0.437978 0.437859 0.239808
215
+ 0.430459 0.430335 0.233535
216
+ 0.422959 0.422831 0.227320
217
+ 0.415497 0.415365 0.221113
218
+ 0.408053 0.407917 0.214890
219
+ 0.400645 0.400503 0.208725
220
+ 0.393233 0.393089 0.202566
221
+ 0.385855 0.385708 0.196466
222
+ 0.378514 0.378364 0.190337
223
+ 0.371184 0.371031 0.184261
224
+ 0.363889 0.363734 0.178237
225
+ 0.356626 0.356471 0.172181
226
+ 0.349373 0.349219 0.166190
227
+ 0.342153 0.342000 0.160207
228
+ 0.334967 0.334819 0.154299
229
+ 0.327777 0.327637 0.148403
230
+ 0.320649 0.320521 0.142577
231
+ 0.313525 0.313410 0.136759
232
+ 0.306440 0.306348 0.131029
233
+ 0.299374 0.299307 0.125311
234
+ 0.292330 0.292296 0.119650
235
+ 0.285315 0.285321 0.114061
236
+ 0.278356 0.278412 0.108536
237
+ 0.271400 0.271513 0.103142
238
+ 0.264491 0.264674 0.097785
239
+ 0.257606 0.257872 0.092474
240
+ 0.250762 0.251143 0.087347
241
+ 0.243936 0.244416 0.082262
242
+ 0.237196 0.237795 0.077192
243
+ 0.230424 0.231199 0.072349
244
+ 0.223734 0.224629 0.067628
245
+ 0.217087 0.218178 0.063025
246
+ 0.210464 0.211770 0.058419
247
+ 0.203943 0.205390 0.053781
248
+ 0.197487 0.199073 0.048969
249
+ 0.191145 0.192843 0.043546
250
+ 0.184939 0.186651 0.037943
251
+ 0.178822 0.180505 0.031907
252
+ 0.172805 0.174445 0.026044
253
+ 0.166947 0.168396 0.020145
254
+ 0.161186 0.162428 0.014202
255
+ 0.155539 0.156487 0.008001
256
+ 0.150046 0.150558 0.001930