Polarized Image and Instrumental Modeling
In this tutorial, we will analyze a simulated simple polarized dataset to demonstrate Comrade's polarized imaging capabilities.
Introduction to Polarized Imaging
The EHT is a polarized interferometer. However, like all VLBI interferometers, it does not directly measure the Stokes parameters (I, Q, U, V). Instead, it measures components related to the electric field at the telescope along two directions using feeds. There are two types of feeds at telescopes: circular, which measure
These coherency matrices are the fundamental object in interferometry and what the telescope observes. For a perfect interferometer, these circular coherency matrices are related to the usual Fourier transform of the stokes parameters by
Note
In this tutorial, we stick to circular feeds but Comrade has the capabilities to model linear (XX,XY, ...) and mixed basis coherencies (e.g., RX, RY, ...).
In reality, the measure coherencies are corrupted by both the atmosphere and the telescope itself. In Comrade
we use the RIME formalism [1] to represent these corruptions, namely our measured coherency matrices
where
Comrade
is highly flexible with how the Jones matrices are formed and provides several convenience functions that parameterize standard Jones matrices. These matrices include:
JonesG
which builds the set of complex gain Jones matrices
JonesD
which builds the set of complex d-terms Jones matrices
JonesR
is the basis transform matrix. This transformation is special and combines two things using the decomposition . The first, , is the transformation from some reference basis to the observed coherency basis (this allows for mixed basis measurements). The second is the feed rotation, , that transforms from some reference axis to the axis of the telescope as the source moves in the sky. The feed rotation matrix F
for circular feeds in terms of the per station feed rotation angleis
In the rest of the tutorial, we are going to solve for all of these instrument model terms in while re-creating the polarized image from the first EHT results on M87
.
Load the Data
To get started we will load Comrade
using Comrade
Load the Data
using Pyehtim
CondaPkg Found dependencies: /home/runner/.julia/packages/DimensionalData/M9vEC/CondaPkg.toml
CondaPkg Found dependencies: /home/runner/.julia/packages/PythonCall/WMWY0/CondaPkg.toml
CondaPkg Found dependencies: /home/runner/.julia/packages/Pyehtim/Fm109/CondaPkg.toml
CondaPkg Resolving changes
+ ehtim (pip)
+ libstdcxx-ng
+ numpy
+ numpy (pip)
+ openssl
+ pandas
+ python
+ setuptools (pip)
+ uv
+ xarray
CondaPkg Initialising pixi
│ /home/runner/.julia/artifacts/cefba4912c2b400756d043a2563ef77a0088866b/bin/pixi
│ init
│ --format pixi
└ /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg
✔ Created /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/pixi.toml
CondaPkg Wrote /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/pixi.toml
│ [dependencies]
│ openssl = ">=3, <3.1"
│ uv = ">=0.4"
│ libstdcxx-ng = ">=3.4,<13.0"
│ pandas = "<2"
│ xarray = "*"
│ numpy = ">=1.24, <2.0"
│
│ [dependencies.python]
│ channel = "conda-forge"
│ build = "*cpython*"
│ version = ">=3.8,<4, >=3.6,<=3.10"
│
│ [project]
│ name = ".CondaPkg"
│ platforms = ["linux-64"]
│ channels = ["conda-forge"]
│ channel-priority = "strict"
│ description = "automatically generated by CondaPkg.jl"
│
│ [pypi-dependencies]
│ ehtim = ">=1.2.10, <2.0"
│ numpy = ">=1.24, <2.0"
└ setuptools = "*"
CondaPkg Installing packages
│ /home/runner/.julia/artifacts/cefba4912c2b400756d043a2563ef77a0088866b/bin/pixi
│ install
└ --manifest-path /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/pixi.toml
✔ The default environment has been installed.
For reproducibility we use a stable random number genreator
using StableRNGs
rng = StableRNG(42)
StableRNGs.LehmerRNG(state=0x00000000000000000000000000000055)
Now we will load some synthetic polarized data.
fname = Base.download("https://de.cyverse.org/anon-files/iplant/home/shared/commons_repo/curated/EHTC_M87pol2017_Nov2023/hops_data/April11/SR2_M87_2017_101_lo_hops_ALMArot.uvfits",
joinpath(__DIR, "m87polarized.uvfits")
)
obs = Pyehtim.load_uvfits_and_array(
fname,
joinpath(__DIR, "..", "..", "Data", "array.txt"), polrep="circ")
Python: <ehtim.obsdata.Obsdata object at 0x7f04c00b9120>
Notice that, unlike other non-polarized tutorials, we need to include a second argument. This is the array file of the observation and is required to determine the feed rotation of the array.
Now we scan average the data since the data to boost the SNR and reduce the total data volume.
obs = scan_average(obs).add_fractional_noise(0.01).flag_uvdist(uv_min=0.1e9)
Python: <ehtim.obsdata.Obsdata object at 0x7f04c0279270>
Now we extract our observed/corrupted coherency matrices.
dvis = extract_table(obs, Coherencies())
EHTObservationTable{Comrade.EHTCoherencyDatum{Float64}}
source: M87
mjd: 57854
bandwidth: 1.856e9
sites: [:AA, :AP, :AZ, :JC, :LM, :PV, :SM]
nsamples: 189
##Building the Model/Posterior
To build the model, we first break it down into two parts:
The image or sky model. In Comrade, all polarized image models are written in terms of the Stokes parameters. In this tutorial, we will use a polarized image model based on Pesce (2021)[2], and parameterizes each pixel in terms of the
Poincare sphere
. This parameterization ensures that we have all the physical properties of stokes parameters. Note that we also have a parameterization in terms of hyperbolic trig functionsVLBISkyModels.PolExp2Map
The instrument model. The instrument model specifies the model that describes the impact of instrumental and atmospheric effects. We will be using the
decomposition we described above. However, to parameterize the R/L complex gains, we will be using a gain product and ratio decomposition. The reason for this decomposition is that in realistic measurements, the gain ratios and products have different temporal characteristics. Namely, many of the EHT observations tend to demonstrate constant R/L gain ratios across an nights observations, compared to the gain products, which vary every scan. Additionally, the gain ratios tend to be smaller (i.e., closer to unity) than the gain products. Using this apriori knowledge, we can build this into our model and reduce the total number of parameters we need to model.
First we specify our sky model. As always Comrade
requires this to be a two argument function where the first argument is typically a NamedTuple of parameters we will fit and the second are additional metadata required to build the model.
using StatsFuns: logistic
function sky(θ, metadata)
(;c, σ, p, p0, pσ, angparams) = θ
(;mimg, ftot) = metadata
# Build the stokes I model
rast = apply_fluctuations(CenteredLR(), mimg, σ.*c.params)
brast = baseimage(rast)
brast .= ftot.*brast
# The total polarization fraction is modeled in logit space so we transform it back
pim = logistic.(p0 .+ pσ.*p.params)
# Build our IntensityMap
pmap = PoincareSphere2Map(rast, pim, angparams)
# Construct the actual image model which uses a third order B-spline pulse
m = ContinuousImage(pmap, BSplinePulse{3}())
# Finally find the image centroid and shift it to be at the center
x0, y0 = centroid(pmap)
ms = shifted(m, -x0, -y0)
return ms
end
sky (generic function with 1 method)
Now, we define the model metadata required to build the model. We specify our image grid and cache model needed to define the polarimetric image model. Our image will be a 10x10 raster with a 60μas FOV.
using Distributions
using VLBIImagePriors
fovx = μas2rad(200.0)
fovy = μas2rad(200.0)
nx = ny = 32
grid = imagepixels(fovx, fovy, nx, ny)
fwhmfac = 2*sqrt(2*log(2))
mpr = modify(Gaussian(), Stretch(μas2rad(50.0)./fwhmfac))
mimg = intensitymap(mpr, grid)
┌ 32×32 IntensityMap{Float64, 2} ┐
├────────────────────────────────┴─────────────────────────────────────── dims ┐
↓ X Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points
└──────────────────────────────────────────────────────────────────────────────┘
↓ → -4.69663e-10 -4.39362e-10 -4.09062e-10 -3.78761e-10 -3.4846e-10 -3.18159e-10 -2.87858e-10 -2.57557e-10 -2.27256e-10 -1.96956e-10 -1.66655e-10 -1.36354e-10 -1.06053e-10 -7.57521e-11 -4.54513e-11 -1.51504e-11 1.51504e-11 4.54513e-11 7.57521e-11 1.06053e-10 1.36354e-10 1.66655e-10 1.96956e-10 2.27256e-10 2.57557e-10 2.87858e-10 3.18159e-10 3.4846e-10 3.78761e-10 4.09062e-10 4.39362e-10 4.69663e-10
-4.69663e-10 1.25675e-11 4.60978e-11 1.55054e-10 4.78251e-10 1.3527e-9 3.50847e-9 8.34459e-9 1.81997e-8 3.63993e-8 6.67567e-8 1.12271e-7 1.73145e-7 2.44865e-7 3.1755e-7 3.77633e-7 4.11812e-7 4.11812e-7 3.77633e-7 3.1755e-7 2.44865e-7 1.73145e-7 1.12271e-7 6.67567e-8 3.63993e-8 1.81997e-8 8.34459e-9 3.50847e-9 1.3527e-9 4.78251e-10 1.55054e-10 4.60978e-11 1.25675e-11
-4.39362e-10 4.60978e-11 1.69087e-10 5.6874e-10 1.75423e-9 4.96172e-9 1.28691e-8 3.06081e-8 6.67567e-8 1.33513e-7 2.44865e-7 4.11812e-7 6.351e-7 8.98167e-7 1.16478e-6 1.38516e-6 1.51053e-6 1.51053e-6 1.38516e-6 1.16478e-6 8.98167e-7 6.351e-7 4.11812e-7 2.44865e-7 1.33513e-7 6.67567e-8 3.06081e-8 1.28691e-8 4.96172e-9 1.75423e-9 5.6874e-10 1.69087e-10 4.60978e-11
-4.09062e-10 1.55054e-10 5.6874e-10 1.913e-9 5.90051e-9 1.66892e-8 4.32864e-8 1.02953e-7 2.24542e-7 4.49084e-7 8.23623e-7 1.38516e-6 2.13621e-6 3.02106e-6 3.91783e-6 4.65912e-6 5.0808e-6 5.0808e-6 4.65912e-6 3.91783e-6 3.02106e-6 2.13621e-6 1.38516e-6 8.23623e-7 4.49084e-7 2.24542e-7 1.02953e-7 4.32864e-8 1.66892e-8 5.90051e-9 1.913e-9 5.6874e-10 1.55054e-10
-3.78761e-10 4.78251e-10 1.75423e-9 5.90051e-9 1.81997e-8 5.14764e-8 1.33513e-7 3.1755e-7 6.92582e-7 1.38516e-6 2.5404e-6 4.27243e-6 6.58898e-6 9.31823e-6 1.20843e-5 1.43707e-5 1.56713e-5 1.56713e-5 1.43707e-5 1.20843e-5 9.31823e-6 6.58898e-6 4.27243e-6 2.5404e-6 1.38516e-6 6.92582e-7 3.1755e-7 1.33513e-7 5.14764e-8 1.81997e-8 5.90051e-9 1.75423e-9 4.78251e-10
-3.4846e-10 1.3527e-9 4.96172e-9 1.66892e-8 5.14764e-8 1.45597e-7 3.77633e-7 8.98167e-7 1.95892e-6 3.91783e-6 7.18534e-6 1.20843e-5 1.86365e-5 2.63559e-5 3.41794e-5 4.06464e-5 4.43252e-5 4.43252e-5 4.06464e-5 3.41794e-5 2.63559e-5 1.86365e-5 1.20843e-5 7.18534e-6 3.91783e-6 1.95892e-6 8.98167e-7 3.77633e-7 1.45597e-7 5.14764e-8 1.66892e-8 4.96172e-9 1.3527e-9
-3.18159e-10 3.50847e-9 1.28691e-8 4.32864e-8 1.33513e-7 3.77633e-7 9.79458e-7 2.32956e-6 5.0808e-6 1.01616e-5 1.86365e-5 3.13427e-5 4.8337e-5 6.83588e-5 8.86505e-5 0.000105424 0.000114965 0.000114965 0.000105424 8.86505e-5 6.83588e-5 4.8337e-5 3.13427e-5 1.86365e-5 1.01616e-5 5.0808e-6 2.32956e-6 9.79458e-7 3.77633e-7 1.33513e-7 4.32864e-8 1.28691e-8 3.50847e-9
-2.87858e-10 8.34459e-9 3.06081e-8 1.02953e-7 3.1755e-7 8.98167e-7 2.32956e-6 5.54065e-6 1.20843e-5 2.41685e-5 4.43252e-5 7.45458e-5 0.000114965 0.000162586 0.000210847 0.000250741 0.000273435 0.000273435 0.000250741 0.000210847 0.000162586 0.000114965 7.45458e-5 4.43252e-5 2.41685e-5 1.20843e-5 5.54065e-6 2.32956e-6 8.98167e-7 3.1755e-7 1.02953e-7 3.06081e-8 8.34459e-9
-2.57557e-10 1.81997e-8 6.67567e-8 2.24542e-7 6.92582e-7 1.95892e-6 5.0808e-6 1.20843e-5 2.63559e-5 5.27119e-5 9.6674e-5 0.000162586 0.000250741 0.000354602 0.000459862 0.000546871 0.000596367 0.000596367 0.000546871 0.000459862 0.000354602 0.000250741 0.000162586 9.6674e-5 5.27119e-5 2.63559e-5 1.20843e-5 5.0808e-6 1.95892e-6 6.92582e-7 2.24542e-7 6.67567e-8 1.81997e-8
-2.27256e-10 3.63993e-8 1.33513e-7 4.49084e-7 1.38516e-6 3.91783e-6 1.01616e-5 2.41685e-5 5.27119e-5 0.000105424 0.000193348 0.000325171 0.000501483 0.000709204 0.000919723 0.00109374 0.00119273 0.00119273 0.00109374 0.000919723 0.000709204 0.000501483 0.000325171 0.000193348 0.000105424 5.27119e-5 2.41685e-5 1.01616e-5 3.91783e-6 1.38516e-6 4.49084e-7 1.33513e-7 3.63993e-8
-1.96956e-10 6.67567e-8 2.44865e-7 8.23623e-7 2.5404e-6 7.18534e-6 1.86365e-5 4.43252e-5 9.6674e-5 0.000193348 0.000354602 0.000596367 0.000919723 0.00130069 0.00168678 0.00200593 0.00218748 0.00218748 0.00200593 0.00168678 0.00130069 0.000919723 0.000596367 0.000354602 0.000193348 9.6674e-5 4.43252e-5 1.86365e-5 7.18534e-6 2.5404e-6 8.23623e-7 2.44865e-7 6.67567e-8
-1.66655e-10 1.12271e-7 4.11812e-7 1.38516e-6 4.27243e-6 1.20843e-5 3.13427e-5 7.45458e-5 0.000162586 0.000325171 0.000596367 0.00100297 0.00154678 0.00218748 0.00283681 0.00337356 0.00367889 0.00367889 0.00337356 0.00283681 0.00218748 0.00154678 0.00100297 0.000596367 0.000325171 0.000162586 7.45458e-5 3.13427e-5 1.20843e-5 4.27243e-6 1.38516e-6 4.11812e-7 1.12271e-7
-1.36354e-10 1.73145e-7 6.351e-7 2.13621e-6 6.58898e-6 1.86365e-5 4.8337e-5 0.000114965 0.000250741 0.000501483 0.000919723 0.00154678 0.00238547 0.00337356 0.00437497 0.00520274 0.00567363 0.00567363 0.00520274 0.00437497 0.00337356 0.00238547 0.00154678 0.000919723 0.000501483 0.000250741 0.000114965 4.8337e-5 1.86365e-5 6.58898e-6 2.13621e-6 6.351e-7 1.73145e-7
-1.06053e-10 2.44865e-7 8.98167e-7 3.02106e-6 9.31823e-6 2.63559e-5 6.83588e-5 0.000162586 0.000354602 0.000709204 0.00130069 0.00218748 0.00337356 0.00477093 0.00618714 0.00735779 0.00802372 0.00802372 0.00735779 0.00618714 0.00477093 0.00337356 0.00218748 0.00130069 0.000709204 0.000354602 0.000162586 6.83588e-5 2.63559e-5 9.31823e-6 3.02106e-6 8.98167e-7 2.44865e-7
-7.57521e-11 3.1755e-7 1.16478e-6 3.91783e-6 1.20843e-5 3.41794e-5 8.86505e-5 0.000210847 0.000459862 0.000919723 0.00168678 0.00283681 0.00437497 0.00618714 0.00802372 0.00954187 0.0104055 0.0104055 0.00954187 0.00802372 0.00618714 0.00437497 0.00283681 0.00168678 0.000919723 0.000459862 0.000210847 8.86505e-5 3.41794e-5 1.20843e-5 3.91783e-6 1.16478e-6 3.1755e-7
-4.54513e-11 3.77633e-7 1.38516e-6 4.65912e-6 1.43707e-5 4.06464e-5 0.000105424 0.000250741 0.000546871 0.00109374 0.00200593 0.00337356 0.00520274 0.00735779 0.00954187 0.0113473 0.0123743 0.0123743 0.0113473 0.00954187 0.00735779 0.00520274 0.00337356 0.00200593 0.00109374 0.000546871 0.000250741 0.000105424 4.06464e-5 1.43707e-5 4.65912e-6 1.38516e-6 3.77633e-7
-1.51504e-11 4.11812e-7 1.51053e-6 5.0808e-6 1.56713e-5 4.43252e-5 0.000114965 0.000273435 0.000596367 0.00119273 0.00218748 0.00367889 0.00567363 0.00802372 0.0104055 0.0123743 0.0134942 0.0134942 0.0123743 0.0104055 0.00802372 0.00567363 0.00367889 0.00218748 0.00119273 0.000596367 0.000273435 0.000114965 4.43252e-5 1.56713e-5 5.0808e-6 1.51053e-6 4.11812e-7
1.51504e-11 4.11812e-7 1.51053e-6 5.0808e-6 1.56713e-5 4.43252e-5 0.000114965 0.000273435 0.000596367 0.00119273 0.00218748 0.00367889 0.00567363 0.00802372 0.0104055 0.0123743 0.0134942 0.0134942 0.0123743 0.0104055 0.00802372 0.00567363 0.00367889 0.00218748 0.00119273 0.000596367 0.000273435 0.000114965 4.43252e-5 1.56713e-5 5.0808e-6 1.51053e-6 4.11812e-7
4.54513e-11 3.77633e-7 1.38516e-6 4.65912e-6 1.43707e-5 4.06464e-5 0.000105424 0.000250741 0.000546871 0.00109374 0.00200593 0.00337356 0.00520274 0.00735779 0.00954187 0.0113473 0.0123743 0.0123743 0.0113473 0.00954187 0.00735779 0.00520274 0.00337356 0.00200593 0.00109374 0.000546871 0.000250741 0.000105424 4.06464e-5 1.43707e-5 4.65912e-6 1.38516e-6 3.77633e-7
7.57521e-11 3.1755e-7 1.16478e-6 3.91783e-6 1.20843e-5 3.41794e-5 8.86505e-5 0.000210847 0.000459862 0.000919723 0.00168678 0.00283681 0.00437497 0.00618714 0.00802372 0.00954187 0.0104055 0.0104055 0.00954187 0.00802372 0.00618714 0.00437497 0.00283681 0.00168678 0.000919723 0.000459862 0.000210847 8.86505e-5 3.41794e-5 1.20843e-5 3.91783e-6 1.16478e-6 3.1755e-7
1.06053e-10 2.44865e-7 8.98167e-7 3.02106e-6 9.31823e-6 2.63559e-5 6.83588e-5 0.000162586 0.000354602 0.000709204 0.00130069 0.00218748 0.00337356 0.00477093 0.00618714 0.00735779 0.00802372 0.00802372 0.00735779 0.00618714 0.00477093 0.00337356 0.00218748 0.00130069 0.000709204 0.000354602 0.000162586 6.83588e-5 2.63559e-5 9.31823e-6 3.02106e-6 8.98167e-7 2.44865e-7
1.36354e-10 1.73145e-7 6.351e-7 2.13621e-6 6.58898e-6 1.86365e-5 4.8337e-5 0.000114965 0.000250741 0.000501483 0.000919723 0.00154678 0.00238547 0.00337356 0.00437497 0.00520274 0.00567363 0.00567363 0.00520274 0.00437497 0.00337356 0.00238547 0.00154678 0.000919723 0.000501483 0.000250741 0.000114965 4.8337e-5 1.86365e-5 6.58898e-6 2.13621e-6 6.351e-7 1.73145e-7
1.66655e-10 1.12271e-7 4.11812e-7 1.38516e-6 4.27243e-6 1.20843e-5 3.13427e-5 7.45458e-5 0.000162586 0.000325171 0.000596367 0.00100297 0.00154678 0.00218748 0.00283681 0.00337356 0.00367889 0.00367889 0.00337356 0.00283681 0.00218748 0.00154678 0.00100297 0.000596367 0.000325171 0.000162586 7.45458e-5 3.13427e-5 1.20843e-5 4.27243e-6 1.38516e-6 4.11812e-7 1.12271e-7
1.96956e-10 6.67567e-8 2.44865e-7 8.23623e-7 2.5404e-6 7.18534e-6 1.86365e-5 4.43252e-5 9.6674e-5 0.000193348 0.000354602 0.000596367 0.000919723 0.00130069 0.00168678 0.00200593 0.00218748 0.00218748 0.00200593 0.00168678 0.00130069 0.000919723 0.000596367 0.000354602 0.000193348 9.6674e-5 4.43252e-5 1.86365e-5 7.18534e-6 2.5404e-6 8.23623e-7 2.44865e-7 6.67567e-8
2.27256e-10 3.63993e-8 1.33513e-7 4.49084e-7 1.38516e-6 3.91783e-6 1.01616e-5 2.41685e-5 5.27119e-5 0.000105424 0.000193348 0.000325171 0.000501483 0.000709204 0.000919723 0.00109374 0.00119273 0.00119273 0.00109374 0.000919723 0.000709204 0.000501483 0.000325171 0.000193348 0.000105424 5.27119e-5 2.41685e-5 1.01616e-5 3.91783e-6 1.38516e-6 4.49084e-7 1.33513e-7 3.63993e-8
2.57557e-10 1.81997e-8 6.67567e-8 2.24542e-7 6.92582e-7 1.95892e-6 5.0808e-6 1.20843e-5 2.63559e-5 5.27119e-5 9.6674e-5 0.000162586 0.000250741 0.000354602 0.000459862 0.000546871 0.000596367 0.000596367 0.000546871 0.000459862 0.000354602 0.000250741 0.000162586 9.6674e-5 5.27119e-5 2.63559e-5 1.20843e-5 5.0808e-6 1.95892e-6 6.92582e-7 2.24542e-7 6.67567e-8 1.81997e-8
2.87858e-10 8.34459e-9 3.06081e-8 1.02953e-7 3.1755e-7 8.98167e-7 2.32956e-6 5.54065e-6 1.20843e-5 2.41685e-5 4.43252e-5 7.45458e-5 0.000114965 0.000162586 0.000210847 0.000250741 0.000273435 0.000273435 0.000250741 0.000210847 0.000162586 0.000114965 7.45458e-5 4.43252e-5 2.41685e-5 1.20843e-5 5.54065e-6 2.32956e-6 8.98167e-7 3.1755e-7 1.02953e-7 3.06081e-8 8.34459e-9
3.18159e-10 3.50847e-9 1.28691e-8 4.32864e-8 1.33513e-7 3.77633e-7 9.79458e-7 2.32956e-6 5.0808e-6 1.01616e-5 1.86365e-5 3.13427e-5 4.8337e-5 6.83588e-5 8.86505e-5 0.000105424 0.000114965 0.000114965 0.000105424 8.86505e-5 6.83588e-5 4.8337e-5 3.13427e-5 1.86365e-5 1.01616e-5 5.0808e-6 2.32956e-6 9.79458e-7 3.77633e-7 1.33513e-7 4.32864e-8 1.28691e-8 3.50847e-9
3.4846e-10 1.3527e-9 4.96172e-9 1.66892e-8 5.14764e-8 1.45597e-7 3.77633e-7 8.98167e-7 1.95892e-6 3.91783e-6 7.18534e-6 1.20843e-5 1.86365e-5 2.63559e-5 3.41794e-5 4.06464e-5 4.43252e-5 4.43252e-5 4.06464e-5 3.41794e-5 2.63559e-5 1.86365e-5 1.20843e-5 7.18534e-6 3.91783e-6 1.95892e-6 8.98167e-7 3.77633e-7 1.45597e-7 5.14764e-8 1.66892e-8 4.96172e-9 1.3527e-9
3.78761e-10 4.78251e-10 1.75423e-9 5.90051e-9 1.81997e-8 5.14764e-8 1.33513e-7 3.1755e-7 6.92582e-7 1.38516e-6 2.5404e-6 4.27243e-6 6.58898e-6 9.31823e-6 1.20843e-5 1.43707e-5 1.56713e-5 1.56713e-5 1.43707e-5 1.20843e-5 9.31823e-6 6.58898e-6 4.27243e-6 2.5404e-6 1.38516e-6 6.92582e-7 3.1755e-7 1.33513e-7 5.14764e-8 1.81997e-8 5.90051e-9 1.75423e-9 4.78251e-10
4.09062e-10 1.55054e-10 5.6874e-10 1.913e-9 5.90051e-9 1.66892e-8 4.32864e-8 1.02953e-7 2.24542e-7 4.49084e-7 8.23623e-7 1.38516e-6 2.13621e-6 3.02106e-6 3.91783e-6 4.65912e-6 5.0808e-6 5.0808e-6 4.65912e-6 3.91783e-6 3.02106e-6 2.13621e-6 1.38516e-6 8.23623e-7 4.49084e-7 2.24542e-7 1.02953e-7 4.32864e-8 1.66892e-8 5.90051e-9 1.913e-9 5.6874e-10 1.55054e-10
4.39362e-10 4.60978e-11 1.69087e-10 5.6874e-10 1.75423e-9 4.96172e-9 1.28691e-8 3.06081e-8 6.67567e-8 1.33513e-7 2.44865e-7 4.11812e-7 6.351e-7 8.98167e-7 1.16478e-6 1.38516e-6 1.51053e-6 1.51053e-6 1.38516e-6 1.16478e-6 8.98167e-7 6.351e-7 4.11812e-7 2.44865e-7 1.33513e-7 6.67567e-8 3.06081e-8 1.28691e-8 4.96172e-9 1.75423e-9 5.6874e-10 1.69087e-10 4.60978e-11
4.69663e-10 1.25675e-11 4.60978e-11 1.55054e-10 4.78251e-10 1.3527e-9 3.50847e-9 8.34459e-9 1.81997e-8 3.63993e-8 6.67567e-8 1.12271e-7 1.73145e-7 2.44865e-7 3.1755e-7 3.77633e-7 4.11812e-7 4.11812e-7 3.77633e-7 3.1755e-7 2.44865e-7 1.73145e-7 1.12271e-7 6.67567e-8 3.63993e-8 1.81997e-8 8.34459e-9 3.50847e-9 1.3527e-9 4.78251e-10 1.55054e-10 4.60978e-11 1.25675e-11
For the image metadata we specify the grid and the total flux of the image, which is 1.0. Note that we specify the total flux out front since it is degenerate with an overall shift in the gain amplitudes.
skymeta = (; mimg=mimg./flux(mimg), ftot=0.6);
We use again use a GMRF prior similar to the Imaging a Black Hole using only Closure Quantities tutorial for the log-ratio transformed image. We use the same correlated image prior for the inverse-logit transformed total polarization. The mean total polarization fraction p0
is centered at -2.0 with a standard deviation of 2.0 which logit transformed puts most of the prior mass < 0.8 fractional polarization. The standard deviation of the total polarization fraction pσ
again uses a Half-normal process. The angular parameters of the polarizaton are given by a uniform prior on the sphere.
cprior = corr_image_prior(grid, dvis)
skyprior = (
c = cprior,
σ = Exponential(0.1),
p = cprior,
p0 = Normal(-2.0, 2.0),
pσ = truncated(Normal(0.0, 1.0); lower=0.01),
angparams = ImageSphericalUniform(nx, ny),
)
skym = SkyModel(sky, skyprior, grid; metadata=skymeta)
SkyModel
with map: sky
on grid: ComradeBase.RectiGrid
Now we build the instrument model. Due to the complexity of VLBI the instrument model is critical to the success of imaging and getting reliable results. For this example we will use the standard instrument model used in polarized EHT analyses expressed in the RIME formalism. Our Jones decomposition will be given by GDR
, where G
are the complex gains, D
are the d-terms, and R
is what we call the ideal instrument response, which is how an ideal interferometer using the feed basis we observe relative to some reference basis.
Given the possible flexibility in different parameterizations of the individual Jones matrices each Jones matrix requires the user to specify a function that converts from parameters to specific parameterization f the jones matrices.
For the complex gain matrix, we used the JonesG
jones matrix. The first argument is now a function that converts from the parameters to the complex gain matrix. In this case, we will use a amplitude and phase decomposition of the complex gain matrix. Note that since the gain matrix is a diagonal 2x2 matrix the function must return a 2-element tuple. The first element of the tuple is the gain for the first polarization feed (R) and the second is the gain for the second polarization feed (L).
function fgain(x)
gR = exp(x.lgR + 1im*x.gpR)
gL = gR*exp(x.lgrat + 1im*x.gprat)
return gR, gL
end
G = JonesG(fgain)
Comrade.JonesG{typeof(Main.var"##225".fgain)}(Main.var"##225".fgain)
Similarly we provide a JonesD
function for the leakage terms. Since we assume that we are in the small leakage limit, we will use the decomposition 1 d1 d2 1 Therefore, there are 2 free parameters for the JonesD our parameterization function must return a 2-element tuple. For d-terms we will use a re-im parameterization.
function fdterms(x)
dR = complex(x.dRx, x.dRy)
dL = complex(x.dLx, x.dLy)
return dR, dL
end
D = JonesD(fdterms)
Comrade.JonesD{typeof(Main.var"##225".fdterms)}(Main.var"##225".fdterms)
Finally we define our response Jones matrix. This matrix is a basis transform matrix plus the feed rotation angle for each station. These are typically set by the telescope so there are no free parameters, so no parameterization is necessary.
R = JonesR(;add_fr=true)
Comrade.JonesR{Nothing}(nothing, true)
Finally, we build our total Jones matrix by using the JonesSandwich
function. The first argument is a function that specifies how to combine each Jones matrix. In this case we will use the standard decomposition J = adjoint(R)_G_D*R, where we need to apply the adjoint of the feed rotaion matrix R
because the data has feed rotation calibration.
js(g,d,r) = adjoint(r)*g*d*r
J = JonesSandwich(js, G, D, R)
Comrade.JonesSandwich{Base.Splat{typeof(Main.var"##225".js)}, Tuple{Comrade.JonesG{typeof(Main.var"##225".fgain)}, Comrade.JonesD{typeof(Main.var"##225".fdterms)}, Comrade.JonesR{Nothing}}}(splat(js), (Comrade.JonesG{typeof(Main.var"##225".fgain)}(Main.var"##225".fgain), Comrade.JonesD{typeof(Main.var"##225".fdterms)}(Main.var"##225".fdterms), Comrade.JonesR{Nothing}(nothing, true)))
Note
This is a general note that for arrays with non-zero leakage, feed rotation calibration does not remove the impact of feed rotations on the instrument model. That is, when modeling feed rotation must be taken into account. This is because the R and D matrices are not commutative. Therefore, to recover the correct instrumental terms we must include the feed rotation calibration in the instrument model. This is not ideal when doing polarized modeling, especially for interferometers using a mixture of linear and circular feeds. For linear feeds R does not commute with G or D and applying feed rotation calibration before solving for gains can mix gains and leakage with feed rotation calibration terms breaking many of the typical assumptions about the stabilty of different instrument effects.
For the instrument prior, we will use a simple IID prior for the complex gains and d-terms. The IIDSitePrior
function specifies that each site has the same prior and each value is independent on some time segment. The current time segments are
ScanSeg()
which specifies each scan has an independent valueTrackSeg()
which says that the value is constant over the track.IntegSeg()
which says that the value changes each integration time
For the released EHT data, the calibration procedure makes gains stable over each scan so we use ScanSeg
for those quantities. The d-terms are typically stable over the track so we use TrackSeg
for those.
intprior = (
lgR = ArrayPrior(IIDSitePrior(ScanSeg(), Normal(0.0, 0.2)); LM = IIDSitePrior(ScanSeg(), Normal(0.0, 1.0))),
lgrat= ArrayPrior(IIDSitePrior(ScanSeg(), Normal(0.0, 0.1))),
gpR = ArrayPrior(IIDSitePrior(ScanSeg(), DiagonalVonMises(0.0, inv(π^2))); refant=SEFDReference(0.0), phase=true),
gprat= ArrayPrior(IIDSitePrior(ScanSeg(), DiagonalVonMises(0.0, inv(0.1^2))); refant = SingleReference(:AA, 0.0), phase=true),
dRx = ArrayPrior(IIDSitePrior(TrackSeg(), Normal(0.0, 0.2))),
dRy = ArrayPrior(IIDSitePrior(TrackSeg(), Normal(0.0, 0.2))),
dLx = ArrayPrior(IIDSitePrior(TrackSeg(), Normal(0.0, 0.2))),
dLy = ArrayPrior(IIDSitePrior(TrackSeg(), Normal(0.0, 0.2))),
)
(lgR = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}, Base.Pairs{Symbol, Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}, Tuple{Symbol}, @NamedTuple{LM::Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}}}, Comrade.NoReference, Nothing}(Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}(Comrade.ScanSeg(), Distributions.Normal{Float64}(μ=0.0, σ=0.2)), Base.Pairs{Symbol, Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}, Tuple{Symbol}, @NamedTuple{LM::Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}}}(:LM => Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}(Comrade.ScanSeg(), Distributions.Normal{Float64}(μ=0.0, σ=1.0))), Comrade.NoReference(), false, nothing), lgrat = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.NoReference, Nothing}(Comrade.IIDSitePrior{Comrade.ScanSeg, Distributions.Normal{Float64}}(Comrade.ScanSeg(), Distributions.Normal{Float64}(μ=0.0, σ=0.1)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.NoReference(), false, nothing), gpR = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.ScanSeg, VLBIImagePriors.DiagonalVonMises{Float64, Float64, Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.SEFDReference{Float64}, Nothing}(Comrade.IIDSitePrior{Comrade.ScanSeg, VLBIImagePriors.DiagonalVonMises{Float64, Float64, Float64}}(Comrade.ScanSeg(), VLBIImagePriors.DiagonalVonMises{Float64, Float64, Float64}(μ=0.0, κ=0.10132118364233778, lnorm=-1.739120733481688)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.SEFDReference{Float64}(0.0, 0), true, nothing), gprat = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.ScanSeg, VLBIImagePriors.DiagonalVonMises{Float64, Float64, Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.SingleReference{Float64}, Nothing}(Comrade.IIDSitePrior{Comrade.ScanSeg, VLBIImagePriors.DiagonalVonMises{Float64, Float64, Float64}}(Comrade.ScanSeg(), VLBIImagePriors.DiagonalVonMises{Float64, Float64, Float64}(μ=0.0, κ=99.99999999999999, lnorm=1.3823902436480708)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.SingleReference{Float64}(:AA, 0.0), true, nothing), dRx = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.NoReference, Nothing}(Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}(Comrade.TrackSeg(), Distributions.Normal{Float64}(μ=0.0, σ=0.2)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.NoReference(), false, nothing), dRy = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.NoReference, Nothing}(Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}(Comrade.TrackSeg(), Distributions.Normal{Float64}(μ=0.0, σ=0.2)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.NoReference(), false, nothing), dLx = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.NoReference, Nothing}(Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}(Comrade.TrackSeg(), Distributions.Normal{Float64}(μ=0.0, σ=0.2)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.NoReference(), false, nothing), dLy = Comrade.ArrayPrior{Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}, Comrade.NoReference, Nothing}(Comrade.IIDSitePrior{Comrade.TrackSeg, Distributions.Normal{Float64}}(Comrade.TrackSeg(), Distributions.Normal{Float64}(μ=0.0, σ=0.2)), Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), Comrade.NoReference(), false, nothing))
Finally, we can build our instrument model which takes a model for the Jones matrix J
and priors for each term in the Jones matrix.
intmodel = InstrumentModel(J, intprior)
InstrumentModel
with Jones: JonesSandwich
with reference basis: PolarizedTypes.CirBasis()
intmodel = InstrumentModel(JonesR(;add_fr=true)) Putting it all together, we form our likelihood and posterior objects for optimization and sampling, and specifying to use Enzyme.Reverse with runtime activity for AD.
using Enzyme
post = VLBIPosterior(skym, intmodel, dvis; admode=set_runtime_activity(Enzyme.Reverse))
VLBIPosterior
ObservedSkyModel
with map: sky
on grid: VLBISkyModels.FourierDualDomainObservedInstrumentModel
with Jones: JonesSandwich
with reference basis: PolarizedTypes.CirBasis()Data Products: Comrade.EHTCoherencyDatum
Reconstructing the Image and Instrument Effects
To sample from this posterior, it is convenient to move from our constrained parameter space to an unconstrained one (i.e., the support of the transformed posterior is (-∞, ∞)). This transformation is done using the asflat
function.
tpost = asflat(post)
TransformedVLBIPosterior(
VLBIPosterior
ObservedSkyModel
with map: sky
on grid: VLBISkyModels.FourierDualDomainObservedInstrumentModel
with Jones: JonesSandwich
with reference basis: PolarizedTypes.CirBasis()Data Products: Comrade.EHTCoherencyDatum
Transform: Params to ℝ^5689
)
We can also query the dimension of our posterior or the number of parameters we will sample.
Warning
This can often be different from what you would expect. This difference is especially true when using angular variables, where we often artificially increase the dimension of the parameter space to make sampling easier.
Now we optimize. Unlike other imaging examples, we move straight to gradient optimizers due to the higher dimension of the space. In addition the only AD package that can currently work with the polarized Comrade posterior is Enzyme.
using Optimization
using OptimizationOptimisers
xopt, sol = comrade_opt(post, Optimisers.Adam();
initial_params=prior_sample(rng, post), maxiters=25_000)
((sky = (c = (params = [2.2614376879183878e-5 -1.0353920032943189e-5 3.76680905615303e-5 8.31893231174202e-6 7.728726237733662e-5 9.149111955724142e-5 0.00018615810979048813 0.00030020068390205666 0.0004433915096268116 0.000587291632732999 0.0007212261410296997 0.0008960171903817906 0.0012241561615478362 0.0017427883383662212 0.00233938567276005 0.002723447062286746 0.002573121004309116 0.002002369352712749 0.0014720251631800344 0.0011549630202590075 0.0009330681938041476 0.0006795023939269843 0.00042554950609018327 0.00024760106136904924 0.00014911622471599123 0.0001197997988634395 6.236026396188542e-5 4.870145576358004e-5 3.2813362984878936e-5 5.419975610332833e-7 2.535091177547562e-5 -1.9700434288256606e-5; -1.3542730693737274e-5 4.131033490309013e-5 1.9823679662550337e-5 0.00010064724033864119 0.0001267630258284474 0.00029557250528363895 0.0005009725135311266 0.0008487830123201163 0.0012660545728306963 0.0016757652819908873 0.0020037198615988033 0.002449229274286015 0.003397587650410345 0.004912710704837347 0.006608195980176373 0.007793268439434839 0.007278773514638601 0.005511090366664011 0.0040439215832805625 0.0031888147214135304 0.0024869637071002057 0.0017392230971753366 0.0010673206204725174 0.0006320042056869617 0.00042054976862177765 0.00028856413166114905 0.00020667153317052074 0.00011894201175845535 6.929314515252906e-5 5.019589185684607e-5 3.5092085653814975e-6 2.5536083821128157e-5; 3.926784032221803e-5 1.9832849431342433e-5 0.00010775864769305569 0.00015041607288464204 0.0003507600543004453 0.000620112450025478 0.0011700823299896138 0.00204151945450272 0.003158843296242872 0.004228500935515002 0.00497557810085643 0.005872668840270373 0.007929000991853468 0.011547597594746897 0.016379588041743158 0.020514287615925466 0.019840885910692694 0.015023310556472444 0.010486933599018195 0.007493980548895243 0.005300627771655672 0.00352028269648733 0.0022332850458484984 0.0014777701795669336 0.0010380184658127015 0.0007221857602625014 0.00047805007987490356 0.0002977886111690328 0.00016526382652399426 8.239133359559962e-5 4.715229231830517e-5 5.4010060623969914e-6; 7.928200382242906e-6 0.00010101407780359044 0.00015456768213142167 0.000372187703541297 0.0006754882853254715 0.0013180743126261763 0.0024994029966488155 0.004568045092645594 0.007579532592570545 0.010721592655161254 0.012584983569449109 0.013669694941670887 0.01658692797728787 0.023662422524504276 0.037214130077415336 0.05319704710940393 0.05728938601396355 0.04469951903796913 0.027491453337044575 0.01635732173921467 0.009837764259090252 0.006079697608666086 0.004306066743976643 0.003495302966017619 0.0026970698877694208 0.0018424234344019074 0.001138783352748019 0.0006588560394911674 0.00035997392506770547 0.00017707522518843879 8.87508984690283e-5 3.138685321890092e-5; 7.334343505538418e-5 0.000124758645401295 0.0003515344597771093 0.0006972670565743314 0.001383401634071078 0.0026252501710908468 0.004932530511795657 0.009208757459677832 0.01651834924247981 0.025909979436600443 0.03238193209025477 0.03201586712717557 0.031527232050990686 0.039540755695227976 0.06656241238708985 0.11229927641971615 0.14145976557979936 0.12038791899632081 0.07142246574220056 0.036271879226965786 0.017315713231595403 0.009411587647458086 0.008024170544263734 0.007988456389728508 0.006448552915275948 0.004287683415517639 0.002538549597475372 0.0014259430329658974 0.0007507753124236722 0.0003775901342317187 0.00015765944355729565 7.91496567245716e-5; 6.451598460449403e-5 0.000262099357228715 0.0005960223568626088 0.0013391386138561126 0.002680148183122628 0.004986469010070632 0.008916772853071825 0.016060126428335982 0.029492600602303125 0.0514553106878833 0.07380823822139426 0.07659873515983838 0.05862355644287637 0.05199510169924166 0.08250965055450499 0.17372795417529618 0.27993132994977793 0.27841953473378156 0.1748593063299575 0.0825584770772915 0.0328034798387494 0.017207893222046102 0.017469491618251048 0.017482719525658358 0.013727274802896183 0.008990808640371181 0.0053362364348004555 0.002944701896303113 0.0015051683961026141 0.0007104550739515344 0.0003321375834849226 9.798700208102567e-5; 0.0001452127954642919 0.00036520082427335263 0.0009606622399758376 0.0022864666150897626 0.004764469100146744 0.008555773595114538 0.013957254308869248 0.022757175694503546 0.040118491267884034 0.07396602682411983 0.12293762387102743 0.14855518376977508 0.10763807442651176 0.054382776642795595 0.06917772892177249 0.19215807201635515 0.40387999178516226 0.4968495041518256 0.34541529675756744 0.16504708254636588 0.06757926846440145 0.03956181339616815 0.0383913421251687 0.035782022864167894 0.026700980156904097 0.017053732658940706 0.010068588450991695 0.005514310778679626 0.0027732959020521776 0.001288779327753815 0.0005577559919154513 0.00023213046643276116; 0.00015677883504630329 0.000481047000733754 0.0012885657973418611 0.0033206762912735555 0.007486398578849551 0.013543972448139744 0.01967603929468321 0.025930956846626878 0.039065415016086985 0.070311807400203 0.12280907273337693 0.16667410738310465 0.11793523151926676 0.022970917860129024 0.019910217759245865 0.14821131852998914 0.362078271433783 0.4225212098674327 0.3726812727661641 0.2081960942183026 0.10307016757685308 0.07274096156837975 0.07856391005042584 0.0779577999885698 0.058503431318405366 0.03458073405883009 0.01900124979598964 0.009970518949418939 0.0049106075396318115 0.0022705741051710256 0.000987128699198972 0.00035643981771805316; 0.00019240867300447247 0.0005429123204302844 0.0014593493500212017 0.004068042221908415 0.010314554184560915 0.020686565017208967 0.031215810372234486 0.03404386078700229 0.031446997977114484 0.03894973273353375 0.05657497482410378 0.057230470775930437 0.023291552459922434 -0.04413602004292309 -0.04891213324720875 0.03015492252026607 0.11170616889311864 0.1039015466787372 0.10282846725687102 0.07989185024254822 0.07886520755434945 0.11715230719761964 0.1768346892490665 0.19693524523935646 0.15281164022246765 0.08696132462448082 0.04262300227633604 0.01956970418638175 0.008768750639033828 0.003899478826238911 0.0016608519398154805 0.00059978118613017; 0.00024987986387928055 0.0006378143565917155 0.0015919013889233943 0.004382377675558208 0.011748166171987715 0.02685051700666256 0.04763628483726267 0.060137571078813054 0.047541099945766135 0.01873705780213032 -0.007401552783063627 -0.034210564367426935 -0.053343532611101564 -0.04886449781610974 -0.01423069994779316 0.03483377697259816 0.005360186843170737 -0.04503393206160716 -0.07183273823990435 -0.054242213331581954 0.023435589070841964 0.16134635452319682 0.33886700066733405 0.45068291665771903 0.37478594847020974 0.19854209526473837 0.0891709375183155 0.03697246850595018 0.01496044361635065 0.006302077700978038 0.002615129844444398 0.0009308123100631355; 0.0003480659133065753 0.0008379235980098268 0.001802648940932348 0.0042793850693431746 0.011041079365675506 0.026998164554745893 0.05553051105035521 0.08603607011973596 0.08557368863150117 0.040176233922482554 -0.015057431460049746 -0.04373562416097131 -0.00497796637061412 0.14535991659961886 0.3258035624072492 0.3641794939744967 0.14841828117583333 0.06591452568603105 0.005443550921999152 0.010580590632468172 0.010675825842809768 0.1138767720397067 0.3697653519363034 0.7565647106622666 0.8180855079068009 0.3806936784971089 0.15434667756295756 0.05942739195613117 0.022834247801929972 0.009180045295809148 0.003693679322787904 0.0012951898970635597; 0.00046616419471716267 0.0011305284083163029 0.0021888481765507243 0.004169827149601317 0.009008365001733501 0.02132989742701821 0.047285880478443613 0.081204464694778 0.08834265878471677 0.04719287668327015 0.004379403440835814 0.028319182054102273 0.2113627495844103 0.6747964149826746 0.8899718769257702 0.5529218206656383 0.257782348759934 0.35609274459702994 0.3267869388396443 0.3711636496263542 0.0369539092033027 -0.013470935817069705 0.17038554239996792 0.6547534215376087 1.3975487886217137 0.561982412677236 0.21295094480933663 0.08039778301229208 0.030545666386906135 0.01195531901905652 0.004694763012450035 0.0016246397361342137; 0.0006337845813897996 0.0015637077286522348 0.0029453700184570776 0.004832761470294204 0.007976981427175697 0.01519038879721456 0.03133720090878737 0.05090820106663071 0.04198804293612387 0.010165703088625086 0.02683534099093107 0.15218648174958838 0.5234478891245355 0.28584561775987083 -0.040169954176297394 -0.2398641177306192 -0.2731352543802588 -0.09957486749857201 0.22225251529969342 0.3324951366722806 -0.025212510077109593 -0.13007808754919908 -0.027309221609697478 0.2746497463083036 0.707433881443739 0.4542624393364727 0.21598812342806203 0.09183365830294325 0.03690459616756998 0.014459286484421695 0.005581089429851504 0.0019142770981249876; 0.0008550396379332638 0.002253619890560329 0.004621113703865805 0.008024576579887054 0.01213001218209378 0.01727826424446298 0.026543521141984716 0.038754624154057546 0.0243987009246862 -0.003260380109759968 0.06604345957018776 0.3544115106407904 0.6642492034908403 -0.015872774584370083 -0.4027214886879109 -0.5550992955473315 -0.5454245891783369 -0.3823266423069745 -0.07979312582494555 0.110340407518299 -0.09425274716398296 -0.18316390164842336 -0.09105908783506107 0.15032545434815142 0.44196380802721313 0.38951930345992475 0.21724252813372716 0.10061075393943371 0.04228349788477231 0.01668868381836556 0.006290938993285375 0.002113542842183503; 0.001034607509570008 0.002817252342430868 0.006005227062566812 0.010540201236818333 0.014549336773357052 0.0142932143744383 0.006096169193921851 -0.008417879410989189 -0.03262832020656271 -0.039375458199957886 0.050786097579647735 0.2745430230334655 0.6488599289585121 -0.14844622610817748 -0.5158864977752828 -0.6417155532582681 -0.6115753200929902 -0.435348234208583 -0.11928542518909753 0.018187223330362292 -0.14146474137155224 -0.19888589602971102 -0.09365202140663982 0.1581072399036788 0.43547037022993834 0.3878657669378173 0.2177928975904378 0.1014774178369264 0.042497640576711196 0.016483545333446852 0.006031149221837913 0.001986076059077604; 0.0010813290449765039 0.0030186726799799556 0.006589419383097434 0.011603735218114062 0.015007269891549343 0.010533651378798133 -0.010000645318238034 -0.05181768060727231 -0.10041244790132355 -0.10136223016926334 0.027963621346471217 0.33055099973374363 0.4598772776249627 -0.15352476248457073 -0.4656466544504274 -0.5613578564992269 -0.49698656834996796 -0.24924429441859727 0.3067177915649243 0.24466041293306612 -0.14362999594932208 -0.22213514171143206 -0.13423108252535504 0.07462088481139982 0.3066552002385254 0.3076162589448333 0.18117872577654043 0.08567390590670837 0.0356935537708889 0.013634525752511298 0.004895203659969842 0.0015784171180245044; 0.0010480667407774128 0.0029979128744638305 0.006904114320856242 0.013282074617200332 0.019591727187237628 0.017695214891787815 -0.005862154200772283 -0.06055895758083193 -0.12472423044918968 -0.1440932400347084 -0.05418236819229233 0.2000263242652536 0.36633088172903017 -0.016857571516319517 -0.1980012786797073 -0.2485018078877344 -0.17423099517134924 -0.014188075476755721 0.35909789280851856 0.20649973181360737 -0.07810104442884906 -0.18632228229055256 -0.17487328542503489 -0.08150636033341145 0.047326736876334326 0.11272281076570097 0.0948916387250396 0.054277979736087355 0.02498608525508511 0.010148136724561177 0.0037963849720795756 0.0012329246045206135; 0.0009317306971733077 0.002790954585374101 0.007091747668726806 0.016341563210367133 0.03269339141567049 0.05195229719820867 0.05319263756391277 0.007150625616349433 -0.07663398479219653 -0.14342275884946062 -0.14427657527250487 -0.05602960204778149 0.1002133558743954 0.21711402405996044 0.43593240242666237 0.48966363912430716 0.31608915131521215 -0.027581791975126863 0.010769372579963923 0.04062555987300024 0.013733297054243919 -0.06032090220820338 -0.13297978451110457 -0.14529066128246387 -0.09202760042593264 -0.021036477121971434 0.019099726819764826 0.024118862506295954 0.015420464811533653 0.0074377016242790335 0.0030396573278760586 0.001022943178386943; 0.0008405380701213705 0.002505643799220685 0.006746984763915386 0.017698963278293282 0.04241300171230531 0.08551112517390048 0.13266437180144236 0.13104025146492304 0.040052107801778127 -0.0899588619751585 -0.19181780663270423 -0.22729541588665408 -0.1593667176490902 0.09348033809491627 0.6103916228068196 0.42203703362869344 -0.10613146216189277 -0.32153779577409425 -0.3273697575930018 -0.21259481334957828 -0.028104172211039113 0.09215091947038045 0.0055448940304885135 -0.09059963709231979 -0.09816283169198624 -0.05609738550254523 -0.014213422077638904 0.004963472233737606 0.007396841328491593 0.004792568171404337 0.0022756594765278026 0.000831520746112245; 0.0007619925761886127 0.002128384035423984 0.0053815688861139875 0.013851798449558864 0.03410905283808097 0.07161892973660419 0.11782776718425635 0.13420742555787868 0.0796650574525229 -0.03607468307660387 -0.16660603443409602 -0.2584901152910479 -0.25948486452172737 -0.11586170211403304 0.15081369071793332 0.036444140352615506 -0.26541847854175465 -0.43259813749119935 -0.4499826784292334 -0.34386493215392666 -0.12130795046126668 0.17878960209090533 0.2172945048680532 0.04365968673691381 -0.025790246279153554 -0.026511385067996277 -0.009177240829056165 0.001780440263097828 0.004210360297637241 0.0031835953268808913 0.0016786011883321082 0.0006603135101901701; 0.0005488761455094951 0.0014351598176901399 0.0033709212508738506 0.008386221379019076 0.020721065613031935 0.043994646728115774 0.07554138470673741 0.10359338370484013 0.11889450943064081 0.09261173448566327 -0.009773868318646501 -0.13450684989387315 -0.19400985865619888 -0.13808229976026182 0.011447676637475517 -0.004782926813574145 -0.21463512654471079 -0.3697924362449968 -0.4002378973411473 -0.312708692798009 -0.09677864356410341 0.2719528828968357 0.5420855223959579 0.2353734893846224 0.08409298929749107 0.02955890636556092 0.013041526074546377 0.007791678238182378 0.004948556737437507 0.002853283211626447 0.001391781889875007 0.0005353388420803974; 0.00036758973543446315 0.0009658703154549991 0.0022824384970941327 0.005487486050801881 0.012740742797926478 0.026723707652001997 0.0504214080690712 0.09214936090540785 0.16441794603687057 0.23228312810029966 0.18625926815822152 0.044006438930851495 -0.05636255477014034 -0.0379201883405251 0.11361632926720075 0.2111547676507743 0.045219166156231845 -0.14182207712535236 -0.21163196708545773 -0.1600758537065043 0.0075610909495372955 0.2736549667771759 0.44724139527049356 0.2815465264942723 0.13574089787736376 0.058671994294101464 0.02458414697322832 0.010826952244683023 0.0052366753187242905 0.0025970687676432785 0.001182008980000933 0.0004433915724950904; 0.0002720343119612651 0.0007564647376633316 0.0018500694953220635 0.004295718911935112 0.009346825329843107 0.019505489973684714 0.04081733993097111 0.08664300834082266 0.16486756814422246 0.23302008974622934 0.18704029852850673 0.05633658367519713 -0.03550937539125796 -0.026220377397734647 0.1184196445487727 0.4093193410519074 0.5429773924041841 0.3109757979867695 0.1328928623407498 0.10162362763984088 0.17149880251433702 0.27822537062486213 0.31215360304820994 0.23020486625903014 0.13051888083574506 0.06231287997003974 0.026458975971331036 0.010662352599346565 0.004506986318258449 0.002054584128759063 0.0009193575277416774 0.0003478237433311465; 0.0001974222939506589 0.00057076619143205 0.00138789536710499 0.0031289490425568346 0.006690977842246685 0.014401791404698943 0.03236912677876317 0.06965416408370863 0.12658074734767907 0.16553498310187267 0.11724611205303462 0.007012597775943519 -0.06942466958618661 -0.057340747519099365 0.052671923688773076 0.2610218884638809 0.45042492893751784 0.4530268691216256 0.3140312910473349 0.20267198056686567 0.1585881464893519 0.15660078212658504 0.15674452568159386 0.13550917455797376 0.09065758468635876 0.04884232953583656 0.02225678504278485 0.009097669940032124 0.0036390584843631365 0.001524481938862161 0.0006584538462977669 0.00025147766962115524; 0.0001508365860998955 0.00040482426209356476 0.0009412756940414824 0.001972097597113484 0.003964383419405964 0.008402437054021905 0.01888485695424877 0.03940631931123813 0.06738289476669469 0.08204135554940256 0.05387858702063522 -0.007387102396761346 -0.05708128892773553 -0.04760245466252373 0.02249060996881895 0.1303210746881355 0.24892489749403232 0.3734872012984438 0.350493761152585 0.23463105395869796 0.14427057841668328 0.09946798577382164 0.08239383573638887 0.0701618098137456 0.05114999085869739 0.030516943274045034 0.015170332288432765 0.006583056984984606 0.002679073038512208 0.001097689814434333 0.0004599694733573386 0.00017351868623358347; 7.315894376468869e-5 0.0002618314889989045 0.0005662009053668686 0.001123926770344923 0.0021484590911456766 0.004417767944703873 0.009691857748847801 0.019525498178542017 0.03156607606034928 0.037143197664471266 0.030261128269522056 0.014737919952559417 0.0014771459523795028 0.012799447252319702 0.048318560223324675 0.08566714028302828 0.13450281529834243 0.24085798355393953 0.29376912139913636 0.23330935644194536 0.14117780757325413 0.07742255419114952 0.04799779827082273 0.03658632998842114 0.027335710731656894 0.017328050065529566 0.009373360481531517 0.004373216314713041 0.0018416802625540617 0.0007444644024835721 0.00030698443596901024 0.00010646400344231944; 7.697303557313004e-5 0.00013006451922816705 0.0003139137885528292 0.0006027553683093225 0.0011568632536847565 0.00240784706741614 0.005161386342568118 0.009941209211212703 0.015558202036876216 0.019634143048295586 0.023111765231523883 0.029438791172774967 0.03948046614412971 0.055904134396896385 0.06836988940910003 0.06756332022270022 0.0746799019007466 0.12093695336817387 0.16114645493413102 0.14574150360691196 0.09568320848853959 0.050522139201608175 0.025731278203732628 0.01730111175691395 0.013533944012602215 0.009414478554670057 0.005484998736042641 0.0027300233398054826 0.0012030801978496987 0.0004929440220010772 0.00018800112239128456 7.698501709441576e-5; 1.6630258314167655e-5 9.746083996533969e-5 0.00015809989943720365 0.00033637499122026994 0.0006682282160991528 0.0013830478129776278 0.002769283706859339 0.00488133991237028 0.007203355597471833 0.009623824334814427 0.014310530565221078 0.023143239042043594 0.03532903122063653 0.04775449952056942 0.05098457262170435 0.0428903665825029 0.03849748278960081 0.05165785659473228 0.06984579535324552 0.0693827166155959 0.050368245258046236 0.028435543105318588 0.013901706756954142 0.007559402176582108 0.005527087060092804 0.00416801537092857 0.0026878273508752037 0.001467436835894361 0.0006956096354704806 0.00029412372230351434 0.0001315333805221113 3.282298984322161e-5; 2.2741324742851328e-5 2.870515132427683e-5 0.00010452222849281088 0.0001711347265215868 0.0003777599738019718 0.0007608873667663797 0.0014256234728367246 0.0023070887348283524 0.003230933347459884 0.0045594780689585486 0.00721624475809736 0.011902799691354918 0.018374929412732367 0.024404173155970422 0.025053660280338542 0.020471730921954253 0.017570046127274544 0.020890522265754705 0.02691945390349716 0.02819738830896235 0.022581744535604197 0.014125734210816854 0.0073747392975025035 0.0037371903441142072 0.002242826420433028 0.0016008682338487135 0.001109223346464083 0.0006680873407423877 0.0003440087592222263 0.00017005275756200352 5.8463684517531876e-5 3.4373198652480605e-5; 1.0551408523233213e-5 2.3123566458235372e-5 3.460095932239527e-5 0.00011345976439322389 0.0001768024796333686 0.0003866396612153699 0.0006777465972323827 0.0010722921524829764 0.0015553114061743333 0.0022191760000828207 0.0033227290970920856 0.0051507851690926355 0.007797599232614144 0.01016269265277372 0.010277960417762884 0.008242312284937332 0.007448403095995735 0.008454313489052553 0.00980032298415983 0.010037426549532978 0.008563263246373024 0.005931824927725052 0.0034114857216289924 0.0018164707755658103 0.0010148691003994761 0.0006399450240134131 0.00042822186081363284 0.00027157451997416633 0.0001618239291593176 6.334880544019055e-5 4.984072148818972e-5 -4.9505049374147275e-8; -7.287993030128914e-6 1.3529905479937207e-5 2.8871277116154963e-5 2.679547159814884e-5 0.00011776694321878743 0.00013971593897409932 0.000311714871022484 0.00046176203879946543 0.0006833173088510012 0.00097593909729593 0.0014217606260389212 0.0020667673630123664 0.002906487477101028 0.0036809102772403304 0.0038198963690483567 0.0032508116481379267 0.003057832850411983 0.0034022315723351805 0.003543355157863557 0.0033448651502655693 0.00288247390978503 0.0021638236854333685 0.001369304805776206 0.0007794608738555253 0.0004414655018639102 0.0002641618655087804 0.00017418013822434705 0.00011070122842442001 5.2542300125116165e-5 5.250964601922525e-5 -5.426256410321759e-6 2.6396735677387196e-5; 1.6357215238550205e-5 -4.181683683720174e-6 5.024338626493597e-6 3.47120104393505e-5 7.353387124029809e-6 9.743667190179297e-5 7.182231232059672e-5 0.0001814078403594516 0.0002448881259563929 0.0003612437976461437 0.0005220647248443613 0.000714652830716776 0.0009326878487838113 0.0011483696649354533 0.0012416071822832274 0.0011746628836921465 0.0011393011388590917 0.0012150508524940752 0.0011875381671383463 0.0010679192631076475 0.0009087058439005742 0.0007047833084807288 0.0004783926670585387 0.0002887662736267203 0.00016447649558254526 9.721647899590082e-5 5.935756187230426e-5 3.5344098836539626e-5 3.169809623562321e-5 -5.332371162892937e-6 2.8986259759915844e-5 -1.935093293726166e-5], hyperparams = 1.0046608725313106), σ = 2.9412301010583675, p = (params = [6.661783461810322e-5 -6.249204938763334e-5 5.690982007664488e-5 -5.646156968854848e-5 6.397105146190845e-5 -6.82562705371737e-5 8.019292756335588e-5 -6.116771969014956e-5 7.04864251286953e-5 -2.3298881736233634e-5 6.375297138504114e-5 4.244212220201694e-6 8.683903594632381e-5 1.7972955925159e-5 0.0001104136644438261 3.654773934437702e-5 0.00012250325552302832 4.945114080065785e-5 8.244776560497031e-5 3.4577900487267886e-5 3.682622935739445e-5 2.9092399655457774e-5 4.739212578436431e-6 2.2686832722111415e-5 -3.2399830761340382e-6 1.0138117644430893e-5 1.225436778946574e-6 3.9576525516541743e-7 2.2609638005405095e-6 -2.4719123701369404e-6 9.096732440910144e-7 -1.5499208580054e-6; -6.519047600708506e-5 5.848938774006174e-5 -5.190443372300274e-5 5.1173819399395035e-5 -5.0593747930261746e-5 7.158120254785219e-5 -5.232133018682728e-5 8.866268755162402e-5 -1.6770348431412294e-5 9.647348149528323e-5 4.400861334684264e-5 0.00014153167789178526 9.61774736921861e-5 0.00018858051836328097 0.00016742904043647855 0.0002451676463651601 0.00021081730766651187 0.00022329143672519323 0.0001501104088534634 0.00013859888543143727 8.872237745058015e-5 5.7710902271239075e-5 4.818256555308541e-5 1.8766904340928446e-5 2.203668113773644e-5 1.1151249357181307e-5 3.002340648576496e-6 9.304749939742773e-6 -5.4571971760870055e-6 6.211712054141175e-6 -6.010810747222305e-6 4.1206478469792464e-6; 6.188308266826312e-5 -5.404519466655268e-5 4.5966048680500535e-5 -3.514647455682406e-5 5.2333638436141155e-5 -2.776014362848956e-5 9.10129346486117e-5 3.967257211725508e-6 0.00013904282886218272 9.206174031891689e-5 0.00020098356550910418 0.00022451502024565547 0.0003238017048425816 0.00037062184389094667 0.0004544547384229745 0.0005505109464527141 0.0005771360712050528 0.0004990891814078439 0.0003969262475033991 0.00029079005183917545 0.000203112871458175 0.00013875371838031528 8.672772073638824e-5 5.928351066375448e-5 4.343092706505743e-5 1.6655923452126503e-5 2.5777420847185098e-5 -3.7541723711542102e-6 1.5674483527564697e-5 -8.944063612696614e-6 8.502092039503976e-6 -7.061087082766407e-6; -6.114691010333636e-5 5.44178042270126e-5 -3.591122728101424e-5 4.268004597268519e-5 -7.387191799936748e-6 7.863827092240733e-5 4.001215274899028e-5 0.00017720966209528577 0.00017064406781364995 0.0002929968603096511 0.0003710483298888383 0.00048705342380042757 0.0006237034373097649 0.0007766400431583546 0.0010321063473451258 0.0013879850748265924 0.0015009536214753128 0.0012262668524285292 0.0008573420815690826 0.0006066567236122949 0.0004153698214271619 0.00027381556246901945 0.0001838941186332022 0.00013739982666214303 7.71481311733584e-5 7.215298759436136e-5 1.6286758394625006e-5 3.488177735263908e-5 -4.453742651440662e-6 1.4790408282713108e-5 -5.004104594928606e-6 5.571198293278256e-6; 6.823184383746134e-5 -5.3043852938278126e-5 5.386938134717421e-5 -1.0570671120241847e-5 7.11564631819929e-5 6.638165048171835e-5 0.0001879002690523537 0.00025401580830705146 0.00042718850367907756 0.0006154894481112002 0.0007770375561854402 0.0008762072133171035 0.0010598220251162808 0.0013585542306223967 0.0019387979526684094 0.002840512831375365 0.003276500348584372 0.002658000264056406 0.001697056443570413 0.0011444158745497967 0.0007715976187982178 0.0004994747705257182 0.0003538518691724088 0.00026257003573138937 0.00020939023392853344 0.00010152466330774631 9.128061930944546e-5 2.2579054438485765e-5 3.291545956812059e-5 3.823170054320855e-6 6.535834248523787e-6 2.547123630520995e-6; -7.244252096739339e-5 7.72834282419157e-5 -3.75603220036668e-5 8.46949126648741e-5 5.582983135018586e-5 0.0001958599197335197 0.00030789799795314775 0.0005227839808613245 0.0007864890482295914 0.0011543883018104535 0.0015172548048555182 0.001665980657003103 0.001731342747986688 0.0021552456572822773 0.002963724717775962 0.004471366134360499 0.005642317868556481 0.0048297798360339905 0.003218411282555831 0.0020973974437165474 0.0013395920594310303 0.0009120163309801177 0.000712039263874601 0.0005533776302689651 0.0003782538715399405 0.00027023657272387633 0.00013048348805739504 9.620842130440498e-5 3.4299842141875886e-5 1.9167006123131978e-5 1.3025263313631922e-5 -3.037186701024931e-6; 8.977742499352582e-5 -6.587238893550015e-5 0.00010526775506355837 1.040868358671894e-5 0.0002028637653677025 0.0002904992168230174 0.0005539945651947794 0.0008987991993216564 0.0013044830109242903 0.0017814158502795947 0.002420750340915845 0.0030076391932739414 0.0031132447395063765 0.003335780164013664 0.004409595916655018 0.006249129084200083 0.007634638937027929 0.0067505100013133855 0.005444036163062182 0.0037627270726160447 0.00243173216678163 0.0017772139840656282 0.0014277188193262623 0.0011139188882441581 0.0007640460937261248 0.00047194669546952756 0.000294011581126022 0.00014283553357054765 7.032072486215781e-5 3.799549518151384e-5 3.315923422275961e-6 1.6524150014491924e-5; -7.421291249476471e-5 0.00010563769863132768 -2.996064057060591e-5 0.0001934472193708486 0.0002152000415479938 0.000511438136224769 0.0008759042877579257 0.001386074961852187 0.001984604459140317 0.002525067409002621 0.003022102755347887 0.0038413456214853267 0.004236012414179134 0.0042728713434148045 0.005912371225388524 0.008834012994575058 0.010216330836272226 0.006810121040931387 0.006924571324829368 0.005698961272135128 0.003986150480773559 0.002896408004380734 0.0025676557886861683 0.0022755007508937237 0.0016167593649532002 0.000924553682259979 0.0004825533518103307 0.0002404282635420334 0.00011967932971009885 3.673511794271593e-5 3.3816212840683334e-5 -6.354216845348017e-6; 8.256546165246262e-5 -3.957096280765244e-5 0.00014966438888342436 0.00011228427172776031 0.00042646365860786857 0.0008273176003401222 0.001448237295461827 0.0021683680745273777 0.0028928602638779114 0.0035713990267735034 0.0038244161878979496 0.003720409184358509 0.004064687508569365 0.0041885146436557216 0.005526855003490709 0.007953971818737691 0.008134329307210633 0.005320045998939057 0.0054301172437154375 0.005404012080937333 0.0046771846575668005 0.004284851634201826 0.004809024838392506 0.004922814617474709 0.0035411566058225585 0.001932502221884954 0.0009122684506159337 0.0003975754422203216 0.0001544088053874283 8.59271946258325e-5 1.602066336563673e-5 2.5070299963976966e-5; -3.622627778090683e-5 9.786184978607696e-5 5.162140287838045e-5 0.00029743684931720987 0.0005679973215536266 0.001193813544567561 0.0021811366403809524 0.0033608470216803204 0.004333455759087799 0.0049931181459944365 0.005375233232496834 0.005239565956104661 0.00494008668934175 0.0047132561466617165 0.00444664072478192 0.005646627937031841 0.005101142418698503 0.003928370115719823 0.0037089781765386187 0.004029761019424509 0.0045888934991963025 0.005508579960881514 0.007519981382472163 0.008844424498590334 0.006210728483754752 0.003124767572110637 0.0013937982315986072 0.0005742055377651439 0.0002358658805842667 8.74784632770911e-5 5.805065207779194e-5 2.819723723494255e-6; 5.261934905920881e-5 1.8402241203904524e-5 0.00016468391240275098 0.0002945293101977778 0.0006653878628454741 0.0013511493745464256 0.0025131672066861684 0.004072257203830658 0.005501513055655605 0.006457885286768031 0.007116947110986957 0.007404544905606717 0.007525810747318269 0.007389677410322711 0.004704265814568152 0.004926844226872848 0.00339448778375498 0.003391472666313707 0.003421418849195655 0.004843453159865893 0.004823941356717373 0.004891438660889217 0.006751609862726487 0.009960772052372368 0.006519257751738854 0.003112635253510326 0.0014562429880136303 0.0006447289983443696 0.0002783441928796393 0.00014697705811002982 4.6460906206876275e-5 3.478600583266621e-5; 2.6449845787001827e-6 7.301531756762334e-5 0.00012099496914181292 0.00030594112544823546 0.0006240343485383673 0.0011853008079055094 0.0021113942120141098 0.003459384189369086 0.004839241887425428 0.0059354828028818085 0.006821978032387389 0.0075430171850360776 0.009395480468706896 0.012495088885273719 0.0017153278011274714 0.006341817841803607 0.004404540298827711 0.0030705928736017153 0.001806965191378892 0.006567057212187764 0.004613307355717162 0.0034472548332748765 0.003656653634288194 0.0033722786379584576 -0.00956769934064594 0.00029215005057573476 0.0010900643996869298 0.0006954201087049784 0.00035731547877477295 0.00015734766415069593 9.005871752642251e-5 1.4392108972245392e-5; 2.877262332369871e-5 5.389933519004691e-5 0.0001420611192343956 0.00028313503005820826 0.0005229981268525709 0.0008810331852513489 0.001436804628089931 0.0022525517632434942 0.0030650080466652777 0.003983881020771035 0.004896153041351784 0.004377882828676536 0.007070055628882668 0.008600405506602774 0.00434230608666579 0.0034277928877577066 0.002696210280533333 0.0018987445652764853 0.001294720239206034 0.004138746746573349 0.002869843269532451 0.0021637718509756186 0.002152370797731099 0.002395694354052625 0.0018269673391747533 0.002775205510091508 0.0020146156815866473 0.0011301831719651024 0.0005454747000751284 0.0002500769294588095 8.246029217662737e-5 4.968340961609478e-5; 2.5440722835358464e-5 7.773262754318024e-5 0.00017509424152071376 0.00035462482087746306 0.0006246518041342255 0.0009503231653145738 0.0014887761085784742 0.0024800027075217953 0.0035358941845109464 0.004261433539578422 0.005005379690988111 0.0053494442173128536 0.0036291591051852744 0.005078658032372472 0.0034425782671117693 0.002835730706910863 0.002635858861604905 0.0024907385074962544 0.0026520373174256664 0.003635672663369628 0.002421852361979178 0.0018067490420160866 0.0022706510220975155 0.003172644644507409 0.004156105039504366 0.004407190206473115 0.00306876891837874 0.0017129157957112282 0.0008230724420619087 0.0003369073318927149 0.00015157692507157346 2.9924525470856016e-5; 3.188310891779009e-5 9.076944257725342e-5 0.00021504559454164598 0.00043912248526127313 0.0007744826712173326 0.0011884264375350364 0.0016927650504058708 0.0025227314287778473 0.003640425633715843 0.004650758534097509 0.004989144801627229 0.0014243909277564808 -0.001633654350722393 0.004218728913474332 0.0034071805497958084 0.0027999408815146364 0.002573832577901408 0.0025115788717690398 0.002756415547003172 0.0031751711331842194 0.0025114994571249607 0.0025013457630509647 0.00351217939056692 0.005417144225075999 0.0070329818441212276 0.005996619303090477 0.0038525424954652288 0.002092048499519043 0.0009880891543976949 0.0004291961683972112 0.00014123603891335874 6.626637844188232e-5; 3.109231401179532e-5 9.643215599081052e-5 0.00022087450109958766 0.0004533639863876227 0.0008309187334012174 0.0014010820774849415 0.0021579492879294773 0.0028594164656526684 0.003257119744625056 0.0036819837647116185 0.004495154167694408 0.005363787684532987 0.008362508387403439 0.005370525402526125 0.0034772330205648633 0.0028123043834794577 0.002415498531690066 0.0022945212898559265 0.0024608222652465414 0.002819683365795421 0.002203130896443753 0.0028072599354710026 0.004234581264690412 0.006425089463982641 0.008225976170320748 0.006638334656573724 0.003928510659306311 0.0019989125119751214 0.000924573036367781 0.00038653786274032206 0.00016277349772512618 4.035089996495543e-5; 3.563729219196119e-5 8.728128071830771e-5 0.000207203766911373 0.0004114668646018579 0.0007602598820418663 0.0013284954784299277 0.002160013329187471 0.0028700830579108253 0.0030513826511903023 0.0027447479766706667 0.0022355676375577322 0.002057376747819412 0.0021251995629540713 0.002308659427563386 0.0025761303158779673 0.0036645584213679354 0.002826887781702654 0.0011547337380719434 0.0005240427329147972 0.002616010205318004 0.0031183070387979413 0.003271593857016582 0.003775084397613618 0.004490673913736787 0.005022579564675817 0.0043397903100179935 0.002803577283096238 0.0014874109007429737 0.0007073677453843177 0.00031566373955125866 0.00013037328705917985 4.632979983475337e-5; 2.6259124036189933e-5 8.363510588694492e-5 0.0001831767081930785 0.0003884475994701574 0.0007786743603997641 0.0014911728175004844 0.002543789997401967 0.003491303086227215 0.0037955831532247176 0.0034001876931992634 0.00255913467445658 0.0017367277139388067 0.0017459420011482118 0.0006034513298403638 -0.00011139672507405334 0.0071388760500226064 0.0046556926698065795 0.003307067186153148 0.0032584185181978448 0.003149435931699736 0.003105288304389309 0.0034235989728595585 0.003390609788224154 0.00317138213738724 0.0030330507545128322 0.0026308729334050375 0.0018469175987910918 0.0010617255015046973 0.0005333196243777919 0.00025143110327077674 9.852410800333157e-5 4.9784599398233335e-5; 3.1792771154862904e-5 6.9978004490649e-5 0.00017600860560157883 0.00040106035295509507 0.0008986080685336474 0.0018842709255711366 0.0035029589685497964 0.005210782494698897 0.006016764508068345 0.005508693806693094 0.004133133695180497 0.0026936768085931897 0.0020225643410484375 0.0014378329474462866 -0.005056384802728872 0.0061853742916920034 0.003338756029591087 0.0032420234458336796 0.003544785786397456 0.0036425982549347555 0.003519314698880051 0.004335709604849332 0.00436221023737932 0.003720077450357563 0.003168381464755188 0.002460021205997546 0.001586321688822775 0.0008567168657898306 0.0004117783564643004 0.0001855032845849602 0.00010212785119962853 1.3884150020366563e-5; 2.1236772449526934e-5 7.410839710484893e-5 0.00016025994386591246 0.0003796105793808297 0.0008488868701388717 0.0017337596566269662 0.0030774837151328425 0.004554687716706536 0.005834872021522958 0.006264225964414401 0.005300371564040345 0.0036521248552053923 0.00264252597118982 0.0025757368039431958 0.0023234751178335756 0.003766213066262801 0.0035511337832526122 0.00364713386891894 0.003956021100637585 0.004012514981553688 0.004227962431210019 0.006114457109285234 0.0058261742065842444 0.00429684720583483 0.003483694205859137 0.002556010541240677 0.0015514532112965184 0.0007817892755200215 0.00035511556160883813 0.00015498054978887584 4.8613149079715956e-5 4.298428288658501e-5; 2.449717028467233e-5 5.123585143491157e-5 0.00013553008676733987 0.0003135655426551594 0.0007093657319000767 0.0014417874173728571 0.002550263517698392 0.0040267330080792476 0.006158971236140462 0.008181143758756683 0.0078907463809381 0.00561789676648392 0.0034679242644518682 0.0024463273437498414 0.0026164255631277605 0.0035522988449289378 0.0036646397642494015 0.00387238352746979 0.004354065523477343 0.004614000223075444 0.005026203551109855 0.0068863472519987284 0.00680021784199994 0.004154920584409702 0.003227015679262065 0.002257295715180703 0.0013262225655770365 0.0006659139991722685 0.00030232774694659363 0.000126584947784163 6.221927833465248e-5 6.887064948596848e-6; 1.2739470696996433e-5 4.668711803325623e-5 0.00010040556171123076 0.0002486440125657335 0.0005465364132266567 0.0010897329932020013 0.001986480751648068 0.0035146401550062278 0.006165649420653136 0.009173323963665016 0.009538482223311906 0.006971806173371111 0.004379020656621477 0.0030505162193139516 0.003254100814529664 0.003536076440105734 0.00317159209990807 0.003696163808695098 0.00451177683838926 0.004940690173795679 0.004962749276222253 0.004774949818702671 0.0039625825346899235 0.002893231632573606 0.002195900175809166 0.0014664858761123127 0.0008556438554913611 0.00044428801951103264 0.00021699468518549157 8.995532801807156e-5 4.4620495795962936e-5 1.251253190516214e-5; 1.2322946371091115e-5 3.1532117779025853e-5 8.400936406447372e-5 0.00017820375796918935 0.00038428788576717817 0.0007537407849325757 0.0014377665959850786 0.00274285868800617 0.004879002276879119 0.006903628726162507 0.006795786470154424 0.005031749930988005 0.0035034167799461633 0.002667388682752248 0.00239772431421411 0.0030999120026524206 0.0035847678001711893 0.005861193590926119 0.007154303028880579 0.007541383667766774 0.006964622600525272 0.005383328949586484 0.003436357513095298 0.0024877224697271365 0.0017839257278411175 0.0011182606513229951 0.000617908422574449 0.0003116745588820175 0.00013151198086187754 9.007213057132621e-5 9.96830744167727e-6 2.8073876788776654e-5; 1.0154800850381636e-5 2.218113972206462e-5 5.325577530797135e-5 0.00012222504210318235 0.00024078383081420763 0.0004934049619448115 0.0010018367198096996 0.001961354573525727 0.0034176597117438613 0.004741898881058234 0.0046560757733217035 0.003397901020753849 0.0025177918798554456 0.002685021233815988 0.0032427410412046963 0.003823763534230355 0.004152691324402517 0.006197017912111791 0.007432098898401614 0.007006851667528583 0.005562860603756187 0.003688876238457888 0.0022514150338759802 0.0017754227340072725 0.001336909181396967 0.0008609830916517936 0.00048408246119074086 0.00023628260128274632 0.0001443171884096057 1.4226558644315292e-5 5.180076153763616e-5 -2.008230623521669e-5; 1.4072373141315962e-6 1.7561914707727307e-5 3.437178649760014e-5 7.037794390012655e-5 0.00014906456657611 0.0002861525180820694 0.0005865909344482335 0.0011050021777352494 0.0018439392748359272 0.002527655198835889 0.002687656903412138 0.0023022770586418576 0.001908813600272581 0.002473898323586277 0.0034284139215778496 0.003851222631450713 0.004032483112104968 0.006510874051928247 0.007392735117939592 0.006264298795636014 0.004632482874601809 0.003007929770776221 0.0017910518406136933 0.0011499089029811695 0.0007796592570112905 0.0005085092143690361 0.00029481309422372854 0.000164032506796442 5.45476539033336e-5 6.368052497441562e-5 -1.5298727650041446e-5 3.547005945455086e-5; 8.2161408422323e-6 6.187880221407171e-6 2.001859536450799e-5 4.6721636861685914e-5 7.583822447721709e-5 0.00017308783898504072 0.0003253330216015909 0.0006075163321773457 0.0009668291654011095 0.0013005013945723027 0.001559575975442609 0.0017298134094255054 0.001837590936500695 0.002406705114868046 0.003221178861193187 0.0032970164884088735 0.00304744247478441 0.004777903865620723 0.005997366910896483 0.005369928003990363 0.003853754022422313 0.002369805404328158 0.0013352421804882888 0.00076899899537509 0.00046470338286245345 0.0002804924962994038 0.00015848427049927063 9.093885529963413e-5 5.222116150136511e-5 6.782398261890501e-6 3.039226625945909e-5 -1.848070117471431e-5; -1.1290974726930882e-6 6.6734308147115014e-6 1.5329259249825317e-5 1.480820434038262e-5 5.9018909393377154e-5 7.465409343748565e-5 0.00019998099420453306 0.00032964495441370684 0.0005402542020029137 0.0007404701252337686 0.0009573981909824695 0.0011987752951059497 0.0014523816807656242 0.0019472665640969543 0.0024522740686333186 0.0023838002751298735 0.002052307270173214 0.0025862552776343096 0.003176259747381999 0.0030161776445626564 0.002270894725490083 0.0014188300503348847 0.000784068913435889 0.0004507143788896792 0.00028338375675396495 0.00017189080728964974 0.0001086770601145665 4.4933426894136765e-5 2.936656487499532e-5 1.690510159751385e-5 -5.0741918923976145e-6 1.6256109828617553e-5; 1.5302974666137765e-6 6.6313504752689785e-6 -6.293507599368295e-7 2.520001001016765e-5 8.060597242899007e-6 6.92579841438781e-5 7.47825138347804e-5 0.00018122302175704852 0.00024679787822352276 0.00035981358298953876 0.0004917207150177532 0.0006472173635002945 0.0008295731998264999 0.0011249916557236727 0.0013858896008554589 0.0013872436087334543 0.0012307731259799293 0.0013039455388397538 0.0015054380751003044 0.0014744634233101782 0.0011724673913499403 0.0007739258102971762 0.00044714733163442273 0.0002479750089119627 0.00014626810540804608 9.72318506962908e-5 4.9509870820891745e-5 3.501495791165957e-5 1.1726786082209866e-5 3.1284611089856598e-6 1.1565089255999342e-5 -1.101917737209585e-5; 4.5108319841473635e-6 -4.156575112648914e-6 1.3682611654582696e-5 -7.089481432127497e-6 2.985106418663909e-5 4.83053543107054e-6 6.212968268755716e-5 5.71457478569964e-5 0.0001128444073386423 0.0001578542162409423 0.00021877664806329526 0.0002911347784967873 0.00037714726555817846 0.0005161242891090939 0.0006333540035500922 0.0006673780669385381 0.0006593456691004396 0.0006856200326211783 0.0007381440223655241 0.0007252489565283548 0.0005953717267711164 0.0004125632688068685 0.00024812442231481204 0.00014574250569903118 8.385467039504411e-5 4.5749419058954474e-5 2.8179009644028288e-5 1.4828443720841917e-5 2.876579981342545e-6 1.1826809596530507e-5 -1.317306970559419e-5 1.683154974478456e-5; -5.9406364603064015e-6 9.65167598557723e-6 -8.683940496746329e-6 1.5142761164791517e-5 -8.443828971230934e-6 2.5306471211254103e-5 5.8929096035653514e-6 3.8376749600720085e-5 4.905034013462219e-5 6.427685083556015e-5 0.00010721668057371541 0.00012395527302352157 0.00019033346955369605 0.0002476172092015891 0.00028634232930028726 0.0002875621468390015 0.0003217833872466287 0.00034065241074785103 0.000348281708646215 0.0003220230715538537 0.0002816475316389153 0.00018875348248494897 0.00012585613101609325 7.231968966725044e-5 4.309041910436132e-5 2.3780512635835616e-5 1.531770785320213e-5 2.0694723408292168e-6 1.2475238758547589e-5 -1.4863476848843153e-5 2.0841697699539465e-5 -2.32143883967311e-5; 9.143067161788406e-6 -9.355388096326232e-6 1.0340885965106616e-5 -8.69444133066866e-6 1.1729805518493317e-5 -4.947094189219882e-6 1.3823570372904072e-5 1.2359392466499225e-5 1.2466244325142965e-5 4.14579645219123e-5 3.007483561675643e-5 7.111033626089089e-5 7.723570051914984e-5 0.00012082749522815053 0.00012578074084197458 0.00012816386106582095 0.00012946136937369842 0.00016656779273869192 0.00013046459304282348 0.00014072113068858762 9.460773281339792e-5 8.893008967376141e-5 4.752371274882437e-5 3.3366004964213995e-5 1.909037639806441e-5 1.3032648730363828e-5 3.393085730884705e-6 9.832178054664603e-6 -1.0846077163580163e-5 1.9278389450015267e-5 -2.4695055548472384e-5 2.7255632156288493e-5; -9.627214576906171e-6 9.787368774696431e-6 -8.721744096253902e-6 7.90836661908411e-6 -6.237550342996203e-6 6.700564148234326e-6 4.652271284727913e-7 4.373986968849908e-7 1.8060557948848984e-5 -3.2790212141266064e-6 2.8946653084927172e-5 1.2137800336462318e-5 3.97652854989674e-5 3.6848069981533606e-5 5.42490896959758e-5 3.999115792117593e-5 5.7799329768529236e-5 3.658621946808817e-5 6.916228398968775e-5 3.0413398801909236e-5 4.923240712276946e-5 1.6634439194111215e-5 2.3650559999624084e-5 1.0255396981308441e-5 8.333594399984992e-6 2.9770810911480723e-6 6.218831256203819e-6 -5.745099032905256e-6 1.3415842343317262e-5 -1.9619739380815077e-5 2.5638511443120033e-5 -2.8607600493605997e-5], hyperparams = 1.004190682717329), p0 = 2.197925305332292, pσ = 1.0083551834254247, angparams = ([-0.26944064589004013 -0.06223933721500783 0.8718245149579993 0.20073349413934127 0.26664369842259283 0.6893945368777262 0.8051451745572326 0.6840037899910519 0.8675502510385766 0.5327669359153044 0.3415139766651263 0.43377403648166296 0.785145570733287 0.5114026622117178 -0.30931577499135887 -0.44554776206614793 -0.5247063878539742 -0.5164705246684221 -0.43992876350450755 -0.2611377662546709 -0.13219413447394343 -0.2906699132410616 -0.5999897358023766 -0.9191011202901945 0.25137505800714977 0.40185576654278177 0.5264626716288348 0.18491895821604795 0.007577905126324207 -0.6214635860391639 -0.5108124804505956 -0.9220538365528158; -0.49901956290245975 0.14914134500063433 0.8425159871997403 0.9831885063296468 0.9550130475932161 0.9938169009787687 0.9765910546555354 0.9951310937791078 0.8472755916554732 0.5957719263601137 0.6182663798597853 0.8148687216435105 0.9412909492197419 0.9677107004767438 0.25154873482731827 -0.5946192178021394 -0.5619328717818591 -0.2513657612109238 0.37568648265960697 0.5870482916934044 0.2662019665819543 -0.3254504505560272 -0.7655816109633998 -0.6369038559123891 0.3330876475567632 0.4161178634727487 0.0770497436697891 -0.6617887612273218 -0.7693973001362213 -0.7075856148369997 -0.8607204829680651 -0.4492291735450396; -0.49143793473057595 -0.4000066163341452 0.3610766783320704 0.7907307857693642 0.9218030309987014 0.9303781541603978 0.9255480561900262 0.8894441938666755 0.8580334629636509 0.715806920207634 0.7047336308584567 0.8372677563024811 0.9256751871972536 0.9759880413897009 0.5573822867204892 -0.3054643552780146 -0.2882285823879534 0.9917069232196635 0.8670408922668816 0.6530894896790461 0.19775083308715224 -0.5757555725199996 -0.8626032029699157 -0.6398181101332903 -0.1958474130330026 -0.5664782491709067 -0.9482166345732356 -0.8224034779587572 -0.9062591915793059 -0.8474386367270643 -0.44024955232908675 0.9461328332035176; -0.08521466972752857 0.08731520336314992 -0.30212635728451703 0.32535478946188146 0.5248290341419931 0.6747075262627371 0.7028381852165915 0.5285080408406441 0.305667218349165 0.3139170202716081 0.7103925789803142 0.8181699903735081 0.8352629901394273 0.8247207172259876 0.30258926492780086 0.006815707875365726 0.09424017940472686 0.49098452332507636 0.9528797895796641 0.4292012063594922 -0.19678774476392408 -0.7501226511514466 -0.8019930729033762 -0.3765074420620254 -0.1901578707026804 -0.4001879912387834 -0.8738627279427781 -0.9725473690808464 -0.793768828157828 -0.7527449967953544 -0.024107813897882815 -0.013005604450346223; 0.12943524819695348 -0.0468023243956792 -0.2427731916840158 -0.47832877155302167 -0.2139210230189372 -0.025997500482056585 0.05164503928772357 -0.05606443216866908 -0.15868647744102699 -0.14607900969627852 0.027569648784287547 0.6191904572570925 0.6420982303145587 0.5214712567055199 0.18988274779330122 0.07423827758072954 0.123674453419645 0.25344358877869305 0.42067103320530136 -0.2182882870083683 -0.5272674505187115 -0.7992970955499785 -0.19033386822165213 0.2906736527919249 0.24517151884127844 0.06417671504562772 -0.18665570535344664 -0.05695602437196959 0.35440990384348575 0.5651168928983602 0.8877496685600416 0.7853715466495278; -0.2764304369939085 -0.5173211083927234 -0.783607110285814 -0.9341737429405585 -0.8786747690009775 -0.5846463576567686 -0.46317615422941194 -0.47830184047871244 -0.530738406474916 -0.4587038459794074 -0.40851844202168874 -0.5376069373231139 -0.7289537344810418 -0.09974553918606961 0.21715972440705045 0.2858506169248091 0.2596616606493987 0.15084809808488098 -0.31224967068515336 -0.9017783179173573 -0.8832025412245156 0.38761870867605497 0.9949531942287059 0.9076786701664243 0.7307361592265407 0.5517690864019438 0.43205549354988276 0.430298181635986 0.48879021873244755 0.6139329340751124 0.45562607201758104 -0.18065929103003273; -0.4992873926973428 -0.5916112787611527 -0.943905129631779 -0.9713685040029233 -0.9701067335847346 -0.8686691935276006 -0.6574529614125444 -0.5587329312396528 -0.6293734200951385 -0.8008671759769028 -0.7777732113480125 -0.8210318004196483 -0.9311124431281494 -0.4891963792763302 0.3433678438721015 0.8258112094622012 0.9155342726957567 0.3487228622572958 -0.4079122919118946 -0.5169470058396332 0.06023238986070721 0.8135136484210705 0.9402067781859387 0.9546756115757372 0.9705621075785249 0.6313238769544928 0.5015890223580314 0.5013972024966854 0.48532501029899866 0.29388259081792795 -0.9511996427763597 -0.7565632656449737; -0.24473915172960833 -0.3322421387829693 -0.8474458923834934 -0.7982223780134811 -0.6484334449039736 -0.6423100103389634 -0.6111231046813024 -0.43077898631729566 -0.31158450817127753 -0.412643478148731 -0.9161086811659804 -0.9071698369964503 -0.8344463043214055 -0.47855362271707974 0.40787757820225984 0.6381859607483247 0.7215455510449047 0.9436321689246072 -0.23904799927525705 -0.0698386421902836 0.39028960076339725 0.9726549289658872 0.5855045945026282 -0.03589919604530742 -0.3659467539847946 -0.5610723585280492 0.4448435669654341 0.46284571345282255 0.33436008452170823 -0.2563875572342871 -0.9573342893001126 -0.9439481344167191; -0.22207340022864644 -0.06556648148557204 0.03201409404800413 0.07849478643502644 0.012741133316197124 -0.02052282055080986 -0.0103526913524584 0.087841836577186 0.28631908375573095 0.39587612272637807 0.37001147836924514 -0.3178051150586818 -0.6905590331642705 -0.4125837676167267 0.5056598196503538 0.5736132427703877 0.5079024167572801 0.25643506613331224 -0.24972650881798508 0.10391025623966138 0.47135919575490176 0.37952524684845756 -0.31280917119546625 -0.5627001508839091 -0.6169706869582507 -0.5648767293936945 -0.4085615985166013 -0.10534646329810443 0.09487685579783946 -0.15641717650657538 -0.3183993861504172 -0.5886338469003195; 0.046620671362441024 0.29194816424278286 0.6606993638306585 0.7386888974658447 0.542432725424872 0.3349608326475528 0.23661141210896125 0.2721808361322565 0.5057754421126154 0.8637680549109288 0.9940009180181281 0.9746792950474326 0.5522316764251546 0.0245495842789679 0.6325367932149927 0.4475716183878391 0.08882803285180497 -0.8730133816280821 -0.7226972578260902 0.4950018931737852 0.49853766279373607 -0.058201438536126755 -0.5721880299506449 -0.7015836637751014 -0.6483532846374417 -0.5088955350882579 -0.3346856457742042 -0.129192855877428 0.7187823331562077 0.4407380624537131 0.36826243274812925 0.43394864320451326; 0.05804447810842124 0.3656865791790749 0.7043615618038632 0.8262817189940688 0.7394420404406779 0.5187464628429764 0.315279679880232 0.25181862070032685 0.38724638690630114 0.6754789145234235 0.8555268428101274 0.8497996488811624 0.7119598727294677 0.40023435722108386 0.38359841252150895 0.318056848703809 0.4262881730794218 -0.7729364343930708 -0.18388669575843733 0.28905682155599133 0.31650805373625124 -0.17343236102033255 -0.8813488120287866 -0.9139408523879397 -0.7305551206461178 -0.4511690251545704 -0.19252730313820157 0.2258382018487293 0.958918867885624 0.6596542110131316 0.5632127973452904 0.5958376924401123; -0.05007116174850221 0.2957064542423849 0.640328994223855 0.7657251985623805 0.7273726204686866 0.5508371854666219 0.29663496745000656 0.16010934491202314 0.2566789699452648 0.5243579431725786 0.7265680407650473 0.8134080149025178 0.8544693575937139 0.812210768784937 -0.44045700236899044 0.547985661748935 0.8051796225139343 0.6266808966048845 -0.9578379262538963 0.3201892138503526 0.21261363370192934 -0.1692436468656868 -0.6766578417818957 -0.693913909989212 0.7680166897593752 -0.39430061688274715 -0.12072314987223377 0.2617670494103878 0.8398842228209715 0.8226452146942539 0.7536536897555265 0.684778843479823; -0.439497626406852 -0.3407017225517031 -0.07926373108328948 0.2096884366872311 0.3909516395550118 0.5424648319405542 0.485178439300568 0.2642133538205461 0.40960012620170366 0.5466544156760594 0.1272853272321829 -0.12463500459638815 -0.20357481951547393 0.3058885067157772 0.8140019856370995 0.7733799261025815 -0.09987923105291305 -0.9602225697467954 -0.4794394883294825 0.22786208484967702 -0.21285515026469895 -0.503340377236938 -0.749610590497757 -0.4197501792022815 -0.4219154935449858 -0.40398579423245967 -0.38126957180726717 -0.3292908287049888 -0.19609598725521077 0.20833489197656813 0.7380944771313924 0.6262841688023701; -0.11850610484230094 -0.30537096722680396 -0.37136385813064104 -0.35555422044003454 -0.3204284865824963 -0.16550344146169685 0.31392164904748077 0.3435770744380503 0.19470775835765794 -0.1681389900586362 -0.6886239312296384 -0.11286598885139094 0.05074691734677928 0.8874423559785516 0.9904725895041587 -0.1237957765343981 -0.4515454453359945 -0.6619797443650067 -0.771786563159364 -0.25917674364432364 -0.3148967377122155 0.024480485679028108 0.941411056167749 0.8652093250710226 -0.07679694239171497 -0.4361559485317025 -0.49483778753774177 -0.4974775686434725 -0.4762141525620102 -0.43505049197224344 -0.33894718592167444 0.2313402679969018; -0.012281104351116541 -0.2839838686544626 -0.37009919722314244 -0.3625176475708853 -0.2750348838249066 -0.00974213686002366 0.7040546987474464 0.7799173535221368 0.299083847179821 -0.10107507196629291 -0.38479787500289503 0.730846330936366 -0.9974050790326584 0.8877953897627215 0.5860674701434244 -0.12278670264425587 -0.48681740264853657 -0.6107189355812583 -0.5363660302066382 -0.35433519390441404 -0.16138650166207702 0.3811134853469439 0.801809347053016 0.7583221055406202 0.42528797678263314 -0.151170869820499 -0.42514769777130895 -0.5122245545833358 -0.5437518349848133 -0.5568835862171366 -0.5549604223659869 0.10023221350802088; -0.12464540834315818 -0.41551854568860297 -0.46342055114429975 -0.3978837742704641 -0.21577895765368157 0.11589284134956515 0.36329126997467204 0.44977103093208265 0.36294617391727135 -0.07407630031920621 -0.2667958205715364 0.32181307537601145 0.8672419474362946 0.7372685188648582 0.41455098742829966 -0.4968434224038521 -0.7468457225247426 -0.6057081351147329 0.7583530877070788 -0.8588537420193645 -0.8071696432658582 0.7008108341950997 0.7180233041734099 0.5782412768143209 0.3170170590386676 -0.009342803590744148 -0.30809167282145333 -0.5154052818530303 -0.6465119199056796 -0.7093912098554892 -0.8156831675310829 -0.42981694819040595; -0.18634426687820085 -0.430165005462419 -0.5906458253649913 -0.5649036393265034 -0.4348635536105179 -0.03244301000063742 0.2288031585149519 0.27390855836259614 0.23007985681282292 0.0934007545154315 0.8614319930258655 -0.748665640694696 -0.9940374661382231 0.6832288830552665 -0.45371345405297725 -0.5608818920325227 -0.8638413873845013 0.8047728752577918 0.8559490281727186 -0.7553988262468302 0.186433815525664 0.7473561821093285 0.8524525290353742 0.6268257124900052 0.1778606145042171 -0.1754836760132024 -0.42801462392189094 -0.696470811183391 -0.9800477335766768 -0.8886230496706737 -0.6492160009214939 -0.6085685008090067; -0.19240508669905854 -0.4185054619644398 -0.6900251676287624 -0.9734417434615833 -0.9280990581988726 -0.6145944026627439 -0.3678507561286447 -0.18587760597316522 -0.03364732383860012 0.13100811149141664 0.3524152596772108 -0.19089005693548006 0.021232811627816255 -0.03043372949767802 -0.007624664674330649 0.3010689337759701 -0.08534246840687239 -0.5209759169370898 -0.6256154484132289 -0.5832276691231459 0.3746614677949814 0.960116759884785 0.8525013045234436 0.501126674831617 -0.25690234416529995 -0.5611169160133634 -0.5881853406503176 -0.594021349135056 -0.5920169138071174 -0.5420113979985023 -0.4802568650970899 -0.47858017148332727; -0.015405899353842302 -0.1774233494014495 -0.5572584280129163 -0.717462713990072 -0.6499178828489346 -0.5468701057096939 -0.42246007481192466 -0.29598507790847084 -0.19199502402713822 -0.13005159110017606 -0.11142722683500547 -0.05900770644502304 0.9468946910885329 0.8978726763212169 -0.4882867979718787 0.45980783168722333 0.7296462896301453 -0.5340423524698584 -0.1633033810598554 0.0457923404550067 0.23953330646040366 -0.04954108410364255 -0.1127066993432505 -0.0576078929495727 0.02166527571628809 0.08399539900398004 0.12055833456677473 0.08338881070726173 -0.13328948978197847 -0.3644658924628531 -0.3908295459857455 -0.3304472874708928; 0.17526024301922097 0.06989482940537013 -0.1509586362671828 -0.5156624867669183 -0.6313991253527292 -0.6338992494219079 -0.6496563687081497 -0.679920230059293 -0.6535805547978212 -0.6538610719056729 -0.7618697822670936 -0.919550091286271 -0.0971817443393026 0.6560513087962233 0.5512016843077481 0.1761944500952666 -0.7367710953327489 -0.1039227887670712 0.3408087268910638 0.658294260091022 0.7304652200293372 -0.26820324736334283 -0.6012380262514062 -0.11760426006067955 0.25841763173502913 0.447524403875149 0.6143875262189751 0.8144261843935047 0.9999896369395155 0.37836487142096986 -0.17551616751409974 -0.15379935008833054; 0.3139663189393356 0.2347730602000066 -0.27740684413207894 -0.7168578137786074 -0.5895821760148516 -0.5288579207617508 -0.5578932114411824 -0.6980956937666615 -0.6382326325197513 -0.5604467791906693 -0.5880312012773985 -0.66026697092575 -0.6809601216795697 -0.0033948486028071985 -0.26182308535627286 -0.965500643615444 -0.6867364102993572 0.01094515355599944 0.42709024556382863 0.6548718412035518 0.5871813373019519 -0.07760534389150175 -0.49460649932941375 0.05710670496336001 0.400008312965416 0.5303648510785428 0.6555279869221518 0.7922498005885467 0.8240164760226152 0.6248687336683664 0.31292954704857706 -0.060563254964639594; 0.5096624846131316 0.3965128392789047 -0.17036395176857821 -0.4193749673583474 -0.4653195404704774 -0.4655948382620906 -0.45218791981268613 -0.3285866670771947 -0.15093398425094992 -0.0974849937141958 -0.10829451466504261 -0.14584800834486072 -0.16805060191074392 -0.11138656596757697 -0.0009325538707751665 -0.24450175567610016 -0.6367225837719094 0.27825537048941656 -0.10011381114226883 -0.07140283851713769 -0.29382021123779267 -0.6159453232762244 0.13284167383347162 0.9900887054698831 0.8174492297192274 0.6972850087275486 0.5940375563660372 0.4882885218982747 0.37525413016275894 0.4042797218699133 0.37392464755186855 0.07308739917484348; 0.3364614023001432 0.36590302586790435 0.20273687885750594 0.01095214893461955 -0.16858820622843393 -0.317955856477334 -0.23204413871432533 0.09080606068478585 0.33991660799569284 0.5475498040178394 0.7333124780209517 0.6827413882644533 0.17601212179215833 -0.2481819304915346 -0.12640634345329707 0.5545011091558504 0.6295947705204729 -0.6095151963698373 -0.6389400141903361 -0.6287305469644243 -0.6058576210905329 -0.48823454966037166 0.17874349174068455 0.7461957642342272 0.6212532144005989 0.3619625774059917 -0.0212737921400761 -0.5436649893171739 -0.7803412080622039 -0.23554962180756062 0.2293252902253524 0.26822005531338133; 0.8778691400441893 0.8603371685798982 0.7292850430281232 0.6009272594008634 0.3425366127821242 -0.015447450964006605 -0.0453929907899822 0.14985466784590173 0.35091230288998193 0.5159220801746054 0.6308682204415315 0.6872800806802026 -0.03944872091367378 -0.3727793242736339 -0.3132447842215091 -0.2528488434269199 -0.5821959107205984 -0.36929876250538907 -0.27557435582040546 -0.3023107220968505 -0.38509989228484404 -0.49838125625226326 0.1345579383357345 0.5363814850018105 0.5213793501722681 0.41903797920123215 0.2344511741704751 -0.03297605519293457 -0.3707872508990964 -0.6444616715005776 -0.26432908548233697 0.2615870117991162; 0.37686428915969405 0.7032079285941972 0.8395463485894586 0.8517861703180692 0.8057350752234641 0.07881817466413944 -0.25604754921187356 -0.1150256164207508 0.04159046784772602 0.08263489776091458 0.009115961532244794 -0.11155582331141439 -0.10191795913502422 0.18572245313022093 0.10800563301482358 -0.07402215008157091 -0.5052518130963766 0.1635097466580278 0.6565123334866207 0.9871217224962675 0.8964777030982495 0.5710681102414057 0.12441570274724209 -0.02844486670901035 0.35642822556045445 0.6439671027451611 0.7014456446990494 0.5892283334465128 0.2956718382403077 -0.14610247332698806 -0.5802918843811067 -0.5773588811703307; 0.029085238966807238 0.5229064263617411 0.6236030775188924 0.6573178439165585 0.459083616410574 -0.1825447835441758 -0.397596962996024 -0.4005459736757752 -0.5441525162772259 -0.9231652274259139 -0.8033325766892265 -0.3128092384978975 0.42035175763344745 0.9241788568886916 0.6277482186660693 0.34272135994070047 -0.35508531590320486 0.030368558862708832 0.48507126076815654 0.8403654661664394 0.9478907516244572 0.8067491419857876 0.23892871216604727 -0.5989627708976323 -0.9769422614524821 -0.44165508580711776 0.732971327360449 0.9440092574377368 0.8838545309916791 0.4180776143381591 -0.5510825195996768 -0.9992731388014213; -0.5411262727099794 0.09033376070790108 0.1996049478986828 0.10898198196056935 -0.09768574185548295 -0.0850411020602094 -0.07653938203738997 -0.16681795212874315 -0.3600460803549906 -0.6829765720718022 -0.6589093776554078 -0.1515866482080288 0.6164303989486839 0.9905743558054237 0.8240394017782634 0.5900614283976862 0.08369321349158147 -0.45447071547437545 -0.025519725061049017 0.38845339314804816 0.6910091219628608 0.8672458112621865 0.7022897106865621 -0.753307807204602 -0.9611001272919449 -0.8622186550664235 -0.48653921871362305 0.08501965620907562 0.5668816533334584 0.7902154569677698 0.2725559353334308 -0.9485585840588057; -0.6570702390846752 -0.04048525976215164 0.07887405734028564 -0.31811391873702005 0.002015870764140393 0.30127494760970724 0.37080378539540976 0.20962006527224017 -0.10213956933767569 -0.4824960406103051 -0.36942818504764424 0.046296184169536264 0.6527100935270895 0.837593918911003 0.7470008193487281 0.644168721035362 0.3646397584147738 -0.6129974421970209 -0.8487853397408484 -0.642689606912971 -0.33095249384176945 0.025419931027275047 0.30486801811360814 -0.04376910573895083 -0.9882651504479808 -0.9491749529007091 -0.8427361287385371 -0.6121640220822046 -0.16695498436076658 0.17643655757928237 0.5514501131680554 -0.06562656319551538; -0.33679191962502697 -0.4814921429826667 -0.42177937927519216 -0.12329350795989487 0.4436160370951024 0.7799091343168082 0.8012089316653376 0.7736743414909106 0.9868211385226704 0.34086097500081525 0.35767720579168183 0.41961173461899787 0.05584400153191643 -0.13452851113966663 0.059986697743587156 0.4745525919076623 0.584259793390264 0.19293436911671172 -0.5416004207075182 -0.9207974569331793 -0.8835554359602658 -0.5712658283963714 -0.04262577303005023 0.4447490745243056 0.6195412524210149 -0.480133314797332 -0.8989854318884818 -0.9295019328999602 -0.749377777689473 -0.3264534435132 0.5828882084584831 0.6473791818994105; 0.3854665283460297 -0.4568376223294745 -0.3267081511007425 0.1283305363708122 0.69711046969515 0.9857775496441593 0.8061877656843602 0.06385315779776372 -0.03226635142046591 0.3808859250555972 0.8000122496433633 0.6308954741789129 -0.6149264014333853 -0.9236418668581394 -0.9683600589264352 -0.49638783183648477 0.7581247439811689 0.6111636452557665 0.14656627677856696 -0.6511442843319485 -0.9793961270587735 -0.8405412459758083 -0.315368845903526 0.4423427384752188 0.7902066388834088 0.808787566304864 0.0024482468277414503 -0.6809721338616284 -0.8517857619360826 -0.9250436781923164 0.3693103373222277 0.08659889294136432; 0.4809464365569726 -0.8249185315870718 -0.04679967210731219 0.32917098327066574 0.82839527672972 0.7983778471324233 0.00807855070787092 -0.828891717619126 -0.7599444062522587 0.12274431656509398 0.840724923186531 0.3929054907398148 -0.4784726025859168 -0.8516008369384636 -0.9132818111098178 -0.9136145773063228 0.8868683463957232 0.8199041035952052 0.684282206173317 0.26823455526086004 -0.7282333083443788 -0.9994182599741676 -0.7270149047955194 0.3139548653873279 0.8248561900091554 0.9717311708724987 0.9659930387704443 0.7465870211955686 0.8734063606520512 0.02086508165897221 -0.7246483363870395 0.8848067729113269; 0.2996217918735274 -0.4354285703635638 -0.59854655900672 -0.11414841813700775 0.6280857870761558 0.4272476758054337 -0.4343029200533901 -0.47855938972527196 -0.802360688778496 -0.3908899448306337 0.22369074325921812 0.21959107850047582 -0.301823203584178 -0.5647935320703134 -0.5872196240833998 -0.5390823430948796 0.4855166787069983 0.9124796930674705 0.9972115206151679 0.9742296791471113 0.8608131492444446 0.5776364071897434 0.04800071183231818 -0.3534891668346943 -0.5198769815499334 0.32661394315476966 0.8873208001693803 0.9751055077008134 0.987686805675673 -0.3593240393290578 -0.035993455867765686 0.04066928021718691], [-0.5571498970353238 -0.8011809768554089 0.4007976913535852 0.9552818351614194 0.9360632249696977 0.7225784074394651 -0.5854769398347647 -0.7122555436102916 0.41294986753231844 0.8275976669415174 0.9305251921294169 0.8952344509326119 0.5065036319864243 0.38772864449915123 0.8689868838604741 0.8952226253979599 0.833317455356815 0.8055898392561959 0.8249704660845243 0.9437224679112616 0.9135649757611621 0.8852974065467375 0.7593743321454818 -0.37310061858484783 -0.947224370944655 -0.8860203600107941 -0.7569050113792813 0.12535092839779527 -0.072231305338568 -0.024081609729529968 0.2335410720980387 0.06888386142169856; -0.8608678914127843 -0.8528393315168318 0.5277600878646584 0.09429640483923482 0.2825546022088396 0.06342795977906486 -0.1852972973421259 -0.08151360298207767 0.5029727316060248 0.7679640256279086 0.7349735184399113 0.5363488923309623 0.3246417107937214 0.14268010556283464 0.7457078518275043 0.7946803667468263 0.8164701384875566 0.8965996676707984 0.8406574425582959 0.7825324794467374 0.9637886897317351 0.9282065691446048 0.5567190070341332 -0.5904280062966759 -0.9198982854770087 -0.9043373216829232 -0.6156727326143384 0.18024629626622157 0.503683105083523 0.6218373226751474 0.39479976958648777 0.711089694875354; -0.5012120327260189 -0.7967779078858898 -0.8204482501496908 -0.4924234910162927 -0.2233436037015972 -0.26033337651790833 -0.2787868544525401 -0.3670743330388823 -0.1873744289262112 0.3425249264792796 0.47532376142450733 0.3618742228070983 0.1967578111184101 -0.08551085590491787 -0.8278823493694507 -0.9181361633324923 -0.9102863405627154 -0.12298962931793272 0.4820125568807115 0.7376748657798393 0.9595664378874773 0.8169705124604619 0.3265245717985451 -0.11015149389123777 -0.15779324623726748 0.29028264436189577 0.25670610477331257 0.16376148147375186 0.19564501505132792 0.5278561121199644 0.897874926402398 0.3200716765896004; -0.83805011033993 -0.8612063587407308 -0.6579709474158899 -0.49537430043799047 -0.19204432896066892 -0.12772174928167399 -0.3052952750022168 -0.5974688242266402 -0.8004765562666336 -0.7815755298444161 -0.2770641622558352 0.19942533404099796 0.2281108494831502 -0.1550310835110344 -0.9198784956409044 -0.997539541732601 -0.9687753203869836 -0.7955033150639054 0.1755914541283668 0.8988338241108605 0.9531889258271901 0.6610443726033775 0.22025697366814945 0.23122165837153924 0.4428180331042066 0.5712825846248349 0.34230796837287075 -0.21624818396540074 -0.5037741653359622 -0.18064203673358672 0.9751315189762938 0.9992729506910771; -0.6039553082500849 -0.9963621118063144 -0.9164196337693563 -0.35929178541681245 0.19192769681729063 0.46582724750451754 0.2635441518655363 -0.3451904610018185 -0.778276306342998 -0.9221766264219617 -0.9524730949422114 -0.4438915913691328 0.3325601044208441 0.03146358773892977 -0.8560189983940286 -0.9959172108115241 -0.9741700469594251 -0.8680955094061015 -0.24754570964628048 0.9686834100960546 0.820738293698939 0.5687769169217617 0.16071231940515948 0.22769977907718802 0.37054452114308345 0.26556842357884075 -0.40990197005590023 -0.9636866505244988 -0.9334746348070253 -0.7929185995262544 0.013882682871965 0.5427147571495781; 0.6416183907904339 -0.14481759776960748 -0.5095571255055259 -0.2716063385950982 0.29347834366873987 0.6222899679361491 0.5876736279440724 0.31445275613658563 -0.32669913013181057 -0.7832943261854577 -0.9037511155426238 -0.8431818903533921 0.48954416368633574 0.598805728888404 -0.35608684493944537 -0.9217689895360889 -0.9579516727060535 -0.876193153266119 -0.5005122916004658 0.22607737867913663 0.2698811185432042 -0.27783786987194786 -0.09885521182198234 0.047786234841081895 0.005643832919355238 -0.34030639800301404 -0.6818923453814403 -0.8052092974055213 -0.836910582933676 -0.7881458515646719 -0.19950290516099353 0.6208338517597292; 0.7368601590808772 0.6513032066231212 -0.03718875326254294 -0.22514066016719442 0.004103417419511493 0.48918156250725714 0.7326663844019538 0.7248121667796418 0.47951454016587003 -0.1789973343276059 -0.619523100422969 -0.5160618939373798 0.05137282149690161 0.8717710839538112 0.798824238602822 0.22550713308496642 -0.34720082751126624 -0.8510723992734436 -0.7337116204864277 -0.7688836004068528 -0.9980283737590129 -0.45601605865910455 0.0009169565410651658 0.2094636371990275 -0.07537650831276654 -0.5736064196435714 -0.6904575699767642 -0.6954644550040011 -0.7137903886190067 -0.8163653707349442 -0.00516062289573114 0.4811008407882405; 0.9695401835649785 0.9349312022688548 0.5298100106855242 -0.3928496473434877 -0.44443189590466065 -0.18185758159547757 0.3739017426761139 0.833246068280894 0.9493436830562771 0.9022670266868971 0.39854924735679154 -0.16214944845348334 -0.03994472101770036 0.6969944071250329 0.9124720043807567 0.7319274586188724 0.6149745741995457 0.006364493753600672 -0.9163589942980837 -0.9175939128940086 -0.836396585147214 -0.20047191692906258 0.7318880291157536 0.8776113899080412 0.8037228740090419 0.8261338664695673 -0.39955496311780414 -0.4061650068673359 -0.4434907487643148 -0.386714721512005 -0.18859250161505808 0.13719160398640143; 0.6582256022970799 0.8220574278310895 0.6372518373007842 -0.5554003039457255 -0.7358720258951085 -0.689729397670693 -0.5199294017026715 -0.12913772489819506 0.46986471427812065 0.791442231698065 0.8760351752608084 0.5589205009639132 -0.32851654894150495 0.0821495204645123 0.8279277243005438 0.8152090061869611 0.8232974457064604 0.6680051716930931 -0.9322589686299656 -0.8315377971813797 -0.42252736760644743 0.5862453030951326 0.9481503356669837 0.8005566277691208 0.7281856340865261 0.7688730914542297 0.9010440828760525 0.9094228671223293 0.16414823487715913 -0.6273285968120978 -0.8387143800917168 -0.8083499025438038; -0.34547584686542654 -0.13548896272237274 -0.16850842139648267 -0.49266652284068313 -0.7579242794096254 -0.8544741724751036 -0.8431665596505531 -0.768007304723184 -0.5852936417520886 -0.20407701754793386 0.03179333302634512 -0.11145567010167155 -0.7557100804521092 -0.9996984987428319 0.461292100268954 0.8744333063383715 0.9940913208119951 0.3034779098625244 -0.6838473440220734 -0.4097052615023664 0.5158899397708452 0.8659007134296229 0.8101021345683802 0.7015018272380106 0.7131367657810819 0.7917841619305593 0.8799949814167757 0.9627517694444052 0.35511789724505205 -0.7503951048789158 -0.8723762138684694 -0.880486171149796; -0.8210571731125317 -0.6748892681674022 -0.6016426925122257 -0.5570061438679962 -0.6708649462575891 -0.852421703565872 -0.9489814270676374 -0.9664267218888616 -0.9211173014479324 -0.7332391570546016 -0.4552227180306831 -0.35297242098777626 -0.4702712634530742 -0.7596030298053631 -0.8763116860416486 0.16609022734233264 0.7426587773278462 -0.38329451783494634 0.2823735004606801 0.6949118664991976 0.8499636982359691 0.9658091809719171 0.47245837283138 0.3874699919715283 0.602167586495897 0.7709456558825237 0.8328357488581276 0.800613659239581 -0.28353108233514784 -0.6843250843604709 -0.7685064312362128 -0.7647277158703483; -0.9976394805907796 -0.9479963786558432 -0.7374695025593515 -0.5337565088712483 -0.5133625554229967 -0.6612094411699564 -0.8209961444978231 -0.8721233119495719 -0.8260764240998048 -0.6222115393486496 -0.35781404464747335 -0.2512148606295914 -0.3899972568245041 -0.5831840945662076 0.7635005796530672 -0.5867495634220864 -0.49819182489549946 0.14617507134676916 0.12847958919153227 0.6538545858069088 0.6496803127623181 0.33852464570550694 -0.7145714884959691 -0.7156069261830336 0.2919316555239346 0.19084310886962277 0.2815699548504174 0.16015194090139598 -0.3184793806453317 -0.5372246135531513 -0.5315712295537998 -0.6326377713116411; 0.4594886675192419 0.6221384373917835 0.5620072360892661 0.49152216216095884 0.3755363166365255 0.006693409391685299 -0.7715332185323497 -0.9644624285263849 -0.8993041998677943 0.600333557261404 0.8476657247235706 -0.2190140867536594 -0.45745740940481805 -0.4523883056395608 -0.580817731970683 0.5156131433459659 0.7977888359484048 -0.27577960304756965 0.5339524292573136 0.12293640083979261 0.609790017897495 0.7309193078670275 -0.5126317495783748 -0.7148418683964329 -0.2188316184670352 0.04310764645770542 0.17423548594343496 0.27990500623144504 0.43261676011647066 0.713990168584519 0.604277633881823 0.25182214646732876; 0.9631363332780905 0.9195114800847997 0.9146017663189961 0.9298635261544469 0.9438766179191365 0.9466094729316215 0.1329077377021468 -0.46490904591920396 -0.5131559103506327 -0.29122073075948635 0.32580843145027844 0.887564371601763 -0.6904353542925036 -0.3960457671267948 0.12922635825218054 0.8602247433047112 0.7947161109228137 0.7122853624543496 0.0478281702532152 -0.5917963385355327 -0.5488828774173997 -0.35934784230214195 0.3363349176448307 0.4739709236633829 0.7734020704863234 0.6455892157867149 0.6186719814320228 0.624167750917828 0.6658560533921708 0.7615383216504493 0.939026790839319 0.4828893755617021; 0.7192854238790796 0.7490969460328585 0.8165747003412074 0.8870373204376916 0.9546337526953441 0.993217414094697 0.5875339837240123 -0.6176929677979515 -0.9295534670363311 -0.9227613092175171 -0.8098785276091169 0.6592328934602165 -0.04448522951594185 0.4416845615131995 0.7608840758140372 0.8911199209705117 0.6897739491337543 0.43630802684208886 0.08104937516307392 -0.6423772454588995 -0.6860080838303108 -0.7893693553324389 -0.5659884570280395 -0.19052252882515466 0.3912765316929914 0.877301041162587 0.9041073079216727 0.8400847093258558 0.7819481069735665 0.7627246196975133 0.8291257785153517 0.208653454969328; 0.9897153369168717 0.8373583829300498 0.8083659498079975 0.8839474317223628 0.9757677668486566 0.8735380604049433 0.547031887247981 0.1899538537157773 -0.28067988041760383 -0.9010005437267588 -0.9520534050871561 -0.7797459165338168 0.49164086421008596 0.67548906940063 0.9094830422070287 0.8674811030867001 0.24846066976408654 -0.11141816317991243 -0.6392141655813998 0.06667742846404208 0.04283832632128464 -0.6766815973095098 -0.46928338915597784 -0.220635433272114 0.10662673468849244 0.4329527172647287 0.6857592655362571 0.7893351213841706 0.7628976655359753 0.6579119320196074 0.4549886190587774 -0.5370470800401179; 0.758837830901616 0.8354855503097268 0.8036865643857872 0.8236973872057418 0.8918218632530185 0.742968414569661 0.4209931210794073 0.30339005069309244 0.3098894522185739 0.4733966517908015 -0.14559245215773078 -0.44286164285795854 -0.08976536254982509 -0.32487230452523885 0.5917500440741478 -0.4117379985146013 -0.14298806961423308 0.5899554523039623 0.39000068737101773 -0.521836689046549 0.41606678548099263 0.11723646635820566 -0.10481249624220224 -0.12168771862392729 -0.0018679905604871126 0.1057170724305542 0.16567352763044665 0.192495378221442 0.07571513475877609 -0.08220761963235225 -0.2516818311634453 -0.5138409918642526; 0.5941967597252402 0.5764126584599981 0.5595244763579955 0.2248562764416468 -0.2928228030159062 -0.7566897094388444 -0.918658317249023 -0.9729817013945021 -0.964775101007423 -0.8470435371838184 -0.5871284050280947 -0.9721073687108723 0.3589519909672986 0.947040177562424 0.058427254217588445 -0.13849589010386193 0.20014412974979676 0.6280227510309244 -0.3393752425468085 -0.8120963194638849 -0.11966626099879059 0.25879368800450275 0.12653435445891228 -0.28551988277656865 -0.864757260270196 -0.8219064062223379 -0.7695477930204205 -0.7897305416609934 -0.7847306354383381 -0.5886815271510049 -0.4259256813083239 -0.3559577114978285; -0.8720113576341562 -0.8257869610263626 -0.8065172569103859 -0.616944645390473 -0.5650288093559794 -0.6436166981077684 -0.7542117507828092 -0.8420611179096199 -0.8922773719408141 -0.9060661416911597 -0.884494161013497 -0.8383999341523583 0.05189421874260607 0.26873231936465825 -0.6936323914381682 0.6223962311785554 -0.6392638146495144 -0.7100000341026796 -0.9171325612889939 -0.9573125851263892 -0.717860902231041 0.45498330180879737 0.027275593148812647 -0.4660701972370939 -0.7532948648459789 -0.8725076963759618 -0.9290888017606977 -0.9493524682278156 -0.8356456383838807 -0.42306293447866583 -0.24291236930511256 -0.3157588776804461; -0.9772586581564581 -0.9885187705060039 -0.9322715768959604 -0.5542686469401468 -0.14002662405096197 -0.03946608540930003 -0.16117552210967406 -0.4760138961848203 -0.7332815591765163 -0.7526687964089411 -0.6363620018383872 -0.3731199023612785 0.5037284547310354 0.5887942681712637 0.7802179789782892 0.8208476474495375 -0.28382937467635483 -0.8505232506220428 -0.8368444152145975 -0.6203034510768215 0.5381026259719975 0.946954039062701 0.4272312930353941 -0.6853405598689806 -0.8785907571949804 -0.8608941868758 -0.7795102313805324 -0.5802375406772988 0.00029764147693816417 0.787095719992344 0.26669635725994245 -0.12120967524956619; -0.8240270341255086 -0.9218219488049878 -0.8189508120476594 0.25773619550431937 0.6111303333387051 0.7208583028783935 0.7822469608169554 0.6846276124388564 0.25506764520639735 0.05954325246435487 0.07635953945978026 0.21598329857130427 0.4481223381093385 0.12117695776503246 -0.2775544807956282 -0.04437618660668631 -0.5484780709520148 -0.6887387049689815 -0.6161712320041844 -0.36444987377166116 0.4204117780135479 0.9644815083044189 0.8482917956346224 -0.7664013986949988 -0.8758435728971646 -0.8402451154861862 -0.753381054470568 -0.5317574369364014 -0.06698670429403802 0.5591373306268603 0.948534373428441 0.5317028060596941; 0.7918148255850167 0.8731003888380827 0.762915121497531 0.8070917086317188 0.8558022305110491 0.8639339312722912 0.791600225036883 0.40971881136367116 0.05098994980521412 0.006019756616397533 0.1308273862692031 0.3393126684504976 0.46382663199042534 -0.0273285840910214 -0.8108858345608956 -0.9234478384825742 -0.674214961608856 -0.3366608068627369 -0.9661709338033866 -0.9915065329301794 -0.9347625576074571 -0.42646562497829904 0.34624874434638303 -0.09007037574684383 -0.45806350539460317 -0.6567399386719449 -0.8042867320648835 -0.7195253236650595 -0.30495113135437824 0.13909686783308006 0.5465057194223635 0.9755587910135827; 0.9394696200173215 0.7702612949054163 0.5851152740951621 0.5336700969246202 0.4858203246339472 0.24680541875039386 -0.3622453424457899 -0.7627802429745397 -0.7796145938178528 -0.6475259754926146 -0.32299944722307317 0.33813222782191554 0.8339639616759885 0.8500559381247516 0.9877173312684443 -0.03725794008457782 0.21275742286133145 0.18137719363626612 -0.20670727758159807 -0.4478654858081862 -0.6514221934685803 -0.8650160911028463 -0.7434365036207276 0.4029362364237282 0.7695745019539217 0.9216981116880569 0.950874806870465 0.8217353352494636 0.3022239680350577 0.12996017071441024 0.41742600582916956 0.8177235213047956; 0.05207322635107538 -0.0519846360972102 -0.04242146576154436 -0.01268765232957897 -0.14287443569796576 -0.6397641356846435 -0.9703418760660071 -0.9846381519183383 -0.9013854756081178 -0.7739472414308769 -0.6110217281490438 -0.32271008571749127 0.9258756807125957 0.9246338299781706 0.9495585897583481 0.8795960157124003 -0.020904871023891342 -0.7547381462644643 -0.4310803548432655 -0.2942844913065756 -0.3200527690826111 -0.5129742074505285 -0.1264612045147138 0.596829824933083 0.7851229983270414 0.9057175727843676 0.9538235731071194 0.9128116266930546 0.773112590722414 0.7171391542659843 0.7926119347227429 0.8248833682930479; -0.9236305821082146 -0.6878772596241571 -0.5079027074034489 -0.4973559223144771 -0.578867241386675 -0.9390966285302169 -0.7648947343396609 -0.6429618533607472 -0.5640687716326765 -0.5913587315042141 -0.7363288093624706 -0.9044833795372855 -0.9118992152974655 0.9078853298285745 0.9843507134409888 0.9946197373271506 -0.2240907988240342 -0.9120001751071826 -0.7250529215909453 -0.15910617404915384 0.37196515940922414 0.7223135871367772 0.9367515151008995 0.9942711955231125 0.8477210193789223 0.730326643127329 0.7083731451507659 0.7040244520696697 0.6730688942561817 0.626310998804453 0.5043550514019779 0.8091556026336371; -0.9645452507523863 -0.5847602826591156 -0.3259257302878863 -0.13452062277277796 0.06218525160880388 0.46586372768281836 0.737216261811079 0.807611083509217 0.7603094144560613 0.3341076928391992 -0.571506598380004 -0.8845086858618673 -0.7764942623802307 0.30289722619163534 0.7771246329137237 0.9374461477638177 0.34520309478717687 -0.8535125830722683 -0.7033983816601245 -0.29074088763511324 0.16944245718035203 0.5905478349029422 0.8752614864777293 0.6118042609344667 0.007927708201976672 -0.8485669967029715 -0.6128506968191078 -0.3277832824433253 -0.0015939195672475751 0.35670735572054957 0.4321181227514093 0.037081142599163536; 0.017787427561989803 0.4088494865039064 0.6755433582976563 0.7667430283934776 0.8990806773629378 0.9960393126633434 0.9907578464874869 0.9719248467473746 0.8969877410684752 0.5168953426387273 -0.3554435454717066 -0.8418468197601972 -0.7510223060307333 0.03697176687173316 0.5211523427275605 0.7735875669174588 0.8662534289516024 -0.6501993111530152 -0.7315065616534404 -0.5251384523440515 -0.2174917778300546 0.11692272414094709 0.7028895005811269 0.3409299247407228 -0.13069681336622033 -0.5033111102678941 -0.8021877026786721 -0.8968679336843935 -0.7521428309085183 -0.607673317940264 -0.9022437661379068 -0.04252550268655484; 0.7094562208166496 0.9583077556880963 0.9861708888810254 0.8646440703830908 0.6453102562710347 0.6069877732225785 0.789300815689364 0.8878767041273752 0.8625728121822849 0.3032907102875143 -0.5864913295944948 -0.9185158395890125 -0.7426456524761894 -0.02021570575724451 0.36095740587026975 0.6026931041819436 0.85800101957574 0.6842632456855616 -0.019212572059404857 -0.3134619387055538 -0.48984061071361473 -0.6130703785655053 -0.6571329673922306 -0.772385996007179 -0.11023029227810803 -0.21201236207317462 -0.4280995200458085 -0.6496594797293388 -0.8578785930669667 -0.9038378387477228 -0.6198679890606589 -0.9957826231928907; -0.644814251770673 0.7176350092660735 0.6364630242511778 0.43945005986653385 0.10811292353062274 0.17651377737177348 0.45726846519130737 0.604323363779438 -0.09590218014434292 -0.9220651199185905 -0.9178004068203718 -0.9070586206468354 -0.05983329794588822 0.24459596061739317 0.27495459698093033 0.4106527366803781 0.7257907180000974 0.972614661641872 0.8315785605908239 0.29244821695520906 -0.21073904167825946 -0.6024233413349819 -0.761057631244421 -0.6271311656482641 -0.13748655622722444 0.5739998895153045 0.26432076796287834 -0.09374666597723925 -0.5011295788633569 -0.8008263283630023 -0.7570914271373439 -0.12859756308357356; -0.8174740908926024 -0.8877881390265284 -0.9206695966430744 -0.8907548471307185 -0.6883096996827681 0.16467078119681922 0.5060656284285348 -0.1496059997709845 -0.7096477013789055 -0.7797330071591442 -0.4198944008844937 0.7486777566449189 0.788109566514638 0.3751679923716884 0.04945817419939471 0.023316676060664596 0.5394943327571324 0.7818192211031577 0.9891999984497981 0.7589320511781434 0.1430807841678251 -0.42654948229514655 -0.752686030571436 -0.6444793838413784 -0.2743756368857769 0.2691303693264927 0.9154514507126165 0.6552764923692331 -0.1426672277305739 -0.24908154204512137 -0.8091512465106084 -0.86206060220735; -0.876713107838701 -0.5645382821702299 -0.9642803740899899 -0.9409101034430789 -0.2107014491364432 0.3510246647809906 0.834794893606527 0.363457180727205 -0.28850648081349195 -0.4009913397287386 0.4457920053368206 0.8940550208484577 0.7364223310156917 0.2580322462694993 -0.0770087638151131 -0.28943771920749045 0.4076696738883934 0.5566543921645646 0.729189982830687 0.927189022800388 0.6118971638108288 -0.014614283817618132 -0.6000129871375577 -0.6760063846659845 -0.40955504210235805 -0.1806252075424633 -0.23586280130069834 0.665284595527764 0.4869678946335015 0.9452019415854108 0.6560229827924452 -0.38826752487234273; -0.235159063406484 -0.8035208383427382 -0.5247163263395432 -0.19803708044799276 -0.1888851452077853 0.7754204530004907 0.8925628465058368 0.8780505064183185 0.5962064852471348 0.9192691091678181 0.956599284112055 0.7265512258254374 0.1455938762382959 -0.22320366275106326 -0.37087010406927584 -0.3627818723197162 0.2834397081021737 0.4059745124778347 0.0651392031580681 -0.052622197461967245 -0.002005312308012484 0.4620554799625943 0.8115303705986129 0.7636681146040394 -0.23832270388034657 -0.7986898906038458 -0.4322464567352425 -0.1827306305679735 -0.15505533240179217 0.9261741151961865 0.9993502910315616 -0.19274558838667769], [0.7854843923184508 0.5951767025245941 -0.28157277163086214 0.21712365081041246 0.22953600360477336 -0.05114310926597782 0.09464671578519114 0.15757809452549243 0.2771803904101866 0.17675263412004688 0.13225381111666742 0.10195765364988532 0.35637130011051965 0.76689882991019 0.38624544918996545 0.007977637083194418 -0.1739690350116291 -0.2903157040807493 -0.35480475353309154 -0.20296544187373022 0.38460856188232756 0.3629869191831221 0.25171996466390506 0.12668488107470963 0.1989386118892075 -0.23125713944148 -0.38721035514350527 -0.974726691766519 -0.9973591198174222 -0.7830728492932043 -0.8273627846713969 0.3808828378043168; 0.0994281115939769 0.5004217559512429 0.10787076049576633 0.15636031803393374 -0.09007205836063578 -0.09113101144627644 -0.10924661809178629 -0.05540432043511504 -0.17071175426912388 -0.2351320205810687 -0.2784970569451908 -0.21981545028141444 -0.09262347720704074 0.20779409919289873 0.6169627490615495 0.12211101722408853 -0.13269499074608224 -0.36458783581390486 -0.3900701616609482 -0.20740593489771933 0.015744031665530005 0.18031796701848915 0.32241083133420634 0.4957300149319822 0.20697768822160809 -0.0949733242033355 -0.7842260027030558 -0.7276997376634928 -0.39285000215923876 -0.3356202344971914 0.32139289371994 -0.5408739182823631; -0.7122325845946661 -0.45292347299946006 -0.44327000935207533 -0.36368108272481103 -0.3168545513752184 -0.25811436095629403 -0.25620047905365445 -0.27229663975326535 -0.47819389354024755 -0.6085204414998939 -0.5267046908489751 -0.4099143216868226 -0.3231281658587217 -0.20033780618421468 0.0627359709636918 0.2524232818812044 0.29715831214955274 0.0372951674942745 -0.12611100723715096 -0.1712013751914948 -0.2003168971736421 0.03262977907154249 0.3863902408677258 0.7605915029363616 0.9678559201917327 0.7712576609658599 -0.18704862921368937 -0.5448253817755392 -0.3747229720254532 -0.056706982636797444 0.0009737617404925812 0.048854721157806806; -0.5388974602115502 -0.5006991740817867 -0.6897781502705232 -0.8054492929041444 -0.8292607916907859 -0.7269504169920031 -0.6425054711539577 -0.6030839533962251 -0.5155626387687483 -0.5390693791454074 -0.6469759143300238 -0.5392841579305386 -0.5003010869980383 -0.5438759984809473 -0.2495261309119345 0.06977398373369594 0.22933200211671712 0.3551178305542889 0.2473615731024137 -0.08879234817146715 -0.22957668695043085 -0.018339729521790613 0.5552422683527868 0.897094582957575 0.8762146847477189 0.7165792211421119 0.3452378708960589 -0.08595544093069639 -0.3407970624653376 -0.6330429877696325 0.22031190164866507 0.03583886535633294; -0.7864378565155278 -0.07121856912366997 -0.31817641685328446 -0.8013182883452594 -0.9578108138379632 -0.8844937000629515 -0.9632638630896753 -0.9368566192747728 -0.6075397870612739 -0.35812175667943447 -0.30337257271730433 -0.6477371633259369 -0.6907341308886578 -0.8526885545593775 -0.48080767098596655 -0.051357446891769375 0.18893742132892416 0.4268214308770566 0.8727869175564581 0.11833289804458882 -0.21994928706329678 -0.1939509521047624 0.9684753837858744 0.9293339755872477 0.8958725825695881 0.9619536171998117 0.8928269835770529 0.26089087927448135 -0.054942936120505784 -0.22786617100005607 -0.46011715582861357 -0.29774523688113474; -0.7154802960968601 -0.84344930742017 -0.355403197166348 -0.2314074649517427 -0.3765648843407093 -0.5205226529985993 -0.6634060273861732 -0.8199675685981618 -0.7820386322066099 -0.4195721395056753 -0.12785383718776427 0.004804240017095186 -0.478511196093455 -0.7946587484341359 -0.9088695247154706 -0.26197586670020523 0.1220836383323767 0.45774491747451396 0.807457484400178 0.36835429165914685 -0.3835589303202663 -0.8789527033631139 -0.017198499635905595 0.41693633504963873 0.6826366623239791 0.7614081893238204 0.5902125717091816 0.40802139925801784 0.24630224977677478 -0.04373178614374343 -0.8675272176307518 -0.7628417588685772; -0.455795135398343 -0.47518441460661726 -0.32811598998767527 0.0758611400560436 0.24264395195231656 0.0781999432165153 -0.17594195831933893 -0.40306926754162997 -0.611518522897927 -0.5714645402353431 -0.10611295751090771 0.24410428985463462 0.3610961803500228 -0.02649678631317527 -0.49394165608424406 -0.5168968748738725 -0.20309746649070726 0.3925151417894899 0.5433919580471959 0.37627623121695236 -0.01764722027991496 -0.3608945802830168 -0.34060295571811877 -0.21146976463278677 0.22875221819100952 0.521925126556321 0.5212262433067774 0.5147135486408781 0.5049385264499079 0.49717261014555036 -0.30853299264982026 -0.44289277039647085; -0.009725228195755541 -0.12457450879305926 -0.03371664366080024 0.4566291600638321 0.6180731003955393 0.7445573655767598 0.6976575361511198 0.346598405423157 0.040763534056872976 -0.1250582763950625 0.04362776322094687 0.3882659439225454 0.549639686037286 0.5340273650486301 -0.03210486600538138 -0.23874855983535556 -0.31808535152595824 -0.33093477150324013 0.3211576678385574 0.39133614077526785 0.3848568303798531 0.1172748893887852 -0.34860333138593325 -0.47802666874032945 -0.46916150208924634 -0.05196771274373467 0.8015422835867111 0.7879110563603005 0.831576388336696 0.8858426184494217 0.21896101676970448 -0.30023388104415255; 0.7193208334196458 0.5656170275489726 0.7699903854198832 0.8278702017100963 0.6770007570356533 0.7237763272071437 0.8541464974036144 0.9877283329716046 0.8350140912305724 0.46572662511382795 0.30927961067741 0.7659032461380396 0.6443641042041305 0.9072078543457598 0.24257747242003808 -0.08001327358699638 -0.25340965045817054 -0.698577230840288 0.2617821349950636 0.5456624877219861 0.7741389618155505 0.7157353083392725 0.05622600279756369 -0.20610100904692172 -0.2984842604632074 -0.2995804563503745 -0.14559182989307087 0.4023085525135943 0.9818623830357435 0.7628843283981361 0.4417918282702892 0.00897938420795458; 0.937268879369379 0.9467887886829272 0.7314924897442411 0.46002001046994195 0.36237760012112424 0.3970832773676639 0.4827889728927677 0.5797261183819272 0.6337369762609456 0.46071392232504865 0.1046487408151412 -0.19385021384570944 -0.3520546120358742 0.00047908564753328044 0.6221790766803 0.18720587378561152 -0.06238610795635152 -0.381770603535388 -0.10030694694090632 0.7662341185640629 0.6966475212181501 0.49681842461244896 0.12780997593675475 -0.1252020331529727 -0.26659702097198856 -0.337791615175921 -0.33703761094867773 -0.23752523323196803 0.5976982822451233 0.4926024227288249 0.32146931751404234 0.19087345932563318; 0.5678872749424653 0.6409350993047381 0.3766973066002225 0.08368199656743285 -0.05626448890489531 -0.06541671481935599 -0.005742345800171135 0.0510565714451515 0.03978885272654091 -0.0780293188238543 -0.246670018891824 -0.3914728940597054 -0.5214960003617377 -0.5126555338727345 0.2914276699591541 0.9334098121264713 0.5164652301467326 -0.5056229632694721 -0.9415152093092423 -0.658440317500796 -0.4211702311430909 -0.1927014325355878 -0.0027124669530526114 -0.1207440419150774 -0.32199908924008236 -0.44954344219100795 -0.5189584308692295 -0.5549908785058911 0.009204898848600767 0.31073381021008534 0.30362676109834746 0.2452936298548377; -0.04699303701310656 -0.11773087519764434 -0.21474988230760172 -0.3588438511723172 -0.45539867993011013 -0.5092940899077117 -0.48782479109373206 -0.46234827395152267 -0.5017107213667228 -0.5812929964597947 -0.5865730914317981 -0.5246508315929751 -0.343197110423074 0.014490649218516996 -0.47229703993731914 0.5961850923510019 0.3216996753116333 -0.7654435984102714 0.2569815211076678 -0.6855312158852936 -0.7298704912332862 -0.925612041973074 -0.1775436650058857 -0.07993880611038826 0.5700230458096466 -0.8989471237636073 -0.9519161105950776 -0.9517506856674679 -0.4395058319979138 0.18613050618668717 0.38657230090701294 0.3617283315311034; -0.7718238146132409 -0.7048872966439474 -0.8233256509535336 -0.8452435883366884 -0.8403149947587033 -0.840051846244279 -0.4115074418998745 0.0018781969776915611 -0.1532308477940878 -0.583753860670518 -0.515035207146327 0.9677287561257641 0.86561539464122 0.8377213393365118 0.007178412588541454 0.3688178091015374 -0.5946066871810037 0.04379756947349527 -0.696442804773355 0.9659013985063467 0.7634453608991054 0.46087463591541084 0.4186796531213556 -0.5592949939407192 -0.8798295511437366 -0.9137489857040861 -0.9078961994919674 -0.9017875235427448 -0.8799938083013609 -0.6684419286293775 0.3001084537601727 0.7378033250508645; 0.24150508614673263 0.2474817374418304 0.1599765417819049 0.09452522972676383 0.08014059602962484 0.27665703790153684 0.9401003837453784 0.8159744928262684 0.8359185968188226 0.9417641774871099 0.6478008546874167 0.4466438791965757 -0.7216119261228878 0.23578340729615865 0.04758779017568854 -0.4946594755168336 -0.4056266927065288 -0.23330748055670275 0.6340804105607477 0.7632853393390061 0.7743175262488898 0.9328825403306216 -0.024980922680484907 -0.16359824978227916 -0.6292467457259924 -0.6268832052466436 -0.6102299102926105 -0.6024372891934558 -0.574330738390911 -0.48040655084264394 -0.05782293006920212 0.8445706195296822; 0.6946061139026994 0.5985039079139666 0.442981199349874 0.2859121322196588 0.11414994916435386 -0.1158631050353992 -0.3988869503268244 -0.10091738803588524 0.21559036220771557 0.37188088958453175 0.44274977799084775 -0.17684918076406933 -0.05660541206254489 -0.12936032636380476 -0.2785324821493983 -0.43683945804295166 -0.5359297673902409 -0.6608007925507188 -0.8400848054964731 -0.6795572417959788 -0.7094697357891611 -0.4812987971611342 0.19172594370464097 0.6234169954841693 0.8161083338322418 0.4555109782351621 0.0428883532253395 -0.17856003707099657 -0.3047804126762481 -0.3288340400707089 -0.06759713757754471 0.9728397807987939; 0.07019311968056714 0.35521159430063687 0.3630232554095228 0.245612377790146 -0.03628645219743105 -0.47275797861896984 -0.7541721073429474 -0.8727104635518109 -0.8885318675025524 -0.4274467474845303 0.14971407411299706 0.5370592613165437 0.07861720705839739 0.012233078561384208 -0.03143365648584069 -0.024962960591832836 -0.6168377114986379 -0.7878474776055622 0.12769434163350551 -0.5078625506500329 0.5887631482931471 0.2257569279942897 0.5140191001569668 0.7854661236316753 0.9424069841253 0.9013682136808201 0.6594040876952857 0.3336277290445671 0.003080477175932355 -0.25281614087315046 -0.35727626108299715 0.7258359490054686; -0.6240520495873372 -0.3419385373121459 -0.07228703344776359 0.04905601478010436 -0.1246894300458005 -0.6685397415666047 -0.8777322522599937 -0.9126492090590815 -0.9225138410304006 -0.8758835020304965 -0.4865570462609541 0.49332881907339465 -0.06190069143232093 0.6539543402344795 0.6663152309151884 0.7182501818789939 -0.4830449972721125 -0.06552238965524676 0.3394859717577623 0.3963068044707871 0.8900173382850788 0.6539987370162188 0.5121904200321137 0.7695983532320618 0.9840539174351415 0.9787897527301798 0.8884569567241207 0.691284267528875 0.18377610911018766 -0.4512105748631939 -0.7177568111900561 -0.6046584282907491; -0.7809676647239326 -0.7018558437977191 -0.4591270286045128 -0.043021239304216106 0.22997161608397132 0.2229224166497887 0.14405803471093723 0.13695300051165243 0.26091543088636426 0.5151253447837503 0.7287549113081911 -0.1362653655966661 -0.9331144816639543 -0.3196696579148461 -0.9982625508618448 0.9434915927231888 -0.9760425146544174 -0.5780757027925565 -0.7024455533726507 -0.018575626029666118 0.9194067492292405 0.10583777415162508 -0.5071790442511335 -0.8169152050925858 -0.43150442219328206 0.09806969957297501 0.24866483326250607 0.15318063957172187 -0.18361319007859525 -0.5997313598861326 -0.7667728852334019 -0.802655048628125; -0.4892431403935423 -0.5353474106465966 -0.19746634830856555 0.3234602889970015 0.5082806214591726 0.5354349945585568 0.5026849114216905 0.4509167410512918 0.4086306428441368 0.40265460451012836 0.4530497238194613 0.5418520471433317 0.31732859002845376 0.3487228091832634 -0.529575403955034 0.6334032596488784 -0.24281282360846057 -0.4590192995317879 -0.36359300152493246 -0.28540440766442743 -0.6536815127752825 -0.889120844464351 -0.9932538658074936 -0.8828702633554303 -0.657325994027937 -0.4813263889616635 -0.3496565263359978 -0.30294586532676543 -0.5328510851670064 -0.829567578140296 -0.8878321050869656 -0.8894385427724133; 0.11937069269750744 0.13396026716789064 0.32875704866705413 0.653359370301289 0.7627107505868127 0.7724080331565745 0.7429461983681016 0.5577806481001875 0.18743162316383438 -0.07717111868231737 -0.12082151085188345 0.12332545591774854 0.8583783271154123 0.47214191721920706 0.2956968185411124 0.5432905810265684 0.6136849673513363 0.5155678947783585 0.4284166621398271 0.4264648821572523 0.42055454610494053 -0.17704537838247567 -0.6752675455259336 -0.7186637287452682 -0.401619980802761 -0.24203947392862996 -0.12203182699442382 0.005864005712557525 0.004542843066552596 -0.48715536704867235 -0.947664037497171 -0.9806395742260772; 0.47159791942077234 0.3084248772484128 0.5023594433024621 0.6478324847917977 0.5281217410776757 0.4479649615972662 0.277209049131663 -0.20963643440660498 -0.726360518720402 -0.8260472194619211 -0.8052257615462574 -0.719304345769434 -0.5792060797070119 -0.9926251154941503 -0.924344190312673 -0.25659162348060405 0.4770376384038367 0.7249270307357051 0.6617604815903364 0.6620567657735175 0.6917167151600275 0.25249322909399957 -0.18911753033521442 -0.639818505770642 -0.26998404651625396 -0.11269991411727211 0.05196195845622303 0.29928962850429164 0.5625918846651575 0.5448894485885748 0.048555545601784614 -0.8447628177046712; 0.3365611887335481 -0.2836781262236665 -0.6236478504157622 -0.41560511379327136 -0.22600944119363006 -0.19193647120883991 -0.41096857409908133 -0.8509766729081599 -0.9872279156390361 -0.9952187892774245 -0.9854727256983989 -0.9292982683136993 -0.8698412790008619 -0.9934013194140274 -0.5852036343459923 -0.29574140912825503 -0.37419050877539994 0.8995740380404096 0.23767825203846907 0.10870340292957975 0.19972141688698378 0.6623733308686397 0.9286898818936677 -0.1077575181311878 -0.34921996199680533 -0.2872042296989941 -0.015563876479121538 0.49381942852331107 0.8753223093703689 0.9039966636242703 0.7493409481616868 0.20722759796410822; -0.06473451804663954 -0.5223145730604721 -0.785199257495612 -0.8456218292370298 -0.8576459810978218 -0.9154185701673349 -0.9027368551048857 -0.6402503887313251 -0.5259826848052384 -0.5299993614924111 -0.598267637995204 -0.6477119678212804 -0.5229950703476208 -0.4645542287358321 0.09184720924834569 0.8313485224895668 -0.7472246676540315 -0.7717470693322205 -0.7409640744740986 -0.6356999338804538 -0.4567118006173082 -0.11564681859474821 0.6444788043407911 0.5299379877075989 0.14764663741276612 -0.13948363154249205 -0.3088438560616623 -0.17081984133351966 0.5474744488514185 0.9631338067445232 0.8792982661876253 0.509299759113012; -0.47606108017298115 -0.5070676029581898 -0.6828936558924168 -0.7992030107471638 -0.9285771720905791 -0.768416050685041 -0.23743655982144385 0.08961745539588814 0.25370214828254223 0.3671921495209886 0.478181697858347 0.6507720732149034 0.3757632529708866 -0.07802471309779163 0.014703393287176108 0.4029619231646333 0.8127797413246024 -0.5422072985355955 -0.8592022474844748 -0.9066448397700783 -0.8656005418001738 -0.69890885379062 0.9828029939838017 0.5967319855828058 0.33428348854213563 0.06389718566996086 -0.1877584573734384 -0.4070473116947122 -0.5146005602767719 -0.26529339868408014 0.5494510492329064 0.5011383680896175; 0.06985596145354507 0.17978733229629495 0.19286463745942084 0.164612899232086 0.12531442616083494 0.33449247768192486 0.5910801112557017 0.7572114385625321 0.8246797280478104 0.8021635271849312 0.676562475864712 0.4116614075015088 -0.3975582356656925 -0.37583426970588146 -0.13924243672560307 0.07247274947572709 0.8333690174497913 0.3761917640676041 0.20806205053393692 -0.01661115153871307 -0.24076886848875897 -0.39005678471590677 -0.32713503613351946 0.10303241873773121 0.3928460173235648 0.22788015473131992 -0.07862248254759356 -0.39643352778473046 -0.677905913572347 -0.7657601452571852 -0.6394429693465498 -0.10919676304881733; 0.26230994667617874 0.6201808454749504 0.7105572602157227 0.7415102522000021 0.8862139852347957 0.8658223774136811 0.5462864068761338 0.43281319384371103 0.35472190983733226 0.19010000646325056 -0.1674424654559439 -0.34611380345961096 -0.46942630981342853 -0.232694458131956 -0.0448272113820078 0.061129284988255504 0.8687630527245485 0.5201865253636494 0.519554221092187 0.4574446628085297 0.2698006239605572 -0.020225642057618686 -0.42051206973340227 -0.5166615385153626 -0.21335643705024293 0.2913328633834614 0.295240675849036 -0.03747854883172841 -0.4677591554057408 -0.8354465696644918 -0.7138501135262708 -0.008842111370915956; 0.8407532125444018 0.9081199860491233 0.7097880217602213 0.6326358004554792 0.42674515982111 -0.02595570437339894 -0.11198487675044248 -0.16593330926207944 -0.25647575400782335 -0.5161029032658536 -0.6629466931965691 -0.5179917182201831 -0.2365989414520819 0.1318921304515627 0.22216952983363228 0.23106230118305465 0.492544863789121 0.6088490983424002 0.6813566568917999 0.7571879338852819 0.689350215739749 0.4839563817408051 -0.11285172677721496 -0.5624003325220204 -0.2433205463895775 0.05706940630800053 0.34608449593220936 0.43405019017018875 0.33604516515915617 0.07932635270003124 -0.334169790046624 -0.3137326795691029; 0.2548147791117405 0.28285542089561355 0.14575960003474817 -0.38883694044822636 -0.7639179336921433 -0.7353905418898612 -0.48939633742861155 -0.40955388717868546 -0.49551554169315304 -0.821713037409456 -0.7207986795235444 -0.39266438055345976 0.14982312460389013 0.5459191810552592 0.5583005705171135 0.4709646281953656 0.3617624869858758 0.39499107137221573 0.5283884216330584 0.6990648626193471 0.8065523063730129 0.7896192361082123 0.6893705496304308 0.6336435421866227 0.10574154847699596 0.23263204232024778 0.3263841574821491 0.4507746337871543 0.48597361322867927 0.38980418468433325 0.5582709457108026 0.0641102296847441; -0.6861383122874838 -0.5031553534661455 -0.6457685142365475 -0.889765337478508 -0.8896720785759766 -0.6004869928709154 -0.3859660588202993 -0.190318904234211 -0.1303334661872487 -0.18332951303870493 -0.17236423555196975 0.03421477575984119 0.9966450842450496 0.9602473096761059 0.9595840586904691 0.7785654547760488 0.363136788954891 0.12960343040522976 0.12306941884616412 0.2580815446813442 0.4182330067051061 0.5574418993235112 0.6472822609945537 0.639456614464518 0.7728299188083874 0.6633220385741336 0.34922732549987273 0.35670396599055326 0.4327841164985396 0.5021009271242255 0.29504899151700187 0.7512408812173471; -0.42796222525378674 -0.05596076329148581 0.21361010702074246 -0.4359897656458348 0.20066576779317635 0.03355825438824719 0.3065271051376881 0.9866817212616124 0.7038174639021446 0.49693294280123934 0.42856632220278007 0.20359891297768912 0.027364794687634815 0.07832419349478024 0.2446072061098225 0.8677876773855202 0.36632326910315627 0.12344109620112532 -0.0012998377544267453 0.005767380373320408 0.14251707092202992 0.3339849591930425 0.5779327213578528 0.6236819906985301 0.5479885744685835 0.5229067956116471 0.40242098289681216 0.32693985907535794 0.504090346956416 0.2867971039757107 -0.45703843932132315 0.4993517296087309; -0.008040628517477829 -0.02838915653052679 -0.26071661020256676 0.07959045804213959 0.519004975721518 0.4892591316711321 0.5505017916655018 0.42524980686679587 0.5824504356033363 0.9078214462180981 0.3073289630197219 -0.21515318970949376 -0.4782741044171996 -0.45628431313253004 -0.399982479355833 -0.2855419598471564 0.21741658895550406 0.13376527423678522 0.006311200675020225 -0.26147799020657647 -0.30863912509282515 -0.030815001844965342 0.33381693107364524 0.6666691161216708 0.3897139121100449 0.152029819295442 0.10595370691783405 -0.002055902669657207 0.004857856394976671 -0.32581887298088474 -0.21099439475872117 -0.2576146419358735; -0.9246226239565427 0.4059017399077342 -0.6053220577295604 0.973525271066167 0.754871277763805 0.464954346777583 0.12129525411365695 0.002866824778347306 -0.02748003006103805 0.04636114709657393 -0.1867625792723008 -0.6510783935092243 -0.9421810744119687 -0.7944736566218226 -0.7194640220323704 -0.7601181095589918 -0.8270039217369408 -0.05065081399029484 -0.03641520787138934 -0.21933407533529797 -0.5089171846287064 -0.6729345544148119 -0.5823352893820439 -0.540237373445808 -0.8203232368217366 -0.5053887521345425 -0.16070095900958065 -0.1256135562101869 -0.02079946604975522 -0.11440167437940263 -0.0018619747120685167 -0.9804056037192409])), instrument = (lgR = [0.06497094305873513, 0.06497094305870264, -0.004325758563359803, 0.11799897740483443, 0.11368657740571109, 0.04646163566854511, 0.029870219703593333, 0.07634673463549926, 0.06227980032798159, -0.005135877276452542, 0.05715399675624973, 0.04582501339905866, 0.02144493238977019, 0.06728121584754912, 0.03564116542669912, 0.022731104452917, 0.05838080045381447, 0.054297308366964975, -0.017921487494890552, -0.08647463917880222, 0.02343723818244061, 0.10820365212024732, 0.054516553521319615, -0.11827929794033505, -0.24477845900123066, -0.02052038699787544, 0.1086302075574961, 0.15007566148359636, -0.1071169986892195, -0.19899977112075973, 0.046792137860037886, 0.04505221962857614, -0.04446708461094639, -0.3304113284636094, 0.027323806073623096, 0.04872918457630077, 0.026810511718391425, -0.052204999702355516, -0.2618344811578321, 0.04573667233236991, 0.02532251394518271, -0.011542882497045994, -0.14488783392403154, 0.07415712663495817, 0.04423204166999176, 0.03079485743061925, -0.037758296494962144, -0.13106753266855925, 0.11113281439809689, 0.05104251996420418, 0.02633418655504245, -0.01906930687514958, -0.4399563495215268, 0.09011660747389547, 0.13469142252183106, 0.03463842464641148, 0.006174111435113394, 0.014225690310292674, -0.3195753255434686, 0.07546916106344946, 0.15039878687381023, 0.0441280542927976, 0.07787275773921737, 0.02385659561015071, 0.07128763213477018, -0.1489738335847111, 0.20351342341436915, -0.10011500624658741, 0.04430980327899847, 0.0308175213277667, 0.03842883603245965, 0.1994445525810153, -0.21512212683206722, 0.20634425711332186, -0.11220967207529031, 0.03410470057074992, 0.0033501112115515274, 0.10077135072641136, 0.15035201453719563, -0.06342501106240453, -0.020198658250754953, 0.027772472926895997, 0.0006916674804729436, 0.1433556451506913, 0.08668551272553499, -0.8499799138482538, 0.023529452676611096, 0.042111642731066615, 0.0011908526782773191, 0.12884454934323028, 0.07597104081690036, -0.05926573292803965, -0.03484699501167591, 0.05583668981187144, -0.03037754303720138, 0.10063575122259041, 0.146480624230529, 0.006904399201344649, 0.00967994872202523, 0.03130359320990225, 0.11390861282070659, 0.20654537065956313, -0.198248718119508, 0.015992199135405356], lgrat = [0.00937087767810677, 0.0036498814311754927, -0.0010287024306469695, 0.018634658656524868, 0.004386881064995726, 0.018409018740955907, -0.008422663897869618, -0.029788878487289505, -0.01075039645399971, -0.00643236327038113, 0.03229557630453324, -0.026165637987984998, -0.008077411298576712, 0.04270136069513745, 0.013005893677249011, -0.0646070125716393, 0.022635133158499236, 0.002656044334923448, 0.021752821305981246, -0.012653044836526395, 0.014404894047867869, 0.015615462277627938, 0.01891131751831526, -0.03124453691638018, -0.009180636809498169, 0.02114609849906562, 0.0018766709013168677, -0.0303091208727899, 0.009161180856553272, -0.0007851920090063263, 0.026085785672869854, 0.014199604825506215, -0.005302344923929208, -0.00019765431681511753, 0.021291049562016936, -0.001390205807178809, -0.01408329264829836, 0.012887953932871659, 0.0001447174868865724, 0.010343222401065633, 0.06426279862272445, -0.00012234971634721479, -0.0044582214832298685, 0.026810859245663704, 0.03013466775317532, -0.026548510135908903, 0.014740995370070637, 0.012976530982230904, -0.01369600430436778, 0.01758553942512935, -0.032808532084538745, 2.8237366851197384e-6, -0.1099776352985929, -0.010750358562564231, 0.010788966879044676, 0.02979456031037373, 0.013781427664458548, 0.0003330884264720939, -0.07988424589299076, -0.00744188909369336, 0.010033129361818587, 0.03442239400402834, -0.06830369460672595, 0.0052749374617061815, 0.017827792074877623, -0.00801770355359527, -0.004433440379516162, -0.008167059562244334, 0.02587184624988899, 0.01906814573524064, -0.0046065101362958785, 0.049869556716630146, 0.035256688533291176, -0.0020956016093654846, 0.05231220438804269, 0.04454961318392764, 0.008672643434335358, -0.017996568901759692, 0.03759344008674031, -0.009509044098073299, 0.03989302185976384, 0.01764078571159857, -0.05057071957432984, -0.014726429051322763, 0.02167805857870804, 0.0134536199317392, -0.07253064242205681, 0.012195663471516969, 0.040189306366069134, 0.006771615983014163, 0.018994315630503068, 0.0033569258069230104, -0.057504529915946984, 0.0008860053270633168, -0.02333349760298935, 0.018152846019640012, 0.03661773343969234, 0.012202382368798406, 0.021099082188636778, 0.02148385337657062, 0.0022548400654949278, 0.05162887930824819, -0.02262072771916333, 0.025430009811709602], gpR = [0.0, 1.1537603949494353, 0.0, 0.6643977076576495, 1.0707536883944808, 0.0, 0.5094968145025116, 0.9910555601130249, 0.0, 0.407426266627206, 0.7902714224000881, 0.0, 0.4260050712230164, 0.6746273620779454, 0.0, 0.4374015060384002, 0.4784671852870874, 0.0, 0.3643525081815977, 0.9755994755393157, 0.3661519929220274, 0.0, 0.3383734521373601, 0.792200430165259, 1.4493588040780003, 0.1253923551868829, 0.0, 0.26408765178094523, 0.7896771025702012, 1.4665326158944918, 0.0, 0.25706612473288554, 0.5575936042176116, 1.4908976773510012, -0.2529911535939213, 0.0, 0.15520102310239797, 0.5039523384548809, 1.446726608154877, 0.0, 0.25507665057656903, 0.3362880353685903, 1.3579466051018714, -0.6898635827187043, 0.0, 0.2035486742354293, 0.2247155862702894, 1.3068396377236435, -0.7769305449841282, 0.0, 0.24848965884679206, -0.0835402758510373, 1.0272505092461954, 1.1527260359341476, -1.137381020342076, 0.0, 0.20887144573584018, -0.13423796823676248, 0.9446014482430245, 1.050464087469562, -1.2786555924431733, 0.0, 0.22254629573141232, -0.3991597307788295, 0.5775882239350159, 0.7914257869860646, -1.5930358551914638, -1.7066255172215659, 0.0, 0.25619124702542906, -0.5360680712298045, 0.4365031050670504, 0.6861999852011849, -1.7207249217301257, -1.8358140520429984, 0.0, 0.2958860213567107, -1.0754542071806403, -0.03261779248517804, -0.4058834444368822, -1.2847774021457417, 0.0, 0.3972945829280632, -1.6646666638093874, -0.26807598395360976, -1.630314378107336, -0.6657959845113757, 0.0, 0.5415461202379177, -2.3032529573816247, -0.4113056641509196, -2.384803374417993, 0.11433299160110089, 0.0, 0.6625444403716185, -2.7267388247757682, -0.5272551991719796, -2.79849472890491, 0.3296147218498675, 0.0, -2.8875573998182227, -0.4853913951255855, -2.9144173251805685, 0.5286643477220943], gprat = [0.0, 0.00883918534886559, 0.0, -0.09097058325274521, 0.008429772659631064, 0.0, 0.04938626364968335, 0.011355168529813883, 0.0, 0.05703871334456884, -0.009695996830571652, 0.0, 0.038639812653256306, 0.01617251741052747, 0.0, -0.0660003022294049, -0.01653221707718533, 0.0, -0.04664421100822835, -0.007435495676504367, 0.0065138165990221465, 0.0, 0.025262308555315013, 0.03726852456793978, 0.018134396546213294, -0.0002612724965844748, 0.0, -0.010149204843416193, -0.02707164773583859, 0.004526380536088144, 0.0, -0.050673718921411925, 0.016383183027975846, -0.03251194193590656, 0.007750862438954923, 0.0, 0.01820575611434397, -0.015054327373950294, -0.0027948249448837004, 0.0, -0.06390968783947493, -0.05101979463497219, 0.00834518582649376, 0.02260339170889809, 0.0, 0.03259683920833678, -0.031379311899669915, 0.008140940339284445, -0.002166379342342317, 0.0, -0.043696778557198, -0.010315507529585766, 0.0014247546718508617, 0.0014739426472451037, -0.0038581924940261914, 0.0, -0.012373993966114938, -0.041493913382348424, 0.0008616607405579563, 0.04314764925669045, 0.01435051248864034, 0.0, -0.008800416217021656, -0.07206149585350818, 0.0004632783283051371, 0.04747800769733711, -0.027708752343312604, -0.32972953129640814, 0.0, 0.03459656018794249, -0.03313958661790295, 0.0003375468442914204, 0.03381869696474585, -0.047302885355478, 0.012748342533359436, 0.0, -0.020854767317630696, -0.04658141203296484, -0.00010165591329425183, -0.038815150379850394, 0.24843745069878348, 0.0, 0.029400519865965542, 0.07039050499607583, -0.00030988147179566994, -0.018129904587585344, 0.11315606966076058, 0.0, 0.043293591683363476, 0.16569036920994218, -0.000401112269013737, -0.03500843298573297, -0.16032172513517207, 0.0, 0.04999077308709313, 0.16057777466535095, -0.0005097328937724299, -0.07220454002192511, 0.032629987184835785, 0.0, 0.12705863664097117, -0.0005244774079953274, -0.07140005401925986, -0.025530984301298965], dRx = [0.008578803534597891, -0.08138694397807297, 0.030871114790475124, -1.1609004826041588e-8, 0.018226643414608276, -0.1502405816834812, -0.028202568223959248], dRy = [-0.06619089186394671, 0.021992965207586337, 0.06582403602176695, 1.601977497940592e-14, 0.04453147539626923, -0.014782579368165136, 0.07745015845928231], dLx = [0.014768238604126828, 0.04943463937381049, -0.04216917796842725, 0.04889649593487325, 0.004391257721865958, 0.10921460554323936, 0.06393053456984422], dLy = [-0.0652450450785408, 0.047180605690515645, 0.09172038228351893, 0.030227671090574094, 0.016447572630253055, -0.029822298831480663, 0.053624114680579156])), retcode: Default
u: [2.2614376879183878e-5, -1.3542730693737274e-5, 3.926784032221803e-5, 7.928200382242906e-6, 7.334343505538418e-5, 6.451598460449403e-5, 0.0001452127954642919, 0.00015677883504630329, 0.00019240867300447247, 0.00024987986387928055, 0.0003480659133065753, 0.00046616419471716267, 0.0006337845813897996, 0.0008550396379332638, 0.001034607509570008, 0.0010813290449765039, 0.0010480667407774128, 0.0009317306971733077, 0.0008405380701213705, 0.0007619925761886127, 0.0005488761455094951, 0.00036758973543446315, 0.0002720343119612651, 0.0001974222939506589, 0.0001508365860998955, 7.315894376468869e-5, 7.697303557313004e-5, 1.6630258314167655e-5, 2.2741324742851328e-5, 1.0551408523233213e-5, -7.287993030128914e-6, 1.6357215238550205e-5, -1.0353920032943189e-5, 4.131033490309013e-5, 1.9832849431342433e-5, 0.00010101407780359044, 0.000124758645401295, 0.000262099357228715, 0.00036520082427335263, 0.000481047000733754, 0.0005429123204302844, 0.0006378143565917155, 0.0008379235980098268, 0.0011305284083163029, 0.0015637077286522348, 0.002253619890560329, 0.002817252342430868, 0.0030186726799799556, 0.0029979128744638305, 0.002790954585374101, 0.002505643799220685, 0.002128384035423984, 0.0014351598176901399, 0.0009658703154549991, 0.0007564647376633316, 0.00057076619143205, 0.00040482426209356476, 0.0002618314889989045, 0.00013006451922816705, 9.746083996533969e-5, 2.870515132427683e-5, 2.3123566458235372e-5, 1.3529905479937207e-5, -4.181683683720174e-6, 3.76680905615303e-5, 1.9823679662550337e-5, 0.00010775864769305569, 0.00015456768213142167, 0.0003515344597771093, 0.0005960223568626088, 0.0009606622399758376, 0.0012885657973418611, 0.0014593493500212017, 0.0015919013889233943, 0.001802648940932348, 0.0021888481765507243, 0.0029453700184570776, 0.004621113703865805, 0.006005227062566812, 0.006589419383097434, 0.006904114320856242, 0.007091747668726806, 0.006746984763915386, 0.0053815688861139875, 0.0033709212508738506, 0.0022824384970941327, 0.0018500694953220635, 0.00138789536710499, 0.0009412756940414824, 0.0005662009053668686, 0.0003139137885528292, 0.00015809989943720365, 0.00010452222849281088, 3.460095932239527e-5, 2.8871277116154963e-5, 5.024338626493597e-6, 8.31893231174202e-6, 0.00010064724033864119, 0.00015041607288464204, 0.000372187703541297, 0.0006972670565743314, 0.0013391386138561126, 0.0022864666150897626, 0.0033206762912735555, 0.004068042221908415, 0.004382377675558208, 0.0042793850693431746, 0.004169827149601317, 0.004832761470294204, 0.008024576579887054, 0.010540201236818333, 0.011603735218114062, 0.013282074617200332, 0.016341563210367133, 0.017698963278293282, 0.013851798449558864, 0.008386221379019076, 0.005487486050801881, 0.004295718911935112, 0.0031289490425568346, 0.001972097597113484, 0.001123926770344923, 0.0006027553683093225, 0.00033637499122026994, 0.0001711347265215868, 0.00011345976439322389, 2.679547159814884e-5, 3.47120104393505e-5, 7.728726237733662e-5, 0.0001267630258284474, 0.0003507600543004453, 0.0006754882853254715, 0.001383401634071078, 0.002680148183122628, 0.004764469100146744, 0.007486398578849551, 0.010314554184560915, 0.011748166171987715, 0.011041079365675506, 0.009008365001733501, 0.007976981427175697, 0.01213001218209378, 0.014549336773357052, 0.015007269891549343, 0.019591727187237628, 0.03269339141567049, 0.04241300171230531, 0.03410905283808097, 0.020721065613031935, 0.012740742797926478, 0.009346825329843107, 0.006690977842246685, 0.003964383419405964, 0.0021484590911456766, 0.0011568632536847565, 0.0006682282160991528, 0.0003777599738019718, 0.0001768024796333686, 0.00011776694321878743, 7.353387124029809e-6, 9.149111955724142e-5, 0.00029557250528363895, 0.000620112450025478, 0.0013180743126261763, 0.0026252501710908468, 0.004986469010070632, 0.008555773595114538, 0.013543972448139744, 0.020686565017208967, 0.02685051700666256, 0.026998164554745893, 0.02132989742701821, 0.01519038879721456, 0.01727826424446298, 0.0142932143744383, 0.010533651378798133, 0.017695214891787815, 0.05195229719820867, 0.08551112517390048, 0.07161892973660419, 0.043994646728115774, 0.026723707652001997, 0.019505489973684714, 0.014401791404698943, 0.008402437054021905, 0.004417767944703873, 0.00240784706741614, 0.0013830478129776278, 0.0007608873667663797, 0.0003866396612153699, 0.00013971593897409932, 9.743667190179297e-5, 0.00018615810979048813, 0.0005009725135311266, 0.0011700823299896138, 0.0024994029966488155, 0.004932530511795657, 0.008916772853071825, 0.013957254308869248, 0.01967603929468321, 0.031215810372234486, 0.04763628483726267, 0.05553051105035521, 0.047285880478443613, 0.03133720090878737, 0.026543521141984716, 0.006096169193921851, -0.010000645318238034, -0.005862154200772283, 0.05319263756391277, 0.13266437180144236, 0.11782776718425635, 0.07554138470673741, 0.0504214080690712, 0.04081733993097111, 0.03236912677876317, 0.01888485695424877, 0.009691857748847801, 0.005161386342568118, 0.002769283706859339, 0.0014256234728367246, 0.0006777465972323827, 0.000311714871022484, 7.182231232059672e-5, 0.00030020068390205666, 0.0008487830123201163, 0.00204151945450272, 0.004568045092645594, 0.009208757459677832, 0.016060126428335982, 0.022757175694503546, 0.025930956846626878, 0.03404386078700229, 0.060137571078813054, 0.08603607011973596, 0.081204464694778, 0.05090820106663071, 0.038754624154057546, -0.008417879410989189, -0.05181768060727231, -0.06055895758083193, 0.007150625616349433, 0.13104025146492304, 0.13420742555787868, 0.10359338370484013, 0.09214936090540785, 0.08664300834082266, 0.06965416408370863, 0.03940631931123813, 0.019525498178542017, 0.009941209211212703, 0.00488133991237028, 0.0023070887348283524, 0.0010722921524829764, 0.00046176203879946543, 0.0001814078403594516, 0.0004433915096268116, 0.0012660545728306963, 0.003158843296242872, 0.007579532592570545, 0.01651834924247981, 0.029492600602303125, 0.040118491267884034, 0.039065415016086985, 0.031446997977114484, 0.047541099945766135, 0.08557368863150117, 0.08834265878471677, 0.04198804293612387, 0.0243987009246862, -0.03262832020656271, -0.10041244790132355, -0.12472423044918968, -0.07663398479219653, 0.040052107801778127, 0.0796650574525229, 0.11889450943064081, 0.16441794603687057, 0.16486756814422246, 0.12658074734767907, 0.06738289476669469, 0.03156607606034928, 0.015558202036876216, 0.007203355597471833, 0.003230933347459884, 0.0015553114061743333, 0.0006833173088510012, 0.0002448881259563929, 0.000587291632732999, 0.0016757652819908873, 0.004228500935515002, 0.010721592655161254, 0.025909979436600443, 0.0514553106878833, 0.07396602682411983, 0.070311807400203, 0.03894973273353375, 0.01873705780213032, 0.040176233922482554, 0.04719287668327015, 0.010165703088625086, -0.003260380109759968, -0.039375458199957886, -0.10136223016926334, -0.1440932400347084, -0.14342275884946062, -0.0899588619751585, -0.03607468307660387, 0.09261173448566327, 0.23228312810029966, 0.23302008974622934, 0.16553498310187267, 0.08204135554940256, 0.037143197664471266, 0.019634143048295586, 0.009623824334814427, 0.0045594780689585486, 0.0022191760000828207, 0.00097593909729593, 0.0003612437976461437, 0.0007212261410296997, 0.0020037198615988033, 0.00497557810085643, 0.012584983569449109, 0.03238193209025477, 0.07380823822139426, 0.12293762387102743, 0.12280907273337693, 0.05657497482410378, -0.007401552783063627, -0.015057431460049746, 0.004379403440835814, 0.02683534099093107, 0.06604345957018776, 0.050786097579647735, 0.027963621346471217, -0.05418236819229233, -0.14427657527250487, -0.19181780663270423, -0.16660603443409602, -0.009773868318646501, 0.18625926815822152, 0.18704029852850673, 0.11724611205303462, 0.05387858702063522, 0.030261128269522056, 0.023111765231523883, 0.014310530565221078, 0.00721624475809736, 0.0033227290970920856, 0.0014217606260389212, 0.0005220647248443613, 0.0008960171903817906, 0.002449229274286015, 0.005872668840270373, 0.013669694941670887, 0.03201586712717557, 0.07659873515983838, 0.14855518376977508, 0.16667410738310465, 0.057230470775930437, -0.034210564367426935, -0.04373562416097131, 0.028319182054102273, 0.15218648174958838, 0.3544115106407904, 0.2745430230334655, 0.33055099973374363, 0.2000263242652536, -0.05602960204778149, -0.22729541588665408, -0.2584901152910479, -0.13450684989387315, 0.044006438930851495, 0.05633658367519713, 0.007012597775943519, -0.007387102396761346, 0.014737919952559417, 0.029438791172774967, 0.023143239042043594, 0.011902799691354918, 0.0051507851690926355, 0.0020667673630123664, 0.000714652830716776, 0.0012241561615478362, 0.003397587650410345, 0.007929000991853468, 0.01658692797728787, 0.031527232050990686, 0.05862355644287637, 0.10763807442651176, 0.11793523151926676, 0.023291552459922434, -0.053343532611101564, -0.00497796637061412, 0.2113627495844103, 0.5234478891245355, 0.6642492034908403, 0.6488599289585121, 0.4598772776249627, 0.36633088172903017, 0.1002133558743954, -0.1593667176490902, -0.25948486452172737, -0.19400985865619888, -0.05636255477014034, -0.03550937539125796, -0.06942466958618661, -0.05708128892773553, 0.0014771459523795028, 0.03948046614412971, 0.03532903122063653, 0.018374929412732367, 0.007797599232614144, 0.002906487477101028, 0.0009326878487838113, 0.0017427883383662212, 0.004912710704837347, 0.011547597594746897, 0.023662422524504276, 0.039540755695227976, 0.05199510169924166, 0.054382776642795595, 0.022970917860129024, -0.04413602004292309, -0.04886449781610974, 0.14535991659961886, 0.6747964149826746, 0.28584561775987083, -0.015872774584370083, -0.14844622610817748, -0.15352476248457073, -0.016857571516319517, 0.21711402405996044, 0.09348033809491627, -0.11586170211403304, -0.13808229976026182, -0.0379201883405251, -0.026220377397734647, -0.057340747519099365, -0.04760245466252373, 0.012799447252319702, 0.055904134396896385, 0.04775449952056942, 0.024404173155970422, 0.01016269265277372, 0.0036809102772403304, 0.0011483696649354533, 0.00233938567276005, 0.006608195980176373, 0.016379588041743158, 0.037214130077415336, 0.06656241238708985, 0.08250965055450499, 0.06917772892177249, 0.019910217759245865, -0.04891213324720875, -0.01423069994779316, 0.3258035624072492, 0.8899718769257702, -0.040169954176297394, -0.4027214886879109, -0.5158864977752828, -0.4656466544504274, -0.1980012786797073, 0.43593240242666237, 0.6103916228068196, 0.15081369071793332, 0.011447676637475517, 0.11361632926720075, 0.1184196445487727, 0.052671923688773076, 0.02249060996881895, 0.048318560223324675, 0.06836988940910003, 0.05098457262170435, 0.025053660280338542, 0.010277960417762884, 0.0038198963690483567, 0.0012416071822832274, 0.002723447062286746, 0.007793268439434839, 0.020514287615925466, 0.05319704710940393, 0.11229927641971615, 0.17372795417529618, 0.19215807201635515, 0.14821131852998914, 0.03015492252026607, 0.03483377697259816, 0.3641794939744967, 0.5529218206656383, -0.2398641177306192, -0.5550992955473315, -0.6417155532582681, -0.5613578564992269, -0.2485018078877344, 0.48966363912430716, 0.42203703362869344, 0.036444140352615506, -0.004782926813574145, 0.2111547676507743, 0.4093193410519074, 0.2610218884638809, 0.1303210746881355, 0.08566714028302828, 0.06756332022270022, 0.0428903665825029, 0.020471730921954253, 0.008242312284937332, 0.0032508116481379267, 0.0011746628836921465, 0.002573121004309116, 0.007278773514638601, 0.019840885910692694, 0.05728938601396355, 0.14145976557979936, 0.27993132994977793, 0.40387999178516226, 0.362078271433783, 0.11170616889311864, 0.005360186843170737, 0.14841828117583333, 0.257782348759934, -0.2731352543802588, -0.5454245891783369, -0.6115753200929902, -0.49698656834996796, -0.17423099517134924, 0.31608915131521215, -0.10613146216189277, -0.26541847854175465, -0.21463512654471079, 0.045219166156231845, 0.5429773924041841, 0.45042492893751784, 0.24892489749403232, 0.13450281529834243, 0.0746799019007466, 0.03849748278960081, 0.017570046127274544, 0.007448403095995735, 0.003057832850411983, 0.0011393011388590917, 0.002002369352712749, 0.005511090366664011, 0.015023310556472444, 0.04469951903796913, 0.12038791899632081, 0.27841953473378156, 0.4968495041518256, 0.4225212098674327, 0.1039015466787372, -0.04503393206160716, 0.06591452568603105, 0.35609274459702994, -0.09957486749857201, -0.3823266423069745, -0.435348234208583, -0.24924429441859727, -0.014188075476755721, -0.027581791975126863, -0.32153779577409425, -0.43259813749119935, -0.3697924362449968, -0.14182207712535236, 0.3109757979867695, 0.4530268691216256, 0.3734872012984438, 0.24085798355393953, 0.12093695336817387, 0.05165785659473228, 0.020890522265754705, 0.008454313489052553, 0.0034022315723351805, 0.0012150508524940752, 0.0014720251631800344, 0.0040439215832805625, 0.010486933599018195, 0.027491453337044575, 0.07142246574220056, 0.1748593063299575, 0.34541529675756744, 0.3726812727661641, 0.10282846725687102, -0.07183273823990435, 0.005443550921999152, 0.3267869388396443, 0.22225251529969342, -0.07979312582494555, -0.11928542518909753, 0.3067177915649243, 0.35909789280851856, 0.010769372579963923, -0.3273697575930018, -0.4499826784292334, -0.4002378973411473, -0.21163196708545773, 0.1328928623407498, 0.3140312910473349, 0.350493761152585, 0.29376912139913636, 0.16114645493413102, 0.06984579535324552, 0.02691945390349716, 0.00980032298415983, 0.003543355157863557, 0.0011875381671383463, 0.0011549630202590075, 0.0031888147214135304, 0.007493980548895243, 0.01635732173921467, 0.036271879226965786, 0.0825584770772915, 0.16504708254636588, 0.2081960942183026, 0.07989185024254822, -0.054242213331581954, 0.010580590632468172, 0.3711636496263542, 0.3324951366722806, 0.110340407518299, 0.018187223330362292, 0.24466041293306612, 0.20649973181360737, 0.04062555987300024, -0.21259481334957828, -0.34386493215392666, -0.312708692798009, -0.1600758537065043, 0.10162362763984088, 0.20267198056686567, 0.23463105395869796, 0.23330935644194536, 0.14574150360691196, 0.0693827166155959, 0.02819738830896235, 0.010037426549532978, 0.0033448651502655693, 0.0010679192631076475, 0.0009330681938041476, 0.0024869637071002057, 0.005300627771655672, 0.009837764259090252, 0.017315713231595403, 0.0328034798387494, 0.06757926846440145, 0.10307016757685308, 0.07886520755434945, 0.023435589070841964, 0.010675825842809768, 0.0369539092033027, -0.025212510077109593, -0.09425274716398296, -0.14146474137155224, -0.14362999594932208, -0.07810104442884906, 0.013733297054243919, -0.028104172211039113, -0.12130795046126668, -0.09677864356410341, 0.0075610909495372955, 0.17149880251433702, 0.1585881464893519, 0.14427057841668328, 0.14117780757325413, 0.09568320848853959, 0.050368245258046236, 0.022581744535604197, 0.008563263246373024, 0.00288247390978503, 0.0009087058439005742, 0.0006795023939269843, 0.0017392230971753366, 0.00352028269648733, 0.006079697608666086, 0.009411587647458086, 0.017207893222046102, 0.03956181339616815, 0.07274096156837975, 0.11715230719761964, 0.16134635452319682, 0.1138767720397067, -0.013470935817069705, -0.13007808754919908, -0.18316390164842336, -0.19888589602971102, -0.22213514171143206, -0.18632228229055256, -0.06032090220820338, 0.09215091947038045, 0.17878960209090533, 0.2719528828968357, 0.2736549667771759, 0.27822537062486213, 0.15660078212658504, 0.09946798577382164, 0.07742255419114952, 0.050522139201608175, 0.028435543105318588, 0.014125734210816854, 0.005931824927725052, 0.0021638236854333685, 0.0007047833084807288, 0.00042554950609018327, 0.0010673206204725174, 0.0022332850458484984, 0.004306066743976643, 0.008024170544263734, 0.017469491618251048, 0.0383913421251687, 0.07856391005042584, 0.1768346892490665, 0.33886700066733405, 0.3697653519363034, 0.17038554239996792, -0.027309221609697478, -0.09105908783506107, -0.09365202140663982, -0.13423108252535504, -0.17487328542503489, -0.13297978451110457, 0.0055448940304885135, 0.2172945048680532, 0.5420855223959579, 0.44724139527049356, 0.31215360304820994, 0.15674452568159386, 0.08239383573638887, 0.04799779827082273, 0.025731278203732628, 0.013901706756954142, 0.0073747392975025035, 0.0034114857216289924, 0.001369304805776206, 0.0004783926670585387, 0.00024760106136904924, 0.0006320042056869617, 0.0014777701795669336, 0.003495302966017619, 0.007988456389728508, 0.017482719525658358, 0.035782022864167894, 0.0779577999885698, 0.19693524523935646, 0.45068291665771903, 0.7565647106622666, 0.6547534215376087, 0.2746497463083036, 0.15032545434815142, 0.1581072399036788, 0.07462088481139982, -0.08150636033341145, -0.14529066128246387, -0.09059963709231979, 0.04365968673691381, 0.2353734893846224, 0.2815465264942723, 0.23020486625903014, 0.13550917455797376, 0.0701618098137456, 0.03658632998842114, 0.01730111175691395, 0.007559402176582108, 0.0037371903441142072, 0.0018164707755658103, 0.0007794608738555253, 0.0002887662736267203, 0.00014911622471599123, 0.00042054976862177765, 0.0010380184658127015, 0.0026970698877694208, 0.006448552915275948, 0.013727274802896183, 0.026700980156904097, 0.058503431318405366, 0.15281164022246765, 0.37478594847020974, 0.8180855079068009, 1.3975487886217137, 0.707433881443739, 0.44196380802721313, 0.43547037022993834, 0.3066552002385254, 0.047326736876334326, -0.09202760042593264, -0.09816283169198624, -0.025790246279153554, 0.08409298929749107, 0.13574089787736376, 0.13051888083574506, 0.09065758468635876, 0.05114999085869739, 0.027335710731656894, 0.013533944012602215, 0.005527087060092804, 0.002242826420433028, 0.0010148691003994761, 0.0004414655018639102, 0.00016447649558254526, 0.0001197997988634395, 0.00028856413166114905, 0.0007221857602625014, 0.0018424234344019074, 0.004287683415517639, 0.008990808640371181, 0.017053732658940706, 0.03458073405883009, 0.08696132462448082, 0.19854209526473837, 0.3806936784971089, 0.561982412677236, 0.4542624393364727, 0.38951930345992475, 0.3878657669378173, 0.3076162589448333, 0.11272281076570097, -0.021036477121971434, -0.05609738550254523, -0.026511385067996277, 0.02955890636556092, 0.058671994294101464, 0.06231287997003974, 0.04884232953583656, 0.030516943274045034, 0.017328050065529566, 0.009414478554670057, 0.00416801537092857, 0.0016008682338487135, 0.0006399450240134131, 0.0002641618655087804, 9.721647899590082e-5, 6.236026396188542e-5, 0.00020667153317052074, 0.00047805007987490356, 0.001138783352748019, 0.002538549597475372, 0.0053362364348004555, 0.010068588450991695, 0.01900124979598964, 0.04262300227633604, 0.0891709375183155, 0.15434667756295756, 0.21295094480933663, 0.21598812342806203, 0.21724252813372716, 0.2177928975904378, 0.18117872577654043, 0.0948916387250396, 0.019099726819764826, -0.014213422077638904, -0.009177240829056165, 0.013041526074546377, 0.02458414697322832, 0.026458975971331036, 0.02225678504278485, 0.015170332288432765, 0.009373360481531517, 0.005484998736042641, 0.0026878273508752037, 0.001109223346464083, 0.00042822186081363284, 0.00017418013822434705, 5.935756187230426e-5, 4.870145576358004e-5, 0.00011894201175845535, 0.0002977886111690328, 0.0006588560394911674, 0.0014259430329658974, 0.002944701896303113, 0.005514310778679626, 0.009970518949418939, 0.01956970418638175, 0.03697246850595018, 0.05942739195613117, 0.08039778301229208, 0.09183365830294325, 0.10061075393943371, 0.1014774178369264, 0.08567390590670837, 0.054277979736087355, 0.024118862506295954, 0.004963472233737606, 0.001780440263097828, 0.007791678238182378, 0.010826952244683023, 0.010662352599346565, 0.009097669940032124, 0.006583056984984606, 0.004373216314713041, 0.0027300233398054826, 0.001467436835894361, 0.0006680873407423877, 0.00027157451997416633, 0.00011070122842442001, 3.5344098836539626e-5, 3.2813362984878936e-5, 6.929314515252906e-5, 0.00016526382652399426, 0.00035997392506770547, 0.0007507753124236722, 0.0015051683961026141, 0.0027732959020521776, 0.0049106075396318115, 0.008768750639033828, 0.01496044361635065, 0.022834247801929972, 0.030545666386906135, 0.03690459616756998, 0.04228349788477231, 0.042497640576711196, 0.0356935537708889, 0.02498608525508511, 0.015420464811533653, 0.007396841328491593, 0.004210360297637241, 0.004948556737437507, 0.0052366753187242905, 0.004506986318258449, 0.0036390584843631365, 0.002679073038512208, 0.0018416802625540617, 0.0012030801978496987, 0.0006956096354704806, 0.0003440087592222263, 0.0001618239291593176, 5.2542300125116165e-5, 3.169809623562321e-5, 5.419975610332833e-7, 5.019589185684607e-5, 8.239133359559962e-5, 0.00017707522518843879, 0.0003775901342317187, 0.0007104550739515344, 0.001288779327753815, 0.0022705741051710256, 0.003899478826238911, 0.006302077700978038, 0.009180045295809148, 0.01195531901905652, 0.014459286484421695, 0.01668868381836556, 0.016483545333446852, 0.013634525752511298, 0.010148136724561177, 0.0074377016242790335, 0.004792568171404337, 0.0031835953268808913, 0.002853283211626447, 0.0025970687676432785, 0.002054584128759063, 0.001524481938862161, 0.001097689814434333, 0.0007444644024835721, 0.0004929440220010772, 0.00029412372230351434, 0.00017005275756200352, 6.334880544019055e-5, 5.250964601922525e-5, -5.332371162892937e-6, 2.535091177547562e-5, 3.5092085653814975e-6, 4.715229231830517e-5, 8.87508984690283e-5, 0.00015765944355729565, 0.0003321375834849226, 0.0005577559919154513, 0.000987128699198972, 0.0016608519398154805, 0.002615129844444398, 0.003693679322787904, 0.004694763012450035, 0.005581089429851504, 0.006290938993285375, 0.006031149221837913, 0.004895203659969842, 0.0037963849720795756, 0.0030396573278760586, 0.0022756594765278026, 0.0016786011883321082, 0.001391781889875007, 0.001182008980000933, 0.0009193575277416774, 0.0006584538462977669, 0.0004599694733573386, 0.00030698443596901024, 0.00018800112239128456, 0.0001315333805221113, 5.8463684517531876e-5, 4.984072148818972e-5, -5.426256410321759e-6, 2.8986259759915844e-5, -1.9700434288256606e-5, 2.5536083821128157e-5, 5.4010060623969914e-6, 3.138685321890092e-5, 7.91496567245716e-5, 9.798700208102567e-5, 0.00023213046643276116, 0.00035643981771805316, 0.00059978118613017, 0.0009308123100631355, 0.0012951898970635597, 0.0016246397361342137, 0.0019142770981249876, 0.002113542842183503, 0.001986076059077604, 0.0015784171180245044, 0.0012329246045206135, 0.001022943178386943, 0.000831520746112245, 0.0006603135101901701, 0.0005353388420803974, 0.0004433915724950904, 0.0003478237433311465, 0.00025147766962115524, 0.00017351868623358347, 0.00010646400344231944, 7.698501709441576e-5, 3.282298984322161e-5, 3.4373198652480605e-5, -4.9505049374147275e-8, 2.6396735677387196e-5, -1.935093293726166e-5, -9.511613351443893, 1.078827895565531, 6.661783461810322e-5, -6.519047600708506e-5, 6.188308266826312e-5, -6.114691010333636e-5, 6.823184383746134e-5, -7.244252096739339e-5, 8.977742499352582e-5, -7.421291249476471e-5, 8.256546165246262e-5, -3.622627778090683e-5, 5.261934905920881e-5, 2.6449845787001827e-6, 2.877262332369871e-5, 2.5440722835358464e-5, 3.188310891779009e-5, 3.109231401179532e-5, 3.563729219196119e-5, 2.6259124036189933e-5, 3.1792771154862904e-5, 2.1236772449526934e-5, 2.449717028467233e-5, 1.2739470696996433e-5, 1.2322946371091115e-5, 1.0154800850381636e-5, 1.4072373141315962e-6, 8.2161408422323e-6, -1.1290974726930882e-6, 1.5302974666137765e-6, 4.5108319841473635e-6, -5.9406364603064015e-6, 9.143067161788406e-6, -9.627214576906171e-6, -6.249204938763334e-5, 5.848938774006174e-5, -5.404519466655268e-5, 5.44178042270126e-5, -5.3043852938278126e-5, 7.72834282419157e-5, -6.587238893550015e-5, 0.00010563769863132768, -3.957096280765244e-5, 9.786184978607696e-5, 1.8402241203904524e-5, 7.301531756762334e-5, 5.389933519004691e-5, 7.773262754318024e-5, 9.076944257725342e-5, 9.643215599081052e-5, 8.728128071830771e-5, 8.363510588694492e-5, 6.9978004490649e-5, 7.410839710484893e-5, 5.123585143491157e-5, 4.668711803325623e-5, 3.1532117779025853e-5, 2.218113972206462e-5, 1.7561914707727307e-5, 6.187880221407171e-6, 6.6734308147115014e-6, 6.6313504752689785e-6, -4.156575112648914e-6, 9.65167598557723e-6, -9.355388096326232e-6, 9.787368774696431e-6, 5.690982007664488e-5, -5.190443372300274e-5, 4.5966048680500535e-5, -3.591122728101424e-5, 5.386938134717421e-5, -3.75603220036668e-5, 0.00010526775506355837, -2.996064057060591e-5, 0.00014966438888342436, 5.162140287838045e-5, 0.00016468391240275098, 0.00012099496914181292, 0.0001420611192343956, 0.00017509424152071376, 0.00021504559454164598, 0.00022087450109958766, 0.000207203766911373, 0.0001831767081930785, 0.00017600860560157883, 0.00016025994386591246, 0.00013553008676733987, 0.00010040556171123076, 8.400936406447372e-5, 5.325577530797135e-5, 3.437178649760014e-5, 2.001859536450799e-5, 1.5329259249825317e-5, -6.293507599368295e-7, 1.3682611654582696e-5, -8.683940496746329e-6, 1.0340885965106616e-5, -8.721744096253902e-6, -5.646156968854848e-5, 5.1173819399395035e-5, -3.514647455682406e-5, 4.268004597268519e-5, -1.0570671120241847e-5, 8.46949126648741e-5, 1.040868358671894e-5, 0.0001934472193708486, 0.00011228427172776031, 0.00029743684931720987, 0.0002945293101977778, 0.00030594112544823546, 0.00028313503005820826, 0.00035462482087746306, 0.00043912248526127313, 0.0004533639863876227, 0.0004114668646018579, 0.0003884475994701574, 0.00040106035295509507, 0.0003796105793808297, 0.0003135655426551594, 0.0002486440125657335, 0.00017820375796918935, 0.00012222504210318235, 7.037794390012655e-5, 4.6721636861685914e-5, 1.480820434038262e-5, 2.520001001016765e-5, -7.089481432127497e-6, 1.5142761164791517e-5, -8.69444133066866e-6, 7.90836661908411e-6, 6.397105146190845e-5, -5.0593747930261746e-5, 5.2333638436141155e-5, -7.387191799936748e-6, 7.11564631819929e-5, 5.582983135018586e-5, 0.0002028637653677025, 0.0002152000415479938, 0.00042646365860786857, 0.0005679973215536266, 0.0006653878628454741, 0.0006240343485383673, 0.0005229981268525709, 0.0006246518041342255, 0.0007744826712173326, 0.0008309187334012174, 0.0007602598820418663, 0.0007786743603997641, 0.0008986080685336474, 0.0008488868701388717, 0.0007093657319000767, 0.0005465364132266567, 0.00038428788576717817, 0.00024078383081420763, 0.00014906456657611, 7.583822447721709e-5, 5.9018909393377154e-5, 8.060597242899007e-6, 2.985106418663909e-5, -8.443828971230934e-6, 1.1729805518493317e-5, -6.237550342996203e-6, -6.82562705371737e-5, 7.158120254785219e-5, -2.776014362848956e-5, 7.863827092240733e-5, 6.638165048171835e-5, 0.0001958599197335197, 0.0002904992168230174, 0.000511438136224769, 0.0008273176003401222, 0.001193813544567561, 0.0013511493745464256, 0.0011853008079055094, 0.0008810331852513489, 0.0009503231653145738, 0.0011884264375350364, 0.0014010820774849415, 0.0013284954784299277, 0.0014911728175004844, 0.0018842709255711366, 0.0017337596566269662, 0.0014417874173728571, 0.0010897329932020013, 0.0007537407849325757, 0.0004934049619448115, 0.0002861525180820694, 0.00017308783898504072, 7.465409343748565e-5, 6.92579841438781e-5, 4.83053543107054e-6, 2.5306471211254103e-5, -4.947094189219882e-6, 6.700564148234326e-6, 8.019292756335588e-5, -5.232133018682728e-5, 9.10129346486117e-5, 4.001215274899028e-5, 0.0001879002690523537, 0.00030789799795314775, 0.0005539945651947794, 0.0008759042877579257, 0.001448237295461827, 0.0021811366403809524, 0.0025131672066861684, 0.0021113942120141098, 0.001436804628089931, 0.0014887761085784742, 0.0016927650504058708, 0.0021579492879294773, 0.002160013329187471, 0.002543789997401967, 0.0035029589685497964, 0.0030774837151328425, 0.002550263517698392, 0.001986480751648068, 0.0014377665959850786, 0.0010018367198096996, 0.0005865909344482335, 0.0003253330216015909, 0.00019998099420453306, 7.47825138347804e-5, 6.212968268755716e-5, 5.8929096035653514e-6, 1.3823570372904072e-5, 4.652271284727913e-7, -6.116771969014956e-5, 8.866268755162402e-5, 3.967257211725508e-6, 0.00017720966209528577, 0.00025401580830705146, 0.0005227839808613245, 0.0008987991993216564, 0.001386074961852187, 0.0021683680745273777, 0.0033608470216803204, 0.004072257203830658, 0.003459384189369086, 0.0022525517632434942, 0.0024800027075217953, 0.0025227314287778473, 0.0028594164656526684, 0.0028700830579108253, 0.003491303086227215, 0.005210782494698897, 0.004554687716706536, 0.0040267330080792476, 0.0035146401550062278, 0.00274285868800617, 0.001961354573525727, 0.0011050021777352494, 0.0006075163321773457, 0.00032964495441370684, 0.00018122302175704852, 5.71457478569964e-5, 3.8376749600720085e-5, 1.2359392466499225e-5, 4.373986968849908e-7, 7.04864251286953e-5, -1.6770348431412294e-5, 0.00013904282886218272, 0.00017064406781364995, 0.00042718850367907756, 0.0007864890482295914, 0.0013044830109242903, 0.001984604459140317, 0.0028928602638779114, 0.004333455759087799, 0.005501513055655605, 0.004839241887425428, 0.0030650080466652777, 0.0035358941845109464, 0.003640425633715843, 0.003257119744625056, 0.0030513826511903023, 0.0037955831532247176, 0.006016764508068345, 0.005834872021522958, 0.006158971236140462, 0.006165649420653136, 0.004879002276879119, 0.0034176597117438613, 0.0018439392748359272, 0.0009668291654011095, 0.0005402542020029137, 0.00024679787822352276, 0.0001128444073386423, 4.905034013462219e-5, 1.2466244325142965e-5, 1.8060557948848984e-5, -2.3298881736233634e-5, 9.647348149528323e-5, 9.206174031891689e-5, 0.0002929968603096511, 0.0006154894481112002, 0.0011543883018104535, 0.0017814158502795947, 0.002525067409002621, 0.0035713990267735034, 0.0049931181459944365, 0.006457885286768031, 0.0059354828028818085, 0.003983881020771035, 0.004261433539578422, 0.004650758534097509, 0.0036819837647116185, 0.0027447479766706667, 0.0034001876931992634, 0.005508693806693094, 0.006264225964414401, 0.008181143758756683, 0.009173323963665016, 0.006903628726162507, 0.004741898881058234, 0.002527655198835889, 0.0013005013945723027, 0.0007404701252337686, 0.00035981358298953876, 0.0001578542162409423, 6.427685083556015e-5, 4.14579645219123e-5, -3.2790212141266064e-6, 6.375297138504114e-5, 4.400861334684264e-5, 0.00020098356550910418, 0.0003710483298888383, 0.0007770375561854402, 0.0015172548048555182, 0.002420750340915845, 0.003022102755347887, 0.0038244161878979496, 0.005375233232496834, 0.007116947110986957, 0.006821978032387389, 0.004896153041351784, 0.005005379690988111, 0.004989144801627229, 0.004495154167694408, 0.0022355676375577322, 0.00255913467445658, 0.004133133695180497, 0.005300371564040345, 0.0078907463809381, 0.009538482223311906, 0.006795786470154424, 0.0046560757733217035, 0.002687656903412138, 0.001559575975442609, 0.0009573981909824695, 0.0004917207150177532, 0.00021877664806329526, 0.00010721668057371541, 3.007483561675643e-5, 2.8946653084927172e-5, 4.244212220201694e-6, 0.00014153167789178526, 0.00022451502024565547, 0.00048705342380042757, 0.0008762072133171035, 0.001665980657003103, 0.0030076391932739414, 0.0038413456214853267, 0.003720409184358509, 0.005239565956104661, 0.007404544905606717, 0.0075430171850360776, 0.004377882828676536, 0.0053494442173128536, 0.0014243909277564808, 0.005363787684532987, 0.002057376747819412, 0.0017367277139388067, 0.0026936768085931897, 0.0036521248552053923, 0.00561789676648392, 0.006971806173371111, 0.005031749930988005, 0.003397901020753849, 0.0023022770586418576, 0.0017298134094255054, 0.0011987752951059497, 0.0006472173635002945, 0.0002911347784967873, 0.00012395527302352157, 7.111033626089089e-5, 1.2137800336462318e-5, 8.683903594632381e-5, 9.61774736921861e-5, 0.0003238017048425816, 0.0006237034373097649, 0.0010598220251162808, 0.001731342747986688, 0.0031132447395063765, 0.004236012414179134, 0.004064687508569365, 0.00494008668934175, 0.007525810747318269, 0.009395480468706896, 0.007070055628882668, 0.0036291591051852744, -0.001633654350722393, 0.008362508387403439, 0.0021251995629540713, 0.0017459420011482118, 0.0020225643410484375, 0.00264252597118982, 0.0034679242644518682, 0.004379020656621477, 0.0035034167799461633, 0.0025177918798554456, 0.001908813600272581, 0.001837590936500695, 0.0014523816807656242, 0.0008295731998264999, 0.00037714726555817846, 0.00019033346955369605, 7.723570051914984e-5, 3.97652854989674e-5, 1.7972955925159e-5, 0.00018858051836328097, 0.00037062184389094667, 0.0007766400431583546, 0.0013585542306223967, 0.0021552456572822773, 0.003335780164013664, 0.0042728713434148045, 0.0041885146436557216, 0.0047132561466617165, 0.007389677410322711, 0.012495088885273719, 0.008600405506602774, 0.005078658032372472, 0.004218728913474332, 0.005370525402526125, 0.002308659427563386, 0.0006034513298403638, 0.0014378329474462866, 0.0025757368039431958, 0.0024463273437498414, 0.0030505162193139516, 0.002667388682752248, 0.002685021233815988, 0.002473898323586277, 0.002406705114868046, 0.0019472665640969543, 0.0011249916557236727, 0.0005161242891090939, 0.0002476172092015891, 0.00012082749522815053, 3.6848069981533606e-5, 0.0001104136644438261, 0.00016742904043647855, 0.0004544547384229745, 0.0010321063473451258, 0.0019387979526684094, 0.002963724717775962, 0.004409595916655018, 0.005912371225388524, 0.005526855003490709, 0.00444664072478192, 0.004704265814568152, 0.0017153278011274714, 0.00434230608666579, 0.0034425782671117693, 0.0034071805497958084, 0.0034772330205648633, 0.0025761303158779673, -0.00011139672507405334, -0.005056384802728872, 0.0023234751178335756, 0.0026164255631277605, 0.003254100814529664, 0.00239772431421411, 0.0032427410412046963, 0.0034284139215778496, 0.003221178861193187, 0.0024522740686333186, 0.0013858896008554589, 0.0006333540035500922, 0.00028634232930028726, 0.00012578074084197458, 5.42490896959758e-5, 3.654773934437702e-5, 0.0002451676463651601, 0.0005505109464527141, 0.0013879850748265924, 0.002840512831375365, 0.004471366134360499, 0.006249129084200083, 0.008834012994575058, 0.007953971818737691, 0.005646627937031841, 0.004926844226872848, 0.006341817841803607, 0.0034277928877577066, 0.002835730706910863, 0.0027999408815146364, 0.0028123043834794577, 0.0036645584213679354, 0.0071388760500226064, 0.0061853742916920034, 0.003766213066262801, 0.0035522988449289378, 0.003536076440105734, 0.0030999120026524206, 0.003823763534230355, 0.003851222631450713, 0.0032970164884088735, 0.0023838002751298735, 0.0013872436087334543, 0.0006673780669385381, 0.0002875621468390015, 0.00012816386106582095, 3.999115792117593e-5, 0.00012250325552302832, 0.00021081730766651187, 0.0005771360712050528, 0.0015009536214753128, 0.003276500348584372, 0.005642317868556481, 0.007634638937027929, 0.010216330836272226, 0.008134329307210633, 0.005101142418698503, 0.00339448778375498, 0.004404540298827711, 0.002696210280533333, 0.002635858861604905, 0.002573832577901408, 0.002415498531690066, 0.002826887781702654, 0.0046556926698065795, 0.003338756029591087, 0.0035511337832526122, 0.0036646397642494015, 0.00317159209990807, 0.0035847678001711893, 0.004152691324402517, 0.004032483112104968, 0.00304744247478441, 0.002052307270173214, 0.0012307731259799293, 0.0006593456691004396, 0.0003217833872466287, 0.00012946136937369842, 5.7799329768529236e-5, 4.945114080065785e-5, 0.00022329143672519323, 0.0004990891814078439, 0.0012262668524285292, 0.002658000264056406, 0.0048297798360339905, 0.0067505100013133855, 0.006810121040931387, 0.005320045998939057, 0.003928370115719823, 0.003391472666313707, 0.0030705928736017153, 0.0018987445652764853, 0.0024907385074962544, 0.0025115788717690398, 0.0022945212898559265, 0.0011547337380719434, 0.003307067186153148, 0.0032420234458336796, 0.00364713386891894, 0.00387238352746979, 0.003696163808695098, 0.005861193590926119, 0.006197017912111791, 0.006510874051928247, 0.004777903865620723, 0.0025862552776343096, 0.0013039455388397538, 0.0006856200326211783, 0.00034065241074785103, 0.00016656779273869192, 3.658621946808817e-5, 8.244776560497031e-5, 0.0001501104088534634, 0.0003969262475033991, 0.0008573420815690826, 0.001697056443570413, 0.003218411282555831, 0.005444036163062182, 0.006924571324829368, 0.0054301172437154375, 0.0037089781765386187, 0.003421418849195655, 0.001806965191378892, 0.001294720239206034, 0.0026520373174256664, 0.002756415547003172, 0.0024608222652465414, 0.0005240427329147972, 0.0032584185181978448, 0.003544785786397456, 0.003956021100637585, 0.004354065523477343, 0.00451177683838926, 0.007154303028880579, 0.007432098898401614, 0.007392735117939592, 0.005997366910896483, 0.003176259747381999, 0.0015054380751003044, 0.0007381440223655241, 0.000348281708646215, 0.00013046459304282348, 6.916228398968775e-5, 3.4577900487267886e-5, 0.00013859888543143727, 0.00029079005183917545, 0.0006066567236122949, 0.0011444158745497967, 0.0020973974437165474, 0.0037627270726160447, 0.005698961272135128, 0.005404012080937333, 0.004029761019424509, 0.004843453159865893, 0.006567057212187764, 0.004138746746573349, 0.003635672663369628, 0.0031751711331842194, 0.002819683365795421, 0.002616010205318004, 0.003149435931699736, 0.0036425982549347555, 0.004012514981553688, 0.004614000223075444, 0.004940690173795679, 0.007541383667766774, 0.007006851667528583, 0.006264298795636014, 0.005369928003990363, 0.0030161776445626564, 0.0014744634233101782, 0.0007252489565283548, 0.0003220230715538537, 0.00014072113068858762, 3.0413398801909236e-5, 3.682622935739445e-5, 8.872237745058015e-5, 0.000203112871458175, 0.0004153698214271619, 0.0007715976187982178, 0.0013395920594310303, 0.00243173216678163, 0.003986150480773559, 0.0046771846575668005, 0.0045888934991963025, 0.004823941356717373, 0.004613307355717162, 0.002869843269532451, 0.002421852361979178, 0.0025114994571249607, 0.002203130896443753, 0.0031183070387979413, 0.003105288304389309, 0.003519314698880051, 0.004227962431210019, 0.005026203551109855, 0.004962749276222253, 0.006964622600525272, 0.005562860603756187, 0.004632482874601809, 0.003853754022422313, 0.002270894725490083, 0.0011724673913499403, 0.0005953717267711164, 0.0002816475316389153, 9.460773281339792e-5, 4.923240712276946e-5, 2.9092399655457774e-5, 5.7710902271239075e-5, 0.00013875371838031528, 0.00027381556246901945, 0.0004994747705257182, 0.0009120163309801177, 0.0017772139840656282, 0.002896408004380734, 0.004284851634201826, 0.005508579960881514, 0.004891438660889217, 0.0034472548332748765, 0.0021637718509756186, 0.0018067490420160866, 0.0025013457630509647, 0.0028072599354710026, 0.003271593857016582, 0.0034235989728595585, 0.004335709604849332, 0.006114457109285234, 0.0068863472519987284, 0.004774949818702671, 0.005383328949586484, 0.003688876238457888, 0.003007929770776221, 0.002369805404328158, 0.0014188300503348847, 0.0007739258102971762, 0.0004125632688068685, 0.00018875348248494897, 8.893008967376141e-5, 1.6634439194111215e-5, 4.739212578436431e-6, 4.818256555308541e-5, 8.672772073638824e-5, 0.0001838941186332022, 0.0003538518691724088, 0.000712039263874601, 0.0014277188193262623, 0.0025676557886861683, 0.004809024838392506, 0.007519981382472163, 0.006751609862726487, 0.003656653634288194, 0.002152370797731099, 0.0022706510220975155, 0.00351217939056692, 0.004234581264690412, 0.003775084397613618, 0.003390609788224154, 0.00436221023737932, 0.0058261742065842444, 0.00680021784199994, 0.0039625825346899235, 0.003436357513095298, 0.0022514150338759802, 0.0017910518406136933, 0.0013352421804882888, 0.000784068913435889, 0.00044714733163442273, 0.00024812442231481204, 0.00012585613101609325, 4.752371274882437e-5, 2.3650559999624084e-5, 2.2686832722111415e-5, 1.8766904340928446e-5, 5.928351066375448e-5, 0.00013739982666214303, 0.00026257003573138937, 0.0005533776302689651, 0.0011139188882441581, 0.0022755007508937237, 0.004922814617474709, 0.008844424498590334, 0.009960772052372368, 0.0033722786379584576, 0.002395694354052625, 0.003172644644507409, 0.005417144225075999, 0.006425089463982641, 0.004490673913736787, 0.00317138213738724, 0.003720077450357563, 0.00429684720583483, 0.004154920584409702, 0.002893231632573606, 0.0024877224697271365, 0.0017754227340072725, 0.0011499089029811695, 0.00076899899537509, 0.0004507143788896792, 0.0002479750089119627, 0.00014574250569903118, 7.231968966725044e-5, 3.3366004964213995e-5, 1.0255396981308441e-5, -3.2399830761340382e-6, 2.203668113773644e-5, 4.343092706505743e-5, 7.71481311733584e-5, 0.00020939023392853344, 0.0003782538715399405, 0.0007640460937261248, 0.0016167593649532002, 0.0035411566058225585, 0.006210728483754752, 0.006519257751738854, -0.00956769934064594, 0.0018269673391747533, 0.004156105039504366, 0.0070329818441212276, 0.008225976170320748, 0.005022579564675817, 0.0030330507545128322, 0.003168381464755188, 0.003483694205859137, 0.003227015679262065, 0.002195900175809166, 0.0017839257278411175, 0.001336909181396967, 0.0007796592570112905, 0.00046470338286245345, 0.00028338375675396495, 0.00014626810540804608, 8.385467039504411e-5, 4.309041910436132e-5, 1.909037639806441e-5, 8.333594399984992e-6, 1.0138117644430893e-5, 1.1151249357181307e-5, 1.6655923452126503e-5, 7.215298759436136e-5, 0.00010152466330774631, 0.00027023657272387633, 0.00047194669546952756, 0.000924553682259979, 0.001932502221884954, 0.003124767572110637, 0.003112635253510326, 0.00029215005057573476, 0.002775205510091508, 0.004407190206473115, 0.005996619303090477, 0.006638334656573724, 0.0043397903100179935, 0.0026308729334050375, 0.002460021205997546, 0.002556010541240677, 0.002257295715180703, 0.0014664858761123127, 0.0011182606513229951, 0.0008609830916517936, 0.0005085092143690361, 0.0002804924962994038, 0.00017189080728964974, 9.72318506962908e-5, 4.5749419058954474e-5, 2.3780512635835616e-5, 1.3032648730363828e-5, 2.9770810911480723e-6, 1.225436778946574e-6, 3.002340648576496e-6, 2.5777420847185098e-5, 1.6286758394625006e-5, 9.128061930944546e-5, 0.00013048348805739504, 0.000294011581126022, 0.0004825533518103307, 0.0009122684506159337, 0.0013937982315986072, 0.0014562429880136303, 0.0010900643996869298, 0.0020146156815866473, 0.00306876891837874, 0.0038525424954652288, 0.003928510659306311, 0.002803577283096238, 0.0018469175987910918, 0.001586321688822775, 0.0015514532112965184, 0.0013262225655770365, 0.0008556438554913611, 0.000617908422574449, 0.00048408246119074086, 0.00029481309422372854, 0.00015848427049927063, 0.0001086770601145665, 4.9509870820891745e-5, 2.8179009644028288e-5, 1.531770785320213e-5, 3.393085730884705e-6, 6.218831256203819e-6, 3.9576525516541743e-7, 9.304749939742773e-6, -3.7541723711542102e-6, 3.488177735263908e-5, 2.2579054438485765e-5, 9.620842130440498e-5, 0.00014283553357054765, 0.0002404282635420334, 0.0003975754422203216, 0.0005742055377651439, 0.0006447289983443696, 0.0006954201087049784, 0.0011301831719651024, 0.0017129157957112282, 0.002092048499519043, 0.0019989125119751214, 0.0014874109007429737, 0.0010617255015046973, 0.0008567168657898306, 0.0007817892755200215, 0.0006659139991722685, 0.00044428801951103264, 0.0003116745588820175, 0.00023628260128274632, 0.000164032506796442, 9.093885529963413e-5, 4.4933426894136765e-5, 3.501495791165957e-5, 1.4828443720841917e-5, 2.0694723408292168e-6, 9.832178054664603e-6, -5.745099032905256e-6, 2.2609638005405095e-6, -5.4571971760870055e-6, 1.5674483527564697e-5, -4.453742651440662e-6, 3.291545956812059e-5, 3.4299842141875886e-5, 7.032072486215781e-5, 0.00011967932971009885, 0.0001544088053874283, 0.0002358658805842667, 0.0002783441928796393, 0.00035731547877477295, 0.0005454747000751284, 0.0008230724420619087, 0.0009880891543976949, 0.000924573036367781, 0.0007073677453843177, 0.0005333196243777919, 0.0004117783564643004, 0.00035511556160883813, 0.00030232774694659363, 0.00021699468518549157, 0.00013151198086187754, 0.0001443171884096057, 5.45476539033336e-5, 5.222116150136511e-5, 2.936656487499532e-5, 1.1726786082209866e-5, 2.876579981342545e-6, 1.2475238758547589e-5, -1.0846077163580163e-5, 1.3415842343317262e-5, -2.4719123701369404e-6, 6.211712054141175e-6, -8.944063612696614e-6, 1.4790408282713108e-5, 3.823170054320855e-6, 1.9167006123131978e-5, 3.799549518151384e-5, 3.673511794271593e-5, 8.59271946258325e-5, 8.74784632770911e-5, 0.00014697705811002982, 0.00015734766415069593, 0.0002500769294588095, 0.0003369073318927149, 0.0004291961683972112, 0.00038653786274032206, 0.00031566373955125866, 0.00025143110327077674, 0.0001855032845849602, 0.00015498054978887584, 0.000126584947784163, 8.995532801807156e-5, 9.007213057132621e-5, 1.4226558644315292e-5, 6.368052497441562e-5, 6.782398261890501e-6, 1.690510159751385e-5, 3.1284611089856598e-6, 1.1826809596530507e-5, -1.4863476848843153e-5, 1.9278389450015267e-5, -1.9619739380815077e-5, 9.096732440910144e-7, -6.010810747222305e-6, 8.502092039503976e-6, -5.004104594928606e-6, 6.535834248523787e-6, 1.3025263313631922e-5, 3.315923422275961e-6, 3.3816212840683334e-5, 1.602066336563673e-5, 5.805065207779194e-5, 4.6460906206876275e-5, 9.005871752642251e-5, 8.246029217662737e-5, 0.00015157692507157346, 0.00014123603891335874, 0.00016277349772512618, 0.00013037328705917985, 9.852410800333157e-5, 0.00010212785119962853, 4.8613149079715956e-5, 6.221927833465248e-5, 4.4620495795962936e-5, 9.96830744167727e-6, 5.180076153763616e-5, -1.5298727650041446e-5, 3.039226625945909e-5, -5.0741918923976145e-6, 1.1565089255999342e-5, -1.317306970559419e-5, 2.0841697699539465e-5, -2.4695055548472384e-5, 2.5638511443120033e-5, -1.5499208580054e-6, 4.1206478469792464e-6, -7.061087082766407e-6, 5.571198293278256e-6, 2.547123630520995e-6, -3.037186701024931e-6, 1.6524150014491924e-5, -6.354216845348017e-6, 2.5070299963976966e-5, 2.819723723494255e-6, 3.478600583266621e-5, 1.4392108972245392e-5, 4.968340961609478e-5, 2.9924525470856016e-5, 6.626637844188232e-5, 4.035089996495543e-5, 4.632979983475337e-5, 4.9784599398233335e-5, 1.3884150020366563e-5, 4.298428288658501e-5, 6.887064948596848e-6, 1.251253190516214e-5, 2.8073876788776654e-5, -2.008230623521669e-5, 3.547005945455086e-5, -1.848070117471431e-5, 1.6256109828617553e-5, -1.101917737209585e-5, 1.683154974478456e-5, -2.32143883967311e-5, 2.7255632156288493e-5, -2.8607600493605997e-5, -9.617959824030434, 2.197925305332292, -0.0016461707704969, -2.0468584775044107e-5, -4.232497981959511e-5, 5.9670855599884564e-5, -9.415893257553804e-5, -0.00016243531871279753, 1.8760877431813797e-5, -9.456187577944681e-5, -9.644259555132997e-5, -0.0001370469075152672, -3.4215245851963906e-5, -0.00033649242147192206, -0.00021637717014093605, 6.276411281020107e-5, -0.0002928624128849957, -0.00038134955533476614, -0.0001624345221121808, 0.0003770242445795766, -0.0004204265682209811, -0.00029538049909784105, 0.0004359295362512013, -0.00026965029870470254, -0.00010771230063657676, 0.00042670493459407853, -4.280176243880496e-6, -0.00030890134369037167, 0.0009155836439286617, 0.0010005663522017075, 4.490024353463006e-5, -0.00033272686141725305, 0.0009026811436057247, 9.091750728324839e-5, -0.0012860563820900604, 0.0008895057228218049, -4.960612341201399e-5, -0.0009883738556628182, -4.655658690897535e-5, -0.0010030153680513356, 0.0010486386439334018, -0.0017614455709675163, -0.00016879988341107402, 0.0013718896674787913, 0.0003439994120049616, -2.810732038756162e-5, 0.001646202595553575, 0.0015897199493176935, -0.00013505953843081397, 0.0010724061027092575, 7.605775833295391e-5, -0.0005667066106428897, 0.002307763058033552, -0.0018978551248777916, -0.0006104686086140649, 0.0018852852353109237, -0.002477877543862917, -3.0129793806779114e-5, -0.0017054195798140086, -0.0009568279399256293, 0.00015529270565129701, -0.0008659188104037293, 0.00010577069576716515, 0.0004418154481125577, -0.0011595762073108502, 0.0006636356625823215, 0.0006297669953423718, 0.0009784099450732304, 0.00041587351428950446, 0.00030288930533390224, 0.0008457294020771859, -5.8275312021616884e-5, 0.0006777773589607459, 4.0204231153427254e-5, -0.00036755298358864873, 0.00012016879386352398, -0.00029451337316913214, 2.2274614160887532e-5, 1.2753240252350612e-5, -0.00042293196666347586, 0.00011501716641765682, -0.0002587852690303209, 8.50656207087168e-6, 0.0004020772179602159, -0.00045077323412301363, 0.00048671185529831863, 0.0001748118774068207, -0.00017475662188657685, -0.0003345851067603518, -0.0003560275844379477, 4.969213190972629e-5, -0.0001053840667611813, -5.517043319154435e-5, 7.945407215187531e-5, -0.00014483614230596196, -1.328340600561723e-6, 2.6902978031712788e-5, -2.111488312389924e-5, -8.302167203655023e-5, -9.859549725869645e-6, -0.00012691786311024467, 9.428401002967882e-5, 3.136588661078655e-5, -0.00017936047022683196, 0.00010524359998678186, -8.169338355197504e-5, -0.00016272601646240802, -9.250059746144017e-5, 6.644405498529118e-5, -0.0006553502763529178, -0.00038101593047220206, -4.029824293697536e-5, -0.0008578984687879193, -6.132138173108305e-5, -0.0003524257257692524, -9.865719022500934e-5, -0.0005746010156837974, -0.0003176711679333339, 0.00034972330270637535, -0.00025515468245956933, -0.00023172840997837108, 0.0006520850176757712, -8.688678971365919e-5, -6.036268153593057e-5, 0.0007568133838527474, 0.0005207258302056565, 0.0004599413961057877, -0.00021345221619420977, 0.001491591352915651, 0.0013279999350896898, -0.002450877213845324, 0.002327571802564257, 0.0006194429627297739, -0.001985853460507599, -0.0002466214757606229, -0.0013629817237802418, 0.002488873004443107, -0.002819910904632318, -0.0009253920451558218, 0.0027864751414562144, 0.0007499653068849747, -0.0012657263181191588, 0.0033387520351380933, 0.0026675534470784056, -0.0013887175126028632, 0.0027985616111855533, 0.001187163766342591, -0.001216474796266124, 0.002362691296805425, -0.0009669768745255805, -0.0012396210050066585, 0.0017073450741234442, -0.002078910135065935, -0.0006201384603255871, -0.0028863295405900527, -0.001871171523351695, 0.00011287873368314717, -0.0015964377906925143, 0.00021634311794465556, 0.0005801626641145905, -0.002277972937791056, 0.0007621683608469218, 0.0008908545840780229, 0.001961614875248987, -0.0006373462196296207, 0.0008775738553516672, 0.0018473779291520377, -0.0012527079066914188, 0.0009554806383099257, -5.773354342281773e-5, -0.0005631434914528873, 0.00036419274919287034, -0.000356252966019028, 9.311220786423326e-5, 0.00030729226118129553, -0.00034364142502051395, 0.00036445674548946197, 9.510892547911347e-5, 0.0004304618233465479, 0.000956124436781975, -4.263230356503302e-5, 0.001009129431038363, 0.00029785601573218367, -0.00025166301046379504, 0.00037508854397363457, -0.00026298578871893134, -0.0001443853733255664, -0.0002805890224927846, -1.7686624972401108e-5, -0.00026169020155433016, -0.00017908936602749738, -9.005936719760575e-6, -8.257472699730053e-5, -0.00015237978942767556, 7.697525528153796e-5, 0.00019838537976888876, 9.120230143276645e-5, -6.407243691152487e-5, 0.00019494982428571784, 0.00012211843805622432, 2.496022167378865e-5, 0.0001048168082817468, -0.00023816760289886783, -0.00012867667832197922, -0.00042927098046417284, -0.0009348665778542926, -0.0009800592888708068, -0.00030630667005954735, -0.0011562456482527806, -0.00040144283667307713, -0.0006471160563394669, -0.00042080092588304865, -0.00029349799452028875, -0.0009907754473903992, -3.903538872170426e-5, -0.0003444088357722998, -0.0019442641773233056, 0.0012155237683269071, -7.735486482198175e-5, 0.00011901687467756002, 0.00236907288222328, 0.0028625470102958497, 0.0019377309596929418, -0.0004942096254123823, 0.002145356453716195, 0.002398022776892921, -0.0020483129097797798, 0.0012824787299694966, 0.002575047535421515, -0.0029656927019458116, -0.0008636047409324838, -0.0004534004132554644, 0.0032147655631764097, -0.004709546034287747, -0.0016547657837752971, 0.004075387724329146, 0.0007128418712578893, -0.0018166899544625748, 0.004008284984967801, 0.0021744426924262925, -0.0024231641856034217, 0.004226837617795032, 0.0018982001313437855, -0.0031637924354034055, 0.004304944458496491, -0.0003872052586818181, -0.0034392113208622454, 0.0027887720675504914, -0.002288372871842864, -0.002382714434986363, -0.003448490347572527, -0.0008443226605232404, -0.000733673949404232, -0.004530932357708791, 0.0015977918736834267, -0.0012638586852122752, -0.00373111953962923, 0.002288737134451976, -0.0006780913267682411, 0.0030365938426372536, -0.002482275117091897, 0.0008684804690288251, 0.0025065059230750916, -0.003363621967911278, 0.0024936766778111937, -0.00014505359847898303, -0.0023350485511855934, 0.0015280892118857588, -0.0009244524131094818, 0.00035104002578434824, 0.000721365008356391, -0.00037702093788265673, 0.0008219509531488488, 0.0001202849822430756, 0.00040709271845559033, 0.0004277290743168966, 9.698914588085182e-5, 0.0012126658045810718, 0.00017923636222127187, -0.00013703325494138208, 0.0002067825127270382, -0.0002098058032058448, -0.0002759505664041602, -0.0007776337866342529, 0.00018042350588262746, -1.0015269699587151e-5, -0.00020635888196791671, -5.579413377840449e-5, -0.00013784908541197396, -0.00012084551251396436, -0.0001394095259292555, 5.667472810039808e-5, 0.0002697125285401581, 6.1302294998681e-5, 0.0005554964278976907, 5.327698169228483e-5, 8.834277208655158e-5, 0.0005684597405971035, -0.00035400535176416945, -0.0002614518843409747, 0.0001908478392047591, -0.00029057852503885164, -0.00047246348330694135, -0.00024696110015788055, -0.00018550231531366183, -0.0004137205575651618, -0.0010722598347759431, -0.0003117541784351029, -0.00026561325664541173, -0.0019364741411544535, -0.0004488297332470463, 0.00015123316787774151, -0.004009134446280247, -0.0019731181394506384, 0.002293455740170952, 0.00036506607475842877, -0.002583073578382632, 0.0038502853332550973, 0.003962163128708237, -0.002642553770937794, 0.0024674451317799285, 0.004678256677466983, -0.003153667389752929, 0.0004737922311798986, 0.004355827698096393, -0.0030362738352422286, -0.00204128320337707, 0.0013823422673631116, 0.003240292458826719, -0.005572152460263063, -0.002520870876089121, 0.006592710048327537, 0.0006701816065603989, -0.002721097616050306, 0.006658200377731087, 0.0021460881328008927, -0.0031287441980702786, 0.006950887614030978, 0.0019313637591634992, -0.0045553385548766255, 0.006642231000605654, 0.00039558384814590916, -0.009220977304683563, 0.0021299627181705144, -0.0004075209162829504, -0.005053369632989216, -0.004345381683897036, 0.002278256932412493, -0.003201930986375267, -0.003441650306077305, 0.00405693969736435, -0.003750941151754542, 0.0013485984018476156, 0.0033897677892919253, -0.002083247214027921, 0.004009232034193793, -0.0020645204478925757, 5.912746056602511e-5, 0.002881129338136909, -0.00456526583599818, 0.003482427410651491, -7.352608416099183e-5, -0.004631453187988167, 0.0035412007022011683, -0.0020676986815673054, 0.000684358744794318, 0.0022009672568158406, -0.00045042971042019085, 0.0024828776531626243, 0.00012002835191984329, 0.000844459794073082, 0.0006967595113257868, -0.0001963528671273118, 0.0005336935363859377, -0.00024000599661009429, -8.402455889893891e-5, 0.00029948533421896554, -0.0006063753172593314, 6.252559265979617e-5, -0.00043399627482661803, -0.00021242425428537098, 9.947197490677831e-5, -0.00028433303953242107, 2.405139106285323e-5, -4.0412058752422786e-5, -7.011123115711318e-5, 0.0003446579557858914, 0.00010019496041441973, 0.00035173836218919686, 8.625124437936356e-5, 0.0004989678550924767, 0.00014762695040236237, -4.706015470389063e-5, 0.0006343510715791529, -0.00015369688488110148, -0.00021804769288058968, 0.000468255345760072, -0.00017134300469057035, -0.0007398710312840341, -0.0002370235794765771, 0.00021265506801686521, -0.0010612502892581547, -0.0024104744425846683, 0.0008051011270869784, -0.0010330329966230331, -0.0031969951655604527, 1.352284774272102e-5, 0.0007996352509352849, -0.0033309828122299132, -0.0022830330824228384, 0.0031750226492775696, 8.471123590332804e-5, -0.004892549762509369, 0.0045011357634154444, 0.004198051649501087, -0.0058658062506834995, 0.00280455033523126, 0.006359651100331762, -0.0057698463981009805, -0.00048390881124418323, 0.006298745417654968, -0.004445506955544595, -0.003943563818181123, 0.0037274747662686936, 0.0035804994849834085, -0.008011868020928273, -0.0032274878132563627, 0.009507114408092252, 0.0008072091211095355, -0.002987060719088393, 0.01036795385420115, 0.0012397439353614844, -0.002391635338442598, 0.010815144806909064, -0.00040218917695102453, -0.004869650908789074, 0.009986721376879693, -0.0013962862403565617, -0.010730311892718001, -0.0033855006940297053, 0.002658840287848504, -0.0065728041488366295, -0.005714296837113552, 0.005140386294427668, -0.0054737952102329865, -0.0012139343139049498, 0.00661217649141182, -0.004309423802333888, 0.004466925412534381, 0.00386019200396048, -0.0029682930550913957, 0.005459198671926056, -0.0014417237969457308, -0.000891079174742487, 0.002567821223279209, -0.00453311942842751, 0.0016284374774940306, -0.0006792327505567027, -0.004414505811498571, 0.004168470104140232, -0.0029947694523752215, 0.0006483141359137853, 0.002000988121305695, 0.0002710441961804595, 0.0038627029891737225, -0.0002037249855850083, 0.0018750453705567393, 0.0008899830198520211, 2.507584432748966e-6, 0.0008027151252468864, -0.000950253732778857, 0.0003411687319496631, 8.314566188779623e-5, -0.0006842139812761471, 0.0004898806103141706, -0.0004836960430578709, 0.00014101390392066691, 0.0002987296589883845, -7.598156799899817e-5, 0.00018715966129433808, 0.00044092564804274175, -0.00013260020648467856, 0.0005299309651413923, 0.0002875324447776834, 0.0003013727625049114, -2.133075104914414e-5, 0.0005748807609281457, 3.669037399746094e-5, -5.271540980314459e-5, 0.0010371994349842575, -0.00029022352881403454, -0.0002877497371880858, 0.0013782803734215196, -0.0002609076873190906, -0.0014850012089542078, -9.886372799053894e-5, 0.0017714556181912197, -0.0033635673795918515, -0.0021757413091409044, 0.002315830709916975, -0.0019371071480061201, -0.003684187585027572, 0.0020747099734190846, 0.00033166050102246744, -0.0037933491904466317, -0.0010740130136812534, 0.004397200782315674, -0.0001733813104005388, -0.005826985939571549, 0.006114621902841309, 0.0034308820610349233, -0.008752068374057143, 0.004067179682739621, 0.005901459333715652, -0.009697477243894661, -0.0007442057149381685, 0.006635339306486858, -0.007964874395868241, -0.0061349146036018005, 0.00703327116130443, 8.678270087470538e-5, -0.010891604536011453, -0.0022654383134709413, 0.012957346076517306, 0.003786927013832369, -0.00014048463506258172, 0.014322503159389587, -0.0016707819097581537, 0.0018616832570587949, 0.014032369579707427, -0.0075943052494605034, -0.0005026309421919541, 0.011510612431666298, -0.010357508757349764, -0.009071992211526431, -0.011169452765645118, 0.003290544819249337, -0.008022465220396659, -0.00944171663787579, 0.00785471463292888, -0.007896534132632851, -0.0004916322125324327, 0.00962194923515538, -0.005624404838704636, 0.007666329211614749, 0.004764108087761524, -0.004118251629906039, 0.007641616762491789, -0.0016977050010792128, -0.002144679552132747, 0.0016647547895921936, -0.006174692018042559, -7.456784467343571e-5, -0.0030882656827022474, -0.0037092934520761454, 0.00040908538656374396, -0.0048741385973479255, 0.0017360968471835485, -0.0007686239141067997, 0.0019615679772372035, 0.003645635726905937, -0.0001250527188878577, 0.001464673212719621, -3.8167795617758296e-5, 0.0010037157039496792, 0.0020222164667943283, -0.0024499980542263163, 0.0006174576007728763, 0.00013974675854361768, -0.0004754082771939705, 0.000570407458443013, 9.528462259686204e-5, 1.941805085974407e-5, 0.0003263117159066892, 0.00014347023918770708, 0.00019996920925605707, 0.00044416106802023353, 0.0008061169108062613, 0.00048336042754607505, 0.0004003638915195079, -0.00029113237393005943, 4.7063720492566135e-5, 0.0006649041248053124, -0.00012615816695301697, -7.437967677871116e-5, 0.0010801920241300463, -0.0003253675858297189, -0.0002990073958895931, 0.0027270187888162006, -0.0011845485469906434, -0.0024929272891086604, 0.0001947679971076842, 0.0009938992653742717, -0.003632739482585381, -0.0026710863151820008, 0.003389049654350906, -0.0038257901340119096, -0.004303853983306274, 0.004796220143518831, -0.0011517607229519205, -0.00484357361846733, 0.00296343012210187, 0.005529418886213922, -0.0001133390002957102, -0.005692073356300159, 0.009351009010697452, 0.003202191669003467, -0.011411034272733876, 0.006533847260807628, 0.004668161865501663, -0.014051013089677567, -8.502355652310237e-5, 0.004870003222471341, -0.01347870045029264, -0.008008861278393535, 0.008651185317398271, -0.013757158833509364, -0.007337562535747554, 0.00644947875995897, 0.0027305718925251447, 0.019314238045041742, 0.014879996704862928, 0.012417364385695753, -0.008430362750274164, 0.007661928605613766, 0.011537076752161979, -0.015905729975867033, 0.004551722103231417, 0.00837507535718872, -0.017461268101636927, -0.0075346470166535486, -0.018816778364766067, 0.002950725051874411, -0.008922045104247241, -0.015928395746351277, 0.010616334466459399, -0.011903553971743109, -0.0029531943636163607, 0.013612889207815932, -0.008763042906246677, 0.012287053400797186, 0.004354228984549512, -0.006040734290409408, 0.010574910151639898, -0.005490089073740294, -0.0023848134024070412, -0.0037229449207842264, -0.009277799313652765, -0.000361843183574246, -0.007734929721101731, -0.0018926886994559682, -0.0017316586525208478, -0.005173010204799441, 0.00399749574694018, -0.001695730865863946, 0.0031441899368390897, 0.002329883796801119, -0.0002166496419103518, 0.002804403784662499, -0.00031698039364240434, 0.0012565114934138784, 0.0026746370607221757, -0.0016583760658159651, 0.0019855605370058776, 0.0011332053143915113, -0.000956503284885223, 0.0008394998462959995, 0.0005269765126251966, 0.00031919295802039846, 5.285613382521385e-6, 0.0005461874562485789, 0.0003601808965925312, -0.00032436232152705706, 0.0006666171090119328, 9.059025025593533e-5, 0.00041071530402623336, -0.00042767928543509666, 9.461897133897286e-5, 0.0008458496761285762, -6.928559977020313e-5, -4.70930179843907e-5, 0.00218446274324162, -0.0009015295282751611, -0.0006687568132465148, 0.001449299554639699, -0.0016384070514527218, -0.0016538051222025623, -0.000255725945512519, -0.0015745126385302674, -0.004273271582470229, -0.003384232162212738, 0.002224915400176544, -0.005801693371792038, -0.004992608181412728, 0.006476624074802179, -0.0036016615636733054, -0.004588205265210401, 0.008874861864516083, 0.0036916021421358955, 0.001236404742808952, -0.001817658894226195, 0.013902623659510848, 0.004868759409715621, -0.013738082536363374, 0.01037011655206469, 0.004943030786531045, -0.018970308970549927, 0.0010022062856441425, 0.003425223979046784, -0.018657359958700652, -0.009891030379768457, 0.00663493777787199, -0.024219624443033192, 4.716536806854488e-5, 0.009802218765168342, -0.013263807491985092, 0.023279668757184603, 0.02117496832771656, -0.016770532121521287, -0.0027399345401475273, 0.01133962822203098, 0.00478911697806575, -0.022002778128341095, 0.0067677838863682395, 0.0074962181124952456, -0.022549907340975676, -0.004933883906561323, -0.02582655792641336, 0.0036352426729515637, -0.008329649198013968, -0.02369738962868801, 0.012689755500547387, -0.0170730353793579, -0.011952875839450627, 0.014006067650178929, -0.01545530905926948, 0.015157135956047075, -0.004641191619956222, -0.006116227884390699, 0.007626400794385186, -0.015839861373876614, 0.0013005375692629534, -0.01092464925357259, -0.009169758912576733, 0.0015962111533855982, -0.010488097719833674, 0.0009545807541214015, -0.0010526600405158875, -0.005884082795376307, 0.006929640965197496, -0.0024941333136593827, 0.005028860206422569, 0.002695055939398157, -0.0009066699705085723, 0.005282495444236755, -0.0009018618601607748, 0.0009948024929056856, 0.004213632685934319, -0.0019436365856266395, 0.0034806041330513416, 0.0027187283910912957, -0.000856206195747516, 8.919375339548193e-5, -0.00020897824180161456, 0.0013782536238030824, -0.0007369675253102869, 0.00032314973517428886, 0.0003780895515586567, -0.00019180065412419307, 0.0003519117273653172, 1.148987731830144e-6, 0.0007189356128261112, 0.0003422099938596035, 0.00022969834151320795, 0.0016904155005575976, 0.001003490375785958, -0.00034059023815387937, 0.0033839039279463705, -0.0007389654289823133, -0.0018858963717821374, 0.0013032050355515135, -0.0034128130736478797, -0.0021980892508340977, -0.0008282302598089319, -0.004062047364087141, -0.0031709244782311147, -0.0038803918130719214, -0.0023885978750269915, -0.005717725095637893, -0.0070823607313206674, 0.005395993604011237, -0.0068814389593904466, -0.004425968521631519, 0.013485154579980299, 0.0005790343031656715, 0.005386871686274941, 0.00884014049124244, 0.015710143056786505, 0.011607376494963132, -0.013432292464709828, 0.014544050718465736, 0.009825374672191238, -0.023370967192402725, 0.0010095391436395636, 0.007060342554270345, -0.022722479100625376, -0.013800310780250161, 0.012255707802944462, -0.026908218026556383, -0.0045848435506511956, 0.007024297889127405, -0.01851266743694927, 0.030156688591376102, 0.01036887981419317, -0.0322265086244236, 0.007474260398576949, 0.011270664960645802, -0.008716027666686483, -0.027591818581233565, 0.0069331788340534824, 0.009338144680636389, -0.027798841347318196, -0.0010527978298447511, -0.030187040654438082, 0.008163834982176129, -0.006346494993232284, -0.029494690824885147, 0.013507497613714376, -0.019791530714696002, -0.022205012671240778, 0.005675748306036846, -0.017773134742518636, 0.007102976870381107, -0.02022726935771953, -0.00375992029694691, 0.0012702119285088846, -0.02459285956138432, 0.006644791430662857, -0.015240139052829726, -0.010282066702416541, 0.005589200299006272, -0.014356931712845428, 0.004040873207810806, 0.0005200392508335559, -0.007053007975107441, 0.01031163750121297, -0.004562055483410852, 0.00637426756203964, 0.0029739107795192597, -0.002178195142676656, 0.005426567451337003, -0.0015516187290342495, -0.00048063465455947375, 0.004058979182152293, -0.002331730422938934, 0.004497113047694643, -0.0004370426704429363, -0.0005939519417058775, -0.00010136717414939501, -0.0022294117234701173, 0.0022110955931479177, -0.0006130134424505491, -0.00023272538032744597, 0.00046983692971285933, -0.0009017175949910693, 0.0006700351668693734, -3.088290212054769e-5, 0.0004294755773463113, 0.0006671453535485029, 0.00014248432939212324, 0.0018075306977763314, 0.002329949582537542, -0.000713374240083884, 0.004326147822043431, 0.0020701301186835308, -0.003677736702936667, 0.0016605501273202082, -0.004134358004770112, -0.002851555246669411, -0.0010030475820297928, -0.0063321009449621496, -0.0024590333878661266, -0.004429803159391594, -0.007564444273322317, -0.004051899728912171, -0.010500241700553279, -0.0023468501776239734, -0.007492523074687373, -0.0074146529400125364, 0.01621253507292575, -0.0022471304306215948, 0.008836547096861208, 0.017666174223088332, 0.010395714772434155, 0.023127999352199224, -0.005464306190547967, 0.012335940460522896, 0.020138819447434272, -0.0218608911073559, -0.0023263766338414613, 0.017145562045740054, -0.020345198718514604, -0.0190072359298185, 0.01843583666014453, 0.020246157509927296, -0.019687009775162703, -0.007273672365902529, -0.012598173576304387, 0.04074060436901662, -0.004159487701742245, -0.0379738964580092, 0.015303812865507258, -0.002783474451967307, -0.033855794415556736, -0.016061643144605422, 0.003396492481110882, 0.017214937681524524, -0.031851260136063854, 0.00463763580111078, -0.029985009236626992, 0.01823523531354144, -0.004734925386735042, -0.03298810525931915, 0.014659870693255854, -0.02269710581790704, -0.026126961906664706, -0.0026787969525604413, -0.01855004569683712, 0.001970802750882293, -0.027341068300707948, -0.0031095176272433814, 0.0001920145716507063, -0.03174488965239912, 0.014213068597166888, -0.016808208204242343, -0.013757501557065418, 0.010876742522405228, -0.016316465595193178, 0.007741197014162799, 0.0013236651252114752, -0.009472522512778643, 0.012849243048903954, -0.010680283898876472, 0.003865358991337913, 0.0021993051491627008, -0.005930167848412914, 0.0044881131612056245, -0.004481232546726307, -0.002806167368907906, 0.001763920162795936, -0.00477903260981779, 0.0013277955005636007, -0.003591827775096909, -0.0007141448284970908, 0.0011448834837170072, -0.002343755394676747, 0.0014937026582039793, 0.00017624007891387544, -0.0005757557444225558, 0.0013034780574653945, -0.0002655844057178972, 0.0006245838330759293, 3.1499397369708594e-5, 0.0002629932412360211, 0.0007165792706921925, 0.00010184607608459452, 0.0023497829368405282, 0.002793340037430821, -0.0010584557946018759, 0.004104482622397944, 0.002768362446961978, -0.0030676132882883514, 0.005234540123690368, -0.002041552117910029, -0.0047672533227794585, 0.00023169658911171927, -0.00800462744540168, -0.0025495569739976604, -0.005067734892817133, -0.011211173331593697, -0.0015860467612930787, -0.013491668703968123, -0.010746577927099533, -0.0018406919228474545, -0.020346376288374657, 0.00885160584424218, 0.0009689536900618781, 0.009511255722733866, 0.022518746204139625, 0.007950124898679151, 0.029172471701616003, 0.0009330877780881399, 0.0030712873345493004, 0.027590611746611832, -0.014680864051169725, -0.007955070934325051, 0.027512851430694707, -0.013549294901322725, -0.022211682061893858, 0.005872130106580927, 0.03910586970787533, -0.023760427156826382, -0.03912784920338127, 0.018512547410620684, 0.03680826791884779, -0.02318830718047836, -0.04880409507701267, 0.026680547173144168, -0.013756883206589342, -0.04909105199685053, 0.007719757481744051, 0.03603047118802085, -0.006089586520041069, -0.020350857384637964, 0.014269535844571352, -0.023773232261815637, 0.029507786746647814, -0.004505589456007521, -0.03576475587661909, 0.018319185684398748, -0.029380045853786164, -0.024540079195665584, -0.0046592496665100736, -0.02199565012474042, 0.0028562731195131107, -0.030119939356829998, -0.004063690958158596, 0.004909224334270887, -0.03697931162366795, 0.022358253227489557, -0.009848057478637757, -0.018240817862813796, 0.015554008555414408, -0.015064694779716097, 0.011789533817896021, 0.00016894021420538728, -0.013645905189406969, 0.012538294418160595, -0.011099570621761994, -0.007896452893352326, -0.00231353678954461, -0.00716339972653043, -0.0038642403383134377, -0.007207291809454459, -0.0028789398994853686, -0.004570504790407524, -0.0056171568980560435, 0.0017259820851966712, -0.004428873392845708, -0.0008317487887796443, 0.002471541450082207, -0.0012972131575561437, 0.0013240040135705997, 0.0018273522804856015, 0.0009689483624285867, 0.0006679929022501008, 0.00018715088136505122, 0.0008003388809311872, -0.00015625492949575135, 0.0007400396674685652, 0.0015273136464048836, 0.00017394473102846927, 0.0024502482861188564, 0.0016127603370823939, -0.0006609683449723926, 0.0036604494564793527, 0.001582077289155254, -0.0017921037144054965, 0.005850234884593115, 0.001425969003758828, -0.003856092292010586, 0.006053502362641396, -0.004339696721123708, -0.006332588628600477, -0.007764718159383654, -0.012178171971310488, 6.938818514604907e-5, -0.01705932642911096, -0.010722688575282031, 0.005071977432844969, -0.024647943157991768, -0.004405625303651727, 0.01054924505390534, -0.00853192569926779, 0.01500500766056304, 0.020561750831704403, 0.03136490337309091, -0.0035866118639074035, -0.0062380449210504675, 0.030735443370293138, -0.012766260695480914, -0.014158740806986885, 0.041037661436423935, -0.012674168694478754, -0.02646942592744317, -0.012879936169673072, -0.022633187737116044, 0.10000629156167391, -0.019857169691192497, 0.1561543607433307, 0.07858065473042267, 0.1218741194755683, 0.10993204045624529, -0.029490930272554366, 0.03220863780298135, -0.07804081227789517, 0.053751536373312606, -0.060190331940776345, -0.03560466493790693, 0.03966206509547539, -0.011837751429740362, -0.060283733886190696, -0.008450285742023951, -0.0027548294242548893, -0.0391414773941122, 0.025296864646890526, -0.03734061865969084, -0.015151461698975742, 0.005007936885760729, -0.025633251115763027, 0.008385023593299887, -0.027925232876507142, -0.005725164768807307, 0.013319488946529973, -0.03647897400753712, 0.022564181737191547, 0.011175061554668598, -0.021406480999233517, 0.017804914047639852, -0.008360238423933027, 0.01685912505528768, -0.002249101274506165, -0.018235486604837824, 0.00829959538456394, -0.004631540772790565, -0.013096282137089679, -0.005124657444411071, -0.0017397195115003458, -0.009661651308639189, -0.0059448527270458615, 0.0003959879420506687, -0.007856396884197864, -0.0033585999097152514, 0.0026479461668410015, -0.005723963844392284, 0.00021591122661252204, 0.0025101858741325154, 0.002978814091911441, 0.0008100725655235848, 0.0011416964733789023, 0.002597926189291478, -0.000625187592733886, 0.0003218156024397719, 0.0010647769574202498, -0.0009541698454850288, 0.0022277822203284068, 0.0014371599712614668, 0.0010111725466145785, 0.0038429151056739905, 0.0013253824817663225, -0.0003781446746025104, 0.004617400234679123, 0.0009814561044720988, -0.0016118095088893866, 0.006223641842734006, 0.001699680513065652, -0.003727801681344148, 0.006988410427393209, 0.003619487473639446, -0.007517749426740996, -0.011446316156289734, 0.007687013599031068, -0.007513769634103557, -0.019657280076679776, 0.0010845628236920515, 0.007623320689295896, -0.02313149911583073, -0.0011072986651363358, 0.015236438636919033, -0.02274163971755635, -0.010818778176065748, 0.02122033830705158, 0.01892870808696769, -0.02590328683036998, -0.012067288542802208, 0.03416502162024931, -0.02256704134414237, -0.025025177414742344, 0.07366666801115795, -0.03362297101520356, -0.02958817349181827, -0.023891970597140936, -0.05368816733305962, 0.1015904501667927, 0.01091281701386125, -0.14847393842283793, -0.15517827124328418, -0.16093778161118574, -0.007177980444719295, -0.009133650545842807, 0.15283981526479848, 0.08664513874660701, 0.013855233177962166, -0.13727826051684383, -0.012396748860359665, -0.008548590504975296, 0.0023048939945525264, 0.03896546076023799, -0.10129275400341502, 0.055019282473366314, 0.00301531174121574, 0.018438366479359793, -0.003928048154745316, 0.020360507424013508, 0.03469531676779597, -0.027751643926952032, 0.018262642946330232, -0.02360479031387169, -0.006968703629577346, 0.019233911078539643, -0.03607048120749378, 0.006156703327436893, 0.029171108475562743, -0.018293771230395692, -0.0009992469200196907, 0.02345268492476036, 0.009518186255250388, -0.002144379620556116, -0.01918658997767356, -0.008364725763555726, 0.006956348879992922, -0.012850106831573872, -0.007768477531518755, 0.008344404373158818, -0.010166328308063157, -0.003202757756763148, 0.006738818525710033, -0.007667346239279285, 0.0015468289178809133, 0.0005577038089581507, -0.0005975441811396391, 0.009953311804584902, -0.00307006511359682, 0.003934694754052793, 0.00013662074244237535, -0.0014379849781950775, 0.0022132181526899755, -0.0014373884186778304, -0.00037312720770344126, 0.00017998959607611674, -0.0011647659599117548, 0.0014081350127770355, 0.0010676015596293566, 0.002111637606624753, 0.005627375831907595, 0.0008297051767049423, 0.0012083523425286643, 0.0072365806337077575, -0.0006340305183782689, -0.0014854287419012683, 0.007059550879727221, -0.0013270550855890397, -0.004655539994742969, 0.006075375048449655, 0.0003665649706015274, -0.00993420577233094, -0.0016964152659875802, 0.010184146460446202, -0.013515102961943012, -0.011062238076551212, 0.019713431430576384, -0.0005991740145204112, -0.013192193563744296, 0.019213907690082695, 0.014721427304339632, -0.013798145258157798, 0.0027473475818135733, 0.030339986049167506, 0.0009860698224499324, -0.040154346809177476, 1.92431730832272e-5, 0.02600359746807314, -0.049352113496034695, -0.033307705603202196, 0.10878536680848434, -0.0781101385040332, 0.001940839313036554, 0.02757490982183543, -0.04078141694959079, 0.07551800698904797, 0.1043535628286332, -0.04657067195909126, 0.027725562614259052, 0.07518567585195994, 0.037405411938016456, -0.010955276044733937, 0.07820543749206738, 0.07165220925873947, 0.0012976184880928634, 0.07091451666529203, -0.03371953824657515, 0.06787601799197764, -0.003492351495653015, 0.10867538205614827, -0.0366829444291071, 0.0821494104267143, 0.024587229548916956, 0.03190583022765244, 0.03719579992125811, 0.03338256246126095, 0.026768784776221966, -0.00016248684704548878, 0.005799864472755312, -0.047509784436760814, -0.005419423889076264, -0.001329650305590911, -0.04833314318568154, -0.009553749939662149, 0.03272285718579261, -0.017882989813015972, -0.011711034762323037, 0.029047799113841897, -0.00245118242324457, 0.004810404861951, 0.023515175096460707, -0.00973449880620164, 0.019023068699456115, 0.006234761485581311, -0.004789725094912067, 0.015282774905459377, 0.0005704076505174597, 0.0020348575850762806, 0.009440422678832334, -0.00022784884511508772, 0.006152990967680654, -0.001043126889548823, 0.00189658401355634, 0.007445706347706064, -0.006594258003033976, 0.002678478125503991, 0.0005591885321753861, -0.003821319252646913, 0.0011578471364802297, -0.0020474475303740246, -0.0018474938079595742, -0.0007301205864290053, -0.0025987995220403616, -0.0007319418782134825, 0.0020563060255607253, 0.0009139825459578043, 0.0007898252608285854, 0.0023414106971195925, 0.0019371704037135125, 0.0037374314055578376, -0.005551223220324577, 0.00042066530229627983, 0.002719705999956956, -0.00826797032744333, -0.0022427686439872845, 0.0024207845592623526, -0.010913248295749566, -0.006129739533602763, 0.003727032907967259, -0.006111388254922925, -0.015598595167277454, 0.008243514954167527, 0.019178032172187602, -0.011858464620622481, 0.01193924651913159, 0.026709554004230418, -0.0009397621496905613, 0.016939861692946145, 0.027736000758582412, 0.008126468967736633, 0.027165894127542285, 0.01981135720830508, 0.026721055765880505, 0.04716737075622747, -0.10775153609694257, 0.03583402983143514, -0.12256335089925033, 0.2124547661916977, -0.13142328881860063, 0.07703104260895374, -0.05496423380890388, 0.000679311126667336, 0.058788627009042985, 0.007670116523696599, 0.002824531316130286, 0.029665921400568014, 0.03851489519204859, -0.014098927416884326, 0.02992490373243479, 0.06565221965376344, -0.002269079492808833, -0.04030142077425437, 0.052562619217880135, 0.059185925058047685, -0.0010000136803198544, 0.007663032541984361, -0.13092722762925643, -0.16951620779940407, -0.24080506188537557, -0.18385017697624706, 0.04713733663803063, 0.06672221543069504, 0.025287224032836914, -0.01422167761268759, -0.015076173823484976, -0.050208426273411606, -4.6669170566360986e-5, -0.040580357348698665, -0.029286209712094995, -0.006159004603721085, 0.04812539801616087, 0.004475150290289803, -0.011480934934951238, 0.03480287920206995, 0.0005389034715217977, 0.0031288178654093252, 0.02851568026660125, -0.0040337176079547656, 0.014567286124953322, 0.018033658313613667, -0.001040243197779333, 0.014836763441659783, 0.009383306198016295, 0.004000144593781641, 0.00938856606024064, 0.004536638196596231, 0.0070169157141485835, 0.0004226982492584485, 0.0019374766596787084, 0.006761740800578402, -0.007062467059689311, 0.0003607095551863694, 0.0017839752061113183, -0.005179810693522359, -0.00043676641038074485, -0.00226855883757418, -0.0018411705009185539, -0.0011628274452693788, -0.0022558100572777906, -0.0012033392227280362, 0.0024178249560032556, 2.1546070756545066e-5, -0.002298123641549381, 0.0030713331887361056, 0.0004719427276729901, -0.0019086177076705652, -0.005736744432240581, 0.0015772038121708162, 5.1413308641260794e-5, -0.007524795557381199, 0.0005263299757603427, 0.0009713804344930802, -0.013031208757574303, -0.0006719932183492878, 0.005695867229003985, -0.01836719415439209, -0.005220138301538535, 0.022276849225578932, 0.006083216533592352, -0.013943663654356401, 0.021480201074105566, 0.024635372680961522, -0.008035850656136554, 0.02136310128377317, 0.03036086210720094, -0.0029799375959830942, 0.020889958248377354, 0.04081330117891915, 0.008737647175482035, 0.036510167962117854, 0.019065717722626364, 0.10714735166719337, 0.06451154891930132, -0.06907502477943471, 0.07018582133592582, 0.06995414795979785, 0.04663849797784369, 0.03336049297027559, -0.0060630813235060515, 0.04213077958842451, -0.024226679709610777, -0.005176994260060513, 0.03757184301345627, -0.01841824332890906, -0.031745213232301076, 0.055426662305886124, -0.0015949783597077121, -0.05540493048900829, -0.04067222620562354, 0.0709500555571791, 0.02616100803886721, -0.012034426963006663, 0.08198352062521912, 0.06344373593728138, 0.08587748928581077, 0.0873962259396926, 0.021624151370602016, 0.10074173034992893, 0.06667745638973702, -0.07552334589516367, -0.003471191979795269, -0.02007109789317315, -0.017309487952700972, -0.06537543745222413, -0.020936996318348854, 0.031356329653210994, -0.00210688893529922, 0.04701169735724724, -0.010706039741982113, 0.0372435553727492, 0.01706207671522534, -0.0023435980904302506, 0.03149042434643475, 0.0022945428779409405, 0.00814865123580825, 0.022289015519199165, 0.0014534291756714858, 0.01090903023107215, 0.014302053562118923, 0.004271869855502871, 0.008729455628342712, 0.0081673986001807, 0.006382279502398684, 0.004268807976439159, 0.0036940008500235167, 0.007003536552540142, -0.002524911019387518, 0.00011860188454509578, 0.004414062006743886, -0.0040470960035351045, -0.0012821404843721112, -0.0012648831939023949, -0.0014365273079558795, -0.0009667281317854492, -0.0020255354968306, -0.0014593688478662418, 0.002317710557526792, -0.0004838610622365422, -0.0020972619749176353, 0.003047253259407858, -0.0004952480488841016, -0.0015533778459502123, -0.004905893174043213, 0.0016015036919959738, 0.0008212212816196368, -0.008442035183241265, 0.0019984291401427597, 0.0016955948651259474, -0.01335601398438463, 0.0025903597111396155, 0.0057827161062985345, -0.021333771620187573, 0.0027188265681370037, 0.028658065784410297, -0.0108680848461542, -0.00635735955378258, 0.028229105148713, 0.02405971721913311, -0.012444487837931104, 0.020370107760730734, 0.0330194484902194, -0.010163333973480354, 0.004001777832486586, 0.0447846528103309, -0.0028105468044232343, 0.0341139498714128, 0.05943168471766796, 0.04133041938339391, 0.1206525468497922, -0.07465180540177853, 0.04820525018494003, -0.006929416050860067, 0.05534895199672856, -0.04125259154145848, -0.024842635582152744, 0.0437228255513252, -0.022316327655135543, -0.022755042331702332, 0.03224173032116492, -0.025050675011691628, -0.03848484341850742, 0.012803139501427042, -0.031785550918609, -0.08958576431669348, -0.014828758718477523, -0.050094792761666784, -0.009764162227852721, 0.022898795738043713, -0.1116705156561842, 0.08800158949011645, -0.07710068918624738, -0.029285305400455215, -0.04269980440001539, -0.016449422158975314, 0.03556630849816012, -0.047768920471376486, -0.03815176384805312, 0.03318241565323839, -0.05602435215756279, -0.05932325537333744, -0.03292451276576734, 0.06417290405877668, 0.021685792710422192, -0.0761626035554153, -0.029939807756396132, -0.001075046746468703, 0.0417977329545867, -0.01787126611248533, -0.007926317521951809, 0.029477102495631714, -0.008741420497994087, 0.008498141921380388, 0.021387038035266, 0.0014666405096060756, 0.015180231675694753, 0.00863135993821285, 0.004835761485588133, 0.011378595420031433, 0.004797603829879012, 0.005605181510185565, 0.0069629790699649455, 0.00348380572845359, 0.004837910129524164, 0.003442738306575364, 0.002337661537028775, 0.0032025451185057788, 0.0014721243907058594, 0.0007851068746239162, 0.0008880335784291272, 0.0005184249878401809, -0.0015126303260081836, -0.001553871982996624, 0.0024237268560691064, -0.0008734543739638058, -0.000869687825254043, 0.0031021003470946373, -0.00126141921841539, 0.007064897253928893, -0.0008761752833276648, 0.00026568991326559054, 0.003919997695567189, -0.00635126162582099, 0.002835244312794685, 0.003215327466062566, -0.011013146349487257, 0.0054148959790870045, 0.003187853327663528, -0.018516476473861145, 0.009673464080210697, 0.011937864604980496, -0.02913484652482003, 0.013437010088057734, 0.037003499484200564, 0.0002495766349264598, -0.012977243728962539, 0.00956147625510268, 0.024907340808486955, -0.026047255181404792, -0.036319827043346714, 0.012625539802296998, -0.01588273740407161, -0.04906051070693254, -0.02432881147712463, -0.032093351664333546, 0.11273738941530902, 0.026296311297360916, -0.1377002450480658, -0.08623444545102459, -0.024766863313556504, 0.003933316331697474, -0.049036864457316906, 0.05276330744395983, -0.01728250357858216, -0.038287576477390436, 0.027353297846441364, -0.04142733982372082, -0.04675328765370808, -0.00860012459963331, -0.06081222557917935, 0.11919094002265862, 0.0873753913600497, -0.00970419786208391, -0.03431277452466047, 0.041363146264366095, -0.03807350897277818, -0.03470518933464873, -0.04613994657386519, -0.029829753435908723, -0.00478077100390144, -0.03912671073359662, 0.023717724198331763, 0.0005245017297225664, -0.03300498620095647, 0.034739163740202236, 0.019051086128724158, -0.02304988405588282, 0.06159041044824636, -0.06162903604084328, 0.018339332095690497, -0.07803255478052304, -0.019984287554426643, -0.04084201106150165, -0.02934108550630757, 0.006512961407398016, -0.03632702065422524, 0.01498456508698279, 0.0008612881077284287, -0.02420662241234669, 0.014753102711319119, -0.008816954285412843, -0.012614184825658561, 0.011811970461499288, -0.007685385258796146, 0.008578872111896356, 0.004952155340812083, 0.001595025240863348, 0.00804079098013945, 0.001071456287157247, 0.0038586211115390163, 0.00493606610172821, 0.000779353326282764, 0.0035762180281666304, 0.0024279881805542108, 0.000583450897697205, 0.001975119067458334, 0.0008787570908033157, -0.00010963683822728036, -0.0012860611516308928, 0.0024116687875155654, -0.0010372147669953557, 0.0014853082485555545, 0.0033236102209532725, -0.0015421753386728866, 0.005619653704812194, 0.003124124450415099, -0.0008173780445175471, 0.008291267499170174, 0.001527869236673365, 0.0021523606587483235, 0.004710114686249971, -0.0027716875907500046, 0.00977230699015886, -0.005513556810654381, -0.008837809013904562, 0.014257701866137253, -0.01103444467132264, -0.01984764970679689, 0.014699308196401558, -0.008550380442346423, -0.032776756328307684, 0.011487317402035334, -0.00900258230151215, -0.03360771802376497, 0.009437184808747445, -0.028145390401741622, -0.02663238342787098, -0.003906446511435305, -0.010525797224797621, 0.016163247674045183, -0.05389295912016658, -0.17600239465270406, 0.02360808101444017, 0.04722026749696159, -0.05358440400105465, 0.05967702574178852, -0.07783771158406735, -0.06731742157644532, 0.004171709192481586, 0.05530629885074787, -0.0498150247223835, 0.007527465201192552, -0.07802292277641637, 0.2234283851388374, -0.18832729910224436, 0.03762171079016078, 0.14264751370103895, 0.06499525855404788, 0.05657676825804405, -0.04802877089378942, -0.02605398541971205, -0.053927051567965685, -0.009969301635272113, -0.055988866143980395, -0.022196529435893446, 0.014408966949229326, -0.03538073578828432, 0.01811292093833345, 0.019997575778263294, -0.02885088346637975, 0.030985501343380604, -0.004227746873185829, -0.04080082555788047, 0.010037011631211974, -0.04072310030547353, -0.013174571965873436, -0.0472256450643461, -0.012762998135512706, -0.019965129733284695, -0.039793240739059654, 0.024200138878449445, -0.026726659198526653, 0.007669513977773354, 0.01347105051704864, -0.019534274444436093, 0.014428686514214877, -0.0004921459153857514, -0.014107047216786022, 0.013139910199189515, -0.010369469827658219, -0.00023471680877821857, 0.0064552337780490335, -0.0043590782366916955, 0.006692971177598916, 0.0009905258651641993, 0.0007372525412500471, 0.004975839113136998, -6.5383982504494545e-6, 0.0027399398340338427, 0.0029197554203684935, 2.5270728909892687e-5, 0.00179206990787301, 0.00011706042638816343, -6.544107931585061e-5, -0.0002601440629803351, 0.0009401313362267195, -0.00020219310079469134, 0.0023411298597066877, 0.003120714564279601, -0.0008271282518662466, 0.0034737936026987912, 0.003923704591964914, -0.0009106228951957536, 0.0031069650028505503, 0.0065066108704077, -0.0006427631474516433, -0.0021096143859295835, 0.009361695422858954, 0.0011436105320393722, -0.013016532992292605, 0.0032632672575054035, 0.005316933990281704, -0.010889242090392739, -0.01619616627929622, 0.007926079323986002, -0.0019578349459890045, -0.02572354462442027, 0.010970596621148035, 0.003245115096969081, -0.025968907757382143, 0.017041027910394586, 0.017075768190607164, -0.014133344070727286, 0.02643229524728424, 0.01690961219917593, 0.04065183486019477, -0.03851827597531388, 0.025861475674829607, 0.052811411922277465, -0.05536991284234781, 0.025097715348540554, 0.01354074679114203, 0.10638855679066647, -0.027627804011142624, -0.06308449217191019, 0.08136493060031703, -0.0266256269337298, -0.04826982242390394, -0.05106361973475068, -0.1253157808410752, 0.009728937074664304, -0.0741024798296961, -0.09263007515062036, -0.06398973633954012, 0.04859675155073126, -0.041651144145914774, -0.0579957753259734, -0.0013265764268787933, 0.002585148794594377, -0.05404387395138984, -0.01611214568013957, 0.028857632148887424, -0.027192229823461034, 0.018694932403042618, 0.030176614244746335, -0.01679391685576458, 0.030507696883338608, -0.0028450257351824372, -0.03950629500689705, 0.0043312560853212105, -0.027337362991609878, -0.01947330444824858, -0.02764039369510018, -0.011242048122161957, -0.010943576165368637, -0.03371545953682608, 0.030896272978945854, -0.004979920585302402, -0.0005199183249020801, 0.021074164006287952, -0.007291019676601752, 0.011471513568739072, 0.006961823656900804, -0.009411479897367613, 0.013570247972665662, -0.007372719145070018, -0.003595929997757302, 0.008019437129278686, -0.006759488922713594, 0.0021468352981338984, 0.0018945527371900148, -0.0032926624155549147, 0.0038377163111215267, 2.91640993377133e-5, 0.0009520573602411842, 0.0032909150449817034, -0.0009280759702087805, 0.0016633086353565025, -8.984221824010798e-5, -0.00037447048611013, -9.564146633263535e-5, 0.0006609574185695682, 0.00027826141431231555, 0.0006584414565609134, 0.0023838983491826582, 3.894232366161439e-5, 0.0009218377198499405, 0.004473126728911825, -0.0009337997158099581, -0.0011885343743714173, 0.005756953030661847, -0.0013865689874246417, -0.004782098264131028, 0.007443757747121305, -0.0019948492986386654, -0.011404993728397114, 0.0034850357882016065, -0.004952983025511156, 0.0009310985614695857, -0.015427958034901988, -0.0002727984304551849, 0.008717794290788412, -0.018682366531337855, 0.00859644395365366, 0.012892312686899584, -0.011556696020814267, 0.02117374954964821, 0.016317107196491546, 0.016885046160123762, 0.022801230739892455, 0.014322074078181582, 0.03846108465866966, -0.019058065596595366, 0.011931680750116785, 0.03645945909745138, -0.04095965784835489, -0.010393402839259573, 0.02977514659845684, 0.03727791022073409, -0.018087611406158107, -0.031527732762011124, 0.04447665803564863, -0.0077086697615901785, -0.032767361071510064, -0.03388801320257141, -0.04248414407367949, 0.0022547300217400697, 0.03098865105500579, 0.010452512966636877, 0.02332700995237817, 0.04989930470889178, 0.024078019651728243, -0.007690480157821867, 0.059086657366076135, 0.013336771662808555, -0.039969167879773594, -0.03639577812751629, 0.033624729540172, 0.0247699065842424, 0.019358940688648373, 0.028449408960421595, 0.020369289425039846, 0.03351423225535418, -0.01323015895971525, -0.0420905599878145, 0.008993071245653237, -0.024501602038327068, -0.026344287482217267, -0.018469967852828124, -0.011525077250810431, -0.00957837943326284, -0.025905260719240625, 0.02173305077513706, 0.00901744423546099, -0.0058368903385486925, 0.018875031879954405, 0.0033740510450344114, 0.00537244969397559, 0.01093776703617818, -0.0034426092544654068, 0.01091150872897708, -0.003548847944303477, -0.005252626515026345, 0.008648768471929372, -0.0065764620699566845, -0.0015685686011878265, 0.0031129835130387475, -0.00426003314433201, 0.0006223517390276261, 0.0006198997821078064, -0.0020435412030351736, 0.001717083044595462, -0.0008660916244408472, 0.0015675219391965674, -3.651629904247492e-6, -0.0009267270752541839, -0.00021436394524860592, 0.0006528912561663395, 0.00026769646435749125, -0.0007002285204060605, 0.0019970988254367785, 0.000387966226601517, -0.001760643054855518, 0.00249827101540611, 9.9780873422264e-5, -0.0037516880887095705, 0.0033061690578170184, -9.172492617232762e-5, -0.005911344453264644, 0.004206491293049103, -0.001434398912886072, 0.0039339900634980125, -0.0028198107956991323, -0.008920599351681423, 0.010886589185340302, -0.006102490723019975, -0.004829557613916557, 0.019147679517773113, -0.003946489040828117, 0.0023086728197493204, 0.00934506887385598, 0.014435147015624301, 0.017623585802058035, -0.0017851940731262268, 0.026559495098576056, 0.015238752328905519, -0.006331714465651482, 0.035260016794108985, -0.007035194820384767, -0.006787305768643459, 0.01357610949171062, -0.03712051866263242, -0.01705971585738201, 0.024773048757453713, 0.015620424448663336, 0.0010008908158130813, -0.014692026937626525, 0.038141137356976024, 0.014622278359355277, -0.030285935517364932, -0.018466113786832477, 0.03191349418914019, -0.030814698018243256, 0.01028050945870249, 0.03687173859640715, 0.005784005598677021, 0.032265833950263445, 0.05001667677020227, 0.01348169387715207, 0.005513552060537663, -0.0027035706501999934, 0.02482948291014301, -0.048521364904853, -0.013933587751993094, 0.04919577719545471, -0.009197790630905726, -0.004515075790525319, 0.0561134954139607, 0.014690045927091373, -0.032379298354562325, -0.022418642024406854, 0.034819947309970546, -0.01973729716777452, -0.03496901162951303, -0.004675121059540053, -0.014078793513587316, -0.014491030418761456, -0.01974350622920611, 0.012419441586739447, 0.015708689107086143, -0.008482854087654796, 0.013026259423935508, 0.009535342399936114, -0.00032657544550923514, 0.010784513441929945, 0.0014539761089533794, 0.006018171591506954, 0.00024629407826978446, -0.00594004773818166, 0.007650632164685738, -0.003845473377149308, -0.0040552100365954915, 0.0037524176602223725, -0.004053374184348632, -0.0020569658754523304, 0.0016105884369566948, -0.0013954500111128902, -2.0405373137998573e-5, -4.302582451126326e-5, 0.0007902630201596546, 0.0006321370234487569, -0.0009206401929007139, -0.0003521251882792106, 0.0004456656734694567, 0.0001477307604810574, -0.0017375784281037727, 0.001263539932627912, 0.0007317496887214327, -0.0029763784135042755, 0.0011266601881767084, 0.0013332243239392721, -0.002978718084482892, 0.0008180662063870888, 0.002062249964359744, -0.0007906608669488167, 0.0006676107777217094, 0.004023117870283573, 0.011017381223872193, -0.0010946500407526345, -0.00019044355861813885, 0.010549132772886147, 1.0288264797799485e-5, -0.0038215697717479315, 0.009080561380067225, 0.011350814723098124, -0.0054064715762562185, -0.006677592024901291, 0.02024033085622362, 0.001200266304335679, -0.017782847127631594, 0.025176902805953756, 0.00397216499559704, -0.0339275352191453, 0.018187291870194494, -0.0001044164544439806, -0.02575308450115451, -0.027196049153722843, -0.006757177298796476, -0.024290975796015562, -0.01661172558008927, 0.01356722737001602, 0.0295203766340648, 0.010546650561424233, -0.0007833413909502263, 0.03110361649090716, -0.021955703023896555, 0.007437391751872541, 0.02967348949805254, -0.019393904959340034, 0.02124268151416779, 0.033864436224539204, -0.004163769797885746, 0.020347220781460895, 0.03459883638322928, 0.005135407305011405, -0.020583903714794856, -0.004529814966728731, 0.0010962382075941275, -0.03992004249359996, -0.03468763296105182, 0.024648544561768168, -0.03895866819295206, -0.03759441400751603, 0.06447758573230428, -0.014374584121196184, 0.0060537671285494365, 0.015779003729306386, 0.042321600725026186, 0.006074824519825242, -0.025266633526888755, 0.021903430468936967, 0.003281411541979509, -0.0030839596774425997, 0.02396723023433845, 0.002208924189769854, 0.01663144631922923, -0.005808081123848207, 0.0032494526984204845, 0.01190363758827786, -0.005719003242958771, 0.0071077836627777445, 0.007113854059009976, -0.001142157784312665, 0.0022884781043975362, -0.004932739146795321, 0.005174729111985254, -0.0002507001491047722, -0.004476100914247191, 0.003806939975723355, -0.0012994162212021274, -0.003101296942615438, 0.0023812597935739433, -0.0025791077625613936, -0.0021285645487548496, 0.0011842258425893088, 8.543505596294451e-5, 0.0014444190509075032, -0.0010364814632614512, -0.0007613232875206067, -0.00030905216329983696, 0.00010493747424494785, -0.0010747604071840887, -0.0009963334945605898, 0.0008365328420542031, -0.0018623214654220584, -0.00032061845120205104, 0.002213857125802402, -0.001734499631414029, 0.0010651950968722317, 0.0041327475891621305, 0.0012966387651915474, 0.0010157245334800956, 0.004145578544810844, 0.005037101845940065, 0.00026518650227222543, 0.0023137602016503863, 0.007347020235624215, 0.001611996328877221, -0.001627435142514392, -0.0004353632969253191, 0.010643129379481473, -0.005797212457302956, -0.00986698226806231, 0.014037810436641124, -0.0036139940579388223, -0.019918668506216555, 0.019916345084309554, -0.003554612120327001, -0.04047549153602785, 0.01715979577839399, -0.005347364037607384, -0.03205420143358712, -0.03305627431434208, -0.0036926404796564557, -0.01444254695521262, -0.02459590909404259, -0.0192439327295951, 0.02914497271170122, 0.01596592782350696, -0.005510882034466294, 0.028352483148530026, -0.007123340792076082, 0.023308591072089394, 0.022157391301733203, -0.008454439048299707, 0.030097955565270274, 0.02186492440399438, -0.00424470904047213, 0.026845117358082066, 0.014372806977993634, -0.00818899166544243, -0.02342993328808334, -0.001687638441840859, -0.013653649546637434, -0.02586391758679726, -0.003819689214938386, -0.022259295230807934, -0.023341604227936543, 0.0020148533413030414, -0.027040369776731146, -0.022574239837627075, 0.03023453786567666, -0.0027504971736863337, -0.0032906129968450987, 0.018060266200816483, 0.009752314393308995, 0.012826153117803033, 0.010133069555175718, 0.011275031479936082, 0.01127318314443362, -0.0003849253768599028, 0.01345480780602314, 0.0013942688857404857, -0.00688526286167254, 0.007032879773332423, -0.0059391846639536856, -0.006362336099546006, 0.002879448144368246, -0.004749957326580152, -0.00024574892294183196, -0.004336689621812418, 0.0035576970420676097, 0.0017279995465718833, -0.002436615233073573, 0.0024845037418660017, 0.001703368111049691, -0.0024817534802277718, 0.0024016671281953967, 0.0005964575788434107, -0.0012842901191644827, 0.0012665509942043351, -0.00026061511064348115, 0.0005630255998071412, -0.00039829798495681716, 0.0001594796566143558, -0.0006009467232453354, 0.00012621244829518855, 0.00023428944425275174, -0.0006470442829517995, 0.00014558536740062085, -0.0002528215584265806, -0.0002036970200682335, 0.0012494157481366993, -0.0007310668999617582, 0.0017024254926309098, 0.0033686302381932113, 0.0013538537660946117, 0.0020461719934935004, 0.004947069201125068, 0.003641390024153069, 2.8124236950693408e-5, 0.003401701559340874, 0.005949953273853255, -0.00046208964774661454, 0.00140234715418938, -0.0032491457941711747, 0.00713604579718216, -0.004165562625440434, -0.007841137133359719, 0.009254578112235864, -0.0037934638839654373, -0.013262845449123806, 0.014588069394807675, -0.00545356238663237, -0.025884271360215844, 0.021335377403693883, -0.011408737777734362, 0.040797086615288206, 0.01550742476688353, 0.03027965392248518, -0.01756181368074036, -0.00910864893508153, -0.03662203186275797, -0.002613870518739075, 0.02632361143839045, -0.021417122432769095, 0.014905652584782625, 0.01371360669567036, 0.028603271100388055, 0.010885983297775096, 0.0036614334144511964, 0.03236111873602136, 0.005096840654207664, -5.352983996432293e-5, 0.02819941911421216, -0.006134842593309873, -0.020650452569502563, -0.010304350149368837, 0.000501102264900243, -0.01742316912349527, -0.015203478077021066, 0.006006507505649045, -0.020421447027641735, -0.009335018717236436, 0.009300579790481494, -0.02036420936685571, -0.006277389957639667, 0.017300797702603107, -0.009694625370800413, -0.007391020379690944, 0.010794811710724937, 0.013372022314577011, 0.0025654879743845552, 0.006877314919032037, 0.010356256165277113, 0.00440940520980991, 0.003812083045056248, 0.009066574118339778, 0.004201579826070846, -0.010031853763592854, 8.140666291211919e-5, -0.002190877250849023, -0.007818431012295343, -0.0010632024591546402, -0.0019793826384990683, -0.0033869602666727157, -0.000377778797482067, 0.00036239507491049957, 0.001989998173270938, -0.00044161384681380787, 0.0024823692057114283, 0.0020543151359510314, -0.0007132995295852228, 0.0014246162553756242, 0.0007840804919796144, -0.0003893092187388256, 0.0003704489093246092, -0.0003558729775791235, -0.00016313976818467876, -0.0005615383700866092, 0.0007010566020754917, -0.0015457048888528097, -0.00040343913881669356, 0.00023076061460475822, -0.0005015055936795633, -5.266801689626076e-5, -0.00042578170487960756, 0.00021818496896264678, 0.000579699930700124, -0.0009440003259041965, 0.0013475940254975137, 0.0016903331261899496, 0.00020614702109664153, 0.0008530530018432114, 0.003089966080032175, 0.0024683078409680256, -0.0015223414490287872, 0.003406116526282129, 0.0033589216818175585, -0.00305183933334651, 0.0027768720428132444, -0.0035947213806899656, 0.0052929377610067396, -0.0003329507242088071, -0.005049237320800099, 0.0068726901044349874, -0.0026778458769406714, -0.006496559868751361, 0.010107915783185043, -0.004312247406085026, -0.008392590431512102, 0.01434103578488969, -0.008362351538181717, -0.01017916384447103, 0.004926756871774788, -0.023206988953372143, -0.010603168793940052, 0.0011314201098802325, -0.023982612431012736, -0.011634627898241975, 0.017221340958623457, -0.016722350923460604, -0.0041946131119415956, 0.024342907166904428, 0.012639289065461613, -0.00023706332595609683, 0.010985697188174673, 0.02287122324373528, -0.003656815618085436, 0.0022029846327884946, 0.02039650488251922, -0.010713057317143285, -0.01569214933270245, 0.0018723839588811867, 0.0014803514272778205, -0.015377247193978283, -0.008482990917777714, 0.008266601664071054, -0.015902304446847558, -0.00447091577715948, 0.009598449300439578, -0.015206607535426186, -0.002039623119101332, 0.010826727182046208, -0.010197184876425678, -0.004459413011266553, 0.004765387350445063, 0.012134537647080699, -0.0018363598195986566, 0.004274095726314357, 0.009238121123208431, 0.0006517373167847017, 0.005240710242253778, 0.005943518391719541, 0.0018545261952292763, -0.003052403764411276, -0.005864687577089319, 0.002013484181356759, -0.005441834106621209, -0.003176613669865694, 0.0003601896570743715, -0.004152879654480851, -0.0009276075208910591, 0.0010178238190753713, -0.0020116903097387446, 0.0024049779091385483, 0.0027792250112846145, 0.0013950471034457751, 0.0004642128017540437, 0.0009019421674877361, 0.0007717737690840699, -0.00014345716325171815, 0.00012074597395642111, 0.0001059813117714426, -0.0002591628559613421, -0.00016399104823387907, 0.00012409494979462586, -0.00017841357886933635, -9.127114261078934e-5, 2.8652730533776263e-5, -0.00022895215563850307, -0.00029163259036047427, -0.0005659957296633316, 0.00015322928725627715, -0.00011165035658963785, -0.0007544958117741036, 0.00029554977025080903, 0.0002980794572507981, -0.0004760502886012252, -0.0010454218411048365, 0.0022770830519109504, 0.0015828968856049083, -0.002498209803916058, 0.002162327885076328, 0.0021684842455378262, -0.002985006242098772, 0.002253380450110472, 0.0024032631778034166, -0.002158591922369498, 0.004330324632402942, -0.0024834623284847577, 0.00547704200358382, -0.0008849872973558738, -0.0027964032936777733, 0.007352633420418564, -0.0028160546986410757, -0.0020707874700363667, 0.008957824709650555, -0.005581819298337745, -0.0015983448520462441, 0.003727917042442646, -0.012603135492735076, -0.005908508132134071, 0.0027001152510631454, -0.01406960448588743, -0.008806645632733407, 0.011010527167869716, -0.010860283328770303, -0.007928601759678189, 0.016860744701436878, 0.0007998271533274062, -0.0055042118112029895, 0.012251432226128376, 0.011780583793809018, -0.0068557888512652265, 0.002653700738706245, 0.014230993424770992, -0.009050590447727425, -0.011841270809095231, 0.003826282991213401, 0.0016049479187605971, -0.012368610964044947, -0.00465484627206088, 0.00850670668582614, -0.010792967978635793, -0.001689632217902576, 0.008797870129687328, -0.010111160480759288, 0.0006973837445575737, 0.006936175324848291, -0.009391112944404171, -0.00018172887359827128, -0.00019866247797798025, 0.008879617894914914, -0.00288409726622745, 0.0016899712769543399, 0.006875352394955008, -0.0013534007713505653, 0.004228230947517291, 0.004269989096591629, -0.0004739269769377524, 0.0031818334946001397, -0.0026603890241522882, 0.0012816417727659335, -0.00188305010008955, -0.0031047027160801093, 0.0013394489480778643, -0.0032796228433129575, -0.0016660078015821559, 0.0012701685641224145, -0.00156445895486994, 0.00045998408620365845, 0.0006077426811198089, 1.7608125191677146e-6, 0.0006584051725667145, 0.0002894266610014024, 0.0003596729858582215, -8.781996825224137e-5, 3.945026992988539e-5, 0.0007523137380278862, -0.00036647957261198524, -0.0001362500903327023, 0.00010353057528377145, 7.018022302622045e-5, -0.000545720223153828, -0.0003083147779045128, 8.397331604478872e-5, -0.000339021446334029, -0.0006561853483906144, 0.0001306632178167976, -0.00043470929116177733, -0.0006743529695433629, -0.00014994396124195882, -5.960049729485799e-5, -5.9260308696567994e-5, -0.0010026747657785754, 0.0002714458077508225, 0.00132231820622567, -0.0024744304280658763, 0.00125386103821599, 0.0017645445245387556, -0.0024475166394586187, 0.0018114081399689863, 0.002055049600201369, -0.0018033854710498122, 0.0034983499993729915, -0.00048602530008438015, 0.004195703472701971, 0.001856086372910543, -0.0006730669424193302, 0.005015729278277847, -0.0012374552864637994, 0.0016339385314669908, 0.00579243677970196, -0.004015356895247052, 0.0019492689382192988, 0.0011925840341547424, -0.007087286397120132, -0.00319131535525541, 0.002712693663264903, -0.008739655405459248, -0.005730260191695752, 0.007189557562921946, -0.006939252408247569, -0.0062545471601036075, 0.010257902292939854, -0.0021803175243694764, -0.006090722668878133, 0.009327846427711138, 0.003942594388928902, -0.007984216273852398, 0.0022067324383997977, 0.007924758669044707, -0.0067943808067291635, -0.009032890892831082, 0.0017520710307534371, 0.0008353231799805169, -0.009509862485823336, -0.003034672175324191, 0.007887604603719327, -0.005619520080270081, 5.679208176373812e-5, 0.007137916368232645, -0.004790963797299882, 0.002696503472207923, 0.004012997191882302, -0.005913415888071258, 0.004058452925038892, -0.0038564137878855215, 0.005828868032920174, -0.0012116873521511363, -0.000184081379108599, 0.00509556470975411, -0.002272249669064868, 0.002744212275702492, 0.003278852074990526, -0.0018463093026833478, 0.0038837667574454474, -0.0013485395465877654, -0.00015419122315075723, 0.00020809445707738392, -0.002195177610118899, 0.0010623830146487805, -0.0012704514861599319, -0.0013482674932653797, 0.0009355128409378913, -0.0007706130119822419, -7.77216249638383e-5, 0.0002957290435754006, -0.0005072508436188856, 0.0004881103602184379, 0.0002435349569859392, 0.0003692553711498862, 0.0003290439068288541, -1.0168313696595235e-6, 0.001198899465899118, -0.00022466866781206853, -0.00015444280055926945, 2.3797150397780373e-6, -2.2683039810023075e-5, -0.0003132040396289018, -0.00022851719076153246, 0.00014959793618635523, -0.00011667961255933308, -0.0005877474742395504, 0.00012688407964567844, -0.0002430237203593919, -0.00035301455581500277, -0.00022404459194987175, -0.00015156342673277408, 0.00013244041699677617, -0.0003488327175652322, -2.053177772944104e-5, 0.0005697800974306461, -0.0009755821111177107, 0.00028711319191110065, 0.0014684265514803803, -0.0021596842045991113, 0.0015277703051973805, 0.0013968939047857233, -0.0018528214115746417, 0.003474170638199603, 0.00024267122450161564, 0.0004198500553422231, 0.002511357957424893, 0.0037552361028306753, 0.0018552926066508128, 0.0031226395871905574, 0.0060824329696492355, -0.001798440786672824, 5.838677505894445e-5, 0.004825374485140626, -0.0018297549062746843, -0.0025250863990158535, -0.0012065660830542313, 0.0026618632896246155, -0.005414545688853381, -0.003481575169352629, 0.004868036553263612, -0.004198900068425374, -0.004246037531005141, 0.00610605941146096, -0.002379962673550754, -0.00497337185359064, 0.005868683407260553, 2.36969466620901e-5, -0.009889161295066558, 0.0007640027668597795, 0.0018543908861845327, -0.004790488978997147, -0.006349891992737171, -0.0014857632323602781, -0.0010039609564233098, -0.006294236670236546, -0.004013532394568415, 0.00728602070129366, 2.168644436328547e-6, 3.3099591638700755e-5, 0.004860827517199349, -0.000395150855588013, 0.003318698343427768, 0.001676382117929733, -0.0013623157811033066, 0.003910349144503752, -0.004183464480289658, 0.001620244096177573, 0.0029350492925057665, -0.0016687892634690972, 0.0034795209051064137, -0.002316044815140519, 0.0011946226423305054, 0.0027194451311703476, -0.0027389884628277396, 0.0031230769419107575, -5.632073235112644e-6, -0.0016528147804777986, 0.0007948964581528548, -0.0010546745847189248, 0.0004712114248073485, -0.00015081372731195802, -0.0007749386380822015, 0.0004389895412041382, -0.000517790804692791, -0.0003462609856073693, 0.00029903693785926017, -0.00021805827434898993, -3.6522997771613094e-5, 0.00012904779122329129, 0.00032533989537150704, 0.0001813933250624242, 1.8095294040354946e-6, 0.00035719083412972315, -5.6074803468665765e-5, -7.521998456466687e-6, -0.00022787737829832742, -8.830210190340836e-6, -0.0002871360316552663, -0.0004615238560137667, 0.00040559439445419317, -0.00021890883807335537, -0.000542117491641461, 0.0003376764039875289, -3.627619257996798e-5, -0.0004862544404620787, -0.00011669023755690349, -0.00040892993658787593, 0.00022308208187557917, -0.000313007687724528, -8.995105340949672e-5, 0.00036927085312107025, -0.00047405714018188054, -2.6303970810975553e-5, 0.0002571716499402078, -0.0007143874319388489, 0.00043506728350378704, -0.000438224835513276, -0.0006609836961405298, 0.001514107158507352, -0.0005800912885370112, -0.002326521052152781, 0.002829245246263372, 0.0015515388173182904, -0.0026416305573053163, 0.0017341179386998653, 0.002660989120907434, -0.0027605093308667216, 0.00125347382713925, 0.003983627492134889, -0.0026014893197880817, 0.0009013297449810707, 0.0008510770048434054, 0.0029167491263772344, -0.0027306782322071375, -0.0019646862053073304, 0.0034391038809697336, -0.002169513977793721, -0.0026408235955654043, 0.0036169519491466386, -0.001559379219529069, -0.0033979781415296134, 0.0031513928182300894, -0.0012109872642597833, -0.004884450873319415, -0.00045186660379287343, -0.002480147107660847, -0.00294008538576813, -0.0031932427274400537, -0.0032531814148176598, -0.0022672197545271825, -0.002631732247911321, -0.00516046093686708, 0.0020371507540039276, 0.0042377946806580885, -0.002622888640727183, 0.003071412370755223, 0.0027483233224945263, 0.002678290819999888, 0.0017627719328120093, 0.0006065009974383847, 0.003941676665408716, -0.0004985030076016698, 0.00027503986409491436, 0.0020383182774848306, -0.002073236888773399, 0.0023070407671353086, -0.0008534503832000352, -0.0005224433404848885, 0.002239606236271585, -0.00273825814983282, 0.0005733088281848273, 0.0004891519399736275, -0.0011456458739691642, 0.0005866621416426316, -0.00045114142855403477, 5.889250526973329e-5, 9.030986467818121e-5, -0.0004626335609140863, 0.00019952306740065608, -0.00015429465411632154, -0.0003785018164068377, 0.00023731251858883888, -0.00016704781342961287, -4.498006736895218e-5, 5.179088322695133e-5, 7.516770037182063e-6, 0.00034051463347809896, -0.00011737819108500836, -9.618722491400393e-5, 0.000247926963345533, -3.062411188691202e-5, -6.799149123673658e-5, 3.10853911458172e-5, -0.00011012579307765751, -0.00022460795081008479, 0.00010302434876573597, 8.386857370284915e-5, -0.00012263896040532048, 0.00025011824990041814, 2.7125780572564507e-7, -1.0171914219578114e-5, 0.0004114414606753235, 9.295715383463943e-5, 0.00041326395471332015, 6.462646654664566e-6, -0.0002141930796297643, 0.0003631673187394088, -0.00015901841355831121, -0.0006914826716682331, -0.000519233480455909, -2.817040784045937e-6, -0.00016841959606024473, -0.0007552473489887084, -0.00014878187115605342, 0.00017273979350315534, -0.0003831862309290932, -0.0010093731838463683, 0.0005316861554820667, 0.0007417703784126785, -0.0017571785138399284, 0.0006475176289935265, 0.0017478499962785465, -0.0023849492932468885, 0.0009422620291251295, 0.0028046909804479614, -0.001978220306303811, 0.0014386128010553723, 0.002474497907026916, 0.002025870381953236, 0.0010061282989094005, -0.0009149907709922031, 0.0025349106970634387, -0.0001560934846565553, -0.0017185878110502122, 0.0025676163548907774, -0.00020933315606070271, -0.0024267761187972406, 0.001353657350069444, -0.0010629488663272506, -0.0016247249652475654, -0.0006298577881784524, -0.0017962548804430717, -0.0014295334090002254, -0.0012678111140760897, -0.002282377486337541, -0.0016016937051153458, -0.0009955010229058868, -0.0036385045821713904, -0.0009450511536579772, 0.0014360027550433005, -0.005102612509157781, 0.0008158612491641074, 0.0024729925508130144, 0.00012659267385309344, 0.001447024467241992, 0.002114883714324157, 0.002899821376834659, 0.000416116098288472, 0.0007574292425361656, 0.0015955072525941712, -0.00026185997957603815, 0.0007852081228953169, 0.0005443186105214893, -0.000499030510628708, 0.0004337275181915189, -0.0005498983530525752, -0.0003782089888171144, 0.0002965634953801138, -0.0004899167003153687, 0.00023951806413974422, -0.0007928782764650989, -0.00029366339466442267, 0.0002216965815629024, -0.0002492022594855083, 0.0002244387249082955, 0.0001249517503406257, -0.00016229509812674722, 6.324864252063815e-5, 0.00021099875830357515, -0.00046229387872391054, -0.0002611206171292811, -0.0001435110865541954, 0.00012992035769303654, -4.178583366331795e-5, -5.373762664865212e-6, 0.00014920132434065582, -2.779897053341231e-7, -0.00013495185089132332, 1.008184579563556e-5, 5.57460333624326e-5, -7.316123236197028e-5, 0.00011580770230578622, -8.808644839718521e-5, 5.647937157549085e-5, 1.910666929471819e-5, 2.9163811387308977e-6, -1.2599641041921513e-5, 0.0009680811476066486, 3.472017318099588e-5, 0.0002537129806140468, 0.00017532310566516346, -9.618610686243599e-5, -7.657136518180599e-5, 0.0002631367327375303, -0.0003233259389053323, -0.00027009206706759387, 0.00017175235232400228, -0.00015811212264409626, -0.0005143335016581775, 7.475224061969187e-5, -0.0001635898602090914, -0.0005654483838165676, -0.0007765101316524815, 8.625698836029966e-6, 0.00030112830453224334, -0.0006109923651897874, 0.00013245208180048124, 0.000663527334409229, -0.0008516039674870199, 0.00027316000721371524, 0.0014672466658131327, -0.001355526195738562, 0.0007750599969941936, 0.0017906773645991597, 0.0007200121606875803, 0.002109533945622512, 0.0006259898682318424, 0.0013066633802917304, 0.0022853464094670785, 0.00018105657331574364, 0.0003769055700262894, 0.0017573096605571184, -0.0011803237942065747, -0.001474789325663597, 0.0019932239640818973, -0.0016650951237667812, -0.0014059126109998473, -0.0016543968331469575, -0.0008314349393888156, -0.000618403552673074, -0.0013944486033297793, -0.0006493568404171098, -0.0006204928741086668, -0.0017478218880243247, -0.00021436125198074667, -0.00016893867057145748, -0.0013667881350099278, -8.047634561383431e-5, 0.0007065257441874367, -0.001122519331548649, 4.927011158865933e-5, 0.0006576494859196053, 0.00013969749903832598, 0.0002113145220114493, 0.0006442354015629097, 0.0004012467860830509, 0.0001953187746239179, 0.0006159144049031583, 0.0003741842200004241, -0.00035205986174521945, 0.0004934040488233628, -6.65856169460231e-5, -0.0015734004030686518, 5.8385923173868335e-5, -1.3922301175496468e-5, -0.00023610894690245001, -1.0585167668671168e-5, -7.809226949903645e-5, -2.6362521218134573e-5, -0.0004000108988545385, 2.5753402403968053e-5, 0.00019928464332316718, -3.958656720493746e-5, 0.0002312566966146941, 4.600804136922472e-6, -4.5799338192451596e-5, 2.6529432713635407e-5, 0.00017293525762226224, -7.588678850098022e-5, -5.035071592395222e-5, 2.213319026366543e-6, -1.0489673673746576e-5, -5.3356006417619076e-5, 0.06497094305873513, 0.06497094305870264, -0.004325758563359803, 0.11799897740483443, 0.11368657740571109, 0.04646163566854511, 0.029870219703593333, 0.07634673463549926, 0.06227980032798159, -0.005135877276452542, 0.05715399675624973, 0.04582501339905866, 0.02144493238977019, 0.06728121584754912, 0.03564116542669912, 0.022731104452917, 0.05838080045381447, 0.054297308366964975, -0.017921487494890552, -0.08647463917880222, 0.02343723818244061, 0.10820365212024732, 0.054516553521319615, -0.11827929794033505, -0.24477845900123066, -0.02052038699787544, 0.1086302075574961, 0.15007566148359636, -0.1071169986892195, -0.19899977112075973, 0.046792137860037886, 0.04505221962857614, -0.04446708461094639, -0.3304113284636094, 0.027323806073623096, 0.04872918457630077, 0.026810511718391425, -0.052204999702355516, -0.2618344811578321, 0.04573667233236991, 0.02532251394518271, -0.011542882497045994, -0.14488783392403154, 0.07415712663495817, 0.04423204166999176, 0.03079485743061925, -0.037758296494962144, -0.13106753266855925, 0.11113281439809689, 0.05104251996420418, 0.02633418655504245, -0.01906930687514958, -0.4399563495215268, 0.09011660747389547, 0.13469142252183106, 0.03463842464641148, 0.006174111435113394, 0.014225690310292674, -0.3195753255434686, 0.07546916106344946, 0.15039878687381023, 0.0441280542927976, 0.07787275773921737, 0.02385659561015071, 0.07128763213477018, -0.1489738335847111, 0.20351342341436915, -0.10011500624658741, 0.04430980327899847, 0.0308175213277667, 0.03842883603245965, 0.1994445525810153, -0.21512212683206722, 0.20634425711332186, -0.11220967207529031, 0.03410470057074992, 0.0033501112115515274, 0.10077135072641136, 0.15035201453719563, -0.06342501106240453, -0.020198658250754953, 0.027772472926895997, 0.0006916674804729436, 0.1433556451506913, 0.08668551272553499, -0.8499799138482538, 0.023529452676611096, 0.042111642731066615, 0.0011908526782773191, 0.12884454934323028, 0.07597104081690036, -0.05926573292803965, -0.03484699501167591, 0.05583668981187144, -0.03037754303720138, 0.10063575122259041, 0.146480624230529, 0.006904399201344649, 0.00967994872202523, 0.03130359320990225, 0.11390861282070659, 0.20654537065956313, -0.198248718119508, 0.015992199135405356, 0.00937087767810677, 0.0036498814311754927, -0.0010287024306469695, 0.018634658656524868, 0.004386881064995726, 0.018409018740955907, -0.008422663897869618, -0.029788878487289505, -0.01075039645399971, -0.00643236327038113, 0.03229557630453324, -0.026165637987984998, -0.008077411298576712, 0.04270136069513745, 0.013005893677249011, -0.0646070125716393, 0.022635133158499236, 0.002656044334923448, 0.021752821305981246, -0.012653044836526395, 0.014404894047867869, 0.015615462277627938, 0.01891131751831526, -0.03124453691638018, -0.009180636809498169, 0.02114609849906562, 0.0018766709013168677, -0.0303091208727899, 0.009161180856553272, -0.0007851920090063263, 0.026085785672869854, 0.014199604825506215, -0.005302344923929208, -0.00019765431681511753, 0.021291049562016936, -0.001390205807178809, -0.01408329264829836, 0.012887953932871659, 0.0001447174868865724, 0.010343222401065633, 0.06426279862272445, -0.00012234971634721479, -0.0044582214832298685, 0.026810859245663704, 0.03013466775317532, -0.026548510135908903, 0.014740995370070637, 0.012976530982230904, -0.01369600430436778, 0.01758553942512935, -0.032808532084538745, 2.8237366851197384e-6, -0.1099776352985929, -0.010750358562564231, 0.010788966879044676, 0.02979456031037373, 0.013781427664458548, 0.0003330884264720939, -0.07988424589299076, -0.00744188909369336, 0.010033129361818587, 0.03442239400402834, -0.06830369460672595, 0.0052749374617061815, 0.017827792074877623, -0.00801770355359527, -0.004433440379516162, -0.008167059562244334, 0.02587184624988899, 0.01906814573524064, -0.0046065101362958785, 0.049869556716630146, 0.035256688533291176, -0.0020956016093654846, 0.05231220438804269, 0.04454961318392764, 0.008672643434335358, -0.017996568901759692, 0.03759344008674031, -0.009509044098073299, 0.03989302185976384, 0.01764078571159857, -0.05057071957432984, -0.014726429051322763, 0.02167805857870804, 0.0134536199317392, -0.07253064242205681, 0.012195663471516969, 0.040189306366069134, 0.006771615983014163, 0.018994315630503068, 0.0033569258069230104, -0.057504529915946984, 0.0008860053270633168, -0.02333349760298935, 0.018152846019640012, 0.03661773343969234, 0.012202382368798406, 0.021099082188636778, 0.02148385337657062, 0.0022548400654949278, 0.05162887930824819, -0.02262072771916333, 0.025430009811709602, 0.8378212250382088, 0.3711732783962165, 0.5792603690755813, 0.7396301521078372, -0.07791216041636308, 0.9364681504477663, -0.1449406418776305, 0.9282033901744363, -0.07481060289946365, 0.9366862636383384, -0.09572349104509376, 0.934557847235954, -0.1874122180380515, 0.9208245389101678, 0.017452252778165887, 0.9392555173513174, -0.10841817774972605, 0.9333331436725806, 0.010705803292831292, 0.9393586658347945, -0.1831047450386707, 0.9214415994129324, -0.06856399479171374, 0.9369327072673803, 0.7760871830962109, 0.5254953209863477, -0.10530559229200671, 0.9336441284544098, -0.024402497980270308, 0.939102939334079, -0.17124920199031568, 0.9232593416711221, 0.9362353721812785, 0.11425630588604481, -0.22397684810910257, 0.912247637178091, -0.06972276234588445, 0.9368474536000354, -0.0023704901997013334, 0.9394282269284937, 0.01613645468971145, 0.9395041941349439, -0.006596086496922649, 0.9393936748631911, -0.21602058185610165, 0.9140162782717338, 0.02289322066742366, 0.9394062188061949, -0.34697141379142216, 0.8727972010143802, -0.09553060519002932, 0.9345688607385462, -0.0503757394789245, 0.938221958164644, -0.04149060850740385, 0.9387053986459146, 0.09367080825682841, 0.9347539881183492, -0.15677970802246705, 0.9263024376008111, -0.08330144182938765, 0.9358241305936865, -0.3974779349013914, 0.8511935749344622, -0.04838516889563614, 0.9381765351043804, -0.10461322989506731, 0.9337321225201171, -0.04799933878106527, 0.9383757985352408, -0.08169994594658304, 0.9359852810366764, 0.042204139792311614, 0.938469043525358, -0.2850136407012658, 0.895127955813825, 0.8045583628056444, 0.4861622720667999, -0.14421145393061943, 0.9283276633474699, -0.3314167237409057, 0.879282481752594, -0.03720830675938843, 0.9386803285880501, -0.04761236981696317, 0.9383379912109501, -0.07755296382731088, 0.9362029979878788, -0.09591473175974988, 0.934660026581429, -0.13229150752617294, 0.9301760304923676, 0.012845917893272267, 0.939324171895692, -0.24599812118046227, 0.9067431990330616, -0.3370529458328869, 0.8767579137913436, -0.24064624356238898, 0.9081262821380015, -0.29057194897765426, 0.8936164858673696, -0.9309349695215701, -0.1272315631757466, 0.03160058084128897, 0.9388825055663192, -0.12822925148421283, 0.9307473621860971, -0.13209804801635738, 0.9300797473160745, -0.09868215072045569, 0.9343493853443303, -0.11963417540825823, 0.931820390614717, -0.12103479497481447, 0.931667046585807, 0.03727998119638955, 0.9386726436284459, -0.48256042346501077, 0.8061544525829588, -0.42475522669924887, 0.8380121658743179, -0.8339711032202407, 0.43281097490038645, 0.4916723571680399, 0.8000755058898846, 0.09510169907633088, 0.9345904812320871, -0.52211967951903, 0.7811302509143588, -0.21918216272801597, 0.9136084148208975, -0.8836644209248555, 0.3189277720569458, 0.5450230272441993, 0.7650816117765998, 0.13504229590941544, 0.9296560736810145, -0.5600204053004245, 0.7543899152303811, -0.13410388584153923, 0.9298742656659101, -0.6434935029214649, 0.6845554678380027, 0.6607696603343582, 0.6677700496690586, 0.11338957746024068, 0.9325391700258405, -0.3860801527571431, 0.8565091071881161, -0.10868475232405919, 0.9331408868323022, -0.3776872353415027, 0.8602825871373524, 0.2006697122812261, 0.9176812014146424, -0.15042510853228616, 0.927293825107057, 0.03931613242430394, 0.9385951047192543, -0.10865657575663044, 0.9331177170934307, 0.18575868555379801, 0.920870262353367, 0.008304357545082283, 0.9394690731940174, -0.0853425951037656, 0.9355446600744132, -0.00038460491231108874, 0.939406376341636, 0.13142364592987252, 0.9301968234928402, 0.0027482168293706502, 0.9394314860716411, 0.007188727735083159, 0.9393838178913063, -0.019777060587437608, 0.9393370272301519, -0.01728332862824186, 0.9392614605608742, 0.024301841915790445, 0.9392275365490151, -0.09812285322972603, 0.9342923392659211, -0.030722239637051302, 0.9390470779834809, 0.01818232772015004, 0.9392421608213084, -0.0069849674217532295, 0.9393911314247085, 0.021650194272142292, 0.939266230907506, 0.06749275887349851, 0.936999792582832, 0.041986268226988886, 0.9385799112915325, 0.017039435937890778, 0.939516680985366, -0.006364676159663695, 0.9394088677092449, -0.033259220707032695, 0.9388279198957217, -0.0604116529789001, 0.9376454338606709, -0.012786001845669902, 0.9395353883504115, -0.038059083972396546, 0.938647842032993, 0.04081471499755464, 0.9386533234663668, -0.03479671617280875, 0.9390490871250652, 0.007526749720102198, 0.9393986399141029, 0.06465568865353252, 0.9371936390944178, -0.029531813438323812, 0.939071939480163, 0.02791910486091984, 0.939219166720745, -0.07705465805468695, 0.9362597904250913, -0.03378357711426272, 0.9389286977282197, 0.010466657968267823, 0.9395165955659658, 0.01395288721989991, 0.9393592808317717, 0.0905195079436396, 0.9350488299377819, 0.01845082521436896, 0.9393074977953714, -0.00019188196526434808, 0.9394673303087772, -0.02326780645117896, 0.9391708796849544, -0.07160220910352184, 0.9366868668644407, 0.019787684946381102, 0.9392775407563345, 0.0013384434336467695, 0.9394196449701232, -0.006263481561719288, 0.9394616661392249, -0.0015892912203845887, 0.9394002538017543, 0.02942034890792175, 0.938956324050595, -0.029286827950322974, 0.939026120625299, -0.0005289733603235971, 0.9394050885986243, 0.03914497444111122, 0.9387768452262173, 0.01710484142015407, 0.9392733302580967, 0.0033570650488785885, 0.939408904507119, -0.028712770693552533, 0.9390283746427052, -0.0003742464379129105, 0.939415010813041, 0.004068058581445184, 0.9394218074755973, -0.039499899586368896, 0.9385947534478786, -0.304267950203684, 0.8890934326139637, 0.04075499086128786, 0.9385308938757202, 0.036557237205472215, 0.938771393520399, -0.00011811365325856932, 0.9394119027759785, -0.01283233115643865, 0.9393982848829947, -0.018406050657826554, 0.9392451832801177, 0.315529663258491, 0.8850085235276512, -0.05206524503091793, 0.9379733932478629, -0.012627018329240753, 0.9393261283893575, -0.00041259193144995186, 0.9394110073175224, -0.068178789711376, 0.9370128887953132, 0.21943126376146, 0.9137165911125549, 0.04719048545034312, 0.9382246804557639, 0.10964291088298367, 0.9330649309874227, -0.00019560949400272478, 0.9394115332608668, 0.019431744113159465, 0.9392671833951509, -0.12669989420902494, 0.9308452855867372, 0.013051005195566661, 0.9393290170617257, 0.08939598873816215, 0.9352079575728706, -8.570301415611637e-5, 0.9394088019811707, -0.015855430764653202, 0.9392954590247409, -0.25374501662388244, 0.9045976750334913, 0.006291306697248569, 0.9393821457088986, -0.004802868042952632, 0.939410734452841, -0.00010203913794921714, 0.9394084942349034, -0.03493530280332796, 0.9387861396158683, 0.18013549926193181, 0.9219634562587463, -0.03148285883357918, 0.9388984661405895, -1.3851347034538073e-5, 0.9394237629452415, 0.0007557431020632764, 0.9394109238954553, -0.054607294630954706, 0.9378403765848995, 0.008578803534597891, -0.08138694397807297, 0.030871114790475124, -1.1609004826041588e-8, 0.018226643414608276, -0.1502405816834812, -0.028202568223959248, -0.06619089186394671, 0.021992965207586337, 0.06582403602176695, 1.601977497940592e-14, 0.04453147539626923, -0.014782579368165136, 0.07745015845928231, 0.014768238604126828, 0.04943463937381049, -0.04216917796842725, 0.04889649593487325, 0.004391257721865958, 0.10921460554323936, 0.06393053456984422, -0.0652450450785408, 0.047180605690515645, 0.09172038228351893, 0.030227671090574094, 0.016447572630253055, -0.029822298831480663, 0.053624114680579156]
Final objective value: -2748.756300877951
)
Now let's evaluate our fits by plotting the residuals
using CairoMakie
res = residuals(post, xopt)
fig = Figure(;size=(800, 600))
baselineplot(fig[1,1], res[1], :uvdist, x->Comrade.measurement(x)[1,1]/noise(x)[1,1], axis=(ylabel="RR Residual", xlabel="uv distance (λ)"))
baselineplot(fig[2,1], res[1], :uvdist, x->Comrade.measurement(x)[2,1]/noise(x)[1,1], axis=(ylabel="LR Residual", xlabel="uv distance (λ)"))
baselineplot(fig[1,2], res[1], :uvdist, x->Comrade.measurement(x)[1,2]/noise(x)[1,1], axis=(ylabel="RL Residual", xlabel="uv distance (λ)"))
baselineplot(fig[2,2], res[1], :uvdist, x->Comrade.measurement(x)[2,2]/noise(x)[1,1], axis=(ylabel="LL Residual", xlabel="uv distance (λ)"))
fig |> DisplayAs.PNG |> DisplayAs.Text
These look reasonable, although there may be some minor overfitting. Let's compare our results to the ground truth values we know in this example. First, we will load the polarized truth
imgtrue = load_fits(joinpath(__DIR, "..", "..", "Data", "polarized_gaussian.fits"), IntensityMap{StokesParams});
Select a reasonable zoom in of the image.
imgtruesub = regrid(imgtrue, imagepixels(fovx, fovy, nx*4, ny*4))
img = intensitymap(Comrade.skymodel(post, xopt), axisdims(imgtruesub))
#Plotting the results gives
fig = imageviz(img, adjust_length=true, colormap=:bone, pcolormap=:RdBu)
fig |> DisplayAs.PNG |> DisplayAs.Text
Note
The image looks a little noisy. This is an artifact of the MAP image. To get a publication quality image we recommend sampling from the posterior and averaging the samples. The results will be essentially identical to the results from EHTC VII.
We can also analyze the instrument model. For example, we can look at the gain ratios and products. To grab the ratios and products we can use the caltable
function which will return analyze the gprat array and convert it to a uniform table. We can then plot the gain phases and amplitudes.
gphase_ratio = caltable(xopt.instrument.gprat)
gamp_ratio = caltable(exp.(xopt.instrument.lgrat))
─────────┬───────────────────┬─────────────────────────────────────────────────────────────
Ti │ Fr │ AA AP AZ JC LM PV SM
─────────┼───────────────────┼─────────────────────────────────────────────────────────────
0.58 hr │ 227.070703125 GHz │ 1.009 missing missing missing missing 1.004 missing
0.73 hr │ 227.070703125 GHz │ 0.999 1.019 missing missing missing 1.004 missing
0.88 hr │ 227.070703125 GHz │ 1.019 0.992 missing missing missing 0.971 missing
1.3 hr │ 227.070703125 GHz │ 0.989 0.994 missing missing missing 1.033 missing
1.45 hr │ 227.070703125 GHz │ 0.974 0.992 missing missing missing 1.044 missing
1.89 hr │ 227.070703125 GHz │ 1.013 0.937 missing missing missing 1.023 missing
2.04 hr │ 227.070703125 GHz │ 1.003 1.022 0.987 missing missing 1.015 missing
2.46 hr │ 227.070703125 GHz │ 1.016 1.019 0.969 missing 0.991 1.021 missing
2.61 hr │ 227.070703125 GHz │ 1.002 0.97 1.009 missing 0.999 missing missing
3.06 hr │ 227.070703125 GHz │ 1.026 1.014 0.995 missing 1.0 1.022 missing
3.21 hr │ 227.070703125 GHz │ 0.999 0.986 1.013 missing 1.0 missing missing
3.62 hr │ 227.070703125 GHz │ 1.01 1.066 1.0 missing 0.996 1.027 missing
3.78 hr │ 227.070703125 GHz │ 1.031 0.974 1.015 missing 1.013 0.986 missing
4.23 hr │ 227.070703125 GHz │ 1.018 0.968 1.0 0.896 0.989 1.011 missing
4.37 hr │ 227.070703125 GHz │ 1.03 1.014 1.0 0.923 0.993 1.01 missing
4.79 hr │ 227.070703125 GHz │ 1.035 0.934 1.005 1.018 0.992 0.996 0.992
4.95 hr │ 227.070703125 GHz │ 1.026 1.019 0.995 1.051 1.036 0.998 1.054
5.63 hr │ 227.070703125 GHz │ 1.046 1.009 0.982 1.038 0.991 missing 1.041
6.15 hr │ 227.070703125 GHz │ 1.018 0.951 0.985 1.022 1.014 missing 0.93
6.72 hr │ 227.070703125 GHz │ 1.012 1.041 1.007 1.019 1.003 missing 0.944
7.23 hr │ 227.070703125 GHz │ 1.001 0.977 1.018 1.037 1.012 missing 1.021
7.44 hr │ 227.070703125 GHz │ 1.022 missing 1.002 1.053 0.978 missing 1.026
─────────┴───────────────────┴─────────────────────────────────────────────────────────────
Plotting the phases first, we see large trends in the righ circular polarization phase. This is expected due to a lack of image centroid and the absense of absolute phase information in VLBI. However, the gain phase difference between the left and right circular polarization is stable and close to zero. This is expected since gain ratios are typically stable over the course of an observation and the constant offset was removed in the EHT calibration process.
gphaseR = caltable(xopt.instrument.gpR)
fig = plotcaltable(gphaseR, gphase_ratio, labels=["R Phase", "L/R Phase"]);
fig |> DisplayAs.PNG |> DisplayAs.Text
Moving to the amplitudes we see largely stable gain amplitudes on the right circular polarization except for LMT which is known and due to pointing issues during the 2017 observation. Again the gain ratios are stable and close to unity. Typically we expect that apriori calibration should make the gain ratios close to unity.
gampr = caltable(exp.(xopt.instrument.lgR))
fig = plotcaltable(gampr, gamp_ratio, labels=["R Amp", "L/R Amp"], axis_kwargs=(;limits=(nothing, (0.6, 1.3))));
fig |> DisplayAs.PNG |> DisplayAs.Text
To sample from the posterior, you can then just use the sample
function from AdvancedHMC like in the other imaging examples. For example
using AdvancedHMC
chain = sample(rng, post, NUTS(0.8), 10_000, n_adapts=5000, progress=true, initial_params=xopt)
This page was generated using Literate.jl.
Hamaker J.P, Bregman J.D., Sault R.J. (1996) [https://articles.adsabs.harvard.edu/pdf/1996A%26AS..117..137H] ↩︎
Pesce D. (2021) [https://ui.adsabs.harvard.edu/abs/2021AJ....161..178P/abstract] ↩︎