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.011370 0.073240 0.148284
2
+ 0.013965 0.079062 0.155370
3
+ 0.015899 0.084718 0.162521
4
+ 0.017234 0.090035 0.169728
5
+ 0.018046 0.095138 0.176970
6
+ 0.018987 0.100000 0.184274
7
+ 0.019970 0.104911 0.191606
8
+ 0.021000 0.109963 0.198961
9
+ 0.022084 0.114884 0.206390
10
+ 0.023227 0.119924 0.213776
11
+ 0.024440 0.124981 0.221213
12
+ 0.025732 0.130104 0.228657
13
+ 0.027114 0.135178 0.236104
14
+ 0.028602 0.140291 0.243540
15
+ 0.030209 0.145478 0.251025
16
+ 0.031951 0.150619 0.258480
17
+ 0.033828 0.155833 0.265955
18
+ 0.036137 0.161049 0.273414
19
+ 0.038425 0.166276 0.280837
20
+ 0.040951 0.171536 0.288282
21
+ 0.043537 0.176819 0.295697
22
+ 0.046467 0.182111 0.303085
23
+ 0.049594 0.187473 0.310472
24
+ 0.052785 0.192789 0.317790
25
+ 0.056373 0.198137 0.325072
26
+ 0.060123 0.203522 0.332335
27
+ 0.064059 0.208893 0.339525
28
+ 0.068323 0.214290 0.346641
29
+ 0.072795 0.219688 0.353691
30
+ 0.077499 0.225063 0.360661
31
+ 0.082595 0.230463 0.367551
32
+ 0.087912 0.235873 0.374351
33
+ 0.093441 0.241239 0.381025
34
+ 0.099307 0.246590 0.387560
35
+ 0.105413 0.251937 0.393974
36
+ 0.111813 0.257230 0.400242
37
+ 0.118433 0.262485 0.406341
38
+ 0.125243 0.267672 0.412263
39
+ 0.132308 0.272835 0.417985
40
+ 0.139522 0.277918 0.423506
41
+ 0.146980 0.282919 0.428820
42
+ 0.154569 0.287803 0.433888
43
+ 0.162316 0.292606 0.438725
44
+ 0.170138 0.297302 0.443314
45
+ 0.178074 0.301843 0.447622
46
+ 0.186034 0.306290 0.451681
47
+ 0.194038 0.310565 0.455448
48
+ 0.202008 0.314663 0.458938
49
+ 0.210000 0.318627 0.462138
50
+ 0.217939 0.322418 0.465058
51
+ 0.225808 0.326006 0.467698
52
+ 0.233544 0.329454 0.470063
53
+ 0.241213 0.332694 0.472151
54
+ 0.248744 0.335738 0.473965
55
+ 0.256094 0.338600 0.475542
56
+ 0.263329 0.341290 0.476858
57
+ 0.270378 0.343785 0.477950
58
+ 0.277238 0.346109 0.478825
59
+ 0.283919 0.348279 0.479499
60
+ 0.290422 0.350279 0.479979
61
+ 0.296766 0.352104 0.480280
62
+ 0.302897 0.353796 0.480422
63
+ 0.308898 0.355368 0.480419
64
+ 0.314684 0.356787 0.480285
65
+ 0.320355 0.358086 0.480032
66
+ 0.325830 0.359270 0.479670
67
+ 0.331185 0.360355 0.479208
68
+ 0.336416 0.361358 0.478660
69
+ 0.341527 0.362272 0.478039
70
+ 0.346516 0.363098 0.477353
71
+ 0.351412 0.363861 0.476608
72
+ 0.356223 0.364562 0.475814
73
+ 0.360933 0.365208 0.474974
74
+ 0.365601 0.365807 0.474080
75
+ 0.370195 0.366362 0.473154
76
+ 0.374753 0.366868 0.472216
77
+ 0.379261 0.367335 0.471236
78
+ 0.383746 0.367781 0.470232
79
+ 0.388198 0.368207 0.469210
80
+ 0.392637 0.368608 0.468151
81
+ 0.397066 0.368982 0.467095
82
+ 0.401502 0.369337 0.466002
83
+ 0.405945 0.369677 0.464911
84
+ 0.410391 0.370008 0.463798
85
+ 0.414838 0.370329 0.462661
86
+ 0.419318 0.370641 0.461530
87
+ 0.423806 0.370946 0.460367
88
+ 0.428335 0.371246 0.459212
89
+ 0.432886 0.371542 0.458027
90
+ 0.437471 0.371834 0.456836
91
+ 0.442084 0.372124 0.455637
92
+ 0.446721 0.372413 0.454430
93
+ 0.451402 0.372700 0.453200
94
+ 0.456112 0.372987 0.451972
95
+ 0.460861 0.373274 0.450722
96
+ 0.465644 0.373563 0.449468
97
+ 0.470480 0.373853 0.448196
98
+ 0.475346 0.374142 0.446922
99
+ 0.480239 0.374430 0.445630
100
+ 0.485169 0.374716 0.444348
101
+ 0.490149 0.375002 0.443038
102
+ 0.495165 0.375292 0.441725
103
+ 0.500209 0.375588 0.440391
104
+ 0.505298 0.375890 0.439053
105
+ 0.510431 0.376194 0.437723
106
+ 0.515595 0.376498 0.436363
107
+ 0.520808 0.376800 0.435003
108
+ 0.526060 0.377102 0.433614
109
+ 0.531345 0.377408 0.432248
110
+ 0.536679 0.377717 0.430847
111
+ 0.542039 0.378031 0.429441
112
+ 0.547450 0.378347 0.428030
113
+ 0.552900 0.378667 0.426602
114
+ 0.558389 0.378991 0.425175
115
+ 0.563937 0.379317 0.423722
116
+ 0.569504 0.379648 0.422267
117
+ 0.575126 0.379984 0.420807
118
+ 0.580790 0.380325 0.419345
119
+ 0.586496 0.380672 0.417860
120
+ 0.592251 0.381023 0.416371
121
+ 0.598033 0.381375 0.414871
122
+ 0.603878 0.381729 0.413368
123
+ 0.609753 0.382092 0.411849
124
+ 0.615676 0.382468 0.410336
125
+ 0.621644 0.382858 0.408797
126
+ 0.627665 0.383257 0.407260
127
+ 0.633729 0.383660 0.405726
128
+ 0.639835 0.384073 0.404170
129
+ 0.645983 0.384501 0.402616
130
+ 0.652186 0.384947 0.401076
131
+ 0.658430 0.385413 0.399501
132
+ 0.664720 0.385899 0.397959
133
+ 0.671065 0.386410 0.396398
134
+ 0.677455 0.386948 0.394848
135
+ 0.683877 0.387517 0.393300
136
+ 0.690355 0.388122 0.391767
137
+ 0.696877 0.388769 0.390232
138
+ 0.703442 0.389446 0.388729
139
+ 0.710045 0.390171 0.387222
140
+ 0.716690 0.390967 0.385745
141
+ 0.723361 0.391808 0.384300
142
+ 0.730077 0.392714 0.382885
143
+ 0.736813 0.393699 0.381501
144
+ 0.743578 0.394768 0.380152
145
+ 0.750358 0.395931 0.378850
146
+ 0.757152 0.397174 0.377604
147
+ 0.763951 0.398543 0.376424
148
+ 0.770753 0.400018 0.375287
149
+ 0.777544 0.401621 0.374250
150
+ 0.784314 0.403371 0.373272
151
+ 0.791048 0.405253 0.372388
152
+ 0.797746 0.407293 0.371603
153
+ 0.804395 0.409503 0.370926
154
+ 0.810973 0.411881 0.370362
155
+ 0.817473 0.414442 0.369920
156
+ 0.823879 0.417202 0.369609
157
+ 0.830181 0.420143 0.369436
158
+ 0.836353 0.423287 0.369406
159
+ 0.842390 0.426648 0.369526
160
+ 0.848263 0.430214 0.369804
161
+ 0.853968 0.433978 0.370247
162
+ 0.859490 0.437974 0.370858
163
+ 0.864803 0.442161 0.371642
164
+ 0.869899 0.446539 0.372604
165
+ 0.874767 0.451122 0.373748
166
+ 0.879389 0.455884 0.375054
167
+ 0.883761 0.460820 0.376553
168
+ 0.887860 0.465922 0.378203
169
+ 0.891692 0.471184 0.380033
170
+ 0.895246 0.476567 0.382020
171
+ 0.898512 0.482077 0.384174
172
+ 0.901498 0.487690 0.386470
173
+ 0.904197 0.493374 0.388928
174
+ 0.906618 0.499143 0.391507
175
+ 0.908756 0.504965 0.394202
176
+ 0.910625 0.510820 0.397017
177
+ 0.912225 0.516705 0.399943
178
+ 0.913575 0.522593 0.402968
179
+ 0.914675 0.528483 0.406078
180
+ 0.915540 0.534347 0.409251
181
+ 0.916190 0.540189 0.412504
182
+ 0.916636 0.546003 0.415797
183
+ 0.916889 0.551762 0.419152
184
+ 0.916963 0.557475 0.422534
185
+ 0.916874 0.563131 0.425965
186
+ 0.916636 0.568719 0.429427
187
+ 0.916264 0.574252 0.432909
188
+ 0.915775 0.579733 0.436411
189
+ 0.915186 0.585140 0.439927
190
+ 0.914509 0.590475 0.443461
191
+ 0.913754 0.595759 0.447003
192
+ 0.912931 0.600980 0.450565
193
+ 0.912059 0.606142 0.454139
194
+ 0.911148 0.611261 0.457722
195
+ 0.910211 0.616321 0.461331
196
+ 0.909249 0.621333 0.464954
197
+ 0.908289 0.626308 0.468602
198
+ 0.907326 0.631251 0.472281
199
+ 0.906374 0.636160 0.475986
200
+ 0.905445 0.641036 0.479732
201
+ 0.904539 0.645900 0.483509
202
+ 0.903673 0.650752 0.487354
203
+ 0.902853 0.655593 0.491251
204
+ 0.902079 0.660426 0.495194
205
+ 0.901366 0.665267 0.499209
206
+ 0.900717 0.670121 0.503303
207
+ 0.900141 0.674976 0.507492
208
+ 0.899641 0.679851 0.511757
209
+ 0.899223 0.684756 0.516121
210
+ 0.898892 0.689692 0.520598
211
+ 0.898654 0.694648 0.525185
212
+ 0.898515 0.699650 0.529889
213
+ 0.898480 0.704692 0.534713
214
+ 0.898551 0.709779 0.539663
215
+ 0.898735 0.714907 0.544759
216
+ 0.899033 0.720090 0.549990
217
+ 0.899448 0.725327 0.555359
218
+ 0.899981 0.730608 0.560882
219
+ 0.900635 0.735945 0.566560
220
+ 0.901414 0.741342 0.572384
221
+ 0.902319 0.746799 0.578354
222
+ 0.903350 0.752305 0.584490
223
+ 0.904502 0.757873 0.590772
224
+ 0.905785 0.763489 0.597217
225
+ 0.907189 0.769161 0.603808
226
+ 0.908714 0.774888 0.610543
227
+ 0.910365 0.780666 0.617427
228
+ 0.912129 0.786497 0.624458
229
+ 0.914016 0.792365 0.631624
230
+ 0.916005 0.798281 0.638924
231
+ 0.918116 0.804242 0.646354
232
+ 0.920324 0.810234 0.653908
233
+ 0.922640 0.816274 0.661585
234
+ 0.925046 0.822341 0.669369
235
+ 0.927548 0.828436 0.677263
236
+ 0.930142 0.834563 0.685252
237
+ 0.932811 0.840714 0.693336
238
+ 0.935565 0.846882 0.701504
239
+ 0.938387 0.853077 0.709763
240
+ 0.941274 0.859286 0.718088
241
+ 0.944228 0.865508 0.726484
242
+ 0.947235 0.871746 0.734943
243
+ 0.950290 0.877987 0.743453
244
+ 0.953394 0.884237 0.752011
245
+ 0.956533 0.890486 0.760613
246
+ 0.959709 0.896742 0.769246
247
+ 0.962913 0.902994 0.777919
248
+ 0.966140 0.909240 0.786616
249
+ 0.969388 0.915482 0.795324
250
+ 0.972654 0.921726 0.804056
251
+ 0.975921 0.927954 0.812794
252
+ 0.979202 0.934179 0.821550
253
+ 0.982484 0.940402 0.830308
254
+ 0.985762 0.946610 0.839070
255
+ 0.989038 0.952817 0.847836
256
+ 0.992307 0.959017 0.856609
@@ -0,0 +1,256 @@
1
+ 0.013420 0.075817 0.152989
2
+ 0.015121 0.080634 0.159960
3
+ 0.016255 0.085228 0.167073
4
+ 0.016803 0.089716 0.174205
5
+ 0.016961 0.093990 0.181411
6
+ 0.017336 0.098133 0.188743
7
+ 0.017703 0.102263 0.196117
8
+ 0.018058 0.106514 0.203551
9
+ 0.018404 0.110739 0.211044
10
+ 0.018742 0.114975 0.218604
11
+ 0.019071 0.119327 0.226230
12
+ 0.019395 0.123667 0.233875
13
+ 0.019714 0.128112 0.241609
14
+ 0.020031 0.132548 0.249362
15
+ 0.020346 0.137020 0.257176
16
+ 0.020663 0.141543 0.265003
17
+ 0.020984 0.146080 0.272884
18
+ 0.021310 0.150645 0.280769
19
+ 0.021644 0.155250 0.288708
20
+ 0.021990 0.159855 0.296649
21
+ 0.022349 0.164550 0.304590
22
+ 0.022726 0.169252 0.312535
23
+ 0.023123 0.173933 0.320514
24
+ 0.023543 0.178678 0.328453
25
+ 0.023992 0.183406 0.336383
26
+ 0.024471 0.188212 0.344302
27
+ 0.024987 0.192980 0.352204
28
+ 0.025542 0.197784 0.360075
29
+ 0.026143 0.202606 0.367909
30
+ 0.026794 0.207462 0.375703
31
+ 0.027501 0.212323 0.383455
32
+ 0.028270 0.217191 0.391145
33
+ 0.029108 0.222061 0.398763
34
+ 0.030020 0.226972 0.406327
35
+ 0.031016 0.231888 0.413802
36
+ 0.032099 0.236810 0.421189
37
+ 0.033282 0.241728 0.428497
38
+ 0.034665 0.246655 0.435701
39
+ 0.036177 0.251620 0.442789
40
+ 0.037711 0.256558 0.449756
41
+ 0.039376 0.261524 0.456594
42
+ 0.041190 0.266493 0.463294
43
+ 0.042961 0.271453 0.469870
44
+ 0.045066 0.276447 0.476271
45
+ 0.047153 0.281406 0.482514
46
+ 0.049396 0.286374 0.488587
47
+ 0.051602 0.291371 0.494481
48
+ 0.053996 0.296335 0.500174
49
+ 0.056570 0.301290 0.505677
50
+ 0.059155 0.306271 0.510984
51
+ 0.061738 0.311207 0.516069
52
+ 0.064526 0.316148 0.520947
53
+ 0.067354 0.321058 0.525594
54
+ 0.070218 0.325940 0.530009
55
+ 0.073219 0.330814 0.534182
56
+ 0.076127 0.335670 0.538131
57
+ 0.079162 0.340477 0.541813
58
+ 0.082310 0.345245 0.545267
59
+ 0.085333 0.349976 0.548472
60
+ 0.088490 0.354659 0.551417
61
+ 0.091644 0.359270 0.554118
62
+ 0.094766 0.363832 0.556572
63
+ 0.097864 0.368336 0.558778
64
+ 0.100919 0.372752 0.560753
65
+ 0.104007 0.377108 0.562497
66
+ 0.107081 0.381374 0.564002
67
+ 0.110099 0.385537 0.565273
68
+ 0.113065 0.389625 0.566351
69
+ 0.115972 0.393615 0.567218
70
+ 0.118845 0.397510 0.567882
71
+ 0.121615 0.401307 0.568363
72
+ 0.124403 0.404991 0.568671
73
+ 0.127118 0.408585 0.568816
74
+ 0.129840 0.412081 0.568808
75
+ 0.132441 0.415470 0.568659
76
+ 0.135022 0.418767 0.568380
77
+ 0.137551 0.421970 0.567982
78
+ 0.139985 0.425101 0.567475
79
+ 0.142452 0.428133 0.566866
80
+ 0.144870 0.431091 0.566160
81
+ 0.147220 0.433959 0.565369
82
+ 0.149576 0.436782 0.564516
83
+ 0.151851 0.439525 0.563597
84
+ 0.154137 0.442220 0.562611
85
+ 0.156434 0.444849 0.561566
86
+ 0.158673 0.447417 0.560478
87
+ 0.160888 0.449959 0.559346
88
+ 0.163114 0.452457 0.558172
89
+ 0.165274 0.454907 0.556983
90
+ 0.167499 0.457313 0.555739
91
+ 0.169695 0.459700 0.554492
92
+ 0.171844 0.462052 0.553207
93
+ 0.174021 0.464387 0.551920
94
+ 0.176160 0.466681 0.550603
95
+ 0.178369 0.468960 0.549279
96
+ 0.180492 0.471215 0.547940
97
+ 0.182644 0.473440 0.546595
98
+ 0.184823 0.475673 0.545236
99
+ 0.186971 0.477869 0.543872
100
+ 0.189125 0.480063 0.542508
101
+ 0.191270 0.482238 0.541130
102
+ 0.193440 0.484393 0.539754
103
+ 0.195587 0.486551 0.538389
104
+ 0.197750 0.488697 0.537010
105
+ 0.199899 0.490844 0.535616
106
+ 0.202078 0.492957 0.534235
107
+ 0.204288 0.495093 0.532857
108
+ 0.206475 0.497214 0.531468
109
+ 0.208638 0.499326 0.530082
110
+ 0.210837 0.501454 0.528697
111
+ 0.213030 0.503562 0.527302
112
+ 0.215251 0.505676 0.525907
113
+ 0.217492 0.507811 0.524508
114
+ 0.219733 0.509929 0.523111
115
+ 0.221968 0.512056 0.521697
116
+ 0.224223 0.514200 0.520288
117
+ 0.226532 0.516330 0.518887
118
+ 0.228826 0.518491 0.517467
119
+ 0.231132 0.520642 0.516028
120
+ 0.233434 0.522815 0.514608
121
+ 0.235808 0.524993 0.513165
122
+ 0.238158 0.527190 0.511714
123
+ 0.240527 0.529397 0.510260
124
+ 0.242938 0.531613 0.508803
125
+ 0.245362 0.533842 0.507323
126
+ 0.247837 0.536101 0.505829
127
+ 0.250281 0.538380 0.504350
128
+ 0.252797 0.540662 0.502829
129
+ 0.255325 0.542974 0.501320
130
+ 0.257852 0.545302 0.499775
131
+ 0.260437 0.547651 0.498247
132
+ 0.263045 0.550026 0.496671
133
+ 0.265674 0.552426 0.495106
134
+ 0.268327 0.554845 0.493511
135
+ 0.271026 0.557299 0.491915
136
+ 0.273750 0.559769 0.490291
137
+ 0.276504 0.562275 0.488653
138
+ 0.279291 0.564792 0.487000
139
+ 0.282108 0.567358 0.485321
140
+ 0.284940 0.569938 0.483632
141
+ 0.287830 0.572565 0.481933
142
+ 0.290758 0.575210 0.480205
143
+ 0.293713 0.577887 0.478456
144
+ 0.296725 0.580608 0.476693
145
+ 0.299755 0.583353 0.474918
146
+ 0.302814 0.586141 0.473100
147
+ 0.305952 0.588949 0.471290
148
+ 0.309104 0.591813 0.469452
149
+ 0.312267 0.594697 0.467584
150
+ 0.315523 0.597624 0.465694
151
+ 0.318795 0.600585 0.463804
152
+ 0.322118 0.603591 0.461886
153
+ 0.325473 0.606628 0.459945
154
+ 0.328904 0.609705 0.457993
155
+ 0.332367 0.612819 0.456024
156
+ 0.335866 0.615981 0.454041
157
+ 0.339437 0.619188 0.452047
158
+ 0.343048 0.622419 0.450027
159
+ 0.346709 0.625704 0.447996
160
+ 0.350441 0.629031 0.445960
161
+ 0.354216 0.632401 0.443930
162
+ 0.358071 0.635814 0.441885
163
+ 0.361985 0.639273 0.439829
164
+ 0.365969 0.642778 0.437786
165
+ 0.370017 0.646328 0.435739
166
+ 0.374165 0.649930 0.433689
167
+ 0.378375 0.653574 0.431684
168
+ 0.382682 0.657277 0.429670
169
+ 0.387076 0.661018 0.427695
170
+ 0.391586 0.664815 0.425736
171
+ 0.396188 0.668672 0.423819
172
+ 0.400915 0.672578 0.421948
173
+ 0.405747 0.676534 0.420141
174
+ 0.410710 0.680539 0.418384
175
+ 0.415800 0.684609 0.416716
176
+ 0.421036 0.688741 0.415117
177
+ 0.426430 0.692921 0.413622
178
+ 0.431996 0.697151 0.412238
179
+ 0.437712 0.701442 0.410969
180
+ 0.443601 0.705794 0.409842
181
+ 0.449678 0.710198 0.408859
182
+ 0.455945 0.714651 0.408050
183
+ 0.462409 0.719165 0.407425
184
+ 0.469094 0.723723 0.407003
185
+ 0.475974 0.728332 0.406801
186
+ 0.483066 0.732990 0.406834
187
+ 0.490390 0.737682 0.407121
188
+ 0.497935 0.742421 0.407680
189
+ 0.505675 0.747187 0.408529
190
+ 0.513668 0.751981 0.409686
191
+ 0.521853 0.756797 0.411156
192
+ 0.530269 0.761628 0.412971
193
+ 0.538886 0.766471 0.415116
194
+ 0.547692 0.771318 0.417631
195
+ 0.556690 0.776152 0.420499
196
+ 0.565854 0.780975 0.423745
197
+ 0.575184 0.785778 0.427379
198
+ 0.584655 0.790546 0.431376
199
+ 0.594246 0.795277 0.435745
200
+ 0.603948 0.799967 0.440475
201
+ 0.613718 0.804596 0.445574
202
+ 0.623571 0.809166 0.451034
203
+ 0.633452 0.813660 0.456821
204
+ 0.643349 0.818084 0.462930
205
+ 0.653247 0.822434 0.469371
206
+ 0.663131 0.826693 0.476077
207
+ 0.672961 0.830863 0.483052
208
+ 0.682722 0.834941 0.490287
209
+ 0.692413 0.838924 0.497751
210
+ 0.701988 0.842817 0.505395
211
+ 0.711468 0.846607 0.513248
212
+ 0.720806 0.850311 0.521252
213
+ 0.730018 0.853916 0.529404
214
+ 0.739078 0.857435 0.537670
215
+ 0.747979 0.860865 0.546036
216
+ 0.756716 0.864214 0.554480
217
+ 0.765293 0.867473 0.562995
218
+ 0.773690 0.870656 0.571548
219
+ 0.781928 0.873770 0.580146
220
+ 0.789985 0.876809 0.588748
221
+ 0.797871 0.879788 0.597375
222
+ 0.805587 0.882702 0.605980
223
+ 0.813135 0.885563 0.614576
224
+ 0.820517 0.888367 0.623153
225
+ 0.827735 0.891117 0.631684
226
+ 0.834795 0.893822 0.640175
227
+ 0.841696 0.896485 0.648607
228
+ 0.848439 0.899102 0.656986
229
+ 0.855036 0.901678 0.665289
230
+ 0.861480 0.904216 0.673526
231
+ 0.867785 0.906721 0.681675
232
+ 0.873943 0.909184 0.689751
233
+ 0.879964 0.911616 0.697724
234
+ 0.885854 0.914016 0.705609
235
+ 0.891606 0.916374 0.713389
236
+ 0.897231 0.918701 0.721062
237
+ 0.902724 0.920996 0.728629
238
+ 0.908093 0.923262 0.736080
239
+ 0.913337 0.925486 0.743425
240
+ 0.918458 0.927676 0.750645
241
+ 0.923468 0.929837 0.757743
242
+ 0.928353 0.931959 0.764721
243
+ 0.933130 0.934048 0.771578
244
+ 0.937802 0.936108 0.778308
245
+ 0.942365 0.938126 0.784921
246
+ 0.946819 0.940114 0.791406
247
+ 0.951178 0.942064 0.797775
248
+ 0.955439 0.943981 0.804030
249
+ 0.959606 0.945864 0.810165
250
+ 0.963686 0.947720 0.816201
251
+ 0.967690 0.949541 0.822128
252
+ 0.971611 0.951338 0.827953
253
+ 0.975464 0.953108 0.833700
254
+ 0.979259 0.954852 0.839361
255
+ 0.982996 0.956574 0.844951
256
+ 0.986688 0.958281 0.850479