nltools 0.6.0.dev0__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.
- nltools/__init__.py +55 -0
- nltools/algorithms/__init__.py +90 -0
- nltools/algorithms/alignment/__init__.py +21 -0
- nltools/algorithms/alignment/procrustes.py +565 -0
- nltools/algorithms/alignment/srm.py +758 -0
- nltools/algorithms/backends.py +1059 -0
- nltools/algorithms/corrections.py +177 -0
- nltools/algorithms/decoding.py +327 -0
- nltools/algorithms/inference/__init__.py +50 -0
- nltools/algorithms/inference/bootstrap.py +1386 -0
- nltools/algorithms/inference/correlation.py +373 -0
- nltools/algorithms/inference/intersubject.py +422 -0
- nltools/algorithms/inference/isc.py +1554 -0
- nltools/algorithms/inference/matrix.py +602 -0
- nltools/algorithms/inference/one_sample.py +288 -0
- nltools/algorithms/inference/random.py +122 -0
- nltools/algorithms/inference/timeseries.py +347 -0
- nltools/algorithms/inference/two_sample.py +212 -0
- nltools/algorithms/inference/utils.py +58 -0
- nltools/algorithms/inference/validation.py +282 -0
- nltools/algorithms/neighborhoods.py +207 -0
- nltools/algorithms/outliers.py +308 -0
- nltools/algorithms/regression.py +83 -0
- nltools/algorithms/signal.py +303 -0
- nltools/algorithms/similarity.py +234 -0
- nltools/algorithms/validation.py +151 -0
- nltools/cross_validation.py +72 -0
- nltools/data/__init__.py +30 -0
- nltools/data/adjacency/__init__.py +875 -0
- nltools/data/adjacency/io.py +111 -0
- nltools/data/adjacency/modeling.py +569 -0
- nltools/data/adjacency/plotting.py +174 -0
- nltools/data/adjacency/state.py +349 -0
- nltools/data/adjacency/stats.py +596 -0
- nltools/data/adjacency/utils.py +79 -0
- nltools/data/atlases/__init__.py +23 -0
- nltools/data/atlases/labeling.py +158 -0
- nltools/data/atlases/loading.py +76 -0
- nltools/data/atlases/registry.py +96 -0
- nltools/data/atlases/reporting.py +456 -0
- nltools/data/braindata/__init__.py +2170 -0
- nltools/data/braindata/analysis.py +1381 -0
- nltools/data/braindata/bootstrap.py +398 -0
- nltools/data/braindata/io.py +896 -0
- nltools/data/braindata/modeling.py +594 -0
- nltools/data/braindata/plotting.py +501 -0
- nltools/data/braindata/prediction.py +1250 -0
- nltools/data/braindata/utils.py +348 -0
- nltools/data/braindata/validation.py +197 -0
- nltools/data/braindata/viewer.js +266 -0
- nltools/data/braindata/viewer.py +770 -0
- nltools/data/combine.py +27 -0
- nltools/data/designmatrix/__init__.py +1032 -0
- nltools/data/designmatrix/append.py +518 -0
- nltools/data/designmatrix/diagnostics.py +248 -0
- nltools/data/designmatrix/io.py +356 -0
- nltools/data/designmatrix/plotting.py +291 -0
- nltools/data/designmatrix/regressors.py +463 -0
- nltools/data/designmatrix/transforms.py +200 -0
- nltools/data/designmatrix/utils.py +350 -0
- nltools/data/ownership.py +129 -0
- nltools/data/results.py +291 -0
- nltools/data/roc/__init__.py +398 -0
- nltools/data/simulator/__init__.py +927 -0
- nltools/data/simulator/haxby.py +124 -0
- nltools/data/validation.py +83 -0
- nltools/datasets.py +218 -0
- nltools/io/__init__.py +10 -0
- nltools/io/events.py +67 -0
- nltools/io/h5.py +246 -0
- nltools/mask.py +403 -0
- nltools/models/__init__.py +11 -0
- nltools/models/glm.py +543 -0
- nltools/models/results.py +49 -0
- nltools/models/ridge.py +1303 -0
- nltools/models/validation.py +26 -0
- nltools/plotting/__init__.py +32 -0
- nltools/plotting/adjacency.py +421 -0
- nltools/plotting/brain.py +669 -0
- nltools/plotting/decomposition.py +111 -0
- nltools/plotting/prediction.py +110 -0
- nltools/resources/covariates_example.csv +161 -0
- nltools/resources/onsets_example.csv +40 -0
- nltools/templates/__init__.py +51 -0
- nltools/templates/config.py +144 -0
- nltools/templates/fetch.py +260 -0
- nltools/templates/matching.py +183 -0
- nltools/templates/paths.py +106 -0
- nltools/templates/registry.py +25 -0
- nltools/utils.py +230 -0
- nltools/version.py +13 -0
- nltools-0.6.0.dev0.dist-info/METADATA +95 -0
- nltools-0.6.0.dev0.dist-info/RECORD +95 -0
- nltools-0.6.0.dev0.dist-info/WHEEL +4 -0
- nltools-0.6.0.dev0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"""ICA/PCA component viewer — interactive decomposition explorer."""
|
|
2
|
+
|
|
3
|
+
import matplotlib.pyplot as plt
|
|
4
|
+
import numpy as np
|
|
5
|
+
import sklearn
|
|
6
|
+
from numpy.fft import fft, fftfreq
|
|
7
|
+
from nilearn.plotting import plot_stat_map
|
|
8
|
+
|
|
9
|
+
from nltools.utils import _attempt_to_import
|
|
10
|
+
|
|
11
|
+
# Optional dependencies
|
|
12
|
+
ipywidgets = _attempt_to_import(
|
|
13
|
+
"ipywidgets",
|
|
14
|
+
fromlist=["interact", "fixed", "widgets", "BoundedFloatText", "BoundedIntText"],
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def component_viewer(output, tr=2.0):
|
|
19
|
+
"""Interactively view the results of a `BrainData.decompose()` run.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
output (dict): Output dictionary from `BrainData.decompose()` (keys
|
|
23
|
+
`'components'`, `'weights'`, `'decomposition_object'`).
|
|
24
|
+
tr (float): Repetition time of the data in seconds. Default 2.0.
|
|
25
|
+
|
|
26
|
+
Note:
|
|
27
|
+
Returns nothing; the interactive widgets render inline.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
if ipywidgets is None:
|
|
31
|
+
raise ImportError(
|
|
32
|
+
"ipywidgets is required for interactive plotting. Please install this package manually or install nltools with optional arguments: pip install 'nltools[interactive_plots]'"
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
def component_inspector(component, threshold):
|
|
36
|
+
"""Render one decomposition component, for use with ipywidgets interactive controls.
|
|
37
|
+
|
|
38
|
+
Make sure you have tr and output assigned to variables.
|
|
39
|
+
|
|
40
|
+
Returns:
|
|
41
|
+
None (renders matplotlib figures inline)
|
|
42
|
+
|
|
43
|
+
Examples:
|
|
44
|
+
```python
|
|
45
|
+
from ipywidgets import BoundedFloatText, BoundedIntText, interact
|
|
46
|
+
|
|
47
|
+
tr = 2.4
|
|
48
|
+
output = data_filtered_smoothed.decompose(
|
|
49
|
+
method='ica', n_components=30, axis='images', whiten=True
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
interact(
|
|
53
|
+
component_inspector,
|
|
54
|
+
component=BoundedIntText(
|
|
55
|
+
description='Component',
|
|
56
|
+
value=0,
|
|
57
|
+
min=0,
|
|
58
|
+
max=len(output['components']) - 1,
|
|
59
|
+
),
|
|
60
|
+
threshold=BoundedFloatText(
|
|
61
|
+
description='Threshold', value=2.0, min=0, max=4, step=0.1
|
|
62
|
+
),
|
|
63
|
+
)
|
|
64
|
+
```
|
|
65
|
+
"""
|
|
66
|
+
_, ax = plt.subplots(nrows=3, figsize=(12, 8))
|
|
67
|
+
thresholded = (
|
|
68
|
+
output["components"][component] - output["components"][component].mean()
|
|
69
|
+
) * (1 / output["components"][component].std())
|
|
70
|
+
thresholded.data[np.abs(thresholded.data) <= threshold] = 0
|
|
71
|
+
plot_stat_map(
|
|
72
|
+
thresholded.to_nifti(),
|
|
73
|
+
cut_coords=range(-40, 70, 10),
|
|
74
|
+
display_mode="z",
|
|
75
|
+
black_bg=True,
|
|
76
|
+
colorbar=True,
|
|
77
|
+
annotate=False,
|
|
78
|
+
draw_cross=False,
|
|
79
|
+
axes=ax[0],
|
|
80
|
+
)
|
|
81
|
+
if isinstance(output["decomposition_object"], (sklearn.decomposition.PCA)):
|
|
82
|
+
var_exp = output["decomposition_object"].explained_variance_ratio_[
|
|
83
|
+
component
|
|
84
|
+
]
|
|
85
|
+
ax[0].set_title(
|
|
86
|
+
f"Component: {component}/{len(output['components'])}, Variance Explained: {var_exp:2.2}",
|
|
87
|
+
fontsize=18,
|
|
88
|
+
)
|
|
89
|
+
else:
|
|
90
|
+
ax[0].set_title(
|
|
91
|
+
f"Component: {component}/{len(output['components'])}", fontsize=18
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
ax[1].plot(output["weights"][:, component], linewidth=2, color="red")
|
|
95
|
+
ax[1].set_ylabel("Intensity (AU)", fontsize=18)
|
|
96
|
+
ax[1].set_title(f"Timecourse (TR={tr})", fontsize=16)
|
|
97
|
+
y = fft(output["weights"][:, component])
|
|
98
|
+
f = fftfreq(len(y), d=tr)
|
|
99
|
+
ax[2].plot(f[f > 0], np.abs(y)[f > 0] ** 2)
|
|
100
|
+
ax[2].set_ylabel("Power", fontsize=18)
|
|
101
|
+
ax[2].set_xlabel("Frequency (Hz)", fontsize=16)
|
|
102
|
+
|
|
103
|
+
ipywidgets.interact(
|
|
104
|
+
component_inspector,
|
|
105
|
+
component=ipywidgets.BoundedIntText(
|
|
106
|
+
description="Component", value=0, min=0, max=len(output["components"]) - 1
|
|
107
|
+
),
|
|
108
|
+
threshold=ipywidgets.BoundedFloatText(
|
|
109
|
+
description="Threshold", value=2.0, min=0, max=4, step=0.1
|
|
110
|
+
),
|
|
111
|
+
)
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"""Model output visualization — ROC curves and the cross-validated decoding figures.
|
|
2
|
+
|
|
3
|
+
Every function here takes arrays, not a result table: `BrainData.predict` returns a
|
|
4
|
+
`Predict` record plus the row-aligned out-of-fold decision values that go with it,
|
|
5
|
+
and these draw from those directly.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import matplotlib.pyplot as plt
|
|
9
|
+
import numpy as np
|
|
10
|
+
import seaborn as sns
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def _plot_predicted_versus_actual(y_true, y_pred, *, r=None, ax=None):
|
|
14
|
+
"""Scatter cross-validated predictions against the observed target.
|
|
15
|
+
|
|
16
|
+
Args:
|
|
17
|
+
y_true (array-like): Observed target, one value per observation.
|
|
18
|
+
y_pred (array-like): Out-of-fold prediction for the same observations.
|
|
19
|
+
r (float, optional): Cross-validated Pearson correlation to name in the
|
|
20
|
+
title; omitted from the title when `None`.
|
|
21
|
+
ax (matplotlib.axes.Axes, optional): Axis to draw on; a new figure is
|
|
22
|
+
created when omitted.
|
|
23
|
+
|
|
24
|
+
Returns:
|
|
25
|
+
matplotlib.axes.Axes: The axis holding the scatter and its fit line.
|
|
26
|
+
"""
|
|
27
|
+
if ax is None:
|
|
28
|
+
_, ax = plt.subplots(1)
|
|
29
|
+
axis = sns.regplot(
|
|
30
|
+
x=np.asarray(y_true, dtype=float), y=np.asarray(y_pred, dtype=float), ax=ax
|
|
31
|
+
)
|
|
32
|
+
axis.set_xlabel("Observed", fontsize=16)
|
|
33
|
+
axis.set_ylabel("Predicted", fontsize=16)
|
|
34
|
+
title = "Predicted vs actual" if r is None else f"Predicted vs actual (r = {r:.2f})"
|
|
35
|
+
axis.set_title(title, fontsize=18)
|
|
36
|
+
return axis
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _plot_decision_margin(margins, y_true, *, ax=None):
|
|
40
|
+
"""Plot each observation's signed distance from the decision boundary by class.
|
|
41
|
+
|
|
42
|
+
Args:
|
|
43
|
+
margins (array-like): Out-of-fold `decision_function` values, one per
|
|
44
|
+
observation.
|
|
45
|
+
y_true (array-like): Class label for the same observations.
|
|
46
|
+
ax (matplotlib.axes.Axes, optional): Axis to draw on; a new figure is
|
|
47
|
+
created when omitted.
|
|
48
|
+
|
|
49
|
+
Returns:
|
|
50
|
+
matplotlib.axes.Axes: The axis holding the margin figure.
|
|
51
|
+
"""
|
|
52
|
+
if ax is None:
|
|
53
|
+
_, ax = plt.subplots(1)
|
|
54
|
+
axis = sns.stripplot(
|
|
55
|
+
x=np.asarray(y_true).astype(str),
|
|
56
|
+
y=np.asarray(margins, dtype=float),
|
|
57
|
+
ax=ax,
|
|
58
|
+
)
|
|
59
|
+
axis.axhline(0, color="gray", linestyle="--", linewidth=1)
|
|
60
|
+
axis.set_xlabel("Class", fontsize=16)
|
|
61
|
+
axis.set_ylabel("Distance from Hyperplane", fontsize=16)
|
|
62
|
+
axis.set_title("Classification margin", fontsize=18)
|
|
63
|
+
return axis
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
def _plot_class_probability(probabilities, y_true, *, ax=None):
|
|
67
|
+
"""Plot the predicted positive-class probability of each observation by class.
|
|
68
|
+
|
|
69
|
+
Args:
|
|
70
|
+
probabilities (array-like): Out-of-fold `predict_proba` values for the
|
|
71
|
+
positive class, one per observation.
|
|
72
|
+
y_true (array-like): Class label for the same observations.
|
|
73
|
+
ax (matplotlib.axes.Axes, optional): Axis to draw on; a new figure is
|
|
74
|
+
created when omitted.
|
|
75
|
+
|
|
76
|
+
Returns:
|
|
77
|
+
matplotlib.axes.Axes: The axis holding the probability figure.
|
|
78
|
+
"""
|
|
79
|
+
if ax is None:
|
|
80
|
+
_, ax = plt.subplots(1)
|
|
81
|
+
axis = sns.stripplot(
|
|
82
|
+
x=np.asarray(y_true).astype(str),
|
|
83
|
+
y=np.asarray(probabilities, dtype=float),
|
|
84
|
+
ax=ax,
|
|
85
|
+
)
|
|
86
|
+
axis.axhline(0.5, color="gray", linestyle="--", linewidth=1)
|
|
87
|
+
axis.set_xlabel("Class", fontsize=16)
|
|
88
|
+
axis.set_ylabel("Predicted Probability", fontsize=16)
|
|
89
|
+
axis.set_title("Classification probability", fontsize=18)
|
|
90
|
+
return axis
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def _plot_roc(fpr, tpr):
|
|
94
|
+
"""Plot 1-Specificity by Sensitivity.
|
|
95
|
+
|
|
96
|
+
Args:
|
|
97
|
+
fpr (np.ndarray): False positive rate per criterion value, from `Roc.calculate`.
|
|
98
|
+
tpr (np.ndarray): True positive rate per criterion value, from `Roc.calculate`.
|
|
99
|
+
|
|
100
|
+
Returns:
|
|
101
|
+
matplotlib.figure.Figure: The ROC figure.
|
|
102
|
+
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
fig = plt.figure()
|
|
106
|
+
plt.plot(fpr, tpr, color="red", linewidth=3)
|
|
107
|
+
plt.xlabel("(1 - Specificity)", fontsize=16)
|
|
108
|
+
plt.ylabel("Sensitivity", fontsize=16)
|
|
109
|
+
plt.title("ROC Plot", fontsize=18)
|
|
110
|
+
return fig
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
ra1,ra2,ra3,ra4,ra5,ra6,rasq1,rasq2,rasq3,rasq4,rasq5,rasq6,radiff1,radiff2,radiff3,radiff4,radiff5,radiff6,radiffsq1,radiffsq2,radiffsq3,radiffsq4,radiffsq5,radiffsq6,spike1
|
|
2
|
+
0.00273061853738,0.00103340089313,0.00114264323413,-0.0286333989756,0.0196627078937,0.125762373562,7.45627759666e-06,1.06791740591e-06,1.30563356049e-06,0.000819871536897,0.000386622081715,0.0158161746041,,,,,,,,,,,,,0
|
|
3
|
+
0.00220709853738,0.00109195089313,0.00109686323413,-0.0316995989756,-0.00263499210625,0.116329373562,4.87128395368e-06,1.192356753e-06,1.20310895438e-06,0.00100486457522,6.9431834e-06,0.0135325231534,-0.00052352,5.855e-05,-4.578e-05,-0.0030662,-0.0222977,-0.009433,2.740731904e-07,3.4281025e-09,2.0958084e-09,9.40158244e-06,0.00049718742529,8.8981489e-05,0
|
|
4
|
+
0.00228676853738,0.000990370893125,0.00103649323413,-0.0185058989756,-0.00207759210625,0.131566373562,5.22931034353e-06,9.80834505949e-07,1.07431822439e-06,0.000342468296896,4.31638895995e-06,0.0173097106524,7.967e-05,-0.00010158,-6.037e-05,0.0131937,0.0005574,0.015237,6.3473089e-09,1.03184964e-08,3.6445369e-09,0.00017407371969,3.1069476e-07,0.000232166169,0
|
|
5
|
+
0.00221431853738,0.000998670893125,0.00109624323413,-0.0214620989756,-0.00537659210625,0.135135373562,4.90320658496e-06,9.97343552775e-07,1.20174922836e-06,0.00046062169244,2.8907742677e-05,0.0182615691879,-7.245e-05,8.3e-06,5.975e-05,-0.0029562,-0.003299,0.003569,5.2490025e-09,6.889e-11,3.5700625e-09,8.73911844e-06,1.0883401e-05,1.2737761e-05,0
|
|
6
|
+
0.00272405853738,0.000969670893125,0.000973093234125,-0.0208605989756,0.0229779078938,0.117875373562,7.42049491505e-06,9.40261640974e-07,9.469104423e-07,0.000435164589622,0.000527984251174,0.0138946036925,0.00050974,-2.9e-05,-0.00012315,0.0006015,0.0283545,-0.01726,2.598348676e-07,8.41e-10,1.51659225e-08,3.6180225e-07,0.00080397767025,0.0002979076,0
|
|
7
|
+
0.00193014853738,0.00114705089313,0.00102214323413,-0.0248573989756,0.00257890789375,0.121390373562,3.72547337633e-06,1.31572575142e-06,1.04477679107e-06,0.000617890283833,6.65076592445e-06,0.0147356227936,-0.00079391,0.00017738,4.905e-05,-0.0039968,-0.020399,0.003515,6.302930881e-07,3.14636644e-08,2.4059025e-09,1.597441024e-05,0.000416119201,1.2355225e-05,0
|
|
8
|
+
0.00257306853738,0.000945890893125,0.00112451323413,-0.0225136989756,-0.00449289210625,0.105612373562,6.62068169803e-06,8.94709581697e-07,1.26453001372e-06,0.000506866641565,2.01860794784e-05,0.0111539734495,0.00064292,-0.00020116,0.00010237,0.0023437,-0.0070718,-0.015778,4.133461264e-07,4.04653456e-08,1.04796169e-08,5.49292969e-06,5.001035524e-05,0.000248945284,0
|
|
9
|
+
0.00201706853738,0.00100065089313,0.00106908323413,-0.0276142989756,0.0120739078937,0.126216373562,4.06856548447e-06,1.00130220991e-06,1.14293896149e-06,0.000762549507915,0.000145779251827,0.0159305729553,-0.000556,5.476e-05,-5.543e-05,-0.0051006,0.0165668,0.020604,3.09136e-07,2.9986576e-09,3.0724849e-09,2.601612036e-05,0.00027445886224,0.000424524816,0
|
|
10
|
+
0.00273802853738,0.000925040893125,0.000953173234125,-0.0250673989756,0.0181982078937,0.0868771735625,7.49680027148e-06,8.55700653953e-07,9.08539214252e-07,0.000628374491403,0.000331174770544,0.00754764328621,0.00072096,-7.561e-05,-0.00011591,0.0025469,0.0061243,-0.0393392,5.197833216e-07,5.7168721e-09,1.34351281e-08,6.48669961e-06,3.750705049e-05,0.00154757265664,0
|
|
11
|
+
0.00214008853738,0.00106693089313,0.00110122323413,-0.0190239989756,-0.0208104421063,0.103721373562,4.5799789478e-06,1.1383415307e-06,1.21269261138e-06,0.000361912537025,0.000433074500658,0.0107581233337,-0.00059794,0.00014189,0.00014805,0.0060434,-0.03900865,0.0168442,3.575322436e-07,2.01327721e-08,2.19188025e-08,3.652268356e-05,0.00152167477482,0.00028372707364,0
|
|
12
|
+
0.00272095853738,0.000924260893125,0.00109003323413,-0.0205559989756,-0.00241169210625,0.0884197735625,7.40361536211e-06,8.5425819856e-07,1.1881724515e-06,0.000422549093886,5.81625881535e-06,0.00781805635684,0.00058087,-0.00014267,-1.119e-05,-0.001532,0.01839875,-0.0153016,3.374099569e-07,2.03547289e-08,1.252161e-10,2.347024e-06,0.000338514001562,0.00023413896256,0
|
|
13
|
+
0.00198553853738,0.00112613089313,0.00111416323413,-0.0270562989756,-0.0153351891063,0.115097373562,3.9423632834e-06,1.26817078845e-06,1.24135971228e-06,0.000732043314258,0.000235168024924,0.013247405401,-0.00073542,0.00020187,2.413e-05,-0.0065003,-0.012923497,0.0266776,5.408425764e-07,4.07514969e-08,5.822569e-10,4.225390009e-05,0.000167016774709,0.00071169434176,0
|
|
14
|
+
0.00248732853738,0.000937490893125,0.000999903234125,-0.0196197989756,0.0129630078938,0.0760713735625,6.18680325284e-06,8.78889174692e-07,9.99806477614e-07,0.000384936511844,0.000168039573653,0.00578685387569,0.00050179,-0.00018864,-0.00011426,0.0074365,0.028298197,-0.039026,2.517932041e-07,3.55850496e-08,1.30553476e-08,5.530153225e-05,0.000800787953451,0.001523028676,0
|
|
15
|
+
0.00211162853738,0.000971470893125,0.00115049323413,-0.0229880989756,-0.0206523621063,0.0903901735625,4.45897507986e-06,9.43755696189e-07,1.32363468177e-06,0.000528452694513,0.000426520060568,0.00817038347666,-0.0003757,3.398e-05,0.00015059,-0.0033683,-0.03361537,0.0143188,1.4115049e-07,1.1546404e-09,2.26773481e-08,1.134544489e-05,0.00112999310024,0.00020502803344,0
|
|
16
|
+
0.00239795853738,0.000959770893125,0.000974813234125,-0.0183883989756,-0.00066519210625,0.0681144735625,5.75020514697e-06,9.2116016729e-07,9.50260841425e-07,0.000338133216887,4.42480538217e-07,0.0046395815087,0.00028633,-1.17e-05,-0.00017568,0.0045997,0.01998717,-0.0222757,8.19848689e-08,1.3689e-10,3.08634624e-08,2.115724009e-05,0.000399486964609,0.00049620681049,0
|
|
17
|
+
0.00195535853738,0.000836120893125,0.000920213234125,-0.0229453989756,-0.0352281921063,0.0845811735625,3.82342700969e-06,6.9909814792e-07,8.46792396259e-07,0.000526491334151,0.00124102551907,0.00715397492121,-0.0004426,-0.00012365,-5.46e-05,-0.004557,-0.034563,0.0164667,1.9589476e-07,1.52893225e-08,2.98116e-09,2.0766249e-05,0.001194600969,0.00027115220889,0
|
|
18
|
+
0.00138058853738,0.00105192089313,0.000719924234125,-0.0208453989756,-0.00512109210625,0.0789799735625,1.90602470953e-06,1.10653756539e-06,5.1829090288e-07,0.000434530658453,2.62255843607e-05,0.00623783622393,-0.00057477,0.0002158,-0.000200289,0.0021,0.0301071,-0.0056012,3.303605529e-07,4.656964e-08,4.0115683521e-08,4.41e-06,0.00090643747041,3.137344144e-05,0
|
|
19
|
+
0.00191536853738,0.000801446893125,0.000533124234125,-0.00797174897563,-0.0520146921062,0.0929873735625,3.66863663397e-06,6.423171225e-07,2.84221449011e-07,6.35487817304e-05,0.00270552819491,0.00864665164205,0.00053478,-0.000250474,-0.0001868,0.01287365,-0.0468936,0.0140074,2.859896484e-07,6.2737224676e-08,3.489424e-08,0.000165730864323,0.00219900972096,0.00019620725476,0
|
|
20
|
+
0.00141363853738,0.000823722893125,0.000611298234125,-0.0159780989756,-0.0137884121063,0.111528373562,1.99837391435e-06,6.78519404658e-07,3.73685531044e-07,0.000255299646875,0.000190120308412,0.0124385781095,-0.00050173,2.2276e-05,7.8174e-05,-0.00800635,0.03822628,0.018541,2.517329929e-07,4.96220176e-10,6.111174276e-09,6.41016403225e-05,0.00146124848264,0.000343768681,0
|
|
21
|
+
0.00205081853738,0.000766584893125,0.000497259234125,-0.00387891897563,-0.0221017621062,0.108240373562,4.20585667324e-06,5.87652398367e-07,2.47266745923e-07,1.50460124195e-05,0.000488487888201,0.0117159784689,0.00063718,-5.7138e-05,-0.000114039,0.01209918,-0.00831335,-0.003288,4.059983524e-07,3.264751044e-09,1.3004893521e-08,0.000146390156672,6.91117882225e-05,1.0810944e-05,0
|
|
22
|
+
0.00141458853738,0.000725430893125,0.000553873234125,-0.0123725989756,-0.0254695921063,0.125731373562,2.00106073007e-06,5.262499807e-07,3.0677555948e-07,0.000153081205412,0.000648700122059,0.0158083782979,-0.00063623,-4.1154e-05,5.6614e-05,-0.00849368,-0.00336783,0.017491,4.047886129e-07,1.693651716e-09,3.205144996e-09,7.21425999424e-05,1.13422789089e-05,0.000305935081,0
|
|
23
|
+
0.00214013853738,0.000828709893125,0.000361298234125,-0.00221163797563,0.0206289078937,0.0898373735625,4.58019295916e-06,6.86760086963e-07,1.30536413982e-07,4.89134253523e-06,0.000425551840889,0.00807075368861,0.00072555,0.000103279,-0.000192575,0.010160961,0.0460985,-0.035894,5.264228025e-07,1.0666551841e-08,3.7085130625e-08,0.000103245128444,0.00212507170225,0.001288379236,0
|
|
24
|
+
0.00167541853738,0.000802708893125,0.000548823234125,-0.0117684889756,-0.0210548021062,0.114655373562,2.80702727538e-06,6.44341567102e-07,3.01206942315e-07,0.000138497332769,0.000443304691733,0.0131458546868,-0.00046472,-2.6001e-05,0.000187525,-0.009556851,-0.04168371,0.024818,2.159646784e-07,6.76052001e-10,3.5165625625e-08,9.13334010362e-05,0.00173753167936,0.000615933124,0
|
|
25
|
+
0.00207722853738,0.000818920893125,0.000412908234125,-0.00401674897563,-0.00373499210625,0.0977773735625,4.31487839649e-06,6.70631429197e-07,1.70493209808e-07,1.61342723332e-05,1.39501660337e-05,0.00956041478078,0.00040181,1.6212e-05,-0.000135915,0.00775174,0.01731981,-0.016878,1.614512761e-07,2.62828944e-10,1.8472887225e-08,6.00894730276e-05,0.000299975818436,0.000284866884,0
|
|
26
|
+
0.00166740853738,0.000885490893125,0.000361298234125,-0.00614157897563,-0.0267205921063,0.112147373562,2.78025123051e-06,7.84094121807e-07,1.30536413982e-07,3.77189923138e-05,0.000713990042509,0.012577033397,-0.00040982,6.657e-05,-5.161e-05,-0.00212483,-0.0229856,0.01437,1.679524324e-07,4.4315649e-09,2.6635921e-09,4.5149025289e-06,0.00052833780736,0.0002064969,0
|
|
27
|
+
0.00154800853738,0.000676788893125,0.000424235234125,-0.00547912897563,0.0136732078937,0.113404373562,2.39633043179e-06,4.58043205857e-07,1.79975533873e-07,3.00208543315e-05,0.000186956614106,0.0128605519431,-0.0001194,-0.000208702,6.2937e-05,0.00066245,0.0403938,0.001257,1.425636e-08,4.3556524804e-08,3.961065969e-09,4.388400025e-07,0.00163165907844,1.580049e-06,0
|
|
28
|
+
0.00175012853738,0.000702466893125,0.000308759234125,-0.00210712127563,-0.0395448921063,0.112785373562,3.06294989733e-06,4.93459735937e-07,9.53322646575e-08,4.43996007019e-06,0.00156379849169,0.0127205404896,0.00020212,2.5678e-05,-0.000115476,0.0033720077,-0.0532181,-0.000619,4.08524944e-08,6.59359684e-10,1.3334706576e-08,1.13704359289e-05,0.00283216616761,3.83161e-07,0
|
|
29
|
+
0.00108323853738,0.000836876893125,0.000361298234125,-0.0100651889756,-0.00442119210625,0.109184373562,1.17340572885e-06,7.00362934247e-07,1.30536413982e-07,0.000101308029115,1.95469396404e-05,0.0119212274302,-0.00066689,0.00013441,5.2539e-05,-0.0079580677,0.0351237,-0.003601,4.447422721e-07,1.80660481e-08,2.760346521e-09,6.33308415178e-05,0.00123367430169,1.2967201e-05,0
|
|
30
|
+
0.00195975853738,0.000776240893125,0.000465546234125,-0.00425699897563,-0.00703421210625,0.0961173735625,3.84065352481e-06,6.02549924159e-07,2.16733296108e-07,1.81220402785e-05,4.94801399557e-05,0.00923854950055,0.00087652,-6.0636e-05,0.000104248,0.00580819,-0.00261302,-0.013067,7.682873104e-07,3.676724496e-09,1.0867645504e-08,3.37350710761e-05,6.8278735204e-06,0.000170746489,0
|
|
31
|
+
0.00128500853738,0.000696446893125,0.000432131234125,-0.0160124989756,0.00912030789375,0.109161373562,1.65124694113e-06,4.85038274943e-07,1.86737403506e-07,0.000256400123444,8.31800160768e-05,0.0119162054781,-0.00067475,-7.9794e-05,-3.3415e-05,-0.0117555,0.01615452,0.013044,4.552875625e-07,6.367082436e-09,1.116562225e-09,0.00013819178025,0.00026096851643,0.000170145936,0
|
|
32
|
+
0.00165195853738,0.000851136893125,0.000264232234125,-0.00481755897563,-0.00916211210625,0.102440373562,2.72896700921e-06,7.24434010838e-07,6.98186735507e-08,2.32088744836e-05,8.39442982475e-05,0.0104940301356,0.00036695,0.00015469,-0.000167899,0.01119494,-0.01828242,-0.006721,1.346523025e-07,2.39289961e-08,2.8190074201e-08,0.000125326681604,0.000334246881056,4.5171841e-05,0
|
|
33
|
+
0.00123582853738,0.000542251893125,0.000480974234125,-0.0153653989756,0.00993580789375,0.126482373562,1.52727217379e-06,2.94037115598e-07,2.31336213892e-07,0.00023609548568,9.87202785015e-05,0.015997790822,-0.00041613,-0.000308885,0.000216742,-0.01054784,0.01909792,0.024042,1.731641769e-07,9.5409943225e-08,4.6977094564e-08,0.000111256928666,0.000364730548326,0.000578017764,0
|
|
34
|
+
0.00193139853738,0.000633525893125,0.000202295234125,0.000931341024375,0.0431987078938,0.109154373562,3.73030031017e-06,4.0135505726e-07,4.09233617497e-08,8.67396103684e-07,0.00186612836369,0.0119146772678,0.00069557,9.1274e-05,-0.000278679,0.01629674,0.0332629,-0.017328,4.838176249e-07,8.330943076e-09,7.7661985041e-08,0.000265583734628,0.00110642051641,0.000300259584,0
|
|
35
|
+
0.00186736853738,0.000596356893125,0.000396895234125,-0.0111836889756,-0.0254791921062,0.106136373562,3.48706525438e-06,3.55641543978e-07,1.57525826871e-07,0.000125074899104,0.000649189230387,0.011264929793,-6.403e-05,-3.7169e-05,0.0001946,-0.01211503,-0.0686779,-0.003018,4.0998409e-09,1.381534561e-09,3.786916e-08,0.000146773951901,0.00471665394841,9.108324e-06,0
|
|
36
|
+
0.00139484853738,0.000806494893125,0.000286293234125,-0.0151733989756,-0.00974766210625,0.0841940735625,1.94560244222e-06,6.50434012637e-07,8.19638159058e-08,0.000230232036473,9.50169165376e-05,0.00708864202305,-0.00047252,0.000210138,-0.000110602,-0.00398971,0.01573153,-0.0219423,2.232751504e-07,4.4157979044e-08,1.2232802404e-08,1.59177858841e-05,0.000247481036141,0.00048146452929,0
|
|
37
|
+
0.00174296853738,0.000587130893125,0.000418135234125,-0.00823752897563,-0.0248310221063,0.0900624735625,3.03793932228e-06,3.44722685662e-07,1.74837074017e-07,6.78568836243e-05,0.000616579658841,0.0081112491442,0.00034812,-0.000219364,0.000131842,0.00693587,-0.01508336,0.0058684,1.211875344e-07,4.8120564496e-08,1.7382312964e-08,4.81062926569e-05,0.00022750774889,3.443811856e-05,0
|
|
38
|
+
0.00109114853738,0.000561607893125,0.000666080234125,-0.0185276989756,0.00291840789375,0.100040373562,1.19060513062e-06,3.1540342562e-07,4.43662878292e-07,0.000343275629331,8.5171046343e-06,0.0100080763425,-0.00065182,-2.5523e-05,0.000247945,-0.01029017,0.02774943,0.0099779,4.248693124e-07,6.51423529e-10,6.1476723025e-08,0.000105887598629,0.000770030865325,9.955848841e-05,0
|
|
39
|
+
0.00163596853738,0.000561590893125,0.000369208234125,0.000945431024375,0.00163240789375,0.0812890735625,2.67639305528e-06,3.15384331241e-07,1.36314720146e-07,8.93839821851e-07,2.66475553158e-06,0.00660791348065,0.00054482,-1.69999999999e-08,-0.000296872,0.01947313,-0.001286,-0.0187513,2.968288324e-07,2.88999999998e-16,8.8132984384e-08,0.000379202791997,1.653796e-06,0.00035161125169,0
|
|
40
|
+
0.000975578537375,0.000568792893125,0.000476661234125,-0.0160377989756,-0.00305239210625,0.0934293735625,9.51753482587e-07,3.2352535527e-07,2.27205932118e-07,0.000257210995983,9.3170975703e-06,0.00872904784428,-0.00066039,7.202e-06,0.000107453,-0.01698323,-0.0046848,0.0121403,4.361149521e-07,5.1868804e-11,1.1546147209e-08,0.000288430101233,2.194735104e-05,0.00014738688409,0
|
|
41
|
+
0.00172060853738,0.000486020893125,0.000436140234125,-0.00601944897563,0.00647610789375,0.0846688735625,2.96049373889e-06,2.36216308554e-07,1.90218303823e-07,3.62337659702e-05,4.19399734515e-05,0.00716881815034,0.00074503,-8.2772e-05,-4.0521e-05,0.01001835,0.0095285,-0.0087605,5.550697009e-07,6.851203984e-09,1.641951441e-09,0.000100367336722,9.079231225e-05,7.674636025e-05,0
|
|
42
|
+
0.000835388537375,0.000525165893125,0.000548159234125,-0.0221104989756,0.0125105078937,0.103947373563,6.97874008378e-07,2.75799215302e-07,3.00478545957e-07,0.000488874164951,0.00015651280776,0.0108050564705,-0.00088522,3.9145e-05,0.000112019,-0.01609105,0.0060344,0.0192785,7.836144484e-07,1.532331025e-09,1.2548256361e-08,0.000258921890103,3.641398336e-05,0.00037166056225,0
|
|
43
|
+
0.00132826853738,0.000421196893125,0.000396549234125,-0.00796809897563,0.0145211078937,0.0849812735625,1.76429730738e-06,1.77406822778e-07,1.57251295085e-07,6.34906012854e-05,0.000210862574462,0.0072218168563,0.00049288,-0.000103969,-0.00015161,0.0141424,0.0020106,-0.0189661,2.429306944e-07,1.0809552961e-08,2.29855921e-08,0.00020000747776,4.04251236e-06,0.00035971294921,0
|
|
44
|
+
0.000810198537375,0.000391997893125,0.000584603234125,-0.0189228989756,-0.0225385321063,0.0982863735625,6.56421669965e-07,1.53662348214e-07,3.41760941349e-07,0.000358076105642,0.000507985429504,0.00966021122807,-0.00051807,-2.9199e-05,0.000188054,-0.0109548,-0.03705964,0.0133051,2.683965249e-07,8.52581601e-10,3.5364306916e-08,0.00012000764304,0.00137341691693,0.00017702568601,0
|
|
45
|
+
0.00163872853738,0.000645966893125,0.000275029234125,-0.00455084897563,0.0178883078938,0.0815189735625,2.68543121921e-06,4.17273227014e-07,7.56410796234e-08,2.07102263989e-05,0.000319991559302,0.00664534305068,0.00082853,0.000253969,-0.000309574,0.01437205,0.04042684,-0.0167674,6.864619609e-07,6.4500252961e-08,9.5836061476e-08,0.000206555821203,0.00163432939239,0.00028114570276,0
|
|
46
|
+
0.000918548537375,0.000315363893125,0.000539733234125,-0.0137015989756,0.0372459078937,0.0961543735625,8.43731415514e-07,9.9454385087e-08,2.91311964019e-07,0.000187733814489,0.00138725765483,0.0092456635552,-0.00072018,-0.000330603,0.000264704,-0.00915075,0.0193576,0.0146354,5.186592324e-07,1.09298343609e-07,7.0068207616e-08,8.37362255625e-05,0.00037471667776,0.00021419493316,0
|
|
47
|
+
0.00131960853738,0.000408363893125,0.000528728234125,-0.0169125989756,0.0174774078938,0.0897659735625,1.74136669191e-06,1.66761069208e-07,2.79553545561e-07,0.00028603600411,0.000305459786685,0.00805793000962,0.00040106,9.3e-05,-1.1005e-05,-0.003211,-0.0197685,-0.0063884,1.608491236e-07,8.649e-09,1.21110025e-10,1.0310521e-05,0.00039079359225,4.081165456e-05,0
|
|
48
|
+
0.00117483853738,0.000384636893125,0.000563786234125,-0.0213441989756,-0.0424223921063,0.101856373562,1.3802455889e-06,1.47945539553e-07,3.17854917789e-07,0.000455574829911,0.00179965935202,0.0103747208353,-0.00014477,-2.3727e-05,3.5058e-05,-0.0044316,-0.0598998,0.0120904,2.09583529e-08,5.62970529e-10,1.229063364e-09,1.963907856e-05,0.00358798604004,0.00014617777216,0
|
|
49
|
+
0.000982548537375,0.000236020893125,0.000432146234125,-0.0190007989756,0.0551956078938,0.0789547735625,9.65401628298e-07,5.57058619915e-08,1.86750367668e-07,0.000361030361712,0.00304655513076,0.00623385626831,-0.00019229,-0.000148616,-0.00013164,0.0023434,0.097618,-0.0229016,3.69754441e-08,2.2086715456e-08,1.73290896e-08,5.49152356e-06,0.009529273924,0.00052448328256,0
|
|
50
|
+
0.00159759853738,0.000416203893125,0.000296178234125,-0.00828421897563,0.00137460789375,0.0816821735625,2.55232108662e-06,1.73225680652e-07,8.77215463694e-08,6.86282840361e-05,1.88954686156e-06,0.00667197747789,0.00061505,0.000180183,-0.000135968,0.01071658,-0.053821,0.0027274,3.782865025e-07,3.2465913489e-08,1.8487297024e-08,0.000114845086896,0.002896700041,7.43871076e-06,0
|
|
51
|
+
0.000660338537375,0.000486020893125,0.000480996234125,-0.0179674989756,-0.0123617021063,0.0843020735625,4.36046983943e-07,2.36216308554e-07,2.31357377242e-07,0.000322831019439,0.000152811678964,0.00710683960694,-0.00093726,6.9817e-05,0.000184818,-0.00968328,-0.01373631,0.0026199,8.784563076e-07,4.874413489e-09,3.4157693124e-08,9.37659115584e-05,0.000188686212416,6.86387601e-06,0
|
|
52
|
+
0.00160763853738,0.000486020893125,0.000379498234125,-0.00337402897563,-0.0204866321062,0.0693224735625,2.58450166685e-06,2.36216308554e-07,1.44018909704e-07,1.13840715284e-05,0.000419702095057,0.00480560534082,0.0009473,0.0,-0.000101498,0.01459347,-0.00812493,-0.0149796,8.9737729e-07,0.0,1.0301844004e-08,0.000212969366641,6.60144875049e-05,0.00022438841616,0
|
|
53
|
+
0.00103385853738,0.000486020893125,0.000494561234125,-0.0154653989756,0.00377460789375,0.0826435735625,1.0688634753e-06,2.36216308554e-07,2.44590814299e-07,0.000239178565475,1.42476647516e-05,0.00682996025118,-0.00057378,0.0,0.000115063,-0.01209137,0.02426124,0.0133211,3.292234884e-07,0.0,1.3239493969e-08,0.000146201228477,0.000588607766338,0.00017745170521,0
|
|
54
|
+
0.00134969853738,0.000434464893125,0.000296645234125,-0.0109549589756,-0.00142879210625,0.0547825735625,1.82168614179e-06,1.88759743358e-07,8.79983949291e-08,0.000120011126158,2.04144688288e-06,0.00300113036613,0.00031584,-5.1556e-05,-0.000197916,0.00451044,-0.0052034,-0.027861,9.97549056e-08,2.658021136e-09,3.9170743056e-08,2.03440689936e-05,2.707537156e-05,0.000776235321,0
|
|
55
|
+
0.00108614853738,0.000301230893125,0.000459548234125,-0.0121352989756,-0.0345293921063,0.0676729735625,1.17971864524e-06,9.07400509729e-08,2.11184579487e-07,0.000147265481228,0.00119227891923,0.00457963135079,-0.00026355,-0.000133234,0.000162903,-0.00118034,-0.0331006,0.0128904,6.94586025e-08,1.7751298756e-08,2.6537387409e-08,1.3932025156e-06,0.00109564972036,0.00016616241216,0
|
|
56
|
+
0.00114989853738,0.000335661893125,0.000205073234125,-0.000427938975625,0.0117486078938,0.0503375735625,1.32226664626e-06,1.12668906496e-07,4.20550313545e-08,1.83131766859e-07,0.000138029787441,0.00253387131216,6.375e-05,3.4431e-05,-0.000254475,0.01170736,0.046278,-0.0173354,4.0640625e-09,1.185493761e-09,6.4757525625e-08,0.00013706227817,0.002141653284,0.00030051609316,0
|
|
57
|
+
0.00103385853738,0.000323376893125,0.000333972234125,-0.00663438897563,-0.0264645921063,0.0597792735625,1.0688634753e-06,1.04572615007e-07,1.11537453166e-07,4.40151170799e-05,0.00070037463535,0.00357356154766,-0.00011604,-1.2285e-05,0.000128899,-0.00620645,-0.0382132,0.0094417,1.34652816e-08,1.50921225e-10,1.6614952201e-08,3.85200216025e-05,0.00146024865424,8.914569889e-05,0
|
|
58
|
+
0.00112798853738,0.000399841893125,0.000397527234125,-0.0113198789756,0.0130660078937,0.0400778735625,1.27235814045e-06,1.59873539498e-07,1.58027901871e-07,0.000128139660023,0.00017072056228,0.00160623594929,9.413e-05,7.6465e-05,6.3555e-05,-0.00468549,0.0395306,-0.0197014,8.8604569e-09,5.846896225e-09,4.039238025e-09,2.19538165401e-05,0.00156266833636,0.00038814516196,0
|
|
59
|
+
0.00113672853738,0.000334418893125,0.000351598234125,-0.00362949897563,-0.0165151221063,0.0593805735625,1.29215176768e-06,1.11835996079e-07,1.2362131824e-07,1.31732628141e-05,0.000272749258184,0.00352605251661,8.74e-06,-6.5423e-05,-4.5929e-05,0.00769038,-0.02958113,0.0193027,7.63876e-11,4.280168929e-09,2.109473041e-09,5.91419445444e-05,0.000875043252077,0.00037259422729,0
|
|
60
|
+
0.000503150537375,0.000254686893125,0.000331057234125,-0.0110272489756,0.0318527078937,0.0642119735625,2.53160463261e-07,6.48654135297e-08,1.09598892266e-07,0.00012160021997,0.00101459500016,0.00412317754879,-0.000633578,-7.9732e-05,-2.0541e-05,-0.00739775,0.04836783,0.0048314,4.01421082084e-07,6.357191824e-09,4.21932681e-10,5.47267050625e-05,0.00233944697891,2.334242596e-05,0
|
|
61
|
+
0.00124814853738,0.000139946893125,0.000529484234125,-0.00887281897563,0.0134902078937,0.0388254735625,1.55787477135e-06,1.95851328953e-08,2.80353554187e-07,7.87269165742e-05,0.000181985709017,0.00150741739735,0.000744998,-0.00011474,0.000198427,0.00215443,-0.0183625,-0.0253865,5.55022020004e-07,1.31652676e-08,3.9373274329e-08,4.6415686249e-06,0.00033718140625,0.00064447438225,0
|
|
62
|
+
0.000331665537375,6.3671893125e-05,0.000631771234125,-0.0163080989756,0.0184905078938,0.0516639735625,1.10002028682e-07,4.05410997412e-09,3.99134892268e-07,0.000265954092199,0.000341898882169,0.00266916616427,-0.000916483,-7.6275e-05,0.000102287,-0.00743528,0.0050003,0.0128385,8.39941089289e-07,5.817875625e-09,1.0462630369e-08,5.52833886784e-05,2.500300009e-05,0.00016482708225,0
|
|
63
|
+
0.00128205853738,8.7939893125e-05,0.000371997234125,-0.00820409897563,-0.0124833821062,0.0098560735625,1.64367409326e-06,7.73342480284e-09,1.38381942197e-07,6.73072400019e-05,0.000155834828811,9.71421860694e-05,0.000950393,2.4268e-05,-0.000259774,0.008104,-0.03097389,-0.0418079,9.03246854449e-07,5.88935824e-10,6.7482531076e-08,6.5674816e-05,0.000959381861732,0.00174790050241,1
|
|
64
|
+
0.000726218537375,0.000151025893125,0.000523554234125,-0.0176071989756,-0.0490767921063,0.0102869735625,5.27393364027e-07,2.28088203942e-08,2.7410903607e-07,0.000310013455767,0.00240853152344,0.000105821825076,-0.00055584,6.3086e-05,0.000151557,-0.0094031,-0.03659341,0.0004309,3.089581056e-07,3.979843396e-09,2.2969524249e-08,8.841828961e-05,0.00133907765543,1.8567481e-07,0
|
|
65
|
+
0.000733758537375,1.971893125e-06,0.000439848234125,-0.0107384689756,-0.0198949821063,0.0127450735625,5.38401591171e-07,3.88836249642e-12,1.93466469063e-07,0.00011531471594,0.000395810313008,0.000162436900114,7.54e-06,-0.000149054,-8.3706e-05,0.00686873,0.02918181,0.0024581,5.68516e-11,2.2217094916e-08,7.006694436e-09,4.71794518129e-05,0.000851578034876,6.04225561e-06,0
|
|
66
|
+
0.000716158537375,-0.000167303106875,0.000565758234125,-0.0124085989756,-0.00333269210625,0.0425807735625,5.12883050655e-07,2.799032957e-08,3.2008237948e-07,0.000153973328538,1.11068366751e-05,0.00181312227718,-1.76e-05,-0.000169275,0.00012591,-0.00167013,0.01656229,0.0298357,3.0976e-10,2.8654025625e-08,1.58533281e-08,2.7893342169e-06,0.000274309450044,0.00089016899449,0
|
|
67
|
+
0.000829758537375,-0.000167303106875,0.000571756234125,-0.0229365989756,0.0108077078937,0.0146306735625,6.88499230347e-07,2.799032957e-08,3.26905191261e-07,0.000526087572569,0.000116806549917,0.000214056608892,0.0001136,0.0,5.998e-06,-0.010528,0.0141404,-0.0279501,1.290496e-08,0.0,3.5976004e-11,0.000110838784,0.00019995091216,0.00078120809001,0
|
|
68
|
+
0.000994968537375,-2.5244106875e-05,0.000617261234125,-0.0150698989756,-0.0414869921063,0.0062383735625,9.89962390366e-07,6.37264931916e-10,3.81011431154e-07,0.000227101855136,0.00172117051402,3.89173047053e-05,0.00016521,0.000142059,4.5505e-05,0.0078667,-0.0522947,-0.0083923,2.72943441e-08,2.0180759481e-08,2.070705025e-09,6.188496889e-05,0.00273473564809,7.043069929e-05,0
|
|
69
|
+
-3.2983462625e-05,8.2696893125e-05,0.000600739234125,-0.0257548989756,0.00180250789375,0.0259117735625,1.08790880673e-09,6.83877613253e-09,3.60887627417e-07,0.000663314821245,3.24903470703e-06,0.000671420009154,-0.001027952,0.000107941,-1.6522e-05,-0.010685,0.0432895,0.0196734,1.0566853143e-06,1.1651259481e-08,2.72976484e-10,0.000114169225,0.00187398081025,0.00038704266756,0
|
|
70
|
+
0.000738408537375,-0.000167303106875,0.000483475234125,-0.0111054889756,-0.0157530601063,0.0016199735625,5.45247168068e-07,2.799032957e-08,2.33748302012e-07,0.000123331885388,0.000248158902711,2.6243143432e-06,0.000771392,-0.00025,-0.000117264,0.01464941,-0.017555568,-0.0242918,5.95045617664e-07,6.25e-08,1.3750845696e-08,0.000214605213348,0.000308197967803,0.00059009154724,0
|
|
71
|
+
-0.000355918562625,-0.000167303106875,0.000598700234125,-0.0200314989756,-0.00078159210625,0.0263528735625,1.26678023221e-07,2.799032957e-08,3.58441970341e-07,0.00040126095121,6.10886220552e-07,0.000694473945001,-0.0010943271,0.0,0.000115225,-0.00892601,0.014971468,0.0247329,1.19755180179e-06,0.0,1.3276800625e-08,7.96736545201e-05,0.000224144854075,0.00061171634241,0
|
|
72
|
+
0.000528289537375,-0.000320963106875,0.000412448234125,-0.0109657089756,-0.00823741210625,-0.0069130564375,2.790898353e-07,1.03017315975e-07,1.70113545833e-07,0.000120246773338,6.78549582082e-05,4.77903493081e-05,0.0008842081,-0.00015366,-0.000186252,0.00906579,-0.00745582,-0.03326593,7.81823964106e-07,2.36113956e-08,3.4689807504e-08,8.21885483241e-05,5.55892518724e-05,0.00110662209876,0
|
|
73
|
+
-0.000979144462625,-0.000376717106875,0.000279576234125,-0.0221916989756,-0.00663021210625,-0.0294772264375,9.58723878689e-07,1.41915778612e-07,7.81628706875e-08,0.000492471503425,4.39597125739e-05,0.000868906878448,-0.001507434,-5.5754e-05,-0.000132872,-0.01122599,0.0016072,-0.02256417,2.27235726436e-06,3.108508516e-09,1.7654968384e-08,0.00012602285148,2.58309184e-06,0.000509141767789,0
|
|
74
|
+
-0.000220827462625,-0.000167303106875,0.000226813234125,-0.0194249989756,-0.0203567021062,-0.0553751264375,4.87647682494e-08,2.799032957e-08,5.14442431742e-08,0.000377330585203,0.000414395320643,0.00306640462797,0.000758317,0.000209414,-5.2763e-05,0.0027667,-0.01372649,-0.0258979,5.75044672489e-07,4.3854223396e-08,2.783934169e-09,7.65462889e-06,0.00018841652772,0.00067070122441,0
|
|
75
|
+
-0.00116444846262,-0.000392221106875,0.000204045234125,-0.0276191989756,-0.0327678921063,-0.0289147264375,1.35594022211e-06,1.53837396678e-07,4.16344575691e-08,0.000762820152055,0.00107373475309,0.000836061404955,-0.000943621,-0.000224918,-2.2768e-05,-0.0081942,-0.01241119,0.0264604,8.90420591641e-07,5.0588106724e-08,5.18381824e-10,6.714491364e-05,0.000154037637216,0.00070015276816,0
|
|
76
|
+
0.000321743537375,-0.000714661106875,-4.5954865875e-05,-0.00788625897563,0.0314814078938,-0.0314666264375,1.03518903843e-07,5.1074049768e-07,2.11184969759e-09,6.21930806306e-05,0.000991079042973,0.000990148579357,0.001486192,-0.00032244,-0.0002500001,0.01973294,0.0642493,-0.0025519,2.20876666086e-06,1.039675536e-07,6.250005e-08,0.000389388921044,0.00412797255049,6.51219361e-06,0
|
|
77
|
+
-0.00140227146262,-0.000614110106875,8.1653234125e-05,-0.0195492989756,-0.0377213921063,-0.0022656264375,1.96636525489e-06,3.77131223366e-07,6.66725064307e-09,0.000382175090438,0.00142290342243,5.1330631543e-06,-0.001724015,0.000100551,0.0001276081,-0.01166304,-0.0692028,0.029201,2.97222772022e-06,1.0110503601e-08,1.62838271856e-08,0.000136026502042,0.00478902752784,0.000852698401,0
|
|
78
|
+
0.000250643537375,-0.000555266106875,-4.5954865875e-05,-0.00931670897563,0.0150024078938,-0.0318233264375,6.28221828279e-08,3.08320449444e-07,2.11184969759e-09,8.68010661365e-05,0.00022507224261,0.00101272410555,0.001652915,5.8844e-05,-0.0001276081,0.01023259,0.0527238,-0.0295577,2.73212799723e-06,3.462616336e-09,1.62838271856e-08,0.000104705898108,0.00277979908644,0.00087365762929,0
|
|
79
|
+
-0.00124613946262,-0.000695961106875,0.000248162234125,-0.0174845989756,-0.0306725921063,0.0050726735625,1.55286356031e-06,4.84361862283e-07,6.15844944459e-08,0.000305711201338,0.000940807906516,2.57320170717e-05,-0.001496783,-0.000140695,0.0002941171,-0.00816789,-0.045675,0.036896,2.24035934909e-06,1.9795083025e-08,8.65048685124e-08,6.67144270521e-05,0.002086205625,0.001361314816,0
|
|
80
|
+
-0.000550859462625,-0.000710570106875,-0.000308163765875,-0.00777516897563,0.00082440789375,-0.0428415264375,3.03446147564e-07,5.04909876784e-07,9.49649065983e-08,6.04532525995e-05,6.79648375277e-07,0.0018353963875,0.00069528,-1.4609e-05,-0.000556326,0.00970943,0.031497,-0.0479142,4.834142784e-07,2.13422881e-10,3.09498618276e-07,9.42730309249e-05,0.000992061009,0.00229577056164,0
|
|
81
|
+
-0.000821084462625,-0.00114177910687,-0.000140618285875,-0.00773169897563,-0.0424279921062,-0.0223583264375,6.74179694764e-07,1.3036595289e-06,1.97735023224e-08,5.97791690497e-05,0.00180013451417,0.000499894761086,-0.000270225,-0.000431209,0.00016754548,4.347e-05,-0.0432524,0.0204832,7.3021550625e-08,1.85941201681e-07,2.80714878684e-08,1.8896409e-09,0.00187077010576,0.00041956148224,0
|
|
82
|
+
-0.00113128946262,-0.000729617106875,-0.000243474765875,-0.00202457257563,-0.0234983721062,-0.0372819264375,1.27981584825e-06,5.32341122645e-07,5.92799616179e-08,4.09889411397e-06,0.000552173491644,0.00138994203889,-0.000310205,0.000412162,-0.00010285648,0.0057071264,0.01892962,-0.0149236,9.6227142025e-08,1.69877514244e-07,1.0579455478e-08,3.25712917456e-05,0.000358330513344,0.00022271383696,0
|
|
83
|
+
0.000269303537375,-0.00100249310687,3.7901234125e-05,0.00272111102437,-0.00649285210625,-0.0303385264375,7.25243952427e-08,1.00499242933e-06,1.4365035482e-09,7.40444520698e-06,4.21571284736e-05,0.000920426186399,0.001400593,-0.000272876,0.000281376,0.0047456836,0.01700552,0.0069434,1.96166075165e-06,7.4461311376e-08,7.9172453376e-08,2.25215128313e-05,0.00028918771047,4.821080356e-05,0
|
|
84
|
+
-0.00135107146262,-0.000472659106875,0.000149858234125,-0.0116128089756,0.0142823078938,-0.0306288264375,1.82539409712e-06,2.23406631312e-07,2.24574903351e-08,0.000134857332304,0.000203984318772,0.000938125008939,-0.001620375,0.000529834,0.000111957,-0.01433392,0.02077516,-0.0002903,2.62561514062e-06,2.80724067556e-07,1.2534369849e-08,0.000205461262566,0.000431607273026,8.427409e-08,0
|
|
85
|
+
-0.000739046462625,-0.000697940106875,0.000257090234125,-0.00427248897563,-0.0408097921062,-0.0632988264375,5.46189673919e-07,4.87120392785e-07,6.60953884824e-08,1.82541620468e-05,0.00166543913176,0.00400674142836,0.000612025,-0.000225281,0.000107232,0.00734032,-0.0550921,-0.03267,3.74574600625e-07,5.0751528961e-08,1.1498701824e-08,5.38802977024e-05,0.00303513948241,0.0010673289,0
|
|
86
|
+
-0.00106487846262,-0.000763552106875,-4.5954865875e-05,-0.00615150897563,-0.0249245221062,-0.0342316264375,1.13396614016e-06,5.83011819913e-07,2.11184969759e-09,3.78410626772e-05,0.000621231802225,0.00117180424856,-0.000325832,-6.5612e-05,-0.0003030451,-0.00187902,0.01588527,0.0290672,1.06166492224e-07,4.304934544e-09,9.1836332634e-08,3.5307161604e-06,0.000252341802973,0.00084490211584,0
|
|
87
|
+
-0.00104959146262,-0.000672421106875,-4.5954765875e-05,-0.00670301897563,0.0296481078938,-0.0399058264375,1.10164223842e-06,4.52150144971e-07,2.11184050663e-09,4.49304633876e-05,0.000879010301679,0.00159247498366,1.5287e-05,9.1131e-05,1.00000000007e-10,-0.00055151,0.05457263,-0.0056742,2.33692369e-10,8.304859161e-09,1.00000000014e-20,3.041632801e-07,0.00297817194512,3.219654564e-05,0
|
|
88
|
+
-0.00113102746262,-0.000676463106875,8.0601234125e-05,-0.00814361897563,-0.0467985921062,-0.0371467264375,1.27922312121e-06,4.57602334963e-07,6.49655894247e-09,6.63185300202e-05,0.00219010822313,0.00137987928502,-8.1436e-05,-4.042e-06,0.000126556,-0.0014406,-0.0764467,0.0027591,6.631822096e-09,1.6337764e-11,1.6016421136e-08,2.07532836e-06,0.00584409794089,7.61263281e-06,0
|
|
89
|
+
-0.00155403146262,-0.000579296106875,7.1579234125e-05,-0.0213500989756,-0.00825867210625,-0.0335128264375,2.41501378683e-06,3.35583979441e-07,5.12358675792e-09,0.000455826726269,6.82056649586e-05,0.00112310953583,-0.000423004,9.7167e-05,-9.022e-06,-0.01320648,0.03853992,0.0036339,1.78932384016e-07,9.441425889e-09,8.1396484e-11,0.00017441111399,0.00148532543361,1.320522921e-05,0
|
|
90
|
+
-0.000594667462625,-0.000607038106875,-0.000180509465875,-0.00282850597563,0.00827230789375,-0.0533026264375,3.53629391105e-07,3.68495263198e-07,3.25836672705e-08,8.00044605415e-06,6.8431077889e-05,0.00284116998514,0.000959364,-2.7742e-05,-0.0002520887,0.018521593,0.01653098,-0.0197898,9.20379284496e-07,7.69618564e-10,6.35487126677e-08,0.000343049407258,0.00027327329976,0.00039163618404,0
|
|
91
|
+
-0.00154822146262,-0.000698830106875,-4.5954865875e-05,-0.00818996897563,-0.0239117421063,-0.0272640264375,2.39698969733e-06,4.88363518275e-07,2.11184969759e-09,6.70755918217e-05,0.000571771410556,0.000743327137585,-0.000953554,-9.1792e-05,0.0001345546,-0.005361463,-0.03218405,0.0260386,9.09265230916e-07,8.425771264e-09,1.81049403812e-08,2.87452855004e-05,0.0010358130744,0.00067800868996,0
|
|
92
|
+
-0.00145546146262,-0.000609003106875,-0.000142597005875,-0.00993643897563,-0.00554290210625,-0.0337328264375,2.11836806919e-06,3.70884784183e-07,2.03339060845e-08,9.87328195163e-05,3.07237637595e-05,0.00113790357946,9.276e-05,8.9827e-05,-9.664214e-05,-0.00174647,0.01836884,-0.0064688,8.6044176e-09,8.068889929e-09,9.33970322378e-09,3.0501574609e-06,0.000337414282946,4.184537344e-05,0
|
|
93
|
+
-6.7570462625e-05,-0.000688866106875,-0.000122282365875,-0.000414868975625,0.0145453078937,-0.0209307264375,4.56576741936e-09,4.74536513201e-07,1.4952977004e-08,1.72116266936e-07,0.000211565981724,0.000438095309201,0.001387891,-7.9863e-05,2.031464e-05,0.00952157,0.02008821,0.0128021,1.92624142788e-06,6.378098769e-09,4.1268459833e-10,9.06602952649e-05,0.000403536181004,0.00016389376441,0
|
|
94
|
+
-0.000367870562625,-0.000167303106875,-0.000466368765875,-0.00236705097563,0.0306974078938,0.0364148735625,1.35328750846e-07,2.799032957e-08,2.17499825784e-07,5.60293032121e-06,0.000942330851395,0.00132604301657,-0.0003003001,0.000521563,-0.0003440864,-0.001952182,0.0161521,0.0573456,9.018015006e-08,2.72027962969e-07,1.18395450665e-07,3.81101456112e-06,0.00026089033441,0.00328851783936,0
|
|
95
|
+
2.4959537375e-05,8.9660893125e-05,-0.000466368765875,0.0172024010244,0.0219760078938,0.0298875735625,6.22978505974e-10,8.03907575597e-09,2.17499825784e-07,0.000295922601003,0.000482944922946,0.000893267053454,0.0003928301,0.000256964,0.0,0.019569452,-0.0087214,-0.0065273,1.54315487466e-07,6.6030497296e-08,0.0,0.00038296345158,7.606281796e-05,4.260564529e-05,0
|
|
96
|
+
-0.000548509462625,0.000143314893125,-0.000528801765875,0.00444890102437,0.0203876078937,0.0514518735625,3.00862630589e-07,2.05391585914e-08,2.79631307593e-07,1.97927203247e-05,0.000415654555629,0.00264729529309,-0.000573469,5.3654e-05,-6.2433e-05,-0.0127535,-0.0015884,0.0215643,3.28866693961e-07,2.878751716e-09,3.897879489e-09,0.00016265176225,2.52301456e-06,0.00046501903449,0
|
|
97
|
+
-0.000298509662625,2.9021893125e-05,-0.000501883765875,0.0215987010244,0.0417679078937,0.0340409735625,8.91080186805e-08,8.42270280559e-10,2.51887314449e-07,0.00046650388594,0.00174455812982,0.00115878788108,0.0002499998,-0.000114293,2.6918e-05,0.0171498,0.0213803,-0.0174109,6.24999e-08,1.3062889849e-08,7.24578724e-10,0.00029411564004,0.00045711722809,0.00030313943881,0
|
|
98
|
+
-0.000352466742625,6.2052893125e-05,-0.000365124765875,0.0170340010244,0.0321737078938,0.0511836735625,1.24232804657e-07,3.85056154518e-09,1.33316094655e-07,0.000290157190898,0.00103514747963,0.00261976843935,-5.395708e-05,3.3031e-05,0.000136759,-0.0045647,-0.0095942,0.0171427,2.91136648213e-09,1.091046961e-09,1.8703024081e-08,2.083648609e-05,9.204867364e-05,0.00029387216329,0
|
|
99
|
+
-0.000298509662625,0.000181444893125,-0.000491473765875,0.0235402010244,0.0380637078937,0.0244975735625,8.91080186805e-08,3.29222492411e-08,2.41546462543e-07,0.000554141064268,0.00144884585862,0.00060013111045,5.395708e-05,0.000119392,-0.000126349,0.0065062,0.00589,-0.0266861,2.91136648213e-09,1.4254449664e-08,1.5964069801e-08,4.233063844e-05,3.46921e-05,0.00071214793321,0
|
|
100
|
+
-0.00162673146262,-0.000167303106875,-0.000593576765875,0.0122962010244,-0.0166148621062,0.0071850735625,2.64625525149e-06,2.799032957e-08,3.52333376987e-07,0.000151196559632,0.00027605364281,5.16252820985e-05,-0.0013282218,-0.000348748,-0.000102103,-0.011244,-0.05467857,-0.0173125,1.76417315e-06,1.21625167504e-07,1.0425022609e-08,0.000126427536,0.00298974601724,0.00029972265625,0
|
|
101
|
+
-0.000548509462625,-0.000257519106875,-0.000500824765875,0.0210939010244,0.0211268078938,-0.0389689264375,3.00862630589e-07,6.63160904057e-08,2.50825446114e-07,0.000444952660426,0.000446342011779,0.00151857722769,0.001078222,-9.0216e-05,9.2752e-05,0.0087977,0.03774167,-0.046154,1.16256268128e-06,8.138926656e-09,8.602933504e-09,7.739952529e-05,0.00142443365439,0.002130191716,0
|
|
102
|
+
-0.000968705462625,-0.000294362106875,-0.000438558765875,0.0159647010244,0.00687340789375,-0.0229388264375,9.3839027332e-07,8.66490499639e-08,1.92333791126e-07,0.000254871678798,4.72437360739e-05,0.00052618975833,-0.000420196,-3.6843e-05,6.2266e-05,-0.0051292,-0.0142534,0.0160301,1.76564678416e-07,1.357406649e-09,3.877054756e-09,2.630869264e-05,0.00020315941156,0.00025696410601,0
|
|
103
|
+
-0.000876988462625,-0.000167303106875,-0.000564067765875,0.00937930102437,0.00465850789375,-0.0506460264375,7.69108763577e-07,2.799032957e-08,3.18172444499e-07,8.79712877058e-05,2.17016957961e-05,0.00256501999391,9.1717e-05,0.000127059,-0.000125509,-0.0065854,-0.0022149,-0.0277072,8.412008089e-09,1.6143989481e-08,1.5752509081e-08,4.336749316e-05,4.90578201e-06,0.00076768893184,0
|
|
104
|
+
-0.000548509462625,-0.000230939606875,-0.000453578765875,0.0181302010244,-0.0437948921063,-0.0548025264375,3.00862630589e-07,5.33331020236e-08,2.05733696853e-07,0.000328704189184,0.0019179925746,0.00300331690393,0.000328479,-6.36365e-05,0.000110489,0.0087509,-0.0484534,-0.0041565,1.07898453441e-07,4.04960413225e-09,1.2207819121e-08,7.657825081e-05,0.00234773197156,1.727649225e-05,0
|
|
105
|
+
-0.00133477046262,-0.000167303106875,-0.000339550765875,0.0137350010244,-0.0149751401062,-0.0449093264375,1.7816121879e-06,2.799032957e-08,1.15294722606e-07,0.00018865025314,0.000224254821202,0.00201684760107,-0.000786261,6.36365e-05,0.000114028,-0.0043952,0.028819752,0.0098932,6.18206360121e-07,4.04960413225e-09,1.3002384784e-08,1.931778304e-05,0.000830578105342,9.787540624e-05,0
|
|
106
|
+
-0.000674326462625,-0.000167303106875,-0.000611635765875,0.0170247010244,-0.0136476321062,-0.0588527264375,4.54716178196e-07,2.799032957e-08,3.74098310097e-07,0.000289840444969,0.000186257862108,0.00346364340913,0.000660444,0.0,-0.000272085,0.0032897,0.001327508,-0.0139434,4.36186277136e-07,0.0,7.4030247225e-08,1.082212609e-05,1.76227749006e-06,0.00019441840356,0
|
|
107
|
+
-0.00159474146262,-0.000266959106875,-0.000401993765875,0.0128639010244,-0.0353418921063,-0.0380373264375,2.54320033262e-06,7.12671647435e-08,1.61598987802e-07,0.000165479949565,0.00124904933765,0.00144683820251,-0.000920415,-9.9656e-05,0.000209642,-0.0041608,-0.02169426,0.0208154,8.47163772225e-07,9.931318336e-09,4.3949768164e-08,1.731225664e-05,0.000470640916948,0.00043328087716,0
|
|
108
|
+
-0.000385867962625,-0.000228521806875,-0.000345706765875,0.0245328010244,0.0327079078938,-0.0723141264375,1.4889408458e-07,5.22222162174e-08,1.19513167972e-07,0.000601858326102,0.00106980723879,0.00522933288242,0.0012088735,3.84373e-05,5.6287e-05,0.0116689,0.0680498,-0.0342768,1.461375139e-06,1.47742603129e-09,3.168226369e-09,0.00013616322721,0.00463077528004,0.00117489901824,0
|
|
109
|
+
-0.00131404246262,-0.000278618106875,-0.000418003765875,0.0187997010244,-0.0156230901063,-0.0694868264375,1.72670759358e-06,7.76280494786e-08,1.74727148286e-07,0.000353428758606,0.000244080944468,0.00482841904836,-0.0009281745,-5.00963e-05,-7.2297e-05,-0.0057331,-0.048330998,0.0028273,8.6150790245e-07,2.50963927369e-09,5.226856209e-09,3.286843561e-05,0.00233588536768,7.99362529e-06,0
|
|
110
|
+
-0.000734415462625,-0.000167303106875,-0.000628894765875,0.0220802010244,-0.00517219210625,-0.0800100264375,5.39366071743e-07,2.799032957e-08,3.95508626545e-07,0.000487535277277,2.6751571184e-05,0.00640160433053,0.000579627,0.000111315,-0.000210891,0.0032805,0.010450898,-0.0105232,3.35967459129e-07,1.2391029225e-08,4.4475013881e-08,1.076168025e-05,0.000109221269006,0.00011073773824,0
|
|
111
|
+
-0.00161207146262,0.000183806893125,-0.000529850765875,0.00327367102437,0.00195290789375,-0.0585205264375,2.59877440061e-06,3.37849739603e-08,2.80741834098e-07,1.07169219758e-05,3.81384924147e-06,0.00342465201452,-0.000877656,0.00035111,9.9044e-05,-0.01880653,0.0071251,0.0214895,7.70280054336e-07,1.232782321e-07,9.809713936e-09,0.000353685570641,5.076705001e-05,0.00046179861025,0
|
|
112
|
+
-0.00100278246262,-0.000167303106875,-0.000536986765875,0.0214127010244,-0.0138370121063,-0.0730556264375,1.00557266735e-06,2.799032957e-08,2.88354786725e-07,0.000458503765159,0.000191462904029,0.00533712455418,0.000609289,-0.00035111,-7.136e-06,0.01813903,-0.01578992,-0.0145351,3.71233085521e-07,1.232782321e-07,5.0922496e-11,0.000329024409341,0.000249321573606,0.00021126913201,0
|
|
113
|
+
-0.00124362846262,-0.000167303106875,-0.000668701765875,0.0144457010244,0.00119080789375,-0.0628457264375,1.54661175305e-06,2.799032957e-08,4.47162051684e-07,0.000208678278086,1.41802343982e-06,0.00394958533146,-0.000240846,0.0,-0.000131715,-0.006967,0.01502782,0.0102099,5.8006795716e-08,0.0,1.7348841225e-08,4.8539089e-05,0.000225835373952,0.00010424205801,0
|
|
114
|
+
-0.000783377462625,-0.000167303106875,-0.000540546765875,0.0229056010244,0.0388483078938,-0.0914697264375,6.13680248949e-07,2.799032957e-08,2.92190806098e-07,0.000524666558288,0.00150919102621,0.00836671085455,0.000460251,0.0,0.000128155,0.0084599,0.0376575,-0.028624,2.11830983001e-07,0.0,1.6423704025e-08,7.156990801e-05,0.00141808730625,0.000819333376,0
|
|
115
|
+
-0.00165600146262,-0.000218923906875,-0.000577596765875,0.0189902010244,-0.0399227921063,-0.0714901264375,2.74234084422e-06,4.79276770014e-08,3.33618023949e-07,0.000360627734946,0.00159382932956,0.00511083817805,-0.000872624,-5.16208e-05,-3.705e-05,-0.0039154,-0.0787711,0.0199796,7.61472645376e-07,2.66470699264e-09,1.3727025e-09,1.533035716e-05,0.00620488619521,0.00039918441616,0
|
|
116
|
+
-0.000982226462625,-0.000167303106875,-0.000589355765875,0.0265529010244,0.0184931078937,-0.0967536264375,9.64768823881e-07,2.799032957e-08,3.4734021877e-07,0.00070505655281,0.00034199503957,0.00936126422881,0.000673775,5.16208e-05,-1.1759e-05,0.0075627,0.0584159,-0.0252635,4.53972750625e-07,2.66470699264e-09,1.38274081e-10,5.719443129e-05,0.00341241737281,0.00063824443225,0
|
|
117
|
+
-0.00159204146262,-0.000300925106875,-0.000748158765875,0.0194913010244,-0.0310812921062,-0.0774833264375,2.53459601872e-06,9.05559199477e-08,5.59741538956e-07,0.000379910815623,0.000966046718994,0.00600366587582,-0.000609815,-0.000133622,-0.000158803,-0.0070616,-0.0495744,0.0192703,3.71874334225e-07,1.7854838884e-08,2.5218392809e-08,4.986619456e-05,0.00245762113536,0.00037134446209,0
|
|
118
|
+
-0.00182235146262,-0.000445601106875,-0.000716911765875,0.0190497010244,0.0133639078938,-0.0770067264375,3.32096485333e-06,1.98560346448e-07,5.1396248005e-07,0.000362891109118,0.000178594034193,0.00593003591662,-0.00023031,-0.000144676,3.1247e-05,-0.0004416,0.0444452,0.0004766,5.30426961e-08,2.0931144976e-08,9.76375009e-10,1.9501056e-07,0.00197537580304,2.2714756e-07,0
|
|
119
|
+
-0.00127482546262,-0.000167303106875,-0.000745819765875,0.0142242010244,-0.0111465521063,-0.0774640264375,1.62517996016e-06,2.799032957e-08,5.5624712317e-07,0.000202327894782,0.000124245623857,0.00600067539191,0.000547526,0.000278298,-2.8908e-05,-0.0048255,-0.02451046,-0.0004573,2.99784720676e-07,7.7449776804e-08,8.35672464e-10,2.328545025e-05,0.000600762649412,2.0912329e-07,0
|
|
120
|
+
-0.00178863146262,-0.000375054106875,-0.000500897765875,0.00790478102437,0.0248281078937,-0.0520949264375,3.19920250909e-06,1.40665583084e-07,2.50898571859e-07,6.24855630433e-05,0.000616434941584,0.00271388136053,-0.000513806,-0.000207751,0.000244922,-0.00631942,0.03597466,0.0253691,2.63996605636e-07,4.3160478001e-08,5.9986786084e-08,3.99350691364e-05,0.00129417616212,0.00064359123481,0
|
|
121
|
+
-0.000921845462625,-0.000296485106875,-0.000577787765875,0.0152649010244,0.0123819078938,-0.0750858264375,8.49799056962e-07,8.79034185987e-08,3.33838702395e-07,0.000233017203284,0.000153311643089,0.0056378813318,0.000866786,7.8569e-05,-7.689e-05,0.00736012,-0.0124462,-0.0229909,7.51317969796e-07,6.173087761e-09,5.9120721e-09,5.41713664144e-05,0.00015490789444,0.00052858148281,0
|
|
122
|
+
-0.00200734146262,-0.000376366106875,-0.000615524765875,0.00849410102438,0.0120522078938,-0.0747740264375,4.02941974757e-06,1.41651446404e-07,3.78870737405e-07,7.21497522123e-05,0.000145255715114,0.00559115502968,-0.001085496,-7.9881e-05,-3.7737e-05,-0.0067708,-0.0003297,0.0003118,1.17830156602e-06,6.380974161e-09,1.424081169e-09,4.584373264e-05,1.0870209e-07,9.721924e-08,0
|
|
123
|
+
-0.00108740246262,-0.000321184106875,-0.000729649765875,0.0167216010244,-0.00860992210625,-0.0977470264375,1.18244411572e-06,1.03159230509e-07,5.32388780841e-07,0.000279611940818,7.41307586757e-05,0.00955448117737,0.000919939,5.5182e-05,-0.000114125,0.0082275,-0.02066213,-0.022973,8.46287763721e-07,3.045053124e-09,1.3024515625e-08,6.769175625e-05,0.000426923616137,0.000527758729,0
|
|
124
|
+
-0.00195839146262,-0.000294696106875,-0.000663057765875,0.0104624010244,-0.00861810210625,-0.0868989264375,3.83529712088e-06,8.68457954073e-08,4.39645600887e-07,0.000109461835195,7.42716839138e-05,0.00755142341599,-0.000870989,2.6488e-05,6.6592e-05,-0.0062592,-8.18e-06,0.0108481,7.58621838121e-07,7.01614144e-10,4.434494464e-09,3.917758464e-05,6.69124e-11,0.00011768127361,0
|
|
125
|
+
-0.00128086246262,-0.000398550106875,-0.000727121765875,0.0116443010244,-0.00709939210625,-0.113526626438,1.64060864816e-06,1.5884218769e-07,5.28706062409e-07,0.000135589746346,5.04013682783e-05,0.0128882949103,0.000677529,-0.000103854,-6.4064e-05,0.0011819,0.00151871,-0.0266277,4.59045545841e-07,1.0785653316e-08,4.104196096e-09,1.39688761e-06,2.3064800641e-06,0.00070903440729,0
|
|
126
|
+
-0.00228135146262,-0.000674164106875,-0.000612580765875,0.00715996102437,-0.0201335021062,-0.0999110264375,5.20456449602e-06,4.54497242999e-07,3.7525519472e-07,5.12650418706e-05,0.000405357907062,0.00998221320379,-0.001000489,-0.000275614,0.000114541,-0.00448434,-0.01303411,0.0136156,1.00097823912e-06,7.5963076996e-08,1.3119640681e-08,2.01093052356e-05,0.000169888023492,0.00018538456336,0
|
|
127
|
+
-0.00153394146262,-0.000373062106875,-0.000684318765875,0.0180916010244,-0.0138793221063,-0.120686626438,2.35297641076e-06,1.39175335586e-07,4.68292173329e-07,0.000327306027625,0.000192635582129,0.0145652618009,0.00074741,0.000301102,-7.1738e-05,0.01093164,0.00625418,-0.0207756,5.586217081e-07,9.0662414404e-08,5.146340644e-09,0.00011950075309,3.91147674724e-05,0.00043162555536,0
|
|
128
|
+
-0.00218708146262,-0.000605191106875,-0.000684318765875,0.0138161010244,-0.0366669921062,-0.0853746264375,4.78332532416e-06,3.66256275841e-07,4.68292173329e-07,0.000190884647516,0.00134446831012,0.00728882683934,-0.00065314,-0.000232129,0.0,-0.0042755,-0.02278767,0.035312,4.265918596e-07,5.3883872641e-08,0.0,1.827990025e-05,0.000519277904029,0.001246937344,0
|
|
129
|
+
-0.00126514046262,-0.000390291106875,-0.000606427765875,0.0218486010244,0.0270332078937,-0.119428626438,1.60058039017e-06,1.52327148106e-07,3.67754635224e-07,0.000477361366722,0.000730794329027,0.0142631968127,0.000921941,0.0002149,7.7891e-05,0.0080325,0.0637002,-0.034054,8.49975207481e-07,4.618201e-08,6.067007881e-09,6.452105625e-05,0.00405771548004,0.001159674916,0
|
|
130
|
+
-0.00199560146262,-0.000616787106875,-0.000591246765875,0.0199143010244,0.00742840789375,-0.110802626438,3.98242519763e-06,3.80426335207e-07,3.49572738158e-07,0.000396579385289,5.51812438359e-05,0.0122772220254,-0.000730461,-0.000226496,1.5181e-05,-0.0019343,-0.0196048,0.008626,5.33573272521e-07,5.1300438016e-08,2.30462761e-10,3.74151649e-06,0.00038434818304,7.4407876e-05,0
|
|
131
|
+
-0.00147580146262,-0.000439676106875,-0.000684318765875,0.0200359010244,0.0351266078938,-0.127701626438,2.17798995709e-06,1.93315078957e-07,4.68292173329e-07,0.000401437329859,0.00123387858212,0.0163077053948,0.0005198,0.000177111,-9.3072e-05,0.0001216,0.0276982,-0.016899,2.7019204e-07,3.1368306321e-08,8.662397184e-09,1.478656e-08,0.00076719028324,0.000285576201,0
|
|
132
|
+
-0.00213657146262,-0.000432984106875,-0.000684318765875,0.0308046010244,-0.0208698021063,-0.122149626438,4.5649376149e-06,1.87475236806e-07,4.68292173329e-07,0.000948923444271,0.000435548639954,0.0149205312388,-0.00066077,6.692e-06,0.0,0.0107687,-0.05599641,0.005552,4.366169929e-07,4.4782864e-11,0.0,0.00011596489969,0.00313559793289,3.0824704e-05,0
|
|
133
|
+
-0.00178114146262,-0.000343112106875,-0.000792094765875,0.0271886010244,0.0268575078938,-0.149697626438,3.17246490988e-06,1.17725917884e-07,6.27414118127e-07,0.000739220025663,0.000721325730263,0.022409379361,0.00035543,8.9872e-05,-0.000107776,-0.003616,0.04772731,-0.027548,1.263304849e-07,8.076976384e-09,1.1615666176e-08,1.3075456e-05,0.00227789611984,0.000758892304,0
|
|
134
|
+
-0.00197920146262,-0.000467879106875,-0.000735372765875,0.0245812010244,-0.0294497921063,-0.135843626438,3.91723842966e-06,2.1891085865e-07,5.40773104791e-07,0.000604235443801,0.000867290255101,0.0184534908437,-0.00019806,-0.000124767,5.6722e-05,-0.0026074,-0.0563073,0.013854,3.92277636e-08,1.5566804289e-08,3.217385284e-09,6.79853476e-06,0.00317051203329,0.000191933316,0
|
|
135
|
+
-0.00213275146262,-0.000653181106875,-0.000684318765875,0.0168177010244,0.00050910789375,-0.140275626438,4.54862880133e-06,4.26645558378e-07,4.68292173329e-07,0.000282835067745,2.59190847479e-07,0.0196772513724,-0.00015355,-0.000185302,5.1054e-05,-0.0077635,0.0299589,-0.004432,2.35776025e-08,3.4336831204e-08,2.606510916e-09,6.027193225e-05,0.00089753568921,1.9642624e-05,0
|
|
136
|
+
-0.00140482146262,-0.000523371106875,-0.000773727765875,0.0193618010244,-0.00020089210625,-0.136783626438,1.97352334185e-06,2.73917315512e-07,5.98654655686e-07,0.000374879338907,4.03576383536e-08,0.0187097604614,0.00072793,0.00012981,-8.9409e-05,0.0025441,-0.00071,0.003492,5.298820849e-07,1.68506361e-08,7.993969281e-09,6.47244481e-06,5.041e-07,1.2194064e-05,0
|
|
137
|
+
-0.00222937146262,-0.000518463106875,-0.000684318765875,0.0170440010244,0.00453770789375,-0.142109626438,4.97009711837e-06,2.6880399319e-07,4.68292173329e-07,0.000290497970919,2.0590792929e-05,0.0201951459262,-0.00082455,4.908e-06,8.9409e-05,-0.0023178,0.0047386,-0.005326,6.798827025e-07,2.4088464e-11,7.993969281e-09,5.37219684e-06,2.245432996e-05,2.8366276e-05,0
|
|
138
|
+
-0.00168518146262,-0.000492154106875,-0.000684318765875,0.0202748010244,-0.0133733821063,-0.141997626438,2.83983656197e-06,2.42215664914e-07,4.68292173329e-07,0.000411067556578,0.00017884734896,0.0201633259139,0.00054419,2.6309e-05,0.0,0.0032308,-0.01791109,0.000112,2.961427561e-07,6.92163481e-10,0.0,1.043806864e-05,0.000320807144988,1.2544e-08,0
|
|
139
|
+
-0.00185823146262,-0.000731926106875,-0.000483096765875,0.0155278010244,0.0210938078938,-0.115244626438,3.45302416869e-06,5.35715825925e-07,2.33382485199e-07,0.000241112604653,0.000444948731458,0.0132813239227,-0.00017305,-0.000239772,0.000201222,-0.004747,0.03446719,0.026753,2.99463025e-08,5.7490611984e-08,4.0490293284e-08,2.2534009e-05,0.0011879871865,0.000715723009,0
|
|
140
|
+
-0.000816482462625,-0.000313745106875,-0.000647942765875,0.0333398010244,0.00519270789375,-0.107788726438,6.66643611774e-07,9.8435992088e-08,4.1982982785e-07,0.00111154233234,2.69642152698e-05,0.011618409547,0.001041749,0.000418181,-0.000164846,0.017812,-0.0159011,0.0074559,1.085240979e-06,1.74875348761e-07,2.7174203716e-08,0.000317267344,0.00025284498121,5.559044481e-05,0
|
|
141
|
+
-0.00186037146262,-0.000630555106875,-0.000563498765875,0.0232125010244,0.0148007078938,-0.0916402264375,3.46098197895e-06,3.97599742806e-07,3.17530859143e-07,0.000538820203807,0.000219060954156,0.00839793110152,-0.001043889,-0.00031681,8.4444e-05,-0.0101273,0.009608,0.0161485,1.08970424432e-06,1.003685761e-07,7.130789136e-09,0.00010256220529,9.2313664e-05,0.00026077405225,0
|
|
142
|
+
-0.00102330846262,-0.000388581106875,-0.000647942765875,0.0331533010244,0.0220983078938,-0.132631626438,1.04716020968e-06,1.5099527662e-07,4.1982982785e-07,0.00109914136881,0.000488335211767,0.0175911483315,0.000837063,0.000241974,-8.4444e-05,0.0099408,0.0072976,-0.0409914,7.00674465969e-07,5.8551416676e-08,7.130789136e-09,9.881950464e-05,5.325496576e-05,0.00168029487396,0
|
|
143
|
+
-0.00188439146262,-0.000486280106875,-0.000852636765875,0.0216976010244,-0.0156525341063,-0.124072626438,3.55093118441e-06,2.36468342342e-07,7.26989454522e-07,0.000470785890213,0.000245001823947,0.0153940166311,-0.000861083,-9.7699e-05,-0.000204694,-0.0114557,-0.037750842,0.008559,7.41463932889e-07,9.545094601e-09,4.1899633636e-08,0.00013123306249,0.00142512607171,7.3256481e-05,0
|
|
144
|
+
-0.00150055146262,-0.000490634106875,-0.000893198765875,0.0232443010244,0.00927730789375,-0.143226626438,2.25165469199e-06,2.40721826829e-07,7.97804035361e-07,0.000540297530112,8.60684417554e-05,0.0205138665207,0.00038384,-4.354e-06,-4.0562e-05,0.0015467,0.024929842,-0.019154,1.473331456e-07,1.8957316e-11,1.645275844e-09,2.39228089e-06,0.000621497022145,0.000366875716,0
|
|
145
|
+
-0.00156075146262,-0.000544716106875,-0.000654507765875,0.0162289010244,-0.0191838421063,-0.126197626438,2.43594512809e-06,2.96715637089e-07,4.28380415591e-07,0.000263377228459,0.000368019797958,0.0159258409185,-6.02e-05,-5.4082e-05,0.000238691,-0.0070154,-0.02846115,0.017029,3.62404e-09,2.924862724e-09,5.6973393481e-08,4.921583716e-05,0.000810037059322,0.000289986841,0
|
|
146
|
+
-0.00180023146262,-0.000491553106875,-0.000733096765875,0.0149303010244,0.0193622078937,-0.138075626438,3.24083331902e-06,2.41624456878e-07,5.37430868136e-07,0.000222913888678,0.000374895094521,0.0190648786161,-0.00023948,5.3163e-05,-7.8589e-05,-0.0012986,0.03854605,-0.011878,5.73506704e-08,2.826304569e-09,6.176230921e-09,1.68636196e-06,0.0014857979706,0.000141086884,0
|
|
147
|
+
-0.00157197146262,-0.000486649106875,-0.000640913765875,0.0212801010244,-0.0330578921063,-0.111090626438,2.47109427931e-06,2.36827353222e-07,4.10770455288e-07,0.000452842699608,0.00109282423051,0.0123411272823,0.00022826,4.904e-06,9.2183e-05,0.0063498,-0.0524201,0.026985,5.21026276e-08,2.4049216e-11,8.497705489e-09,4.031996004e-05,0.00274786688401,0.000728190225,0
|
|
148
|
+
-0.00169486146262,-0.000689605106875,-0.000566368765875,0.0104952010244,0.00422110789375,-0.122309626438,2.87255537749e-06,4.75555203428e-07,3.20773578959e-07,0.000110149244542,1.78177518507e-05,0.0149596447193,-0.00012289,-0.000202956,7.4545e-05,-0.0107849,0.037279,-0.011219,1.51019521e-08,4.1191137936e-08,5.556957025e-09,0.00011631406801,0.001389723841,0.000125865961,0
|
|
149
|
+
-0.00150159146262,-0.000475214106875,-0.000677112765875,0.0173256010244,-0.00744096210625,-0.132357626438,2.25477692063e-06,2.25828447373e-07,4.58481697711e-07,0.000300176450856,5.53679170666e-05,0.0175185412762,0.00019327,0.000214391,-0.000110744,0.0068304,-0.01166207,-0.010048,3.73532929e-08,4.5963500881e-08,1.2264233536e-08,4.665436416e-05,0.000136003876685,0.000100962304,0
|
|
150
|
+
-0.00210979146262,-0.000776119106875,-0.000615871765875,0.0197604010244,0.0109804078937,-0.115356626438,4.45122001577e-06,6.02360868056e-07,3.79298032002e-07,0.000390473448644,0.000120569357513,0.013307151263,-0.0006082,-0.000300905,6.1241e-05,0.0024348,0.01842137,0.017001,3.6990724e-07,9.0543819025e-08,3.750460081e-09,5.92825104e-06,0.000339346872677,0.000289034001,0
|
|
151
|
+
-0.00125938746262,-0.000555227106875,-0.000681430765875,0.0220951010244,0.0241244078938,-0.119676626438,1.58605678102e-06,3.08277140209e-07,4.64347888681e-07,0.000488193489277,0.000581987056224,0.0143224949155,0.000850404,0.000220892,-6.5559e-05,0.0023347,0.013144,-0.00432,7.23186963216e-07,4.8793275664e-08,4.297982481e-09,5.45082409e-06,0.000172764736,1.86624e-05,0
|
|
152
|
+
-0.00125452646262,-0.00100760410688,-0.000448828765875,0.0139647010244,0.0394311078937,-0.0414639264375,1.57383664543e-06,1.01526603619e-06,2.01447261077e-07,0.0001950128747,0.00155481226973,0.00171925719561,4.861e-06,-0.000452377,0.000232602,-0.0081304,0.0153067,0.0782127,2.3629321e-11,2.04644950129e-07,5.4103690404e-08,6.610340416e-05,0.00023429506489,0.00611722644129,0
|
|
153
|
+
-0.000399960062625,-0.00123361910687,-0.000395144765875,0.0100215010244,0.0457930078937,-0.0284272264375,1.59968051695e-07,1.52181610085e-06,1.56139385998e-07,0.000100430482782,0.00209699957196,0.000808107202929,0.0008545664,-0.000226015,5.3684e-05,-0.0039432,0.0063619,0.0130367,7.30283732009e-07,5.1082780225e-08,2.881971856e-09,1.554882624e-05,4.047377161e-05,0.00016995554689,0
|
|
154
|
+
-0.000769940462625,-0.00101244410687,-0.000354233765875,0.0115495010244,0.0225264078938,-0.0138509664375,5.92808315987e-07,1.02504306955e-06,1.25481560886e-07,0.000133390973912,0.000507439052596,0.000191849271253,-0.0003699804,0.000221175,4.0911e-05,0.001528,-0.0232666,0.01457626,1.36885496384e-07,4.8918380625e-08,1.673709921e-09,2.334784e-06,0.00054133467556,0.000212467355588,0
|
|
155
|
+
-0.000664756462625,-0.000899495106875,-0.000523729765875,0.00665723102437,0.0480057078937,-0.0675778264375,4.41901154602e-07,8.09091447292e-07,2.74292867663e-07,4.43187249119e-05,0.00230454799038,0.00456676262602,0.000105184,0.000112949,-0.000169496,-0.00489227,0.0254793,-0.05372686,1.1063673856e-08,1.2757476601e-08,2.8728894016e-08,2.39343057529e-05,0.00064919472849,0.00288657548546,0
|
|
156
|
+
-0.00113658746262,-0.000904612106875,-0.000454248765875,0.00553983102437,0.0289521078937,-0.0600337264375,1.2918310602e-06,8.18323063905e-07,2.06341941299e-07,3.06897277786e-05,0.000838224551491,0.00360404830997,-0.000471831,-5.117e-06,6.9481e-05,-0.0011174,-0.0190536,0.0075441,2.22624492561e-07,2.6183689e-11,4.827609361e-09,1.24858276e-06,0.00036303967296,5.691344481e-05,0
|
|
157
|
+
-0.000488335462625,-0.000635030106875,-0.000737003765875,0.0196786010244,0.0439639078938,-0.0893745264375,2.38471524057e-07,4.03263236638e-07,5.43174550914e-07,0.000387247338277,0.00193282519729,0.00798780597593,0.000648252,0.000269582,-0.000282755,0.01413877,0.0150118,-0.0293408,4.20230655504e-07,7.2674454724e-08,7.9950390025e-08,0.000199904817113,0.00022535413924,0.00086088254464,0
|
|
158
|
+
-0.000892963462625,-0.000671301106875,-0.000680760765875,0.0153499010244,0.0140855078937,-0.0775419264375,7.97383745583e-07,4.50645176092e-07,4.63435220355e-07,0.000235619461458,0.000198401532625,0.00601275035564,-0.000404628,-3.6271e-05,5.6243e-05,-0.0043287,-0.0298784,0.0118326,1.63723818384e-07,1.315585441e-09,3.163275049e-09,1.873764369e-05,0.00089271878656,0.00014001042276,0
|
|
159
|
+
-0.000488335462625,-0.000368394106875,-0.000731001765875,0.0162213010244,0.0853315078937,-0.0691666264375,2.38471524057e-07,1.3571421798e-07,5.34363581712e-07,0.000263130606923,0.00728146623942,0.00478402221274,0.000404628,0.000302907,-5.0241e-05,0.0008714,0.071246,0.0083753,1.63723818384e-07,9.1752650649e-08,2.524158081e-09,7.5933796e-07,0.005075992516,7.014565009e-05,0
|
|
160
|
+
-0.00179121146262,-0.000235623006875,-0.00117042676587,0.0330776010244,0.0175944078938,0.0304586735625,3.20843850384e-06,5.55182013688e-08,1.36989881428e-06,0.00109412768953,0.000309563189132,0.000927730795187,-0.001302876,0.0001327711,-0.000439425,0.0168563,-0.0677371,0.0996253,1.69748587138e-06,1.76281649952e-08,1.93094330625e-07,0.00028413484969,0.00458831471641,0.00992520040009,0
|
|
161
|
+
-0.00175588146262,-0.000550287106875,-0.00132676676587,0.0525199010244,0.0337532078937,-0.0340975264375,3.08311971079e-06,3.02815899993e-07,1.76031005103e-06,0.00275834000361,0.00113927904312,0.00116264130916,3.533e-05,-0.0003146641,-0.00015634,0.0194423,0.0161588,-0.0645562,1.2482089e-09,9.90134958288e-08,2.44421956e-08,0.00037800302929,0.00026110681744,0.00416750295844,0
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
onset,duration,trial_type
|
|
2
|
+
10.1605967,10,CoachTaylor
|
|
3
|
+
18.190957161,10,LylaGarrity
|
|
4
|
+
26.221317192,10,JulieTaylor
|
|
5
|
+
33.252048014,10,LylaGarrity
|
|
6
|
+
40.282787781,10,LandryClarke
|
|
7
|
+
51.311997544,10,BuddyGarrity
|
|
8
|
+
57.343152722,10,TamiTaylor
|
|
9
|
+
63.37425517,10,BuddyGarrity
|
|
10
|
+
69.405359036,10,SmashWilliams
|
|
11
|
+
76.436088332,10,SmashWilliams
|
|
12
|
+
83.466820048,10,GrandmaSaracen
|
|
13
|
+
91.497193631,10,BillyRiggins
|
|
14
|
+
101.526809594,10,MattSaracen
|
|
15
|
+
108.557544453,10,TamiTaylor
|
|
16
|
+
114.588578367,10,TamiTaylor
|
|
17
|
+
120.61974369,10,GrandmaSaracen
|
|
18
|
+
126.650846005,10,BillyRiggins
|
|
19
|
+
132.681946075,10,LylaGarrity
|
|
20
|
+
142.71156909,10,LandryClarke
|
|
21
|
+
156.739712911,10,BuddyGarrity
|
|
22
|
+
162.770814649,10,JasonStreet
|
|
23
|
+
173.800055801,10,TimRiggins
|
|
24
|
+
180.830786482,10,CoachTaylor
|
|
25
|
+
186.86185978,10,JasonStreet
|
|
26
|
+
192.892958472,10,CoachTaylor
|
|
27
|
+
202.922615368,10,JasonStreet
|
|
28
|
+
208.95371632,10,GrandmaSaracen
|
|
29
|
+
220.982600503,10,MattSaracen
|
|
30
|
+
234.011058731,10,BillyRiggins
|
|
31
|
+
240.042214664,10,JasonStreet
|
|
32
|
+
249.072207216,10,TimRiggins
|
|
33
|
+
256.102931267,10,BillyRiggins
|
|
34
|
+
263.133663523,10,JulieTaylor
|
|
35
|
+
272.163655973,10,JulieTaylor
|
|
36
|
+
281.193644014,10,JasonStreet
|
|
37
|
+
289.223956762,10,TyraCollette
|
|
38
|
+
297.254368242,10,GrandmaSaracen
|
|
39
|
+
304.285099479,10,MattSaracen
|
|
40
|
+
313.315087766,10,BuddyGarrity
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""Global MNI brain-space configuration for nltools.
|
|
2
|
+
|
|
3
|
+
This module manages the default MNI template used by `BrainData` and
|
|
4
|
+
related classes when no explicit mask is provided. Set it once (e.g., at
|
|
5
|
+
the top of a notebook) and all subsequent operations pick it up
|
|
6
|
+
automatically.
|
|
7
|
+
|
|
8
|
+
Examples:
|
|
9
|
+
Set the global brain space:
|
|
10
|
+
|
|
11
|
+
```python
|
|
12
|
+
import nltools
|
|
13
|
+
|
|
14
|
+
nltools.set_brainspace(template="fmriprep", resolution=2)
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Inspect the current configuration:
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
cfg = nltools.get_brainspace()
|
|
21
|
+
print(cfg.mask)
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Scope a change to a block:
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
with nltools.with_brainspace(resolution=1):
|
|
28
|
+
brain = BrainData(...)
|
|
29
|
+
```
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
# Internal package: these imports are re-exports for the rest of nltools, not
|
|
33
|
+
# an advertised surface, so there is no `__all__` to mark them as used. The
|
|
34
|
+
# four brain-space functions are advertised at `nltools`, `BrainSpaceConfig` at
|
|
35
|
+
# `nltools.data`, and `fetch_resource`/`list_resources` at `nltools.datasets`.
|
|
36
|
+
from .config import ( # noqa: F401
|
|
37
|
+
BrainSpaceConfig,
|
|
38
|
+
get_brainspace,
|
|
39
|
+
reset_brainspace,
|
|
40
|
+
set_brainspace,
|
|
41
|
+
with_brainspace,
|
|
42
|
+
)
|
|
43
|
+
from .fetch import fetch_resource, list_resources # noqa: F401
|
|
44
|
+
from .matching import ( # noqa: F401
|
|
45
|
+
_TemplateMatch,
|
|
46
|
+
_detect_resolution,
|
|
47
|
+
_get_bg_image,
|
|
48
|
+
_is_standard_space,
|
|
49
|
+
_match_resolution,
|
|
50
|
+
)
|
|
51
|
+
from .paths import _resolve_paths, _resolve_template_name # noqa: F401
|