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:
JonesGwhich builds the set of complex gain Jones matrices
JonesDwhich builds the set of complex d-terms Jones matrices
JonesRis the ideal telescope response. 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 Ffor 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 ComradeLoad the Data
using Pyehtim CondaPkg Found dependencies: /home/runner/.julia/packages/CondaPkg/8GjrP/CondaPkg.toml
CondaPkg Found dependencies: /home/runner/.julia/packages/PythonCall/83z4q/CondaPkg.toml
CondaPkg Found dependencies: /home/runner/.julia/packages/Pyehtim/bQtHC/CondaPkg.toml
CondaPkg Resolving changes
+ ehtim (pip)
+ libstdcxx
+ libstdcxx-ng
+ numpy
+ numpy (pip)
+ openssl
+ pandas
+ python
+ setuptools (pip)
+ uv
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.6"
│ libstdcxx = ">=3.4,<15.0"
│ uv = ">=0.4"
│ libstdcxx-ng = ">=3.4,<15.0"
│ pandas = "<2"
│ numpy = ">=1.24, <2.0"
│
│ [dependencies.python]
│ channel = "conda-forge"
│ build = "*cp*"
│ version = ">=3.10,!=3.14.0,!=3.14.1,<4, >=3.6,<=3.12"
│
│ [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(48)StableRNGs.LehmerRNG(state=0x00000000000000000000000000000061)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 0x7f636d9f6990>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 0x7f636a8e7990>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.PolExp2MapThe 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.
function sky(θ, metadata)
(; σs, as) = θ
(; mimg, ftot) = metadata
# Build the stokes I model
δs = ntuple(Val(4)) do i
σs[i] * as[i].params
end
# Convert hyperbolic polarization basis to Stokes basis
pmap = VLBISkyModels.PolExp2Map!(δs..., axisdims(mimg))
# We now add a mean image. Namely, we assume that `pmap` are multiplicative fluctuations
# about some mean image `mimg`. We also compute the total flux of the Stokes I image
# for normalization purposes below.
ft = zero(eltype(mimg))
for i in eachindex(pmap, mimg)
pmap[i] *= mimg[i]
ft += pmap[i].I
end
pmap .= ftot .* pmap ./ ft
m = ContinuousImage(pmap, BSplinePulse{3}())
x, y = centroid(pmap)
return shifted(m, -x, -y)
endsky (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 = 48
grid = imagepixels(fovx, fovy, nx, ny)
fwhmfac = 2 * sqrt(2 * log(2))
mpr = modify(Gaussian(), Stretch(μas2rad(50.0) ./ fwhmfac))
mimg = intensitymap(mpr, grid)┌ 48×48 IntensityMap{Float64, 2} ┐
├────────────────────────────────┴─────────────────────────────────────── dims ┐
↓ X Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points
└──────────────────────────────────────────────────────────────────────────────┘
↓ → -4.74713e-10 -4.54513e-10 -4.34312e-10 -4.14112e-10 -3.93911e-10 -3.73711e-10 -3.5351e-10 -3.33309e-10 -3.13109e-10 -2.92908e-10 -2.72708e-10 -2.52507e-10 -2.32307e-10 -2.12106e-10 -1.91905e-10 -1.71705e-10 -1.51504e-10 -1.31304e-10 -1.11103e-10 -9.09026e-11 -7.0702e-11 -5.05014e-11 -3.03009e-11 -1.01003e-11 1.01003e-11 3.03009e-11 5.05014e-11 7.0702e-11 9.09026e-11 1.11103e-10 1.31304e-10 1.51504e-10 1.71705e-10 1.91905e-10 2.12106e-10 2.32307e-10 2.52507e-10 2.72708e-10 2.92908e-10 3.13109e-10 3.33309e-10 3.5351e-10 3.73711e-10 3.93911e-10 4.14112e-10 4.34312e-10 4.54513e-10 4.74713e-10
-4.74713e-10 0.0 0.0 0.0 0.0 9.76922e-11 2.03055e-10 4.0611e-10 7.81538e-10 1.44721e-9 2.57864e-9 4.42105e-9 7.29349e-9 1.15777e-8 1.76842e-8 2.59911e-8 3.67569e-8 5.00184e-8 6.54933e-8 8.25164e-8 1.00037e-7 1.16696e-7 1.30987e-7 1.41473e-7 1.47028e-7 1.47028e-7 1.41473e-7 1.30987e-7 1.16696e-7 1.00037e-7 8.25164e-8 6.54933e-8 5.00184e-8 3.67569e-8 2.59911e-8 1.76842e-8 1.15777e-8 7.29349e-9 4.42105e-9 2.57864e-9 1.44721e-9 7.81538e-10 4.0611e-10 2.03055e-10 9.76922e-11 0.0 0.0 0.0 0.0
-4.54513e-10 0.0 0.0 0.0 1.09656e-10 2.3687e-10 4.92338e-10 9.84676e-10 1.89496e-9 3.50899e-9 6.2523e-9 1.07195e-8 1.76842e-8 2.80719e-8 4.2878e-8 6.30193e-8 8.91227e-8 1.21277e-7 1.58799e-7 2.00074e-7 2.42555e-7 2.82947e-7 3.17597e-7 3.43024e-7 3.56491e-7 3.56491e-7 3.43024e-7 3.17597e-7 2.82947e-7 2.42555e-7 2.00074e-7 1.58799e-7 1.21277e-7 8.91227e-8 6.30193e-8 4.2878e-8 2.80719e-8 1.76842e-8 1.07195e-8 6.2523e-9 3.50899e-9 1.89496e-9 9.84676e-10 4.92338e-10 2.3687e-10 1.09656e-10 0.0 0.0 0.0
-4.34312e-10 0.0 0.0 1.13961e-10 2.55833e-10 5.52631e-10 1.14865e-9 2.29731e-9 4.42105e-9 8.18667e-9 1.4587e-8 2.50092e-8 4.12582e-8 6.54933e-8 1.00037e-7 1.47028e-7 2.07928e-7 2.82947e-7 3.70486e-7 4.66784e-7 5.65894e-7 6.60132e-7 7.40973e-7 8.00295e-7 8.31714e-7 8.31714e-7 8.00295e-7 7.40973e-7 6.60132e-7 5.65894e-7 4.66784e-7 3.70486e-7 2.82947e-7 2.07928e-7 1.47028e-7 1.00037e-7 6.54933e-8 4.12582e-8 2.50092e-8 1.4587e-8 8.18667e-9 4.42105e-9 2.29731e-9 1.14865e-9 5.52631e-10 2.55833e-10 1.13961e-10 0.0 0.0
-4.14112e-10 0.0 1.09656e-10 2.55833e-10 5.74327e-10 1.24061e-9 2.57864e-9 5.15728e-9 9.92491e-9 1.83784e-8 3.27467e-8 5.61438e-8 9.26216e-8 1.47028e-7 2.24575e-7 3.30066e-7 4.66784e-7 6.35194e-7 8.31714e-7 1.04789e-6 1.27039e-6 1.48195e-6 1.66343e-6 1.7966e-6 1.86713e-6 1.86713e-6 1.7966e-6 1.66343e-6 1.48195e-6 1.27039e-6 1.04789e-6 8.31714e-7 6.35194e-7 4.66784e-7 3.30066e-7 2.24575e-7 1.47028e-7 9.26216e-8 5.61438e-8 3.27467e-8 1.83784e-8 9.92491e-9 5.15728e-9 2.57864e-9 1.24061e-9 5.74327e-10 2.55833e-10 1.09656e-10 0.0
-3.93911e-10 9.76922e-11 2.3687e-10 5.52631e-10 1.24061e-9 2.67987e-9 5.57017e-9 1.11403e-8 2.1439e-8 3.96996e-8 7.07367e-8 1.21277e-7 2.00074e-7 3.17597e-7 4.85109e-7 7.12982e-7 1.00831e-6 1.3721e-6 1.7966e-6 2.26358e-6 2.74419e-6 3.20118e-6 3.5932e-6 3.88087e-6 4.03323e-6 4.03323e-6 3.88087e-6 3.5932e-6 3.20118e-6 2.74419e-6 2.26358e-6 1.7966e-6 1.3721e-6 1.00831e-6 7.12982e-7 4.85109e-7 3.17597e-7 2.00074e-7 1.21277e-7 7.07367e-8 3.96996e-8 2.1439e-8 1.11403e-8 5.57017e-9 2.67987e-9 1.24061e-9 5.52631e-10 2.3687e-10 9.76922e-11
-3.73711e-10 2.03055e-10 4.92338e-10 1.14865e-9 2.57864e-9 5.57017e-9 1.15777e-8 2.31554e-8 4.45613e-8 8.25164e-8 1.47028e-7 2.52077e-7 4.15857e-7 6.60132e-7 1.00831e-6 1.48195e-6 2.09579e-6 2.85193e-6 3.73427e-6 4.70488e-6 5.70385e-6 6.65371e-6 7.46854e-6 8.06647e-6 8.38315e-6 8.38315e-6 8.06647e-6 7.46854e-6 6.65371e-6 5.70385e-6 4.70488e-6 3.73427e-6 2.85193e-6 2.09579e-6 1.48195e-6 1.00831e-6 6.60132e-7 4.15857e-7 2.52077e-7 1.47028e-7 8.25164e-8 4.45613e-8 2.31554e-8 1.15777e-8 5.57017e-9 2.57864e-9 1.14865e-9 4.92338e-10 2.03055e-10
-3.5351e-10 4.0611e-10 9.84676e-10 2.29731e-9 5.15728e-9 1.11403e-8 2.31554e-8 4.63108e-8 8.91227e-8 1.65033e-7 2.94055e-7 5.04154e-7 8.31714e-7 1.32026e-6 2.01662e-6 2.96389e-6 4.19157e-6 5.70385e-6 7.46854e-6 9.40977e-6 1.14077e-5 1.33074e-5 1.49371e-5 1.61329e-5 1.67663e-5 1.67663e-5 1.61329e-5 1.49371e-5 1.33074e-5 1.14077e-5 9.40977e-6 7.46854e-6 5.70385e-6 4.19157e-6 2.96389e-6 2.01662e-6 1.32026e-6 8.31714e-7 5.04154e-7 2.94055e-7 1.65033e-7 8.91227e-8 4.63108e-8 2.31554e-8 1.11403e-8 5.15728e-9 2.29731e-9 9.84676e-10 4.0611e-10
-3.33309e-10 7.81538e-10 1.89496e-9 4.42105e-9 9.92491e-9 2.1439e-8 4.45613e-8 8.91227e-8 1.71512e-7 3.17597e-7 5.65894e-7 9.70218e-7 1.60059e-6 2.54078e-6 3.88087e-6 5.70385e-6 8.06647e-6 1.09768e-5 1.43728e-5 1.81086e-5 2.19535e-5 2.56094e-5 2.87456e-5 3.1047e-5 3.22659e-5 3.22659e-5 3.1047e-5 2.87456e-5 2.56094e-5 2.19535e-5 1.81086e-5 1.43728e-5 1.09768e-5 8.06647e-6 5.70385e-6 3.88087e-6 2.54078e-6 1.60059e-6 9.70218e-7 5.65894e-7 3.17597e-7 1.71512e-7 8.91227e-8 4.45613e-8 2.1439e-8 9.92491e-9 4.42105e-9 1.89496e-9 7.81538e-10
-3.13109e-10 1.44721e-9 3.50899e-9 8.18667e-9 1.83784e-8 3.96996e-8 8.25164e-8 1.65033e-7 3.17597e-7 5.8811e-7 1.04789e-6 1.7966e-6 2.96389e-6 4.70488e-6 7.1864e-6 1.05621e-5 1.49371e-5 2.03262e-5 2.66148e-5 3.35326e-5 4.06524e-5 4.74222e-5 5.32297e-5 5.74912e-5 5.97483e-5 5.97483e-5 5.74912e-5 5.32297e-5 4.74222e-5 4.06524e-5 3.35326e-5 2.66148e-5 2.03262e-5 1.49371e-5 1.05621e-5 7.1864e-6 4.70488e-6 2.96389e-6 1.7966e-6 1.04789e-6 5.8811e-7 3.17597e-7 1.65033e-7 8.25164e-8 3.96996e-8 1.83784e-8 8.18667e-9 3.50899e-9 1.44721e-9
-2.92908e-10 2.57864e-9 6.2523e-9 1.4587e-8 3.27467e-8 7.07367e-8 1.47028e-7 2.94055e-7 5.65894e-7 1.04789e-6 1.86713e-6 3.20118e-6 5.28105e-6 8.38315e-6 1.28047e-5 1.88195e-5 2.66148e-5 3.62172e-5 4.74222e-5 5.97483e-5 7.24344e-5 8.44968e-5 9.48445e-5 0.000102438 0.000106459 0.000106459 0.000102438 9.48445e-5 8.44968e-5 7.24344e-5 5.97483e-5 4.74222e-5 3.62172e-5 2.66148e-5 1.88195e-5 1.28047e-5 8.38315e-6 5.28105e-6 3.20118e-6 1.86713e-6 1.04789e-6 5.65894e-7 2.94055e-7 1.47028e-7 7.07367e-8 3.27467e-8 1.4587e-8 6.2523e-9 2.57864e-9
-2.72708e-10 4.42105e-9 1.07195e-8 2.50092e-8 5.61438e-8 1.21277e-7 2.52077e-7 5.04154e-7 9.70218e-7 1.7966e-6 3.20118e-6 5.48838e-6 9.0543e-6 1.43728e-5 2.19535e-5 3.22659e-5 4.56308e-5 6.2094e-5 8.13049e-5 0.000102438 0.000124188 0.000144869 0.00016261 0.000175628 0.000182523 0.000182523 0.000175628 0.00016261 0.000144869 0.000124188 0.000102438 8.13049e-5 6.2094e-5 4.56308e-5 3.22659e-5 2.19535e-5 1.43728e-5 9.0543e-6 5.48838e-6 3.20118e-6 1.7966e-6 9.70218e-7 5.04154e-7 2.52077e-7 1.21277e-7 5.61438e-8 2.50092e-8 1.07195e-8 4.42105e-9
-2.52507e-10 7.29349e-9 1.76842e-8 4.12582e-8 9.26216e-8 2.00074e-7 4.15857e-7 8.31714e-7 1.60059e-6 2.96389e-6 5.28105e-6 9.0543e-6 1.49371e-5 2.37111e-5 3.62172e-5 5.32297e-5 7.52781e-5 0.000102438 0.00013413 0.000168994 0.000204875 0.000238993 0.000268261 0.000289738 0.000301113 0.000301113 0.000289738 0.000268261 0.000238993 0.000204875 0.000168994 0.00013413 0.000102438 7.52781e-5 5.32297e-5 3.62172e-5 2.37111e-5 1.49371e-5 9.0543e-6 5.28105e-6 2.96389e-6 1.60059e-6 8.31714e-7 4.15857e-7 2.00074e-7 9.26216e-8 4.12582e-8 1.76842e-8 7.29349e-9
-2.32307e-10 1.15777e-8 2.80719e-8 6.54933e-8 1.47028e-7 3.17597e-7 6.60132e-7 1.32026e-6 2.54078e-6 4.70488e-6 8.38315e-6 1.43728e-5 2.37111e-5 3.76391e-5 5.74912e-5 8.44968e-5 0.000119497 0.00016261 0.000212919 0.000268261 0.00032522 0.000379378 0.000425837 0.00045993 0.000477986 0.000477986 0.00045993 0.000425837 0.000379378 0.00032522 0.000268261 0.000212919 0.00016261 0.000119497 8.44968e-5 5.74912e-5 3.76391e-5 2.37111e-5 1.43728e-5 8.38315e-6 4.70488e-6 2.54078e-6 1.32026e-6 6.60132e-7 3.17597e-7 1.47028e-7 6.54933e-8 2.80719e-8 1.15777e-8
-2.12106e-10 1.76842e-8 4.2878e-8 1.00037e-7 2.24575e-7 4.85109e-7 1.00831e-6 2.01662e-6 3.88087e-6 7.1864e-6 1.28047e-5 2.19535e-5 3.62172e-5 5.74912e-5 8.78141e-5 0.000129063 0.000182523 0.000248376 0.00032522 0.000409751 0.000496752 0.000579475 0.000650439 0.000702513 0.000730093 0.000730093 0.000702513 0.000650439 0.000579475 0.000496752 0.000409751 0.00032522 0.000248376 0.000182523 0.000129063 8.78141e-5 5.74912e-5 3.62172e-5 2.19535e-5 1.28047e-5 7.1864e-6 3.88087e-6 2.01662e-6 1.00831e-6 4.85109e-7 2.24575e-7 1.00037e-7 4.2878e-8 1.76842e-8
-1.91905e-10 2.59911e-8 6.30193e-8 1.47028e-7 3.30066e-7 7.12982e-7 1.48195e-6 2.96389e-6 5.70385e-6 1.05621e-5 1.88195e-5 3.22659e-5 5.32297e-5 8.44968e-5 0.000129063 0.000189689 0.000268261 0.000365047 0.000477986 0.000602225 0.000730093 0.000851675 0.000955973 0.00103251 0.00107304 0.00107304 0.00103251 0.000955973 0.000851675 0.000730093 0.000602225 0.000477986 0.000365047 0.000268261 0.000189689 0.000129063 8.44968e-5 5.32297e-5 3.22659e-5 1.88195e-5 1.05621e-5 5.70385e-6 2.96389e-6 1.48195e-6 7.12982e-7 3.30066e-7 1.47028e-7 6.30193e-8 2.59911e-8
-1.71705e-10 3.67569e-8 8.91227e-8 2.07928e-7 4.66784e-7 1.00831e-6 2.09579e-6 4.19157e-6 8.06647e-6 1.49371e-5 2.66148e-5 4.56308e-5 7.52781e-5 0.000119497 0.000182523 0.000268261 0.000379378 0.000516254 0.000675975 0.000851675 0.00103251 0.00120445 0.00135195 0.00146019 0.00151751 0.00151751 0.00146019 0.00135195 0.00120445 0.00103251 0.000851675 0.000675975 0.000516254 0.000379378 0.000268261 0.000182523 0.000119497 7.52781e-5 4.56308e-5 2.66148e-5 1.49371e-5 8.06647e-6 4.19157e-6 2.09579e-6 1.00831e-6 4.66784e-7 2.07928e-7 8.91227e-8 3.67569e-8
-1.51504e-10 5.00184e-8 1.21277e-7 2.82947e-7 6.35194e-7 1.3721e-6 2.85193e-6 5.70385e-6 1.09768e-5 2.03262e-5 3.62172e-5 6.2094e-5 0.000102438 0.00016261 0.000248376 0.000365047 0.000516254 0.000702513 0.00091986 0.00115895 0.00140503 0.001639 0.00183972 0.00198701 0.00206502 0.00206502 0.00198701 0.00183972 0.001639 0.00140503 0.00115895 0.00091986 0.000702513 0.000516254 0.000365047 0.000248376 0.00016261 0.000102438 6.2094e-5 3.62172e-5 2.03262e-5 1.09768e-5 5.70385e-6 2.85193e-6 1.3721e-6 6.35194e-7 2.82947e-7 1.21277e-7 5.00184e-8
-1.31304e-10 6.54933e-8 1.58799e-7 3.70486e-7 8.31714e-7 1.7966e-6 3.73427e-6 7.46854e-6 1.43728e-5 2.66148e-5 4.74222e-5 8.13049e-5 0.00013413 0.000212919 0.00032522 0.000477986 0.000675975 0.00091986 0.00120445 0.00151751 0.00183972 0.00214609 0.0024089 0.00260176 0.0027039 0.0027039 0.00260176 0.0024089 0.00214609 0.00183972 0.00151751 0.00120445 0.00091986 0.000675975 0.000477986 0.00032522 0.000212919 0.00013413 8.13049e-5 4.74222e-5 2.66148e-5 1.43728e-5 7.46854e-6 3.73427e-6 1.7966e-6 8.31714e-7 3.70486e-7 1.58799e-7 6.54933e-8
-1.11103e-10 8.25164e-8 2.00074e-7 4.66784e-7 1.04789e-6 2.26358e-6 4.70488e-6 9.40977e-6 1.81086e-5 3.35326e-5 5.97483e-5 0.000102438 0.000168994 0.000268261 0.000409751 0.000602225 0.000851675 0.00115895 0.00151751 0.00191195 0.0023179 0.0027039 0.00303502 0.00327801 0.0034067 0.0034067 0.00327801 0.00303502 0.0027039 0.0023179 0.00191195 0.00151751 0.00115895 0.000851675 0.000602225 0.000409751 0.000268261 0.000168994 0.000102438 5.97483e-5 3.35326e-5 1.81086e-5 9.40977e-6 4.70488e-6 2.26358e-6 1.04789e-6 4.66784e-7 2.00074e-7 8.25164e-8
-9.09026e-11 1.00037e-7 2.42555e-7 5.65894e-7 1.27039e-6 2.74419e-6 5.70385e-6 1.14077e-5 2.19535e-5 4.06524e-5 7.24344e-5 0.000124188 0.000204875 0.00032522 0.000496752 0.000730093 0.00103251 0.00140503 0.00183972 0.0023179 0.00281005 0.00327801 0.00367944 0.00397401 0.00413003 0.00413003 0.00397401 0.00367944 0.00327801 0.00281005 0.0023179 0.00183972 0.00140503 0.00103251 0.000730093 0.000496752 0.00032522 0.000204875 0.000124188 7.24344e-5 4.06524e-5 2.19535e-5 1.14077e-5 5.70385e-6 2.74419e-6 1.27039e-6 5.65894e-7 2.42555e-7 1.00037e-7
-7.0702e-11 1.16696e-7 2.82947e-7 6.60132e-7 1.48195e-6 3.20118e-6 6.65371e-6 1.33074e-5 2.56094e-5 4.74222e-5 8.44968e-5 0.000144869 0.000238993 0.000379378 0.000579475 0.000851675 0.00120445 0.001639 0.00214609 0.0027039 0.00327801 0.00382389 0.00429217 0.0046358 0.0048178 0.0048178 0.0046358 0.00429217 0.00382389 0.00327801 0.0027039 0.00214609 0.001639 0.00120445 0.000851675 0.000579475 0.000379378 0.000238993 0.000144869 8.44968e-5 4.74222e-5 2.56094e-5 1.33074e-5 6.65371e-6 3.20118e-6 1.48195e-6 6.60132e-7 2.82947e-7 1.16696e-7
-5.05014e-11 1.30987e-7 3.17597e-7 7.40973e-7 1.66343e-6 3.5932e-6 7.46854e-6 1.49371e-5 2.87456e-5 5.32297e-5 9.48445e-5 0.00016261 0.000268261 0.000425837 0.000650439 0.000955973 0.00135195 0.00183972 0.0024089 0.00303502 0.00367944 0.00429217 0.0048178 0.00520351 0.0054078 0.0054078 0.00520351 0.0048178 0.00429217 0.00367944 0.00303502 0.0024089 0.00183972 0.00135195 0.000955973 0.000650439 0.000425837 0.000268261 0.00016261 9.48445e-5 5.32297e-5 2.87456e-5 1.49371e-5 7.46854e-6 3.5932e-6 1.66343e-6 7.40973e-7 3.17597e-7 1.30987e-7
-3.03009e-11 1.41473e-7 3.43024e-7 8.00295e-7 1.7966e-6 3.88087e-6 8.06647e-6 1.61329e-5 3.1047e-5 5.74912e-5 0.000102438 0.000175628 0.000289738 0.00045993 0.000702513 0.00103251 0.00146019 0.00198701 0.00260176 0.00327801 0.00397401 0.0046358 0.00520351 0.0056201 0.00584074 0.00584074 0.0056201 0.00520351 0.0046358 0.00397401 0.00327801 0.00260176 0.00198701 0.00146019 0.00103251 0.000702513 0.00045993 0.000289738 0.000175628 0.000102438 5.74912e-5 3.1047e-5 1.61329e-5 8.06647e-6 3.88087e-6 1.7966e-6 8.00295e-7 3.43024e-7 1.41473e-7
-1.01003e-11 1.47028e-7 3.56491e-7 8.31714e-7 1.86713e-6 4.03323e-6 8.38315e-6 1.67663e-5 3.22659e-5 5.97483e-5 0.000106459 0.000182523 0.000301113 0.000477986 0.000730093 0.00107304 0.00151751 0.00206502 0.0027039 0.0034067 0.00413003 0.0048178 0.0054078 0.00584074 0.00607005 0.00607005 0.00584074 0.0054078 0.0048178 0.00413003 0.0034067 0.0027039 0.00206502 0.00151751 0.00107304 0.000730093 0.000477986 0.000301113 0.000182523 0.000106459 5.97483e-5 3.22659e-5 1.67663e-5 8.38315e-6 4.03323e-6 1.86713e-6 8.31714e-7 3.56491e-7 1.47028e-7
1.01003e-11 1.47028e-7 3.56491e-7 8.31714e-7 1.86713e-6 4.03323e-6 8.38315e-6 1.67663e-5 3.22659e-5 5.97483e-5 0.000106459 0.000182523 0.000301113 0.000477986 0.000730093 0.00107304 0.00151751 0.00206502 0.0027039 0.0034067 0.00413003 0.0048178 0.0054078 0.00584074 0.00607005 0.00607005 0.00584074 0.0054078 0.0048178 0.00413003 0.0034067 0.0027039 0.00206502 0.00151751 0.00107304 0.000730093 0.000477986 0.000301113 0.000182523 0.000106459 5.97483e-5 3.22659e-5 1.67663e-5 8.38315e-6 4.03323e-6 1.86713e-6 8.31714e-7 3.56491e-7 1.47028e-7
3.03009e-11 1.41473e-7 3.43024e-7 8.00295e-7 1.7966e-6 3.88087e-6 8.06647e-6 1.61329e-5 3.1047e-5 5.74912e-5 0.000102438 0.000175628 0.000289738 0.00045993 0.000702513 0.00103251 0.00146019 0.00198701 0.00260176 0.00327801 0.00397401 0.0046358 0.00520351 0.0056201 0.00584074 0.00584074 0.0056201 0.00520351 0.0046358 0.00397401 0.00327801 0.00260176 0.00198701 0.00146019 0.00103251 0.000702513 0.00045993 0.000289738 0.000175628 0.000102438 5.74912e-5 3.1047e-5 1.61329e-5 8.06647e-6 3.88087e-6 1.7966e-6 8.00295e-7 3.43024e-7 1.41473e-7
5.05014e-11 1.30987e-7 3.17597e-7 7.40973e-7 1.66343e-6 3.5932e-6 7.46854e-6 1.49371e-5 2.87456e-5 5.32297e-5 9.48445e-5 0.00016261 0.000268261 0.000425837 0.000650439 0.000955973 0.00135195 0.00183972 0.0024089 0.00303502 0.00367944 0.00429217 0.0048178 0.00520351 0.0054078 0.0054078 0.00520351 0.0048178 0.00429217 0.00367944 0.00303502 0.0024089 0.00183972 0.00135195 0.000955973 0.000650439 0.000425837 0.000268261 0.00016261 9.48445e-5 5.32297e-5 2.87456e-5 1.49371e-5 7.46854e-6 3.5932e-6 1.66343e-6 7.40973e-7 3.17597e-7 1.30987e-7
7.0702e-11 1.16696e-7 2.82947e-7 6.60132e-7 1.48195e-6 3.20118e-6 6.65371e-6 1.33074e-5 2.56094e-5 4.74222e-5 8.44968e-5 0.000144869 0.000238993 0.000379378 0.000579475 0.000851675 0.00120445 0.001639 0.00214609 0.0027039 0.00327801 0.00382389 0.00429217 0.0046358 0.0048178 0.0048178 0.0046358 0.00429217 0.00382389 0.00327801 0.0027039 0.00214609 0.001639 0.00120445 0.000851675 0.000579475 0.000379378 0.000238993 0.000144869 8.44968e-5 4.74222e-5 2.56094e-5 1.33074e-5 6.65371e-6 3.20118e-6 1.48195e-6 6.60132e-7 2.82947e-7 1.16696e-7
9.09026e-11 1.00037e-7 2.42555e-7 5.65894e-7 1.27039e-6 2.74419e-6 5.70385e-6 1.14077e-5 2.19535e-5 4.06524e-5 7.24344e-5 0.000124188 0.000204875 0.00032522 0.000496752 0.000730093 0.00103251 0.00140503 0.00183972 0.0023179 0.00281005 0.00327801 0.00367944 0.00397401 0.00413003 0.00413003 0.00397401 0.00367944 0.00327801 0.00281005 0.0023179 0.00183972 0.00140503 0.00103251 0.000730093 0.000496752 0.00032522 0.000204875 0.000124188 7.24344e-5 4.06524e-5 2.19535e-5 1.14077e-5 5.70385e-6 2.74419e-6 1.27039e-6 5.65894e-7 2.42555e-7 1.00037e-7
1.11103e-10 8.25164e-8 2.00074e-7 4.66784e-7 1.04789e-6 2.26358e-6 4.70488e-6 9.40977e-6 1.81086e-5 3.35326e-5 5.97483e-5 0.000102438 0.000168994 0.000268261 0.000409751 0.000602225 0.000851675 0.00115895 0.00151751 0.00191195 0.0023179 0.0027039 0.00303502 0.00327801 0.0034067 0.0034067 0.00327801 0.00303502 0.0027039 0.0023179 0.00191195 0.00151751 0.00115895 0.000851675 0.000602225 0.000409751 0.000268261 0.000168994 0.000102438 5.97483e-5 3.35326e-5 1.81086e-5 9.40977e-6 4.70488e-6 2.26358e-6 1.04789e-6 4.66784e-7 2.00074e-7 8.25164e-8
1.31304e-10 6.54933e-8 1.58799e-7 3.70486e-7 8.31714e-7 1.7966e-6 3.73427e-6 7.46854e-6 1.43728e-5 2.66148e-5 4.74222e-5 8.13049e-5 0.00013413 0.000212919 0.00032522 0.000477986 0.000675975 0.00091986 0.00120445 0.00151751 0.00183972 0.00214609 0.0024089 0.00260176 0.0027039 0.0027039 0.00260176 0.0024089 0.00214609 0.00183972 0.00151751 0.00120445 0.00091986 0.000675975 0.000477986 0.00032522 0.000212919 0.00013413 8.13049e-5 4.74222e-5 2.66148e-5 1.43728e-5 7.46854e-6 3.73427e-6 1.7966e-6 8.31714e-7 3.70486e-7 1.58799e-7 6.54933e-8
1.51504e-10 5.00184e-8 1.21277e-7 2.82947e-7 6.35194e-7 1.3721e-6 2.85193e-6 5.70385e-6 1.09768e-5 2.03262e-5 3.62172e-5 6.2094e-5 0.000102438 0.00016261 0.000248376 0.000365047 0.000516254 0.000702513 0.00091986 0.00115895 0.00140503 0.001639 0.00183972 0.00198701 0.00206502 0.00206502 0.00198701 0.00183972 0.001639 0.00140503 0.00115895 0.00091986 0.000702513 0.000516254 0.000365047 0.000248376 0.00016261 0.000102438 6.2094e-5 3.62172e-5 2.03262e-5 1.09768e-5 5.70385e-6 2.85193e-6 1.3721e-6 6.35194e-7 2.82947e-7 1.21277e-7 5.00184e-8
1.71705e-10 3.67569e-8 8.91227e-8 2.07928e-7 4.66784e-7 1.00831e-6 2.09579e-6 4.19157e-6 8.06647e-6 1.49371e-5 2.66148e-5 4.56308e-5 7.52781e-5 0.000119497 0.000182523 0.000268261 0.000379378 0.000516254 0.000675975 0.000851675 0.00103251 0.00120445 0.00135195 0.00146019 0.00151751 0.00151751 0.00146019 0.00135195 0.00120445 0.00103251 0.000851675 0.000675975 0.000516254 0.000379378 0.000268261 0.000182523 0.000119497 7.52781e-5 4.56308e-5 2.66148e-5 1.49371e-5 8.06647e-6 4.19157e-6 2.09579e-6 1.00831e-6 4.66784e-7 2.07928e-7 8.91227e-8 3.67569e-8
1.91905e-10 2.59911e-8 6.30193e-8 1.47028e-7 3.30066e-7 7.12982e-7 1.48195e-6 2.96389e-6 5.70385e-6 1.05621e-5 1.88195e-5 3.22659e-5 5.32297e-5 8.44968e-5 0.000129063 0.000189689 0.000268261 0.000365047 0.000477986 0.000602225 0.000730093 0.000851675 0.000955973 0.00103251 0.00107304 0.00107304 0.00103251 0.000955973 0.000851675 0.000730093 0.000602225 0.000477986 0.000365047 0.000268261 0.000189689 0.000129063 8.44968e-5 5.32297e-5 3.22659e-5 1.88195e-5 1.05621e-5 5.70385e-6 2.96389e-6 1.48195e-6 7.12982e-7 3.30066e-7 1.47028e-7 6.30193e-8 2.59911e-8
2.12106e-10 1.76842e-8 4.2878e-8 1.00037e-7 2.24575e-7 4.85109e-7 1.00831e-6 2.01662e-6 3.88087e-6 7.1864e-6 1.28047e-5 2.19535e-5 3.62172e-5 5.74912e-5 8.78141e-5 0.000129063 0.000182523 0.000248376 0.00032522 0.000409751 0.000496752 0.000579475 0.000650439 0.000702513 0.000730093 0.000730093 0.000702513 0.000650439 0.000579475 0.000496752 0.000409751 0.00032522 0.000248376 0.000182523 0.000129063 8.78141e-5 5.74912e-5 3.62172e-5 2.19535e-5 1.28047e-5 7.1864e-6 3.88087e-6 2.01662e-6 1.00831e-6 4.85109e-7 2.24575e-7 1.00037e-7 4.2878e-8 1.76842e-8
2.32307e-10 1.15777e-8 2.80719e-8 6.54933e-8 1.47028e-7 3.17597e-7 6.60132e-7 1.32026e-6 2.54078e-6 4.70488e-6 8.38315e-6 1.43728e-5 2.37111e-5 3.76391e-5 5.74912e-5 8.44968e-5 0.000119497 0.00016261 0.000212919 0.000268261 0.00032522 0.000379378 0.000425837 0.00045993 0.000477986 0.000477986 0.00045993 0.000425837 0.000379378 0.00032522 0.000268261 0.000212919 0.00016261 0.000119497 8.44968e-5 5.74912e-5 3.76391e-5 2.37111e-5 1.43728e-5 8.38315e-6 4.70488e-6 2.54078e-6 1.32026e-6 6.60132e-7 3.17597e-7 1.47028e-7 6.54933e-8 2.80719e-8 1.15777e-8
2.52507e-10 7.29349e-9 1.76842e-8 4.12582e-8 9.26216e-8 2.00074e-7 4.15857e-7 8.31714e-7 1.60059e-6 2.96389e-6 5.28105e-6 9.0543e-6 1.49371e-5 2.37111e-5 3.62172e-5 5.32297e-5 7.52781e-5 0.000102438 0.00013413 0.000168994 0.000204875 0.000238993 0.000268261 0.000289738 0.000301113 0.000301113 0.000289738 0.000268261 0.000238993 0.000204875 0.000168994 0.00013413 0.000102438 7.52781e-5 5.32297e-5 3.62172e-5 2.37111e-5 1.49371e-5 9.0543e-6 5.28105e-6 2.96389e-6 1.60059e-6 8.31714e-7 4.15857e-7 2.00074e-7 9.26216e-8 4.12582e-8 1.76842e-8 7.29349e-9
2.72708e-10 4.42105e-9 1.07195e-8 2.50092e-8 5.61438e-8 1.21277e-7 2.52077e-7 5.04154e-7 9.70218e-7 1.7966e-6 3.20118e-6 5.48838e-6 9.0543e-6 1.43728e-5 2.19535e-5 3.22659e-5 4.56308e-5 6.2094e-5 8.13049e-5 0.000102438 0.000124188 0.000144869 0.00016261 0.000175628 0.000182523 0.000182523 0.000175628 0.00016261 0.000144869 0.000124188 0.000102438 8.13049e-5 6.2094e-5 4.56308e-5 3.22659e-5 2.19535e-5 1.43728e-5 9.0543e-6 5.48838e-6 3.20118e-6 1.7966e-6 9.70218e-7 5.04154e-7 2.52077e-7 1.21277e-7 5.61438e-8 2.50092e-8 1.07195e-8 4.42105e-9
2.92908e-10 2.57864e-9 6.2523e-9 1.4587e-8 3.27467e-8 7.07367e-8 1.47028e-7 2.94055e-7 5.65894e-7 1.04789e-6 1.86713e-6 3.20118e-6 5.28105e-6 8.38315e-6 1.28047e-5 1.88195e-5 2.66148e-5 3.62172e-5 4.74222e-5 5.97483e-5 7.24344e-5 8.44968e-5 9.48445e-5 0.000102438 0.000106459 0.000106459 0.000102438 9.48445e-5 8.44968e-5 7.24344e-5 5.97483e-5 4.74222e-5 3.62172e-5 2.66148e-5 1.88195e-5 1.28047e-5 8.38315e-6 5.28105e-6 3.20118e-6 1.86713e-6 1.04789e-6 5.65894e-7 2.94055e-7 1.47028e-7 7.07367e-8 3.27467e-8 1.4587e-8 6.2523e-9 2.57864e-9
3.13109e-10 1.44721e-9 3.50899e-9 8.18667e-9 1.83784e-8 3.96996e-8 8.25164e-8 1.65033e-7 3.17597e-7 5.8811e-7 1.04789e-6 1.7966e-6 2.96389e-6 4.70488e-6 7.1864e-6 1.05621e-5 1.49371e-5 2.03262e-5 2.66148e-5 3.35326e-5 4.06524e-5 4.74222e-5 5.32297e-5 5.74912e-5 5.97483e-5 5.97483e-5 5.74912e-5 5.32297e-5 4.74222e-5 4.06524e-5 3.35326e-5 2.66148e-5 2.03262e-5 1.49371e-5 1.05621e-5 7.1864e-6 4.70488e-6 2.96389e-6 1.7966e-6 1.04789e-6 5.8811e-7 3.17597e-7 1.65033e-7 8.25164e-8 3.96996e-8 1.83784e-8 8.18667e-9 3.50899e-9 1.44721e-9
3.33309e-10 7.81538e-10 1.89496e-9 4.42105e-9 9.92491e-9 2.1439e-8 4.45613e-8 8.91227e-8 1.71512e-7 3.17597e-7 5.65894e-7 9.70218e-7 1.60059e-6 2.54078e-6 3.88087e-6 5.70385e-6 8.06647e-6 1.09768e-5 1.43728e-5 1.81086e-5 2.19535e-5 2.56094e-5 2.87456e-5 3.1047e-5 3.22659e-5 3.22659e-5 3.1047e-5 2.87456e-5 2.56094e-5 2.19535e-5 1.81086e-5 1.43728e-5 1.09768e-5 8.06647e-6 5.70385e-6 3.88087e-6 2.54078e-6 1.60059e-6 9.70218e-7 5.65894e-7 3.17597e-7 1.71512e-7 8.91227e-8 4.45613e-8 2.1439e-8 9.92491e-9 4.42105e-9 1.89496e-9 7.81538e-10
3.5351e-10 4.0611e-10 9.84676e-10 2.29731e-9 5.15728e-9 1.11403e-8 2.31554e-8 4.63108e-8 8.91227e-8 1.65033e-7 2.94055e-7 5.04154e-7 8.31714e-7 1.32026e-6 2.01662e-6 2.96389e-6 4.19157e-6 5.70385e-6 7.46854e-6 9.40977e-6 1.14077e-5 1.33074e-5 1.49371e-5 1.61329e-5 1.67663e-5 1.67663e-5 1.61329e-5 1.49371e-5 1.33074e-5 1.14077e-5 9.40977e-6 7.46854e-6 5.70385e-6 4.19157e-6 2.96389e-6 2.01662e-6 1.32026e-6 8.31714e-7 5.04154e-7 2.94055e-7 1.65033e-7 8.91227e-8 4.63108e-8 2.31554e-8 1.11403e-8 5.15728e-9 2.29731e-9 9.84676e-10 4.0611e-10
3.73711e-10 2.03055e-10 4.92338e-10 1.14865e-9 2.57864e-9 5.57017e-9 1.15777e-8 2.31554e-8 4.45613e-8 8.25164e-8 1.47028e-7 2.52077e-7 4.15857e-7 6.60132e-7 1.00831e-6 1.48195e-6 2.09579e-6 2.85193e-6 3.73427e-6 4.70488e-6 5.70385e-6 6.65371e-6 7.46854e-6 8.06647e-6 8.38315e-6 8.38315e-6 8.06647e-6 7.46854e-6 6.65371e-6 5.70385e-6 4.70488e-6 3.73427e-6 2.85193e-6 2.09579e-6 1.48195e-6 1.00831e-6 6.60132e-7 4.15857e-7 2.52077e-7 1.47028e-7 8.25164e-8 4.45613e-8 2.31554e-8 1.15777e-8 5.57017e-9 2.57864e-9 1.14865e-9 4.92338e-10 2.03055e-10
3.93911e-10 9.76922e-11 2.3687e-10 5.52631e-10 1.24061e-9 2.67987e-9 5.57017e-9 1.11403e-8 2.1439e-8 3.96996e-8 7.07367e-8 1.21277e-7 2.00074e-7 3.17597e-7 4.85109e-7 7.12982e-7 1.00831e-6 1.3721e-6 1.7966e-6 2.26358e-6 2.74419e-6 3.20118e-6 3.5932e-6 3.88087e-6 4.03323e-6 4.03323e-6 3.88087e-6 3.5932e-6 3.20118e-6 2.74419e-6 2.26358e-6 1.7966e-6 1.3721e-6 1.00831e-6 7.12982e-7 4.85109e-7 3.17597e-7 2.00074e-7 1.21277e-7 7.07367e-8 3.96996e-8 2.1439e-8 1.11403e-8 5.57017e-9 2.67987e-9 1.24061e-9 5.52631e-10 2.3687e-10 9.76922e-11
4.14112e-10 0.0 1.09656e-10 2.55833e-10 5.74327e-10 1.24061e-9 2.57864e-9 5.15728e-9 9.92491e-9 1.83784e-8 3.27467e-8 5.61438e-8 9.26216e-8 1.47028e-7 2.24575e-7 3.30066e-7 4.66784e-7 6.35194e-7 8.31714e-7 1.04789e-6 1.27039e-6 1.48195e-6 1.66343e-6 1.7966e-6 1.86713e-6 1.86713e-6 1.7966e-6 1.66343e-6 1.48195e-6 1.27039e-6 1.04789e-6 8.31714e-7 6.35194e-7 4.66784e-7 3.30066e-7 2.24575e-7 1.47028e-7 9.26216e-8 5.61438e-8 3.27467e-8 1.83784e-8 9.92491e-9 5.15728e-9 2.57864e-9 1.24061e-9 5.74327e-10 2.55833e-10 1.09656e-10 0.0
4.34312e-10 0.0 0.0 1.13961e-10 2.55833e-10 5.52631e-10 1.14865e-9 2.29731e-9 4.42105e-9 8.18667e-9 1.4587e-8 2.50092e-8 4.12582e-8 6.54933e-8 1.00037e-7 1.47028e-7 2.07928e-7 2.82947e-7 3.70486e-7 4.66784e-7 5.65894e-7 6.60132e-7 7.40973e-7 8.00295e-7 8.31714e-7 8.31714e-7 8.00295e-7 7.40973e-7 6.60132e-7 5.65894e-7 4.66784e-7 3.70486e-7 2.82947e-7 2.07928e-7 1.47028e-7 1.00037e-7 6.54933e-8 4.12582e-8 2.50092e-8 1.4587e-8 8.18667e-9 4.42105e-9 2.29731e-9 1.14865e-9 5.52631e-10 2.55833e-10 1.13961e-10 0.0 0.0
4.54513e-10 0.0 0.0 0.0 1.09656e-10 2.3687e-10 4.92338e-10 9.84676e-10 1.89496e-9 3.50899e-9 6.2523e-9 1.07195e-8 1.76842e-8 2.80719e-8 4.2878e-8 6.30193e-8 8.91227e-8 1.21277e-7 1.58799e-7 2.00074e-7 2.42555e-7 2.82947e-7 3.17597e-7 3.43024e-7 3.56491e-7 3.56491e-7 3.43024e-7 3.17597e-7 2.82947e-7 2.42555e-7 2.00074e-7 1.58799e-7 1.21277e-7 8.91227e-8 6.30193e-8 4.2878e-8 2.80719e-8 1.76842e-8 1.07195e-8 6.2523e-9 3.50899e-9 1.89496e-9 9.84676e-10 4.92338e-10 2.3687e-10 1.09656e-10 0.0 0.0 0.0
4.74713e-10 0.0 0.0 0.0 0.0 9.76922e-11 2.03055e-10 4.0611e-10 7.81538e-10 1.44721e-9 2.57864e-9 4.42105e-9 7.29349e-9 1.15777e-8 1.76842e-8 2.59911e-8 3.67569e-8 5.00184e-8 6.54933e-8 8.25164e-8 1.00037e-7 1.16696e-7 1.30987e-7 1.41473e-7 1.47028e-7 1.47028e-7 1.41473e-7 1.30987e-7 1.16696e-7 1.00037e-7 8.25164e-8 6.54933e-8 5.00184e-8 3.67569e-8 2.59911e-8 1.76842e-8 1.15777e-8 7.29349e-9 4.42105e-9 2.57864e-9 1.44721e-9 7.81538e-10 4.0611e-10 2.03055e-10 9.76922e-11 0.0 0.0 0.0 0.0For 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; order = 2)
skyprior = (
σs = ntuple(Returns(truncated(Normal(0.0, 0.5); lower = 0.0)), 4),
as = ntuple(Returns(cprior), 4),
)
skym = SkyModel(sky, skyprior, grid; metadata = skymeta)SkyModel
with map: sky
on grid:
RectiGrid(
executor: ComradeBase.Serial()
Dimensions:
(↓ X Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points)
)
)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)VLBIPosterior
ObservedSkyModel
with map: sky
on grid:
FourierDualDomain(
Algorithm: VLBISkyModels.NFFTAlg{Float64, AbstractNFFTs.PrecomputeFlags, UInt32}(1, 1.0e-9, AbstractNFFTs.TENSOR, 0x00000000)
Image Domain: RectiGrid(
executor: ComradeBase.Serial()
Dimensions:
(↓ X Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points)
)
Visibility Domain: UnstructuredDomain(
executor: ComradeBase.Serial()
Dimensions:
189-element StructArray(::Vector{Float64}, ::Vector{Float64}, ::Vector{Float64}, ::Vector{Float64}) with eltype @NamedTuple{U::Float64, V::Float64, Ti::Float64, Fr::Float64}:
(U = -4.404687701333328e9, V = -4.521597269333328e9, Ti = 0.5833333432674408, Fr = 2.27070703125e11)
(U = -4.427688319999995e9, V = -4.558917845333328e9, Ti = 0.7333333566784859, Fr = 2.27070703125e11)
(U = -4.422283775999995e9, V = -4.545737898666661e9, Ti = 0.7333333566784859, Fr = 2.27070703125e11)
(U = -4.443824298666661e9, V = -4.596403783111106e9, Ti = 0.8833333253860474, Fr = 2.27070703125e11)
(U = -4.444612451555551e9, V = -4.594719701333328e9, Ti = 0.8833333253860474, Fr = 2.27070703125e11)
(U = -4.452459235555551e9, V = -4.700912867555551e9, Ti = 1.300000011920929, Fr = 2.27070703125e11)
(U = -4.453204522666661e9, V = -4.699246847999995e9, Ti = 1.300000011920929, Fr = 2.27070703125e11)
(U = -4.442525923555551e9, V = -4.738497991111106e9, Ti = 1.4500000029802322, Fr = 2.27070703125e11)
(U = -4.446617087999995e9, V = -4.727102591999995e9, Ti = 1.4500000029802322, Fr = 2.27070703125e11)
(U = -4.373388259555551e9, V = -4.848290346666661e9, Ti = 1.8916667103767395, Fr = 2.27070703125e11)
(U = -4.374057457777773e9, V = -4.846647935999995e9, Ti = 1.8916667103767395, Fr = 2.27070703125e11)
(U = 1.854972024888887e9, V = -4.900536604444439e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -4.33647849244444e9, V = -4.885093333333328e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = 1.8543247111111093e9, V = -4.898899640888884e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -4.337125802666661e9, V = -4.883456426666661e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -6.191450481777771e9, V = 1.544323338368054e7, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -4.1988920319999957e9, V = -4.985362616888884e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 1.9771115377777758e9, V = -3.616703032888885e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 2.112877287111109e9, V = -4.853924366222218e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -4.1994733297777734e9, V = -4.983740188444439e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 2.1122959964444423e9, V = -4.852301823999995e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 1.9765302328888867e9, V = -3.6150805831111073e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -6.311769287111104e9, V = -1.3143835066666654e8, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -1.3576575533333316e8, V = 1.2372212337777765e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -6.176003569777771e9, V = -1.368659580444443e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 2.2020455187692285e9, V = -4.835182867692303e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.023443446153844e9, V = -3.5993280459487143e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.2014904845128183e9, V = -4.833565380923072e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.0228883987692285e9, V = -3.5977105394871755e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = -1.7860208246153826e8, V = 1.2358548479999986e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.439166364444442e9, V = -4.776837418666661e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.1385755875555534e9, V = -3.547005681777774e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -3.9131562524444404e9, V = -5.122736583111106e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.438692103111109e9, V = -4.775232839111106e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -3.913630471111107e9, V = -5.121131932444439e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.1381013582222202e9, V = -3.545401116444441e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -6.352322559999993e9, V = -3.4589914133333296e8, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -3.005907564444441e8, V = 1.229831726222221e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -6.051731839999993e9, V = -1.575730865777776e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.511586922666664e9, V = -4.755918350222218e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = 2.170796600888887e9, V = -3.528796735999996e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = 2.170351103999998e9, V = -3.5271960746666627e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = 2.5111413973333306e9, V = -4.754317681777773e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = -3.4079030488888854e8, V = 1.2271216071111097e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = -3.554185649777774e9, V = -5.242140615111105e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.691997553777775e9, V = -4.694789262222218e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.2425047537777753e9, V = -3.4769514666666627e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.2421424639999976e9, V = -3.4753602986666627e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -3.5545479253333297e9, V = -5.24054941866666e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.6916352782222195e9, V = -4.693198023111106e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -4.4949279733333284e8, V = 1.2178377671111097e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -6.246183196444438e9, V = -5.47351347555555e8, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -5.796690360888883e9, V = -1.7651891164444425e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.2622677727179465e9, V = -3.457387467487176e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 2.7506836742564077e9, V = -4.671151025230764e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -3.442546884923073e9, V = -5.272523263999994e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -3.4428772102564063e9, V = -5.270935092512815e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 2.2619374342564077e9, V = -3.455799302564099e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 2.750353309538459e9, V = -4.66956284061538e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -6.193230559179481e9, V = -6.013722551794866e8, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -4.88415901538461e8, V = 1.2137635511794858e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -5.704814683897429e9, V = -1.8151358063589723e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 5.063708287999995e9, V = -4.2083771519999957e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.298526215111109e9, V = -3.400051128888885e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -3.088728042666663e9, V = -5.354635448888883e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.8947912462222195e9, V = -4.600179484444439e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 5.063473251555551e9, V = -4.206796074666662e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.894556095999997e9, V = -4.598598385777773e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.298291107555553e9, V = -3.398470051555552e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -3.0889631217777743e9, V = -5.35305430755555e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.1689170879999976e9, V = 3.918022879999996e8, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -5.983519260444438e9, V = -7.544559466666658e8, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -5.962650044444438e8, V = 1.2001283235555544e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -2.7651820871111083e9, V = 8.08326024888888e8, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -8.152436351999991e9, V = -1.1462582471111097e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -5.38725424355555e9, V = -1.954584263111109e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 5.20314781866666e9, V = -4.164995278222218e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.303663210666664e9, V = -3.3806049066666627e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -2.959920895999997e9, V = -5.380193535999994e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.934449208888886e9, V = -4.575548401777773e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 5.202945521777772e9, V = -4.163416078222218e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -2.96012315733333e9, V = -5.378614286222217e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.9342469404444413e9, V = -4.573969180444439e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.3034609279999976e9, V = -3.379025671111108e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.2686985813333306e9, V = 4.105531208888885e8, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -5.894370119111105e9, V = -8.046451235555547e8, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -6.307860088888882e8, V = 1.1949434986666653e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -2.8994846222222195e9, V = 7.843903822222214e8, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -8.163068671999991e9, V = -1.2151982364444432e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -5.26358409955555e9, V = -1.9995886115555534e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 5.54752803555555e9, V = -4.038701703111107e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.299188743111109e9, V = -3.3265329137777743e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 3.020574414222219e9, V = -4.505591765333328e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -2.5786923022222195e9, V = -5.445258367999994e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.547500060444439e9, V = -4.0388189439999957e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.545354601411759e9, V = -4.037995941647054e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.299206753882351e9, V = -3.325316984470585e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 3.0200180856470556e9, V = -4.504489261176466e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -2.5814593882352915e9, V = -5.443281573647054e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.545326531764701e9, V = -4.0381131670588193e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.5269535999999976e9, V = 4.668900488888884e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -7.213856906666659e8, V = 1.179058869333332e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -5.59926673066666e9, V = -9.396666328888879e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.5269256533333306e9, V = 4.667728097777773e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -3.248339306666663e9, V = 7.121688159999993e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -8.126220359111103e9, V = -1.406556682666665e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -4.877881031111106e9, V = -2.1187254968888867e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 3.248311303111108e9, V = -7.122860568888881e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 8.126192398222214e9, V = 1.4064394311111097e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.658309684512815e9, V = -3.9900336836923037e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 5.658283887589737e9, V = -3.990151154871791e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 3.0433165062564073e9, V = -4.479256681025637e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.290543504410254e9, V = -3.3066006843076887e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -2.4295591712820487e9, V = -5.467004468512815e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 5.658234788102558e9, V = -3.9884589423589706e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 3.0432416295384583e9, V = -4.477681939692303e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.2904686145641003e9, V = -3.305025916717945e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 5.658209004307686e9, V = -3.9885764069743543e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -2.429634061128203e9, V = -5.465429700923072e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.614993171692305e9, V = 4.8922299733333284e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -7.527729985641018e8, V = 1.1726559999999988e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -5.472875690666661e9, V = -9.87747757948717e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.6149673616410227e9, V = 4.891055195897431e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -3.367766186666663e9, V = 6.834330141538454e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -8.087868875487172e9, V = -1.4769707651282036e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -4.720102662564097e9, V = -2.160403784205126e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 3.3677403569230733e9, V = -6.835504902564095e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 8.087843052307683e9, V = 1.47685327753846e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 6.037485539555549e9, V = -3.7629412693333297e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.206725866666664e9, V = -3.2192776817777743e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 3.0838075448888855e9, V = -4.360287900444439e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.037469781333326e9, V = -3.763059541333329e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.037566023111104e9, V = -3.761366407111107e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 3.083888028444441e9, V = -4.358713059555551e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.206806371555553e9, V = -3.217702819555552e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.037550279111104e9, V = -3.7614846791111073e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.9536779662222195e9, V = 5.973466417777772e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = -8.77081679999999e8, V = 1.141010222222221e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.953662200888886e9, V = 5.97228362666666e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = -3.830759658666662e9, V = 5.436635751111104e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 3.8307439288888845e9, V = -5.43781858666666e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.193776597333326e9, V = -3.584673976888885e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.193768718222216e9, V = -3.584792625777774e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 2.0963110399999979e9, V = -3.1565621119999967e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.04824456533333e9, V = -4.2709149368888845e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.193972479999993e9, V = -3.583095103999996e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 2.0965068515555534e9, V = -3.154983210666663e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.0484403768888855e9, V = -4.269336042666662e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.193964600888882e9, V = -3.5832137315555515e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.145532039111108e9, V = 6.862409528888881e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.145524195555552e9, V = 6.861223146666659e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = -9.519335111111101e8, V = 1.114352821333332e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = -4.0974655644444404e9, V = 4.2811187466666627e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 4.0974577137777734e9, V = -4.2823050222222173e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.234329756444438e9, V = -3.385946503111108e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 1.931031367111109e9, V = -3.0921642239999967e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.234330837333326e9, V = -3.3860652231111073e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 2.9449131591111083e9, V = -4.1750833208888845e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.234647921777771e9, V = -3.3843593599999967e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.234648903111104e9, V = -3.3844781297777743e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 1.931349447111109e9, V = -3.090577116444441e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 2.94523125333333e9, V = -4.1734962275555515e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 3.289416654222219e9, V = 7.89136849777777e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 3.2894176639999967e9, V = 7.890181191111102e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = -1.0138817973333323e9, V = 1.0829191111111097e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = -4.303298439111107e9, V = 2.937822586666663e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 4.30329948444444e9, V = -2.939009928888886e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.151253688888882e9, V = -3.205430023111108e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 1.7430493191111093e9, V = -3.038615523555552e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 2.7939210951111083e9, V = -4.091441422222218e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.151262791111104e9, V = -3.205548579555552e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.159540360533327e9, V = -3.2139407530666633e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 2.804326297599997e9, V = -4.0944362495999956e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.159549064533327e9, V = -3.214059332266663e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 1.7550084863999982e9, V = -3.039883980799997e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 3.35733262933333e9, V = 8.86011391999999e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = -1.0508717404444433e9, V = 1.0528258951111101e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 3.357341724444441e9, V = 8.858928017777768e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = -4.408204373333328e9, V = 1.6681450088888872e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 4.408213447111106e9, V = -1.6693308977777758e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.086775295999993e9, V = -3.1345589279999967e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 2.719461119999997e9, V = -4.0595089759999957e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 1.6591904159999983e9, V = -3.0189068799999967e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 6.086787583999993e9, V = -3.1346773919999967e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 3.367314207999996e9, V = 9.24950019999999e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = -1.0602706839999988e9, V = 1.0406020399999988e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 3.367326447999996e9, V = 9.248315599999989e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = -4.427584863999995e9, V = 1.1565201249999988e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 4.427597119999995e9, V = -1.1577047599999988e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
)
)
ObservedInstrumentModel
with Jones: JonesSandwich
with reference basis: PolarizedTypes.CirBasis()Data Products: Comrade.EHTCoherencyDatumReconstructing 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:
FourierDualDomain(
Algorithm: VLBISkyModels.NFFTAlg{Float64, AbstractNFFTs.PrecomputeFlags, UInt32}(1, 1.0e-9, AbstractNFFTs.TENSOR, 0x00000000)
Image Domain: RectiGrid(
executor: ComradeBase.Serial()
Dimensions:
(↓ X Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.747133960864206e-10, 4.747133960864206e-10, 48) ForwardOrdered Regular Points)
)
Visibility Domain: UnstructuredDomain(
executor: ComradeBase.Serial()
Dimensions:
189-element StructArray(::Vector{Float64}, ::Vector{Float64}, ::Vector{Float64}, ::Vector{Float64}) with eltype @NamedTuple{U::Float64, V::Float64, Ti::Float64, Fr::Float64}:
(U = -4.404687701333328e9, V = -4.521597269333328e9, Ti = 0.5833333432674408, Fr = 2.27070703125e11)
(U = -4.427688319999995e9, V = -4.558917845333328e9, Ti = 0.7333333566784859, Fr = 2.27070703125e11)
(U = -4.422283775999995e9, V = -4.545737898666661e9, Ti = 0.7333333566784859, Fr = 2.27070703125e11)
(U = -4.443824298666661e9, V = -4.596403783111106e9, Ti = 0.8833333253860474, Fr = 2.27070703125e11)
(U = -4.444612451555551e9, V = -4.594719701333328e9, Ti = 0.8833333253860474, Fr = 2.27070703125e11)
(U = -4.452459235555551e9, V = -4.700912867555551e9, Ti = 1.300000011920929, Fr = 2.27070703125e11)
(U = -4.453204522666661e9, V = -4.699246847999995e9, Ti = 1.300000011920929, Fr = 2.27070703125e11)
(U = -4.442525923555551e9, V = -4.738497991111106e9, Ti = 1.4500000029802322, Fr = 2.27070703125e11)
(U = -4.446617087999995e9, V = -4.727102591999995e9, Ti = 1.4500000029802322, Fr = 2.27070703125e11)
(U = -4.373388259555551e9, V = -4.848290346666661e9, Ti = 1.8916667103767395, Fr = 2.27070703125e11)
(U = -4.374057457777773e9, V = -4.846647935999995e9, Ti = 1.8916667103767395, Fr = 2.27070703125e11)
(U = 1.854972024888887e9, V = -4.900536604444439e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -4.33647849244444e9, V = -4.885093333333328e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = 1.8543247111111093e9, V = -4.898899640888884e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -4.337125802666661e9, V = -4.883456426666661e9, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -6.191450481777771e9, V = 1.544323338368054e7, Ti = 2.0416667461395264, Fr = 2.27070703125e11)
(U = -4.1988920319999957e9, V = -4.985362616888884e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 1.9771115377777758e9, V = -3.616703032888885e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 2.112877287111109e9, V = -4.853924366222218e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -4.1994733297777734e9, V = -4.983740188444439e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 2.1122959964444423e9, V = -4.852301823999995e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 1.9765302328888867e9, V = -3.6150805831111073e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -6.311769287111104e9, V = -1.3143835066666654e8, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -1.3576575533333316e8, V = 1.2372212337777765e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = -6.176003569777771e9, V = -1.368659580444443e9, Ti = 2.4583332538604736, Fr = 2.27070703125e11)
(U = 2.2020455187692285e9, V = -4.835182867692303e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.023443446153844e9, V = -3.5993280459487143e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.2014904845128183e9, V = -4.833565380923072e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.0228883987692285e9, V = -3.5977105394871755e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = -1.7860208246153826e8, V = 1.2358548479999986e9, Ti = 2.612500011920929, Fr = 2.27070703125e11)
(U = 2.439166364444442e9, V = -4.776837418666661e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.1385755875555534e9, V = -3.547005681777774e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -3.9131562524444404e9, V = -5.122736583111106e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.438692103111109e9, V = -4.775232839111106e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -3.913630471111107e9, V = -5.121131932444439e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.1381013582222202e9, V = -3.545401116444441e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -6.352322559999993e9, V = -3.4589914133333296e8, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -3.005907564444441e8, V = 1.229831726222221e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = -6.051731839999993e9, V = -1.575730865777776e9, Ti = 3.0583332180976868, Fr = 2.27070703125e11)
(U = 2.511586922666664e9, V = -4.755918350222218e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = 2.170796600888887e9, V = -3.528796735999996e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = 2.170351103999998e9, V = -3.5271960746666627e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = 2.5111413973333306e9, V = -4.754317681777773e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = -3.4079030488888854e8, V = 1.2271216071111097e9, Ti = 3.208333432674408, Fr = 2.27070703125e11)
(U = -3.554185649777774e9, V = -5.242140615111105e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.691997553777775e9, V = -4.694789262222218e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.2425047537777753e9, V = -3.4769514666666627e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.2421424639999976e9, V = -3.4753602986666627e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -3.5545479253333297e9, V = -5.24054941866666e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.6916352782222195e9, V = -4.693198023111106e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -4.4949279733333284e8, V = 1.2178377671111097e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -6.246183196444438e9, V = -5.47351347555555e8, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = -5.796690360888883e9, V = -1.7651891164444425e9, Ti = 3.6249999403953552, Fr = 2.27070703125e11)
(U = 2.2622677727179465e9, V = -3.457387467487176e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 2.7506836742564077e9, V = -4.671151025230764e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -3.442546884923073e9, V = -5.272523263999994e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -3.4428772102564063e9, V = -5.270935092512815e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 2.2619374342564077e9, V = -3.455799302564099e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 2.750353309538459e9, V = -4.66956284061538e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -6.193230559179481e9, V = -6.013722551794866e8, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -4.88415901538461e8, V = 1.2137635511794858e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = -5.704814683897429e9, V = -1.8151358063589723e9, Ti = 3.7791666984558105, Fr = 2.27070703125e11)
(U = 5.063708287999995e9, V = -4.2083771519999957e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.298526215111109e9, V = -3.400051128888885e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -3.088728042666663e9, V = -5.354635448888883e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.8947912462222195e9, V = -4.600179484444439e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 5.063473251555551e9, V = -4.206796074666662e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.894556095999997e9, V = -4.598598385777773e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.298291107555553e9, V = -3.398470051555552e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -3.0889631217777743e9, V = -5.35305430755555e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 2.1689170879999976e9, V = 3.918022879999996e8, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -5.983519260444438e9, V = -7.544559466666658e8, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -5.962650044444438e8, V = 1.2001283235555544e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -2.7651820871111083e9, V = 8.08326024888888e8, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -8.152436351999991e9, V = -1.1462582471111097e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = -5.38725424355555e9, V = -1.954584263111109e9, Ti = 4.225000083446503, Fr = 2.27070703125e11)
(U = 5.20314781866666e9, V = -4.164995278222218e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.303663210666664e9, V = -3.3806049066666627e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -2.959920895999997e9, V = -5.380193535999994e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.934449208888886e9, V = -4.575548401777773e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 5.202945521777772e9, V = -4.163416078222218e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -2.96012315733333e9, V = -5.378614286222217e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.9342469404444413e9, V = -4.573969180444439e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.3034609279999976e9, V = -3.379025671111108e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 2.2686985813333306e9, V = 4.105531208888885e8, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -5.894370119111105e9, V = -8.046451235555547e8, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -6.307860088888882e8, V = 1.1949434986666653e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -2.8994846222222195e9, V = 7.843903822222214e8, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -8.163068671999991e9, V = -1.2151982364444432e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = -5.26358409955555e9, V = -1.9995886115555534e9, Ti = 4.374999940395355, Fr = 2.27070703125e11)
(U = 5.54752803555555e9, V = -4.038701703111107e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.299188743111109e9, V = -3.3265329137777743e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 3.020574414222219e9, V = -4.505591765333328e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -2.5786923022222195e9, V = -5.445258367999994e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.547500060444439e9, V = -4.0388189439999957e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.545354601411759e9, V = -4.037995941647054e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.299206753882351e9, V = -3.325316984470585e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 3.0200180856470556e9, V = -4.504489261176466e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -2.5814593882352915e9, V = -5.443281573647054e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.545326531764701e9, V = -4.0381131670588193e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.5269535999999976e9, V = 4.668900488888884e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -7.213856906666659e8, V = 1.179058869333332e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -5.59926673066666e9, V = -9.396666328888879e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 2.5269256533333306e9, V = 4.667728097777773e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -3.248339306666663e9, V = 7.121688159999993e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -8.126220359111103e9, V = -1.406556682666665e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = -4.877881031111106e9, V = -2.1187254968888867e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 3.248311303111108e9, V = -7.122860568888881e8, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 8.126192398222214e9, V = 1.4064394311111097e9, Ti = 4.791666805744171, Fr = 2.27070703125e11)
(U = 5.658309684512815e9, V = -3.9900336836923037e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 5.658283887589737e9, V = -3.990151154871791e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 3.0433165062564073e9, V = -4.479256681025637e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.290543504410254e9, V = -3.3066006843076887e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -2.4295591712820487e9, V = -5.467004468512815e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 5.658234788102558e9, V = -3.9884589423589706e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 3.0432416295384583e9, V = -4.477681939692303e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.2904686145641003e9, V = -3.305025916717945e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 5.658209004307686e9, V = -3.9885764069743543e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -2.429634061128203e9, V = -5.465429700923072e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.614993171692305e9, V = 4.8922299733333284e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -7.527729985641018e8, V = 1.1726559999999988e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -5.472875690666661e9, V = -9.87747757948717e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 2.6149673616410227e9, V = 4.891055195897431e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -3.367766186666663e9, V = 6.834330141538454e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -8.087868875487172e9, V = -1.4769707651282036e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = -4.720102662564097e9, V = -2.160403784205126e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 3.3677403569230733e9, V = -6.835504902564095e8, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 8.087843052307683e9, V = 1.47685327753846e9, Ti = 4.945833384990692, Fr = 2.27070703125e11)
(U = 6.037485539555549e9, V = -3.7629412693333297e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.206725866666664e9, V = -3.2192776817777743e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 3.0838075448888855e9, V = -4.360287900444439e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.037469781333326e9, V = -3.763059541333329e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.037566023111104e9, V = -3.761366407111107e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 3.083888028444441e9, V = -4.358713059555551e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.206806371555553e9, V = -3.217702819555552e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.037550279111104e9, V = -3.7614846791111073e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.9536779662222195e9, V = 5.973466417777772e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = -8.77081679999999e8, V = 1.141010222222221e9, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 2.953662200888886e9, V = 5.97228362666666e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = -3.830759658666662e9, V = 5.436635751111104e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 3.8307439288888845e9, V = -5.43781858666666e8, Ti = 5.633333265781403, Fr = 2.27070703125e11)
(U = 6.193776597333326e9, V = -3.584673976888885e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.193768718222216e9, V = -3.584792625777774e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 2.0963110399999979e9, V = -3.1565621119999967e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.04824456533333e9, V = -4.2709149368888845e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.193972479999993e9, V = -3.583095103999996e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 2.0965068515555534e9, V = -3.154983210666663e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.0484403768888855e9, V = -4.269336042666662e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.193964600888882e9, V = -3.5832137315555515e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.145532039111108e9, V = 6.862409528888881e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 3.145524195555552e9, V = 6.861223146666659e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = -9.519335111111101e8, V = 1.114352821333332e9, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = -4.0974655644444404e9, V = 4.2811187466666627e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 4.0974577137777734e9, V = -4.2823050222222173e8, Ti = 6.1499998569488525, Fr = 2.27070703125e11)
(U = 6.234329756444438e9, V = -3.385946503111108e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 1.931031367111109e9, V = -3.0921642239999967e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.234330837333326e9, V = -3.3860652231111073e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 2.9449131591111083e9, V = -4.1750833208888845e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.234647921777771e9, V = -3.3843593599999967e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.234648903111104e9, V = -3.3844781297777743e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 1.931349447111109e9, V = -3.090577116444441e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 2.94523125333333e9, V = -4.1734962275555515e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 3.289416654222219e9, V = 7.89136849777777e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 3.2894176639999967e9, V = 7.890181191111102e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = -1.0138817973333323e9, V = 1.0829191111111097e9, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = -4.303298439111107e9, V = 2.937822586666663e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 4.30329948444444e9, V = -2.939009928888886e8, Ti = 6.716666579246521, Fr = 2.27070703125e11)
(U = 6.151253688888882e9, V = -3.205430023111108e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 1.7430493191111093e9, V = -3.038615523555552e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 2.7939210951111083e9, V = -4.091441422222218e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.151262791111104e9, V = -3.205548579555552e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.159540360533327e9, V = -3.2139407530666633e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 2.804326297599997e9, V = -4.0944362495999956e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.159549064533327e9, V = -3.214059332266663e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 1.7550084863999982e9, V = -3.039883980799997e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 3.35733262933333e9, V = 8.86011391999999e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = -1.0508717404444433e9, V = 1.0528258951111101e9, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 3.357341724444441e9, V = 8.858928017777768e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = -4.408204373333328e9, V = 1.6681450088888872e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 4.408213447111106e9, V = -1.6693308977777758e8, Ti = 7.233333349227905, Fr = 2.27070703125e11)
(U = 6.086775295999993e9, V = -3.1345589279999967e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 2.719461119999997e9, V = -4.0595089759999957e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 1.6591904159999983e9, V = -3.0189068799999967e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 6.086787583999993e9, V = -3.1346773919999967e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 3.367314207999996e9, V = 9.24950019999999e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = -1.0602706839999988e9, V = 1.0406020399999988e9, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 3.367326447999996e9, V = 9.248315599999989e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = -4.427584863999995e9, V = 1.1565201249999988e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
(U = 4.427597119999995e9, V = -1.1577047599999988e8, Ti = 7.438888907432556, Fr = 2.27070703125e11)
)
)
ObservedInstrumentModel
with Jones: JonesSandwich
with reference basis: PolarizedTypes.CirBasis()Data Products: Comrade.EHTCoherencyDatum
Transform: Params to ℝ^9788
)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, OptimizationLBFGSB
xopt, sol = comrade_opt(
post, LBFGSB();
initial_params = prior_sample(rng, post), maxiters = 2_000
)((sky = (σs = (3.437535602218589, 0.19662232278447395, 0.08321424177187695, 0.016214360734689497), as = ((params = [0.009669872433533847 0.014920819558216454 0.018459679345437772 0.026960139665608705 0.042106675590649054 0.05844449715898177 0.07107497797028985 0.08050662394117415 0.08840079093545618 0.0932862601238344 0.08974914682621218 0.07427620282656236 0.052160767524277764 0.03203654508603558 0.017722121997056764 0.008810877602160021 0.0038038807776270647 0.002695412848610399 0.0051176531214253045 0.009864258136073598 0.015485761603117067 0.01956611985201094 0.02309451436943328 0.027602823399259683 0.03438934934247563 0.04344314879150229 0.055309775630677176 0.06800545825573842 0.07711722965277833 0.07897853387760671 0.07408976744815697 0.06728883177096194 0.06301209343437991 0.05801787515491271 0.04762120276041702 0.03430656066649609 0.027121189727067025 0.03204667181397102 0.04800054142452452 0.06754519996435634 0.0802661468291351 0.08173658052723246 0.07544895200909353 0.06663430962703841 0.056264467924183256 0.04307013541501104 0.02856977077822412 0.01442738454830883; 0.019508037544448097 0.03272005709137984 0.042036477829706625 0.0552855208727103 0.07534371627215491 0.09841214782640888 0.12108688086334532 0.1429033018983677 0.1616410047779082 0.1706346825222552 0.16451544616636876 0.14669333538392998 0.12614841285352507 0.1078814771253837 0.09086687333176784 0.07359006427984054 0.058705623517072175 0.04965732786235787 0.04601661236868178 0.047329457697082106 0.05178508328979406 0.057747197143021956 0.06624251196589928 0.0776032031230205 0.09019320399581135 0.10207354563260569 0.11400994554650044 0.1256693871035783 0.13307492479443414 0.13083463412322724 0.1185886292019104 0.1022977543976067 0.09021022061817618 0.08378834979867603 0.07777328613128787 0.07052715237944077 0.06669252992899871 0.07315395003673102 0.09198043671988071 0.1196621177891887 0.14713539311163826 0.161809090359741 0.15714343878290615 0.13779377775608845 0.11209611845683715 0.08472326883906887 0.057140086810307675 0.029146024976907055; 0.024997487104563537 0.044627378351886335 0.06102524490137064 0.08061489012133889 0.10585879162470373 0.13577256429369336 0.1702234410496633 0.20709560157741114 0.2376493785579922 0.25154203132966707 0.24881737548140706 0.23893369868492023 0.22761659427710224 0.21311787011462666 0.1919469803877041 0.16580527856913685 0.14240011805021924 0.12519827156600025 0.11281859672303558 0.1042672652837005 0.09850024583897053 0.09758546203598044 0.10411109774345126 0.11903886023055765 0.1367381608014189 0.15201174324665045 0.16211150744389297 0.16800440245173945 0.16947093294065352 0.16364154913614581 0.14787593031772142 0.12552956267599066 0.10445633253730013 0.0933110220089208 0.091872749933538 0.09581171145543729 0.10226990887155026 0.1133861165976096 0.1328952740811913 0.16068946892289837 0.1937061101257411 0.22094081144923775 0.22686729211785123 0.20632896869875694 0.16788923430573496 0.12393990016225438 0.08145052910967432 0.0407648338465294; 0.02418265824947926 0.048372163435400226 0.07534421587745337 0.10698661986506385 0.14274495464736658 0.18373050191388265 0.23244748366676032 0.2848460747292978 0.3280401363736639 0.3523670800817791 0.3592235706036622 0.35326433319971157 0.33700553373767833 0.31316628439912125 0.2853387607414317 0.25848883779005377 0.23549651579030667 0.21551185328843303 0.1975453955715236 0.17920128433930535 0.16104361938082798 0.14676760624245427 0.14225851889035354 0.15225220888529273 0.1727588010069439 0.19610388365971787 0.21287899739476507 0.2176649024529932 0.21105577774341777 0.19652229819411435 0.1739553367274632 0.14486775746554661 0.11500047163105534 0.09443129429205231 0.0892217832510354 0.0965948609431803 0.11416839115810086 0.1391864575946864 0.16962806625805868 0.20114337282533637 0.2291381663957731 0.25239941812310324 0.2640713257933576 0.25248902184647465 0.21421254358559488 0.1591355160461773 0.10189675499517456 0.049485097866418665; 0.02445380698885845 0.05704449407589749 0.09740004217913178 0.13964568026279606 0.1832774439598038 0.23452922786664845 0.297173564196035 0.36476005557546753 0.42309469528309734 0.4611937875912528 0.47470481328915415 0.4641428906269242 0.43803624238613814 0.4106070104866117 0.39138466342473877 0.3776502057402823 0.36018059908585665 0.3363488246945005 0.3077104742354441 0.2766217584429075 0.24640620587731182 0.2198462715526435 0.20407851589601253 0.20525848060957486 0.22522778178931152 0.2559889876311579 0.28460545919753677 0.29433315633256996 0.2787481678474022 0.2441719441504801 0.2008772801980749 0.15379908816826268 0.10968699469367381 0.07727002294849203 0.06562896046751 0.07298830912147113 0.09802055139706904 0.13948234061790582 0.18796084995431497 0.23258706159589226 0.2615262780569377 0.2721454233843267 0.27204648112691 0.2608103909767937 0.2293073616874414 0.17694232460484557 0.11588005345256135 0.05664152516132353; 0.03196708104196349 0.07627014846836433 0.12772653177865972 0.176759755066127 0.22649496596945884 0.2866841467191603 0.3611380931769287 0.4421115499767559 0.5124449297286238 0.5560514822638526 0.5666998892252382 0.5510492458415218 0.5286122803278722 0.5208958522295146 0.5317322183808628 0.5436606745262598 0.5390001736082661 0.5086510492210474 0.45316399995992684 0.3882183128765813 0.32817363450399617 0.281423600528376 0.25307456018480556 0.24624312266792947 0.26329218403162713 0.29648741205466933 0.33199709121722865 0.34870196032956546 0.3308830670889835 0.2798585364196071 0.21429520485921238 0.14780937046448756 0.08844944750634468 0.046114215341263476 0.031112325222489415 0.042535623301630326 0.07178571199027114 0.11857455925374326 0.17563657828465376 0.2313652509607349 0.27271672619755283 0.28325807920207124 0.2656749567166776 0.23778800326973304 0.20485214171784347 0.1618230133926164 0.11006418235749868 0.05529971570695815; 0.04518734504222103 0.10004166935140585 0.1594950168243049 0.21685165430748635 0.27643577537320324 0.34714907480323864 0.4319022986141917 0.5201852841994251 0.5904368827316347 0.626086375644383 0.6270412207566589 0.6103725413263863 0.6048436945725125 0.6294459970794902 0.6771007965185668 0.7256064719243224 0.7479937003311501 0.712294733168611 0.6125318926072045 0.48158965475646165 0.3605449563740054 0.2753352351993065 0.22893368931920746 0.21675030641667178 0.23336391906363116 0.2688389715412829 0.30503799759951117 0.3229474191767966 0.30649140080173415 0.25289751912130554 0.17976668215015254 0.1076018364864222 0.0431062519464983 -0.0043985259518319955 -0.020465301539345976 0.0006242514172476636 0.042968717937984374 0.09385178556105304 0.14758156651278473 0.19732665550721118 0.24109790460365738 0.2624470568175226 0.24356291912047617 0.19957808853223188 0.1559374060825837 0.11734679527680937 0.0787002308167719 0.03922907753097552; 0.06038257759255013 0.12451715829775924 0.1917618864381115 0.2618695899213295 0.33831332353962396 0.4243819652748049 0.5173197085817821 0.6036769557550525 0.6635964921211764 0.6858450212985732 0.6763620005349392 0.659447841652912 0.6648648905884954 0.7051298245074482 0.7773247979767745 0.8645291989802137 0.9155198247168106 0.8680634159773759 0.7150472008476976 0.5067161454057887 0.3135244609832903 0.18224941441253364 0.11747763936042697 0.10449213367890137 0.12702697079803824 0.17095352510910183 0.21288739627954975 0.23151844815687836 0.21646248102014748 0.16909227742747684 0.1040269150961814 0.04105370335030072 -0.015980572696115653 -0.06447029625412612 -0.0883748827189631 -0.06823039392967087 -0.012254565014829813 0.05250441885878235 0.10921825229443886 0.14858461275497958 0.17656676325780313 0.1968986625812336 0.1893589437301602 0.14767449229830248 0.09687285584946717 0.05729803463375655 0.030320001665906558 0.012370462471911915; 0.07438913199825466 0.14992198641064916 0.2309949122903341 0.32159707508032503 0.4214516942477333 0.5254068996914941 0.6245587993195673 0.7059732707350208 0.7553898497473444 0.7665422269125397 0.74719014654319 0.720273235242631 0.7111940760084476 0.7402369017504171 0.8214027687596471 0.9314390848741337 0.9884926459320608 0.914832350005863 0.7142535508474824 0.45154661416420505 0.20873449291558135 0.04065807337562393 -0.04156170682961073 -0.05575264652701392 -0.025962498139765283 0.031086186319237926 0.0897502506343819 0.12336863473770934 0.11977247383835417 0.08564544812398604 0.035658617696115315 -0.012167124143667185 -0.05641689181036185 -0.09988988916885705 -0.13441724434693755 -0.13383847060530232 -0.08565750575470152 -0.01601341195696275 0.04558475743351256 0.08140265451865902 0.09357866654084347 0.10095287989917537 0.10055643483262319 0.07463671904977574 0.030325514046068026 -0.0074618831073773595 -0.023661037164410915 -0.018223473327773437; 0.08859910427898263 0.1821475001368317 0.28714239692068944 0.4052756979939112 0.5309072847968823 0.6532667504062907 0.7600191722980595 0.8396203527615886 0.8828425473511682 0.8850762786852858 0.8490571964766758 0.791963444511716 0.7447810379531821 0.7462182578782591 0.8147296979032213 0.9110653904821115 0.9464889748256572 0.8485706033527252 0.6255082792885571 0.34684716726807946 0.08889129053388785 -0.09756075994317215 -0.19199679514501353 -0.2093907758481449 -0.1738619634649607 -0.10205388509773514 -0.019497472706573163 0.04594050862191357 0.07179687342309497 0.06092190624919628 0.026514646485741814 -0.012153134373842097 -0.052749244717357084 -0.09633516447537095 -0.1384797151178568 -0.1646041294036816 -0.1472049129680567 -0.09404846637140815 -0.03801395911124591 -0.005154947988764092 -0.0024952054438791265 -0.0077614204568761174 -0.006375599769404204 -0.01466149390907479 -0.04161218719829548 -0.06844632593970339 -0.07184956969754935 -0.04537166335875851; 0.11021897119410792 0.23047802140744392 0.36627782905834494 0.5147058206293827 0.664760219773869 0.8017268789657866 0.9148140213258926 0.997058747086562 1.0408202385896563 1.0359231739809858 0.9750515468877141 0.8728357299589025 0.7726361607665452 0.7281895132248928 0.7558151936039151 0.8120069034384063 0.8211180827112374 0.7204236613879051 0.5095672190093306 0.24590901004362217 -0.009871465160554656 -0.20353270586058006 -0.30292223086865766 -0.3189855135484336 -0.27204880740019916 -0.18334125083942565 -0.07518047633010992 0.02725665128806694 0.09708031080946986 0.11999044227198731 0.10127192669180418 0.05980402379112984 0.005958364786465692 -0.05822473494011395 -0.11571530369964309 -0.16365155700953174 -0.18575639313974476 -0.16860168481882923 -0.131122896890519 -0.10132417899416524 -0.0991114283239937 -0.11208597920834318 -0.11309996204266465 -0.10701239925504592 -0.11200663074568086 -0.12015191153978377 -0.10777886293636457 -0.06438469297144446; 0.14470305929368416 0.2992282417066869 0.4673656021338426 0.6419440849618082 0.8066127111992646 0.9486524558536119 1.064677785466104 1.1503804487914149 1.1982499402725149 1.1919455774312688 1.109936615311912 0.9603245770962007 0.7975723775833187 0.6902204285345597 0.6662782658986129 0.6899086596035356 0.6887830566322184 0.6043748684510344 0.42645799356586894 0.18860573648765902 -0.06150857361024464 -0.26018984846195314 -0.3643222080914175 -0.37235665713937566 -0.30576868324775397 -0.19909360895278047 -0.07220652076872495 0.05398999648289018 0.16629208715213856 0.23468139189851725 0.24061507765967552 0.18769148713968076 0.10177477554151848 -0.004336057784240208 -0.09775364648888035 -0.16405740594118717 -0.21129279244704374 -0.2305055906198197 -0.22058539407145086 -0.19842632447436387 -0.1896183103071754 -0.19947386152017454 -0.20317149712227528 -0.1901524827029803 -0.17499138742705542 -0.1609492060857495 -0.1320180622096896 -0.07621637647964834; 0.188493991703568 0.3811129518304913 0.5768970210731466 0.7650134128211111 0.9315537260661099 1.0711714360641873 1.1816655057358052 1.2606509493309173 1.3078986745477998 1.3028903748774583 1.2121417662282667 1.0360692374111895 0.8270136786783767 0.6600124382147154 0.5868422481189951 0.5887780193002277 0.594801665182491 0.5363153908919814 0.38554645491704953 0.16989154796694433 -0.0609149303390576 -0.24903352844669882 -0.34811936899495527 -0.344279526628691 -0.26118905852518143 -0.1450183727369811 -0.018009985801817497 0.10569054131057862 0.23087027382434436 0.34014717056287364 0.384900278188699 0.3283337235029229 0.1971841882019621 0.03487139801905939 -0.10967183608678205 -0.20240539913805655 -0.25900090342706034 -0.29370266064135603 -0.3020621232870327 -0.2857660145524826 -0.26769188609253447 -0.2661798714882926 -0.26605369372228616 -0.24954012241482482 -0.2217945221124993 -0.189206752139151 -0.14527604834573007 -0.08121008704837394; 0.23251958207454962 0.459926390291544 0.6747730632431826 0.8677738522650198 1.0326572244486336 1.1655292273162372 1.2603474187125654 1.3186472599446613 1.345355016257048 1.3262929581022673 1.2388314378770884 1.0742457468684088 0.8585650617823744 0.6616961413041965 0.5522051635605052 0.5311589385822761 0.5388142400719008 0.4930404685979719 0.35840101280735076 0.1688206476015298 -0.026432559373990343 -0.1818938586483025 -0.2629805316318032 -0.25373025464626847 -0.16640358276857337 -0.054463357612005846 0.05543297120463355 0.1560988259037578 0.2573466444350531 0.3709849693317195 0.44361012892290624 0.3999480098247272 0.24362782918792036 0.03420927723605459 -0.15852596474449895 -0.28203614439290386 -0.34625176842528005 -0.38026638489670284 -0.3889150850149965 -0.3669632178779744 -0.3309822533040426 -0.30963253057285084 -0.29959505162702643 -0.27873162467584434 -0.24314305144829715 -0.19905599198510668 -0.14609354276700764 -0.07933188176374405; 0.2671704519214826 0.5230439370962376 0.7561426952453147 0.9577403822487965 1.1229125872199268 1.245694217296924 1.3179244505498147 1.3409836655491458 1.3244583426126306 1.2729197080474615 1.184696415998992 1.0482628052231826 0.8629545367622323 0.6752068181911672 0.5468868778156013 0.4953572567054578 0.4784400940440425 0.4257225682421371 0.3112672809024723 0.1539914744075841 -0.004707693094572123 -0.12671566997840314 -0.19636655629611027 -0.18921211358492682 -0.10724284532298373 -0.0035872296832806065 0.08866817145611036 0.15793591716522398 0.2158348380118194 0.28447629895515075 0.34118236725806705 0.30167395464741176 0.15981445965719152 -0.04019013082383 -0.24305355343997737 -0.3810003476469304 -0.44850670221678 -0.4785210476032538 -0.4803694429284182 -0.445947169485083 -0.3866780526002566 -0.3371631524100962 -0.3088983515894715 -0.28176759408994756 -0.24190781728251595 -0.19179665373445523 -0.1355981724586756 -0.07181056309062184; 0.2917086680379222 0.5728383416727288 0.8288880349612363 1.0449337158260428 1.2117376487064826 1.3218900629736052 1.3669737442495458 1.350783262640979 1.2901902572264603 1.2009031232386838 1.0961096626119906 0.9750931779324664 0.822430142540135 0.6516949953419046 0.5105065285585438 0.42966196942500345 0.38367655100708387 0.32611424701807273 0.23385365487632115 0.10502547724085973 -0.02805169315723451 -0.13501179430814989 -0.19777676170836034 -0.18851807643111299 -0.11502598381085237 -0.010179921517070046 0.07051824705725752 0.10342319431217521 0.1068760114627346 0.09624042720725422 0.09273571521639895 0.041165273990049475 -0.07730564294606102 -0.22673350652852087 -0.38500872718260537 -0.49723657157111545 -0.5428230918470749 -0.5550372245561106 -0.5482693405678633 -0.5072851169813227 -0.43238953959619647 -0.35805639266228556 -0.30730090277077093 -0.2679025485567587 -0.22386378674269375 -0.1734341248582288 -0.11981603001958663 -0.06236527919435642; 0.3139875442215226 0.6201587922516019 0.9014207034366453 1.135217781170287 1.3046654813095249 1.3972476674326344 1.4065161198546563 1.3465580488723574 1.24669681742622 1.130323180849733 1.0112369492299529 0.8862463324378659 0.7358128881849918 0.5653619431355594 0.41488781772863514 0.31441655840154137 0.2534386240420075 0.20622713312245775 0.1458752318615251 0.053286297694781166 -0.06112155780603629 -0.16409147044247102 -0.22135641863435176 -0.20436481614494215 -0.1135652771889411 0.008903369066989087 0.08169788375436275 0.07018242525526237 0.002708211178777295 -0.09772579301194556 -0.19305222826734905 -0.2752391826431848 -0.37135182071243883 -0.4752858636518785 -0.5813904561247718 -0.646783135283087 -0.6452891594129744 -0.6131863484021298 -0.5789176158474544 -0.5289953785599641 -0.4494551783941997 -0.3637615948540149 -0.2983464758502828 -0.2477229664233785 -0.19831626585426884 -0.14929080283616392 -0.10243873600461649 -0.05366862736625732; 0.3413265978578299 0.674664479978299 0.9807941294052149 1.2321813742520302 1.4017613793840624 1.4670147183713231 1.4255268442815574 1.3099656238228345 1.1683825900793217 1.0363228138857634 0.9218790417128208 0.8001004670893231 0.6443992777152687 0.46031544288937876 0.28613847586664887 0.16492199846521655 0.1045810196610295 0.08092264469294166 0.06366092434002946 0.01675972279823475 -0.07655931981038433 -0.1790569333207595 -0.2324275066169298 -0.1829486942463635 -0.03772782851865548 0.11792461651296855 0.19359292448299237 0.14163401262894432 -0.010735627412366541 -0.20506494724349397 -0.3893109115050755 -0.5263408119839306 -0.6201339467059706 -0.6880681344831541 -0.7576901721813109 -0.7947224787461217 -0.7570692145445603 -0.6758323672806902 -0.5969484701296901 -0.5221483283293142 -0.43367040874703555 -0.34347962677086025 -0.27386112299316545 -0.22057991077099967 -0.17127200220680094 -0.12634024800627555 -0.0870469781514126 -0.046435856540010645; 0.3719386929460026 0.7344156887716662 1.0665513871107426 1.3351181695123824 1.498698744421514 1.5248153335595687 1.4233591692125784 1.2479212110207156 1.0611719283018652 0.9133840733867578 0.8145902622052861 0.7181254444017081 0.5707434134488727 0.364681187478629 0.156448882436347 0.012349331100463537 -0.0613240653783257 -0.07720539261618788 -0.04242594196399728 -0.023220465235417435 -0.08033491216895358 -0.17636552821467166 -0.21181677945854355 -0.117587869720505 0.08673306630514298 0.30290174464694547 0.3909229242477861 0.30744332551523446 0.08924726295106664 -0.20441575495140035 -0.4629987820137237 -0.6466859907562398 -0.7598182028490574 -0.811918294675508 -0.8514189213087437 -0.8738056197230648 -0.8299283325270473 -0.7275554938671396 -0.6141647913881143 -0.5103720157429663 -0.40573778877071776 -0.3066278437029625 -0.23290452557837923 -0.18152175331867634 -0.13881665699019186 -0.10313661069672718 -0.07374086515375723 -0.04103421728442343; 0.40064220019018654 0.7930809576426364 1.151985281730249 1.4318710249189042 1.5762827861363489 1.552678262728085 1.3939321203458508 1.1697560995971938 0.9489024282282664 0.7949108190086805 0.7194763113757432 0.6550844712314131 0.5165689773511722 0.28469178098346976 0.04117098642502651 -0.13685091656769724 -0.24338060955162205 -0.2582604173004908 -0.17778406097518232 -0.08548471246314604 -0.05972237430912291 -0.09734189183257756 -0.10029889325598998 0.0056267303137015195 0.2133497185276384 0.4392977841874687 0.5125074374971823 0.41803541815103246 0.21030796073299599 -0.12008067202261509 -0.4284450281219363 -0.645949223055617 -0.7772697423139125 -0.8265000463209479 -0.8471537689987457 -0.8590283615693659 -0.82424216737606 -0.7314051232245227 -0.6128408270572917 -0.49604342642702176 -0.3798306828507382 -0.2704830701626185 -0.18731950195053884 -0.13250569799350667 -0.09647152044324533 -0.07431309291428591 -0.05846622847597075 -0.035177943432453104; 0.42348108798612333 0.8411803121125747 1.2205401146299852 1.5003133018117647 1.6131786779799604 1.5350148971175228 1.328845031844587 1.080904783446373 0.8544556343367847 0.7126093572719947 0.6655818974843746 0.6313685089206496 0.49887154204109324 0.23793520411121047 -0.049466340983320714 -0.26880355380736837 -0.40102827503069516 -0.41502657351704686 -0.3070747365490739 -0.13239021576800888 0.02078170684322038 0.08703437722719295 0.10032479390017508 0.13696979894726458 0.20092990782130035 0.2759730716280475 0.30412588679852515 0.2796199686635688 0.17464180280397887 -0.06874166877786736 -0.33596284716291125 -0.5473636294212112 -0.6838005547691632 -0.7318817968579925 -0.7440618869510712 -0.7573829564370622 -0.7448840314254092 -0.6795888824518603 -0.5776963171711763 -0.46883842565999906 -0.3562441941879838 -0.2439655843770651 -0.15171749297668544 -0.08864725430935629 -0.05295135550983056 -0.04097074682806713 -0.03909825602294659 -0.0272558537174774; 0.4355990389515334 0.8663828961787143 1.2525005358122507 1.5196987540114142 1.5981889337306845 1.4787221339237189 1.2469845432204156 0.9991458615772624 0.7893232125452639 0.6729726426078293 0.6593770494541181 0.6546657227417142 0.5234062866023105 0.22868019567406161 -0.10907297973747083 -0.37413657915392023 -0.5312605740520321 -0.54374038011959 -0.39239162653642784 -0.129520889852249 0.13141823044643813 0.29745845593070047 0.28555391060581115 0.1748209838641491 0.04456226030771264 -0.027966694387715946 -0.013333196788211694 0.043927239203260984 0.060275304893078856 -0.04576141238442013 -0.213431920972842 -0.37711899044438 -0.4956807473439725 -0.5409665757638006 -0.5577483119348817 -0.5866130919932551 -0.6131493584429826 -0.595282439764166 -0.5250759147094531 -0.43331860981124354 -0.3339577829484888 -0.23030471434961466 -0.13612689696317498 -0.06395635109402505 -0.022468134082387656 -0.013008646804978157 -0.019227789943642302 -0.01722945866151418; 0.4314631107404159 0.8568041069281808 1.2333459721636604 1.483399619541228 1.5417422340378613 1.412870424315774 1.1861248485693152 0.9573379530574715 0.7757953817017907 0.6842387204118596 0.688984264268066 0.6959690601953575 0.5588577402897111 0.23027718936210426 -0.16129212705860158 -0.471528172546011 -0.6426024872732577 -0.6395670808106643 -0.44655364290129856 -0.12666342644102105 0.20761751181800717 0.4298319799022162 0.3366763567732435 0.0622719824585736 -0.18335946307928624 -0.30863806616386597 -0.27973387975046093 -0.16165684804960878 -0.04243477359052591 -0.010938954773629057 -0.07509732145355076 -0.1850004772441921 -0.27110623550228563 -0.30425502821147166 -0.33160645598692207 -0.3862053356671234 -0.4550357254249232 -0.4921817650830091 -0.46982053267871093 -0.4072600661275743 -0.32442756538221185 -0.2316861481013299 -0.1416233393040254 -0.06464712666169009 -0.013932559366634156 0.0018632268746148432 -0.004427930590490619 -0.008210537971790563; 0.4104692509426065 0.8112683558241852 1.162548349779428 1.39720514224564 1.460265028658684 1.360965540174568 1.1766374154122303 0.9881049643203642 0.8349971191816309 0.746536187536453 0.7289821697814506 0.7046576890077247 0.540857700632209 0.18656259722934493 -0.23742822306116557 -0.5710242052212667 -0.7383174983883951 -0.7177942845678579 -0.5067708732997558 -0.15758234884308536 0.2296229586103556 0.4604967645112566 0.2753441593442713 -0.10959529123393669 -0.42073705250498084 -0.5552053797083818 -0.5018549885021681 -0.33475440323944067 -0.14339111135269678 -0.016452382164232435 0.012062286151739127 -0.034448247844080904 -0.08204863881043088 -0.10513605662289682 -0.14718411552756375 -0.22411255562700438 -0.3190208154519229 -0.39296231679952365 -0.4148656284135613 -0.3897455756846538 -0.3312852394742056 -0.2532368681078258 -0.16889270061166275 -0.08813534730380582 -0.027592202315752736 -0.000989159710556737 -0.000139927666974357 -0.0033938076389472; 0.3747287049148993 0.7407509946249083 1.0611664349875214 1.2840599369593297 1.369506746758169 1.323263178143047 1.202446591440553 1.0646577346416848 0.9332159008161114 0.8227989899538241 0.7420066550386262 0.6438114792857466 0.43368953500452456 0.06710185293725927 -0.3598316128193602 -0.6848626355752712 -0.8230319395066855 -0.7781737179462025 -0.5621588071038529 -0.21469007251359162 0.18544543102735722 0.42563230469952923 0.21372516053023155 -0.21329634145576404 -0.5691211056774678 -0.7251593963377093 -0.6745890256766796 -0.4848333886232475 -0.2574930042447348 -0.0711417320807644 0.04310163230509302 0.06586108750133714 0.05072784292127877 0.022837521801065498 -0.03891916581914154 -0.12914982518112628 -0.2305426753876268 -0.3193641673078315 -0.37324146654561746 -0.3834200284140197 -0.3500575286650255 -0.2875290600886292 -0.2112427302371802 -0.12950337094269349 -0.05913109260565733 -0.0185624335844561 -0.006162310391710617 -0.003986956388811139; 0.3271369610275711 0.6554586516260932 0.9517549857422779 1.1722771710717692 1.2878046368820395 1.2979165220568425 1.2380037283809642 1.1432687259975483 1.0208936625706757 0.8746069470897332 0.7228207259831687 0.5520341656686122 0.3025401068402222 -0.06255920112229389 -0.47385096665618287 -0.7792632273737968 -0.8847647855359123 -0.8151115029639713 -0.601507699376023 -0.26747654720112984 0.10319699629969029 0.3534866987210615 0.20785417825232066 -0.19336259712674192 -0.5695563594360871 -0.7545989805774882 -0.7390208770263915 -0.5749477436741611 -0.3535648856354654 -0.13026532072879904 0.05190213282112263 0.13407179771276112 0.13264774202974652 0.07775305397966029 -0.005506836698474424 -0.08988509599312469 -0.17632856374458028 -0.2652878542219 -0.3407363466856985 -0.38047787229380714 -0.37176564301706255 -0.32621021402475203 -0.25830348531903224 -0.17600905160171604 -0.09783173889016702 -0.04467150433961042 -0.01922083876293993 -0.008228548667426993; 0.2771964203409248 0.5668674080607459 0.8435675975260053 1.0677500108244355 1.2141206652023662 1.275625828914225 1.2673296509883947 1.2067964923100698 1.0903101495476915 0.9148176292639117 0.7133870660661144 0.5027172575781371 0.24026870983607163 -0.10779471481924306 -0.4858866816447156 -0.7684532643728785 -0.8683193523725946 -0.7978911707422899 -0.603159460556558 -0.30383233268519144 0.029831233605643836 0.2676308713387741 0.2220849857955113 -0.07815408886252381 -0.3960153828992352 -0.5795235117034099 -0.609735459220264 -0.5083115785750504 -0.3341925340267156 -0.12386298649511324 0.07414985309320841 0.17894362586293128 0.17067029324802174 0.0965291994680526 0.01452186957008244 -0.05607788133066209 -0.13291656948737698 -0.22373316572486224 -0.31312192807949296 -0.3723752896887727 -0.38448561731840375 -0.35679909278715677 -0.2990588714431716 -0.2194184052276276 -0.13733191728535676 -0.07416998335782281 -0.03633045132194383 -0.01524503645941163; 0.23506347448752019 0.48792839407071437 0.7439567140802027 0.9680516137007062 1.132976725217945 1.2275880353580682 1.2568033970675014 1.2266150651778447 1.1229884154068206 0.9379029272058403 0.7168716537016718 0.5017428697770022 0.25809895440431463 -0.057579322785133016 -0.3983947126655338 -0.6555775571965741 -0.754809458146091 -0.6960341072070512 -0.5259416136027608 -0.27824453916714836 0.0005664327245649111 0.20958103696023503 0.23512962265846762 0.08525236948764088 -0.1064538047885049 -0.24158800648140114 -0.2880147765087644 -0.24754557285274711 -0.14888060528479516 -0.0058828246508007475 0.14196316666320344 0.21447630926232994 0.19200818628665467 0.127646328417911 0.06419599004470133 0.001588032149162094 -0.07819555014462337 -0.17905320808797584 -0.28205839937929056 -0.35693377487576977 -0.38782759572633413 -0.3772476087819357 -0.3294094609944495 -0.2538328654949425 -0.1717372296851073 -0.10323731131398009 -0.05554441735704373 -0.024027593971717987; 0.19725811145665426 0.4183780132643433 0.6569555937084297 0.878113786543729 1.0466223389198206 1.1465682211545218 1.1829926396912558 1.1648260220585778 1.0780103420689136 0.9080527094739981 0.6978536272512663 0.5053011376842839 0.3045680535723756 0.036523526160008236 -0.26089184667704884 -0.4835053840268006 -0.5674846889319075 -0.51021310381046 -0.35821409625064565 -0.16242751067554514 0.042286543506245805 0.2007463446680917 0.257543323526698 0.23511065103499207 0.18741340966660436 0.1476741788156298 0.12392164462853081 0.11287177478721215 0.12623287942756897 0.1752054874599993 0.22832272576942791 0.23372557570901994 0.20098777854993768 0.16089681445689888 0.11891613983202634 0.061223663848804656 -0.024625857422562295 -0.13347304631325235 -0.24436272767150788 -0.3327288540802008 -0.38343266660153613 -0.38820919429623624 -0.3467375479723215 -0.2751586246278943 -0.19635483603103177 -0.12613797875367588 -0.07160129490071496 -0.031784254876100884; 0.1561564814963515 0.34802609706161264 0.5741901570061966 0.7956183494895462 0.9651485184853555 1.0560899946895024 1.0725647618499878 1.0360345616351354 0.9520229833939033 0.8116027835793371 0.6399129821375809 0.48884912352954607 0.34765805382676307 0.14684796696342567 -0.10393136114529031 -0.2978032305121981 -0.35935917381551863 -0.2947809941383673 -0.15727569738048422 -0.010001569650319614 0.1144483405187541 0.204611620535297 0.25474517658794377 0.2939144300104857 0.35084408661728184 0.418234516383471 0.4505398863811736 0.41771360346726416 0.3476529738745527 0.277234350522106 0.21703432005974704 0.17391676058882452 0.16078287885720746 0.1598446865536319 0.14642747590092992 0.10120411073495492 0.01846103091319256 -0.09236694419601404 -0.2119040101922445 -0.3155612380240546 -0.3788955291355534 -0.38642987209924073 -0.3456667395248347 -0.279767726032352 -0.20697768834056426 -0.13809267121515317 -0.08084067842131328 -0.03658206957107486; 0.1202721190910978 0.28268728386090897 0.49104423032725547 0.7097195883429426 0.8852881728696302 0.9740425273987275 0.9680927628552122 0.8972845234727015 0.7962089834642387 0.676576127951695 0.5474213778510155 0.4342849688598255 0.33717123975136004 0.20512009238995396 0.015068990676523775 -0.15925772370407423 -0.21855981157056176 -0.14981776204204597 -0.023092242905976994 0.0893682183653663 0.14956202878128255 0.17611205010828807 0.20068195364498118 0.2460462688329686 0.31227557273219264 0.37416237616986087 0.38037005477894403 0.3131233705546488 0.20202839973339454 0.09080318576702184 0.012247779644863854 -0.006971935076434676 0.02842398296346332 0.08049429052054902 0.11101129322481008 0.09305357306720441 0.02370251141307284 -0.08379388869781232 -0.20623597175356848 -0.31150202055959114 -0.36829558387239447 -0.36660111780832666 -0.32476570415967726 -0.2661863034065579 -0.20150146723065976 -0.13714677673852146 -0.08131905674887478 -0.03702692011743425; 0.09888952351203754 0.23583291477437507 0.41965236313241544 0.6263837292013426 0.8065263480044221 0.9042399009463795 0.8944838687110501 0.8008692474366865 0.6733234867832045 0.5492516989333247 0.4387752490081012 0.34374300056021045 0.2581855570156385 0.1534274070830749 0.010720423668563146 -0.1343734641091212 -0.20085051687363378 -0.14069728604484666 -0.017044164371869466 0.08093956518445941 0.11678153954205216 0.10996996381542717 0.10616020187947056 0.12015856623383643 0.1375307615439766 0.12466409293745133 0.06063797375538669 -0.04261836957465567 -0.1581268808044207 -0.2521532529466611 -0.29811061071734024 -0.27285766293902797 -0.18799279443975353 -0.08441830154361044 -0.008200381746532322 0.009946282264544946 -0.03329729828198836 -0.12320739222815318 -0.23022230447139336 -0.3156290023025542 -0.34844525238380064 -0.3296079177836891 -0.2861438688212502 -0.23589310367305324 -0.18010551466959623 -0.12291530199179765 -0.07319322154726182 -0.033574370187371326; 0.08992600724361255 0.2093872702157339 0.3689141882778893 0.5571345631729728 0.735932499604688 0.8480101494846891 0.8557403919621316 0.7676438341269939 0.62619533612991 0.47968154058616047 0.3537917075757761 0.24825338418951018 0.1494321618053071 0.033023474674892216 -0.1061867167041582 -0.2339175056348316 -0.29902211779582755 -0.25693358160770113 -0.13910955208835174 -0.039422899638582996 -0.0019729055285417872 -0.017522321288671643 -0.0490699470468232 -0.08118289966565757 -0.12335017277937797 -0.19721265802852828 -0.30212138818482187 -0.42293710175304494 -0.5341802693728865 -0.6072211660823172 -0.6205549839512264 -0.5611338235537862 -0.44823925219458527 -0.3171724557374683 -0.20751787965749485 -0.14991589194912866 -0.15393361922166543 -0.2052200815892979 -0.2727112048899744 -0.317368438400493 -0.3151132915468543 -0.28057812390515674 -0.23948939976671632 -0.19663143073988315 -0.14920399294818737 -0.10222160036070557 -0.06163766405582918 -0.028382270810361435; 0.08849439743629078 0.19896043363217672 0.3387746101373162 0.5034968020318792 0.6713900677834909 0.7971779033533857 0.8382174123163325 0.7843907317424589 0.6575782676113111 0.49769530477713464 0.3415835657941192 0.20292899030471775 0.07299890793513204 -0.070613926632167 -0.2321513721747886 -0.37246772109515064 -0.44719074386205493 -0.4344942469384225 -0.34881759742909224 -0.257801153894645 -0.21516432220933093 -0.22592174449160385 -0.273666298540112 -0.34389126674207104 -0.4335749324257867 -0.5402785982125228 -0.6577302813005331 -0.7788933683888267 -0.8796273367451505 -0.9353743830425568 -0.9259300512356529 -0.8512273259140579 -0.7290491164950251 -0.5830392176229506 -0.4480791192077801 -0.354783242481359 -0.311549040454071 -0.30701792620870766 -0.31667609020551274 -0.30719122217741374 -0.2713393885158024 -0.2308195648938458 -0.19517736031028504 -0.15879768313841083 -0.12107073209176158 -0.08521466156174147 -0.05256283177271594 -0.02422428751464428; 0.09545122681838755 0.20377331025887852 0.32796272798952075 0.46629417048020794 0.6129419034068588 0.7437340877296837 0.8197145030667271 0.8147717378888367 0.7302334789750485 0.5890407319334646 0.4231744308819976 0.25531004734375623 0.08861540332694778 -0.08811622719574917 -0.2760334324045199 -0.4409637180654608 -0.5430738258464389 -0.5720135554338455 -0.5408040844691225 -0.48639847107369844 -0.4539704329841484 -0.4639592413130828 -0.517414966069502 -0.6069306195086586 -0.7219093125543328 -0.8460851016354141 -0.9713129633192502 -1.0917768925666236 -1.189875973258036 -1.2408465032062022 -1.2244186817953662 -1.1442819969221174 -1.0110823386817358 -0.8483839554658216 -0.6909438162338482 -0.5617929123370945 -0.46499592609099966 -0.3976209919962317 -0.34280327324503373 -0.283005915053402 -0.2286361734807629 -0.19090731466648284 -0.16089919430903843 -0.1312904452634945 -0.10310004188028564 -0.0758480831504055 -0.04832293996612038 -0.022591654365844527; 0.11528747098899482 0.2265331741722257 0.33479463244709806 0.44548958861042304 0.5660055129536434 0.6915099494987127 0.7915246596999785 0.8298416800391492 0.7941212439031307 0.69528965327962 0.5533744467975282 0.3871147452184592 0.2041026512992954 0.00297657456533125 -0.20894393613705312 -0.39840268357103403 -0.5305313570920996 -0.599843763202264 -0.61918909453946 -0.6118397090702972 -0.6101279828395244 -0.6411682058813738 -0.7144056476704633 -0.8246149650176103 -0.9579449629837214 -1.098331628795106 -1.2374344255676148 -1.3650821083672577 -1.4647867539968087 -1.5089799419434085 -1.4823095851582584 -1.385976938892993 -1.2333043313970085 -1.0541061199946726 -0.8780628015754055 -0.7174417853827008 -0.5757790423168282 -0.4558187314490653 -0.35005007591778725 -0.26055321056767 -0.20068750996060863 -0.16554656019038788 -0.13949414775689534 -0.11691285454672883 -0.0964809841854241 -0.07400797202237774 -0.048123857470057305 -0.022672557328875825; 0.14295649674502256 0.26244714360924265 0.3572218789133172 0.442078169187544 0.5358928827546796 0.6472706938353544 0.7550597094828821 0.8203746614708256 0.8238081012552617 0.7701439253099834 0.6687292762662054 0.5301154753330539 0.36181938052909496 0.16494448876177095 -0.05149593400303027 -0.25659590817651834 -0.41365808385240044 -0.5122577764369477 -0.56389585892578 -0.5917763618023105 -0.6268696154440977 -0.6941839039977148 -0.8024021467157861 -0.9427246228908654 -1.0985149565281322 -1.2559401861148738 -1.405607816667393 -1.5338501692665367 -1.6215360237875485 -1.6482897966731413 -1.6063992262259361 -1.4980583036036248 -1.3419939820887414 -1.1653213661321145 -0.9867682398637962 -0.8102458247499634 -0.6405674748085227 -0.48501156423922126 -0.3493763213371006 -0.24805024565370853 -0.1880569945534147 -0.15511199580750815 -0.13315518785016092 -0.11607442673443162 -0.09878529347385553 -0.07595805204900166 -0.04889856747369087 -0.023016202197362775; 0.16313052759830626 0.2939804411935926 0.3865757375334059 0.45615304915921934 0.526366616778155 0.6154779799731054 0.7150516934812531 0.7916991283677048 0.8213471113302427 0.8046086224046582 0.745019593683658 0.6436237488183196 0.5079922321579264 0.3443939022745631 0.15980792748062994 -0.02727022989778288 -0.18912893841600095 -0.30765377871186955 -0.38641014198372964 -0.44515137717804265 -0.5125503634220049 -0.6093804552425633 -0.7414413604783114 -0.9007259025194273 -1.071562229444613 -1.2404861899971267 -1.3952287558759702 -1.521294291852249 -1.601448294429418 -1.625217795917034 -1.5883624399636556 -1.4947592254292403 -1.359089558352888 -1.198308392683296 -1.0223213217819511 -0.8358564684426746 -0.6509060734032358 -0.481710887856299 -0.34295872932830695 -0.2485567426848431 -0.19460999370257295 -0.16252693753414638 -0.14021418658436835 -0.12255899613923099 -0.1026347621856123 -0.07660169025319602 -0.04825274993586118 -0.022618311039238687; 0.16568549919163902 0.3034926697418261 0.40555131915112574 0.47805163539066264 0.5353387860332234 0.5968337088177245 0.6716439120698898 0.7461305189777739 0.7961501472874887 0.8103682209869073 0.7878376718843266 0.7246215053564856 0.6247996108814278 0.5033991389491046 0.37255072553221447 0.24011477039154488 0.1141822533820869 0.004011015565738165 -0.08976086411744222 -0.1781168148979936 -0.275210959639919 -0.39145216697143137 -0.5299324074432784 -0.6890084545835403 -0.86096343256696 -1.034690653483877 -1.196506734341522 -1.3318469087865132 -1.4267365584689164 -1.4728773250095244 -1.4645088526636254 -1.402304609616504 -1.292716332702037 -1.1458643341983992 -0.9720505217688271 -0.787244182139819 -0.6123757661004117 -0.46210119939175576 -0.3467420938083211 -0.26924263101981394 -0.21822497192598786 -0.18134658534014514 -0.1544802923875765 -0.13212459419609107 -0.10650136984112403 -0.0764925742502472 -0.04699277073888232 -0.02172745085607103; 0.1523878011869856 0.2877723568976438 0.400790700290279 0.4890416310932856 0.5507892728002 0.5940779209907758 0.6364458795922523 0.689712646072475 0.7459415438171274 0.7861693944104464 0.7985793891930841 0.7765222560295961 0.7184094248310487 0.6395955089260624 0.5602576149964124 0.48778966007021135 0.4194629418870657 0.3500688043025467 0.2732894271277259 0.18017298739889961 0.06734967534974637 -0.06316752716551904 -0.20881309973272585 -0.3679379221469301 -0.537803344493958 -0.7118966086601922 -0.8806863165369928 -1.0319383765264334 -1.152699303263774 -1.2311810168361006 -1.258163016317187 -1.2293276378553668 -1.1467494410767023 -1.0194951906382885 -0.8641976959322976 -0.7070385148563414 -0.568755386580746 -0.45533628909924834 -0.36706594003925574 -0.3001045914182698 -0.24766786469548546 -0.20732705018378905 -0.17652136565108578 -0.1470812563933452 -0.11365350127047229 -0.0788826116413193 -0.047498537210346053 -0.021643496649767138; 0.13184753609637406 0.25740906508230854 0.3744925212868724 0.4772558842568456 0.5538460395691756 0.5983285212041499 0.6226987894466676 0.6499906495497116 0.691289327098748 0.7369498232290569 0.772070120954499 0.7875623608729426 0.7785295438026072 0.7523398953201241 0.7272511954100183 0.7115696709228096 0.6994357508358084 0.6793807935901383 0.6381249677345991 0.5638426633995823 0.45325552223023235 0.3130914797172729 0.15286889166465673 -0.01769631832070166 -0.19197292182957026 -0.3669308754291087 -0.5404844952878449 -0.7053510688847882 -0.8488102717518626 -0.9566489064663569 -1.017392000350619 -1.0234474458894618 -0.97516588579503 -0.8821818157296762 -0.7653677384886187 -0.6508392500727639 -0.5514217893476936 -0.4658920804239157 -0.3921761439719414 -0.3301536885860678 -0.2797675485239879 -0.23938940749699011 -0.20295149158489023 -0.16369546763969137 -0.12189708205192556 -0.08266670989734719 -0.04909026193237683 -0.02201073551683082; 0.11246308482310456 0.22609056896356422 0.34001734214555845 0.44677548902627395 0.5335652594048893 0.5897653107832936 0.6170518624748664 0.6331409000706281 0.6569623460712143 0.6918045105701414 0.7305761290068279 0.7670536314983791 0.796662847795529 0.8210815971732387 0.8503907215651999 0.8891423322498901 0.9285831499612468 0.953611553838054 0.9477432453797751 0.8969175565040418 0.7954666167686555 0.6495823058663318 0.474678689444649 0.28876915668515357 0.10368457661770254 -0.07896031988797517 -0.26102211023298755 -0.43795646068153327 -0.5980622770563845 -0.7288718776993165 -0.8192893292449673 -0.8598082847828737 -0.8483142333471219 -0.7936714332874477 -0.7153000238719861 -0.6328165320232536 -0.5536628233265632 -0.47820427275562966 -0.4101796015687439 -0.35412085914738034 -0.3086060324526192 -0.26696290302111875 -0.22269365851010867 -0.17440784090108202 -0.1267186431608215 -0.08437718666553415 -0.048804365673671114 -0.021065642536737823; 0.09581940852496225 0.1986120793903175 0.3062316662043218 0.40699874197028624 0.4919162030484918 0.5576650195726706 0.6001524443569708 0.6213402699584784 0.6357688307128684 0.6575240915397245 0.6909409554948955 0.7356233174128751 0.7883563233627977 0.8468418412520752 0.9141190904480709 0.9900242373942656 1.0646864989814486 1.1214589520129257 1.141996661052654 1.1113715080635889 1.0222805400918182 0.8791635331177632 0.698822230096487 0.5025786863576139 0.3041158631106312 0.10681411852248444 -0.0884770033985462 -0.2756426880959753 -0.44505755228725 -0.5885564977838629 -0.6975902577668267 -0.7618075672461591 -0.7764041628789716 -0.7477643691135464 -0.6910849678296963 -0.6217382482545227 -0.5485189353526959 -0.4775732674687593 -0.415881044022505 -0.36584279180337503 -0.3218071201560566 -0.27620717818851265 -0.22640084789921858 -0.1747611544514702 -0.12554401851136376 -0.08183131262978056 -0.04548926140337014 -0.01869719436987413; 0.07877204389452654 0.1699383233629358 0.2700712262359332 0.3624498531595 0.43875206544090545 0.5045391663316197 0.5605786971939918 0.5978044395098377 0.6146859981783132 0.6252791274926959 0.6464699468734665 0.6872079326637398 0.7480861401836221 0.8243301924309723 0.9117806178741041 1.0050681468793565 1.0935844111693236 1.1632543673376938 1.1974952720979064 1.182700227582827 1.1114284200504354 0.9852536085926914 0.8165849726044038 0.6232373549523267 0.4185298265534419 0.2100758527576327 0.005136016503522755 -0.18714494858415567 -0.35852586697091093 -0.504083769415194 -0.618117485996884 -0.6910999540690895 -0.7170249561737414 -0.6998351370244912 -0.6520823580906281 -0.5888813984125648 -0.5224658758413088 -0.46037366929053863 -0.4052736125584738 -0.35580395124587383 -0.30817188263851436 -0.2598451996045388 -0.21112733308595502 -0.16269843638247375 -0.11561257575342981 -0.07302903759718807 -0.03892189094344056 -0.015473742750543215; 0.06165078794195338 0.1375245183709741 0.22571167824165794 0.31031160008656516 0.38000583056259185 0.4385365658225981 0.4936316289065891 0.541656139972238 0.5710902749366777 0.5821745052956836 0.5921834349897687 0.6183578704835629 0.6679630218905809 0.7399540640794181 0.8272285841631368 0.920009813723281 1.006138374867347 1.0733499382173337 1.1097066157058106 1.1051473073036133 1.0540158608703094 0.9549967120596814 0.813911661587986 0.6412012484251545 0.4478981058580176 0.24486268400763306 0.04433981504206675 -0.14227451646754158 -0.3063813883530082 -0.44393149849245833 -0.5508738892020082 -0.6195856469134977 -0.6445779948178174 -0.6293377935928721 -0.585499351348644 -0.5282924021198785 -0.4707153677955603 -0.4171960468035901 -0.3657725439154054 -0.31565692168762294 -0.2681145339957077 -0.22381733217133187 -0.1816004074715329 -0.13906150697121641 -0.09626612416069803 -0.05790147902509133 -0.029161528211904594 -0.011138152965082668; 0.04803263811893253 0.10607732389379017 0.17461098914659948 0.24539675034359026 0.30837551521974094 0.35940570793200477 0.4032339469508385 0.4444364056730268 0.4776410674943349 0.4962102607971578 0.5069899581215543 0.5243871907006429 0.5573727336038051 0.6094056604077367 0.6771370175168445 0.7510994404846966 0.8200025162904362 0.8724615512760762 0.8998301104266025 0.8962179665234973 0.858734129406765 0.7853661761129621 0.6768503873564923 0.5371955459237607 0.3739238692046107 0.19862564078294948 0.025034839932919706 -0.13492086456194385 -0.2733048674637701 -0.38711499186400283 -0.4736137380458954 -0.5268512416030846 -0.5426338493585797 -0.5248110106246668 -0.48367736620519164 -0.4328899872455767 -0.3835959550495889 -0.3379950433772875 -0.2937048031807688 -0.25138372568728934 -0.21310965857076447 -0.17801798071537997 -0.14338105407884102 -0.10751302248976512 -0.07165417450221742 -0.0403878952874608 -0.018394156665948437 -0.006249311595115351; 0.03670318757352459 0.07666832233245195 0.12108043124059743 0.16922690263313706 0.21744197013221264 0.2592365727467563 0.2916841178619679 0.317424115173032 0.3382313387414951 0.3537879433387004 0.36698734142996625 0.38399225209957333 0.40865924430231615 0.44302012294642423 0.4871971362479059 0.535917908139066 0.5810355283562593 0.6137249209352486 0.6272309360239277 0.6188741793443123 0.5882643065973063 0.534789145174402 0.4572267698345032 0.3563081063230377 0.2367542328448442 0.10879529420124008 -0.015429748088788905 -0.12639652950424543 -0.21967391643254008 -0.2950773020580003 -0.35173471780432136 -0.38493589764722863 -0.3913494900284323 -0.3738731851570593 -0.3404191725626443 -0.30155416097896653 -0.2652997081106497 -0.2330646355961174 -0.20306283673719036 -0.175160388692444 -0.14942168265250733 -0.12404465555184861 -0.09797408753819814 -0.07176178136950462 -0.04647581146877571 -0.024668028101654287 -0.009784323341992762 -0.002593651868318819; 0.021389153559528015 0.04236758589222878 0.06359765881939536 0.08667628166072801 0.11212377134993566 0.13664821564895088 0.1556898936169409 0.16781016482177227 0.17462964854146354 0.17998408595901658 0.18781357856034175 0.19996722573208792 0.2161842792469264 0.23567926728068234 0.25871004744393955 0.283678552657061 0.30628632048209015 0.3217026159295082 0.32583068883785155 0.31776861320198646 0.29814658077302314 0.26738684069934804 0.22463265852046424 0.16980776135941494 0.10558947206257219 0.03829785598194966 -0.02472050363917149 -0.07854732598176636 -0.12219982894492352 -0.15720714681115225 -0.18388111540833688 -0.1992777151820159 -0.20109481648478156 -0.19053755920563295 -0.17214373196572919 -0.1518662157275521 -0.13378470596346928 -0.11841715005478706 -0.10434495329987166 -0.09079076203148785 -0.07722210203706774 -0.06298413779380868 -0.04868559450354336 -0.03523155278709786 -0.022627802205362382 -0.011652322518546898 -0.004181124080521547 -0.0008404319552015482], hyperparams = 95.60920492130074), (params = [-0.011146959214752743 -0.02224372417238441 -0.032932410050960606 -0.04420179674680327 -0.05817703730273952 -0.07462222373864422 -0.08956588050483892 -0.09656713197402159 -0.08964050054538682 -0.06647920993643772 -0.030903500975087723 0.008634594781964251 0.04470380755372279 0.07426915453804073 0.09697502013970953 0.11326439918774084 0.12280382314232365 0.1246767830813448 0.11924319616109902 0.10862295023762766 0.09501869237143003 0.07976214873332721 0.06393003431396209 0.04687206366183685 0.027206213424290814 0.003861920747122475 -0.02389959923318031 -0.05704849223265658 -0.09301446813279242 -0.12609554499488473 -0.15259846190094792 -0.17236879962358934 -0.18626998594470948 -0.1933446046763872 -0.19184696562381567 -0.18337768974693686 -0.17130078019556874 -0.1554138118922197 -0.132240429322929 -0.1010710543520644 -0.06577083324226533 -0.03085613905706237 -0.00010631492441227154 0.02321653354494443 0.036749170826615093 0.03916451903333779 0.031372581028225606 0.01698590478534834; -0.019580389239323405 -0.040696302803167106 -0.06374164379942167 -0.08885145801244965 -0.1163411431612845 -0.14365352215374236 -0.16409999871971023 -0.1690541842908952 -0.15113664365444873 -0.10812784552610771 -0.04685438378768869 0.019897170483865013 0.08192347169746561 0.13480139800274937 0.17647580085235123 0.20590096147242884 0.22217877154523483 0.2239505685584734 0.2126210826010754 0.1932179070431523 0.17009898987351696 0.1454185344439677 0.11976377692811847 0.09079293503159153 0.05488395101394049 0.009919776571822667 -0.04489711813350213 -0.10948333504465574 -0.17889345970674916 -0.24337724764950067 -0.2954131592935508 -0.3327139466211678 -0.35636816413421296 -0.36714223061024337 -0.3643996302479946 -0.3490955476417255 -0.32410254457581106 -0.2899998819092906 -0.24404457209611286 -0.18574776050645025 -0.11957010567894182 -0.05267568238174128 0.006305576572506016 0.049579888992777855 0.07341219884028909 0.07727190682598034 0.06274479455684966 0.0346607484800477; -0.02534334018913949 -0.05472542773695846 -0.0897160648142444 -0.12818370437226506 -0.16613361874870497 -0.1977095752368311 -0.2150070349826704 -0.21033540725955874 -0.17853236434579528 -0.11950847684373486 -0.041762877663740504 0.04099866700161796 0.11815217577281303 0.1833511998069362 0.23173728134877325 0.26195229210817395 0.27511251580254026 0.2716101790237127 0.2545422375712381 0.23043477232565446 0.20412082808034004 0.17692839361218218 0.1473822597666627 0.11163832303717777 0.06429962549062661 0.0027205941583018645 -0.07292427237939414 -0.15980715530846748 -0.2507215015317832 -0.3352883117658207 -0.405353773711246 -0.45684519178130173 -0.4893785116977822 -0.5050304985946287 -0.5035278246689505 -0.48251552157963773 -0.4420509490847274 -0.38570555404430257 -0.3163611570004408 -0.235397665616024 -0.1460332355250349 -0.055124266836313225 0.026116485297026322 0.08511047339304166 0.1151959714326197 0.11698215271970462 0.09407656977937731 0.05217590258973121; -0.029199928492562123 -0.06392029511377088 -0.1066485304218118 -0.15339641056765602 -0.19612943891868143 -0.22647774402048662 -0.23678706401097335 -0.2212414907200524 -0.17719519397359446 -0.10709046900576528 -0.02088202983993695 0.06762737225735237 0.14679999295715793 0.2077761261365067 0.24585576759177072 0.2639383424161689 0.26767066871792516 0.2604401102312521 0.24540446557677806 0.2262070479915887 0.20542051245498627 0.18149959523049614 0.15075532388300567 0.10953476212343234 0.05318315494058678 -0.02043510926311361 -0.1094082231641429 -0.20803111912473637 -0.3071204552164072 -0.3975155098562579 -0.4736547442653199 -0.5326882791567368 -0.5722183703844856 -0.5927236536977364 -0.5925993743930407 -0.5662621749174815 -0.5114232253294887 -0.43327250409292295 -0.34033713233493984 -0.2380465103465972 -0.1310100365153954 -0.026173371353291015 0.06710682872778621 0.13577778268746563 0.16859495341207079 0.16390130979731443 0.12801656180292303 0.0699025572401669; -0.030646655075437967 -0.06651917561024974 -0.11092009749851098 -0.15914109676657545 -0.2002546813729435 -0.22481262372406305 -0.22678802650842309 -0.20241501409281232 -0.1513926490780393 -0.07968024744628818 0.0012785361761692043 0.0789485435422344 0.14206212771091833 0.18346712742658292 0.20449826131851376 0.2130494088543977 0.2166075553558589 0.21898388244872116 0.21946787599537967 0.21624261594203453 0.2081238671779669 0.1904959375897938 0.15872484642106757 0.1103095369556946 0.04394309168973192 -0.040454522801175785 -0.1387199839778761 -0.24287641570049098 -0.3435921477680991 -0.43284046879411475 -0.5071059694751686 -0.5656713901217794 -0.6056291742880379 -0.6236627914407163 -0.6178525518237028 -0.5836081719341658 -0.5190796950052287 -0.4274331103493794 -0.31658145126266696 -0.1954332585288541 -0.07248969555556908 0.041182570010493906 0.13644065059172866 0.204667546830017 0.23421765726696064 0.2193430393462213 0.1667373031104989 0.08934692270151524; -0.028552177486820516 -0.06170962087474997 -0.1028278248072361 -0.14651331664012865 -0.18059943894454483 -0.19594834443905362 -0.1885388608689893 -0.15752624352110553 -0.10688987911363954 -0.04631401077843879 0.013921130549367547 0.06558866127268993 0.1024045175048037 0.12491675096686367 0.14094187905696146 0.15717619506515354 0.17741231759053855 0.20172997915331292 0.22431292892020502 0.23969621937764066 0.24290222772351394 0.2283715341831161 0.1914652977699563 0.13078625924525938 0.04923265740883736 -0.049260392755862886 -0.15696707008891864 -0.2636600398193415 -0.3614649543231355 -0.4448985705806714 -0.5118376505756832 -0.5627418343937398 -0.5955338916445148 -0.6030142548298904 -0.5823363796775808 -0.5339077594954276 -0.45987382461793636 -0.3627486921061125 -0.2452102680851922 -0.11500927577918355 0.017991245677177022 0.13915015106021325 0.23285101561489394 0.29122314947229283 0.30832126610089905 0.2788376948770679 0.20779202273133227 0.10985243762044723; -0.02287854812508955 -0.051060956162852326 -0.08594990863521951 -0.12041236029171605 -0.14310206947417842 -0.14672710417239554 -0.1298705084060786 -0.09581568542359302 -0.052460261915197925 -0.010077487925180493 0.02519138450795426 0.05247542704719492 0.07432543456424684 0.09805616826401861 0.1303747061549246 0.1705720202848358 0.21579690638998447 0.2623200946920888 0.30344875294993895 0.33047983224134664 0.3354129089895635 0.31431651088576396 0.26275732230021137 0.18139244171205218 0.07638260775528305 -0.04345404584082133 -0.16585855510734868 -0.27791994298613537 -0.37161410933842415 -0.44479975695078594 -0.49820145753440714 -0.5345319699512738 -0.5532172856408069 -0.5456225820881153 -0.5057277965889848 -0.43742906299448003 -0.34815110136593985 -0.24451019053180847 -0.12742583099814556 -0.00016399410213879773 0.13034461140865838 0.2523265776298071 0.3442425815788053 0.3902205415530945 0.3881260935056667 0.3393032851117366 0.24883650105731048 0.13042991412125515; -0.015601394794005774 -0.03696138670118959 -0.0623588641507671 -0.08347317943918776 -0.09196682399705072 -0.08388968281286467 -0.06033917430883085 -0.026414475614067512 0.009467031523092024 0.03867090956260635 0.06076286183493881 0.08348171557447873 0.11590366322595627 0.16453802378431634 0.22773561407641874 0.2961272874691885 0.3615497431087838 0.4221137417919537 0.4732279533450978 0.5000567301874407 0.4933463660599656 0.45177179843371 0.3738718408527146 0.26365310355126287 0.12902937775485085 -0.017172992977565308 -0.15972808379930076 -0.28306299587469524 -0.3769598025836752 -0.43982528576430646 -0.47610627700187325 -0.49251694245252436 -0.4917625322318092 -0.4669532299010389 -0.40976325957953635 -0.32218460347420014 -0.21320240074542163 -0.09544313518280395 0.024759978214553526 0.14569636579804202 0.26387737867149813 0.3743277142571203 0.4585624448732157 0.49265275430608557 0.47084048366260406 0.40065314783469225 0.2903199134089046 0.15169771837885548; -0.007237482338470418 -0.01891486124568611 -0.03100375541147207 -0.036121283936525604 -0.03023258912946572 -0.012127879439754406 0.017029835374001982 0.05251780391837896 0.08656194365157852 0.11447199038644797 0.1419917980020793 0.1814848447486993 0.2437467519100383 0.3298693873904363 0.427140556235619 0.5193544535775764 0.5983506444853686 0.6659930572114005 0.7158018473415971 0.7293143637149989 0.6973495914436815 0.6206884020592169 0.506096764966193 0.36138595298357795 0.1953146946870899 0.021808193154919497 -0.14335386028232291 -0.28259434817108703 -0.38297263159368106 -0.4395624248545253 -0.4589963720338172 -0.45194543406711485 -0.42609581828816956 -0.38005344054709134 -0.307019956456144 -0.20602536851008726 -0.08072449585879925 0.05538788383945062 0.18730077265080855 0.3087216290846717 0.41515604704495307 0.5058292692768246 0.5723319106198241 0.591882712976921 0.5526968231755636 0.4624821111673143 0.33240830210836325 0.17351726463930014; 0.004220394752925089 0.005974576089875365 0.01015308958572737 0.02173856219558471 0.04140213024466605 0.07005487857862094 0.10710376801251528 0.1469588877387006 0.18432874081762263 0.22067931256818774 0.26377721602773874 0.32726328946454003 0.42386460667187925 0.5477175251737593 0.6757651276252058 0.7892018376592891 0.8823665812506059 0.95354478107191 0.9916471048246475 0.982033199664331 0.9159304685757633 0.7971884643918834 0.6417158613115493 0.4621433372387759 0.2689025394963821 0.07234414489974897 -0.11402975313204047 -0.2733075179558997 -0.39001616284113605 -0.4528359636229454 -0.4641359820302312 -0.43633874311886506 -0.38105091654837847 -0.30617060142637775 -0.2108524523937701 -0.09638330374524483 0.0379362906182452 0.18744940605747704 0.3344428175565903 0.46492810662384465 0.5681825456406389 0.6410283857003631 0.6849392340810354 0.6865625733350178 0.6313879273285774 0.5232362204848735 0.37401257144586375 0.19498792076264415; 0.0194041431866812 0.0383240041731689 0.06087737296916229 0.08928264752676361 0.12320380128739902 0.16466591390095733 0.2122674405678443 0.2588788064006999 0.3020603833750549 0.3461830016245661 0.3996101475466227 0.4804758992562472 0.6022875233021109 0.7527116423062636 0.9051418288044134 1.0396799388558875 1.146390450370986 1.2151995032711187 1.2351939716527638 1.1974250407222593 1.0956954832255634 0.9405399093289114 0.7526946108083896 0.5496594018382971 0.34361626779723314 0.13812175236997296 -0.058804885095947126 -0.23594005468709903 -0.3771908838422042 -0.4654015655467103 -0.4888586429660019 -0.45480676243630086 -0.3755901953070392 -0.2684856778623585 -0.14212374725625632 -0.0036957876988965794 0.14076451378260407 0.2950013117317044 0.4515068445938501 0.5939115026016326 0.703277185212581 0.7675286332975823 0.7917576614078267 0.7748975927644135 0.70451080540936 0.5799531470333349 0.4126740671125417 0.21478768620628502; 0.03683882804624249 0.0747242445779937 0.11675810259848378 0.16301417167015905 0.21314479146717227 0.2706030798660573 0.3329690392340284 0.39000725892664273 0.43686920957836983 0.47775549897526565 0.5268998785566652 0.6079597454930944 0.7327361003154234 0.8893305820789843 1.0545788927438349 1.2049988423196576 1.3191091755174056 1.3793239274913607 1.377779509203855 1.3093916475895204 1.1771477048508765 1.002291931167199 0.806394097369946 0.6062702222296708 0.4097383829839589 0.21478831811995103 0.022217198975343036 -0.1647238447802312 -0.3311566453115679 -0.45736215073189807 -0.5152691590626599 -0.4964134711751418 -0.40976939903063336 -0.2778001835062622 -0.12027287548444228 0.05127731631507721 0.2191150235214158 0.3806192015471193 0.5394858005828348 0.6887896288601688 0.80787060984627 0.8734183762159011 0.8852106444853151 0.8514604296244422 0.766752559325757 0.6281732784674838 0.44539902835415085 0.23133124283317105; 0.055437250290535055 0.11242719511927002 0.17371021317860036 0.23857579160034398 0.30763712276662825 0.3858951390430322 0.4687601788788705 0.5389765985677386 0.5837599383471028 0.6066956316702241 0.6302375004688047 0.6841917564695889 0.7841150402379775 0.9245402673858554 1.0869058643592475 1.2445831428978695 1.3628281110932978 1.4152015596687413 1.393226833226169 1.2975606862043594 1.148668465991159 0.9806363699305316 0.8126380821990058 0.648824691304765 0.4838391353967195 0.3147586432559352 0.13515686005762223 -0.057522773346223355 -0.24930740042970442 -0.4164908871395103 -0.5225287553842107 -0.5402408261346655 -0.46952020935995725 -0.3307606439863285 -0.15234887632285452 0.04925542022195657 0.25051202094534153 0.4350062799389174 0.6021462790712971 0.7534099041422979 0.8780658980804059 0.949396575519294 0.9569756639869473 0.9110948157005865 0.8143402484064692 0.6648700807704389 0.470439834602332 0.2439842357574529; 0.07594732925182254 0.1513521970950934 0.228804691292921 0.3100482381242311 0.39913600240274855 0.5016292801436008 0.608565563731525 0.6936067952712096 0.7338135334217688 0.728320794289491 0.7028805753217112 0.6991420912654529 0.748910900055009 0.8556978473360577 1.0036327062682324 1.162745889291559 1.2861181307919012 1.3371112210900034 1.3030992431768622 1.1944646728269401 1.0515991962753635 0.9180794070370626 0.8048708659765919 0.6967611004229775 0.5762308421406299 0.4376638802796626 0.2724791590726622 0.07429232937700413 -0.14184190230256208 -0.34474740432371226 -0.49418313218194154 -0.5560837677120709 -0.5232976938895668 -0.4060161243675455 -0.22871446879235396 -0.010707971680165771 0.22054787385673166 0.4380140076358303 0.6284186691523301 0.7885541506655707 0.9166303175094825 0.9929169506028366 1.0013321618704683 0.9497126834390235 0.8456808941120161 0.6891035800561846 0.48664072492497024 0.25186580990303203; 0.09673826868288427 0.1882470495063571 0.27609369834323017 0.3668334921519802 0.4709531363235882 0.5958272905167473 0.7283757872773228 0.8329654164059344 0.8747324211817146 0.8419224712091861 0.7583781663904015 0.6820292119236095 0.666939631409952 0.7252757916186671 0.8437414309699292 0.9911775319955517 1.1140175598714903 1.1692626229409873 1.1406511304555358 1.046036725571188 0.9381304806314664 0.8577091860142025 0.8021905471043266 0.7456692740776268 0.6664121817067198 0.5473948984118144 0.38649570394129384 0.17826507897208124 -0.059455499479673685 -0.2875099131339785 -0.4618333496713248 -0.5491553482841647 -0.5502941857904415 -0.4704504149874191 -0.32014567326262117 -0.10853721676548596 0.13876842018024302 0.38538379450710136 0.6050610488446312 0.7847874617949746 0.9238931420317097 1.00828952723883 1.020156427860751 0.9662925197756187 0.8585468988636406 0.6984808160399719 0.4920818819953634 0.2539158174015712; 0.11346737901438829 0.2160064933976656 0.3059787375312219 0.3946296790312238 0.5019912821075688 0.6405275211485622 0.7944814315865328 0.920656153994197 0.9736131932768044 0.9293475576851463 0.8089037868376191 0.6799936168194417 0.6045062011945131 0.6005167501414481 0.6660533558049065 0.7756059338398223 0.8781858314675463 0.9370444549896808 0.9351018353775361 0.8879685699462337 0.8437258217262024 0.8270601158905029 0.8250409836745045 0.8111981645048322 0.7599131028683486 0.6428035832316343 0.4627925453765302 0.2310969149579342 -0.03415200805796144 -0.2869177303381535 -0.48016664616755006 -0.5794073272565754 -0.5933083240955399 -0.534945238814057 -0.4091654560714128 -0.21433102463015094 0.03390176210161272 0.2978552255595398 0.541409951329611 0.7416632232371295 0.8971552978683015 0.9968054082281267 1.0179576121179166 0.9645648695725083 0.8539749226278099 0.6922104584763769 0.4858680997714528 0.24987361743691652; 0.12258580523533824 0.22836006539940343 0.31080165569727963 0.384061312302224 0.47742271347421433 0.6100344007939721 0.7683715457970011 0.9089722233753907 0.9803753514266711 0.9496212817844033 0.8341395878899407 0.6947742646745542 0.5811905503037921 0.5161194559527645 0.5149942076201708 0.5609547499366486 0.6194782143112955 0.6757849552031592 0.7133927147535714 0.7383237146275567 0.7785446112956985 0.8378391662380709 0.8908856348579439 0.9104505273188666 0.8674684517274378 0.7295802050204695 0.5048409600404627 0.24086640935687179 -0.04761061345457278 -0.32896736806449023 -0.5491605473104838 -0.6679430386466446 -0.6940817934831585 -0.644256615358434 -0.5232319151218985 -0.3284678248917695 -0.07529091113506665 0.19995595611314584 0.46095906920845153 0.6782791992328524 0.8476018251504414 0.9626092956985303 0.9977978497904952 0.9496363384986738 0.8373828495115545 0.6741719297605525 0.4703122286117596 0.2408710127059887; 0.12262909042259745 0.2235502783194421 0.2911396193715464 0.33876394819595546 0.39945950376109013 0.49922412853729603 0.6354261595469749 0.7723428697891294 0.8578988666514568 0.8579989690234144 0.7858269784897356 0.6790341766640332 0.5608982143926224 0.4558382205466979 0.39328034604720824 0.368278007547676 0.3760578249798955 0.42264232877377456 0.4932940017524866 0.5918322717268434 0.7234050380284489 0.8673153361855159 0.9767186736853417 1.0191872501953008 0.9590824908397102 0.7635278581277145 0.469101278203268 0.16493027094208787 -0.12269054206244406 -0.4070117597048479 -0.6511700475003761 -0.7939426970009112 -0.8360775266972754 -0.795958995343074 -0.6744529875188745 -0.4666578479865066 -0.19420284581817687 0.0989810421350745 0.3780259143609207 0.6129950153531698 0.7951673709799388 0.9213621770403071 0.9685394549606563 0.9278292869118717 0.8160619511562424 0.6515820967155033 0.4506152266902589 0.2294939082212255; 0.11460902823792495 0.20471648394184883 0.25539126971448456 0.2753390499608335 0.2933263030490497 0.3395990642944442 0.4272638603733608 0.5353066643505249 0.6193321604627827 0.650126237631801 0.6350962233607161 0.5868397400801246 0.4992234064184191 0.38548732331165264 0.27899747881010084 0.19762629944687224 0.16928217938866266 0.2016930079284878 0.2854645573300009 0.4359302169034248 0.6404802865183723 0.8604190426764584 1.0276296761562038 1.0892025278202992 1.0002141921309822 0.7363779175702676 0.3657478855093802 0.0034834417079836495 -0.28591571155271905 -0.5423513259172132 -0.7819755968854553 -0.9415928884160014 -0.9965132417848498 -0.961938404026242 -0.8393147163589386 -0.6179287788146756 -0.32125453518050723 -0.0026827637818628877 0.29920426244720627 0.554367522823842 0.7512768221559905 0.8875574989534334 0.943552486205749 0.9091470246347569 0.7990814620184854 0.6342877440928574 0.43545582229475277 0.22059945999335595; 0.09883222029455144 0.17496041335334558 0.2135627429901255 0.21621989149352883 0.1994642392299266 0.19016819654407094 0.2139308208546418 0.26899051538710195 0.32726103951085106 0.3691660198713247 0.39939843024392824 0.413390139965456 0.37697844505961836 0.27959765195253866 0.15177434997684425 0.03759501877899943 -0.014311249662626938 -0.0016995586884757745 0.0792611111730933 0.2497208631969652 0.48991857384328524 0.762374166002535 0.9767329629446279 1.060988569554742 0.972511709490647 0.6903969570162535 0.28555070726893395 -0.12380138230224816 -0.44624752685944685 -0.6935907279794201 -0.9134242084798586 -1.071801795167939 -1.1371152672877016 -1.109943547543221 -0.9896519222668261 -0.7608916967597291 -0.4434270956494609 -0.09717460136550325 0.23192112765107187 0.5096767020602301 0.7221096727535938 0.8682128579005937 0.9316776413827315 0.9033236007274248 0.7968222938903682 0.6331564769660755 0.43447373966048314 0.21993230897981755; 0.07487287399411843 0.134978314531396 0.16943271199001336 0.17285115716970487 0.14563128455192087 0.10131054079474706 0.06732131842057947 0.059525952129930025 0.07086984440877522 0.095603013035234 0.14162557194871458 0.1951496024983853 0.20254588391396283 0.13168722719449463 0.005070085771905678 -0.11895778279017112 -0.18569953765088185 -0.1947500254029055 -0.13421238012704703 0.01339736106802939 0.2447148505107482 0.5267522505128137 0.767418507157415 0.883220553643555 0.8316364307716948 0.5990963071045905 0.22980790340699978 -0.16894647215956968 -0.5075621959031683 -0.7708070701270615 -0.9842518206174902 -1.1337061035272344 -1.202330460646074 -1.1872169818214104 -1.0809972497173075 -0.8604852484955926 -0.5382586619149365 -0.17396413986502904 0.18007905542540265 0.4821817288423536 0.7131558864815745 0.870350753902588 0.9400178872790079 0.9167164883514388 0.8149604654835961 0.6534498592792227 0.45193246575243273 0.229834504320519; 0.042034954474540746 0.08250072233345795 0.11719157053706565 0.13555494613370864 0.12281476186458293 0.07501638574553694 0.011633922147582382 -0.04397927390978604 -0.08247857679159962 -0.09483340544781696 -0.06712695774446514 -0.015384141994293835 0.005248099438938114 -0.044808077392876254 -0.15184003221751585 -0.2598930190021662 -0.32749054815558654 -0.3613161086911932 -0.34790812787899184 -0.2603478254715454 -0.08281975786451067 0.1601039497766495 0.4124401877567064 0.5745272580180562 0.5837607330194953 0.4432413321256175 0.1780373263390343 -0.1569895999063691 -0.4797498468383325 -0.7528711147014915 -0.9632131370306309 -1.0994964054603837 -1.1658719245920712 -1.1615567689923103 -1.0746931605502992 -0.8762543779489387 -0.5700696210380608 -0.2086006861613445 0.15571010123816664 0.47492705476813024 0.7240284359378952 0.8951588033619785 0.9721435975644543 0.9525615737361879 0.8537805537707667 0.6922862028853793 0.48396923865163294 0.24784635430485766; 0.0009321580530079255 0.014617437497985095 0.044228912345915916 0.07775545125545269 0.09197845821264677 0.0694922611270789 0.015831150167290996 -0.0518471262143185 -0.11921730304149056 -0.1679318707037756 -0.17960430542041592 -0.16524766369291202 -0.1657975853281558 -0.21198722455905897 -0.2956455537159592 -0.37665319099170885 -0.4383976652192796 -0.5005215242360227 -0.5408750978722403 -0.517863823505028 -0.4209284883619048 -0.2426498496178118 0.009599225077197439 0.22745703919770904 0.3247828461354109 0.29818060624038256 0.1533898650045076 -0.0903368004460885 -0.37226015513784955 -0.6340276062279248 -0.8368462203794486 -0.9650910978662713 -1.0310018016316562 -1.0361922144313638 -0.9662136807473415 -0.7935112006388706 -0.519469098224715 -0.182606013763481 0.17297557581336012 0.496625058887373 0.7570250987328738 0.9386763723040435 1.0215618649190576 1.0048279504592086 0.9069518604090239 0.74215933860673 0.5234222333086247 0.26964549840077245; -0.04627089960525422 -0.06840033971116695 -0.05684441106676422 -0.021156811570618526 0.01606164976257466 0.03228477409190512 0.019760608584960433 -0.018676421190673417 -0.07713183033385312 -0.14037785944545278 -0.18984954193798836 -0.22641274158404884 -0.2702650815475389 -0.3339892017177487 -0.4067237143647782 -0.46534013088237486 -0.518332458152496 -0.5965541138549895 -0.6742366231039199 -0.7070625964372544 -0.6852278309463052 -0.5622338440253678 -0.3146157056433969 -0.044981501892916095 0.14195511919350182 0.21536514995696082 0.1730672498734156 0.014825668282968671 -0.20392540350846391 -0.4218588731458465 -0.6035859415442065 -0.7280343861619387 -0.8000877748092887 -0.8185452941957176 -0.7671945310326568 -0.6222794686317423 -0.38823923608034866 -0.09107075396239687 0.23709229789993158 0.5482511538005754 0.8089431526519884 0.9950827624828549 1.0799222837827112 1.0630910862152312 0.9633843602024923 0.7927889448344844 0.5624790805221236 0.29117646041191786; -0.09588062986019438 -0.16190254349170385 -0.18302842806480848 -0.16313074949518278 -0.1180540182748575 -0.06715313389114846 -0.02554586742346972 -0.006392578532131472 -0.021795999583712863 -0.07133251320512424 -0.14167937372732403 -0.22430242593422306 -0.31749876992251597 -0.4111832920750129 -0.4877857853333998 -0.5346237208752099 -0.5720708821321493 -0.6426839224637001 -0.7315336217233259 -0.7912499970438966 -0.8061043191834864 -0.722974702593507 -0.49078265069080745 -0.19492910719854642 0.051478572772597965 0.19279976744722055 0.2277782206744015 0.14287969579682785 -0.009868619363318006 -0.17855035816008216 -0.3342357658108293 -0.4483982755989551 -0.5155496931751815 -0.5360952803884398 -0.4983712891778586 -0.3835318204708462 -0.1960555607039514 0.053122967353589914 0.3425105841567846 0.6277808532536409 0.8761999284495037 1.056889566088761 1.1378478871898607 1.117949937514526 1.013856310775794 0.8357684717208562 0.5947506775970988 0.3089791213116929; -0.1421626908662211 -0.25646578081114096 -0.3231034462420857 -0.336400669542361 -0.30229527455052047 -0.23328232323899917 -0.1452499740275453 -0.06326931614682822 -0.020892111605707975 -0.03794326706907345 -0.1093072868594583 -0.2214359660603892 -0.3548635400663878 -0.4791493955097633 -0.5682226479783987 -0.6092260447236867 -0.6221453484600149 -0.6550573503535156 -0.7123882376114823 -0.7561806973552717 -0.7559478464052797 -0.6860263916595448 -0.4970533711299684 -0.22257815135521658 0.034821328432499354 0.21093136924872077 0.295758288466664 0.26748323430709164 0.17018551766255166 0.04575587389377399 -0.08062101161378715 -0.17361869032205995 -0.22325635503745003 -0.23614262052835666 -0.20543981284697174 -0.11785391026846448 0.025120535537824666 0.226412702575234 0.4716433111731344 0.7228142782817948 0.9508804637387157 1.118337009821678 1.1888959255304277 1.161873617225133 1.051474650981494 0.8657421075814599 0.6162174000374931 0.3206760693961084; -0.18116822176827593 -0.341858699535092 -0.4601094823308518 -0.5199363289782841 -0.5154600136410198 -0.45082816632912687 -0.3403270072267076 -0.2157494481120685 -0.12599483454074262 -0.10747467065796834 -0.1638628862739794 -0.28245957726076715 -0.43527027883542274 -0.5766261062401979 -0.6732320464020618 -0.7087740378407492 -0.6902534703876936 -0.6606882613224871 -0.6416731857058074 -0.6245688708231169 -0.5914653178264602 -0.5156434757131311 -0.37519257689383617 -0.1569966999009711 0.0640783628945894 0.24975168244388218 0.3667900201821461 0.3782153761271791 0.32217695430756516 0.2324666712003864 0.13428229956096333 0.06596829966761947 0.036318289811864815 0.03470197151316946 0.06417618057442957 0.13093770447658562 0.23874039130940974 0.400824721395235 0.6046007011584239 0.8203562859065736 1.0238675064840408 1.1714165373368304 1.2260220927052266 1.1889045726666807 1.0708880941870498 0.878117797062396 0.6233901634026916 0.32420328364086426; -0.21413752578768488 -0.4144046914409669 -0.5804696790547408 -0.690427636694346 -0.7281844660692183 -0.6892517880442112 -0.5856019013311924 -0.4513521841704699 -0.34077799105218676 -0.2991517972172987 -0.33785592396291797 -0.4476094995767192 -0.6011649930097273 -0.745156817604426 -0.8356340306624483 -0.8549509187765867 -0.7997662591290475 -0.6960002217684346 -0.5791295298959775 -0.47117728908998735 -0.38861895872941554 -0.3084777325823548 -0.20741183503514576 -0.05870982664817124 0.11591598582802555 0.2987083533439678 0.43069923279847205 0.4721503785009874 0.44975436364774546 0.38556847987665466 0.3050691002093423 0.2475314979894279 0.22722006247827345 0.2377879156669181 0.2728689351489482 0.3279509350967148 0.41536964861926357 0.5521019216041283 0.7230833432843436 0.9085830049967165 1.087102622623786 1.210180994914321 1.244776634695717 1.1948965161278544 1.0679937751807145 0.8693430311849746 0.61361119775614 0.31808361842196764; -0.24375572716585436 -0.4767446805734122 -0.6818158189210879 -0.8363500154846343 -0.918962223237099 -0.9190522680272226 -0.8456070860311912 -0.7309963614521429 -0.6267428016151488 -0.5801287712770363 -0.609230066954401 -0.7080323218358975 -0.8518795231055604 -0.9886704318999834 -1.0690872219471241 -1.0715512603455897 -0.9829245200577575 -0.8104225050513874 -0.5968329394835402 -0.39198090425493354 -0.2410382405094287 -0.15041815920448748 -0.08222258094644654 0.006668465626722634 0.14604985792521097 0.31525516131232834 0.45232025625143435 0.5226052402499763 0.5318804230156607 0.487874785930399 0.4168049181766183 0.36089282995853406 0.341843123954368 0.3593201614465883 0.39843469112999774 0.4526415666882121 0.5391327415709719 0.6652905191610571 0.813930160405374 0.9765919093739719 1.1313457879078037 1.228364710296173 1.2423042358575818 1.178622642573098 1.0417253056331188 0.8388952715951525 0.5874037434303023 0.3031437936498723; -0.2670740698164003 -0.5268883507566704 -0.7649407414175212 -0.9580702745164799 -1.0825191299088743 -1.1265398076972628 -1.097693794540061 -1.0219399088418213 -0.9407946573867524 -0.8996997170793244 -0.9244016825996973 -1.0132872851106574 -1.1437740144711803 -1.2684726239655069 -1.3375471624178175 -1.3275999087445485 -1.2230599359000967 -1.0153260117713583 -0.7413722318655974 -0.4682663579530238 -0.2580974176941288 -0.14342255624094374 -0.0864341594881405 -0.030651955326182864 0.0774832117153607 0.23244931701361932 0.39087554169562655 0.4994672260790157 0.5320443790943519 0.494201213261166 0.4266166975742148 0.3749035914824911 0.364315210063352 0.3927184433964402 0.4410632506793728 0.5081041657294495 0.6066076434024862 0.731206728093217 0.8696362278447205 1.0192268964217068 1.1508470297935696 1.2204158782358243 1.2149984909161176 1.1386348651401825 0.9930769620669224 0.7899322419807974 0.548451833450035 0.28176688707164116; -0.2804703974463435 -0.5596292398394164 -0.825081114343979 -1.0520965934441346 -1.2152103251944888 -1.3031598512798708 -1.3238238393127182 -1.296591894469159 -1.2486193258151927 -1.2175827978097018 -1.2364654990748651 -1.3109959302291065 -1.4211601344622538 -1.5305395128450463 -1.5943808885251294 -1.5803015278752728 -1.4769512663570745 -1.2776665089344905 -1.0006576720141445 -0.71176579771736 -0.4753525384045197 -0.3350290934026227 -0.26858576129531475 -0.2185933636976681 -0.12609603127143656 0.02144884728259615 0.1887058077102351 0.3136588356044582 0.36451875738569944 0.34889422173464446 0.3090934765927794 0.2857327645757737 0.3006854195205495 0.348675263169885 0.41593349013705805 0.5058088715383027 0.6219997975457827 0.7533263649071914 0.8929417202606389 1.0323749548388472 1.138275778230373 1.1826209258716764 1.1619818563817794 1.075107333167318 0.9242802729536269 0.726497958208097 0.50069314012432 0.2562114280426939; -0.2855443625424056 -0.5749246439050063 -0.8573502461405687 -1.1086949212642916 -1.3046319229932102 -1.433532358722582 -1.5013802772366807 -1.522659277088986 -1.5120245488631616 -1.4940549337900908 -1.5040012469848858 -1.5594015199851794 -1.645549898719988 -1.734917889708798 -1.7976213874063367 -1.7984323460262426 -1.7196215066155978 -1.5655893906648517 -1.3402748889736145 -1.0861215351504059 -0.8606383309098373 -0.702000811599766 -0.6097828415883518 -0.5394061841555177 -0.44546289263735406 -0.3069052311429389 -0.15131832327759775 -0.022703577318299493 0.051813936202752306 0.07666603967567392 0.08660652505349005 0.11245658921056197 0.1697548265219273 0.25026580031486506 0.34588311186232756 0.46256118927949497 0.598488973276342 0.7412303771054485 0.8833577772525261 1.0091854990882874 1.0905905176915605 1.1152696824412762 1.082385235165967 0.9877295055173838 0.8380504611658455 0.6527846058016147 0.44715819728006984 0.22770020059845691; -0.28487414068117156 -0.5745156987643362 -0.8603468918326084 -1.122298331145499 -1.3402087723205613 -1.502026647376168 -1.6088495531088733 -1.6706025096400767 -1.694472600323335 -1.691130076246772 -1.6900035618150722 -1.7211436785887935 -1.7833345954738884 -1.8527683822116332 -1.9105657069824655 -1.9368084750032506 -1.9087333470782835 -1.8262173536733814 -1.6883806062315716 -1.5062471344206463 -1.3232593465502998 -1.168567576308671 -1.0533025657279556 -0.9514828824490029 -0.8385519734095105 -0.7007482610102145 -0.5555965017891287 -0.42421121449288074 -0.3237777015117181 -0.24703390414464815 -0.17470860724215911 -0.0906623369146979 0.013573075345393577 0.1293875598143048 0.25654334323494565 0.4016233676146211 0.5563294147821732 0.705107890722633 0.840295606318686 0.9473793747233177 1.0089854077264373 1.0207176859139104 0.9781675876751791 0.8793142545232431 0.7379910911760141 0.5716462421157639 0.3895295837282777 0.197095763287563; -0.27737033764152413 -0.5578112593916145 -0.8353852161789175 -1.0945939265171305 -1.320164790548331 -1.502090259816537 -1.6366939107739662 -1.7276817950245775 -1.7781964176285436 -1.7895272370965998 -1.7799001808688575 -1.7843863565826996 -1.8206546493504303 -1.8742483545173982 -1.9274767461355526 -1.9743405957023534 -2.0002464752604716 -1.9918498108518368 -1.9432264256694785 -1.8474774787605408 -1.7260039044085185 -1.6011316916075629 -1.4839935397238997 -1.3669382284405878 -1.238751641877767 -1.0972355508066407 -0.9515406033738845 -0.8092377978604004 -0.6753897174017098 -0.5447905820062748 -0.4163203728774346 -0.2807041775599295 -0.13417087414019385 0.01642134227730365 0.17478418122676853 0.3427654994581048 0.5045788882381679 0.6468051884327362 0.7678865384864877 0.8582972238276039 0.9072181745941863 0.9078704718110975 0.8546124250673657 0.7558526086579122 0.6297056181239657 0.486348466601885 0.3297302195534655 0.1656937048206538; -0.2609119595364697 -0.524195513588691 -0.7851466302541537 -1.0303711191349316 -1.2487769200241206 -1.4356806630471692 -1.5860014514357335 -1.696689626947617 -1.768068165762782 -1.7973653375668417 -1.7903753548772168 -1.7752939161767092 -1.7824278679888181 -1.8166344831084698 -1.8666627005461454 -1.928902052204367 -1.9957828777574065 -2.0453018788132 -2.0626759495667755 -2.0386825523022893 -1.9773915325805675 -1.8931293914268261 -1.7946960852822147 -1.6851334208358888 -1.560350412454128 -1.4230337014823375 -1.2759808043322527 -1.1209247680749685 -0.9573414449418014 -0.7879238227048797 -0.6167081023624047 -0.4374031227438426 -0.2539815644567975 -0.07210270665476454 0.11111743963793173 0.2890727103689545 0.4450403487281177 0.5765449332791284 0.68521512507277 0.761349534601401 0.7951835703711698 0.7799658325881708 0.7193133226939188 0.6291698527898966 0.5217507776653119 0.40082871064520337 0.2699869532808343 0.13500268117992614; -0.23695571346075042 -0.4754286844006179 -0.7105482639845297 -0.9308019168631889 -1.1300047718792416 -1.3097300416588775 -1.4657615831935171 -1.5888837246538396 -1.6766696117025732 -1.7280856966696918 -1.7405681392138308 -1.7267011737883315 -1.714259840859762 -1.7232586659590043 -1.757973510609561 -1.8200360875591348 -1.9057853675779985 -1.9918406538096722 -2.053931978726512 -2.0809410244179207 -2.069197390089906 -2.0243782160936497 -1.9537693653115262 -1.863124945557755 -1.7528535249982709 -1.6258353530727223 -1.482941968747867 -1.3238197067914923 -1.1475921264589273 -0.9587448648344289 -0.7579236873971094 -0.5468472337857729 -0.3358328568107968 -0.13009201264613576 0.06654882477024333 0.24117090221133292 0.38707953369340975 0.5098349725476883 0.6053602175405117 0.6620819845812451 0.6738779301434361 0.6439867004662029 0.5860736625400028 0.5107261571861548 0.42037637426760005 0.3193709341554156 0.21373285028265168 0.10677157553864014; -0.20848521311998028 -0.41448795315845344 -0.6131418945916876 -0.7981686062610239 -0.9701482926996735 -1.1353255816024823 -1.2903867767265513 -1.4214412138652712 -1.5213014798933295 -1.5923692366832618 -1.6327196426566586 -1.6411729414806098 -1.6320950872382667 -1.6273547497027994 -1.641610999842782 -1.6842111222638836 -1.7585565574775728 -1.8495280404765149 -1.9318930317230258 -1.9898156532113125 -2.0156464633727893 -2.0087573393884783 -1.9728864851511296 -1.9109348073443133 -1.8235668213560874 -1.7127579568324927 -1.5798134575439284 -1.424264677724298 -1.2462021929366436 -1.0473586419388878 -0.8284541664261595 -0.5996065928933355 -0.3742808836618365 -0.16004010068215824 0.034323582520384824 0.19979927021047475 0.33877077897458696 0.45199990806130097 0.5280882499361627 0.558828483668102 0.548909591833435 0.5139080414687033 0.46661186394121235 0.40557642456271153 0.3294539796854108 0.24693708985666452 0.16438257376072665 0.08203752232365244; -0.17470240359925768 -0.3419251412407335 -0.4980089968261391 -0.6435561682488988 -0.7849917879138056 -0.930742900070408 -1.0793190862748268 -1.216051749674932 -1.326781059853354 -1.411315708761488 -1.47388042382776 -1.51056699270883 -1.5222692605532617 -1.5237541892290227 -1.53139965765438 -1.5565547272316143 -1.6067123948627764 -1.6775242538260569 -1.7518699005802134 -1.8143879782349874 -1.8565813337797723 -1.8761253868991636 -1.8726873035284706 -1.8435232783309685 -1.7855745968732808 -1.6984290608365487 -1.5820924220118535 -1.435706699269408 -1.2605397404931726 -1.0584531450989103 -0.8350275249482662 -0.6053853931888029 -0.3837562850193275 -0.17754048861469743 0.006691674758869926 0.1650365740994139 0.29698899395882417 0.3935411970927475 0.44373534355262567 0.4510245947812929 0.43177391485627425 0.40220222230300207 0.3655303358857621 0.31525358200716025 0.252767783056253 0.1875898859307479 0.12376072718459656 0.06108433876739557; -0.13266760085251184 -0.2564094553769442 -0.37079533340228865 -0.4815975722051695 -0.5960017141745235 -0.7199994194633877 -0.8548002790905757 -0.9922197350720078 -1.1154197082252704 -1.2138054249703736 -1.291052586847476 -1.3486624928695377 -1.3828414262399393 -1.3999018825740692 -1.4136308563644613 -1.4339927393687886 -1.467555821409805 -1.5155513091007053 -1.5695816089159742 -1.619360737236446 -1.6589994166220536 -1.6868468706628494 -1.7008685781303328 -1.694449659420229 -1.6616035959600157 -1.5994259192133249 -1.5052559322480412 -1.376579602650643 -1.2149788238031103 -1.0243334313061039 -0.8138368504914983 -0.5986738062829703 -0.39079738836741196 -0.19632997887836312 -0.021252258849151884 0.12907815552969806 0.24750368565614336 0.3222232962288676 0.3513507199901574 0.34970927343936736 0.33410546314764217 0.3122961388507875 0.28327281005449334 0.24343811935511517 0.19466789712099344 0.1431574258681664 0.0924520496257757 0.04447683323192633; -0.08390740734939012 -0.1623187904780649 -0.23903062026488292 -0.32210259954131115 -0.41628304520059045 -0.5220791274435257 -0.6392532880955205 -0.766939798425673 -0.8957099618727268 -1.0100322179945462 -1.1042427080955401 -1.1795743669198429 -1.2332896150149033 -1.2670096790487932 -1.2905198136628058 -1.3117445483957961 -1.33525694875154 -1.364056454432617 -1.3965299280119823 -1.428492058449719 -1.458009614263654 -1.4839414004761975 -1.5031274886280663 -1.5082606954382347 -1.4928448027473153 -1.4530667761505782 -1.3841803975654614 -1.281658342398987 -1.1457089800805584 -0.9804104573461516 -0.794413593793478 -0.5996914471986411 -0.40631254125854177 -0.22263608408038962 -0.05813589191830675 0.07917127987887605 0.18090007899447647 0.24024978097761066 0.2635102546624386 0.2660118020069926 0.2578370958714135 0.24295879513119473 0.22219911624538213 0.19315083859252805 0.15516513574091184 0.1127689553240402 0.07110485352755841 0.033419638697472935; -0.03728225034732216 -0.07407062917102042 -0.11698776021912953 -0.17443404104904672 -0.2502907685795749 -0.34212485487166644 -0.4448859260463863 -0.5576865245906235 -0.6794834432482991 -0.8012049479343591 -0.9124948412398523 -1.0072389630004817 -1.0806421314777848 -1.1324938217998004 -1.169303744913209 -1.1967491969998445 -1.2171346436123078 -1.232606993273711 -1.245737044207599 -1.2588143364657876 -1.274606446409767 -1.2938134367631604 -1.3127707854321606 -1.3246935030691154 -1.3230365376590227 -1.3030733418200249 -1.2585900669490273 -1.1837244242505136 -1.0769714299416524 -0.9411536658257496 -0.7827191695421909 -0.6107381970771156 -0.4346469257153921 -0.26518624451696177 -0.1141768058266964 0.009909969861736966 0.1015080168218063 0.15931221780992272 0.18960809316654606 0.20124246328986523 0.20051828954651696 0.19231137222178793 0.1787320290681627 0.15755666577867095 0.1277291126393965 0.09322980591107513 0.058910768697144705 0.027737653805727604; -0.0022218270641620667 -0.006391108187505944 -0.019654364204794772 -0.05088128625828569 -0.10607653458145773 -0.18341106168760693 -0.2740227336128669 -0.37336298678226265 -0.4834718587802586 -0.602504863222498 -0.7222781554436662 -0.8318730145128637 -0.9214139124395985 -0.9885076528383149 -1.037921879488398 -1.0744223258593426 -1.0994994771283984 -1.113156636579777 -1.117755727679925 -1.1192248140492382 -1.124344992632843 -1.1367992656727721 -1.1546909503240597 -1.1722357681664397 -1.182562654473921 -1.1790595693064192 -1.1543374633802026 -1.1022586243877885 -1.0206800017629565 -0.9113350323014081 -0.7790019857119604 -0.6308201102637618 -0.4748322773131301 -0.3212016572008498 -0.1817000472352046 -0.0647563477529842 0.026108107132768454 0.0908789348130214 0.13161382787156267 0.15193622198178466 0.1569323158452504 0.152457602361877 0.14244271039281378 0.12703914868830968 0.10558362017224811 0.07953721733038747 0.051606207619610725 0.024685757564257466; 0.020125828957692975 0.03792610619659483 0.04715601115994449 0.039079793024253365 0.005405015165439976 -0.054859875101828576 -0.13251147108857683 -0.21973224026897284 -0.317849675431167 -0.4283647064524993 -0.5461547699888646 -0.6607008472255502 -0.7597511668115822 -0.837321434965807 -0.8953853531150242 -0.9379245381219559 -0.9675689444343762 -0.9844880028115027 -0.9897659208263542 -0.9895700653063869 -0.9921958540784799 -1.0027525336357461 -1.0213555976703326 -1.04386920148231 -1.0635568614650146 -1.0723828156650164 -1.0621342672742853 -1.026963197705402 -0.965016506293602 -0.8776067691940401 -0.7682907739656377 -0.6424027310030264 -0.5059894020336151 -0.3674969641692748 -0.23773231225128721 -0.12507353960449544 -0.032942195408734144 0.03762141012859773 0.08563708297394686 0.11156730028401354 0.11924493615635856 0.11579699434403681 0.10801861384304741 0.09811477732460827 0.08461645690785655 0.06612236809250566 0.04377992726713982 0.02104767401020912; 0.0342745402335437 0.06511433048300794 0.08703633630678874 0.09355089835535994 0.07793517038458136 0.036838808306084166 -0.025413293277678602 -0.10155001749728053 -0.18886236750974955 -0.2872614282420252 -0.39347369016356154 -0.5000940354339218 -0.5978206106996148 -0.6799266117361689 -0.744851912189185 -0.7937498194435767 -0.8284993940150129 -0.8502071359826884 -0.8601684984912885 -0.8640341837146179 -0.8696261741568807 -0.8816262382701826 -0.9008259379472308 -0.9249330815988541 -0.948444374157986 -0.9633793549579752 -0.9613364158279849 -0.9368770827167681 -0.8889596891703602 -0.8191990116825932 -0.7299407075029574 -0.62437079330964 -0.5069036972525083 -0.384939795533139 -0.26801007927797366 -0.16360171983577018 -0.07511306864996792 -0.004348191349337121 0.04595327626102401 0.07384692158307746 0.0823234770103903 0.07987809225751846 0.0748392439952721 0.0697108629957053 0.06209999951943015 0.049443568313155016 0.03264722256470706 0.015475712602053304; 0.0423357431663007 0.07942313748885081 0.10593708393058271 0.11800426150581195 0.11318392442027496 0.0895099490960394 0.04586053056347777 -0.016772495712953868 -0.09431599320416076 -0.18141908560426984 -0.27274290086332165 -0.36237946924109504 -0.44521732478505877 -0.5185694379926898 -0.581281872000125 -0.6330043988091414 -0.6736961384721927 -0.7034137290794995 -0.7230074875323843 -0.7365550830840027 -0.7496755091401764 -0.7655295660624788 -0.7849078754686644 -0.8069285267501914 -0.8280263897432376 -0.8417996981565276 -0.8410338295380843 -0.8212423738724483 -0.7824280548333495 -0.7266183036443159 -0.6549492717847942 -0.5683277910093428 -0.4698689250598439 -0.36660707678424126 -0.26708277811990183 -0.17730902699148335 -0.0997332847297906 -0.03602726221451148 0.010487555761497855 0.03702807381625072 0.046066428441703604 0.04581809621104099 0.04389655034802292 0.042188272398857043 0.038364881151765354 0.030359761049655293 0.019422882598202584 0.008845804917669611; 0.04279316522685652 0.07972463286886539 0.10603650753631418 0.11906533919938983 0.11865529749769765 0.1057393476454266 0.07889513585056071 0.03425163606670411 -0.02821121293233395 -0.10223129370102513 -0.1795284005171129 -0.2524446438679438 -0.3161481855444181 -0.3708729956887509 -0.4187114223716268 -0.46092966045590283 -0.4980900713926954 -0.5301629346604003 -0.5571825637849402 -0.5804551282432708 -0.6019783017704394 -0.6225904860654878 -0.6425385498567185 -0.6613574941700616 -0.6770063057574973 -0.6857052753302876 -0.6830871662785254 -0.6663639099826124 -0.6359219991372393 -0.5933401219564486 -0.5387336509554281 -0.47145281690097174 -0.3935700676558622 -0.31173408181750745 -0.2337726581573711 -0.1643093840392288 -0.10445507542622301 -0.054736026243805136 -0.01724025621396016 0.005785611549298944 0.015733502101075766 0.01835330503114098 0.018962275915161246 0.019023012895145422 0.017349385295756078 0.013061110250342638 0.0075319448354522174 0.003009209884149352; 0.03440274493986661 0.06426308272890742 0.08615540876064619 0.09805808879197116 0.09948327727777843 0.09167717110966601 0.07543861451548306 0.04837592181452647 0.0077091223238505615 -0.044849911541342116 -0.10317044811958366 -0.15925009535609883 -0.20654677816462333 -0.2439843854018021 -0.274422735260995 -0.3003622981934025 -0.3238788377440233 -0.34672077118490546 -0.3696669002005277 -0.39255906661471823 -0.41460224352389174 -0.43480298742425605 -0.45255800833158244 -0.46700612740668823 -0.4768371733308896 -0.4807610440764716 -0.4775584870470604 -0.4661073530405016 -0.44622941270416555 -0.4183522763883184 -0.3820772311048409 -0.3364872953953444 -0.28287814283422724 -0.2265080149390247 -0.17367500513021136 -0.1276468423269464 -0.08859142292441091 -0.05581785260506091 -0.029800739513052385 -0.012044408023915334 -0.0023966018265913903 0.0018344524405860777 0.003501066900815868 0.004006501226886429 0.003418612518883952 0.001727182699997892 8.945157245068232e-6 -0.0005525255742845996; 0.018910360891745307 0.03556548141087839 0.048217696069238494 0.05576710040712931 0.05744761566510843 0.05339373788764372 0.04477601735306027 0.03192153430521393 0.013210997024313026 -0.012582070099655802 -0.04369013102953317 -0.07552976580746727 -0.10297785645765488 -0.12388451525059187 -0.13941542705457935 -0.1512193892450151 -0.16103531208246447 -0.17097742309602312 -0.18239578939170684 -0.19520772360498273 -0.20825667380098595 -0.2203802613183229 -0.2308049772378073 -0.23868507917563675 -0.24322279467011185 -0.24438181157660147 -0.24246069887414656 -0.23720903673841562 -0.2281070832627521 -0.21488398610823192 -0.1972112734678406 -0.1746534095253143 -0.14784933784762874 -0.11960652889057351 -0.093368272409535 -0.07084150472325254 -0.0519489073697257 -0.03583804664845882 -0.0223873241341698 -0.012415213873912052 -0.006226213981683284 -0.0030839815739762823 -0.0018407609935728972 -0.0014900275292236743 -0.0015969440667995 -0.0019712665462847685 -0.002024423903772229 -0.0013081818379016492], hyperparams = 95.6196783046336), (params = [0.0021523923931195173 0.0025927831326194926 0.003246124868855346 0.0037046485284374557 -0.001227099267953757 -0.016243589859527733 -0.04188390744415584 -0.0736634230005027 -0.1050483040883677 -0.1319161902339791 -0.15239518984931633 -0.16693251744920776 -0.1781093952910346 -0.1864536403508843 -0.19214715324876977 -0.19812889184670357 -0.2061978020633504 -0.21584633095166206 -0.22587357481844378 -0.2344099479498301 -0.2390551660302489 -0.23809742632272338 -0.2320865776372495 -0.2222819648780015 -0.21080619272931778 -0.19968238001393127 -0.18964714101281732 -0.17955556566506442 -0.16802976678268888 -0.15513715162274025 -0.14168727821402932 -0.1272820238510228 -0.11176353326602902 -0.09544070879582164 -0.07853416515690365 -0.06420209049289716 -0.05808741130917379 -0.06271527701537014 -0.0749941472229215 -0.08846888061860517 -0.09805237079666843 -0.10284508097209584 -0.10483397015035122 -0.10461669924834306 -0.09987659313846166 -0.08746735862930376 -0.06568375407455242 -0.03539268458407158; 0.009692107191472432 0.01617537313280747 0.019547080723269803 0.016563986378095058 1.820536703575397e-5 -0.03437405200232378 -0.08478749775712933 -0.1429688013819283 -0.1989504074806941 -0.24738000954023306 -0.28712122897471737 -0.3190371584931846 -0.3441540401047012 -0.3622465320606218 -0.3761393557036942 -0.3924754902970124 -0.415039929668103 -0.4417226427465271 -0.4677057850757411 -0.48800461314655497 -0.49736346454242736 -0.49373505308370647 -0.4791925105501824 -0.4569067246367832 -0.430897924910752 -0.40473092792825915 -0.3798448123524772 -0.3547974132546294 -0.32782840961530446 -0.29964005518291287 -0.2719430073241658 -0.24421029629153176 -0.21583574595866217 -0.18759082011138228 -0.16019319078485258 -0.1375413054401 -0.12571505345904924 -0.12706333615935514 -0.13924637958311004 -0.15730982322740383 -0.1755857578366127 -0.1896855566410348 -0.19731944528730117 -0.19664194601290733 -0.18553050022961787 -0.16117260427971525 -0.1207843780977982 -0.06506589165830051; 0.02303258389752788 0.040944952351722505 0.04897853541346296 0.04005680058214825 0.008459658556768276 -0.045906700520402785 -0.11794729001042843 -0.1971287463476411 -0.2723577727843412 -0.33948305884538205 -0.3984683566058101 -0.4476271988260834 -0.4853408762179929 -0.5143697532067629 -0.5425640290199172 -0.5787049034331869 -0.6255387798462325 -0.6764087778924521 -0.7219651599470869 -0.7541468225074625 -0.7661080347202107 -0.7569559734247645 -0.7308967752768073 -0.6933919056242578 -0.6498997850185216 -0.604883236718636 -0.5599725899700463 -0.5143515819758856 -0.4668331196058567 -0.4196503420422272 -0.37599303630118525 -0.33625090487972326 -0.2992131932492456 -0.26531157435390806 -0.2359499889540051 -0.2140506841683376 -0.20195213705639573 -0.19805249698433539 -0.201133351357583 -0.21222516854383808 -0.23042702021002331 -0.2513060782469665 -0.2670112898026264 -0.2686740516157531 -0.2519585541137326 -0.21619691884009873 -0.1603093507973492 -0.08575147139887156; 0.040486149565189235 0.07271698797547496 0.08698411111191195 0.07400300187824725 0.030986379534041018 -0.03843766309484692 -0.12741232470447897 -0.22426125537549432 -0.3177785429462463 -0.40470602076292483 -0.482744041256248 -0.5464196475244839 -0.5970630174032753 -0.6448020735247681 -0.6994398411815979 -0.7657891696414125 -0.8401665565403158 -0.9111768675723223 -0.9687100145757517 -1.0052321396504846 -1.0155597044122049 -1.000374019150409 -0.9652641201587363 -0.9166105126819243 -0.8602912487509046 -0.7997534696508616 -0.7353253355057602 -0.6665778507855156 -0.5939714558899435 -0.5220862790488993 -0.4570559636546684 -0.4017213812254607 -0.3555545180394224 -0.3176424799005025 -0.28983343329704914 -0.27457638780211074 -0.270466563435189 -0.2701741931579762 -0.2688955671727707 -0.26949587417766796 -0.2765536863369062 -0.2923089009501332 -0.31088988739203643 -0.3170995038836109 -0.2990115281032347 -0.2545913646636892 -0.18608077862457242 -0.09829727820065343; 0.05996554668964014 0.1073352520508695 0.12920973181665105 0.11619033432478082 0.06758064018864188 -0.011141791146445167 -0.11205037595485683 -0.22328077677566932 -0.33427380100725584 -0.44050321637508405 -0.5361894094409959 -0.6168853942068633 -0.6913087511450771 -0.7726843760782706 -0.8640803899903875 -0.9601169927452584 -1.0506724509180165 -1.1255155567787662 -1.179857133498482 -1.2115656063520543 -1.2190026842081887 -1.2038696843537748 -1.1712002516176585 -1.1259543235536713 -1.0723044483014161 -1.0097547330298493 -0.9349720097724716 -0.8465341435429324 -0.747405308755774 -0.645003663933914 -0.549570034742389 -0.4679294101666521 -0.402847935984712 -0.3536613299550515 -0.32210672173154226 -0.3108877813044227 -0.3163279133458893 -0.3275908285993354 -0.3337611184308266 -0.332413273845797 -0.3284040300123179 -0.33032738342563583 -0.3406467707131573 -0.34591929108467573 -0.3279940826683575 -0.27934382157085696 -0.20262364463474405 -0.10603910132143295; 0.07805760317140886 0.13949879394074868 0.16987504387903768 0.16001034164476644 0.10979620098337207 0.026094330275870613 -0.0818950446648899 -0.20338090738193224 -0.3286918290466695 -0.4514327989730914 -0.5658846275365216 -0.6734676518898812 -0.7866762167467501 -0.9108957271311032 -1.0352390671563827 -1.145898522387849 -1.233488810955893 -1.2945903417327094 -1.3331576716029567 -1.3545463194046763 -1.360970003058582 -1.3548615804052335 -1.3390661846762317 -1.3155923053185412 -1.284264328182845 -1.2388804096002641 -1.170405536800323 -1.0749706479712977 -0.9564874593012708 -0.8245168914523922 -0.6924916729706441 -0.5726008198926213 -0.47335597656781186 -0.3990791921906433 -0.352520089427307 -0.3360459880594744 -0.3439030806759416 -0.3639768479516735 -0.38281307437796486 -0.3908782735861972 -0.38700245881764933 -0.37857055329515293 -0.37358553170158915 -0.3673611764631199 -0.3443375528839824 -0.29283947668981686 -0.21221592011501422 -0.11083559120049886; 0.09310943229218642 0.1669103815064747 0.20614768955012044 0.2014432000155954 0.15260872897377617 0.06773264870268346 -0.043499783165325746 -0.17230918533584014 -0.30988171409972437 -0.4491666457445238 -0.5881371057179791 -0.7338626163968526 -0.8936543746795722 -1.055744941909818 -1.1972059069129466 -1.3049442969581029 -1.374628679945671 -1.4092958217954472 -1.4219537000290654 -1.4264746304250733 -1.4307692079007401 -1.4383275740861508 -1.4491254434839764 -1.4610582615431924 -1.4679365209637638 -1.4576730186589462 -1.4155089609192715 -1.333798248882097 -1.213827277988425 -1.0643716596059292 -0.899765428502425 -0.7373260194720125 -0.5928038283600602 -0.47923854145186745 -0.40397505935728095 -0.3693705276926671 -0.3685224060512659 -0.3879153260734791 -0.41405857773771904 -0.43445853185113664 -0.4411423077387621 -0.43331526121898356 -0.41591100314749363 -0.3922436293971072 -0.35699928642709033 -0.3000600521296103 -0.2169155239135836 -0.11331030593717793; 0.10608141221076725 0.19094395743854778 0.23904721161691503 0.24117884847905113 0.19698625338316209 0.11445486687957988 0.0020517246505817746 -0.13343341316419624 -0.28376185721252883 -0.44365260502845844 -0.6166596543126941 -0.8094105365956094 -1.013068432238088 -1.1981259193542733 -1.3408945203137717 -1.4350278845988949 -1.4779992755825953 -1.4766289968140178 -1.453702677788195 -1.434149075894906 -1.4334397634663698 -1.4556483415489874 -1.4970987029966916 -1.5503282540836225 -1.603042570723297 -1.6382783331777195 -1.6373647884454898 -1.5888927218231212 -1.488877687418433 -1.3417942624017818 -1.1599585769809135 -0.9633513202805887 -0.7740701289092694 -0.6141491879261539 -0.4982826976249017 -0.431122145244981 -0.4076766079131492 -0.41482365551232137 -0.4380694889933922 -0.46432912892309935 -0.482898421425939 -0.4843684502912402 -0.4637847313217874 -0.4255622241139058 -0.3752323611109474 -0.30937451177234027 -0.22216048223832657 -0.11599451152308926; 0.11813028065014534 0.21329925923336254 0.26990258548116347 0.280084287871058 0.243795692810896 0.16708293274412564 0.0557679156974501 -0.08514015078564062 -0.24999737178084902 -0.43931061105639624 -0.6593141525281514 -0.9039376871443696 -1.1416747316950704 -1.3348525499108268 -1.4685865198449284 -1.5417393666338735 -1.5511419234628878 -1.508143088123152 -1.4469576477832846 -1.4039218067519312 -1.3994169546835338 -1.4354088689475477 -1.5045972205918612 -1.5945829684251878 -1.688894371866006 -1.767830660995849 -1.8112020369294881 -1.8061311525429136 -1.7435876996061954 -1.6214732434910797 -1.4457314922201623 -1.2347132168777668 -1.013319891588472 -0.8101482968907361 -0.6486967636139362 -0.5386714936671808 -0.479854037819885 -0.46258014789722374 -0.47192780438703535 -0.4936556122512947 -0.5168251371833679 -0.5280109161724651 -0.5122080766883277 -0.4678223377795738 -0.40517311172090775 -0.32845346444701334 -0.23412269196403648 -0.12229335680415078; 0.1299101362245216 0.2348181424901293 0.29957623659026006 0.31900044239950365 0.2934983645574786 0.22609016390518927 0.11905976731361377 -0.02655994790339765 -0.21190454382289817 -0.4430361130714368 -0.7193694838140148 -1.0131836917196844 -1.2744555223157157 -1.4668872793592858 -1.584654962438199 -1.6288669991264766 -1.5999959015320864 -1.5187002076129426 -1.428928437414209 -1.3726143098886738 -1.3681138145564167 -1.4131150675426465 -1.4979798434469023 -1.6078536101123062 -1.7268201987179133 -1.8348246026011739 -1.9135096833145178 -1.9507246069087623 -1.936117936287073 -1.8600955753602681 -1.7184505268994146 -1.5212723321001163 -1.2919946923337133 -1.0593194609322798 -0.8546947378026334 -0.696893081022242 -0.5934338333956592 -0.5412800319455773 -0.526956804649733 -0.534856694641303 -0.5531939810334165 -0.568209849453309 -0.559567169574707 -0.516761458637657 -0.44727786482092186 -0.35998046263339356 -0.25558807979487647 -0.13374837882914392; 0.14038537651167188 0.25431494614055894 0.32753513195420086 0.35710003172852295 0.34342173550799093 0.2866818430902276 0.18445985042663404 0.030632118295722426 -0.18301695818287406 -0.46186086118129344 -0.7920498293252055 -1.126611880250101 -1.4056551031442661 -1.5969373348538776 -1.6979439246842667 -1.7101274428465876 -1.6443623879762213 -1.5353105196697496 -1.4322495098257686 -1.3731782730569262 -1.3693111643164335 -1.414854310807451 -1.497473424407403 -1.6032263974635401 -1.7209422912248473 -1.8344067613362065 -1.931009811392653 -2.0003261996122874 -2.0343829463603686 -2.0173503577867002 -1.9343222409103142 -1.7817326968296299 -1.577319413218101 -1.3429173573473212 -1.1089401502464211 -0.9050387031081504 -0.7501076659194227 -0.6523504606633982 -0.6052133603808325 -0.5926679226210002 -0.599743748592964 -0.6122446031023823 -0.608773956282176 -0.5710444821735827 -0.4988307108089189 -0.40181470273106834 -0.2852468360822035 -0.1496625603145686; 0.14807772578852943 0.269183480824177 0.34992574862462894 0.38868056855029726 0.38577963454465014 0.338410176944397 0.2378980896871446 0.07103950986275691 -0.17316814389359633 -0.4949467634426843 -0.8693193637249746 -1.2378241451272936 -1.5361525790773738 -1.7323247040194094 -1.8202498232207205 -1.802620242282069 -1.7050730661128668 -1.5773344307593267 -1.4699888659282034 -1.4123329286477813 -1.4080985210799368 -1.4451377180611693 -1.5065507530601232 -1.5822728991324633 -1.667908351936061 -1.7582265195408329 -1.8504185987446078 -1.9386517278668676 -2.0173235325578136 -2.0663035872828446 -2.059611247148748 -1.9774450193796338 -1.8275717557623576 -1.6247228626884533 -1.3882888229462595 -1.1522494736366897 -0.9486058826721138 -0.7986977359539428 -0.7092462910446587 -0.6697146746753101 -0.6611528770164115 -0.6660739524698446 -0.6631357022275468 -0.629026584820803 -0.5550183801947861 -0.44853693849540055 -0.3183271454919766 -0.1670361696440313; 0.1524516584542929 0.2773176218167525 0.3622321948173881 0.4073537569144226 0.41264757446491923 0.3708489465382736 0.26708355701149683 0.08475328815254507 -0.18590529391266178 -0.5413408247965282 -0.9518766327528309 -1.3520020838427536 -1.6710117573195566 -1.8721928070889424 -1.9464989626236286 -1.9030113654915939 -1.782971514740515 -1.6458400466859546 -1.5401856821516862 -1.4890255937191208 -1.4855528873344093 -1.5042530924645319 -1.5233709149186265 -1.5383816997704818 -1.5553868410704745 -1.58778798515215 -1.6488719435778234 -1.7431691095365287 -1.865833335905384 -1.991447505445587 -2.079268699073717 -2.089905810401564 -2.015005221368709 -1.8668891478826017 -1.6565564476371142 -1.4127063284827435 -1.175605005991918 -0.9787502035516104 -0.842627045384602 -0.7684068261363824 -0.7382247648370309 -0.730235500558497 -0.7218755648203632 -0.686759201350235 -0.609282589022122 -0.4933579649399039 -0.34942756510909007 -0.18275968359926115; 0.15285471587302554 0.27671646683865947 0.36027678261567786 0.4060556593906623 0.4135920207900921 0.3711058332740496 0.2598829265104606 0.06379999058069025 -0.22509978195485705 -0.6041543645436683 -1.0427081681417047 -1.4672714868180756 -1.799708876066747 -2.0024648789583632 -2.068918042198902 -2.0150448244277905 -1.8910453703208132 -1.7585876551740733 -1.6643958430920573 -1.6237857129040891 -1.6142802833554062 -1.5971488506951987 -1.5473836834566683 -1.4672320811462762 -1.3777332716049648 -1.3155613883921864 -1.319174251490535 -1.4079631824478573 -1.5776529161449937 -1.7924794812388567 -1.9924195457549836 -2.1156650539045745 -2.1323202006123303 -2.051261858931987 -1.8858831460370136 -1.659515166063916 -1.4115972469165778 -1.18277866404142 -1.0048069441567569 -0.8915035794104972 -0.8319220029783839 -0.8037241366215393 -0.7830363350028658 -0.741393155912429 -0.6580574010472839 -0.5327544756189674 -0.3759650145631018 -0.19557847002098697; 0.14706642657305305 0.26321713616369014 0.33766609179696205 0.3753766121388389 0.3763525096737028 0.3263338054982117 0.2059956225519849 0.0018757526915197968 -0.29361125892967116 -0.6811074413841633 -1.129025097938815 -1.5596180254987126 -1.89699283080188 -2.1091020968910756 -2.1894665280441514 -2.1545443289454207 -2.054685716475005 -1.9468297843890585 -1.8709505910898179 -1.8308745600105654 -1.7923937333584437 -1.710826659682318 -1.5617862485342093 -1.3560837605827858 -1.1306131853888444 -0.9500841291067254 -0.8825197787533289 -0.9624936360113802 -1.1841936874427552 -1.4948753106087602 -1.8143833479286333 -2.060010990332148 -2.181183716397591 -2.1777931756743043 -2.067366556977885 -1.87486103365121 -1.6371539225366283 -1.3953334708590406 -1.187072484492588 -1.0372196103894917 -0.9440559370625462 -0.8884233765586157 -0.8475705623347459 -0.7930916199140732 -0.7010540019209432 -0.5666438775645225 -0.39838511815702454 -0.2060682027695216; 0.1339462063027099 0.2348436111830597 0.29153106083468416 0.3106731185268941 0.293876022443442 0.22808726822208297 0.09759648242597876 -0.10647373523094493 -0.39193867007906424 -0.7627001092425075 -1.1886044172863581 -1.5997755853684825 -1.9362748763532651 -2.171758487985205 -2.292988007337539 -2.3116515898720214 -2.2700122997130316 -2.2094179091411696 -2.1552862374733315 -2.1007422814883183 -2.0067632897098737 -1.8294404483664322 -1.5506154886716224 -1.1918847512501056 -0.8102646703232819 -0.5038292041432799 -0.3649024769136451 -0.44362702235883683 -0.7232027607825527 -1.1293653470068434 -1.5641279439147828 -1.9335252179601388 -2.1664875276645374 -2.249711342041938 -2.201700451210346 -2.0515581066967545 -1.8373691059303336 -1.5988797003407376 -1.3735570912654849 -1.193233667936097 -1.0670964704309416 -0.9815808886826516 -0.9157898609039877 -0.843327366887155 -0.7395856818404202 -0.595877113755234 -0.41763866580783676 -0.21514408783728306; 0.11561761359648182 0.19575071942920716 0.2273267019438533 0.21718902394151507 0.16976484319168558 0.07767269550121263 -0.06580320337130323 -0.2616259554241406 -0.5169065898878865 -0.8392383496378658 -1.2069290565101771 -1.5720972648785592 -1.898479711396717 -2.1630187192026384 -2.343821095669185 -2.4444894253503504 -2.4904200255995597 -2.499336868524032 -2.476928887378939 -2.4042710899518496 -2.240266715053057 -1.947204571512223 -1.5176091898434152 -0.9903871217153488 -0.44797204950029457 -0.01549769897451874 0.188038913300066 0.10023783710829916 -0.24226390900445174 -0.7374438435240191 -1.2710599832751373 -1.7518818812039307 -2.0958338302119843 -2.2690396322416637 -2.287176745414372 -2.1844881428608294 -2.002146601400358 -1.7787465836858412 -1.548386323429427 -1.345594980613332 -1.1899293888716926 -1.0760955418093074 -0.9857393050180683 -0.8938042521083484 -0.7762381745722629 -0.622363566606719 -0.4348885154627861 -0.22343016491887646; 0.09473992989153779 0.1520101991024074 0.15551543549954475 0.11006391233550814 0.022464666376008916 -0.10578794975342298 -0.26721766796926955 -0.45083624025575364 -0.6603639248835347 -0.9076114585659373 -1.187001095796948 -1.4814228248027446 -1.7800913423148332 -2.0643041089710845 -2.307585361972857 -2.5039827136816926 -2.654502494755359 -2.747597041824269 -2.7680086011610663 -2.6843641787751324 -2.4548204810987273 -2.050263925640649 -1.4788095886734463 -0.7999452253333678 -0.11246176856340749 0.4349861227851653 0.690575551339273 0.5858954084708706 0.18188792252049843 -0.3893565573631534 -0.9966995656358373 -1.5579265836954748 -1.9914286424157026 -2.246823618256174 -2.3288774067991374 -2.2733369373818113 -2.125471769206125 -1.9236086281312088 -1.6975038504910474 -1.4816732775531205 -1.3036774617557618 -1.1660941655690218 -1.0540570644761702 -0.9438471299231467 -0.8117044066326409 -0.6463415939871189 -0.44965580167741415 -0.23047952064787164; 0.07256133169555097 0.10811761184932633 0.08693238685474419 0.009201127434179867 -0.11804960068691758 -0.2847544520568043 -0.46822912255531596 -0.6427055450295556 -0.8044538890508779 -0.9682161002954167 -1.1465927229348265 -1.3526101951537506 -1.6001934385694867 -1.881905169017535 -2.174332300442862 -2.4583914002292993 -2.7042371410062915 -2.8759007997927513 -2.943397093721708 -2.864023691484943 -2.5954673493572638 -2.1154763376375585 -1.4495179467256945 -0.6714491855659244 0.10617585964204722 0.7201060745832625 1.002798787154631 0.8831383854227871 0.4442420392402008 -0.16516525957423162 -0.8054122393225629 -1.4026857246499969 -1.8860922576942083 -2.199505888573847 -2.3355895445414 -2.322473553245717 -2.205877845254825 -2.025841549651899 -1.8092753467405163 -1.588940400361619 -1.3968840203506014 -1.241897386310718 -1.112569166362951 -0.9865699558959857 -0.8405978652844732 -0.6637743979129234 -0.4587867860550479 -0.23430086396228414; 0.049792612248785666 0.06740147399637744 0.030754151947980535 -0.06686712350206016 -0.22180201735985916 -0.4194860621351758 -0.6258475867162361 -0.8009296147100787 -0.9296302950288312 -1.0246262344895778 -1.1110719902194612 -1.2242431847677206 -1.3997091324764388 -1.6493712334906274 -1.958960745751105 -2.29556865363523 -2.605458459179142 -2.837099591308894 -2.9457659138666066 -2.884480633087551 -2.61473203199231 -2.1181399275455375 -1.437789875666499 -0.6618041182352561 0.0919204453829845 0.6756913851827646 0.9418661049347185 0.829921313996027 0.4202470093056637 -0.15149697360921507 -0.7555040571523977 -1.3264159760027596 -1.80482502734236 -2.13796692878169 -2.3080203279932876 -2.3292530568885175 -2.240518633713712 -2.0813228091328573 -1.8770316646534886 -1.6584026479970932 -1.459302310407792 -1.2928194430796225 -1.1512348212898416 -1.0136569978124714 -0.8566545295466713 -0.6702728319114971 -0.4594762789234509 -0.23346180902892075; 0.02688307095921776 0.03087319374050783 -0.010499646284996092 -0.11186616697088135 -0.27633228761262796 -0.4905937482495286 -0.7159777703532917 -0.902476007073014 -1.0216923260707012 -1.0776359953271866 -1.0982758125816408 -1.130253378465968 -1.2243102391795575 -1.414021491982829 -1.6996415123409199 -2.0428020505104865 -2.376206336622512 -2.633444116825179 -2.7580478401439663 -2.7110042094135847 -2.4631623605146613 -2.010530992386916 -1.4132302269325625 -0.7614864356410961 -0.15981684749886277 0.27772126966159705 0.46895735358273744 0.3831956730377262 0.07265855087399124 -0.3758506494685362 -0.865755928323174 -1.341949986776191 -1.7544093327817767 -2.0616322288026323 -2.240408482167662 -2.2862875283489332 -2.2238622531319554 -2.0868228061808214 -1.8979069522497682 -1.686391084768482 -1.4866223162010679 -1.3145212342074228 -1.1655970276835514 -1.0206132802408547 -0.8565616283592851 -0.6644627686820354 -0.45150008977178185 -0.22794919430835353; 0.002253110598497261 -0.005736081419297532 -0.04424452793441398 -0.13570123334821038 -0.2927228392370919 -0.5079307358408509 -0.7442618740677276 -0.947625922392618 -1.0776894777578734 -1.1256094608316862 -1.113639510170359 -1.088320260503135 -1.1065788455171786 -1.2212903779789968 -1.4498294724585326 -1.7546046935368487 -2.0615824532194638 -2.2959599507707997 -2.39859936185122 -2.337635184487865 -2.101844970261989 -1.7277236668497495 -1.29422881744252 -0.8669639106298433 -0.4958679608262331 -0.25461295038902515 -0.18410556536093758 -0.2766578053025699 -0.48593136169576095 -0.7708687095515153 -1.092884505503222 -1.4204482872060145 -1.7178968102739407 -1.9619011508152127 -2.1265377973677673 -2.187655550620359 -2.1508608172548875 -2.0388454804912204 -1.8695703105893775 -1.6709679785145344 -1.4775519416230507 -1.3063684932985398 -1.155020378368305 -1.0064922680851938 -0.8394188634008319 -0.6463434819623992 -0.4358615893237675 -0.2187583321828002; -0.02534048848634101 -0.0478710268087905 -0.08357841917330466 -0.16019568798147096 -0.29958345356988336 -0.5028088132268471 -0.7390588234580469 -0.9559304887184176 -1.106029088790451 -1.1678837029590563 -1.1522850497516035 -1.0970421015034546 -1.0578469564392035 -1.0992357986518355 -1.2528044323382626 -1.4849477343281554 -1.7215972684182788 -1.887579197767359 -1.9240962507147092 -1.804446240823623 -1.546987487513235 -1.245723071002613 -1.010189810116923 -0.8471259895805098 -0.7339254195877594 -0.7037894930011128 -0.7760602591356976 -0.918616195393234 -1.0697304881168404 -1.210983449388309 -1.3563008195118358 -1.5095366686022837 -1.6646290753826236 -1.824229735070097 -1.9604400692463138 -2.0295067532699305 -2.018533392750893 -1.936134575419444 -1.7929290132737223 -1.6145904588741327 -1.434563907853194 -1.270530814714709 -1.1220033903072228 -0.9742449346249739 -0.8087454894709774 -0.6198562702084607 -0.41608985843072377 -0.20796602296793104; -0.05530313124789792 -0.09791103829798616 -0.13918962921107633 -0.208196163086252 -0.3312639061480843 -0.5162565618070872 -0.7414872454924732 -0.9611360275922362 -1.1265648988765375 -1.207834134738375 -1.2042132737653934 -1.1411772183108868 -1.067254439129671 -1.0495931585438667 -1.1280277253086741 -1.2725887578892896 -1.4129205615035818 -1.4796197373964601 -1.4200127665362492 -1.2148075637676843 -0.9079916204664243 -0.6466564196204885 -0.5816880317455814 -0.6579545185521314 -0.7849488608745185 -0.9549001138830812 -1.1704045613391445 -1.3854955902966744 -1.5259058009562259 -1.5760468445834999 -1.575678989792888 -1.5636335506476609 -1.5779369290036411 -1.6499657599102393 -1.748683696942004 -1.8171464945979667 -1.8297866477471303 -1.781069751113532 -1.6712994635249392 -1.5216141229032367 -1.3629982850494133 -1.2130223642464684 -1.0735164340537664 -0.9323174102113592 -0.7733020046114355 -0.5922321678722632 -0.3971897501288071 -0.19821267497302883; -0.08775474488844424 -0.15780179268747155 -0.21766269431452248 -0.2941871972455113 -0.4123473814530533 -0.5821451482979626 -0.7904696030287546 -1.0005034410593427 -1.1667951205075853 -1.2567274537262223 -1.2634440789057653 -1.2027233219468079 -1.1121664221593364 -1.0536284675033805 -1.0693195797627226 -1.1309413723846493 -1.1733092998520935 -1.1389700087108428 -0.9866929260185131 -0.7044770339120205 -0.3505210215560294 -0.10112464148676598 -0.13276285129057094 -0.37122279784547735 -0.6787769572913206 -1.0028243359674325 -1.3320704826620877 -1.6152699451491643 -1.7718262068753867 -1.78136238495023 -1.689519649116415 -1.5581566207268025 -1.4641016588021707 -1.4578149597585885 -1.5104300743611219 -1.5667301968632315 -1.5971303768138638 -1.5823530758780886 -1.5104098605341052 -1.396108523385677 -1.26642454289303 -1.1386435740051901 -1.0162861131810317 -0.8881696190464793 -0.7398598590027181 -0.5686233148653218 -0.38235200721167545 -0.19097076450271006; -0.12289054632195337 -0.2278599356655419 -0.3195514397825219 -0.41993229270681526 -0.5485852836442852 -0.7132555724759845 -0.9064281959643505 -1.0998290876224366 -1.252263942517809 -1.3327113496667027 -1.3360457436379056 -1.2751456408617123 -1.176172254242527 -1.0893368570628204 -1.0550668673277317 -1.049095015482994 -1.0135610080996378 -0.9031567096372449 -0.6904899100148301 -0.37147525796513514 -0.0031509094430195446 0.23932895786229139 0.19332494881550694 -0.09974567880695011 -0.48917009772008996 -0.8921541019658832 -1.2853730756442068 -1.6132646231402161 -1.7925878013633803 -1.8015214626369869 -1.6816307246109021 -1.4972532644413554 -1.339086555395438 -1.2673075651752006 -1.2661660597020195 -1.2981253229126204 -1.3366157044275826 -1.3510282007847687 -1.3184126493724404 -1.245283526179666 -1.152017375827308 -1.0538081825787895 -0.9549650568501707 -0.8451305319868231 -0.7109412137772065 -0.5507182448170355 -0.3726787816125362 -0.18692016289840843; -0.15947600547107843 -0.3038694958676938 -0.4363074791966767 -0.5728334720641726 -0.7252803191794618 -0.8962972168572051 -1.0808209333271304 -1.257559728691632 -1.3888700477328269 -1.446317105483588 -1.4313279142555075 -1.3603440121621313 -1.2511100957528463 -1.1397031645195728 -1.0628501782881474 -1.0036647141023827 -0.9139936623240871 -0.7612369541834502 -0.5319328351559721 -0.2311630145401558 0.10283721145976865 0.3323599468179133 0.32445608943825016 0.08387148898423462 -0.2748577677206801 -0.671557182941813 -1.0719061982553344 -1.4151088319127738 -1.6194550676560073 -1.6612396291131506 -1.5672418449480405 -1.3854046228913737 -1.2006974077535324 -1.0775233127933876 -1.0228495906137507 -1.0256590656822986 -1.066106921432015 -1.105400604437999 -1.1119161483012867 -1.0831666431222955 -1.0307420732316839 -0.9664956003929219 -0.8945731995711832 -0.8052003728180703 -0.6866630730055301 -0.5382796135049548 -0.3680225585989902 -0.18593834677430618; -0.19539756708217054 -0.37954417110585653 -0.5549110822678569 -0.7320047391571106 -0.9147831367337685 -1.0995534496906232 -1.2806301551835533 -1.4421784754442761 -1.5517148611966742 -1.5833349265626702 -1.5436630952652586 -1.4552159824798732 -1.3313764810221012 -1.193581880223689 -1.0744640999773645 -0.9699084202050636 -0.8440227177640021 -0.6752698036635421 -0.4627254612438621 -0.22004794068317543 0.03575014906879756 0.23014779792074155 0.2713976858270743 0.14687840084107492 -0.09243206413073318 -0.4022305471823803 -0.7522377311743629 -1.0818549235370118 -1.312059203771284 -1.4091286846879583 -1.3710678475587508 -1.220757387603317 -1.0324198748395015 -0.8754425622152412 -0.7815301769715495 -0.7620934758643522 -0.8028077398168642 -0.8631397625555306 -0.9072444403886433 -0.9226413608825722 -0.9116059635964692 -0.8819958116975573 -0.8367414713251079 -0.7677128064341082 -0.6653913828102036 -0.5289530496459809 -0.365726177949361 -0.18622489486854538; -0.22820768697978594 -0.4488139274932482 -0.6633402035163388 -0.8773013220155549 -1.0885358251800652 -1.2881794530754207 -1.46813722835007 -1.6156509198577678 -1.7053380371276599 -1.7150550893268366 -1.6523871413827032 -1.5443586193117795 -1.4044296763388464 -1.2408024590254216 -1.0786279753443533 -0.9279461542989323 -0.7710208077511231 -0.5994970785475184 -0.4213966541968095 -0.25277384803192365 -0.09675096192070486 0.03262923952275163 0.09668241576901422 0.08634250115154564 0.0013338441477253693 -0.16457757774269627 -0.4122290669433926 -0.6977221308182128 -0.945443472815543 -1.099265309076845 -1.1192606909269738 -1.0061977480865156 -0.8274366901587317 -0.6565025166959717 -0.5429721251580265 -0.5120367070319705 -0.5556474278467982 -0.6370107250448376 -0.7161848716242454 -0.7710182305874896 -0.7975358889904676 -0.8006176542238266 -0.7811913299596097 -0.7322290833862961 -0.6460579752583288 -0.5213046375810949 -0.364559820317819 -0.18702660517946382; -0.25522023081952777 -0.505967841260587 -0.7525851994658989 -0.9958812956779164 -1.2290515039545056 -1.4401701413942174 -1.6193697930801 -1.7553457982232883 -1.8290617393820865 -1.8225899271310786 -1.741230079212291 -1.613313011545308 -1.45666956004877 -1.2703530157235148 -1.0669639091938372 -0.8672733064712524 -0.6754156442470959 -0.49788513824843056 -0.35180121089064464 -0.251431326057602 -0.19034333962753042 -0.14188459761722472 -0.09369529930710468 -0.041247836041749295 -0.0050472268237661405 -0.027766786101393992 -0.1540113819435164 -0.3723436171391715 -0.6115969728040929 -0.7876173629121375 -0.8317705521058523 -0.7418107875150529 -0.5806551795318154 -0.41628930795718083 -0.3036602496510277 -0.2754558627160487 -0.3306553999611373 -0.4345980080292002 -0.5432076683902414 -0.6298871542612652 -0.68913673666397 -0.7228103760313197 -0.7281243466261739 -0.6992304596059683 -0.6302145163396945 -0.5178672653745493 -0.36715295834757833 -0.19001835167039674; -0.27516649611018945 -0.5488098834831836 -0.8203545489607085 -1.0859610590137052 -1.3345940229344109 -1.552613481821669 -1.730019897568075 -1.856900413556644 -1.918524506470596 -1.9002578949903048 -1.8041720232984078 -1.657240227192473 -1.484394211183738 -1.2823661354044376 -1.0468238413517206 -0.7983061424135915 -0.5629410332153523 -0.3639294906944517 -0.22647139713597106 -0.16529726651645332 -0.16607464245488024 -0.1840255674258817 -0.17446828905861608 -0.11755067025363121 -0.034264814036300655 0.016009984099528647 -0.028176234400519518 -0.17165013196638457 -0.3555181439580814 -0.49262340780306885 -0.5186330493790616 -0.4387935244814622 -0.30111670716234135 -0.15880385174512127 -0.06532428661266057 -0.056266743547643515 -0.13112227745278782 -0.25458159999975777 -0.38432134443429333 -0.49649542290380877 -0.5851655250494276 -0.647051142678014 -0.6766141655723255 -0.6696465148328159 -0.6198071403731149 -0.5208142979086765 -0.3756017403414986 -0.19653794840302677; -0.29017427115723393 -0.5812357665179353 -0.8715982780909649 -1.1533531926008254 -1.4118341764498665 -1.6325114839379693 -1.8065606556068399 -1.9259075153710836 -1.9785739266226285 -1.9520813313990628 -1.8449776656489232 -1.6800154074413118 -1.488897578682501 -1.2753993567263138 -1.0242825915317393 -0.7428969427815579 -0.4650912313060869 -0.23008018209360553 -0.07079467405709915 -0.005338441288114689 -0.0193383777847421 -0.0655654269115278 -0.09051487639166267 -0.06390153450245088 0.0033497853015412196 0.06106116701374331 0.05684041768887708 -0.019394984579149253 -0.12552112295136159 -0.195621394581317 -0.1889358642489618 -0.11492001834333561 -0.0033358161609739123 0.106250082378487 0.1651615730252031 0.14342883214229157 0.047184820328841845 -0.09037669343033182 -0.2355909103134475 -0.3697194300605282 -0.4844999216256837 -0.5725229572830484 -0.62764896393537 -0.645167065714003 -0.6156976141508073 -0.5297923978879021 -0.38863497306011174 -0.20535889852585493; -0.3027061047147336 -0.6079576730823414 -0.9123376971776925 -1.2045069464426814 -1.4675803134634249 -1.6870809142723981 -1.856306498785654 -1.9693112110711826 -2.015688549816677 -1.985033419464867 -1.873635974929388 -1.6960151906578198 -1.4840851680264768 -1.2541663253308524 -0.9951743686005678 -0.7030135582958749 -0.40197931290451994 -0.13356435501926114 0.06418252096074059 0.16923045648131815 0.1873063195879087 0.1552069917386941 0.11927393644329551 0.11244760738434531 0.138173861121069 0.17143477263475973 0.1811104720153224 0.15803397759275734 0.1241760882355467 0.11404913526174464 0.14619341235367825 0.2132240049781055 0.2993835806598998 0.37166289173806655 0.38815122951844594 0.3303310960473706 0.21184248477253276 0.060647911562113986 -0.09963640242514407 -0.25386377736909027 -0.39162530275314567 -0.50381587574957 -0.5846476623580196 -0.6268234464660749 -0.616190307324589 -0.540984066679745 -0.40198304621336856 -0.21377342184357273; -0.3120494117658895 -0.6280321902076204 -0.9424792845386007 -1.241065976058329 -1.5054804952673124 -1.7212577547045647 -1.88386012393362 -1.990635949645184 -2.0330171462900797 -2.002226434824301 -1.8942421122100417 -1.7152082140595002 -1.4888815827694561 -1.2394282495383124 -0.9699754606327397 -0.6773721640452578 -0.373970265351859 -0.08971815029470925 0.14104760213045792 0.2954494639446849 0.37005349002576027 0.38416483620288705 0.3686837608737844 0.35281548322864437 0.3514741856641773 0.363189749071048 0.37689929586717236 0.38722055796793237 0.39885603548691884 0.42445507688492473 0.4710271760312611 0.5341708218138879 0.5988668548335195 0.6319618726410425 0.602978653049202 0.5081824593415547 0.36576451847272373 0.197005982966582 0.019307246748113214 -0.1541965816353435 -0.3116411281534078 -0.4446034766467404 -0.5486970759187935 -0.6116991980116063 -0.6147886266523206 -0.5469109080295371 -0.4096561960357315 -0.21858194382767362; -0.31713745712365043 -0.6384203019236271 -0.957436756314121 -1.258585654975927 -1.5229377638470736 -1.7352868884043517 -1.8911093973074677 -1.990841827159188 -2.02982081303631 -2.001395310951456 -1.9017251173754408 -1.731550219860929 -1.5043563787278298 -1.2434425437958136 -0.9641075642480105 -0.6730009536787949 -0.3791440493603801 -0.09904618692456953 0.14478628747336694 0.3342994408816522 0.4616506710257326 0.5312450152705283 0.5579147664626252 0.5635656176797893 0.5673071704176524 0.5796670933650858 0.6018088572523871 0.6323714927866255 0.6696550126884502 0.717844032237891 0.7779218443758757 0.8408679886274673 0.8829416969890612 0.874987560405119 0.8034333623153461 0.6757263631608892 0.5084327883555028 0.3189574115932555 0.12226283422304232 -0.06960978652931102 -0.2443327262898385 -0.39595101644514963 -0.5189048242498087 -0.5951100095365455 -0.6054313656629289 -0.5421274024213416 -0.4074415634977893 -0.21745829118321364; -0.31894401031468406 -0.6396504392760018 -0.9558104242328663 -1.2533207200345577 -1.5150636093095278 -1.7259960037164666 -1.8787968217918112 -1.973262789172804 -2.0087514735704954 -1.9821478007515818 -1.8906717397230877 -1.7332501340016035 -1.5163313687360818 -1.258033419718872 -0.9783086880025739 -0.6926108218946783 -0.41387870278379496 -0.15206782848189807 0.08307635363820343 0.282980722196037 0.4414281113045389 0.5552686820832998 0.6284103959023353 0.6747103639716576 0.7115755433514515 0.7509548658708896 0.7985554100754318 0.8551063584033693 0.9189866318846946 0.9896123073627303 1.062321600458654 1.1201635443187141 1.1355873246355805 1.0904049115537973 0.9854728071372877 0.8309437373870622 0.6401580185663294 0.4296655156750516 0.21321439005367226 0.0032375050435962944 -0.18842284836211065 -0.35639536966435487 -0.49147735296330153 -0.5739011963833194 -0.5873935650189434 -0.5265791892756345 -0.3950136886375391 -0.2102052058411203; -0.31834407603876713 -0.6337591724640821 -0.9401859910676739 -1.2272769751360944 -1.4825950205182747 -1.6933890090026176 -1.8482313103971728 -1.9415165434697041 -1.9738677443128059 -1.946759314339034 -1.8603977460152075 -1.7151574381356227 -1.5144881819374274 -1.2709297584556676 -1.0038237995154986 -0.7321581622766722 -0.47270700169329966 -0.23499370427955604 -0.021141760620691327 0.16917786216324934 0.3354355682313955 0.47437999788102947 0.5855680264981072 0.6764267533227661 0.7596589896765283 0.8440547336206511 0.9339330035099863 1.0288137379236832 1.1254372153007854 1.2181452117357567 1.2977487925682223 1.3448992833868336 1.3374227470288829 1.2679769965671395 1.142779458742216 0.9696321786447945 0.7603499767690027 0.5306035210375986 0.2945840472628511 0.06690731588926775 -0.14022617535681428 -0.31962684076897213 -0.4605961227131545 -0.5457276183025339 -0.5606408311316574 -0.50114258911291 -0.3739460251125212 -0.19822782549243287; -0.31290968527834456 -0.6188382967357757 -0.9118853759573625 -1.185144817895159 -1.4310894214883574 -1.640424310384561 -1.7987987551378866 -1.8938520798541851 -1.924185713126065 -1.8950509211702429 -1.8115449123868654 -1.6779094301936195 -1.4975097390696441 -1.2781209086300058 -1.0354721237635276 -0.7877942020747732 -0.5522474692011541 -0.33939971873090746 -0.14912542068821005 0.02370218587402851 0.18379543312801122 0.33223175717668085 0.4689507592660417 0.5975446825599624 0.7253724677350812 0.8574664955689889 0.9936521559880818 1.1295588862524422 1.2581639233656179 1.3701127160848376 1.4540747626571142 1.4944924693685506 1.477492331405516 1.400527060829407 1.267940198131083 1.0856378021953292 0.8644396105317795 0.6188052831823236 0.3657628280306029 0.12319091325208437 -0.09527279468022566 -0.2805813987081238 -0.4229566891298904 -0.5081827768650442 -0.5232794664453935 -0.46589797053648174 -0.3461760651406875 -0.18327212440559107; -0.29860196608122036 -0.5897228650578488 -0.8680374536482698 -1.127645756175936 -1.3628647410877444 -1.5669633204599551 -1.7257370392384517 -1.8234690285932909 -1.8552707548290388 -1.8265958656115815 -1.7467550941134147 -1.6251707213637645 -1.4673482175009083 -1.2785055423413618 -1.0701611861501836 -0.8567943727227761 -0.6518959523884181 -0.46503788406085755 -0.29634524710762294 -0.13988069519397459 0.010957661342851938 0.16120758760614629 0.3131205806092949 0.4684590232892429 0.6306798836259697 0.8017068415999212 0.9770233140781667 1.1477021739468352 1.303685525613602 1.4337368797496115 1.5262627446596888 1.570406955401513 1.5574478879594578 1.484359913858519 1.3528416088721993 1.1686580703213512 0.941458358786009 0.6860646741450275 0.4230979468074354 0.1723925953659626 -0.051556754781405416 -0.23803141076152792 -0.37780816575536935 -0.4599025750110343 -0.4744743596152273 -0.4217776717182451 -0.3132989116714038 -0.16622355194085045; -0.2740995864177981 -0.5438486949720005 -0.8053266989949859 -1.0513791150991676 -1.2746773594424612 -1.4691636022210648 -1.6232812641846541 -1.7230876345578343 -1.7614301611857521 -1.73967427731279 -1.6679287907759126 -1.5605130087067345 -1.4261707145302411 -1.2699200973280722 -1.1007692172069485 -0.929179136011683 -0.7631750846639113 -0.6079629573862844 -0.4621206322504336 -0.3199509637199756 -0.17606650005669924 -0.025325024248408476 0.1355471039186837 0.30719015073633704 0.49095408387926187 0.6873197899494803 0.8898796871277878 1.0868379247441873 1.2662074515255273 1.4153754062577322 1.522556504536974 1.5790424750284664 1.577674596632411 1.5138419933199863 1.3884243957833007 1.2076054604987414 0.9810483691772357 0.7251209464581613 0.4619692507954303 0.2116253942874147 -0.010269759416897499 -0.1913018254559364 -0.3232506684930066 -0.39943539610866674 -0.414215599902297 -0.36919268868577765 -0.27488835252033467 -0.14624212015677726; -0.242105283557132 -0.48468937429205344 -0.7257724276340836 -0.9559767782332445 -1.1647855462993673 -1.3458711642043601 -1.490857335337363 -1.5900511690103794 -1.6369705506457186 -1.6284860817802063 -1.5718181795743118 -1.4835407025504517 -1.3750618243571395 -1.2518300018464534 -1.1216502461355442 -0.9921825840105509 -0.8674954461796476 -0.7483492081936771 -0.629320126788568 -0.5029148625267352 -0.36541250834741873 -0.21464034633333504 -0.04895361277417787 0.13088342419397322 0.3248709412967712 0.5336605717608669 0.7516775570552858 0.9667926500767793 1.1654040957920173 1.3330743321065033 1.4570272744265382 1.5286377875167672 1.5407030260835428 1.487961842239616 1.371536007105869 1.1984879330360159 0.9796137137764692 0.7318558343990238 0.4771017959402986 0.23636557487681645 0.026869296250662065 -0.1397752612811091 -0.25880536218773437 -0.32780233100229245 -0.34366979348213184 -0.30768429531824615 -0.22916634388323326 -0.12184203082883172; -0.2081946169298466 -0.42042293022957633 -0.6367322966084977 -0.8467202804331374 -1.037514585626742 -1.2023155342477834 -1.3350643209950532 -1.4296921944028138 -1.4822652504387055 -1.4887390426026146 -1.4529602656193585 -1.3895313618628746 -1.3099682920058393 -1.2201521721419708 -1.1272697597804726 -1.0365365826991737 -0.9489713820980429 -0.8629204370525854 -0.7701867738519188 -0.6609321606015114 -0.5322263720624769 -0.3849440144019205 -0.2198602799582962 -0.03882030454916706 0.15727479558135404 0.36937996085569696 0.5934437952056737 0.8182647123955634 1.0290505137682568 1.2097821142858614 1.3467186326973795 1.4306328873409369 1.4538694957651264 1.4112632689921731 1.3048006856212657 1.1428462241929915 0.9372679746656618 0.7046594040295212 0.4665484368568947 0.24520731591408856 0.057551090339440725 -0.08840073134117761 -0.19157855813490673 -0.2518713668814619 -0.2673248822296975 -0.23931416038234662 -0.17694794071498068 -0.09333328825662565; -0.1770095759153735 -0.3586028890859666 -0.546198930921512 -0.7308692094508507 -0.9000285339946723 -1.0463971259557272 -1.1646337610277862 -1.2508098034123913 -1.3038747385857752 -1.3220057070838271 -1.3076059487640654 -1.270905671921479 -1.2205470426741027 -1.162328697902944 -1.1035569479527663 -1.0475270685124138 -0.9920825274932725 -0.9333232335353486 -0.8625334640080586 -0.7697344322639355 -0.6529749147697484 -0.5149188792523977 -0.3574754622294779 -0.18241026560650103 0.009237680267421128 0.21769533530372365 0.4391687049326706 0.6634182241943994 0.8756810782640448 1.0597562595987866 1.2019485795442781 1.2924333724647832 1.3229523717443543 1.2888435057557561 1.1930100992361472 1.044654872265287 0.8566195792346473 0.6455383662458338 0.4323391125548849 0.238314429957869 0.07764365235100448 -0.04502652024954888 -0.13045949146617739 -0.17960553153010644 -0.1920816838218628 -0.17030948978250668 -0.12346775889043542 -0.06384199600359136; -0.14867228139871352 -0.3005389399207669 -0.45712647222256375 -0.6121524217430908 -0.7559027357974923 -0.8818368994761985 -0.9841778005536116 -1.0591434850836454 -1.1076872200847259 -1.1315143595046118 -1.133667409492564 -1.1206859103442928 -1.0972073785126657 -1.0669630308189941 -1.036547315867281 -1.008437054466924 -0.9788737172139902 -0.9419288670861569 -0.8888451742759815 -0.8114438625025833 -0.7092176143578499 -0.5855958002487114 -0.4424059961198227 -0.2806085793384401 -0.10078653000291683 0.09586705089775617 0.3046941805880002 0.5161727161550201 0.7169160088113606 0.8922071370140944 1.0295859681976665 1.1191112599649993 1.1523493857781306 1.1253720778990595 1.0413124769475892 0.9093194355848231 0.7431577547730182 0.5599431547256792 0.37886188306820834 0.21741533903088142 0.0861405454508324 -0.012339786035879634 -0.07934486248362829 -0.11638466433238025 -0.12487501235583714 -0.10856583122093873 -0.07612945284726846 -0.03805336918162481; -0.12019957791501985 -0.2421091410255896 -0.3665751451968151 -0.48937224549479896 -0.604536124802738 -0.7080036489658464 -0.7939632155553202 -0.8571359088215857 -0.8983433288454787 -0.9221192505652865 -0.9335232432814524 -0.9375901903321964 -0.936060851276801 -0.9290600146674807 -0.9200404098222219 -0.9110161320909519 -0.8988886388589431 -0.8774894790711096 -0.8383088239045283 -0.7753314860805957 -0.6894668765605158 -0.5841204062859456 -0.46061146160870897 -0.3192584034585198 -0.16017330438323757 0.01447369173469896 0.1991268033843349 0.38495675803722496 0.5606222334055727 0.7140483439295738 0.8351215639327323 0.9148828666199482 0.9457733069088532 0.9248746700933702 0.8550245363669157 0.7444452604532528 0.6066844944829385 0.4579082118950253 0.3137616404136575 0.18703783981663621 0.08531227827792068 0.010115671183256625 -0.03978130386226557 -0.06598868412524864 -0.07129941523281283 -0.060451866720158134 -0.04062933147051479 -0.019412236287846708; -0.09005945106970459 -0.18080727076841405 -0.2726160137651151 -0.36265556669561305 -0.447909506503645 -0.5269924393732773 -0.5951860901023908 -0.6463810187756094 -0.6800532252756526 -0.7009312603663913 -0.7150758383323674 -0.7272626008247485 -0.7382488890730597 -0.7458711395630188 -0.7501642658547791 -0.7524518053530356 -0.7509280638256305 -0.7400652807418896 -0.7122900710075261 -0.6636903316335413 -0.5963346257604147 -0.5129705070450589 -0.4143305842230526 -0.30044537219894646 -0.17130943925507552 -0.02934266295103662 0.1197153651813525 0.2680956574686266 0.4069239631497206 0.5275983389187507 0.6232041107249365 0.6868059864548947 0.7123775904835153 0.6978571374241949 0.6455498166532535 0.5621676152797741 0.4590546523918945 0.34887520631600094 0.24270795200152984 0.14980585158460952 0.07616180239508133 0.022605748070577247 -0.012384562444497328 -0.03038300535719678 -0.03430964899444192 -0.028437203959796882 -0.017949291969308296 -0.007879699977308354; -0.059398437103425114 -0.11879107038585603 -0.17850812500795607 -0.23694107028130382 -0.29264666573310416 -0.34558469982328277 -0.3928372474303619 -0.42962750577982534 -0.4549698436269795 -0.4718172125805944 -0.4845181329275233 -0.49683725263133727 -0.509561343069561 -0.5207301129931142 -0.5293857106237209 -0.5363786639274222 -0.5405980545008604 -0.5371300669460343 -0.5199133199005839 -0.4869017947108135 -0.44066116723683596 -0.38302342764343406 -0.3141543964020772 -0.23404048007740186 -0.14281977658174594 -0.042645356383640434 0.061541337702986414 0.16384327288748993 0.25840341907323344 0.3403487662111575 0.40599519181951277 0.4507539315362349 0.4700251992532221 0.4620877212831545 0.4285689301361725 0.37435157645758455 0.30737956012332623 0.235656504132342 0.16609627835059546 0.10548702332999853 0.05853767657987513 0.02507489055053616 0.0027894953190492184 -0.009572289449155811 -0.01334992683917888 -0.010857086974670206 -0.005656997044278905 -0.0016370963409029758; -0.02943046576971923 -0.05859160325593381 -0.08777755549489964 -0.11634991761800902 -0.14365718726331478 -0.16983955980021248 -0.1936634232920211 -0.21282758801986967 -0.22685614404717036 -0.23693519251459955 -0.24476997222407393 -0.2521800912598515 -0.2597664618391907 -0.26674482165963 -0.27275042715109105 -0.2783191415970733 -0.28279607395229395 -0.2829185816159675 -0.2750894416633127 -0.25855987451294854 -0.23515081811495495 -0.20577749560634054 -0.170342336147305 -0.1288617503225676 -0.08152802189312625 -0.029692544751716076 0.02370645961763649 0.07551239990144532 0.12296633327056011 0.1641728379841031 0.1977581382943038 0.22140523641097193 0.23233418592786745 0.229337216158298 0.21322603581518898 0.18670458851705782 0.15391406521067993 0.11863921814465195 0.0842755030236676 0.05465590947355044 0.03237903381670514 0.016726475832438303 0.0057027988041354356 -0.001268861694044344 -0.004043014410241675 -0.0032231426385301003 -0.0008400024663164945 0.0004979180568036075], hyperparams = 95.5951278724461), (params = [0.04856371567732554 0.09726202161348502 0.1360789014373425 0.15656699472133526 0.1570437483671667 0.1447272576400099 0.12540943131993373 0.09582712427947662 0.06467432521534357 0.03455261020208066 0.00804404018995394 -0.011424742484821252 -0.02392814374897513 -0.027505861180175964 -0.023226544139694254 -0.007449555389666611 0.026385353225186328 0.06486214315207857 0.09387871212436667 0.12221536935715045 0.14879553749488242 0.17287744601388735 0.1881686118073363 0.1953262771251465 0.1891093712204977 0.16929461220536818 0.14338432495273706 0.11804937701270252 0.09510624329357788 0.07167421232740531 0.04804864107632785 0.022668801673932617 -0.0006620589225692637 -0.0190407716071096 -0.023663188890066467 -0.01451513366824637 0.003364983972313836 0.024247763228881718 0.04607279905814748 0.0697623600519331 0.09147697541257303 0.10502566640772991 0.10498271217758103 0.09176828820504239 0.0657995804688037 0.03388455054637654 0.008060355462781776 -0.0021890886416656365; 0.08469985391101796 0.17148262198617373 0.24510599653359214 0.2888645783932998 0.2951507106566612 0.27504634721791843 0.24267446755697797 0.19331987823934893 0.1343242922832445 0.07290063536481016 0.02138140687703626 -0.013099260997189669 -0.030927416238580384 -0.030734072655137345 -0.013797166963362225 0.02170761249782127 0.08091326839811887 0.14853773162319117 0.20460893482997916 0.2594806388282125 0.3117784538366845 0.3583218626555168 0.3931247311463539 0.4103060149039073 0.39838696149266173 0.36098788719540104 0.31145069003093345 0.25705945065716707 0.20230436213138336 0.14448916640009607 0.08675821573004959 0.03380501687666405 -0.010492228516863057 -0.0438092054045764 -0.053907482896205165 -0.03979874532041839 -0.008875933834376895 0.031098327724930406 0.07504992006186566 0.120819384332918 0.1625399003528253 0.18918495730117774 0.19267338935091016 0.17601322130741168 0.13999174388413763 0.08712170508457433 0.03783041120593403 0.00920435792368446; 0.11566110990342593 0.23155816208466778 0.33190443910231 0.3974661362871968 0.41481773964658336 0.39490004776857485 0.35562259878560254 0.2946388348398271 0.21997785834969705 0.14251879777310347 0.07808811022069885 0.03417935225713862 0.011625015851290377 0.012887525670269495 0.03958617883937785 0.09228192107242983 0.16922613334522213 0.2588132027691786 0.3405929001508429 0.420563762223852 0.49791622296569465 0.5657276660029837 0.6214941390566147 0.6467405841246349 0.6246948574391049 0.5672313416431586 0.4915721542846671 0.40415170759684493 0.31101619915155854 0.21214892353666706 0.11115113324351718 0.024728068956141665 -0.03971693859543539 -0.08004677627947719 -0.08718456351602079 -0.06329699780101576 -0.022178077082846574 0.02862053777568713 0.08538767553543135 0.1436984795019488 0.19706165563454864 0.2320706265731842 0.2404255457525891 0.22743297582049163 0.19530551093150544 0.13616623476768372 0.072304861383821 0.0265142131017679; 0.1418197599085368 0.2807446106003581 0.40561513940929805 0.49588524628212144 0.5314780979663143 0.5212604667647794 0.4819988255079678 0.41990169090053037 0.3440673027456592 0.2612587081850746 0.18764355845418196 0.1352612366229436 0.10500272606263167 0.10029644038123824 0.12838531704943756 0.19235381894110562 0.28321686390949835 0.3908861975321671 0.4976181160161434 0.6014353906913641 0.7000022434918916 0.7847419649857795 0.8551964286420488 0.8843220799212426 0.8532937892956474 0.7774054374093627 0.6733726654735553 0.5492831023952037 0.41400926956837725 0.27236250284570945 0.1281724543707927 0.0061479597051740725 -0.07917504183103373 -0.12705710283639599 -0.1326679277695845 -0.09975606411434244 -0.049622978258997294 0.008394742477627566 0.0720624334797757 0.13564637586560746 0.19464343665046394 0.235074012781765 0.24692464068142342 0.23443398158300677 0.20807417498086642 0.15426485113470237 0.08817130279206777 0.03703872025133164; 0.15764105192920988 0.3149073684799815 0.46310904306931644 0.5787649164853648 0.6382954221272951 0.6469062227379897 0.617347131593156 0.5642775331822028 0.4950390085970782 0.41189110719100286 0.33042248597699003 0.26753129091639605 0.22402996694425936 0.2100654660906335 0.23855158052450964 0.31074595426387763 0.41403355960441407 0.5398566006627861 0.6720740208371758 0.7984672979239867 0.9112789979925002 1.003456703400149 1.0744649858560422 1.1000358039714901 1.0622818312264173 0.9714327454846532 0.8411990769567391 0.681277946765807 0.5042387125637239 0.3180183899221006 0.13141141658927488 -0.027412110871977858 -0.13448065572125545 -0.19037334743270953 -0.19458762844766084 -0.15630172246980734 -0.10150581923096826 -0.038668051174584044 0.03279441564798983 0.10191202428964374 0.16246391979932162 0.20082629750973752 0.21061206275698258 0.19767761634282616 0.17771940347640106 0.13436083908837484 0.07475186127325066 0.03132932064877577; 0.16510125155415942 0.33861345976406554 0.5092288930833572 0.6472867207512183 0.7293134797388843 0.7583576168372653 0.7428237232340447 0.7005502734306123 0.638254417660364 0.5605585908932589 0.4790171052799415 0.40956330737157515 0.35496629721152206 0.3348022429300847 0.3661730421021097 0.4477751308908294 0.5656672267057193 0.709745770204613 0.8618125555524446 1.0048574032815347 1.128071544476776 1.2241454478945866 1.2869135675749002 1.3011765394235415 1.2501232846749448 1.1371833850149382 0.9771251771835804 0.7799705271805668 0.5610034094319076 0.3325238792244723 0.1117995163079452 -0.07430933629298948 -0.20077679412729485 -0.2707930364635285 -0.2836038003100337 -0.2501751739667087 -0.19489151520827824 -0.12598522851766325 -0.041924051013388655 0.03759924478495156 0.09894780475538797 0.13028190457064193 0.1358022860225365 0.12890184566958485 0.11729283084011292 0.08672576399171843 0.04190770206654836 0.013285116037775874; 0.1768304116940793 0.36484039751009867 0.5500451912760732 0.7030851332053443 0.8004689562458976 0.8427765039069094 0.8366682652022689 0.8004577794557833 0.7458777463387086 0.6803411046399765 0.6007144455624907 0.5237190841299717 0.46498136673633567 0.44980147163542455 0.49165332967425524 0.5850526157539081 0.7162106531433458 0.8764249279668475 1.045323178568112 1.2021413935466643 1.3371003138890505 1.438725881591466 1.4945138157974955 1.4972723087612918 1.427191910319679 1.281506325787412 1.0816461634217298 0.8401457556945057 0.5772276411059889 0.30941175752882405 0.05791484367971305 -0.1516551573078232 -0.2981509916001379 -0.3885885956679666 -0.4216374616311627 -0.4027635917290779 -0.3499890162457675 -0.27335576655118227 -0.1735116834525073 -0.08010249788780356 -0.013977857892254279 0.01843367170519678 0.030726289438999972 0.04452717920067524 0.05401426047501573 0.04243166950605659 0.015453066563786557 -0.001560042400307938; 0.19058208429080176 0.391661709795677 0.5860333738699235 0.749237196221421 0.8559883065505631 0.9054269764356102 0.9076830780019312 0.8795011352422574 0.8337537608032575 0.7735891976843016 0.689168541181276 0.6053676791807032 0.5475778024897789 0.5427946029909796 0.5970643849660906 0.6994691731191258 0.8388577320271324 1.0093603235111412 1.1902804652964654 1.3600180002809958 1.5127772298084319 1.6282636339114889 1.6852652658049185 1.6759950982911975 1.5805888325679935 1.3961497082259224 1.1522082293137739 0.8635907323511929 0.5530357160437585 0.2469019748975023 -0.03013249750222953 -0.25944397968343236 -0.4282842780667869 -0.5447604737823365 -0.6063780214319001 -0.6098342987773803 -0.5665366549158571 -0.4853527869010577 -0.372748300631952 -0.26377492674465997 -0.18339323707237487 -0.13575215411642857 -0.104437801341363 -0.06383352490350312 -0.023875971295028376 -0.00748684965126679 -0.010460847620309247 -0.01268020601489203; 0.2027749543839456 0.4154169920110452 0.6154551491902873 0.783635792560359 0.8962173860335962 0.9502139075817861 0.9618930196915834 0.9454834123887879 0.9079900915122965 0.8466265175013197 0.7573494182395321 0.6718925126676896 0.6154526434443411 0.6145102675540229 0.6728694412910724 0.778034821580978 0.9204561523055496 1.0983952723781913 1.2926403903843886 1.4785850615291714 1.648729541761909 1.7747404035822885 1.8307826047801021 1.8068715103571207 1.687084198871387 1.4711417678943832 1.1890340583675008 0.8581608676044072 0.5007258194639652 0.1561008237749561 -0.1428571457373487 -0.3873190251789112 -0.5757598939506428 -0.7147248075203272 -0.802567818363497 -0.8304357714373404 -0.8022379855560174 -0.7213662327148521 -0.603855336322736 -0.4831491917743213 -0.38532285776720754 -0.31747134180183517 -0.26315676606585486 -0.19677887805322614 -0.12417877673956854 -0.07217017207262826 -0.04385887935069231 -0.02405080567903037; 0.221677644691859 0.4421118776412845 0.6403569753471374 0.8021941769751015 0.9116961551736174 0.9691322864357886 0.9947780444807031 0.9963456993856218 0.9689025965173503 0.9068805089623756 0.8153962190294198 0.7294304080737037 0.6699781626024094 0.6602044430192288 0.7108870301076888 0.8141631551867561 0.96084366018843 1.1514657624939824 1.3649785144254487 1.5664099391773463 1.739865064398942 1.8586870475582953 1.9004222908563049 1.8567224216477194 1.719187882992389 1.4919730971930747 1.1951085014870022 0.8408906299946406 0.45064796153950476 0.07357054960939363 -0.24875449021521953 -0.509498348348693 -0.7135902350376607 -0.8670967778030356 -0.9725778181725766 -1.0220252543962185 -1.0099496171355227 -0.9368246017753226 -0.8235748648001106 -0.6983800411482587 -0.5861386449630055 -0.49868849855655084 -0.42114759843197286 -0.33120986369083694 -0.2322010262003695 -0.14853940637043211 -0.09009770541642632 -0.04424585286930951; 0.2378439251283411 0.45941521534160507 0.6530338090467218 0.8046635787749523 0.908242003900474 0.9732368413375843 1.0158694545282905 1.034238970397565 1.0150433231995504 0.9530323197339975 0.8577495959727041 0.7656063047296413 0.700487506666753 0.6815601615043687 0.7256952748375436 0.831043338066374 0.9886607319376565 1.1949373603509992 1.4213061100226676 1.6243539947140488 1.7828647003461124 1.8806274011373607 1.8998024846892472 1.8346670851997233 1.6866634397098186 1.4640470715991933 1.1762596791053235 0.8228803310583818 0.42035695400550716 0.022586669096242844 -0.3231181555700959 -0.6008172242867861 -0.8146919292535147 -0.9747999946112778 -1.0868507390809516 -1.1474044645384476 -1.149322823161876 -1.0945890066017419 -0.9950060473292137 -0.8744347253314319 -0.7542960463875829 -0.6473841362233882 -0.5465633715725732 -0.4357738863119152 -0.31830951124155976 -0.2125028161600374 -0.1309953681947705 -0.06422730261361147; 0.24303512133321492 0.46477608233519574 0.6568795780714867 0.8054906348844829 0.9146397028628914 0.9942566937564958 1.0466685003306724 1.0640460952583128 1.0384659634150466 0.9723347671617872 0.8748825037915791 0.7782251802667394 0.7138040691344394 0.696493495775477 0.739279407199471 0.8452362758258788 1.0100562407166331 1.2229493965524718 1.4468559545049144 1.636317685580006 1.7687144454173167 1.839651112415885 1.8371611104880896 1.7598613503911962 1.6129721626740674 1.4019589887759225 1.1304227441118262 0.7933606977965024 0.40091192408053716 0.002510997363633946 -0.3550249763349649 -0.642977509420616 -0.8597637094040216 -1.019171259385728 -1.1279646748993324 -1.1877191671743752 -1.2011270830624186 -1.1745753765032652 -1.1038987401568414 -1.0008269429786414 -0.8793194100855984 -0.7554528159893953 -0.6364254869098254 -0.5130698340678493 -0.38473311501556584 -0.2621745164386944 -0.1587187007355701 -0.07433619434378894; 0.2510027318467815 0.47780649451168894 0.6700945815215885 0.8225156577644199 0.9431051934247903 1.0302611035382443 1.0765467366223884 1.07581050609535 1.0313177408501717 0.9540744503036896 0.85659662691438 0.76497953692312 0.7091991806163014 0.6993351442334418 0.7412778611869314 0.8413186441885913 1.0006385085832656 1.2003370056137883 1.4046539810781042 1.5736060679525876 1.6843875645803474 1.7413490414070507 1.734049581973965 1.6582897113415564 1.51588248347705 1.3151949316020008 1.0608673438224692 0.7473515258756354 0.379975764679447 0.0012734776756088476 -0.3459051305093537 -0.6292849549950263 -0.8419823762554052 -0.9978212246197871 -1.103249314612666 -1.1623885110000232 -1.187014487262949 -1.1871450554668186 -1.151530401340722 -1.0729635682265908 -0.9567668732469432 -0.8271844284783124 -0.6990085535978396 -0.5695706465308563 -0.43443116197217096 -0.2988228524732832 -0.17602827924014233 -0.07746954090178398; 0.26042593547846976 0.4944761639044498 0.6914517555729494 0.8519923495303116 0.9776544018057702 1.0583276562999924 1.0876957465368162 1.0645258617863125 1.0027393165966068 0.9183053259407544 0.823516942333054 0.7359886744857032 0.6826110865147161 0.6757196617570892 0.7160816396883725 0.8037615589958855 0.9400552294355505 1.1058102374108025 1.2763100191395906 1.4213879736164534 1.5189750856016806 1.5768958164640152 1.5835556299998728 1.527062163396467 1.3984173861740683 1.211514912413124 0.97868263247427 0.6981157755695165 0.3726528279094309 0.031138525942035256 -0.2895911737315616 -0.5601168499283794 -0.767990865113554 -0.9205179212593395 -1.023092463827461 -1.0842905918501204 -1.119210864536137 -1.137682269631332 -1.1299768673905188 -1.0776808107178442 -0.9812828278722061 -0.8652680212947677 -0.7412626138911843 -0.6110638272856235 -0.4683788863360195 -0.31931430426656054 -0.18291319303558723 -0.07823284091886268; 0.26597711098222737 0.5065841275960556 0.7123142296047705 0.8796249871558189 1.0007154048066362 1.0655058761651266 1.0705590086247847 1.0237196430015694 0.9495468799143135 0.8661940086459223 0.7800192461239489 0.6961731788584697 0.638171363090801 0.6245541547172065 0.655909220190193 0.7250924497262325 0.8304229305199606 0.9549142479303533 1.083373244806646 1.1996550164201432 1.2882617079573322 1.3560050743987004 1.3861449836694093 1.3607226692799927 1.2635418444314606 1.1062730715453033 0.9054480465884475 0.6647064516537774 0.38700274219936065 0.0875476792234746 -0.2013246780011043 -0.45231464266710303 -0.6505256162665402 -0.7961109178345019 -0.8917285963336202 -0.9531852240190678 -0.998846666750073 -1.0355591047477206 -1.0482132951106014 -1.0168005053927267 -0.9456042971221494 -0.8503795190334907 -0.7408695320870763 -0.6202007986099508 -0.477794025240137 -0.3214910480826799 -0.18046479083205288 -0.07767679809108859; 0.27808924784642164 0.5287180390710515 0.7395783828330897 0.9062328683725406 1.0162271006298333 1.0577928675662447 1.0319548475738984 0.9633347068418355 0.8827083657605058 0.8041209715788133 0.7254516933732872 0.6413344933559426 0.5711070429086643 0.5411643636977062 0.5543345014980222 0.6021961779907071 0.6790199114348137 0.767670161622701 0.8590798847126623 0.9478693715279325 1.0230696507524004 1.0965569576704681 1.154346213928477 1.1716622498883018 1.1291292986132033 1.0260216121632024 0.8735087895175616 0.6761018135256982 0.44063689536548944 0.1776850672622632 -0.08367385095383698 -0.3172933325664791 -0.5069266760473359 -0.6491539455983404 -0.7423427205320489 -0.8058854086243827 -0.8580561356138363 -0.9061455134711802 -0.9298076778865288 -0.9120505248013703 -0.8592486740519523 -0.7808636322545366 -0.6889414668999346 -0.5834910457283331 -0.4506835885179263 -0.30121865867779146 -0.16992413039519846 -0.0745927960572215; 0.2948448024791389 0.5590225464211805 0.7739009923710695 0.9369350310152221 1.0343904876207957 1.050335334465694 0.9937514854262682 0.9030272096121181 0.8107610157121387 0.7264507561088508 0.64234201661739 0.5511288111163375 0.4661091013056342 0.41934387930405065 0.4161472777539148 0.44946444399885666 0.5058710245120602 0.5673865747550418 0.6298573271681024 0.6942286639861059 0.754110694979561 0.8296623437063885 0.9174706252287309 0.9868102731499211 1.0171591445656654 0.9914227541054569 0.9043690844083726 0.753027788941792 0.5476916790808259 0.3045729062477549 0.05859605863563533 -0.1620182996205729 -0.34191586933998136 -0.4807706447633598 -0.5780525616857406 -0.648955707612523 -0.708696690624101 -0.7615418733594851 -0.7871266304448516 -0.7752233475830128 -0.7306510447625607 -0.6667110589603843 -0.5947429933269355 -0.5083031454741709 -0.39544878667302635 -0.2682693248657261 -0.15706862261260324 -0.07013640520929768; 0.3053511534498299 0.5795942155238121 0.8009078724378218 0.9637579108654957 1.055776986706889 1.0563027073848594 0.9760004364314578 0.8554425376711524 0.732730750029175 0.6210578916451107 0.5114775188251959 0.4048992611523159 0.3108485211134365 0.25851444202128115 0.251284869762661 0.2785421231759139 0.3190920882623847 0.35939766103107157 0.399909341283454 0.44311716602592904 0.49520458338451573 0.5796272996446248 0.701953491065764 0.831596634055383 0.9453266214255791 1.0081460975214096 0.9899949141803324 0.8770429967825084 0.6863311336160954 0.4509437107845495 0.2147050260679644 0.0052383274122855495 -0.167797298500147 -0.30493842257191267 -0.4048319385134535 -0.47755201890133064 -0.5422132257410162 -0.5936844313280258 -0.6154614679868263 -0.6051554827350477 -0.5667903192955951 -0.5211204941585899 -0.47576339528184175 -0.4167655267893464 -0.3343343524383737 -0.2387594326995187 -0.14899359319840091 -0.06756663987722533; 0.30946891217815425 0.587306218663893 0.8160103123221373 0.9819319176115273 1.0726490300896172 1.0613388984244576 0.9546020906798572 0.7941519405237255 0.6281651054719987 0.4774633757256172 0.33471710092274404 0.20830875417840683 0.10700282708531694 0.05529311252965905 0.05274328349392545 0.07854288544437217 0.10910050060502233 0.13818486852275833 0.16626536632434144 0.19795713164139767 0.2551242790789555 0.35854222639186034 0.5205529973961491 0.7149924804036052 0.9082560385615303 1.0521064743625579 1.0967235544021137 1.0164709022558607 0.8350784956037883 0.6056643070041122 0.3753761331228442 0.17045022123551723 0.0014671708427801123 -0.13117957378573186 -0.22820303155800495 -0.2965536909602468 -0.35683934606210477 -0.3986419144639043 -0.41389571700885924 -0.40758598177194616 -0.3838187647187949 -0.3622853486972895 -0.3465792769408812 -0.31710662358467606 -0.26731501132939856 -0.20653015634975186 -0.13927815170530414 -0.06486915615872378; 0.3117734377691252 0.5873867785023309 0.816455018057628 0.9805566661886856 1.066997337625217 1.0438410490059513 0.9139772230039338 0.7192698359745423 0.5104609838963051 0.3180073589233881 0.14368118086914883 -0.0011837062214542211 -0.10896908648485537 -0.16486916273671484 -0.17002206550647123 -0.14811012168008458 -0.1185518468243305 -0.08640439094302034 -0.05578066615261951 -0.016831091126466028 0.05658380250290169 0.18230833867366023 0.3775862676045746 0.6206411484586378 0.8691581279814431 1.0725449747940015 1.173122192973831 1.1329564566668222 0.9738224486673946 0.7601475035281124 0.5423262733994259 0.34471662308835727 0.17953327480992048 0.04883419419514187 -0.046505502181439555 -0.10698371742140989 -0.1521607586797507 -0.18027554443495214 -0.19260525897985273 -0.19474428815874748 -0.19064495026626577 -0.19364170142980272 -0.20895082847602642 -0.21055345160720232 -0.1904544326871827 -0.15829928330553106 -0.11014132342774109 -0.050028604164279976; 0.31229737113086825 0.5798749796122424 0.7955956174259727 0.9451891084241021 1.018289166213964 0.9829832775353109 0.8385875906141317 0.623533490625563 0.38572581252190813 0.16210394694856176 -0.040339862222958135 -0.20655552874971467 -0.32335147236193373 -0.38533124715293804 -0.39292832377125353 -0.370034462239628 -0.3304728263679577 -0.2825437421482669 -0.23469736475445488 -0.17315961439024558 -0.07751377987319688 0.06876010211018642 0.28430007574338256 0.552028235103304 0.8252239979785585 1.055285081640784 1.1909035728187563 1.1958810800813735 1.0841483966388001 0.9112492901735797 0.7228026919704947 0.5435818934094663 0.38624657720050254 0.2572843670107159 0.16529844630755186 0.11258635368660279 0.07808583319993583 0.052601496696740635 0.03017684628500445 0.010759381366967684 -0.008781905567831464 -0.03567118339762465 -0.07761806636774575 -0.10591745184907174 -0.10679637587179336 -0.09267609339490696 -0.06217980806274866 -0.025056085045808592; 0.3034007269555177 0.5593380820300088 0.7592795600978804 0.8927601462613389 0.9446280714351314 0.8911114577283746 0.7341396150837926 0.5050508329051488 0.24703109479718408 -0.0025131906173898955 -0.23203015511698305 -0.4200015405331175 -0.5456277780043188 -0.6079878409126566 -0.6070689346733744 -0.569115443426089 -0.5086359435175984 -0.4355041753918704 -0.357800032245829 -0.26168045817429647 -0.1334575724482001 0.03640547302520699 0.2603067332663058 0.5263118477469249 0.7917155798517415 1.0210372871879814 1.1758297896176257 1.2240497511032096 1.16921549764967 1.0558718337550794 0.9183985154278362 0.7775295038656921 0.6423511830783335 0.5216054540189418 0.43088374712048166 0.37260064142002675 0.3262280328562148 0.28079875777205215 0.2344113194522362 0.19172950863072544 0.1529210972283544 0.11115391940965162 0.054329526347025495 0.003513425716638058 -0.02041205972665873 -0.025426453847048964 -0.014770996354453884 -0.0015672800363178052; 0.2807768638519448 0.5167423733894069 0.6955306199641593 0.8112678543972045 0.8432343682429113 0.7718351565832651 0.5998352282570449 0.35387698652706195 0.07639968609896589 -0.19965468732868705 -0.4528002355899692 -0.65496868453206 -0.7823372040962382 -0.832612987419238 -0.8093899656475493 -0.7431693110048111 -0.6521798155005402 -0.5432264718038643 -0.4226939389532108 -0.2811363639898414 -0.1101042915082372 0.08773407706172495 0.3144943201461531 0.5608740444642801 0.7926968432149031 0.9985469259062323 1.1598890312340338 1.2477964438080231 1.2524391214785517 1.2039260018438027 1.12434297896047 1.0331031010762115 0.9360325640058513 0.8371124202178121 0.7494100977077044 0.677000345699477 0.60361009032769 0.5260332099176105 0.45017342670048616 0.38097798867599036 0.32122975904933826 0.261804008300749 0.18912525457967538 0.11218602043085449 0.055722004594492586 0.02433748771423955 0.014365875464500247 0.010048756556227764; 0.2418428366934655 0.4470366570839035 0.6010447914672077 0.6971603652741737 0.7120864127357629 0.6256608857233459 0.43805864562177066 0.17257705606465873 -0.12730175122268364 -0.4309167949814905 -0.7032877489873776 -0.9096776141579477 -1.030171190530516 -1.058558796651505 -1.0026005615438456 -0.895160169986566 -0.7590186966842029 -0.6045911927598835 -0.4373013137294831 -0.24777642266965705 -0.03125205822949354 0.19547385937553055 0.4206617954055573 0.6371188843391697 0.828834377922008 1.0074758110452333 1.166778629092515 1.2801106257514603 1.330247406155922 1.336476731767094 1.3126049833206332 1.2754865744093156 1.2254677417177486 1.1600091621045174 1.0854139314696758 1.0055254097309607 0.906172814915218 0.7922599418453067 0.6801986683431904 0.5779931572864 0.488565018823373 0.4022793683178537 0.3060243296541705 0.1994711389621595 0.10876056438960492 0.051856892209210886 0.024698039492171177 0.010210497949949169; 0.19905079760214808 0.3689315125444309 0.49685010919168154 0.5704281130116967 0.5650703775912013 0.4618877682571896 0.2569063428500395 -0.029599931104622605 -0.3522672654031561 -0.6773227303053392 -0.9610848941284471 -1.1617620961546125 -1.2662023096799242 -1.2659646957706312 -1.1682944508688522 -1.009814486583172 -0.8206071071097091 -0.6173356494249219 -0.40545153986315197 -0.17484699437816165 0.07665729201482693 0.3233436610139692 0.5417039956857281 0.7265174776772632 0.8821451979692626 1.038704500987829 1.1938167050112327 1.3219593933625988 1.4065706521839283 1.4591752624357106 1.4841412518814738 1.4920282146598611 1.4802464445856567 1.4449913111324328 1.3878563658089085 1.3063854265601678 1.189091759864233 1.0429887151774615 0.8945210812522533 0.7568576423059445 0.6294141612559774 0.5051731235641442 0.3782222995960532 0.24808528737576233 0.13544155261059854 0.06132462625356112 0.021546931231337177 0.0026824217153107325; 0.15649272736155256 0.2915136210199066 0.3941689701307969 0.44240267726953125 0.4099215264167123 0.283710822823923 0.056748360254256724 -0.24897335344138632 -0.5850202889588803 -0.9160316821674356 -1.197673137183178 -1.3818776057843651 -1.4613366982443405 -1.430054565690248 -1.2912687880344813 -1.0846849484462333 -0.8427710403445234 -0.5868314299562337 -0.33085511245003846 -0.06824730180831058 0.2025389399276133 0.45262940037487426 0.6544234861482019 0.8101456433639568 0.9393373452801711 1.0784695397080237 1.2287472213161592 1.3678458222274443 1.481525672295692 1.5742574245516885 1.6407963970460806 1.6838289629077845 1.6992125992308231 1.6820027023899957 1.6352624389012371 1.552742845819179 1.4237362400641045 1.2511784020621248 1.0652929097112112 0.8885986865709299 0.7186124589765707 0.5506705966183054 0.39205558181879313 0.24774748185574583 0.12879925733815983 0.048609752529383043 0.00563250181065287 -0.007999708375267417; 0.11378779221845624 0.20903756523916633 0.27744707516719086 0.2918987729942748 0.2261919681086375 0.07647759480089562 -0.16419234840269667 -0.4759231498796396 -0.8131688043702485 -1.1365060950800232 -1.399621943017484 -1.5535775579586757 -1.599302318426435 -1.535292452263156 -1.3607490392665726 -1.111857502588206 -0.8186658245839928 -0.5100896182693573 -0.21357608898045774 0.06999337578218884 0.34292571535322725 0.5773975120535463 0.7536558678733217 0.8844043574965358 0.9924226251012216 1.112889494967195 1.2566627843000657 1.4079223540341586 1.5505290206291096 1.6791396745917295 1.7806888680882467 1.8506146197265316 1.8840069716069145 1.8772167025068365 1.8323596229196555 1.742095661014467 1.5953955127775274 1.3970542068199447 1.1765610987069222 0.9593618441556154 0.7448265667957776 0.53357146220124 0.34736872588631956 0.19669967655436044 0.08484499975264326 0.010788730823399484 -0.025274484478827092 -0.024419285485880113; 0.07396248231839762 0.12475254322802592 0.1476649248935905 0.12091393333700605 0.020229327626223953 -0.14967256406991417 -0.39147837433441457 -0.6929661800983196 -1.018635462028682 -1.3236645009159702 -1.5571267621781282 -1.6740327460021882 -1.681287045105542 -1.580198327750756 -1.3695850985963 -1.0812787553627352 -0.7465784026377753 -0.40080751167430395 -0.07408928058821995 0.22108792423407927 0.48123820720112764 0.6885757436978018 0.8401107077219057 0.9527847491497748 1.0438892033155511 1.1460381634527814 1.278623543710777 1.4347463503479823 1.6023258875928417 1.7626397667960418 1.8937995281380908 1.9842919583605392 2.028750757412469 2.029969098044013 1.9822947116401854 1.8765140094075936 1.707333350019859 1.4880476537891507 1.2439574969083618 0.9936690703395331 0.740767952194427 0.4936351403551438 0.2826176875522963 0.12669983348817232 0.028129727330956568 -0.029520887212868812 -0.051895831573355235 -0.038210020520618136; 0.02726135334475618 0.03287841179682612 0.009856108243078136 -0.058773441059048824 -0.18980234231112234 -0.3689440142986911 -0.5966390706552481 -0.872461159011309 -1.171649054157939 -1.4505317311897685 -1.6531090014104948 -1.7309486700334076 -1.691294672350969 -1.547305746915628 -1.3030174220100763 -0.9884808522227087 -0.6325977768478888 -0.2698916589105587 0.0708034419862027 0.36618353754210065 0.607628513486223 0.7925877668369952 0.926034099842983 1.0224650570515341 1.0972494868468632 1.1822787301048985 1.3014508406139564 1.4568838528074222 1.6407104619412558 1.8230687308462403 1.9771623040155004 2.0844878956876927 2.1362635787166124 2.141500744754729 2.088711548368915 1.9662301826192587 1.7763763436666709 1.541604886883533 1.2829456993333437 1.0127739272374 0.7335336668829183 0.4631958504645012 0.23340921538057016 0.07029773036470743 -0.023343006800522297 -0.07029809046014655 -0.08018952631904545 -0.0545066222623029; -0.024706096218670683 -0.061718906532095684 -0.12365464546867717 -0.22495128618977298 -0.3742288953477872 -0.5523634550537949 -0.7605416228494322 -1.0059160646553993 -1.2670042561521153 -1.5042123745086131 -1.6643473946800906 -1.6997719680847367 -1.6123861700952684 -1.426871111127624 -1.1563837746144112 -0.8313500204254463 -0.4752369003520007 -0.11691250665403077 0.2174041153800714 0.5034443992265943 0.7302640363333137 0.8999674128195396 1.0174642141130388 1.0991209350622135 1.1611381601888886 1.2315220150861386 1.3402475677121042 1.496492518207108 1.6852043499904321 1.873467260886853 2.036019931635371 2.152510379245562 2.2089632927254534 2.21286631079469 2.1549878088400187 2.0219611014407133 1.8161950409900305 1.5657598322507253 1.296101584756889 1.0185550966061496 0.7253121972838913 0.4408469935297489 0.1964700011102767 0.025993726488559653 -0.06735108467812097 -0.1065244225195935 -0.10414673336466883 -0.06755404408246043; -0.07637919929948538 -0.15159279876686144 -0.24010060589835952 -0.3572247908557521 -0.5116397728450286 -0.6846709186667779 -0.8726354890675468 -1.083522114698291 -1.3023084220021655 -1.4901533375219378 -1.5981115960253254 -1.588309742205356 -1.458644952795207 -1.2379333005902677 -0.9505212852200847 -0.6260943914368048 -0.28464169962688013 0.047981903312297576 0.3519808049526872 0.6150785554264725 0.8267190310866285 0.9878716156713531 1.1020859345843255 1.1846368133901037 1.2492262313492453 1.3149092266154945 1.4128843398603295 1.5602112966945623 1.7368794750876995 1.9148930578816323 2.0723529252814408 2.1909440859638556 2.25204414779205 2.2505784751324605 2.180356610353057 2.034509498040639 1.8174439609381694 1.5575397993790616 1.281778315381047 0.9999926154684967 0.7005408897595662 0.40988440045140456 0.1612059396819337 -0.008613122309655002 -0.10062847083890865 -0.13499818987980394 -0.12258006550445823 -0.0755064313795621; -0.1275584369309811 -0.239906902652344 -0.3469850913827592 -0.4652791239948377 -0.6090344046881404 -0.7692995111615889 -0.9370008964648353 -1.1136884677330972 -1.290279767424244 -1.424996265677708 -1.4747435648914498 -1.416358107361474 -1.2498466950488343 -1.000764290578166 -0.7033687311690102 -0.39050712775204316 -0.08072143307566716 0.20831409544075463 0.4687007960818786 0.6996657685356368 0.8907436905774275 1.0433220877313432 1.160212907772955 1.2492826530058674 1.3214126756132967 1.3903178617948126 1.4769657599304706 1.6054335813588005 1.7630575795992984 1.9282688253581377 2.081327908642791 2.2013957651447176 2.2663985378251117 2.262817165380448 2.1806385353337006 2.0224679889320862 1.797531657919321 1.5299258081334393 1.2416373308023785 0.9466366011098931 0.6461510270772449 0.3625078259171841 0.1253430762229454 -0.03437711534351223 -0.12356224185474056 -0.15727253198217925 -0.13987261529676034 -0.08269761784076421; -0.17541111266648038 -0.32285046478327434 -0.4460727600582045 -0.5610099526186354 -0.685775817419345 -0.825632069542516 -0.9692668593715242 -1.1100244803870498 -1.2401216306558887 -1.3198109769322246 -1.3136128213669123 -1.20834665340023 -1.0118692500882287 -0.7446621261182584 -0.44656214759153046 -0.15473588711765882 0.11181417649715847 0.3490913577055285 0.5630369644084795 0.7540823964457998 0.9135165586818486 1.0452378281100587 1.1564390818262613 1.2479456231213863 1.323750572607425 1.3955178897381444 1.474556944383754 1.5851994011890633 1.7265250860399 1.8827080495805157 2.035710429698934 2.161332336902493 2.233875705896173 2.237983353973206 2.1570371351878523 1.9975046077969711 1.7705986130461135 1.4970500575940449 1.1946231166215573 0.8841542485806407 0.5845051792220881 0.31339331021118955 0.09306697861330043 -0.05768747229943868 -0.14653552716697624 -0.18093922979870772 -0.1607904077137357 -0.0945899409662287; -0.21030003707431538 -0.3831617631735918 -0.5160922830885984 -0.6233781507901743 -0.7239870668947594 -0.8358813115559653 -0.9522031596567457 -1.061039150186998 -1.1487702090479408 -1.1800204911444778 -1.1267902222614201 -0.982916097950858 -0.7671352232655486 -0.4974049733658356 -0.21311830367901166 0.0487108609795676 0.2689838221742197 0.45222953492556517 0.6151099225210365 0.7574605434101824 0.8747607526120177 0.9729394705660802 1.0664508357417168 1.1524994537522837 1.2284213123171879 1.3044908084561397 1.384851718871092 1.4847077484351934 1.6116664711773316 1.7571961293932532 1.908418985496408 2.0426053060328204 2.1318884216003133 2.154242856989553 2.090158098174033 1.9443626289047926 1.724709554413041 1.4531459594291154 1.1474972778825883 0.8321007057670872 0.5382597302853636 0.28441257592635305 0.0848844425779117 -0.05937742298027298 -0.15274828820902747 -0.1915292029841559 -0.1722602079499386 -0.10200971932868107; -0.2204039931913032 -0.3994711983130787 -0.5324695028062506 -0.6329105041019232 -0.714491111448963 -0.7973105854158437 -0.8835295244583302 -0.9599042760973884 -1.010854573946267 -1.008184436345213 -0.9288875916900511 -0.7677141090181814 -0.5427385853513768 -0.2756901821583655 -0.012541607982891381 0.21368005504312265 0.38936815047804113 0.5210990826596203 0.630679829141474 0.7172858170629373 0.7837503161757902 0.840427186108153 0.9047881084274298 0.9739746021496376 1.0427425464507305 1.1183349849369728 1.2014562531799546 1.2981378281038385 1.4179146548825385 1.5585749302281695 1.7123603525559914 1.8588195930048648 1.9707309429687714 2.0151229128395456 1.9755264244625659 1.8547249834031547 1.655015393056589 1.3987848254833186 1.1044852533141043 0.8000755353959185 0.5200105558464385 0.2830806039041254 0.09806929819572051 -0.041661878019513314 -0.1368114624732267 -0.17962038625328888 -0.16618930981177854 -0.0989993575714563; -0.21046935834389938 -0.3843684341060551 -0.5146243328611874 -0.6093113882117437 -0.6756539079186258 -0.7287538037844669 -0.7814704107187284 -0.8241003486973312 -0.8443552068737058 -0.8189436339060864 -0.7279066425773812 -0.5643345427361341 -0.34140137989560343 -0.08363486110842107 0.1538017786927364 0.33983247184585463 0.4664178446053205 0.5444745805687328 0.601575125965538 0.6377951081042169 0.658123638321759 0.6730533913370762 0.7007393637637543 0.7417231247995307 0.7929645570753819 0.8574055795416935 0.9387677771321353 1.0389413652082196 1.1599676144121238 1.3018044207099524 1.462038449593755 1.6237653981087767 1.7607055461406151 1.8335008175998164 1.8252784496727603 1.735462579584658 1.5655272988858917 1.3365789399961876 1.0679006938495363 0.7883277041425563 0.5274891004717088 0.30337711375153614 0.12272117239066378 -0.016147082733958786 -0.10973251432676061 -0.15212284129740083 -0.1426855790789632 -0.08423417067948848; -0.192339402566369 -0.35923786707584243 -0.4897628078209806 -0.5776788455040384 -0.6252679716115602 -0.650304461497165 -0.6720079820267891 -0.6863075896377528 -0.685206627304354 -0.6413737164585157 -0.5394698543246125 -0.37748467019787085 -0.16579286862726392 0.07644269757490736 0.2886556151596727 0.4340219706822436 0.506945505883512 0.5303001851017085 0.5370243078277951 0.529208640896979 0.5096785975188146 0.48589753876233793 0.4762550739166258 0.4845520764850575 0.5099680908340425 0.5507780570796093 0.619347734922734 0.720280522129434 0.847846691801066 0.9986474177089567 1.172352894127021 1.354002352802843 1.5180324587577558 1.6270875380592424 1.6562608860311228 1.6004787518682664 1.4641324367224229 1.2673209826044673 1.0337033556886128 0.7864442122398141 0.5459083430719206 0.33417149251471173 0.16193563191365373 0.031041584681715945 -0.057466109144332436 -0.1015428333653604 -0.10070205553884962 -0.060371831915800256; -0.18013055538731 -0.33990253625256156 -0.46760273974360306 -0.5485667302444068 -0.5823003526003455 -0.5907296354187606 -0.5911255923795499 -0.5842535109266734 -0.565248554231722 -0.5031667848880361 -0.38893368806380746 -0.22963734253580986 -0.03288280194741133 0.18941089019785218 0.37673282908443884 0.48728670744834934 0.5155991151638054 0.48962447742568854 0.4471873799405217 0.3983215105570033 0.34287069092829403 0.28659216938368276 0.24512621321236097 0.22082487137006537 0.21485500557685502 0.22575282448842582 0.274319912487929 0.3711798261344069 0.5081841932542376 0.6739630996216992 0.8673096894286774 1.0767310932613585 1.274402723066754 1.4223165835272313 1.487674160124829 1.4665021884892184 1.3657461647015263 1.201986542826845 1.0022585895919887 0.7858277077682292 0.5680103144106067 0.3734046458866784 0.2131265146256027 0.09203286425924218 0.010053756649136717 -0.034690962084510675 -0.042893502336739116 -0.025856614492473562; -0.1751067558909485 -0.3318080002028229 -0.4556583100451677 -0.5289707730908131 -0.5536246533497715 -0.5558083926146675 -0.5467790786892246 -0.5269127450061822 -0.4914549057701869 -0.41188585403291184 -0.2856295944321155 -0.12831997830455286 0.053728508150758345 0.25136874671651827 0.41169590660560934 0.495065029116123 0.49175854888838966 0.4235832720877581 0.3353267049233265 0.24856887934472657 0.16061121390763095 0.07817470702579256 0.013404692081479921 -0.03737267531033819 -0.07141953925883027 -0.08508038056259544 -0.054704771279337434 0.036353359673134314 0.1809735874978068 0.36326811261216146 0.5792044411707703 0.8152918287489309 1.0394208801886593 1.2146318716261122 1.3093783828177974 1.3239897222587251 1.2634558390479007 1.1391349799560602 0.9745611724225798 0.7889768091723403 0.5991218110835916 0.4261682462842731 0.27597158572818525 0.15876795778527356 0.07853282481346215 0.028762411611505674 0.00643899484781985 0.0019353295545963484; -0.17162787364734508 -0.32504061238870297 -0.4418944302802649 -0.5077564646336483 -0.5280807965195271 -0.5291036394904762 -0.51863392601729 -0.49520130310868005 -0.4502317989897112 -0.357808470453922 -0.22115145268884734 -0.0649324619366268 0.10228056748165859 0.27180349128599257 0.40358641483525204 0.46274493113312704 0.43533919852588554 0.33639935477299876 0.21152913265569223 0.08720156757620941 -0.033815599547094136 -0.1396018969037333 -0.22010639799750695 -0.2834196125975725 -0.3289804930929089 -0.3499842466458509 -0.32722081813530757 -0.2409342838123159 -0.09455631619467963 0.098600745194362 0.3307782123123135 0.5806729784392889 0.8149280400018398 1.0020339409165233 1.117806830828511 1.1636392898838965 1.1419575203941823 1.063547446880518 0.9422666180363881 0.7954879111989791 0.6413134361596464 0.4950543817052595 0.3585797005306081 0.24441035513789325 0.15879096439847099 0.09491719248959114 0.049832423791826445 0.02251654897964307; -0.17144235276200545 -0.32159011232724 -0.4323027750892785 -0.49334196455415796 -0.5104330897308047 -0.5089148279291432 -0.49858799761104106 -0.47565575456853953 -0.4244460179240786 -0.3234347373566588 -0.1817755002388036 -0.030052389948324744 0.12187229308014481 0.26733211759246667 0.37865548422812556 0.42067002588071384 0.37577643204421474 0.25455777692000486 0.0991883093212766 -0.06264837174634451 -0.21767754009026208 -0.34783383504770016 -0.4437426157060762 -0.5120156942181363 -0.5555982041535772 -0.5685487038323193 -0.5393311083350565 -0.45126700850559703 -0.3036313984855635 -0.10674512518198609 0.12791441144821686 0.37637147205284033 0.6079874399906028 0.7944967588539397 0.920670408543436 0.9885384534614091 1.0017493090934975 0.9704182402060193 0.8976210837941287 0.796543865240759 0.6815649260957667 0.5622842134383649 0.4411541016373971 0.33162286883410114 0.23854633636937717 0.1601930983666611 0.09592790037700973 0.045410029638735874; -0.17796371262860675 -0.3308967452131123 -0.4420612225201741 -0.5024446216460151 -0.5168345508718909 -0.5095752659940094 -0.4919661048637957 -0.4621242345800658 -0.404440253687049 -0.30317584933210706 -0.16609525769006672 -0.019054911692572677 0.12508514434453788 0.25664196533159334 0.3567820902150345 0.38912378902994904 0.3308837520118913 0.18830736713404775 0.004408187726244198 -0.18976509054313803 -0.37514371493557075 -0.5256518923051561 -0.6314840628622211 -0.6974187963916854 -0.7298254633777318 -0.7286146308691841 -0.6898490141398743 -0.6034505977108396 -0.4602315104672904 -0.26712118843286176 -0.03922604340963674 0.20129512075895648 0.4240689877317207 0.6012866929448949 0.7302377592777904 0.8149253142560354 0.8584433313377162 0.8682839542757778 0.840361778566089 0.7798359508303673 0.6976629734453702 0.6021806997131552 0.49721430124808047 0.39442690697836297 0.2981585819661671 0.21134739885427423 0.13853901233107122 0.07030107781313813; -0.18787775210662075 -0.3437873106897462 -0.45557054478642917 -0.5168006922474843 -0.5307072695528188 -0.5188048725911953 -0.49067717872905037 -0.4489879772769825 -0.3850505704198454 -0.28852413210801237 -0.16136853999981376 -0.020874920635080636 0.11711507319657151 0.23734565202473432 0.32476573172392065 0.34731738413914454 0.2796959422378653 0.12091445142825853 -0.08406248276248014 -0.2973121046978298 -0.4994168036330804 -0.6571682124473879 -0.7626493369049351 -0.8191228980850432 -0.8350142906893568 -0.8206274431900051 -0.7760667544817291 -0.6937593975955454 -0.561242791161991 -0.382325346612147 -0.16859441194487765 0.058061274780583386 0.26453775065310087 0.4231036244659828 0.5437406097504426 0.6381120217886104 0.7058836243233879 0.7471511267868151 0.7547838278096531 0.7272517120918431 0.6735795857793672 0.6034843055815382 0.5178861103200699 0.42538300839745913 0.3345710206683739 0.24783629567860235 0.17085944398676636 0.08973061010354502; -0.19416759425753527 -0.3475906268710138 -0.45347904876854483 -0.5099249400994923 -0.5214016106517111 -0.5064932238519197 -0.4727863294772396 -0.4241266724544373 -0.3576683416430185 -0.26781190793837745 -0.15296684092532425 -0.025474250984406085 0.10226005657690992 0.21066578436367447 0.28074515547420476 0.2883270458218257 0.21336478803445927 0.05098489385221324 -0.16006758406202318 -0.37607658734269095 -0.5734739958374249 -0.721970541077579 -0.8197333052739839 -0.8676131627971732 -0.8711743028826188 -0.8432203798349461 -0.7899834015552444 -0.7071495889267897 -0.5869984773172755 -0.4313746818527919 -0.2448801584663961 -0.049208452372170905 0.1307365813660237 0.2723913171556822 0.38558128030906674 0.48509250021743555 0.5640518766312781 0.6144335254073661 0.6357335467195006 0.6287143799427933 0.5992379992044427 0.5555068269984701 0.4931851488867688 0.4173388064514817 0.3381442375918381 0.254925962453158 0.17436626107187003 0.09069755178839477; -0.18471994720708512 -0.3275306865346475 -0.42184624744164223 -0.4677096720943301 -0.4737826792438651 -0.4578699092448764 -0.42540063843145237 -0.377006052004447 -0.3146602349800339 -0.23263708807643027 -0.12502199404491415 -0.01023410472142762 0.09759132444349707 0.18249208420839247 0.22624544754350417 0.2154605104196168 0.1383044091688405 -0.009523601308527566 -0.20427257587047018 -0.4036056603698861 -0.576339355254649 -0.7038866789941525 -0.7872733920213216 -0.8258136156847189 -0.8227697279731921 -0.7857263822680931 -0.7273249540375494 -0.6483015431286283 -0.5450848224943442 -0.4144155705522019 -0.2585379187546567 -0.10430614027360945 0.03597818874098288 0.1537911012717699 0.256314302553991 0.3545745027129997 0.4330097782940381 0.47864838290438877 0.5002939956399389 0.5043765715047008 0.49388868807699815 0.47314879622917866 0.43439961539965577 0.3759576899448018 0.3068682511511082 0.22964421456917627 0.15359886849405074 0.0795443462394235; -0.15810869568898678 -0.2766048182445819 -0.34761090574960013 -0.3754445394199193 -0.3759414365365557 -0.3655621435226581 -0.34245311817842716 -0.300426804004361 -0.24736067262798034 -0.1767120075697076 -0.07979624567260205 0.018114313971113228 0.09885555724466133 0.15535627279841135 0.17376911010167903 0.14898445890983897 0.07537445706757175 -0.04814649036299547 -0.20859539001185098 -0.3720167495493981 -0.5067021559673511 -0.6084383432649592 -0.6740575846415773 -0.7012982860092982 -0.6949631633813599 -0.6600903910413116 -0.6068050820763315 -0.5374566538063328 -0.45209859384366763 -0.34736188423275616 -0.22899813152526177 -0.12032776518744222 -0.022276984513936074 0.0674680741177575 0.15357355731936287 0.23886482654311772 0.30633572513492296 0.3436881502239026 0.36192342885989914 0.3695269042891785 0.37158668506389275 0.3696770077579415 0.351396764564264 0.3113191827370197 0.25570486847372176 0.1905009557933043 0.1256104081876933 0.06415262439218725; -0.11796333500280587 -0.20189118067014153 -0.24574365915798171 -0.2566155400634407 -0.25310039591422695 -0.24902314871472725 -0.23826260624331638 -0.20825871737865229 -0.16838869796756792 -0.1124522175078447 -0.03529644116985528 0.03735053680341318 0.08933206033917106 0.1216604944437629 0.12405259572399108 0.09558314342170923 0.0368813810703415 -0.05211552923030938 -0.16388017934744276 -0.27822781203034647 -0.36948692431258817 -0.4402366245601259 -0.4857393452167453 -0.5065896619471074 -0.5049293651378995 -0.48043080791658765 -0.437037867596664 -0.3830139845062705 -0.32202411237315576 -0.2494465898760144 -0.17298221406993897 -0.10723801418899709 -0.047501121384519035 0.013892637968686923 0.078881844892288 0.14259369066277583 0.1937521026367416 0.22011371228640705 0.23069533039436577 0.2355101776155988 0.24425250296079468 0.2566474123048436 0.25350703339624314 0.22800028444999032 0.18576386536446537 0.1371348014417709 0.08918618860836655 0.0433405354792472; -0.06353714297316444 -0.1065954377580622 -0.1268672556132885 -0.1295376972891169 -0.12643333073396468 -0.12447208795231725 -0.12102917949177751 -0.10794473868330644 -0.08963582104829554 -0.05836997949673275 -0.012683738053461891 0.028673953044350574 0.054350385139534954 0.06805596962036525 0.06565074743035842 0.04772662625278495 0.016433468788618184 -0.02933360539876012 -0.08453070571145678 -0.14284019917386404 -0.19087331064684177 -0.22924064891964074 -0.2540159257011503 -0.2671280193748599 -0.2684506303228779 -0.2562963085176283 -0.23056445418023974 -0.20026684430941458 -0.16908781758451172 -0.1316102950490025 -0.0942470227023065 -0.06420376100708795 -0.03586824480234844 -0.002258753173592334 0.03548123543403118 0.06979326005414305 0.09607492164941439 0.10781339243539728 0.11105670515375571 0.11089999094900384 0.1158326881167849 0.12772605446983154 0.132375834844879 0.12188916566101478 0.09839569967424353 0.07156092093885712 0.0456743338734042 0.020715178472153137], hyperparams = 95.61099065206768))), instrument = (lgR = [0.10626307289246512, 0.10575683431320133, 0.014054821742954544, 0.14292751184568595, 0.16851566943925947, 0.0724602235996472, 0.050609813794813746, 0.11673445707299217, 0.08290683432736859, 0.008959831113004567, 0.08660219032292142, 0.05753034919807149, 0.049979571923210814, 0.10155176680586488, 0.04900388040988645, 0.031885352563417506, 0.08352788835425896, -0.03364176962822037, -0.07910323101212548, 0.0486818830322282, 0.14667021492026192, 0.0566667434192912, 0.005616976830315326, 0.00791028156506049, -0.23911469435809524, 0.06898283193511404, 0.07097497822846102, 0.11737383033269774, 0.015793711847238892, -0.20189835698130787, 0.0289465125112179, 0.026100434539993007, 0.08994045029038668, -0.34571377928546404, 0.09200590901320091, 0.037593241531148305, 0.012197494383936447, 0.07879201661410928, -0.2911957992336788, 0.053886232423270806, 0.027027060010336307, 0.1260554442901901, -0.1818975439302205, 0.12550725861233622, 0.0578794061951024, 0.042657512041888966, 0.09832762534952325, -0.17213437539897491, 0.16086836559986314, 0.08169768535778524, 0.053067322431913165, 0.10814988816444471, -0.5239388885080242, 0.036736513510754465, 0.18144437146366055, 0.06926271327056696, 0.03235346094688066, 0.13795949409215855, -0.41222232455491603, 0.01829258374566042, 0.1969878662643787, 0.08696105758296699, 0.11722848721545599, 0.13828773472866904, -0.00279966271423733, -0.21258594737445255, 0.24383456386625132, -0.09980404404108631, 0.08692712497602906, 0.06778702105758626, 0.14995767192455853, 0.1479653915054418, -0.2795813532503097, 0.24210054526958125, -0.08050232359626251, 0.08069185937850483, 0.03780137719426885, 0.2048315523680201, 0.2694629550357384, -0.1439862741484471, 0.10581245191799268, 0.07618656994073444, 0.05136223079027401, 0.24085650395409758, 0.293436450012164, -0.9369640714726569, 0.18328227300494812, 0.09289506698029712, 0.032106638860122036, 0.218810154250718, 0.3222915803185876, -0.14778658405950074, 0.15022651619812505, 0.11424427170117658, 0.005410291811113384, 0.17027206285133714, 0.3710188177228388, -0.07850238267728252, 0.20349897265299077, 0.08823558610784968, 0.17596788776721456, 0.415814114509498, -0.2776126436181621, 0.2194662057780434], lgrat = [0.029767474095904054, 0.017037432264143296, 0.03118732213178858, 0.022173717758580225, 0.007142243506982184, 0.026487726183853172, 0.004022883405763718, -0.005128981338493918, 0.010747861405718982, 0.023949200779492825, 0.038883190258295404, 0.003845717159306891, 0.005584227448048434, 0.03833596291289432, 0.05095683048039138, -0.021748530940129393, 0.004006168715505228, 0.031632771343129924, 0.012862815455029552, 0.03661695227734536, 0.006952455243249849, 0.03249349266785783, 0.02982818006665889, 0.01777054607941439, 0.045383632523113344, 0.01902905234670409, 0.01165774749332481, -0.035400538093439876, 0.05857288601225688, 0.058346042499995115, 0.029922304316219155, 0.01761818843835343, 0.036741311788161944, 0.05423155591427026, 0.034640443478392895, -0.00039202199396784607, -0.009260418163205948, 0.06022499597826218, 0.06184565714109403, 0.0018478710235691877, 0.06418283277736933, 0.03833229557470774, 0.05000454101831998, 0.05771580737595951, 0.019522126955001568, -0.032920321730680165, 0.05222306458835691, 0.06750169268066523, 0.020305480285922765, -0.008388969264729271, -0.051526992802386845, 0.045552618183447115, -0.12959863175491562, 0.04105729731301759, 0.057131018695166694, 0.0009170816003589728, -0.004942238472405021, 0.04808436170726426, -0.10680705353217901, 0.04401790179660034, 0.05848841051491816, 0.004463176025195966, -0.08654190125549371, 0.05485576880074659, -0.015522191279111234, 0.03642636388985744, 0.041592007585784165, -0.1208865296534574, -0.0015834580866482682, 0.0005064948366073756, 0.04437729285451117, 0.01817903354526935, 0.07719251209029442, 0.04474414987193959, -0.06395080222662303, 0.01947962741472165, 0.0018491812272676926, 0.02416643946301483, 0.030956728191961342, 0.03580957881431476, 0.023010825937558835, 0.00882130679276503, -0.051699949466402204, 0.011553544436685813, 0.027329884765266797, 0.055655714919845174, -0.015635407295915563, -0.0018602165705060823, 0.04861553553446623, 0.04090273827844228, 0.03399331645021929, 0.050627684120835924, 0.0217598903845136, -0.01808001116220038, 0.007064187157004517, 0.06292903866870544, 0.04858818028370254, 0.06334897669813126, 0.07636887984817188, 0.0008569987854543875, 0.05501327349336637, 0.0635154538249523, 0.029351545608354016, 0.05738567499520501], gpR = [0.0, 2.8866676201677945, 0.0, 0.6577825590294437, 2.786772488680075, 0.0, 0.5107923871845284, 2.684856997704864, 0.0, 0.38901276546433805, 2.430232616011512, 0.0, 0.40028471943251187, 2.2967725123262657, 0.0, 0.4389674373509847, 2.0512347741600503, 0.0, 0.36462347904712256, -0.8166755519567134, 1.925190369373911, 0.0, 0.33576064520813703, -1.046583458341787, -0.23020769932141094, 1.641531503156629, 0.0, 0.2600912373107768, -1.0595716639717903, -0.21636179444064643, 0.0, 0.2563887726397314, -1.2996748297731777, -0.17551517421294502, 1.2180835443334863, 0.0, 0.1580852977799139, -1.355207296506511, -0.2245718965605804, 0.0, 0.251686169048115, -1.5025275705000964, -0.29489302929160843, 0.7650289065897244, 0.0, 0.20143670271485772, -1.6060413273130376, -0.3393404242063894, 0.6841245011207041, 0.0, 0.24650412079818934, -1.8789259830878458, -0.5976535956681105, -0.47292022690386226, 0.34652262947157486, 0.0, 0.2072833831361153, -1.9208875310714308, -0.6358363513432762, -0.5676801651378091, 0.21739045998744916, 0.0, 0.21846620512803694, -2.1524903153220016, -0.654222049910978, -0.8081129219218322, -0.04061335317449514, -2.565262619309558, 0.0, 0.2537808329346274, -2.277901719559123, -0.6658204330650034, -0.9045129735059312, -0.13906768744031547, -2.642121580022367, 0.0, 0.28391925742786484, -2.7714677280189206, -0.6763281656919179, -1.9686816237492002, -1.841818403536428, 0.0, 0.3964735555360976, 2.942468545567808, -0.6225838827345961, 3.093414930989671, -1.0358626067955627, 0.0, 0.559112544889652, 2.3019753091508615, -0.54191938421831, 2.337410497153721, -0.06556428961539755, 0.0, 0.6511663155649906, 1.8666760904142405, -0.5278797650958496, 1.911387792133555, 0.28793491717738273, 0.0, 1.6940734362867222, -0.44250326225744596, 1.7896075407019059, 0.5319184654751132], gprat = [0.0, -0.0449978627332436, 0.0, -0.08710839801725895, -0.04816634027390605, 0.0, 0.04277505255720621, -0.03921362642727555, 0.0, 0.0785899918564609, -0.057091268008287524, 0.0, 0.06060379493992117, -0.029308566497501947, 0.0, -0.06639758262156607, -0.0649534616681581, 0.0, -0.04850823325856928, -0.04426808334110073, -0.04474747996773645, 0.0, 0.026648613181207224, 0.04044128572842556, 0.039745047447523, -0.05759615463661752, 0.0, -0.006056506297877342, -0.015382495508941977, 0.031956110097501794, 0.0, -0.05241329199433146, 0.03495050836112114, -0.01386415860367566, -0.054610204665273034, 0.0, 0.01831285564064864, 0.008745045377372139, 0.02902855747984275, 0.0, -0.05998126616367262, -0.04030390902621167, 0.030408414025631977, -0.034013646757162355, 0.0, 0.03510138525877957, -0.02329389108787172, 0.02649790464066652, -0.05835322620752729, 0.0, -0.04063430225439632, -0.01937422977848626, 0.025894265410495637, 0.016473699299130444, -0.04418198827101083, 0.0, -0.0098011477269518, -0.05161534365729925, 0.06323540592337529, 0.057471390862885406, -0.014872961501018035, 0.0, -0.007563230310705742, -0.08958631552767723, 0.024261765696616155, 0.06460545759798805, -0.026188391413776657, -0.6567201028141411, 0.0, 0.03625758416919917, -0.05267251507875873, 0.021549097054650843, 0.052167480570399286, -0.029160398036095294, -0.2463791892155021, 0.0, -0.0037335813555738804, -0.07245679074890465, 0.0646691162293946, -0.016632431214649083, 0.22432852468772277, 0.0, 0.03345114343602254, 0.05597008560510535, 0.03192645295684519, 0.01768969568646556, 0.1559697159626432, 0.0, 0.017418191241210246, 0.17755695930672336, -0.004321683798344717, 0.013503788579219269, -0.12386716947953955, 0.0, 0.02467108691559804, 0.1974510822026412, -0.014598333319443865, -0.011320863270613503, 0.0518065967885682, 0.0, 0.17641475146959762, -0.02145898564412142, -0.007199372545104221, -0.021665447702179465], dRx = [-0.0077905556866285286, -0.0518824287121129, 0.031417305438013444, 0.004666054193559431, 0.034470728211588614, -0.11106320490926393, -0.028996457179558014], dRy = [-0.037167166843008095, 0.03269091368838825, 0.08720632290318922, 0.005999125785092639, 0.04296727828703662, 0.014110693840211757, 0.01042022811315031], dLx = [0.010398328153989393, 0.021339318962775484, -0.028467376676701406, -0.05202541406787475, -0.004418800758232927, 0.14080129999885235, -0.03221118519436687], dLy = [-0.033635246015441135, 0.04066650608159168, 0.08851875052384085, 0.05233303616510995, 0.00708461143804143, 0.0051617253075159734, 0.06079165063598253])), retcode: MaxIters
u: [1.2347548199481002, -1.6264705335414065, -2.4863367706610155, -4.121857964317653, 0.009669872433533847, 0.019508037544448097, 0.024997487104563537, 0.02418265824947926, 0.02445380698885845, 0.03196708104196349, 0.04518734504222103, 0.06038257759255013, 0.07438913199825466, 0.08859910427898263, 0.11021897119410792, 0.14470305929368416, 0.188493991703568, 0.23251958207454962, 0.2671704519214826, 0.2917086680379222, 0.3139875442215226, 0.3413265978578299, 0.3719386929460026, 0.40064220019018654, 0.42348108798612333, 0.4355990389515334, 0.4314631107404159, 0.4104692509426065, 0.3747287049148993, 0.3271369610275711, 0.2771964203409248, 0.23506347448752019, 0.19725811145665426, 0.1561564814963515, 0.1202721190910978, 0.09888952351203754, 0.08992600724361255, 0.08849439743629078, 0.09545122681838755, 0.11528747098899482, 0.14295649674502256, 0.16313052759830626, 0.16568549919163902, 0.1523878011869856, 0.13184753609637406, 0.11246308482310456, 0.09581940852496225, 0.07877204389452654, 0.06165078794195338, 0.04803263811893253, 0.03670318757352459, 0.021389153559528015, 0.014920819558216454, 0.03272005709137984, 0.044627378351886335, 0.048372163435400226, 0.05704449407589749, 0.07627014846836433, 0.10004166935140585, 0.12451715829775924, 0.14992198641064916, 0.1821475001368317, 0.23047802140744392, 0.2992282417066869, 0.3811129518304913, 0.459926390291544, 0.5230439370962376, 0.5728383416727288, 0.6201587922516019, 0.674664479978299, 0.7344156887716662, 0.7930809576426364, 0.8411803121125747, 0.8663828961787143, 0.8568041069281808, 0.8112683558241852, 0.7407509946249083, 0.6554586516260932, 0.5668674080607459, 0.48792839407071437, 0.4183780132643433, 0.34802609706161264, 0.28268728386090897, 0.23583291477437507, 0.2093872702157339, 0.19896043363217672, 0.20377331025887852, 0.2265331741722257, 0.26244714360924265, 0.2939804411935926, 0.3034926697418261, 0.2877723568976438, 0.25740906508230854, 0.22609056896356422, 0.1986120793903175, 0.1699383233629358, 0.1375245183709741, 0.10607732389379017, 0.07666832233245195, 0.04236758589222878, 0.018459679345437772, 0.042036477829706625, 0.06102524490137064, 0.07534421587745337, 0.09740004217913178, 0.12772653177865972, 0.1594950168243049, 0.1917618864381115, 0.2309949122903341, 0.28714239692068944, 0.36627782905834494, 0.4673656021338426, 0.5768970210731466, 0.6747730632431826, 0.7561426952453147, 0.8288880349612363, 0.9014207034366453, 0.9807941294052149, 1.0665513871107426, 1.151985281730249, 1.2205401146299852, 1.2525005358122507, 1.2333459721636604, 1.162548349779428, 1.0611664349875214, 0.9517549857422779, 0.8435675975260053, 0.7439567140802027, 0.6569555937084297, 0.5741901570061966, 0.49104423032725547, 0.41965236313241544, 0.3689141882778893, 0.3387746101373162, 0.32796272798952075, 0.33479463244709806, 0.3572218789133172, 0.3865757375334059, 0.40555131915112574, 0.400790700290279, 0.3744925212868724, 0.34001734214555845, 0.3062316662043218, 0.2700712262359332, 0.22571167824165794, 0.17461098914659948, 0.12108043124059743, 0.06359765881939536, 0.026960139665608705, 0.0552855208727103, 0.08061489012133889, 0.10698661986506385, 0.13964568026279606, 0.176759755066127, 0.21685165430748635, 0.2618695899213295, 0.32159707508032503, 0.4052756979939112, 0.5147058206293827, 0.6419440849618082, 0.7650134128211111, 0.8677738522650198, 0.9577403822487965, 1.0449337158260428, 1.135217781170287, 1.2321813742520302, 1.3351181695123824, 1.4318710249189042, 1.5003133018117647, 1.5196987540114142, 1.483399619541228, 1.39720514224564, 1.2840599369593297, 1.1722771710717692, 1.0677500108244355, 0.9680516137007062, 0.878113786543729, 0.7956183494895462, 0.7097195883429426, 0.6263837292013426, 0.5571345631729728, 0.5034968020318792, 0.46629417048020794, 0.44548958861042304, 0.442078169187544, 0.45615304915921934, 0.47805163539066264, 0.4890416310932856, 0.4772558842568456, 0.44677548902627395, 0.40699874197028624, 0.3624498531595, 0.31031160008656516, 0.24539675034359026, 0.16922690263313706, 0.08667628166072801, 0.042106675590649054, 0.07534371627215491, 0.10585879162470373, 0.14274495464736658, 0.1832774439598038, 0.22649496596945884, 0.27643577537320324, 0.33831332353962396, 0.4214516942477333, 0.5309072847968823, 0.664760219773869, 0.8066127111992646, 0.9315537260661099, 1.0326572244486336, 1.1229125872199268, 1.2117376487064826, 1.3046654813095249, 1.4017613793840624, 1.498698744421514, 1.5762827861363489, 1.6131786779799604, 1.5981889337306845, 1.5417422340378613, 1.460265028658684, 1.369506746758169, 1.2878046368820395, 1.2141206652023662, 1.132976725217945, 1.0466223389198206, 0.9651485184853555, 0.8852881728696302, 0.8065263480044221, 0.735932499604688, 0.6713900677834909, 0.6129419034068588, 0.5660055129536434, 0.5358928827546796, 0.526366616778155, 0.5353387860332234, 0.5507892728002, 0.5538460395691756, 0.5335652594048893, 0.4919162030484918, 0.43875206544090545, 0.38000583056259185, 0.30837551521974094, 0.21744197013221264, 0.11212377134993566, 0.05844449715898177, 0.09841214782640888, 0.13577256429369336, 0.18373050191388265, 0.23452922786664845, 0.2866841467191603, 0.34714907480323864, 0.4243819652748049, 0.5254068996914941, 0.6532667504062907, 0.8017268789657866, 0.9486524558536119, 1.0711714360641873, 1.1655292273162372, 1.245694217296924, 1.3218900629736052, 1.3972476674326344, 1.4670147183713231, 1.5248153335595687, 1.552678262728085, 1.5350148971175228, 1.4787221339237189, 1.412870424315774, 1.360965540174568, 1.323263178143047, 1.2979165220568425, 1.275625828914225, 1.2275880353580682, 1.1465682211545218, 1.0560899946895024, 0.9740425273987275, 0.9042399009463795, 0.8480101494846891, 0.7971779033533857, 0.7437340877296837, 0.6915099494987127, 0.6472706938353544, 0.6154779799731054, 0.5968337088177245, 0.5940779209907758, 0.5983285212041499, 0.5897653107832936, 0.5576650195726706, 0.5045391663316197, 0.4385365658225981, 0.35940570793200477, 0.2592365727467563, 0.13664821564895088, 0.07107497797028985, 0.12108688086334532, 0.1702234410496633, 0.23244748366676032, 0.297173564196035, 0.3611380931769287, 0.4319022986141917, 0.5173197085817821, 0.6245587993195673, 0.7600191722980595, 0.9148140213258926, 1.064677785466104, 1.1816655057358052, 1.2603474187125654, 1.3179244505498147, 1.3669737442495458, 1.4065161198546563, 1.4255268442815574, 1.4233591692125784, 1.3939321203458508, 1.328845031844587, 1.2469845432204156, 1.1861248485693152, 1.1766374154122303, 1.202446591440553, 1.2380037283809642, 1.2673296509883947, 1.2568033970675014, 1.1829926396912558, 1.0725647618499878, 0.9680927628552122, 0.8944838687110501, 0.8557403919621316, 0.8382174123163325, 0.8197145030667271, 0.7915246596999785, 0.7550597094828821, 0.7150516934812531, 0.6716439120698898, 0.6364458795922523, 0.6226987894466676, 0.6170518624748664, 0.6001524443569708, 0.5605786971939918, 0.4936316289065891, 0.4032339469508385, 0.2916841178619679, 0.1556898936169409, 0.08050662394117415, 0.1429033018983677, 0.20709560157741114, 0.2848460747292978, 0.36476005557546753, 0.4421115499767559, 0.5201852841994251, 0.6036769557550525, 0.7059732707350208, 0.8396203527615886, 0.997058747086562, 1.1503804487914149, 1.2606509493309173, 1.3186472599446613, 1.3409836655491458, 1.350783262640979, 1.3465580488723574, 1.3099656238228345, 1.2479212110207156, 1.1697560995971938, 1.080904783446373, 0.9991458615772624, 0.9573379530574715, 0.9881049643203642, 1.0646577346416848, 1.1432687259975483, 1.2067964923100698, 1.2266150651778447, 1.1648260220585778, 1.0360345616351354, 0.8972845234727015, 0.8008692474366865, 0.7676438341269939, 0.7843907317424589, 0.8147717378888367, 0.8298416800391492, 0.8203746614708256, 0.7916991283677048, 0.7461305189777739, 0.689712646072475, 0.6499906495497116, 0.6331409000706281, 0.6213402699584784, 0.5978044395098377, 0.541656139972238, 0.4444364056730268, 0.317424115173032, 0.16781016482177227, 0.08840079093545618, 0.1616410047779082, 0.2376493785579922, 0.3280401363736639, 0.42309469528309734, 0.5124449297286238, 0.5904368827316347, 0.6635964921211764, 0.7553898497473444, 0.8828425473511682, 1.0408202385896563, 1.1982499402725149, 1.3078986745477998, 1.345355016257048, 1.3244583426126306, 1.2901902572264603, 1.24669681742622, 1.1683825900793217, 1.0611719283018652, 0.9489024282282664, 0.8544556343367847, 0.7893232125452639, 0.7757953817017907, 0.8349971191816309, 0.9332159008161114, 1.0208936625706757, 1.0903101495476915, 1.1229884154068206, 1.0780103420689136, 0.9520229833939033, 0.7962089834642387, 0.6733234867832045, 0.62619533612991, 0.6575782676113111, 0.7302334789750485, 0.7941212439031307, 0.8238081012552617, 0.8213471113302427, 0.7961501472874887, 0.7459415438171274, 0.691289327098748, 0.6569623460712143, 0.6357688307128684, 0.6146859981783132, 0.5710902749366777, 0.4776410674943349, 0.3382313387414951, 0.17462964854146354, 0.0932862601238344, 0.1706346825222552, 0.25154203132966707, 0.3523670800817791, 0.4611937875912528, 0.5560514822638526, 0.626086375644383, 0.6858450212985732, 0.7665422269125397, 0.8850762786852858, 1.0359231739809858, 1.1919455774312688, 1.3028903748774583, 1.3262929581022673, 1.2729197080474615, 1.2009031232386838, 1.130323180849733, 1.0363228138857634, 0.9133840733867578, 0.7949108190086805, 0.7126093572719947, 0.6729726426078293, 0.6842387204118596, 0.746536187536453, 0.8227989899538241, 0.8746069470897332, 0.9148176292639117, 0.9379029272058403, 0.9080527094739981, 0.8116027835793371, 0.676576127951695, 0.5492516989333247, 0.47968154058616047, 0.49769530477713464, 0.5890407319334646, 0.69528965327962, 0.7701439253099834, 0.8046086224046582, 0.8103682209869073, 0.7861693944104464, 0.7369498232290569, 0.6918045105701414, 0.6575240915397245, 0.6252791274926959, 0.5821745052956836, 0.4962102607971578, 0.3537879433387004, 0.17998408595901658, 0.08974914682621218, 0.16451544616636876, 0.24881737548140706, 0.3592235706036622, 0.47470481328915415, 0.5666998892252382, 0.6270412207566589, 0.6763620005349392, 0.74719014654319, 0.8490571964766758, 0.9750515468877141, 1.109936615311912, 1.2121417662282667, 1.2388314378770884, 1.184696415998992, 1.0961096626119906, 1.0112369492299529, 0.9218790417128208, 0.8145902622052861, 0.7194763113757432, 0.6655818974843746, 0.6593770494541181, 0.688984264268066, 0.7289821697814506, 0.7420066550386262, 0.7228207259831687, 0.7133870660661144, 0.7168716537016718, 0.6978536272512663, 0.6399129821375809, 0.5474213778510155, 0.4387752490081012, 0.3537917075757761, 0.3415835657941192, 0.4231744308819976, 0.5533744467975282, 0.6687292762662054, 0.745019593683658, 0.7878376718843266, 0.7985793891930841, 0.772070120954499, 0.7305761290068279, 0.6909409554948955, 0.6464699468734665, 0.5921834349897687, 0.5069899581215543, 0.36698734142996625, 0.18781357856034175, 0.07427620282656236, 0.14669333538392998, 0.23893369868492023, 0.35326433319971157, 0.4641428906269242, 0.5510492458415218, 0.6103725413263863, 0.659447841652912, 0.720273235242631, 0.791963444511716, 0.8728357299589025, 0.9603245770962007, 1.0360692374111895, 1.0742457468684088, 1.0482628052231826, 0.9750931779324664, 0.8862463324378659, 0.8001004670893231, 0.7181254444017081, 0.6550844712314131, 0.6313685089206496, 0.6546657227417142, 0.6959690601953575, 0.7046576890077247, 0.6438114792857466, 0.5520341656686122, 0.5027172575781371, 0.5017428697770022, 0.5053011376842839, 0.48884912352954607, 0.4342849688598255, 0.34374300056021045, 0.24825338418951018, 0.20292899030471775, 0.25531004734375623, 0.3871147452184592, 0.5301154753330539, 0.6436237488183196, 0.7246215053564856, 0.7765222560295961, 0.7875623608729426, 0.7670536314983791, 0.7356233174128751, 0.6872079326637398, 0.6183578704835629, 0.5243871907006429, 0.38399225209957333, 0.19996722573208792, 0.052160767524277764, 0.12614841285352507, 0.22761659427710224, 0.33700553373767833, 0.43803624238613814, 0.5286122803278722, 0.6048436945725125, 0.6648648905884954, 0.7111940760084476, 0.7447810379531821, 0.7726361607665452, 0.7975723775833187, 0.8270136786783767, 0.8585650617823744, 0.8629545367622323, 0.822430142540135, 0.7358128881849918, 0.6443992777152687, 0.5707434134488727, 0.5165689773511722, 0.49887154204109324, 0.5234062866023105, 0.5588577402897111, 0.540857700632209, 0.43368953500452456, 0.3025401068402222, 0.24026870983607163, 0.25809895440431463, 0.3045680535723756, 0.34765805382676307, 0.33717123975136004, 0.2581855570156385, 0.1494321618053071, 0.07299890793513204, 0.08861540332694778, 0.2041026512992954, 0.36181938052909496, 0.5079922321579264, 0.6247996108814278, 0.7184094248310487, 0.7785295438026072, 0.796662847795529, 0.7883563233627977, 0.7480861401836221, 0.6679630218905809, 0.5573727336038051, 0.40865924430231615, 0.2161842792469264, 0.03203654508603558, 0.1078814771253837, 0.21311787011462666, 0.31316628439912125, 0.4106070104866117, 0.5208958522295146, 0.6294459970794902, 0.7051298245074482, 0.7402369017504171, 0.7462182578782591, 0.7281895132248928, 0.6902204285345597, 0.6600124382147154, 0.6616961413041965, 0.6752068181911672, 0.6516949953419046, 0.5653619431355594, 0.46031544288937876, 0.364681187478629, 0.28469178098346976, 0.23793520411121047, 0.22868019567406161, 0.23027718936210426, 0.18656259722934493, 0.06710185293725927, -0.06255920112229389, -0.10779471481924306, -0.057579322785133016, 0.036523526160008236, 0.14684796696342567, 0.20512009238995396, 0.1534274070830749, 0.033023474674892216, -0.070613926632167, -0.08811622719574917, 0.00297657456533125, 0.16494448876177095, 0.3443939022745631, 0.5033991389491046, 0.6395955089260624, 0.7523398953201241, 0.8210815971732387, 0.8468418412520752, 0.8243301924309723, 0.7399540640794181, 0.6094056604077367, 0.44302012294642423, 0.23567926728068234, 0.017722121997056764, 0.09086687333176784, 0.1919469803877041, 0.2853387607414317, 0.39138466342473877, 0.5317322183808628, 0.6771007965185668, 0.7773247979767745, 0.8214027687596471, 0.8147296979032213, 0.7558151936039151, 0.6662782658986129, 0.5868422481189951, 0.5522051635605052, 0.5468868778156013, 0.5105065285585438, 0.41488781772863514, 0.28613847586664887, 0.156448882436347, 0.04117098642502651, -0.049466340983320714, -0.10907297973747083, -0.16129212705860158, -0.23742822306116557, -0.3598316128193602, -0.47385096665618287, -0.4858866816447156, -0.3983947126655338, -0.26089184667704884, -0.10393136114529031, 0.015068990676523775, 0.010720423668563146, -0.1061867167041582, -0.2321513721747886, -0.2760334324045199, -0.20894393613705312, -0.05149593400303027, 0.15980792748062994, 0.37255072553221447, 0.5602576149964124, 0.7272511954100183, 0.8503907215651999, 0.9141190904480709, 0.9117806178741041, 0.8272285841631368, 0.6771370175168445, 0.4871971362479059, 0.25871004744393955, 0.008810877602160021, 0.07359006427984054, 0.16580527856913685, 0.25848883779005377, 0.3776502057402823, 0.5436606745262598, 0.7256064719243224, 0.8645291989802137, 0.9314390848741337, 0.9110653904821115, 0.8120069034384063, 0.6899086596035356, 0.5887780193002277, 0.5311589385822761, 0.4953572567054578, 0.42966196942500345, 0.31441655840154137, 0.16492199846521655, 0.012349331100463537, -0.13685091656769724, -0.26880355380736837, -0.37413657915392023, -0.471528172546011, -0.5710242052212667, -0.6848626355752712, -0.7792632273737968, -0.7684532643728785, -0.6555775571965741, -0.4835053840268006, -0.2978032305121981, -0.15925772370407423, -0.1343734641091212, -0.2339175056348316, -0.37246772109515064, -0.4409637180654608, -0.39840268357103403, -0.25659590817651834, -0.02727022989778288, 0.24011477039154488, 0.48778966007021135, 0.7115696709228096, 0.8891423322498901, 0.9900242373942656, 1.0050681468793565, 0.920009813723281, 0.7510994404846966, 0.535917908139066, 0.283678552657061, 0.0038038807776270647, 0.058705623517072175, 0.14240011805021924, 0.23549651579030667, 0.36018059908585665, 0.5390001736082661, 0.7479937003311501, 0.9155198247168106, 0.9884926459320608, 0.9464889748256572, 0.8211180827112374, 0.6887830566322184, 0.594801665182491, 0.5388142400719008, 0.4784400940440425, 0.38367655100708387, 0.2534386240420075, 0.1045810196610295, -0.0613240653783257, -0.24338060955162205, -0.40102827503069516, -0.5312605740520321, -0.6426024872732577, -0.7383174983883951, -0.8230319395066855, -0.8847647855359123, -0.8683193523725946, -0.754809458146091, -0.5674846889319075, -0.35935917381551863, -0.21855981157056176, -0.20085051687363378, -0.29902211779582755, -0.44719074386205493, -0.5430738258464389, -0.5305313570920996, -0.41365808385240044, -0.18912893841600095, 0.1141822533820869, 0.4194629418870657, 0.6994357508358084, 0.9285831499612468, 1.0646864989814486, 1.0935844111693236, 1.006138374867347, 0.8200025162904362, 0.5810355283562593, 0.30628632048209015, 0.002695412848610399, 0.04965732786235787, 0.12519827156600025, 0.21551185328843303, 0.3363488246945005, 0.5086510492210474, 0.712294733168611, 0.8680634159773759, 0.914832350005863, 0.8485706033527252, 0.7204236613879051, 0.6043748684510344, 0.5363153908919814, 0.4930404685979719, 0.4257225682421371, 0.32611424701807273, 0.20622713312245775, 0.08092264469294166, -0.07720539261618788, -0.2582604173004908, -0.41502657351704686, -0.54374038011959, -0.6395670808106643, -0.7177942845678579, -0.7781737179462025, -0.8151115029639713, -0.7978911707422899, -0.6960341072070512, -0.51021310381046, -0.2947809941383673, -0.14981776204204597, -0.14069728604484666, -0.25693358160770113, -0.4344942469384225, -0.5720135554338455, -0.599843763202264, -0.5122577764369477, -0.30765377871186955, 0.004011015565738165, 0.3500688043025467, 0.6793807935901383, 0.953611553838054, 1.1214589520129257, 1.1632543673376938, 1.0733499382173337, 0.8724615512760762, 0.6137249209352486, 0.3217026159295082, 0.0051176531214253045, 0.04601661236868178, 0.11281859672303558, 0.1975453955715236, 0.3077104742354441, 0.45316399995992684, 0.6125318926072045, 0.7150472008476976, 0.7142535508474824, 0.6255082792885571, 0.5095672190093306, 0.42645799356586894, 0.38554645491704953, 0.35840101280735076, 0.3112672809024723, 0.23385365487632115, 0.1458752318615251, 0.06366092434002946, -0.04242594196399728, -0.17778406097518232, -0.3070747365490739, -0.39239162653642784, -0.44655364290129856, -0.5067708732997558, -0.5621588071038529, -0.601507699376023, -0.603159460556558, -0.5259416136027608, -0.35821409625064565, -0.15727569738048422, -0.023092242905976994, -0.017044164371869466, -0.13910955208835174, -0.34881759742909224, -0.5408040844691225, -0.61918909453946, -0.56389585892578, -0.38641014198372964, -0.08976086411744222, 0.2732894271277259, 0.6381249677345991, 0.9477432453797751, 1.141996661052654, 1.1974952720979064, 1.1097066157058106, 0.8998301104266025, 0.6272309360239277, 0.32583068883785155, 0.009864258136073598, 0.047329457697082106, 0.1042672652837005, 0.17920128433930535, 0.2766217584429075, 0.3882183128765813, 0.48158965475646165, 0.5067161454057887, 0.45154661416420505, 0.34684716726807946, 0.24590901004362217, 0.18860573648765902, 0.16989154796694433, 0.1688206476015298, 0.1539914744075841, 0.10502547724085973, 0.053286297694781166, 0.01675972279823475, -0.023220465235417435, -0.08548471246314604, -0.13239021576800888, -0.129520889852249, -0.12666342644102105, -0.15758234884308536, -0.21469007251359162, -0.26747654720112984, -0.30383233268519144, -0.27824453916714836, -0.16242751067554514, -0.010001569650319614, 0.0893682183653663, 0.08093956518445941, -0.039422899638582996, -0.257801153894645, -0.48639847107369844, -0.6118397090702972, -0.5917763618023105, -0.44515137717804265, -0.1781168148979936, 0.18017298739889961, 0.5638426633995823, 0.8969175565040418, 1.1113715080635889, 1.182700227582827, 1.1051473073036133, 0.8962179665234973, 0.6188741793443123, 0.31776861320198646, 0.015485761603117067, 0.05178508328979406, 0.09850024583897053, 0.16104361938082798, 0.24640620587731182, 0.32817363450399617, 0.3605449563740054, 0.3135244609832903, 0.20873449291558135, 0.08889129053388785, -0.009871465160554656, -0.06150857361024464, -0.0609149303390576, -0.026432559373990343, -0.004707693094572123, -0.02805169315723451, -0.06112155780603629, -0.07655931981038433, -0.08033491216895358, -0.05972237430912291, 0.02078170684322038, 0.13141823044643813, 0.20761751181800717, 0.2296229586103556, 0.18544543102735722, 0.10319699629969029, 0.029831233605643836, 0.0005664327245649111, 0.042286543506245805, 0.1144483405187541, 0.14956202878128255, 0.11678153954205216, -0.0019729055285417872, -0.21516432220933093, -0.4539704329841484, -0.6101279828395244, -0.6268696154440977, -0.5125503634220049, -0.275210959639919, 0.06734967534974637, 0.45325552223023235, 0.7954666167686555, 1.0222805400918182, 1.1114284200504354, 1.0540158608703094, 0.858734129406765, 0.5882643065973063, 0.29814658077302314, 0.01956611985201094, 0.057747197143021956, 0.09758546203598044, 0.14676760624245427, 0.2198462715526435, 0.281423600528376, 0.2753352351993065, 0.18224941441253364, 0.04065807337562393, -0.09756075994317215, -0.20353270586058006, -0.26018984846195314, -0.24903352844669882, -0.1818938586483025, -0.12671566997840314, -0.13501179430814989, -0.16409147044247102, -0.1790569333207595, -0.17636552821467166, -0.09734189183257756, 0.08703437722719295, 0.29745845593070047, 0.4298319799022162, 0.4604967645112566, 0.42563230469952923, 0.3534866987210615, 0.2676308713387741, 0.20958103696023503, 0.2007463446680917, 0.204611620535297, 0.17611205010828807, 0.10996996381542717, -0.017522321288671643, -0.22592174449160385, -0.4639592413130828, -0.6411682058813738, -0.6941839039977148, -0.6093804552425633, -0.39145216697143137, -0.06316752716551904, 0.3130914797172729, 0.6495823058663318, 0.8791635331177632, 0.9852536085926914, 0.9549967120596814, 0.7853661761129621, 0.534789145174402, 0.26738684069934804, 0.02309451436943328, 0.06624251196589928, 0.10411109774345126, 0.14225851889035354, 0.20407851589601253, 0.25307456018480556, 0.22893368931920746, 0.11747763936042697, -0.04156170682961073, -0.19199679514501353, -0.30292223086865766, -0.3643222080914175, -0.34811936899495527, -0.2629805316318032, -0.19636655629611027, -0.19777676170836034, -0.22135641863435176, -0.2324275066169298, -0.21181677945854355, -0.10029889325598998, 0.10032479390017508, 0.28555391060581115, 0.3366763567732435, 0.2753441593442713, 0.21372516053023155, 0.20785417825232066, 0.2220849857955113, 0.23512962265846762, 0.257543323526698, 0.25474517658794377, 0.20068195364498118, 0.10616020187947056, -0.0490699470468232, -0.273666298540112, -0.517414966069502, -0.7144056476704633, -0.8024021467157861, -0.7414413604783114, -0.5299324074432784, -0.20881309973272585, 0.15286889166465673, 0.474678689444649, 0.698822230096487, 0.8165849726044038, 0.813911661587986, 0.6768503873564923, 0.4572267698345032, 0.22463265852046424, 0.027602823399259683, 0.0776032031230205, 0.11903886023055765, 0.15225220888529273, 0.20525848060957486, 0.24624312266792947, 0.21675030641667178, 0.10449213367890137, -0.05575264652701392, -0.2093907758481449, -0.3189855135484336, -0.37235665713937566, -0.344279526628691, -0.25373025464626847, -0.18921211358492682, -0.18851807643111299, -0.20436481614494215, -0.1829486942463635, -0.117587869720505, 0.0056267303137015195, 0.13696979894726458, 0.1748209838641491, 0.0622719824585736, -0.10959529123393669, -0.21329634145576404, -0.19336259712674192, -0.07815408886252381, 0.08525236948764088, 0.23511065103499207, 0.2939144300104857, 0.2460462688329686, 0.12015856623383643, -0.08118289966565757, -0.34389126674207104, -0.6069306195086586, -0.8246149650176103, -0.9427246228908654, -0.9007259025194273, -0.6890084545835403, -0.3679379221469301, -0.01769631832070166, 0.28876915668515357, 0.5025786863576139, 0.6232373549523267, 0.6412012484251545, 0.5371955459237607, 0.3563081063230377, 0.16980776135941494, 0.03438934934247563, 0.09019320399581135, 0.1367381608014189, 0.1727588010069439, 0.22522778178931152, 0.26329218403162713, 0.23336391906363116, 0.12702697079803824, -0.025962498139765283, -0.1738619634649607, -0.27204880740019916, -0.30576868324775397, -0.26118905852518143, -0.16640358276857337, -0.10724284532298373, -0.11502598381085237, -0.1135652771889411, -0.03772782851865548, 0.08673306630514298, 0.2133497185276384, 0.20092990782130035, 0.04456226030771264, -0.18335946307928624, -0.42073705250498084, -0.5691211056774678, -0.5695563594360871, -0.3960153828992352, -0.1064538047885049, 0.18741340966660436, 0.35084408661728184, 0.31227557273219264, 0.1375307615439766, -0.12335017277937797, -0.4335749324257867, -0.7219093125543328, -0.9579449629837214, -1.0985149565281322, -1.071562229444613, -0.86096343256696, -0.537803344493958, -0.19197292182957026, 0.10368457661770254, 0.3041158631106312, 0.4185298265534419, 0.4478981058580176, 0.3739238692046107, 0.2367542328448442, 0.10558947206257219, 0.04344314879150229, 0.10207354563260569, 0.15201174324665045, 0.19610388365971787, 0.2559889876311579, 0.29648741205466933, 0.2688389715412829, 0.17095352510910183, 0.031086186319237926, -0.10205388509773514, -0.18334125083942565, -0.19909360895278047, -0.1450183727369811, -0.054463357612005846, -0.0035872296832806065, -0.010179921517070046, 0.008903369066989087, 0.11792461651296855, 0.30290174464694547, 0.4392977841874687, 0.2759730716280475, -0.027966694387715946, -0.30863806616386597, -0.5552053797083818, -0.7251593963377093, -0.7545989805774882, -0.5795235117034099, -0.24158800648140114, 0.1476741788156298, 0.418234516383471, 0.37416237616986087, 0.12466409293745133, -0.19721265802852828, -0.5402785982125228, -0.8460851016354141, -1.098331628795106, -1.2559401861148738, -1.2404861899971267, -1.034690653483877, -0.7118966086601922, -0.3669308754291087, -0.07896031988797517, 0.10681411852248444, 0.2100758527576327, 0.24486268400763306, 0.19862564078294948, 0.10879529420124008, 0.03829785598194966, 0.055309775630677176, 0.11400994554650044, 0.16211150744389297, 0.21287899739476507, 0.28460545919753677, 0.33199709121722865, 0.30503799759951117, 0.21288739627954975, 0.0897502506343819, -0.019497472706573163, -0.07518047633010992, -0.07220652076872495, -0.018009985801817497, 0.05543297120463355, 0.08866817145611036, 0.07051824705725752, 0.08169788375436275, 0.19359292448299237, 0.3909229242477861, 0.5125074374971823, 0.30412588679852515, -0.013333196788211694, -0.27973387975046093, -0.5018549885021681, -0.6745890256766796, -0.7390208770263915, -0.609735459220264, -0.2880147765087644, 0.12392164462853081, 0.4505398863811736, 0.38037005477894403, 0.06063797375538669, -0.30212138818482187, -0.6577302813005331, -0.9713129633192502, -1.2374344255676148, -1.405607816667393, -1.3952287558759702, -1.196506734341522, -0.8806863165369928, -0.5404844952878449, -0.26102211023298755, -0.0884770033985462, 0.005136016503522755, 0.04433981504206675, 0.025034839932919706, -0.015429748088788905, -0.02472050363917149, 0.06800545825573842, 0.1256693871035783, 0.16800440245173945, 0.2176649024529932, 0.29433315633256996, 0.34870196032956546, 0.3229474191767966, 0.23151844815687836, 0.12336863473770934, 0.04594050862191357, 0.02725665128806694, 0.05398999648289018, 0.10569054131057862, 0.1560988259037578, 0.15793591716522398, 0.10342319431217521, 0.07018242525526237, 0.14163401262894432, 0.30744332551523446, 0.41803541815103246, 0.2796199686635688, 0.043927239203260984, -0.16165684804960878, -0.33475440323944067, -0.4848333886232475, -0.5749477436741611, -0.5083115785750504, -0.24754557285274711, 0.11287177478721215, 0.41771360346726416, 0.3131233705546488, -0.04261836957465567, -0.42293710175304494, -0.7788933683888267, -1.0917768925666236, -1.3650821083672577, -1.5338501692665367, -1.521294291852249, -1.3318469087865132, -1.0319383765264334, -0.7053510688847882, -0.43795646068153327, -0.2756426880959753, -0.18714494858415567, -0.14227451646754158, -0.13492086456194385, -0.12639652950424543, -0.07854732598176636, 0.07711722965277833, 0.13307492479443414, 0.16947093294065352, 0.21105577774341777, 0.2787481678474022, 0.3308830670889835, 0.30649140080173415, 0.21646248102014748, 0.11977247383835417, 0.07179687342309497, 0.09708031080946986, 0.16629208715213856, 0.23087027382434436, 0.2573466444350531, 0.2158348380118194, 0.1068760114627346, 0.002708211178777295, -0.010735627412366541, 0.08924726295106664, 0.21030796073299599, 0.17464180280397887, 0.060275304893078856, -0.04243477359052591, -0.14339111135269678, -0.2574930042447348, -0.3535648856354654, -0.3341925340267156, -0.14888060528479516, 0.12623287942756897, 0.3476529738745527, 0.20202839973339454, -0.1581268808044207, -0.5341802693728865, -0.8796273367451505, -1.189875973258036, -1.4647867539968087, -1.6215360237875485, -1.601448294429418, -1.4267365584689164, -1.152699303263774, -0.8488102717518626, -0.5980622770563845, -0.44505755228725, -0.35852586697091093, -0.3063813883530082, -0.2733048674637701, -0.21967391643254008, -0.12219982894492352, 0.07897853387760671, 0.13083463412322724, 0.16364154913614581, 0.19652229819411435, 0.2441719441504801, 0.2798585364196071, 0.25289751912130554, 0.16909227742747684, 0.08564544812398604, 0.06092190624919628, 0.11999044227198731, 0.23468139189851725, 0.34014717056287364, 0.3709849693317195, 0.28447629895515075, 0.09624042720725422, -0.09772579301194556, -0.20506494724349397, -0.20441575495140035, -0.12008067202261509, -0.06874166877786736, -0.04576141238442013, -0.010938954773629057, -0.016452382164232435, -0.0711417320807644, -0.13026532072879904, -0.12386298649511324, -0.0058828246508007475, 0.1752054874599993, 0.277234350522106, 0.09080318576702184, -0.2521532529466611, -0.6072211660823172, -0.9353743830425568, -1.2408465032062022, -1.5089799419434085, -1.6482897966731413, -1.625217795917034, -1.4728773250095244, -1.2311810168361006, -0.9566489064663569, -0.7288718776993165, -0.5885564977838629, -0.504083769415194, -0.44393149849245833, -0.38711499186400283, -0.2950773020580003, -0.15720714681115225, 0.07408976744815697, 0.1185886292019104, 0.14787593031772142, 0.1739553367274632, 0.2008772801980749, 0.21429520485921238, 0.17976668215015254, 0.1040269150961814, 0.035658617696115315, 0.026514646485741814, 0.10127192669180418, 0.24061507765967552, 0.384900278188699, 0.44361012892290624, 0.34118236725806705, 0.09273571521639895, -0.19305222826734905, -0.3893109115050755, -0.4629987820137237, -0.4284450281219363, -0.33596284716291125, -0.213431920972842, -0.07509732145355076, 0.012062286151739127, 0.04310163230509302, 0.05190213282112263, 0.07414985309320841, 0.14196316666320344, 0.22832272576942791, 0.21703432005974704, 0.012247779644863854, -0.29811061071734024, -0.6205549839512264, -0.9259300512356529, -1.2244186817953662, -1.4823095851582584, -1.6063992262259361, -1.5883624399636556, -1.4645088526636254, -1.258163016317187, -1.017392000350619, -0.8192893292449673, -0.6975902577668267, -0.618117485996884, -0.5508738892020082, -0.4736137380458954, -0.35173471780432136, -0.18388111540833688, 0.06728883177096194, 0.1022977543976067, 0.12552956267599066, 0.14486775746554661, 0.15379908816826268, 0.14780937046448756, 0.1076018364864222, 0.04105370335030072, -0.012167124143667185, -0.012153134373842097, 0.05980402379112984, 0.18769148713968076, 0.3283337235029229, 0.3999480098247272, 0.30167395464741176, 0.041165273990049475, -0.2752391826431848, -0.5263408119839306, -0.6466859907562398, -0.645949223055617, -0.5473636294212112, -0.37711899044438, -0.1850004772441921, -0.034448247844080904, 0.06586108750133714, 0.13407179771276112, 0.17894362586293128, 0.21447630926232994, 0.23372557570901994, 0.17391676058882452, -0.006971935076434676, -0.27285766293902797, -0.5611338235537862, -0.8512273259140579, -1.1442819969221174, -1.385976938892993, -1.4980583036036248, -1.4947592254292403, -1.402304609616504, -1.2293276378553668, -1.0234474458894618, -0.8598082847828737, -0.7618075672461591, -0.6910999540690895, -0.6195856469134977, -0.5268512416030846, -0.38493589764722863, -0.1992777151820159, 0.06301209343437991, 0.09021022061817618, 0.10445633253730013, 0.11500047163105534, 0.10968699469367381, 0.08844944750634468, 0.0431062519464983, -0.015980572696115653, -0.05641689181036185, -0.052749244717357084, 0.005958364786465692, 0.10177477554151848, 0.1971841882019621, 0.24362782918792036, 0.15981445965719152, -0.07730564294606102, -0.37135182071243883, -0.6201339467059706, -0.7598182028490574, -0.7772697423139125, -0.6838005547691632, -0.4956807473439725, -0.27110623550228563, -0.08204863881043088, 0.05072784292127877, 0.13264774202974652, 0.17067029324802174, 0.19200818628665467, 0.20098777854993768, 0.16078287885720746, 0.02842398296346332, -0.18799279443975353, -0.44823925219458527, -0.7290491164950251, -1.0110823386817358, -1.2333043313970085, -1.3419939820887414, -1.359089558352888, -1.292716332702037, -1.1467494410767023, -0.97516588579503, -0.8483142333471219, -0.7764041628789716, -0.7170249561737414, -0.6445779948178174, -0.5426338493585797, -0.3913494900284323, -0.20109481648478156, 0.05801787515491271, 0.08378834979867603, 0.0933110220089208, 0.09443129429205231, 0.07727002294849203, 0.046114215341263476, -0.0043985259518319955, -0.06447029625412612, -0.09988988916885705, -0.09633516447537095, -0.05822473494011395, -0.004336057784240208, 0.03487139801905939, 0.03420927723605459, -0.04019013082383, -0.22673350652852087, -0.4752858636518785, -0.6880681344831541, -0.811918294675508, -0.8265000463209479, -0.7318817968579925, -0.5409665757638006, -0.30425502821147166, -0.10513605662289682, 0.022837521801065498, 0.07775305397966029, 0.0965291994680526, 0.127646328417911, 0.16089681445689888, 0.1598446865536319, 0.08049429052054902, -0.08441830154361044, -0.3171724557374683, -0.5830392176229506, -0.8483839554658216, -1.0541061199946726, -1.1653213661321145, -1.198308392683296, -1.1458643341983992, -1.0194951906382885, -0.8821818157296762, -0.7936714332874477, -0.7477643691135464, -0.6998351370244912, -0.6293377935928721, -0.5248110106246668, -0.3738731851570593, -0.19053755920563295, 0.04762120276041702, 0.07777328613128787, 0.091872749933538, 0.0892217832510354, 0.06562896046751, 0.031112325222489415, -0.020465301539345976, -0.0883748827189631, -0.13441724434693755, -0.1384797151178568, -0.11571530369964309, -0.09775364648888035, -0.10967183608678205, -0.15852596474449895, -0.24305355343997737, -0.38500872718260537, -0.5813904561247718, -0.7576901721813109, -0.8514189213087437, -0.8471537689987457, -0.7440618869510712, -0.5577483119348817, -0.33160645598692207, -0.14718411552756375, -0.03891916581914154, -0.005506836698474424, 0.01452186957008244, 0.06419599004470133, 0.11891613983202634, 0.14642747590092992, 0.11101129322481008, -0.008200381746532322, -0.20751787965749485, -0.4480791192077801, -0.6909438162338482, -0.8780628015754055, -0.9867682398637962, -1.0223213217819511, -0.9720505217688271, -0.8641976959322976, -0.7653677384886187, -0.7153000238719861, -0.6910849678296963, -0.6520823580906281, -0.585499351348644, -0.48367736620519164, -0.3404191725626443, -0.17214373196572919, 0.03430656066649609, 0.07052715237944077, 0.09581171145543729, 0.0965948609431803, 0.07298830912147113, 0.042535623301630326, 0.0006242514172476636, -0.06823039392967087, -0.13383847060530232, -0.1646041294036816, -0.16365155700953174, -0.16405740594118717, -0.20240539913805655, -0.28203614439290386, -0.3810003476469304, -0.49723657157111545, -0.646783135283087, -0.7947224787461217, -0.8738056197230648, -0.8590283615693659, -0.7573829564370622, -0.5866130919932551, -0.3862053356671234, -0.22411255562700438, -0.12914982518112628, -0.08988509599312469, -0.05607788133066209, 0.001588032149162094, 0.061223663848804656, 0.10120411073495492, 0.09305357306720441, 0.009946282264544946, -0.14991589194912866, -0.354783242481359, -0.5617929123370945, -0.7174417853827008, -0.8102458247499634, -0.8358564684426746, -0.787244182139819, -0.7070385148563414, -0.6508392500727639, -0.6328165320232536, -0.6217382482545227, -0.5888813984125648, -0.5282924021198785, -0.4328899872455767, -0.30155416097896653, -0.1518662157275521, 0.027121189727067025, 0.06669252992899871, 0.10226990887155026, 0.11416839115810086, 0.09802055139706904, 0.07178571199027114, 0.042968717937984374, -0.012254565014829813, -0.08565750575470152, -0.1472049129680567, -0.18575639313974476, -0.21129279244704374, -0.25900090342706034, -0.34625176842528005, -0.44850670221678, -0.5428230918470749, -0.6452891594129744, -0.7570692145445603, -0.8299283325270473, -0.82424216737606, -0.7448840314254092, -0.6131493584429826, -0.4550357254249232, -0.3190208154519229, -0.2305426753876268, -0.17632856374458028, -0.13291656948737698, -0.07819555014462337, -0.024625857422562295, 0.01846103091319256, 0.02370251141307284, -0.03329729828198836, -0.15393361922166543, -0.311549040454071, -0.46499592609099966, -0.5757790423168282, -0.6405674748085227, -0.6509060734032358, -0.6123757661004117, -0.568755386580746, -0.5514217893476936, -0.5536628233265632, -0.5485189353526959, -0.5224658758413088, -0.4707153677955603, -0.3835959550495889, -0.2652997081106497, -0.13378470596346928, 0.03204667181397102, 0.07315395003673102, 0.1133861165976096, 0.1391864575946864, 0.13948234061790582, 0.11857455925374326, 0.09385178556105304, 0.05250441885878235, -0.01601341195696275, -0.09404846637140815, -0.16860168481882923, -0.2305055906198197, -0.29370266064135603, -0.38026638489670284, -0.4785210476032538, -0.5550372245561106, -0.6131863484021298, -0.6758323672806902, -0.7275554938671396, -0.7314051232245227, -0.6795888824518603, -0.595282439764166, -0.4921817650830091, -0.39296231679952365, -0.3193641673078315, -0.2652878542219, -0.22373316572486224, -0.17905320808797584, -0.13347304631325235, -0.09236694419601404, -0.08379388869781232, -0.12320739222815318, -0.2052200815892979, -0.30701792620870766, -0.3976209919962317, -0.4558187314490653, -0.48501156423922126, -0.481710887856299, -0.46210119939175576, -0.45533628909924834, -0.4658920804239157, -0.47820427275562966, -0.4775732674687593, -0.46037366929053863, -0.4171960468035901, -0.3379950433772875, -0.2330646355961174, -0.11841715005478706, 0.04800054142452452, 0.09198043671988071, 0.1328952740811913, 0.16962806625805868, 0.18796084995431497, 0.17563657828465376, 0.14758156651278473, 0.10921825229443886, 0.04558475743351256, -0.03801395911124591, -0.131122896890519, -0.22058539407145086, -0.3020621232870327, -0.3889150850149965, -0.4803694429284182, -0.5482693405678633, -0.5789176158474544, -0.5969484701296901, -0.6141647913881143, -0.6128408270572917, -0.5776963171711763, -0.5250759147094531, -0.46982053267871093, -0.4148656284135613, -0.37324146654561746, -0.3407363466856985, -0.31312192807949296, -0.28205839937929056, -0.24436272767150788, -0.2119040101922445, -0.20623597175356848, -0.23022230447139336, -0.2727112048899744, -0.31667609020551274, -0.34280327324503373, -0.35005007591778725, -0.3493763213371006, -0.34295872932830695, -0.3467420938083211, -0.36706594003925574, -0.3921761439719414, -0.4101796015687439, -0.415881044022505, -0.4052736125584738, -0.3657725439154054, -0.2937048031807688, -0.20306283673719036, -0.10434495329987166, 0.06754519996435634, 0.1196621177891887, 0.16068946892289837, 0.20114337282533637, 0.23258706159589226, 0.2313652509607349, 0.19732665550721118, 0.14858461275497958, 0.08140265451865902, -0.005154947988764092, -0.10132417899416524, -0.19842632447436387, -0.2857660145524826, -0.3669632178779744, -0.445947169485083, -0.5072851169813227, -0.5289953785599641, -0.5221483283293142, -0.5103720157429663, -0.49604342642702176, -0.46883842565999906, -0.43331860981124354, -0.4072600661275743, -0.3897455756846538, -0.3834200284140197, -0.38047787229380714, -0.3723752896887727, -0.35693377487576977, -0.3327288540802008, -0.3155612380240546, -0.31150202055959114, -0.3156290023025542, -0.317368438400493, -0.30719122217741374, -0.283005915053402, -0.26055321056767, -0.24805024565370853, -0.2485567426848431, -0.26924263101981394, -0.3001045914182698, -0.3301536885860678, -0.35412085914738034, -0.36584279180337503, -0.35580395124587383, -0.31565692168762294, -0.25138372568728934, -0.175160388692444, -0.09079076203148785, 0.0802661468291351, 0.14713539311163826, 0.1937061101257411, 0.2291381663957731, 0.2615262780569377, 0.27271672619755283, 0.24109790460365738, 0.17656676325780313, 0.09357866654084347, -0.0024952054438791265, -0.0991114283239937, -0.1896183103071754, -0.26769188609253447, -0.3309822533040426, -0.3866780526002566, -0.43238953959619647, -0.4494551783941997, -0.43367040874703555, -0.40573778877071776, -0.3798306828507382, -0.3562441941879838, -0.3339577829484888, -0.32442756538221185, -0.3312852394742056, -0.3500575286650255, -0.37176564301706255, -0.38448561731840375, -0.38782759572633413, -0.38343266660153613, -0.3788955291355534, -0.36829558387239447, -0.34844525238380064, -0.3151132915468543, -0.2713393885158024, -0.2286361734807629, -0.20068750996060863, -0.1880569945534147, -0.19460999370257295, -0.21822497192598786, -0.24766786469548546, -0.2797675485239879, -0.3086060324526192, -0.3218071201560566, -0.30817188263851436, -0.2681145339957077, -0.21310965857076447, -0.14942168265250733, -0.07722210203706774, 0.08173658052723246, 0.161809090359741, 0.22094081144923775, 0.25239941812310324, 0.2721454233843267, 0.28325807920207124, 0.2624470568175226, 0.1968986625812336, 0.10095287989917537, -0.0077614204568761174, -0.11208597920834318, -0.19947386152017454, -0.2661798714882926, -0.30963253057285084, -0.3371631524100962, -0.35805639266228556, -0.3637615948540149, -0.34347962677086025, -0.3066278437029625, -0.2704830701626185, -0.2439655843770651, -0.23030471434961466, -0.2316861481013299, -0.2532368681078258, -0.2875290600886292, -0.32621021402475203, -0.35679909278715677, -0.3772476087819357, -0.38820919429623624, -0.38642987209924073, -0.36660111780832666, -0.3296079177836891, -0.28057812390515674, -0.2308195648938458, -0.19090731466648284, -0.16554656019038788, -0.15511199580750815, -0.16252693753414638, -0.18134658534014514, -0.20732705018378905, -0.23938940749699011, -0.26696290302111875, -0.27620717818851265, -0.2598451996045388, -0.22381733217133187, -0.17801798071537997, -0.12404465555184861, -0.06298413779380868, 0.07544895200909353, 0.15714343878290615, 0.22686729211785123, 0.2640713257933576, 0.27204648112691, 0.2656749567166776, 0.24356291912047617, 0.1893589437301602, 0.10055643483262319, -0.006375599769404204, -0.11309996204266465, -0.20317149712227528, -0.26605369372228616, -0.29959505162702643, -0.3088983515894715, -0.30730090277077093, -0.2983464758502828, -0.27386112299316545, -0.23290452557837923, -0.18731950195053884, -0.15171749297668544, -0.13612689696317498, -0.1416233393040254, -0.16889270061166275, -0.2112427302371802, -0.25830348531903224, -0.2990588714431716, -0.3294094609944495, -0.3467375479723215, -0.3456667395248347, -0.32476570415967726, -0.2861438688212502, -0.23948939976671632, -0.19517736031028504, -0.16089919430903843, -0.13949414775689534, -0.13315518785016092, -0.14021418658436835, -0.1544802923875765, -0.17652136565108578, -0.20295149158489023, -0.22269365851010867, -0.22640084789921858, -0.21112733308595502, -0.1816004074715329, -0.14338105407884102, -0.09797408753819814, -0.04868559450354336, 0.06663430962703841, 0.13779377775608845, 0.20632896869875694, 0.25248902184647465, 0.2608103909767937, 0.23778800326973304, 0.19957808853223188, 0.14767449229830248, 0.07463671904977574, -0.01466149390907479, -0.10701239925504592, -0.1901524827029803, -0.24954012241482482, -0.27873162467584434, -0.28176759408994756, -0.2679025485567587, -0.2477229664233785, -0.22057991077099967, -0.18152175331867634, -0.13250569799350667, -0.08864725430935629, -0.06395635109402505, -0.06464712666169009, -0.08813534730380582, -0.12950337094269349, -0.17600905160171604, -0.2194184052276276, -0.2538328654949425, -0.2751586246278943, -0.279767726032352, -0.2661863034065579, -0.23589310367305324, -0.19663143073988315, -0.15879768313841083, -0.1312904452634945, -0.11691285454672883, -0.11607442673443162, -0.12255899613923099, -0.13212459419609107, -0.1470812563933452, -0.16369546763969137, -0.17440784090108202, -0.1747611544514702, -0.16269843638247375, -0.13906150697121641, -0.10751302248976512, -0.07176178136950462, -0.03523155278709786, 0.056264467924183256, 0.11209611845683715, 0.16788923430573496, 0.21421254358559488, 0.2293073616874414, 0.20485214171784347, 0.1559374060825837, 0.09687285584946717, 0.030325514046068026, -0.04161218719829548, -0.11200663074568086, -0.17499138742705542, -0.2217945221124993, -0.24314305144829715, -0.24190781728251595, -0.22386378674269375, -0.19831626585426884, -0.17127200220680094, -0.13881665699019186, -0.09647152044324533, -0.05295135550983056, -0.022468134082387656, -0.013932559366634156, -0.027592202315752736, -0.05913109260565733, -0.09783173889016702, -0.13733191728535676, -0.1717372296851073, -0.19635483603103177, -0.20697768834056426, -0.20150146723065976, -0.18010551466959623, -0.14920399294818737, -0.12107073209176158, -0.10310004188028564, -0.0964809841854241, -0.09878529347385553, -0.1026347621856123, -0.10650136984112403, -0.11365350127047229, -0.12189708205192556, -0.1267186431608215, -0.12554401851136376, -0.11561257575342981, -0.09626612416069803, -0.07165417450221742, -0.04647581146877571, -0.022627802205362382, 0.04307013541501104, 0.08472326883906887, 0.12393990016225438, 0.1591355160461773, 0.17694232460484557, 0.1618230133926164, 0.11734679527680937, 0.05729803463375655, -0.0074618831073773595, -0.06844632593970339, -0.12015191153978377, -0.1609492060857495, -0.189206752139151, -0.19905599198510668, -0.19179665373445523, -0.1734341248582288, -0.14929080283616392, -0.12634024800627555, -0.10313661069672718, -0.07431309291428591, -0.04097074682806713, -0.013008646804978157, 0.0018632268746148432, -0.000989159710556737, -0.0185624335844561, -0.04467150433961042, -0.07416998335782281, -0.10323731131398009, -0.12613797875367588, -0.13809267121515317, -0.13714677673852146, -0.12291530199179765, -0.10222160036070557, -0.08521466156174147, -0.0758480831504055, -0.07400797202237774, -0.07595805204900166, -0.07660169025319602, -0.0764925742502472, -0.0788826116413193, -0.08266670989734719, -0.08437718666553415, -0.08183131262978056, -0.07302903759718807, -0.05790147902509133, -0.0403878952874608, -0.024668028101654287, -0.011652322518546898, 0.02856977077822412, 0.057140086810307675, 0.08145052910967432, 0.10189675499517456, 0.11588005345256135, 0.11006418235749868, 0.0787002308167719, 0.030320001665906558, -0.023661037164410915, -0.07184956969754935, -0.10777886293636457, -0.1320180622096896, -0.14527604834573007, -0.14609354276700764, -0.1355981724586756, -0.11981603001958663, -0.10243873600461649, -0.0870469781514126, -0.07374086515375723, -0.05846622847597075, -0.03909825602294659, -0.019227789943642302, -0.004427930590490619, -0.000139927666974357, -0.006162310391710617, -0.01922083876293993, -0.03633045132194383, -0.05554441735704373, -0.07160129490071496, -0.08084067842131328, -0.08131905674887478, -0.07319322154726182, -0.06163766405582918, -0.05256283177271594, -0.04832293996612038, -0.048123857470057305, -0.04889856747369087, -0.04825274993586118, -0.04699277073888232, -0.047498537210346053, -0.04909026193237683, -0.048804365673671114, -0.04548926140337014, -0.03892189094344056, -0.029161528211904594, -0.018394156665948437, -0.009784323341992762, -0.004181124080521547, 0.01442738454830883, 0.029146024976907055, 0.0407648338465294, 0.049485097866418665, 0.05664152516132353, 0.05529971570695815, 0.03922907753097552, 0.012370462471911915, -0.018223473327773437, -0.04537166335875851, -0.06438469297144446, -0.07621637647964834, -0.08121008704837394, -0.07933188176374405, -0.07181056309062184, -0.06236527919435642, -0.05366862736625732, -0.046435856540010645, -0.04103421728442343, -0.035177943432453104, -0.0272558537174774, -0.01722945866151418, -0.008210537971790563, -0.0033938076389472, -0.003986956388811139, -0.008228548667426993, -0.01524503645941163, -0.024027593971717987, -0.031784254876100884, -0.03658206957107486, -0.03702692011743425, -0.033574370187371326, -0.028382270810361435, -0.02422428751464428, -0.022591654365844527, -0.022672557328875825, -0.023016202197362775, -0.022618311039238687, -0.02172745085607103, -0.021643496649767138, -0.02201073551683082, -0.021065642536737823, -0.01869719436987413, -0.015473742750543215, -0.011138152965082668, -0.006249311595115351, -0.002593651868318819, -0.0008404319552015482, 5.48932672671307, -0.011146959214752743, -0.019580389239323405, -0.02534334018913949, -0.029199928492562123, -0.030646655075437967, -0.028552177486820516, -0.02287854812508955, -0.015601394794005774, -0.007237482338470418, 0.004220394752925089, 0.0194041431866812, 0.03683882804624249, 0.055437250290535055, 0.07594732925182254, 0.09673826868288427, 0.11346737901438829, 0.12258580523533824, 0.12262909042259745, 0.11460902823792495, 0.09883222029455144, 0.07487287399411843, 0.042034954474540746, 0.0009321580530079255, -0.04627089960525422, -0.09588062986019438, -0.1421626908662211, -0.18116822176827593, -0.21413752578768488, -0.24375572716585436, -0.2670740698164003, -0.2804703974463435, -0.2855443625424056, -0.28487414068117156, -0.27737033764152413, -0.2609119595364697, -0.23695571346075042, -0.20848521311998028, -0.17470240359925768, -0.13266760085251184, -0.08390740734939012, -0.03728225034732216, -0.0022218270641620667, 0.020125828957692975, 0.0342745402335437, 0.0423357431663007, 0.04279316522685652, 0.03440274493986661, 0.018910360891745307, -0.02224372417238441, -0.040696302803167106, -0.05472542773695846, -0.06392029511377088, -0.06651917561024974, -0.06170962087474997, -0.051060956162852326, -0.03696138670118959, -0.01891486124568611, 0.005974576089875365, 0.0383240041731689, 0.0747242445779937, 0.11242719511927002, 0.1513521970950934, 0.1882470495063571, 0.2160064933976656, 0.22836006539940343, 0.2235502783194421, 0.20471648394184883, 0.17496041335334558, 0.134978314531396, 0.08250072233345795, 0.014617437497985095, -0.06840033971116695, -0.16190254349170385, -0.25646578081114096, -0.341858699535092, -0.4144046914409669, -0.4767446805734122, -0.5268883507566704, -0.5596292398394164, -0.5749246439050063, -0.5745156987643362, -0.5578112593916145, -0.524195513588691, -0.4754286844006179, -0.41448795315845344, -0.3419251412407335, -0.2564094553769442, -0.1623187904780649, -0.07407062917102042, -0.006391108187505944, 0.03792610619659483, 0.06511433048300794, 0.07942313748885081, 0.07972463286886539, 0.06426308272890742, 0.03556548141087839, -0.032932410050960606, -0.06374164379942167, -0.0897160648142444, -0.1066485304218118, -0.11092009749851098, -0.1028278248072361, -0.08594990863521951, -0.0623588641507671, -0.03100375541147207, 0.01015308958572737, 0.06087737296916229, 0.11675810259848378, 0.17371021317860036, 0.228804691292921, 0.27609369834323017, 0.3059787375312219, 0.31080165569727963, 0.2911396193715464, 0.25539126971448456, 0.2135627429901255, 0.16943271199001336, 0.11719157053706565, 0.044228912345915916, -0.05684441106676422, -0.18302842806480848, -0.3231034462420857, -0.4601094823308518, -0.5804696790547408, -0.6818158189210879, -0.7649407414175212, -0.825081114343979, -0.8573502461405687, -0.8603468918326084, -0.8353852161789175, -0.7851466302541537, -0.7105482639845297, -0.6131418945916876, -0.4980089968261391, -0.37079533340228865, -0.23903062026488292, -0.11698776021912953, -0.019654364204794772, 0.04715601115994449, 0.08703633630678874, 0.10593708393058271, 0.10603650753631418, 0.08615540876064619, 0.048217696069238494, -0.04420179674680327, -0.08885145801244965, -0.12818370437226506, -0.15339641056765602, -0.15914109676657545, -0.14651331664012865, -0.12041236029171605, -0.08347317943918776, -0.036121283936525604, 0.02173856219558471, 0.08928264752676361, 0.16301417167015905, 0.23857579160034398, 0.3100482381242311, 0.3668334921519802, 0.3946296790312238, 0.384061312302224, 0.33876394819595546, 0.2753390499608335, 0.21621989149352883, 0.17285115716970487, 0.13555494613370864, 0.07775545125545269, -0.021156811570618526, -0.16313074949518278, -0.336400669542361, -0.5199363289782841, -0.690427636694346, -0.8363500154846343, -0.9580702745164799, -1.0520965934441346, -1.1086949212642916, -1.122298331145499, -1.0945939265171305, -1.0303711191349316, -0.9308019168631889, -0.7981686062610239, -0.6435561682488988, -0.4815975722051695, -0.32210259954131115, -0.17443404104904672, -0.05088128625828569, 0.039079793024253365, 0.09355089835535994, 0.11800426150581195, 0.11906533919938983, 0.09805808879197116, 0.05576710040712931, -0.05817703730273952, -0.1163411431612845, -0.16613361874870497, -0.19612943891868143, -0.2002546813729435, -0.18059943894454483, -0.14310206947417842, -0.09196682399705072, -0.03023258912946572, 0.04140213024466605, 0.12320380128739902, 0.21314479146717227, 0.30763712276662825, 0.39913600240274855, 0.4709531363235882, 0.5019912821075688, 0.47742271347421433, 0.39945950376109013, 0.2933263030490497, 0.1994642392299266, 0.14563128455192087, 0.12281476186458293, 0.09197845821264677, 0.01606164976257466, -0.1180540182748575, -0.30229527455052047, -0.5154600136410198, -0.7281844660692183, -0.918962223237099, -1.0825191299088743, -1.2152103251944888, -1.3046319229932102, -1.3402087723205613, -1.320164790548331, -1.2487769200241206, -1.1300047718792416, -0.9701482926996735, -0.7849917879138056, -0.5960017141745235, -0.41628304520059045, -0.2502907685795749, -0.10607653458145773, 0.005405015165439976, 0.07793517038458136, 0.11318392442027496, 0.11865529749769765, 0.09948327727777843, 0.05744761566510843, -0.07462222373864422, -0.14365352215374236, -0.1977095752368311, -0.22647774402048662, -0.22481262372406305, -0.19594834443905362, -0.14672710417239554, -0.08388968281286467, -0.012127879439754406, 0.07005487857862094, 0.16466591390095733, 0.2706030798660573, 0.3858951390430322, 0.5016292801436008, 0.5958272905167473, 0.6405275211485622, 0.6100344007939721, 0.49922412853729603, 0.3395990642944442, 0.19016819654407094, 0.10131054079474706, 0.07501638574553694, 0.0694922611270789, 0.03228477409190512, -0.06715313389114846, -0.23328232323899917, -0.45082816632912687, -0.6892517880442112, -0.9190522680272226, -1.1265398076972628, -1.3031598512798708, -1.433532358722582, -1.502026647376168, -1.502090259816537, -1.4356806630471692, -1.3097300416588775, -1.1353255816024823, -0.930742900070408, -0.7199994194633877, -0.5220791274435257, -0.34212485487166644, -0.18341106168760693, -0.054859875101828576, 0.036838808306084166, 0.0895099490960394, 0.1057393476454266, 0.09167717110966601, 0.05339373788764372, -0.08956588050483892, -0.16409999871971023, -0.2150070349826704, -0.23678706401097335, -0.22678802650842309, -0.1885388608689893, -0.1298705084060786, -0.06033917430883085, 0.017029835374001982, 0.10710376801251528, 0.2122674405678443, 0.3329690392340284, 0.4687601788788705, 0.608565563731525, 0.7283757872773228, 0.7944814315865328, 0.7683715457970011, 0.6354261595469749, 0.4272638603733608, 0.2139308208546418, 0.06732131842057947, 0.011633922147582382, 0.015831150167290996, 0.019760608584960433, -0.02554586742346972, -0.1452499740275453, -0.3403270072267076, -0.5856019013311924, -0.8456070860311912, -1.097693794540061, -1.3238238393127182, -1.5013802772366807, -1.6088495531088733, -1.6366939107739662, -1.5860014514357335, -1.4657615831935171, -1.2903867767265513, -1.0793190862748268, -0.8548002790905757, -0.6392532880955205, -0.4448859260463863, -0.2740227336128669, -0.13251147108857683, -0.025413293277678602, 0.04586053056347777, 0.07889513585056071, 0.07543861451548306, 0.04477601735306027, -0.09656713197402159, -0.1690541842908952, -0.21033540725955874, -0.2212414907200524, -0.20241501409281232, -0.15752624352110553, -0.09581568542359302, -0.026414475614067512, 0.05251780391837896, 0.1469588877387006, 0.2588788064006999, 0.39000725892664273, 0.5389765985677386, 0.6936067952712096, 0.8329654164059344, 0.920656153994197, 0.9089722233753907, 0.7723428697891294, 0.5353066643505249, 0.26899051538710195, 0.059525952129930025, -0.04397927390978604, -0.0518471262143185, -0.018676421190673417, -0.006392578532131472, -0.06326931614682822, -0.2157494481120685, -0.4513521841704699, -0.7309963614521429, -1.0219399088418213, -1.296591894469159, -1.522659277088986, -1.6706025096400767, -1.7276817950245775, -1.696689626947617, -1.5888837246538396, -1.4214412138652712, -1.216051749674932, -0.9922197350720078, -0.766939798425673, -0.5576865245906235, -0.37336298678226265, -0.21973224026897284, -0.10155001749728053, -0.016772495712953868, 0.03425163606670411, 0.04837592181452647, 0.03192153430521393, -0.08964050054538682, -0.15113664365444873, -0.17853236434579528, -0.17719519397359446, -0.1513926490780393, -0.10688987911363954, -0.052460261915197925, 0.009467031523092024, 0.08656194365157852, 0.18432874081762263, 0.3020603833750549, 0.43686920957836983, 0.5837599383471028, 0.7338135334217688, 0.8747324211817146, 0.9736131932768044, 0.9803753514266711, 0.8578988666514568, 0.6193321604627827, 0.32726103951085106, 0.07086984440877522, -0.08247857679159962, -0.11921730304149056, -0.07713183033385312, -0.021795999583712863, -0.020892111605707975, -0.12599483454074262, -0.34077799105218676, -0.6267428016151488, -0.9407946573867524, -1.2486193258151927, -1.5120245488631616, -1.694472600323335, -1.7781964176285436, -1.768068165762782, -1.6766696117025732, -1.5213014798933295, -1.326781059853354, -1.1154197082252704, -0.8957099618727268, -0.6794834432482991, -0.4834718587802586, -0.317849675431167, -0.18886236750974955, -0.09431599320416076, -0.02821121293233395, 0.0077091223238505615, 0.013210997024313026, -0.06647920993643772, -0.10812784552610771, -0.11950847684373486, -0.10709046900576528, -0.07968024744628818, -0.04631401077843879, -0.010077487925180493, 0.03867090956260635, 0.11447199038644797, 0.22067931256818774, 0.3461830016245661, 0.47775549897526565, 0.6066956316702241, 0.728320794289491, 0.8419224712091861, 0.9293475576851463, 0.9496212817844033, 0.8579989690234144, 0.650126237631801, 0.3691660198713247, 0.095603013035234, -0.09483340544781696, -0.1679318707037756, -0.14037785944545278, -0.07133251320512424, -0.03794326706907345, -0.10747467065796834, -0.2991517972172987, -0.5801287712770363, -0.8996997170793244, -1.2175827978097018, -1.4940549337900908, -1.691130076246772, -1.7895272370965998, -1.7973653375668417, -1.7280856966696918, -1.5923692366832618, -1.411315708761488, -1.2138054249703736, -1.0100322179945462, -0.8012049479343591, -0.602504863222498, -0.4283647064524993, -0.2872614282420252, -0.18141908560426984, -0.10223129370102513, -0.044849911541342116, -0.012582070099655802, -0.030903500975087723, -0.04685438378768869, -0.041762877663740504, -0.02088202983993695, 0.0012785361761692043, 0.013921130549367547, 0.02519138450795426, 0.06076286183493881, 0.1419917980020793, 0.26377721602773874, 0.3996101475466227, 0.5268998785566652, 0.6302375004688047, 0.7028805753217112, 0.7583781663904015, 0.8089037868376191, 0.8341395878899407, 0.7858269784897356, 0.6350962233607161, 0.39939843024392824, 0.14162557194871458, -0.06712695774446514, -0.17960430542041592, -0.18984954193798836, -0.14167937372732403, -0.1093072868594583, -0.1638628862739794, -0.33785592396291797, -0.609230066954401, -0.9244016825996973, -1.2364654990748651, -1.5040012469848858, -1.6900035618150722, -1.7799001808688575, -1.7903753548772168, -1.7405681392138308, -1.6327196426566586, -1.47388042382776, -1.291052586847476, -1.1042427080955401, -0.9124948412398523, -0.7222781554436662, -0.5461547699888646, -0.39347369016356154, -0.27274290086332165, -0.1795284005171129, -0.10317044811958366, -0.04369013102953317, 0.008634594781964251, 0.019897170483865013, 0.04099866700161796, 0.06762737225735237, 0.0789485435422344, 0.06558866127268993, 0.05247542704719492, 0.08348171557447873, 0.1814848447486993, 0.32726328946454003, 0.4804758992562472, 0.6079597454930944, 0.6841917564695889, 0.6991420912654529, 0.6820292119236095, 0.6799936168194417, 0.6947742646745542, 0.6790341766640332, 0.5868397400801246, 0.413390139965456, 0.1951496024983853, -0.015384141994293835, -0.16524766369291202, -0.22641274158404884, -0.22430242593422306, -0.2214359660603892, -0.28245957726076715, -0.4476094995767192, -0.7080323218358975, -1.0132872851106574, -1.3109959302291065, -1.5594015199851794, -1.7211436785887935, -1.7843863565826996, -1.7752939161767092, -1.7267011737883315, -1.6411729414806098, -1.51056699270883, -1.3486624928695377, -1.1795743669198429, -1.0072389630004817, -0.8318730145128637, -0.6607008472255502, -0.5000940354339218, -0.36237946924109504, -0.2524446438679438, -0.15925009535609883, -0.07552976580746727, 0.04470380755372279, 0.08192347169746561, 0.11815217577281303, 0.14679999295715793, 0.14206212771091833, 0.1024045175048037, 0.07432543456424684, 0.11590366322595627, 0.2437467519100383, 0.42386460667187925, 0.6022875233021109, 0.7327361003154234, 0.7841150402379775, 0.748910900055009, 0.666939631409952, 0.6045062011945131, 0.5811905503037921, 0.5608982143926224, 0.4992234064184191, 0.37697844505961836, 0.20254588391396283, 0.005248099438938114, -0.1657975853281558, -0.2702650815475389, -0.31749876992251597, -0.3548635400663878, -0.43527027883542274, -0.6011649930097273, -0.8518795231055604, -1.1437740144711803, -1.4211601344622538, -1.645549898719988, -1.7833345954738884, -1.8206546493504303, -1.7824278679888181, -1.714259840859762, -1.6320950872382667, -1.5222692605532617, -1.3828414262399393, -1.2332896150149033, -1.0806421314777848, -0.9214139124395985, -0.7597511668115822, -0.5978206106996148, -0.44521732478505877, -0.3161481855444181, -0.20654677816462333, -0.10297785645765488, 0.07426915453804073, 0.13480139800274937, 0.1833511998069362, 0.2077761261365067, 0.18346712742658292, 0.12491675096686367, 0.09805616826401861, 0.16453802378431634, 0.3298693873904363, 0.5477175251737593, 0.7527116423062636, 0.8893305820789843, 0.9245402673858554, 0.8556978473360577, 0.7252757916186671, 0.6005167501414481, 0.5161194559527645, 0.4558382205466979, 0.38548732331165264, 0.27959765195253866, 0.13168722719449463, -0.044808077392876254, -0.21198722455905897, -0.3339892017177487, -0.4111832920750129, -0.4791493955097633, -0.5766261062401979, -0.745156817604426, -0.9886704318999834, -1.2684726239655069, -1.5305395128450463, -1.734917889708798, -1.8527683822116332, -1.8742483545173982, -1.8166344831084698, -1.7232586659590043, -1.6273547497027994, -1.5237541892290227, -1.3999018825740692, -1.2670096790487932, -1.1324938217998004, -0.9885076528383149, -0.837321434965807, -0.6799266117361689, -0.5185694379926898, -0.3708729956887509, -0.2439843854018021, -0.12388451525059187, 0.09697502013970953, 0.17647580085235123, 0.23173728134877325, 0.24585576759177072, 0.20449826131851376, 0.14094187905696146, 0.1303747061549246, 0.22773561407641874, 0.427140556235619, 0.6757651276252058, 0.9051418288044134, 1.0545788927438349, 1.0869058643592475, 1.0036327062682324, 0.8437414309699292, 0.6660533558049065, 0.5149942076201708, 0.39328034604720824, 0.27899747881010084, 0.15177434997684425, 0.005070085771905678, -0.15184003221751585, -0.2956455537159592, -0.4067237143647782, -0.4877857853333998, -0.5682226479783987, -0.6732320464020618, -0.8356340306624483, -1.0690872219471241, -1.3375471624178175, -1.5943808885251294, -1.7976213874063367, -1.9105657069824655, -1.9274767461355526, -1.8666627005461454, -1.757973510609561, -1.641610999842782, -1.53139965765438, -1.4136308563644613, -1.2905198136628058, -1.169303744913209, -1.037921879488398, -0.8953853531150242, -0.744851912189185, -0.581281872000125, -0.4187114223716268, -0.274422735260995, -0.13941542705457935, 0.11326439918774084, 0.20590096147242884, 0.26195229210817395, 0.2639383424161689, 0.2130494088543977, 0.15717619506515354, 0.1705720202848358, 0.2961272874691885, 0.5193544535775764, 0.7892018376592891, 1.0396799388558875, 1.2049988423196576, 1.2445831428978695, 1.162745889291559, 0.9911775319955517, 0.7756059338398223, 0.5609547499366486, 0.368278007547676, 0.19762629944687224, 0.03759501877899943, -0.11895778279017112, -0.2598930190021662, -0.37665319099170885, -0.46534013088237486, -0.5346237208752099, -0.6092260447236867, -0.7087740378407492, -0.8549509187765867, -1.0715512603455897, -1.3275999087445485, -1.5803015278752728, -1.7984323460262426, -1.9368084750032506, -1.9743405957023534, -1.928902052204367, -1.8200360875591348, -1.6842111222638836, -1.5565547272316143, -1.4339927393687886, -1.3117445483957961, -1.1967491969998445, -1.0744223258593426, -0.9379245381219559, -0.7937498194435767, -0.6330043988091414, -0.46092966045590283, -0.3003622981934025, -0.1512193892450151, 0.12280382314232365, 0.22217877154523483, 0.27511251580254026, 0.26767066871792516, 0.2166075553558589, 0.17741231759053855, 0.21579690638998447, 0.3615497431087838, 0.5983506444853686, 0.8823665812506059, 1.146390450370986, 1.3191091755174056, 1.3628281110932978, 1.2861181307919012, 1.1140175598714903, 0.8781858314675463, 0.6194782143112955, 0.3760578249798955, 0.16928217938866266, -0.014311249662626938, -0.18569953765088185, -0.32749054815558654, -0.4383976652192796, -0.518332458152496, -0.5720708821321493, -0.6221453484600149, -0.6902534703876936, -0.7997662591290475, -0.9829245200577575, -1.2230599359000967, -1.4769512663570745, -1.7196215066155978, -1.9087333470782835, -2.0002464752604716, -1.9957828777574065, -1.9057853675779985, -1.7585565574775728, -1.6067123948627764, -1.467555821409805, -1.33525694875154, -1.2171346436123078, -1.0994994771283984, -0.9675689444343762, -0.8284993940150129, -0.6736961384721927, -0.4980900713926954, -0.3238788377440233, -0.16103531208246447, 0.1246767830813448, 0.2239505685584734, 0.2716101790237127, 0.2604401102312521, 0.21898388244872116, 0.20172997915331292, 0.2623200946920888, 0.4221137417919537, 0.6659930572114005, 0.95354478107191, 1.2151995032711187, 1.3793239274913607, 1.4152015596687413, 1.3371112210900034, 1.1692626229409873, 0.9370444549896808, 0.6757849552031592, 0.42264232877377456, 0.2016930079284878, -0.0016995586884757745, -0.1947500254029055, -0.3613161086911932, -0.5005215242360227, -0.5965541138549895, -0.6426839224637001, -0.6550573503535156, -0.6606882613224871, -0.6960002217684346, -0.8104225050513874, -1.0153260117713583, -1.2776665089344905, -1.5655893906648517, -1.8262173536733814, -1.9918498108518368, -2.0453018788132, -1.9918406538096722, -1.8495280404765149, -1.6775242538260569, -1.5155513091007053, -1.364056454432617, -1.232606993273711, -1.113156636579777, -0.9844880028115027, -0.8502071359826884, -0.7034137290794995, -0.5301629346604003, -0.34672077118490546, -0.17097742309602312, 0.11924319616109902, 0.2126210826010754, 0.2545422375712381, 0.24540446557677806, 0.21946787599537967, 0.22431292892020502, 0.30344875294993895, 0.4732279533450978, 0.7158018473415971, 0.9916471048246475, 1.2351939716527638, 1.377779509203855, 1.393226833226169, 1.3030992431768622, 1.1406511304555358, 0.9351018353775361, 0.7133927147535714, 0.4932940017524866, 0.2854645573300009, 0.0792611111730933, -0.13421238012704703, -0.34790812787899184, -0.5408750978722403, -0.6742366231039199, -0.7315336217233259, -0.7123882376114823, -0.6416731857058074, -0.5791295298959775, -0.5968329394835402, -0.7413722318655974, -1.0006576720141445, -1.3402748889736145, -1.6883806062315716, -1.9432264256694785, -2.0626759495667755, -2.053931978726512, -1.9318930317230258, -1.7518699005802134, -1.5695816089159742, -1.3965299280119823, -1.245737044207599, -1.117755727679925, -0.9897659208263542, -0.8601684984912885, -0.7230074875323843, -0.5571825637849402, -0.3696669002005277, -0.18239578939170684, 0.10862295023762766, 0.1932179070431523, 0.23043477232565446, 0.2262070479915887, 0.21624261594203453, 0.23969621937764066, 0.33047983224134664, 0.5000567301874407, 0.7293143637149989, 0.982033199664331, 1.1974250407222593, 1.3093916475895204, 1.2975606862043594, 1.1944646728269401, 1.046036725571188, 0.8879685699462337, 0.7383237146275567, 0.5918322717268434, 0.4359302169034248, 0.2497208631969652, 0.01339736106802939, -0.2603478254715454, -0.517863823505028, -0.7070625964372544, -0.7912499970438966, -0.7561806973552717, -0.6245688708231169, -0.47117728908998735, -0.39198090425493354, -0.4682663579530238, -0.71176579771736, -1.0861215351504059, -1.5062471344206463, -1.8474774787605408, -2.0386825523022893, -2.0809410244179207, -1.9898156532113125, -1.8143879782349874, -1.619360737236446, -1.428492058449719, -1.2588143364657876, -1.1192248140492382, -0.9895700653063869, -0.8640341837146179, -0.7365550830840027, -0.5804551282432708, -0.39255906661471823, -0.19520772360498273, 0.09501869237143003, 0.17009898987351696, 0.20412082808034004, 0.20542051245498627, 0.2081238671779669, 0.24290222772351394, 0.3354129089895635, 0.4933463660599656, 0.6973495914436815, 0.9159304685757633, 1.0956954832255634, 1.1771477048508765, 1.148668465991159, 1.0515991962753635, 0.9381304806314664, 0.8437258217262024, 0.7785446112956985, 0.7234050380284489, 0.6404802865183723, 0.48991857384328524, 0.2447148505107482, -0.08281975786451067, -0.4209284883619048, -0.6852278309463052, -0.8061043191834864, -0.7559478464052797, -0.5914653178264602, -0.38861895872941554, -0.2410382405094287, -0.2580974176941288, -0.4753525384045197, -0.8606383309098373, -1.3232593465502998, -1.7260039044085185, -1.9773915325805675, -2.069197390089906, -2.0156464633727893, -1.8565813337797723, -1.6589994166220536, -1.458009614263654, -1.274606446409767, -1.124344992632843, -0.9921958540784799, -0.8696261741568807, -0.7496755091401764, -0.6019783017704394, -0.41460224352389174, -0.20825667380098595, 0.07976214873332721, 0.1454185344439677, 0.17692839361218218, 0.18149959523049614, 0.1904959375897938, 0.2283715341831161, 0.31431651088576396, 0.45177179843371, 0.6206884020592169, 0.7971884643918834, 0.9405399093289114, 1.002291931167199, 0.9806363699305316, 0.9180794070370626, 0.8577091860142025, 0.8270601158905029, 0.8378391662380709, 0.8673153361855159, 0.8604190426764584, 0.762374166002535, 0.5267522505128137, 0.1601039497766495, -0.2426498496178118, -0.5622338440253678, -0.722974702593507, -0.6860263916595448, -0.5156434757131311, -0.3084777325823548, -0.15041815920448748, -0.14342255624094374, -0.3350290934026227, -0.702000811599766, -1.168567576308671, -1.6011316916075629, -1.8931293914268261, -2.0243782160936497, -2.0087573393884783, -1.8761253868991636, -1.6868468706628494, -1.4839414004761975, -1.2938134367631604, -1.1367992656727721, -1.0027525336357461, -0.8816262382701826, -0.7655295660624788, -0.6225904860654878, -0.43480298742425605, -0.2203802613183229, 0.06393003431396209, 0.11976377692811847, 0.1473822597666627, 0.15075532388300567, 0.15872484642106757, 0.1914652977699563, 0.26275732230021137, 0.3738718408527146, 0.506096764966193, 0.6417158613115493, 0.7526946108083896, 0.806394097369946, 0.8126380821990058, 0.8048708659765919, 0.8021905471043266, 0.8250409836745045, 0.8908856348579439, 0.9767186736853417, 1.0276296761562038, 0.9767329629446279, 0.767418507157415, 0.4124401877567064, 0.009599225077197439, -0.3146157056433969, -0.49078265069080745, -0.4970533711299684, -0.37519257689383617, -0.20741183503514576, -0.08222258094644654, -0.0864341594881405, -0.26858576129531475, -0.6097828415883518, -1.0533025657279556, -1.4839935397238997, -1.7946960852822147, -1.9537693653115262, -1.9728864851511296, -1.8726873035284706, -1.7008685781303328, -1.5031274886280663, -1.3127707854321606, -1.1546909503240597, -1.0213555976703326, -0.9008259379472308, -0.7849078754686644, -0.6425385498567185, -0.45255800833158244, -0.2308049772378073, 0.04687206366183685, 0.09079293503159153, 0.11163832303717777, 0.10953476212343234, 0.1103095369556946, 0.13078625924525938, 0.18139244171205218, 0.26365310355126287, 0.36138595298357795, 0.4621433372387759, 0.5496594018382971, 0.6062702222296708, 0.648824691304765, 0.6967611004229775, 0.7456692740776268, 0.8111981645048322, 0.9104505273188666, 1.0191872501953008, 1.0892025278202992, 1.060988569554742, 0.883220553643555, 0.5745272580180562, 0.22745703919770904, -0.044981501892916095, -0.19492910719854642, -0.22257815135521658, -0.1569966999009711, -0.05870982664817124, 0.006668465626722634, -0.030651955326182864, -0.2185933636976681, -0.5394061841555177, -0.9514828824490029, -1.3669382284405878, -1.6851334208358888, -1.863124945557755, -1.9109348073443133, -1.8435232783309685, -1.694449659420229, -1.5082606954382347, -1.3246935030691154, -1.1722357681664397, -1.04386920148231, -0.9249330815988541, -0.8069285267501914, -0.6613574941700616, -0.46700612740668823, -0.23868507917563675, 0.027206213424290814, 0.05488395101394049, 0.06429962549062661, 0.05318315494058678, 0.04394309168973192, 0.04923265740883736, 0.07638260775528305, 0.12902937775485085, 0.1953146946870899, 0.2689025394963821, 0.34361626779723314, 0.4097383829839589, 0.4838391353967195, 0.5762308421406299, 0.6664121817067198, 0.7599131028683486, 0.8674684517274378, 0.9590824908397102, 1.0002141921309822, 0.972511709490647, 0.8316364307716948, 0.5837607330194953, 0.3247828461354109, 0.14195511919350182, 0.051478572772597965, 0.034821328432499354, 0.0640783628945894, 0.11591598582802555, 0.14604985792521097, 0.0774832117153607, -0.12609603127143656, -0.44546289263735406, -0.8385519734095105, -1.238751641877767, -1.560350412454128, -1.7528535249982709, -1.8235668213560874, -1.7855745968732808, -1.6616035959600157, -1.4928448027473153, -1.3230365376590227, -1.182562654473921, -1.0635568614650146, -0.948444374157986, -0.8280263897432376, -0.6770063057574973, -0.4768371733308896, -0.24322279467011185, 0.003861920747122475, 0.009919776571822667, 0.0027205941583018645, -0.02043510926311361, -0.040454522801175785, -0.049260392755862886, -0.04345404584082133, -0.017172992977565308, 0.021808193154919497, 0.07234414489974897, 0.13812175236997296, 0.21478831811995103, 0.3147586432559352, 0.4376638802796626, 0.5473948984118144, 0.6428035832316343, 0.7295802050204695, 0.7635278581277145, 0.7363779175702676, 0.6903969570162535, 0.5990963071045905, 0.4432413321256175, 0.29818060624038256, 0.21536514995696082, 0.19279976744722055, 0.21093136924872077, 0.24975168244388218, 0.2987083533439678, 0.31525516131232834, 0.23244931701361932, 0.02144884728259615, -0.3069052311429389, -0.7007482610102145, -1.0972355508066407, -1.4230337014823375, -1.6258353530727223, -1.7127579568324927, -1.6984290608365487, -1.5994259192133249, -1.4530667761505782, -1.3030733418200249, -1.1790595693064192, -1.0723828156650164, -0.9633793549579752, -0.8417996981565276, -0.6857052753302876, -0.4807610440764716, -0.24438181157660147, -0.02389959923318031, -0.04489711813350213, -0.07292427237939414, -0.1094082231641429, -0.1387199839778761, -0.15696707008891864, -0.16585855510734868, -0.15972808379930076, -0.14335386028232291, -0.11402975313204047, -0.058804885095947126, 0.022217198975343036, 0.13515686005762223, 0.2724791590726622, 0.38649570394129384, 0.4627925453765302, 0.5048409600404627, 0.469101278203268, 0.3657478855093802, 0.28555070726893395, 0.22980790340699978, 0.1780373263390343, 0.1533898650045076, 0.1730672498734156, 0.2277782206744015, 0.295758288466664, 0.3667900201821461, 0.43069923279847205, 0.45232025625143435, 0.39087554169562655, 0.1887058077102351, -0.15131832327759775, -0.5555965017891287, -0.9515406033738845, -1.2759808043322527, -1.482941968747867, -1.5798134575439284, -1.5820924220118535, -1.5052559322480412, -1.3841803975654614, -1.2585900669490273, -1.1543374633802026, -1.0621342672742853, -0.9613364158279849, -0.8410338295380843, -0.6830871662785254, -0.4775584870470604, -0.24246069887414656, -0.05704849223265658, -0.10948333504465574, -0.15980715530846748, -0.20803111912473637, -0.24287641570049098, -0.2636600398193415, -0.27791994298613537, -0.28306299587469524, -0.28259434817108703, -0.2733075179558997, -0.23594005468709903, -0.1647238447802312, -0.057522773346223355, 0.07429232937700413, 0.17826507897208124, 0.2310969149579342, 0.24086640935687179, 0.16493027094208787, 0.0034834417079836495, -0.12380138230224816, -0.16894647215956968, -0.1569895999063691, -0.0903368004460885, 0.014825668282968671, 0.14287969579682785, 0.26748323430709164, 0.3782153761271791, 0.4721503785009874, 0.5226052402499763, 0.4994672260790157, 0.3136588356044582, -0.022703577318299493, -0.42421121449288074, -0.8092377978604004, -1.1209247680749685, -1.3238197067914923, -1.424264677724298, -1.435706699269408, -1.376579602650643, -1.281658342398987, -1.1837244242505136, -1.1022586243877885, -1.026963197705402, -0.9368770827167681, -0.8212423738724483, -0.6663639099826124, -0.4661073530405016, -0.23720903673841562, -0.09301446813279242, -0.17889345970674916, -0.2507215015317832, -0.3071204552164072, -0.3435921477680991, -0.3614649543231355, -0.37161410933842415, -0.3769598025836752, -0.38297263159368106, -0.39001616284113605, -0.3771908838422042, -0.3311566453115679, -0.24930740042970442, -0.14184190230256208, -0.059455499479673685, -0.03415200805796144, -0.04761061345457278, -0.12269054206244406, -0.28591571155271905, -0.44624752685944685, -0.5075621959031683, -0.4797498468383325, -0.37226015513784955, -0.20392540350846391, -0.009868619363318006, 0.17018551766255166, 0.32217695430756516, 0.44975436364774546, 0.5318804230156607, 0.5320443790943519, 0.36451875738569944, 0.051813936202752306, -0.3237777015117181, -0.6753897174017098, -0.9573414449418014, -1.1475921264589273, -1.2462021929366436, -1.2605397404931726, -1.2149788238031103, -1.1457089800805584, -1.0769714299416524, -1.0206800017629565, -0.965016506293602, -0.8889596891703602, -0.7824280548333495, -0.6359219991372393, -0.44622941270416555, -0.2281070832627521, -0.12609554499488473, -0.24337724764950067, -0.3352883117658207, -0.3975155098562579, -0.43284046879411475, -0.4448985705806714, -0.44479975695078594, -0.43982528576430646, -0.4395624248545253, -0.4528359636229454, -0.4654015655467103, -0.45736215073189807, -0.4164908871395103, -0.34474740432371226, -0.2875099131339785, -0.2869177303381535, -0.32896736806449023, -0.4070117597048479, -0.5423513259172132, -0.6935907279794201, -0.7708070701270615, -0.7528711147014915, -0.6340276062279248, -0.4218588731458465, -0.17855035816008216, 0.04575587389377399, 0.2324666712003864, 0.38556847987665466, 0.487874785930399, 0.494201213261166, 0.34889422173464446, 0.07666603967567392, -0.24703390414464815, -0.5447905820062748, -0.7879238227048797, -0.9587448648344289, -1.0473586419388878, -1.0584531450989103, -1.0243334313061039, -0.9804104573461516, -0.9411536658257496, -0.9113350323014081, -0.8776067691940401, -0.8191990116825932, -0.7266183036443159, -0.5933401219564486, -0.4183522763883184, -0.21488398610823192, -0.15259846190094792, -0.2954131592935508, -0.405353773711246, -0.4736547442653199, -0.5071059694751686, -0.5118376505756832, -0.49820145753440714, -0.47610627700187325, -0.4589963720338172, -0.4641359820302312, -0.4888586429660019, -0.5152691590626599, -0.5225287553842107, -0.49418313218194154, -0.4618333496713248, -0.48016664616755006, -0.5491605473104838, -0.6511700475003761, -0.7819755968854553, -0.9134242084798586, -0.9842518206174902, -0.9632131370306309, -0.8368462203794486, -0.6035859415442065, -0.3342357658108293, -0.08062101161378715, 0.13428229956096333, 0.3050691002093423, 0.4168049181766183, 0.4266166975742148, 0.3090934765927794, 0.08660652505349005, -0.17470860724215911, -0.4163203728774346, -0.6167081023624047, -0.7579236873971094, -0.8284541664261595, -0.8350275249482662, -0.8138368504914983, -0.794413593793478, -0.7827191695421909, -0.7790019857119604, -0.7682907739656377, -0.7299407075029574, -0.6549492717847942, -0.5387336509554281, -0.3820772311048409, -0.1972112734678406, -0.17236879962358934, -0.3327139466211678, -0.45684519178130173, -0.5326882791567368, -0.5656713901217794, -0.5627418343937398, -0.5345319699512738, -0.49251694245252436, -0.45194543406711485, -0.43633874311886506, -0.45480676243630086, -0.4964134711751418, -0.5402408261346655, -0.5560837677120709, -0.5491553482841647, -0.5794073272565754, -0.6679430386466446, -0.7939426970009112, -0.9415928884160014, -1.071801795167939, -1.1337061035272344, -1.0994964054603837, -0.9650910978662713, -0.7280343861619387, -0.4483982755989551, -0.17361869032205995, 0.06596829966761947, 0.2475314979894279, 0.36089282995853406, 0.3749035914824911, 0.2857327645757737, 0.11245658921056197, -0.0906623369146979, -0.2807041775599295, -0.4374031227438426, -0.5468472337857729, -0.5996065928933355, -0.6053853931888029, -0.5986738062829703, -0.5996914471986411, -0.6107381970771156, -0.6308201102637618, -0.6424027310030264, -0.62437079330964, -0.5683277910093428, -0.47145281690097174, -0.3364872953953444, -0.1746534095253143, -0.18626998594470948, -0.35636816413421296, -0.4893785116977822, -0.5722183703844856, -0.6056291742880379, -0.5955338916445148, -0.5532172856408069, -0.4917625322318092, -0.42609581828816956, -0.38105091654837847, -0.3755901953070392, -0.40976939903063336, -0.46952020935995725, -0.5232976938895668, -0.5502941857904415, -0.5933083240955399, -0.6940817934831585, -0.8360775266972754, -0.9965132417848498, -1.1371152672877016, -1.202330460646074, -1.1658719245920712, -1.0310018016316562, -0.8000877748092887, -0.5155496931751815, -0.22325635503745003, 0.036318289811864815, 0.22722006247827345, 0.341843123954368, 0.364315210063352, 0.3006854195205495, 0.1697548265219273, 0.013573075345393577, -0.13417087414019385, -0.2539815644567975, -0.3358328568107968, -0.3742808836618365, -0.3837562850193275, -0.39079738836741196, -0.40631254125854177, -0.4346469257153921, -0.4748322773131301, -0.5059894020336151, -0.5069036972525083, -0.4698689250598439, -0.3935700676558622, -0.28287814283422724, -0.14784933784762874, -0.1933446046763872, -0.36714223061024337, -0.5050304985946287, -0.5927236536977364, -0.6236627914407163, -0.6030142548298904, -0.5456225820881153, -0.4669532299010389, -0.38005344054709134, -0.30617060142637775, -0.2684856778623585, -0.2778001835062622, -0.3307606439863285, -0.4060161243675455, -0.4704504149874191, -0.534945238814057, -0.644256615358434, -0.795958995343074, -0.961938404026242, -1.109943547543221, -1.1872169818214104, -1.1615567689923103, -1.0361922144313638, -0.8185452941957176, -0.5360952803884398, -0.23614262052835666, 0.03470197151316946, 0.2377879156669181, 0.3593201614465883, 0.3927184433964402, 0.348675263169885, 0.25026580031486506, 0.1293875598143048, 0.01642134227730365, -0.07210270665476454, -0.13009201264613576, -0.16004010068215824, -0.17754048861469743, -0.19632997887836312, -0.22263608408038962, -0.26518624451696177, -0.3212016572008498, -0.3674969641692748, -0.384939795533139, -0.36660707678424126, -0.31173408181750745, -0.2265080149390247, -0.11960652889057351, -0.19184696562381567, -0.3643996302479946, -0.5035278246689505, -0.5925993743930407, -0.6178525518237028, -0.5823363796775808, -0.5057277965889848, -0.40976325957953635, -0.307019956456144, -0.2108524523937701, -0.14212374725625632, -0.12027287548444228, -0.15234887632285452, -0.22871446879235396, -0.32014567326262117, -0.4091654560714128, -0.5232319151218985, -0.6744529875188745, -0.8393147163589386, -0.9896519222668261, -1.0809972497173075, -1.0746931605502992, -0.9662136807473415, -0.7671945310326568, -0.4983712891778586, -0.20543981284697174, 0.06417618057442957, 0.2728689351489482, 0.39843469112999774, 0.4410632506793728, 0.41593349013705805, 0.34588311186232756, 0.25654334323494565, 0.17478418122676853, 0.11111743963793173, 0.06654882477024333, 0.034323582520384824, 0.006691674758869926, -0.021252258849151884, -0.05813589191830675, -0.1141768058266964, -0.1817000472352046, -0.23773231225128721, -0.26801007927797366, -0.26708277811990183, -0.2337726581573711, -0.17367500513021136, -0.093368272409535, -0.18337768974693686, -0.3490955476417255, -0.48251552157963773, -0.5662621749174815, -0.5836081719341658, -0.5339077594954276, -0.43742906299448003, -0.32218460347420014, -0.20602536851008726, -0.09638330374524483, -0.0036957876988965794, 0.05127731631507721, 0.04925542022195657, -0.010707971680165771, -0.10853721676548596, -0.21433102463015094, -0.3284678248917695, -0.4666578479865066, -0.6179287788146756, -0.7608916967597291, -0.8604852484955926, -0.8762543779489387, -0.7935112006388706, -0.6222794686317423, -0.3835318204708462, -0.11785391026846448, 0.13093770447658562, 0.3279509350967148, 0.4526415666882121, 0.5081041657294495, 0.5058088715383027, 0.46256118927949497, 0.4016233676146211, 0.3427654994581048, 0.2890727103689545, 0.24117090221133292, 0.19979927021047475, 0.1650365740994139, 0.12907815552969806, 0.07917127987887605, 0.009909969861736966, -0.0647563477529842, -0.12507353960449544, -0.16360171983577018, -0.17730902699148335, -0.1643093840392288, -0.1276468423269464, -0.07084150472325254, -0.17130078019556874, -0.32410254457581106, -0.4420509490847274, -0.5114232253294887, -0.5190796950052287, -0.45987382461793636, -0.34815110136593985, -0.21320240074542163, -0.08072449585879925, 0.0379362906182452, 0.14076451378260407, 0.2191150235214158, 0.25051202094534153, 0.22054787385673166, 0.13876842018024302, 0.03390176210161272, -0.07529091113506665, -0.19420284581817687, -0.32125453518050723, -0.4434270956494609, -0.5382586619149365, -0.5700696210380608, -0.519469098224715, -0.38823923608034866, -0.1960555607039514, 0.025120535537824666, 0.23874039130940974, 0.41536964861926357, 0.5391327415709719, 0.6066076434024862, 0.6219997975457827, 0.598488973276342, 0.5563294147821732, 0.5045788882381679, 0.4450403487281177, 0.38707953369340975, 0.33877077897458696, 0.29698899395882417, 0.24750368565614336, 0.18090007899447647, 0.1015080168218063, 0.026108107132768454, -0.032942195408734144, -0.07511306864996792, -0.0997332847297906, -0.10445507542622301, -0.08859142292441091, -0.0519489073697257, -0.1554138118922197, -0.2899998819092906, -0.38570555404430257, -0.43327250409292295, -0.4274331103493794, -0.3627486921061125, -0.24451019053180847, -0.09544313518280395, 0.05538788383945062, 0.18744940605747704, 0.2950013117317044, 0.3806192015471193, 0.4350062799389174, 0.4380140076358303, 0.38538379450710136, 0.2978552255595398, 0.19995595611314584, 0.0989810421350745, -0.0026827637818628877, -0.09717460136550325, -0.17396413986502904, -0.2086006861613445, -0.182606013763481, -0.09107075396239687, 0.053122967353589914, 0.226412702575234, 0.400824721395235, 0.5521019216041283, 0.6652905191610571, 0.731206728093217, 0.7533263649071914, 0.7412303771054485, 0.705107890722633, 0.6468051884327362, 0.5765449332791284, 0.5098349725476883, 0.45199990806130097, 0.3935411970927475, 0.3222232962288676, 0.24024978097761066, 0.15931221780992272, 0.0908789348130214, 0.03762141012859773, -0.004348191349337121, -0.03602726221451148, -0.054736026243805136, -0.05581785260506091, -0.03583804664845882, -0.132240429322929, -0.24404457209611286, -0.3163611570004408, -0.34033713233493984, -0.31658145126266696, -0.2452102680851922, -0.12742583099814556, 0.024759978214553526, 0.18730077265080855, 0.3344428175565903, 0.4515068445938501, 0.5394858005828348, 0.6021462790712971, 0.6284186691523301, 0.6050610488446312, 0.541409951329611, 0.46095906920845153, 0.3780259143609207, 0.29920426244720627, 0.23192112765107187, 0.18007905542540265, 0.15571010123816664, 0.17297557581336012, 0.23709229789993158, 0.3425105841567846, 0.4716433111731344, 0.6046007011584239, 0.7230833432843436, 0.813930160405374, 0.8696362278447205, 0.8929417202606389, 0.8833577772525261, 0.840295606318686, 0.7678865384864877, 0.68521512507277, 0.6053602175405117, 0.5280882499361627, 0.44373534355262567, 0.3513507199901574, 0.2635102546624386, 0.18960809316654606, 0.13161382787156267, 0.08563708297394686, 0.04595327626102401, 0.010487555761497855, -0.01724025621396016, -0.029800739513052385, -0.0223873241341698, -0.1010710543520644, -0.18574776050645025, -0.235397665616024, -0.2380465103465972, -0.1954332585288541, -0.11500927577918355, -0.00016399410213879773, 0.14569636579804202, 0.3087216290846717, 0.46492810662384465, 0.5939115026016326, 0.6887896288601688, 0.7534099041422979, 0.7885541506655707, 0.7847874617949746, 0.7416632232371295, 0.6782791992328524, 0.6129950153531698, 0.554367522823842, 0.5096767020602301, 0.4821817288423536, 0.47492705476813024, 0.496625058887373, 0.5482511538005754, 0.6277808532536409, 0.7228142782817948, 0.8203562859065736, 0.9085830049967165, 0.9765919093739719, 1.0192268964217068, 1.0323749548388472, 1.0091854990882874, 0.9473793747233177, 0.8582972238276039, 0.761349534601401, 0.6620819845812451, 0.558828483668102, 0.4510245947812929, 0.34970927343936736, 0.2660118020069926, 0.20124246328986523, 0.15193622198178466, 0.11156730028401354, 0.07384692158307746, 0.03702807381625072, 0.005785611549298944, -0.012044408023915334, -0.012415213873912052, -0.06577083324226533, -0.11957010567894182, -0.1460332355250349, -0.1310100365153954, -0.07248969555556908, 0.017991245677177022, 0.13034461140865838, 0.26387737867149813, 0.41515604704495307, 0.5681825456406389, 0.703277185212581, 0.80787060984627, 0.8780658980804059, 0.9166303175094825, 0.9238931420317097, 0.8971552978683015, 0.8476018251504414, 0.7951673709799388, 0.7512768221559905, 0.7221096727535938, 0.7131558864815745, 0.7240284359378952, 0.7570250987328738, 0.8089431526519884, 0.8761999284495037, 0.9508804637387157, 1.0238675064840408, 1.087102622623786, 1.1313457879078037, 1.1508470297935696, 1.138275778230373, 1.0905905176915605, 1.0089854077264373, 0.9072181745941863, 0.7951835703711698, 0.6738779301434361, 0.548909591833435, 0.43177391485627425, 0.33410546314764217, 0.2578370958714135, 0.20051828954651696, 0.1569323158452504, 0.11924493615635856, 0.0823234770103903, 0.046066428441703604, 0.015733502101075766, -0.0023966018265913903, -0.006226213981683284, -0.03085613905706237, -0.05267568238174128, -0.055124266836313225, -0.026173371353291015, 0.041182570010493906, 0.13915015106021325, 0.2523265776298071, 0.3743277142571203, 0.5058292692768246, 0.6410283857003631, 0.7675286332975823, 0.8734183762159011, 0.949396575519294, 0.9929169506028366, 1.00828952723883, 0.9968054082281267, 0.9626092956985303, 0.9213621770403071, 0.8875574989534334, 0.8682128579005937, 0.870350753902588, 0.8951588033619785, 0.9386763723040435, 0.9950827624828549, 1.056889566088761, 1.118337009821678, 1.1714165373368304, 1.210180994914321, 1.228364710296173, 1.2204158782358243, 1.1826209258716764, 1.1152696824412762, 1.0207176859139104, 0.9078704718110975, 0.7799658325881708, 0.6439867004662029, 0.5139080414687033, 0.40220222230300207, 0.3122961388507875, 0.24295879513119473, 0.19231137222178793, 0.152457602361877, 0.11579699434403681, 0.07987809225751846, 0.04581809621104099, 0.01835330503114098, 0.0018344524405860777, -0.0030839815739762823, -0.00010631492441227154, 0.006305576572506016, 0.026116485297026322, 0.06710682872778621, 0.13644065059172866, 0.23285101561489394, 0.3442425815788053, 0.4585624448732157, 0.5723319106198241, 0.6849392340810354, 0.7917576614078267, 0.8852106444853151, 0.9569756639869473, 1.0013321618704683, 1.020156427860751, 1.0179576121179166, 0.9977978497904952, 0.9685394549606563, 0.943552486205749, 0.9316776413827315, 0.9400178872790079, 0.9721435975644543, 1.0215618649190576, 1.0799222837827112, 1.1378478871898607, 1.1888959255304277, 1.2260220927052266, 1.244776634695717, 1.2423042358575818, 1.2149984909161176, 1.1619818563817794, 1.082385235165967, 0.9781675876751791, 0.8546124250673657, 0.7193133226939188, 0.5860736625400028, 0.46661186394121235, 0.3655303358857621, 0.28327281005449334, 0.22219911624538213, 0.1787320290681627, 0.14244271039281378, 0.10801861384304741, 0.0748392439952721, 0.04389655034802292, 0.018962275915161246, 0.003501066900815868, -0.0018407609935728972, 0.02321653354494443, 0.049579888992777855, 0.08511047339304166, 0.13577778268746563, 0.204667546830017, 0.29122314947229283, 0.3902205415530945, 0.49265275430608557, 0.591882712976921, 0.6865625733350178, 0.7748975927644135, 0.8514604296244422, 0.9110948157005865, 0.9497126834390235, 0.9662925197756187, 0.9645648695725083, 0.9496363384986738, 0.9278292869118717, 0.9091470246347569, 0.9033236007274248, 0.9167164883514388, 0.9525615737361879, 1.0048279504592086, 1.0630910862152312, 1.117949937514526, 1.161873617225133, 1.1889045726666807, 1.1948965161278544, 1.178622642573098, 1.1386348651401825, 1.075107333167318, 0.9877295055173838, 0.8793142545232431, 0.7558526086579122, 0.6291698527898966, 0.5107261571861548, 0.40557642456271153, 0.31525358200716025, 0.24343811935511517, 0.19315083859252805, 0.15755666577867095, 0.12703914868830968, 0.09811477732460827, 0.0697108629957053, 0.042188272398857043, 0.019023012895145422, 0.004006501226886429, -0.0014900275292236743, 0.036749170826615093, 0.07341219884028909, 0.1151959714326197, 0.16859495341207079, 0.23421765726696064, 0.30832126610089905, 0.3881260935056667, 0.47084048366260406, 0.5526968231755636, 0.6313879273285774, 0.70451080540936, 0.766752559325757, 0.8143402484064692, 0.8456808941120161, 0.8585468988636406, 0.8539749226278099, 0.8373828495115545, 0.8160619511562424, 0.7990814620184854, 0.7968222938903682, 0.8149604654835961, 0.8537805537707667, 0.9069518604090239, 0.9633843602024923, 1.013856310775794, 1.051474650981494, 1.0708880941870498, 1.0679937751807145, 1.0417253056331188, 0.9930769620669224, 0.9242802729536269, 0.8380504611658455, 0.7379910911760141, 0.6297056181239657, 0.5217507776653119, 0.42037637426760005, 0.3294539796854108, 0.252767783056253, 0.19466789712099344, 0.15516513574091184, 0.1277291126393965, 0.10558362017224811, 0.08461645690785655, 0.06209999951943015, 0.038364881151765354, 0.017349385295756078, 0.003418612518883952, -0.0015969440667995, 0.03916451903333779, 0.07727190682598034, 0.11698215271970462, 0.16390130979731443, 0.2193430393462213, 0.2788376948770679, 0.3393032851117366, 0.40065314783469225, 0.4624821111673143, 0.5232362204848735, 0.5799531470333349, 0.6281732784674838, 0.6648700807704389, 0.6891035800561846, 0.6984808160399719, 0.6922104584763769, 0.6741719297605525, 0.6515820967155033, 0.6342877440928574, 0.6331564769660755, 0.6534498592792227, 0.6922862028853793, 0.74215933860673, 0.7927889448344844, 0.8357684717208562, 0.8657421075814599, 0.878117797062396, 0.8693430311849746, 0.8388952715951525, 0.7899322419807974, 0.726497958208097, 0.6527846058016147, 0.5716462421157639, 0.486348466601885, 0.40082871064520337, 0.3193709341554156, 0.24693708985666452, 0.1875898859307479, 0.1431574258681664, 0.1127689553240402, 0.09322980591107513, 0.07953721733038747, 0.06612236809250566, 0.049443568313155016, 0.030359761049655293, 0.013061110250342638, 0.001727182699997892, -0.0019712665462847685, 0.031372581028225606, 0.06274479455684966, 0.09407656977937731, 0.12801656180292303, 0.1667373031104989, 0.20779202273133227, 0.24883650105731048, 0.2903199134089046, 0.33240830210836325, 0.37401257144586375, 0.4126740671125417, 0.44539902835415085, 0.470439834602332, 0.48664072492497024, 0.4920818819953634, 0.4858680997714528, 0.4703122286117596, 0.4506152266902589, 0.43545582229475277, 0.43447373966048314, 0.45193246575243273, 0.48396923865163294, 0.5234222333086247, 0.5624790805221236, 0.5947506775970988, 0.6162174000374931, 0.6233901634026916, 0.61361119775614, 0.5874037434303023, 0.548451833450035, 0.50069314012432, 0.44715819728006984, 0.3895295837282777, 0.3297302195534655, 0.2699869532808343, 0.21373285028265168, 0.16438257376072665, 0.12376072718459656, 0.0924520496257757, 0.07110485352755841, 0.058910768697144705, 0.051606207619610725, 0.04377992726713982, 0.03264722256470706, 0.019422882598202584, 0.0075319448354522174, 8.945157245068232e-6, -0.002024423903772229, 0.01698590478534834, 0.0346607484800477, 0.05217590258973121, 0.0699025572401669, 0.08934692270151524, 0.10985243762044723, 0.13042991412125515, 0.15169771837885548, 0.17351726463930014, 0.19498792076264415, 0.21478768620628502, 0.23133124283317105, 0.2439842357574529, 0.25186580990303203, 0.2539158174015712, 0.24987361743691652, 0.2408710127059887, 0.2294939082212255, 0.22059945999335595, 0.21993230897981755, 0.229834504320519, 0.24784635430485766, 0.26964549840077245, 0.29117646041191786, 0.3089791213116929, 0.3206760693961084, 0.32420328364086426, 0.31808361842196764, 0.3031437936498723, 0.28176688707164116, 0.2562114280426939, 0.22770020059845691, 0.197095763287563, 0.1656937048206538, 0.13500268117992614, 0.10677157553864014, 0.08203752232365244, 0.06108433876739557, 0.04447683323192633, 0.033419638697472935, 0.027737653805727604, 0.024685757564257466, 0.02104767401020912, 0.015475712602053304, 0.008845804917669611, 0.003009209884149352, -0.0005525255742845996, -0.0013081818379016492, 5.516603287974281, 0.0021523923931195173, 0.009692107191472432, 0.02303258389752788, 0.040486149565189235, 0.05996554668964014, 0.07805760317140886, 0.09310943229218642, 0.10608141221076725, 0.11813028065014534, 0.1299101362245216, 0.14038537651167188, 0.14807772578852943, 0.1524516584542929, 0.15285471587302554, 0.14706642657305305, 0.1339462063027099, 0.11561761359648182, 0.09473992989153779, 0.07256133169555097, 0.049792612248785666, 0.02688307095921776, 0.002253110598497261, -0.02534048848634101, -0.05530313124789792, -0.08775474488844424, -0.12289054632195337, -0.15947600547107843, -0.19539756708217054, -0.22820768697978594, -0.25522023081952777, -0.27516649611018945, -0.29017427115723393, -0.3027061047147336, -0.3120494117658895, -0.31713745712365043, -0.31894401031468406, -0.31834407603876713, -0.31290968527834456, -0.29860196608122036, -0.2740995864177981, -0.242105283557132, -0.2081946169298466, -0.1770095759153735, -0.14867228139871352, -0.12019957791501985, -0.09005945106970459, -0.059398437103425114, -0.02943046576971923, 0.0025927831326194926, 0.01617537313280747, 0.040944952351722505, 0.07271698797547496, 0.1073352520508695, 0.13949879394074868, 0.1669103815064747, 0.19094395743854778, 0.21329925923336254, 0.2348181424901293, 0.25431494614055894, 0.269183480824177, 0.2773176218167525, 0.27671646683865947, 0.26321713616369014, 0.2348436111830597, 0.19575071942920716, 0.1520101991024074, 0.10811761184932633, 0.06740147399637744, 0.03087319374050783, -0.005736081419297532, -0.0478710268087905, -0.09791103829798616, -0.15780179268747155, -0.2278599356655419, -0.3038694958676938, -0.37954417110585653, -0.4488139274932482, -0.505967841260587, -0.5488098834831836, -0.5812357665179353, -0.6079576730823414, -0.6280321902076204, -0.6384203019236271, -0.6396504392760018, -0.6337591724640821, -0.6188382967357757, -0.5897228650578488, -0.5438486949720005, -0.48468937429205344, -0.42042293022957633, -0.3586028890859666, -0.3005389399207669, -0.2421091410255896, -0.18080727076841405, -0.11879107038585603, -0.05859160325593381, 0.003246124868855346, 0.019547080723269803, 0.04897853541346296, 0.08698411111191195, 0.12920973181665105, 0.16987504387903768, 0.20614768955012044, 0.23904721161691503, 0.26990258548116347, 0.29957623659026006, 0.32753513195420086, 0.34992574862462894, 0.3622321948173881, 0.36027678261567786, 0.33766609179696205, 0.29153106083468416, 0.2273267019438533, 0.15551543549954475, 0.08693238685474419, 0.030754151947980535, -0.010499646284996092, -0.04424452793441398, -0.08357841917330466, -0.13918962921107633, -0.21766269431452248, -0.3195514397825219, -0.4363074791966767, -0.5549110822678569, -0.6633402035163388, -0.7525851994658989, -0.8203545489607085, -0.8715982780909649, -0.9123376971776925, -0.9424792845386007, -0.957436756314121, -0.9558104242328663, -0.9401859910676739, -0.9118853759573625, -0.8680374536482698, -0.8053266989949859, -0.7257724276340836, -0.6367322966084977, -0.546198930921512, -0.45712647222256375, -0.3665751451968151, -0.2726160137651151, -0.17850812500795607, -0.08777755549489964, 0.0037046485284374557, 0.016563986378095058, 0.04005680058214825, 0.07400300187824725, 0.11619033432478082, 0.16001034164476644, 0.2014432000155954, 0.24117884847905113, 0.280084287871058, 0.31900044239950365, 0.35710003172852295, 0.38868056855029726, 0.4073537569144226, 0.4060556593906623, 0.3753766121388389, 0.3106731185268941, 0.21718902394151507, 0.11006391233550814, 0.009201127434179867, -0.06686712350206016, -0.11186616697088135, -0.13570123334821038, -0.16019568798147096, -0.208196163086252, -0.2941871972455113, -0.41993229270681526, -0.5728334720641726, -0.7320047391571106, -0.8773013220155549, -0.9958812956779164, -1.0859610590137052, -1.1533531926008254, -1.2045069464426814, -1.241065976058329, -1.258585654975927, -1.2533207200345577, -1.2272769751360944, -1.185144817895159, -1.127645756175936, -1.0513791150991676, -0.9559767782332445, -0.8467202804331374, -0.7308692094508507, -0.6121524217430908, -0.48937224549479896, -0.36265556669561305, -0.23694107028130382, -0.11634991761800902, -0.001227099267953757, 1.820536703575397e-5, 0.008459658556768276, 0.030986379534041018, 0.06758064018864188, 0.10979620098337207, 0.15260872897377617, 0.19698625338316209, 0.243795692810896, 0.2934983645574786, 0.34342173550799093, 0.38577963454465014, 0.41264757446491923, 0.4135920207900921, 0.3763525096737028, 0.293876022443442, 0.16976484319168558, 0.022464666376008916, -0.11804960068691758, -0.22180201735985916, -0.27633228761262796, -0.2927228392370919, -0.29958345356988336, -0.3312639061480843, -0.4123473814530533, -0.5485852836442852, -0.7252803191794618, -0.9147831367337685, -1.0885358251800652, -1.2290515039545056, -1.3345940229344109, -1.4118341764498665, -1.4675803134634249, -1.5054804952673124, -1.5229377638470736, -1.5150636093095278, -1.4825950205182747, -1.4310894214883574, -1.3628647410877444, -1.2746773594424612, -1.1647855462993673, -1.037514585626742, -0.9000285339946723, -0.7559027357974923, -0.604536124802738, -0.447909506503645, -0.29264666573310416, -0.14365718726331478, -0.016243589859527733, -0.03437405200232378, -0.045906700520402785, -0.03843766309484692, -0.011141791146445167, 0.026094330275870613, 0.06773264870268346, 0.11445486687957988, 0.16708293274412564, 0.22609016390518927, 0.2866818430902276, 0.338410176944397, 0.3708489465382736, 0.3711058332740496, 0.3263338054982117, 0.22808726822208297, 0.07767269550121263, -0.10578794975342298, -0.2847544520568043, -0.4194860621351758, -0.4905937482495286, -0.5079307358408509, -0.5028088132268471, -0.5162565618070872, -0.5821451482979626, -0.7132555724759845, -0.8962972168572051, -1.0995534496906232, -1.2881794530754207, -1.4401701413942174, -1.552613481821669, -1.6325114839379693, -1.6870809142723981, -1.7212577547045647, -1.7352868884043517, -1.7259960037164666, -1.6933890090026176, -1.640424310384561, -1.5669633204599551, -1.4691636022210648, -1.3458711642043601, -1.2023155342477834, -1.0463971259557272, -0.8818368994761985, -0.7080036489658464, -0.5269924393732773, -0.34558469982328277, -0.16983955980021248, -0.04188390744415584, -0.08478749775712933, -0.11794729001042843, -0.12741232470447897, -0.11205037595485683, -0.0818950446648899, -0.043499783165325746, 0.0020517246505817746, 0.0557679156974501, 0.11905976731361377, 0.18445985042663404, 0.2378980896871446, 0.26708355701149683, 0.2598829265104606, 0.2059956225519849, 0.09759648242597876, -0.06580320337130323, -0.26721766796926955, -0.46822912255531596, -0.6258475867162361, -0.7159777703532917, -0.7442618740677276, -0.7390588234580469, -0.7414872454924732, -0.7904696030287546, -0.9064281959643505, -1.0808209333271304, -1.2806301551835533, -1.46813722835007, -1.6193697930801, -1.730019897568075, -1.8065606556068399, -1.856306498785654, -1.88386012393362, -1.8911093973074677, -1.8787968217918112, -1.8482313103971728, -1.7987987551378866, -1.7257370392384517, -1.6232812641846541, -1.490857335337363, -1.3350643209950532, -1.1646337610277862, -0.9841778005536116, -0.7939632155553202, -0.5951860901023908, -0.3928372474303619, -0.1936634232920211, -0.0736634230005027, -0.1429688013819283, -0.1971287463476411, -0.22426125537549432, -0.22328077677566932, -0.20338090738193224, -0.17230918533584014, -0.13343341316419624, -0.08514015078564062, -0.02655994790339765, 0.030632118295722426, 0.07103950986275691, 0.08475328815254507, 0.06379999058069025, 0.0018757526915197968, -0.10647373523094493, -0.2616259554241406, -0.45083624025575364, -0.6427055450295556, -0.8009296147100787, -0.902476007073014, -0.947625922392618, -0.9559304887184176, -0.9611360275922362, -1.0005034410593427, -1.0998290876224366, -1.257559728691632, -1.4421784754442761, -1.6156509198577678, -1.7553457982232883, -1.856900413556644, -1.9259075153710836, -1.9693112110711826, -1.990635949645184, -1.990841827159188, -1.973262789172804, -1.9415165434697041, -1.8938520798541851, -1.8234690285932909, -1.7230876345578343, -1.5900511690103794, -1.4296921944028138, -1.2508098034123913, -1.0591434850836454, -0.8571359088215857, -0.6463810187756094, -0.42962750577982534, -0.21282758801986967, -0.1050483040883677, -0.1989504074806941, -0.2723577727843412, -0.3177785429462463, -0.33427380100725584, -0.3286918290466695, -0.30988171409972437, -0.28376185721252883, -0.24999737178084902, -0.21190454382289817, -0.18301695818287406, -0.17316814389359633, -0.18590529391266178, -0.22509978195485705, -0.29361125892967116, -0.39193867007906424, -0.5169065898878865, -0.6603639248835347, -0.8044538890508779, -0.9296302950288312, -1.0216923260707012, -1.0776894777578734, -1.106029088790451, -1.1265648988765375, -1.1667951205075853, -1.252263942517809, -1.3888700477328269, -1.5517148611966742, -1.7053380371276599, -1.8290617393820865, -1.918524506470596, -1.9785739266226285, -2.015688549816677, -2.0330171462900797, -2.02982081303631, -2.0087514735704954, -1.9738677443128059, -1.924185713126065, -1.8552707548290388, -1.7614301611857521, -1.6369705506457186, -1.4822652504387055, -1.3038747385857752, -1.1076872200847259, -0.8983433288454787, -0.6800532252756526, -0.4549698436269795, -0.22685614404717036, -0.1319161902339791, -0.24738000954023306, -0.33948305884538205, -0.40470602076292483, -0.44050321637508405, -0.4514327989730914, -0.4491666457445238, -0.44365260502845844, -0.43931061105639624, -0.4430361130714368, -0.46186086118129344, -0.4949467634426843, -0.5413408247965282, -0.6041543645436683, -0.6811074413841633, -0.7627001092425075, -0.8392383496378658, -0.9076114585659373, -0.9682161002954167, -1.0246262344895778, -1.0776359953271866, -1.1256094608316862, -1.1678837029590563, -1.207834134738375, -1.2567274537262223, -1.3327113496667027, -1.446317105483588, -1.5833349265626702, -1.7150550893268366, -1.8225899271310786, -1.9002578949903048, -1.9520813313990628, -1.985033419464867, -2.002226434824301, -2.001395310951456, -1.9821478007515818, -1.946759314339034, -1.8950509211702429, -1.8265958656115815, -1.73967427731279, -1.6284860817802063, -1.4887390426026146, -1.3220057070838271, -1.1315143595046118, -0.9221192505652865, -0.7009312603663913, -0.4718172125805944, -0.23693519251459955, -0.15239518984931633, -0.28712122897471737, -0.3984683566058101, -0.482744041256248, -0.5361894094409959, -0.5658846275365216, -0.5881371057179791, -0.6166596543126941, -0.6593141525281514, -0.7193694838140148, -0.7920498293252055, -0.8693193637249746, -0.9518766327528309, -1.0427081681417047, -1.129025097938815, -1.1886044172863581, -1.2069290565101771, -1.187001095796948, -1.1465927229348265, -1.1110719902194612, -1.0982758125816408, -1.113639510170359, -1.1522850497516035, -1.2042132737653934, -1.2634440789057653, -1.3360457436379056, -1.4313279142555075, -1.5436630952652586, -1.6523871413827032, -1.741230079212291, -1.8041720232984078, -1.8449776656489232, -1.873635974929388, -1.8942421122100417, -1.9017251173754408, -1.8906717397230877, -1.8603977460152075, -1.8115449123868654, -1.7467550941134147, -1.6679287907759126, -1.5718181795743118, -1.4529602656193585, -1.3076059487640654, -1.133667409492564, -0.9335232432814524, -0.7150758383323674, -0.4845181329275233, -0.24476997222407393, -0.16693251744920776, -0.3190371584931846, -0.4476271988260834, -0.5464196475244839, -0.6168853942068633, -0.6734676518898812, -0.7338626163968526, -0.8094105365956094, -0.9039376871443696, -1.0131836917196844, -1.126611880250101, -1.2378241451272936, -1.3520020838427536, -1.4672714868180756, -1.5596180254987126, -1.5997755853684825, -1.5720972648785592, -1.4814228248027446, -1.3526101951537506, -1.2242431847677206, -1.130253378465968, -1.088320260503135, -1.0970421015034546, -1.1411772183108868, -1.2027233219468079, -1.2751456408617123, -1.3603440121621313, -1.4552159824798732, -1.5443586193117795, -1.613313011545308, -1.657240227192473, -1.6800154074413118, -1.6960151906578198, -1.7152082140595002, -1.731550219860929, -1.7332501340016035, -1.7151574381356227, -1.6779094301936195, -1.6251707213637645, -1.5605130087067345, -1.4835407025504517, -1.3895313618628746, -1.270905671921479, -1.1206859103442928, -0.9375901903321964, -0.7272626008247485, -0.49683725263133727, -0.2521800912598515, -0.1781093952910346, -0.3441540401047012, -0.4853408762179929, -0.5970630174032753, -0.6913087511450771, -0.7866762167467501, -0.8936543746795722, -1.013068432238088, -1.1416747316950704, -1.2744555223157157, -1.4056551031442661, -1.5361525790773738, -1.6710117573195566, -1.799708876066747, -1.89699283080188, -1.9362748763532651, -1.898479711396717, -1.7800913423148332, -1.6001934385694867, -1.3997091324764388, -1.2243102391795575, -1.1065788455171786, -1.0578469564392035, -1.067254439129671, -1.1121664221593364, -1.176172254242527, -1.2511100957528463, -1.3313764810221012, -1.4044296763388464, -1.45666956004877, -1.484394211183738, -1.488897578682501, -1.4840851680264768, -1.4888815827694561, -1.5043563787278298, -1.5163313687360818, -1.5144881819374274, -1.4975097390696441, -1.4673482175009083, -1.4261707145302411, -1.3750618243571395, -1.3099682920058393, -1.2205470426741027, -1.0972073785126657, -0.936060851276801, -0.7382488890730597, -0.509561343069561, -0.2597664618391907, -0.1864536403508843, -0.3622465320606218, -0.5143697532067629, -0.6448020735247681, -0.7726843760782706, -0.9108957271311032, -1.055744941909818, -1.1981259193542733, -1.3348525499108268, -1.4668872793592858, -1.5969373348538776, -1.7323247040194094, -1.8721928070889424, -2.0024648789583632, -2.1091020968910756, -2.171758487985205, -2.1630187192026384, -2.0643041089710845, -1.881905169017535, -1.6493712334906274, -1.414021491982829, -1.2212903779789968, -1.0992357986518355, -1.0495931585438667, -1.0536284675033805, -1.0893368570628204, -1.1397031645195728, -1.193581880223689, -1.2408024590254216, -1.2703530157235148, -1.2823661354044376, -1.2753993567263138, -1.2541663253308524, -1.2394282495383124, -1.2434425437958136, -1.258033419718872, -1.2709297584556676, -1.2781209086300058, -1.2785055423413618, -1.2699200973280722, -1.2518300018464534, -1.2201521721419708, -1.162328697902944, -1.0669630308189941, -0.9290600146674807, -0.7458711395630188, -0.5207301129931142, -0.26674482165963, -0.19214715324876977, -0.3761393557036942, -0.5425640290199172, -0.6994398411815979, -0.8640803899903875, -1.0352390671563827, -1.1972059069129466, -1.3408945203137717, -1.4685865198449284, -1.584654962438199, -1.6979439246842667, -1.8202498232207205, -1.9464989626236286, -2.068918042198902, -2.1894665280441514, -2.292988007337539, -2.343821095669185, -2.307585361972857, -2.174332300442862, -1.958960745751105, -1.6996415123409199, -1.4498294724585326, -1.2528044323382626, -1.1280277253086741, -1.0693195797627226, -1.0550668673277317, -1.0628501782881474, -1.0744640999773645, -1.0786279753443533, -1.0669639091938372, -1.0468238413517206, -1.0242825915317393, -0.9951743686005678, -0.9699754606327397, -0.9641075642480105, -0.9783086880025739, -1.0038237995154986, -1.0354721237635276, -1.0701611861501836, -1.1007692172069485, -1.1216502461355442, -1.1272697597804726, -1.1035569479527663, -1.036547315867281, -0.9200404098222219, -0.7501642658547791, -0.5293857106237209, -0.27275042715109105, -0.19812889184670357, -0.3924754902970124, -0.5787049034331869, -0.7657891696414125, -0.9601169927452584, -1.145898522387849, -1.3049442969581029, -1.4350278845988949, -1.5417393666338735, -1.6288669991264766, -1.7101274428465876, -1.802620242282069, -1.9030113654915939, -2.0150448244277905, -2.1545443289454207, -2.3116515898720214, -2.4444894253503504, -2.5039827136816926, -2.4583914002292993, -2.29556865363523, -2.0428020505104865, -1.7546046935368487, -1.4849477343281554, -1.2725887578892896, -1.1309413723846493, -1.049095015482994, -1.0036647141023827, -0.9699084202050636, -0.9279461542989323, -0.8672733064712524, -0.7983061424135915, -0.7428969427815579, -0.7030135582958749, -0.6773721640452578, -0.6730009536787949, -0.6926108218946783, -0.7321581622766722, -0.7877942020747732, -0.8567943727227761, -0.929179136011683, -0.9921825840105509, -1.0365365826991737, -1.0475270685124138, -1.008437054466924, -0.9110161320909519, -0.7524518053530356, -0.5363786639274222, -0.2783191415970733, -0.2061978020633504, -0.415039929668103, -0.6255387798462325, -0.8401665565403158, -1.0506724509180165, -1.233488810955893, -1.374628679945671, -1.4779992755825953, -1.5511419234628878, -1.5999959015320864, -1.6443623879762213, -1.7050730661128668, -1.782971514740515, -1.8910453703208132, -2.054685716475005, -2.2700122997130316, -2.4904200255995597, -2.654502494755359, -2.7042371410062915, -2.605458459179142, -2.376206336622512, -2.0615824532194638, -1.7215972684182788, -1.4129205615035818, -1.1733092998520935, -1.0135610080996378, -0.9139936623240871, -0.8440227177640021, -0.7710208077511231, -0.6754156442470959, -0.5629410332153523, -0.4650912313060869, -0.40197931290451994, -0.373970265351859, -0.3791440493603801, -0.41387870278379496, -0.47270700169329966, -0.5522474692011541, -0.6518959523884181, -0.7631750846639113, -0.8674954461796476, -0.9489713820980429, -0.9920825274932725, -0.9788737172139902, -0.8988886388589431, -0.7509280638256305, -0.5405980545008604, -0.28279607395229395, -0.21584633095166206, -0.4417226427465271, -0.6764087778924521, -0.9111768675723223, -1.1255155567787662, -1.2945903417327094, -1.4092958217954472, -1.4766289968140178, -1.508143088123152, -1.5187002076129426, -1.5353105196697496, -1.5773344307593267, -1.6458400466859546, -1.7585876551740733, -1.9468297843890585, -2.2094179091411696, -2.499336868524032, -2.747597041824269, -2.8759007997927513, -2.837099591308894, -2.633444116825179, -2.2959599507707997, -1.887579197767359, -1.4796197373964601, -1.1389700087108428, -0.9031567096372449, -0.7612369541834502, -0.6752698036635421, -0.5994970785475184, -0.49788513824843056, -0.3639294906944517, -0.23008018209360553, -0.13356435501926114, -0.08971815029470925, -0.09904618692456953, -0.15206782848189807, -0.23499370427955604, -0.33939971873090746, -0.46503788406085755, -0.6079629573862844, -0.7483492081936771, -0.8629204370525854, -0.9333232335353486, -0.9419288670861569, -0.8774894790711096, -0.7400652807418896, -0.5371300669460343, -0.2829185816159675, -0.22587357481844378, -0.4677057850757411, -0.7219651599470869, -0.9687100145757517, -1.179857133498482, -1.3331576716029567, -1.4219537000290654, -1.453702677788195, -1.4469576477832846, -1.428928437414209, -1.4322495098257686, -1.4699888659282034, -1.5401856821516862, -1.6643958430920573, -1.8709505910898179, -2.1552862374733315, -2.476928887378939, -2.7680086011610663, -2.943397093721708, -2.9457659138666066, -2.7580478401439663, -2.39859936185122, -1.9240962507147092, -1.4200127665362492, -0.9866929260185131, -0.6904899100148301, -0.5319328351559721, -0.4627254612438621, -0.4213966541968095, -0.35180121089064464, -0.22647139713597106, -0.07079467405709915, 0.06418252096074059, 0.14104760213045792, 0.14478628747336694, 0.08307635363820343, -0.021141760620691327, -0.14912542068821005, -0.29634524710762294, -0.4621206322504336, -0.629320126788568, -0.7701867738519188, -0.8625334640080586, -0.8888451742759815, -0.8383088239045283, -0.7122900710075261, -0.5199133199005839, -0.2750894416633127, -0.2344099479498301, -0.48800461314655497, -0.7541468225074625, -1.0052321396504846, -1.2115656063520543, -1.3545463194046763, -1.4264746304250733, -1.434149075894906, -1.4039218067519312, -1.3726143098886738, -1.3731782730569262, -1.4123329286477813, -1.4890255937191208, -1.6237857129040891, -1.8308745600105654, -2.1007422814883183, -2.4042710899518496, -2.6843641787751324, -2.864023691484943, -2.884480633087551, -2.7110042094135847, -2.337635184487865, -1.804446240823623, -1.2148075637676843, -0.7044770339120205, -0.37147525796513514, -0.2311630145401558, -0.22004794068317543, -0.25277384803192365, -0.251431326057602, -0.16529726651645332, -0.005338441288114689, 0.16923045648131815, 0.2954494639446849, 0.3342994408816522, 0.282980722196037, 0.16917786216324934, 0.02370218587402851, -0.13988069519397459, -0.3199509637199756, -0.5029148625267352, -0.6609321606015114, -0.7697344322639355, -0.8114438625025833, -0.7753314860805957, -0.6636903316335413, -0.4869017947108135, -0.25855987451294854, -0.2390551660302489, -0.49736346454242736, -0.7661080347202107, -1.0155597044122049, -1.2190026842081887, -1.360970003058582, -1.4307692079007401, -1.4334397634663698, -1.3994169546835338, -1.3681138145564167, -1.3693111643164335, -1.4080985210799368, -1.4855528873344093, -1.6142802833554062, -1.7923937333584437, -2.0067632897098737, -2.240266715053057, -2.4548204810987273, -2.5954673493572638, -2.61473203199231, -2.4631623605146613, -2.101844970261989, -1.546987487513235, -0.9079916204664243, -0.3505210215560294, -0.0031509094430195446, 0.10283721145976865, 0.03575014906879756, -0.09675096192070486, -0.19034333962753042, -0.16607464245488024, -0.0193383777847421, 0.1873063195879087, 0.37005349002576027, 0.4616506710257326, 0.4414281113045389, 0.3354355682313955, 0.18379543312801122, 0.010957661342851938, -0.17606650005669924, -0.36541250834741873, -0.5322263720624769, -0.6529749147697484, -0.7092176143578499, -0.6894668765605158, -0.5963346257604147, -0.44066116723683596, -0.23515081811495495, -0.23809742632272338, -0.49373505308370647, -0.7569559734247645, -1.000374019150409, -1.2038696843537748, -1.3548615804052335, -1.4383275740861508, -1.4556483415489874, -1.4354088689475477, -1.4131150675426465, -1.414854310807451, -1.4451377180611693, -1.5042530924645319, -1.5971488506951987, -1.710826659682318, -1.8294404483664322, -1.947204571512223, -2.050263925640649, -2.1154763376375585, -2.1181399275455375, -2.010530992386916, -1.7277236668497495, -1.245723071002613, -0.6466564196204885, -0.10112464148676598, 0.23932895786229139, 0.3323599468179133, 0.23014779792074155, 0.03262923952275163, -0.14188459761722472, -0.1840255674258817, -0.0655654269115278, 0.1552069917386941, 0.38416483620288705, 0.5312450152705283, 0.5552686820832998, 0.47437999788102947, 0.33223175717668085, 0.16120758760614629, -0.025325024248408476, -0.21464034633333504, -0.3849440144019205, -0.5149188792523977, -0.5855958002487114, -0.5841204062859456, -0.5129705070450589, -0.38302342764343406, -0.20577749560634054, -0.2320865776372495, -0.4791925105501824, -0.7308967752768073, -0.9652641201587363, -1.1712002516176585, -1.3390661846762317, -1.4491254434839764, -1.4970987029966916, -1.5045972205918612, -1.4979798434469023, -1.497473424407403, -1.5065507530601232, -1.5233709149186265, -1.5473836834566683, -1.5617862485342093, -1.5506154886716224, -1.5176091898434152, -1.4788095886734463, -1.4495179467256945, -1.437789875666499, -1.4132302269325625, -1.29422881744252, -1.010189810116923, -0.5816880317455814, -0.13276285129057094, 0.19332494881550694, 0.32445608943825016, 0.2713976858270743, 0.09668241576901422, -0.09369529930710468, -0.17446828905861608, -0.09051487639166267, 0.11927393644329551, 0.3686837608737844, 0.5579147664626252, 0.6284103959023353, 0.5855680264981072, 0.4689507592660417, 0.3131205806092949, 0.1355471039186837, -0.04895361277417787, -0.2198602799582962, -0.3574754622294779, -0.4424059961198227, -0.46061146160870897, -0.4143305842230526, -0.3141543964020772, -0.170342336147305, -0.2222819648780015, -0.4569067246367832, -0.6933919056242578, -0.9166105126819243, -1.1259543235536713, -1.3155923053185412, -1.4610582615431924, -1.5503282540836225, -1.5945829684251878, -1.6078536101123062, -1.6032263974635401, -1.5822728991324633, -1.5383816997704818, -1.4672320811462762, -1.3560837605827858, -1.1918847512501056, -0.9903871217153488, -0.7999452253333678, -0.6714491855659244, -0.6618041182352561, -0.7614864356410961, -0.8669639106298433, -0.8471259895805098, -0.6579545185521314, -0.37122279784547735, -0.09974567880695011, 0.08387148898423462, 0.14687840084107492, 0.08634250115154564, -0.041247836041749295, -0.11755067025363121, -0.06390153450245088, 0.11244760738434531, 0.35281548322864437, 0.5635656176797893, 0.6747103639716576, 0.6764267533227661, 0.5975446825599624, 0.4684590232892429, 0.30719015073633704, 0.13088342419397322, -0.03882030454916706, -0.18241026560650103, -0.2806085793384401, -0.3192584034585198, -0.30044537219894646, -0.23404048007740186, -0.1288617503225676, -0.21080619272931778, -0.430897924910752, -0.6498997850185216, -0.8602912487509046, -1.0723044483014161, -1.284264328182845, -1.4679365209637638, -1.603042570723297, -1.688894371866006, -1.7268201987179133, -1.7209422912248473, -1.667908351936061, -1.5553868410704745, -1.3777332716049648, -1.1306131853888444, -0.8102646703232819, -0.44797204950029457, -0.11246176856340749, 0.10617585964204722, 0.0919204453829845, -0.15981684749886277, -0.4958679608262331, -0.7339254195877594, -0.7849488608745185, -0.6787769572913206, -0.48917009772008996, -0.2748577677206801, -0.09243206413073318, 0.0013338441477253693, -0.0050472268237661405, -0.034264814036300655, 0.0033497853015412196, 0.138173861121069, 0.3514741856641773, 0.5673071704176524, 0.7115755433514515, 0.7596589896765283, 0.7253724677350812, 0.6306798836259697, 0.49095408387926187, 0.3248709412967712, 0.15727479558135404, 0.009237680267421128, -0.10078653000291683, -0.16017330438323757, -0.17130943925507552, -0.14281977658174594, -0.08152802189312625, -0.19968238001393127, -0.40473092792825915, -0.604883236718636, -0.7997534696508616, -1.0097547330298493, -1.2388804096002641, -1.4576730186589462, -1.6382783331777195, -1.767830660995849, -1.8348246026011739, -1.8344067613362065, -1.7582265195408329, -1.58778798515215, -1.3155613883921864, -0.9500841291067254, -0.5038292041432799, -0.01549769897451874, 0.4349861227851653, 0.7201060745832625, 0.6756913851827646, 0.27772126966159705, -0.25461295038902515, -0.7037894930011128, -0.9549001138830812, -1.0028243359674325, -0.8921541019658832, -0.671557182941813, -0.4022305471823803, -0.16457757774269627, -0.027766786101393992, 0.016009984099528647, 0.06106116701374331, 0.17143477263475973, 0.363189749071048, 0.5796670933650858, 0.7509548658708896, 0.8440547336206511, 0.8574664955689889, 0.8017068415999212, 0.6873197899494803, 0.5336605717608669, 0.36937996085569696, 0.21769533530372365, 0.09586705089775617, 0.01447369173469896, -0.02934266295103662, -0.042645356383640434, -0.029692544751716076, -0.18964714101281732, -0.3798448123524772, -0.5599725899700463, -0.7353253355057602, -0.9349720097724716, -1.170405536800323, -1.4155089609192715, -1.6373647884454898, -1.8112020369294881, -1.9135096833145178, -1.931009811392653, -1.8504185987446078, -1.6488719435778234, -1.319174251490535, -0.8825197787533289, -0.3649024769136451, 0.188038913300066, 0.690575551339273, 1.002798787154631, 0.9418661049347185, 0.46895735358273744, -0.18410556536093758, -0.7760602591356976, -1.1704045613391445, -1.3320704826620877, -1.2853730756442068, -1.0719061982553344, -0.7522377311743629, -0.4122290669433926, -0.1540113819435164, -0.028176234400519518, 0.05684041768887708, 0.1811104720153224, 0.37689929586717236, 0.6018088572523871, 0.7985554100754318, 0.9339330035099863, 0.9936521559880818, 0.9770233140781667, 0.8898796871277878, 0.7516775570552858, 0.5934437952056737, 0.4391687049326706, 0.3046941805880002, 0.1991268033843349, 0.1197153651813525, 0.061541337702986414, 0.02370645961763649, -0.17955556566506442, -0.3547974132546294, -0.5143515819758856, -0.6665778507855156, -0.8465341435429324, -1.0749706479712977, -1.333798248882097, -1.5888927218231212, -1.8061311525429136, -1.9507246069087623, -2.0003261996122874, -1.9386517278668676, -1.7431691095365287, -1.4079631824478573, -0.9624936360113802, -0.44362702235883683, 0.10023783710829916, 0.5858954084708706, 0.8831383854227871, 0.829921313996027, 0.3831956730377262, -0.2766578053025699, -0.918616195393234, -1.3854955902966744, -1.6152699451491643, -1.6132646231402161, -1.4151088319127738, -1.0818549235370118, -0.6977221308182128, -0.3723436171391715, -0.17165013196638457, -0.019394984579149253, 0.15803397759275734, 0.38722055796793237, 0.6323714927866255, 0.8551063584033693, 1.0288137379236832, 1.1295588862524422, 1.1477021739468352, 1.0868379247441873, 0.9667926500767793, 0.8182647123955634, 0.6634182241943994, 0.5161727161550201, 0.38495675803722496, 0.2680956574686266, 0.16384327288748993, 0.07551239990144532, -0.16802976678268888, -0.32782840961530446, -0.4668331196058567, -0.5939714558899435, -0.747405308755774, -0.9564874593012708, -1.213827277988425, -1.488877687418433, -1.7435876996061954, -1.936117936287073, -2.0343829463603686, -2.0173235325578136, -1.865833335905384, -1.5776529161449937, -1.1841936874427552, -0.7232027607825527, -0.24226390900445174, 0.18188792252049843, 0.4442420392402008, 0.4202470093056637, 0.07265855087399124, -0.48593136169576095, -1.0697304881168404, -1.5259058009562259, -1.7718262068753867, -1.7925878013633803, -1.6194550676560073, -1.312059203771284, -0.945443472815543, -0.6115969728040929, -0.3555181439580814, -0.12552112295136159, 0.1241760882355467, 0.39885603548691884, 0.6696550126884502, 0.9189866318846946, 1.1254372153007854, 1.2581639233656179, 1.303685525613602, 1.2662074515255273, 1.1654040957920173, 1.0290505137682568, 0.8756810782640448, 0.7169160088113606, 0.5606222334055727, 0.4069239631497206, 0.25840341907323344, 0.12296633327056011, -0.15513715162274025, -0.29964005518291287, -0.4196503420422272, -0.5220862790488993, -0.645003663933914, -0.8245168914523922, -1.0643716596059292, -1.3417942624017818, -1.6214732434910797, -1.8600955753602681, -2.0173503577867002, -2.0663035872828446, -1.991447505445587, -1.7924794812388567, -1.4948753106087602, -1.1293653470068434, -0.7374438435240191, -0.3893565573631534, -0.16516525957423162, -0.15149697360921507, -0.3758506494685362, -0.7708687095515153, -1.210983449388309, -1.5760468445834999, -1.78136238495023, -1.8015214626369869, -1.6612396291131506, -1.4091286846879583, -1.099265309076845, -0.7876173629121375, -0.49262340780306885, -0.195621394581317, 0.11404913526174464, 0.42445507688492473, 0.717844032237891, 0.9896123073627303, 1.2181452117357567, 1.3701127160848376, 1.4337368797496115, 1.4153754062577322, 1.3330743321065033, 1.2097821142858614, 1.0597562595987866, 0.8922071370140944, 0.7140483439295738, 0.5275983389187507, 0.3403487662111575, 0.1641728379841031, -0.14168727821402932, -0.2719430073241658, -0.37599303630118525, -0.4570559636546684, -0.549570034742389, -0.6924916729706441, -0.899765428502425, -1.1599585769809135, -1.4457314922201623, -1.7184505268994146, -1.9343222409103142, -2.059611247148748, -2.079268699073717, -1.9924195457549836, -1.8143833479286333, -1.5641279439147828, -1.2710599832751373, -0.9966995656358373, -0.8054122393225629, -0.7555040571523977, -0.865755928323174, -1.092884505503222, -1.3563008195118358, -1.575678989792888, -1.689519649116415, -1.6816307246109021, -1.5672418449480405, -1.3710678475587508, -1.1192606909269738, -0.8317705521058523, -0.5186330493790616, -0.1889358642489618, 0.14619341235367825, 0.4710271760312611, 0.7779218443758757, 1.062321600458654, 1.2977487925682223, 1.4540747626571142, 1.5262627446596888, 1.522556504536974, 1.4570272744265382, 1.3467186326973795, 1.2019485795442781, 1.0295859681976665, 0.8351215639327323, 0.6232041107249365, 0.40599519181951277, 0.1977581382943038, -0.1272820238510228, -0.24421029629153176, -0.33625090487972326, -0.4017213812254607, -0.4679294101666521, -0.5726008198926213, -0.7373260194720125, -0.9633513202805887, -1.2347132168777668, -1.5212723321001163, -1.7817326968296299, -1.9774450193796338, -2.089905810401564, -2.1156650539045745, -2.060010990332148, -1.9335252179601388, -1.7518818812039307, -1.5579265836954748, -1.4026857246499969, -1.3264159760027596, -1.341949986776191, -1.4204482872060145, -1.5095366686022837, -1.5636335506476609, -1.5581566207268025, -1.4972532644413554, -1.3854046228913737, -1.220757387603317, -1.0061977480865156, -0.7418107875150529, -0.4387935244814622, -0.11492001834333561, 0.2132240049781055, 0.5341708218138879, 0.8408679886274673, 1.1201635443187141, 1.3448992833868336, 1.4944924693685506, 1.570406955401513, 1.5790424750284664, 1.5286377875167672, 1.4306328873409369, 1.2924333724647832, 1.1191112599649993, 0.9148828666199482, 0.6868059864548947, 0.4507539315362349, 0.22140523641097193, -0.11176353326602902, -0.21583574595866217, -0.2992131932492456, -0.3555545180394224, -0.402847935984712, -0.47335597656781186, -0.5928038283600602, -0.7740701289092694, -1.013319891588472, -1.2919946923337133, -1.577319413218101, -1.8275717557623576, -2.015005221368709, -2.1323202006123303, -2.181183716397591, -2.1664875276645374, -2.0958338302119843, -1.9914286424157026, -1.8860922576942083, -1.80482502734236, -1.7544093327817767, -1.7178968102739407, -1.6646290753826236, -1.5779369290036411, -1.4641016588021707, -1.339086555395438, -1.2006974077535324, -1.0324198748395015, -0.8274366901587317, -0.5806551795318154, -0.30111670716234135, -0.0033358161609739123, 0.2993835806598998, 0.5988668548335195, 0.8829416969890612, 1.1355873246355805, 1.3374227470288829, 1.477492331405516, 1.5574478879594578, 1.577674596632411, 1.5407030260835428, 1.4538694957651264, 1.3229523717443543, 1.1523493857781306, 0.9457733069088532, 0.7123775904835153, 0.4700251992532221, 0.23233418592786745, -0.09544070879582164, -0.18759082011138228, -0.26531157435390806, -0.3176424799005025, -0.3536613299550515, -0.3990791921906433, -0.47923854145186745, -0.6141491879261539, -0.8101482968907361, -1.0593194609322798, -1.3429173573473212, -1.6247228626884533, -1.8668891478826017, -2.051261858931987, -2.1777931756743043, -2.249711342041938, -2.2690396322416637, -2.246823618256174, -2.199505888573847, -2.13796692878169, -2.0616322288026323, -1.9619011508152127, -1.824229735070097, -1.6499657599102393, -1.4578149597585885, -1.2673075651752006, -1.0775233127933876, -0.8754425622152412, -0.6565025166959717, -0.41628930795718083, -0.15880385174512127, 0.106250082378487, 0.37166289173806655, 0.6319618726410425, 0.874987560405119, 1.0904049115537973, 1.2679769965671395, 1.400527060829407, 1.484359913858519, 1.5138419933199863, 1.487961842239616, 1.4112632689921731, 1.2888435057557561, 1.1253720778990595, 0.9248746700933702, 0.6978571374241949, 0.4620877212831545, 0.229337216158298, -0.07853416515690365, -0.16019319078485258, -0.2359499889540051, -0.28983343329704914, -0.32210672173154226, -0.352520089427307, -0.40397505935728095, -0.4982826976249017, -0.6486967636139362, -0.8546947378026334, -1.1089401502464211, -1.3882888229462595, -1.6565564476371142, -1.8858831460370136, -2.067366556977885, -2.201700451210346, -2.287176745414372, -2.3288774067991374, -2.3355895445414, -2.3080203279932876, -2.240408482167662, -2.1265377973677673, -1.9604400692463138, -1.748683696942004, -1.5104300743611219, -1.2661660597020195, -1.0228495906137507, -0.7815301769715495, -0.5429721251580265, -0.3036602496510277, -0.06532428661266057, 0.1651615730252031, 0.38815122951844594, 0.602978653049202, 0.8034333623153461, 0.9854728071372877, 1.142779458742216, 1.267940198131083, 1.3528416088721993, 1.3884243957833007, 1.371536007105869, 1.3048006856212657, 1.1930100992361472, 1.0413124769475892, 0.8550245363669157, 0.6455498166532535, 0.4285689301361725, 0.21322603581518898, -0.06420209049289716, -0.1375413054401, -0.2140506841683376, -0.27457638780211074, -0.3108877813044227, -0.3360459880594744, -0.3693705276926671, -0.431122145244981, -0.5386714936671808, -0.696893081022242, -0.9050387031081504, -1.1522494736366897, -1.4127063284827435, -1.659515166063916, -1.87486103365121, -2.0515581066967545, -2.1844881428608294, -2.2733369373818113, -2.322473553245717, -2.3292530568885175, -2.2862875283489332, -2.187655550620359, -2.0295067532699305, -1.8171464945979667, -1.5667301968632315, -1.2981253229126204, -1.0256590656822986, -0.7620934758643522, -0.5120367070319705, -0.2754558627160487, -0.056266743547643515, 0.14342883214229157, 0.3303310960473706, 0.5081824593415547, 0.6757263631608892, 0.8309437373870622, 0.9696321786447945, 1.0856378021953292, 1.1686580703213512, 1.2076054604987414, 1.1984879330360159, 1.1428462241929915, 1.044654872265287, 0.9093194355848231, 0.7444452604532528, 0.5621676152797741, 0.37435157645758455, 0.18670458851705782, -0.05808741130917379, -0.12571505345904924, -0.20195213705639573, -0.270466563435189, -0.3163279133458893, -0.3439030806759416, -0.3685224060512659, -0.4076766079131492, -0.479854037819885, -0.5934338333956592, -0.7501076659194227, -0.9486058826721138, -1.175605005991918, -1.4115972469165778, -1.6371539225366283, -1.8373691059303336, -2.002146601400358, -2.125471769206125, -2.205877845254825, -2.240518633713712, -2.2238622531319554, -2.1508608172548875, -2.018533392750893, -1.8297866477471303, -1.5971303768138638, -1.3366157044275826, -1.066106921432015, -0.8028077398168642, -0.5556474278467982, -0.3306553999611373, -0.13112227745278782, 0.047184820328841845, 0.21184248477253276, 0.36576451847272373, 0.5084327883555028, 0.6401580185663294, 0.7603499767690027, 0.8644396105317795, 0.941458358786009, 0.9810483691772357, 0.9796137137764692, 0.9372679746656618, 0.8566195792346473, 0.7431577547730182, 0.6066844944829385, 0.4590546523918945, 0.30737956012332623, 0.15391406521067993, -0.06271527701537014, -0.12706333615935514, -0.19805249698433539, -0.2701741931579762, -0.3275908285993354, -0.3639768479516735, -0.3879153260734791, -0.41482365551232137, -0.46258014789722374, -0.5412800319455773, -0.6523504606633982, -0.7986977359539428, -0.9787502035516104, -1.18277866404142, -1.3953334708590406, -1.5988797003407376, -1.7787465836858412, -1.9236086281312088, -2.025841549651899, -2.0813228091328573, -2.0868228061808214, -2.0388454804912204, -1.936134575419444, -1.781069751113532, -1.5823530758780886, -1.3510282007847687, -1.105400604437999, -0.8631397625555306, -0.6370107250448376, -0.4345980080292002, -0.25458159999975777, -0.09037669343033182, 0.060647911562113986, 0.197005982966582, 0.3189574115932555, 0.4296655156750516, 0.5306035210375986, 0.6188052831823236, 0.6860646741450275, 0.7251209464581613, 0.7318558343990238, 0.7046594040295212, 0.6455383662458338, 0.5599431547256792, 0.4579082118950253, 0.34887520631600094, 0.235656504132342, 0.11863921814465195, -0.0749941472229215, -0.13924637958311004, -0.201133351357583, -0.2688955671727707, -0.3337611184308266, -0.38281307437796486, -0.41405857773771904, -0.4380694889933922, -0.47192780438703535, -0.526956804649733, -0.6052133603808325, -0.7092462910446587, -0.842627045384602, -1.0048069441567569, -1.187072484492588, -1.3735570912654849, -1.548386323429427, -1.6975038504910474, -1.8092753467405163, -1.8770316646534886, -1.8979069522497682, -1.8695703105893775, -1.7929290132737223, -1.6712994635249392, -1.5104098605341052, -1.3184126493724404, -1.1119161483012867, -0.9072444403886433, -0.7161848716242454, -0.5432076683902414, -0.38432134443429333, -0.2355909103134475, -0.09963640242514407, 0.019307246748113214, 0.12226283422304232, 0.21321439005367226, 0.2945840472628511, 0.3657628280306029, 0.4230979468074354, 0.4619692507954303, 0.4771017959402986, 0.4665484368568947, 0.4323391125548849, 0.37886188306820834, 0.3137616404136575, 0.24270795200152984, 0.16609627835059546, 0.0842755030236676, -0.08846888061860517, -0.15730982322740383, -0.21222516854383808, -0.26949587417766796, -0.332413273845797, -0.3908782735861972, -0.43445853185113664, -0.46432912892309935, -0.4936556122512947, -0.534856694641303, -0.5926679226210002, -0.6697146746753101, -0.7684068261363824, -0.8915035794104972, -1.0372196103894917, -1.193233667936097, -1.345594980613332, -1.4816732775531205, -1.588940400361619, -1.6584026479970932, -1.686391084768482, -1.6709679785145344, -1.6145904588741327, -1.5216141229032367, -1.396108523385677, -1.245283526179666, -1.0831666431222955, -0.9226413608825722, -0.7710182305874896, -0.6298871542612652, -0.49649542290380877, -0.3697194300605282, -0.25386377736909027, -0.1541965816353435, -0.06960978652931102, 0.0032375050435962944, 0.06690731588926775, 0.12319091325208437, 0.1723925953659626, 0.2116253942874147, 0.23636557487681645, 0.24520731591408856, 0.238314429957869, 0.21741533903088142, 0.18703783981663621, 0.14980585158460952, 0.10548702332999853, 0.05465590947355044, -0.09805237079666843, -0.1755857578366127, -0.23042702021002331, -0.2765536863369062, -0.3284040300123179, -0.38700245881764933, -0.4411423077387621, -0.482898421425939, -0.5168251371833679, -0.5531939810334165, -0.599743748592964, -0.6611528770164115, -0.7382247648370309, -0.8319220029783839, -0.9440559370625462, -1.0670964704309416, -1.1899293888716926, -1.3036774617557618, -1.3968840203506014, -1.459302310407792, -1.4866223162010679, -1.4775519416230507, -1.434563907853194, -1.3629982850494133, -1.26642454289303, -1.152017375827308, -1.0307420732316839, -0.9116059635964692, -0.7975358889904676, -0.68913673666397, -0.5851655250494276, -0.4844999216256837, -0.39162530275314567, -0.3116411281534078, -0.2443327262898385, -0.18842284836211065, -0.14022617535681428, -0.09527279468022566, -0.051556754781405416, -0.010269759416897499, 0.026869296250662065, 0.057551090339440725, 0.07764365235100448, 0.0861405454508324, 0.08531227827792068, 0.07616180239508133, 0.05853767657987513, 0.03237903381670514, -0.10284508097209584, -0.1896855566410348, -0.2513060782469665, -0.2923089009501332, -0.33032738342563583, -0.37857055329515293, -0.43331526121898356, -0.4843684502912402, -0.5280109161724651, -0.568209849453309, -0.6122446031023823, -0.6660739524698446, -0.730235500558497, -0.8037241366215393, -0.8884233765586157, -0.9815808886826516, -1.0760955418093074, -1.1660941655690218, -1.241897386310718, -1.2928194430796225, -1.3145212342074228, -1.3063684932985398, -1.270530814714709, -1.2130223642464684, -1.1386435740051901, -1.0538081825787895, -0.9664956003929219, -0.8819958116975573, -0.8006176542238266, -0.7228103760313197, -0.647051142678014, -0.5725229572830484, -0.50381587574957, -0.4446034766467404, -0.39595101644514963, -0.35639536966435487, -0.31962684076897213, -0.2805813987081238, -0.23803141076152792, -0.1913018254559364, -0.1397752612811091, -0.08840073134117761, -0.04502652024954888, -0.012339786035879634, 0.010115671183256625, 0.022605748070577247, 0.02507489055053616, 0.016726475832438303, -0.10483397015035122, -0.19731944528730117, -0.2670112898026264, -0.31088988739203643, -0.3406467707131573, -0.37358553170158915, -0.41591100314749363, -0.4637847313217874, -0.5122080766883277, -0.559567169574707, -0.608773956282176, -0.6631357022275468, -0.7218755648203632, -0.7830363350028658, -0.8475705623347459, -0.9157898609039877, -0.9857393050180683, -1.0540570644761702, -1.112569166362951, -1.1512348212898416, -1.1655970276835514, -1.155020378368305, -1.1220033903072228, -1.0735164340537664, -1.0162861131810317, -0.9549650568501707, -0.8945731995711832, -0.8367414713251079, -0.7811913299596097, -0.7281243466261739, -0.6766141655723255, -0.62764896393537, -0.5846476623580196, -0.5486970759187935, -0.5189048242498087, -0.49147735296330153, -0.4605961227131545, -0.4229566891298904, -0.37780816575536935, -0.3232506684930066, -0.25880536218773437, -0.19157855813490673, -0.13045949146617739, -0.07934486248362829, -0.03978130386226557, -0.012384562444497328, 0.0027894953190492184, 0.0057027988041354356, -0.10461669924834306, -0.19664194601290733, -0.2686740516157531, -0.3170995038836109, -0.34591929108467573, -0.3673611764631199, -0.3922436293971072, -0.4255622241139058, -0.4678223377795738, -0.516761458637657, -0.5710444821735827, -0.629026584820803, -0.686759201350235, -0.741393155912429, -0.7930916199140732, -0.843327366887155, -0.8938042521083484, -0.9438471299231467, -0.9865699558959857, -1.0136569978124714, -1.0206132802408547, -1.0064922680851938, -0.9742449346249739, -0.9323174102113592, -0.8881696190464793, -0.8451305319868231, -0.8052003728180703, -0.7677128064341082, -0.7322290833862961, -0.6992304596059683, -0.6696465148328159, -0.645167065714003, -0.6268234464660749, -0.6116991980116063, -0.5951100095365455, -0.5739011963833194, -0.5457276183025339, -0.5081827768650442, -0.4599025750110343, -0.39943539610866674, -0.32780233100229245, -0.2518713668814619, -0.17960553153010644, -0.11638466433238025, -0.06598868412524864, -0.03038300535719678, -0.009572289449155811, -0.001268861694044344, -0.09987659313846166, -0.18553050022961787, -0.2519585541137326, -0.2990115281032347, -0.3279940826683575, -0.3443375528839824, -0.35699928642709033, -0.3752323611109474, -0.40517311172090775, -0.44727786482092186, -0.4988307108089189, -0.5550183801947861, -0.609282589022122, -0.6580574010472839, -0.7010540019209432, -0.7395856818404202, -0.7762381745722629, -0.8117044066326409, -0.8405978652844732, -0.8566545295466713, -0.8565616283592851, -0.8394188634008319, -0.8087454894709774, -0.7733020046114355, -0.7398598590027181, -0.7109412137772065, -0.6866630730055301, -0.6653913828102036, -0.6460579752583288, -0.6302145163396945, -0.6198071403731149, -0.6156976141508073, -0.616190307324589, -0.6147886266523206, -0.6054313656629289, -0.5873935650189434, -0.5606408311316574, -0.5232794664453935, -0.4744743596152273, -0.414215599902297, -0.34366979348213184, -0.2673248822296975, -0.1920816838218628, -0.12487501235583714, -0.07129941523281283, -0.03430964899444192, -0.01334992683917888, -0.004043014410241675, -0.08746735862930376, -0.16117260427971525, -0.21619691884009873, -0.2545913646636892, -0.27934382157085696, -0.29283947668981686, -0.3000600521296103, -0.30937451177234027, -0.32845346444701334, -0.35998046263339356, -0.40181470273106834, -0.44853693849540055, -0.4933579649399039, -0.5327544756189674, -0.5666438775645225, -0.595877113755234, -0.622363566606719, -0.6463415939871189, -0.6637743979129234, -0.6702728319114971, -0.6644627686820354, -0.6463434819623992, -0.6198562702084607, -0.5922321678722632, -0.5686233148653218, -0.5507182448170355, -0.5382796135049548, -0.5289530496459809, -0.5213046375810949, -0.5178672653745493, -0.5208142979086765, -0.5297923978879021, -0.540984066679745, -0.5469109080295371, -0.5421274024213416, -0.5265791892756345, -0.50114258911291, -0.46589797053648174, -0.4217776717182451, -0.36919268868577765, -0.30768429531824615, -0.23931416038234662, -0.17030948978250668, -0.10856583122093873, -0.060451866720158134, -0.028437203959796882, -0.010857086974670206, -0.0032231426385301003, -0.06568375407455242, -0.1207843780977982, -0.1603093507973492, -0.18608077862457242, -0.20262364463474405, -0.21221592011501422, -0.2169155239135836, -0.22216048223832657, -0.23412269196403648, -0.25558807979487647, -0.2852468360822035, -0.3183271454919766, -0.34942756510909007, -0.3759650145631018, -0.39838511815702454, -0.41763866580783676, -0.4348885154627861, -0.44965580167741415, -0.4587867860550479, -0.4594762789234509, -0.45150008977178185, -0.4358615893237675, -0.41608985843072377, -0.3971897501288071, -0.38235200721167545, -0.3726787816125362, -0.3680225585989902, -0.365726177949361, -0.364559820317819, -0.36715295834757833, -0.3756017403414986, -0.38863497306011174, -0.40198304621336856, -0.4096561960357315, -0.4074415634977893, -0.3950136886375391, -0.3739460251125212, -0.3461760651406875, -0.3132989116714038, -0.27488835252033467, -0.22916634388323326, -0.17694794071498068, -0.12346775889043542, -0.07612945284726846, -0.04062933147051479, -0.017949291969308296, -0.005656997044278905, -0.0008400024663164945, -0.03539268458407158, -0.06506589165830051, -0.08575147139887156, -0.09829727820065343, -0.10603910132143295, -0.11083559120049886, -0.11331030593717793, -0.11599451152308926, -0.12229335680415078, -0.13374837882914392, -0.1496625603145686, -0.1670361696440313, -0.18275968359926115, -0.19557847002098697, -0.2060682027695216, -0.21514408783728306, -0.22343016491887646, -0.23047952064787164, -0.23430086396228414, -0.23346180902892075, -0.22794919430835353, -0.2187583321828002, -0.20796602296793104, -0.19821267497302883, -0.19097076450271006, -0.18692016289840843, -0.18593834677430618, -0.18622489486854538, -0.18702660517946382, -0.19001835167039674, -0.19653794840302677, -0.20535889852585493, -0.21377342184357273, -0.21858194382767362, -0.21745829118321364, -0.2102052058411203, -0.19822782549243287, -0.18327212440559107, -0.16622355194085045, -0.14624212015677726, -0.12184203082883172, -0.09333328825662565, -0.06384199600359136, -0.03805336918162481, -0.019412236287846708, -0.007879699977308354, -0.0016370963409029758, 0.0004979180568036075, 5.453789968491124, 0.04856371567732554, 0.08469985391101796, 0.11566110990342593, 0.1418197599085368, 0.15764105192920988, 0.16510125155415942, 0.1768304116940793, 0.19058208429080176, 0.2027749543839456, 0.221677644691859, 0.2378439251283411, 0.24303512133321492, 0.2510027318467815, 0.26042593547846976, 0.26597711098222737, 0.27808924784642164, 0.2948448024791389, 0.3053511534498299, 0.30946891217815425, 0.3117734377691252, 0.31229737113086825, 0.3034007269555177, 0.2807768638519448, 0.2418428366934655, 0.19905079760214808, 0.15649272736155256, 0.11378779221845624, 0.07396248231839762, 0.02726135334475618, -0.024706096218670683, -0.07637919929948538, -0.1275584369309811, -0.17541111266648038, -0.21030003707431538, -0.2204039931913032, -0.21046935834389938, -0.192339402566369, -0.18013055538731, -0.1751067558909485, -0.17162787364734508, -0.17144235276200545, -0.17796371262860675, -0.18787775210662075, -0.19416759425753527, -0.18471994720708512, -0.15810869568898678, -0.11796333500280587, -0.06353714297316444, 0.09726202161348502, 0.17148262198617373, 0.23155816208466778, 0.2807446106003581, 0.3149073684799815, 0.33861345976406554, 0.36484039751009867, 0.391661709795677, 0.4154169920110452, 0.4421118776412845, 0.45941521534160507, 0.46477608233519574, 0.47780649451168894, 0.4944761639044498, 0.5065841275960556, 0.5287180390710515, 0.5590225464211805, 0.5795942155238121, 0.587306218663893, 0.5873867785023309, 0.5798749796122424, 0.5593380820300088, 0.5167423733894069, 0.4470366570839035, 0.3689315125444309, 0.2915136210199066, 0.20903756523916633, 0.12475254322802592, 0.03287841179682612, -0.061718906532095684, -0.15159279876686144, -0.239906902652344, -0.32285046478327434, -0.3831617631735918, -0.3994711983130787, -0.3843684341060551, -0.35923786707584243, -0.33990253625256156, -0.3318080002028229, -0.32504061238870297, -0.32159011232724, -0.3308967452131123, -0.3437873106897462, -0.3475906268710138, -0.3275306865346475, -0.2766048182445819, -0.20189118067014153, -0.1065954377580622, 0.1360789014373425, 0.24510599653359214, 0.33190443910231, 0.40561513940929805, 0.46310904306931644, 0.5092288930833572, 0.5500451912760732, 0.5860333738699235, 0.6154551491902873, 0.6403569753471374, 0.6530338090467218, 0.6568795780714867, 0.6700945815215885, 0.6914517555729494, 0.7123142296047705, 0.7395783828330897, 0.7739009923710695, 0.8009078724378218, 0.8160103123221373, 0.816455018057628, 0.7955956174259727, 0.7592795600978804, 0.6955306199641593, 0.6010447914672077, 0.49685010919168154, 0.3941689701307969, 0.27744707516719086, 0.1476649248935905, 0.009856108243078136, -0.12365464546867717, -0.24010060589835952, -0.3469850913827592, -0.4460727600582045, -0.5160922830885984, -0.5324695028062506, -0.5146243328611874, -0.4897628078209806, -0.46760273974360306, -0.4556583100451677, -0.4418944302802649, -0.4323027750892785, -0.4420612225201741, -0.45557054478642917, -0.45347904876854483, -0.42184624744164223, -0.34761090574960013, -0.24574365915798171, -0.1268672556132885, 0.15656699472133526, 0.2888645783932998, 0.3974661362871968, 0.49588524628212144, 0.5787649164853648, 0.6472867207512183, 0.7030851332053443, 0.749237196221421, 0.783635792560359, 0.8021941769751015, 0.8046635787749523, 0.8054906348844829, 0.8225156577644199, 0.8519923495303116, 0.8796249871558189, 0.9062328683725406, 0.9369350310152221, 0.9637579108654957, 0.9819319176115273, 0.9805566661886856, 0.9451891084241021, 0.8927601462613389, 0.8112678543972045, 0.6971603652741737, 0.5704281130116967, 0.44240267726953125, 0.2918987729942748, 0.12091393333700605, -0.058773441059048824, -0.22495128618977298, -0.3572247908557521, -0.4652791239948377, -0.5610099526186354, -0.6233781507901743, -0.6329105041019232, -0.6093113882117437, -0.5776788455040384, -0.5485667302444068, -0.5289707730908131, -0.5077564646336483, -0.49334196455415796, -0.5024446216460151, -0.5168006922474843, -0.5099249400994923, -0.4677096720943301, -0.3754445394199193, -0.2566155400634407, -0.1295376972891169, 0.1570437483671667, 0.2951507106566612, 0.41481773964658336, 0.5314780979663143, 0.6382954221272951, 0.7293134797388843, 0.8004689562458976, 0.8559883065505631, 0.8962173860335962, 0.9116961551736174, 0.908242003900474, 0.9146397028628914, 0.9431051934247903, 0.9776544018057702, 1.0007154048066362, 1.0162271006298333, 1.0343904876207957, 1.055776986706889, 1.0726490300896172, 1.066997337625217, 1.018289166213964, 0.9446280714351314, 0.8432343682429113, 0.7120864127357629, 0.5650703775912013, 0.4099215264167123, 0.2261919681086375, 0.020229327626223953, -0.18980234231112234, -0.3742288953477872, -0.5116397728450286, -0.6090344046881404, -0.685775817419345, -0.7239870668947594, -0.714491111448963, -0.6756539079186258, -0.6252679716115602, -0.5823003526003455, -0.5536246533497715, -0.5280807965195271, -0.5104330897308047, -0.5168345508718909, -0.5307072695528188, -0.5214016106517111, -0.4737826792438651, -0.3759414365365557, -0.25310039591422695, -0.12643333073396468, 0.1447272576400099, 0.27504634721791843, 0.39490004776857485, 0.5212604667647794, 0.6469062227379897, 0.7583576168372653, 0.8427765039069094, 0.9054269764356102, 0.9502139075817861, 0.9691322864357886, 0.9732368413375843, 0.9942566937564958, 1.0302611035382443, 1.0583276562999924, 1.0655058761651266, 1.0577928675662447, 1.050335334465694, 1.0563027073848594, 1.0613388984244576, 1.0438410490059513, 0.9829832775353109, 0.8911114577283746, 0.7718351565832651, 0.6256608857233459, 0.4618877682571896, 0.283710822823923, 0.07647759480089562, -0.14967256406991417, -0.3689440142986911, -0.5523634550537949, -0.6846709186667779, -0.7692995111615889, -0.825632069542516, -0.8358813115559653, -0.7973105854158437, -0.7287538037844669, -0.650304461497165, -0.5907296354187606, -0.5558083926146675, -0.5291036394904762, -0.5089148279291432, -0.5095752659940094, -0.5188048725911953, -0.5064932238519197, -0.4578699092448764, -0.3655621435226581, -0.24902314871472725, -0.12447208795231725, 0.12540943131993373, 0.24267446755697797, 0.35562259878560254, 0.4819988255079678, 0.617347131593156, 0.7428237232340447, 0.8366682652022689, 0.9076830780019312, 0.9618930196915834, 0.9947780444807031, 1.0158694545282905, 1.0466685003306724, 1.0765467366223884, 1.0876957465368162, 1.0705590086247847, 1.0319548475738984, 0.9937514854262682, 0.9760004364314578, 0.9546020906798572, 0.9139772230039338, 0.8385875906141317, 0.7341396150837926, 0.5998352282570449, 0.43805864562177066, 0.2569063428500395, 0.056748360254256724, -0.16419234840269667, -0.39147837433441457, -0.5966390706552481, -0.7605416228494322, -0.8726354890675468, -0.9370008964648353, -0.9692668593715242, -0.9522031596567457, -0.8835295244583302, -0.7814704107187284, -0.6720079820267891, -0.5911255923795499, -0.5467790786892246, -0.51863392601729, -0.49858799761104106, -0.4919661048637957, -0.49067717872905037, -0.4727863294772396, -0.42540063843145237, -0.34245311817842716, -0.23826260624331638, -0.12102917949177751, 0.09582712427947662, 0.19331987823934893, 0.2946388348398271, 0.41990169090053037, 0.5642775331822028, 0.7005502734306123, 0.8004577794557833, 0.8795011352422574, 0.9454834123887879, 0.9963456993856218, 1.034238970397565, 1.0640460952583128, 1.07581050609535, 1.0645258617863125, 1.0237196430015694, 0.9633347068418355, 0.9030272096121181, 0.8554425376711524, 0.7941519405237255, 0.7192698359745423, 0.623533490625563, 0.5050508329051488, 0.35387698652706195, 0.17257705606465873, -0.029599931104622605, -0.24897335344138632, -0.4759231498796396, -0.6929661800983196, -0.872461159011309, -1.0059160646553993, -1.083522114698291, -1.1136884677330972, -1.1100244803870498, -1.061039150186998, -0.9599042760973884, -0.8241003486973312, -0.6863075896377528, -0.5842535109266734, -0.5269127450061822, -0.49520130310868005, -0.47565575456853953, -0.4621242345800658, -0.4489879772769825, -0.4241266724544373, -0.377006052004447, -0.300426804004361, -0.20825871737865229, -0.10794473868330644, 0.06467432521534357, 0.1343242922832445, 0.21997785834969705, 0.3440673027456592, 0.4950390085970782, 0.638254417660364, 0.7458777463387086, 0.8337537608032575, 0.9079900915122965, 0.9689025965173503, 1.0150433231995504, 1.0384659634150466, 1.0313177408501717, 1.0027393165966068, 0.9495468799143135, 0.8827083657605058, 0.8107610157121387, 0.732730750029175, 0.6281651054719987, 0.5104609838963051, 0.38572581252190813, 0.24703109479718408, 0.07639968609896589, -0.12730175122268364, -0.3522672654031561, -0.5850202889588803, -0.8131688043702485, -1.018635462028682, -1.171649054157939, -1.2670042561521153, -1.3023084220021655, -1.290279767424244, -1.2401216306558887, -1.1487702090479408, -1.010854573946267, -0.8443552068737058, -0.685206627304354, -0.565248554231722, -0.4914549057701869, -0.4502317989897112, -0.4244460179240786, -0.404440253687049, -0.3850505704198454, -0.3576683416430185, -0.3146602349800339, -0.24736067262798034, -0.16838869796756792, -0.08963582104829554, 0.03455261020208066, 0.07290063536481016, 0.14251879777310347, 0.2612587081850746, 0.41189110719100286, 0.5605585908932589, 0.6803411046399765, 0.7735891976843016, 0.8466265175013197, 0.9068805089623756, 0.9530323197339975, 0.9723347671617872, 0.9540744503036896, 0.9183053259407544, 0.8661940086459223, 0.8041209715788133, 0.7264507561088508, 0.6210578916451107, 0.4774633757256172, 0.3180073589233881, 0.16210394694856176, -0.0025131906173898955, -0.19965468732868705, -0.4309167949814905, -0.6773227303053392, -0.9160316821674356, -1.1365060950800232, -1.3236645009159702, -1.4505317311897685, -1.5042123745086131, -1.4901533375219378, -1.424996265677708, -1.3198109769322246, -1.1800204911444778, -1.008184436345213, -0.8189436339060864, -0.6413737164585157, -0.5031667848880361, -0.41188585403291184, -0.357808470453922, -0.3234347373566588, -0.30317584933210706, -0.28852413210801237, -0.26781190793837745, -0.23263708807643027, -0.1767120075697076, -0.1124522175078447, -0.05836997949673275, 0.00804404018995394, 0.02138140687703626, 0.07808811022069885, 0.18764355845418196, 0.33042248597699003, 0.4790171052799415, 0.6007144455624907, 0.689168541181276, 0.7573494182395321, 0.8153962190294198, 0.8577495959727041, 0.8748825037915791, 0.85659662691438, 0.823516942333054, 0.7800192461239489, 0.7254516933732872, 0.64234201661739, 0.5114775188251959, 0.33471710092274404, 0.14368118086914883, -0.040339862222958135, -0.23203015511698305, -0.4528002355899692, -0.7032877489873776, -0.9610848941284471, -1.197673137183178, -1.399621943017484, -1.5571267621781282, -1.6531090014104948, -1.6643473946800906, -1.5981115960253254, -1.4747435648914498, -1.3136128213669123, -1.1267902222614201, -0.9288875916900511, -0.7279066425773812, -0.5394698543246125, -0.38893368806380746, -0.2856295944321155, -0.22115145268884734, -0.1817755002388036, -0.16609525769006672, -0.16136853999981376, -0.15296684092532425, -0.12502199404491415, -0.07979624567260205, -0.03529644116985528, -0.012683738053461891, -0.011424742484821252, -0.013099260997189669, 0.03417935225713862, 0.1352612366229436, 0.26753129091639605, 0.40956330737157515, 0.5237190841299717, 0.6053676791807032, 0.6718925126676896, 0.7294304080737037, 0.7656063047296413, 0.7782251802667394, 0.76497953692312, 0.7359886744857032, 0.6961731788584697, 0.6413344933559426, 0.5511288111163375, 0.4048992611523159, 0.20830875417840683, -0.0011837062214542211, -0.20655552874971467, -0.4200015405331175, -0.65496868453206, -0.9096776141579477, -1.1617620961546125, -1.3818776057843651, -1.5535775579586757, -1.6740327460021882, -1.7309486700334076, -1.6997719680847367, -1.588309742205356, -1.416358107361474, -1.20834665340023, -0.982916097950858, -0.7677141090181814, -0.5643345427361341, -0.37748467019787085, -0.22963734253580986, -0.12831997830455286, -0.0649324619366268, -0.030052389948324744, -0.019054911692572677, -0.020874920635080636, -0.025474250984406085, -0.01023410472142762, 0.018114313971113228, 0.03735053680341318, 0.028673953044350574, -0.02392814374897513, -0.030927416238580384, 0.011625015851290377, 0.10500272606263167, 0.22402996694425936, 0.35496629721152206, 0.46498136673633567, 0.5475778024897789, 0.6154526434443411, 0.6699781626024094, 0.700487506666753, 0.7138040691344394, 0.7091991806163014, 0.6826110865147161, 0.638171363090801, 0.5711070429086643, 0.4661091013056342, 0.3108485211134365, 0.10700282708531694, -0.10896908648485537, -0.32335147236193373, -0.5456277780043188, -0.7823372040962382, -1.030171190530516, -1.2662023096799242, -1.4613366982443405, -1.599302318426435, -1.681287045105542, -1.691294672350969, -1.6123861700952684, -1.458644952795207, -1.2498466950488343, -1.0118692500882287, -0.7671352232655486, -0.5427385853513768, -0.34140137989560343, -0.16579286862726392, -0.03288280194741133, 0.053728508150758345, 0.10228056748165859, 0.12187229308014481, 0.12508514434453788, 0.11711507319657151, 0.10226005657690992, 0.09759132444349707, 0.09885555724466133, 0.08933206033917106, 0.054350385139534954, -0.027505861180175964, -0.030734072655137345, 0.012887525670269495, 0.10029644038123824, 0.2100654660906335, 0.3348022429300847, 0.44980147163542455, 0.5427946029909796, 0.6145102675540229, 0.6602044430192288, 0.6815601615043687, 0.696493495775477, 0.6993351442334418, 0.6757196617570892, 0.6245541547172065, 0.5411643636977062, 0.41934387930405065, 0.25851444202128115, 0.05529311252965905, -0.16486916273671484, -0.38533124715293804, -0.6079878409126566, -0.832612987419238, -1.058558796651505, -1.2659646957706312, -1.430054565690248, -1.535292452263156, -1.580198327750756, -1.547305746915628, -1.426871111127624, -1.2379333005902677, -1.000764290578166, -0.7446621261182584, -0.4974049733658356, -0.2756901821583655, -0.08363486110842107, 0.07644269757490736, 0.18941089019785218, 0.25136874671651827, 0.27180349128599257, 0.26733211759246667, 0.25664196533159334, 0.23734565202473432, 0.21066578436367447, 0.18249208420839247, 0.15535627279841135, 0.1216604944437629, 0.06805596962036525, -0.023226544139694254, -0.013797166963362225, 0.03958617883937785, 0.12838531704943756, 0.23855158052450964, 0.3661730421021097, 0.49165332967425524, 0.5970643849660906, 0.6728694412910724, 0.7108870301076888, 0.7256952748375436, 0.739279407199471, 0.7412778611869314, 0.7160816396883725, 0.655909220190193, 0.5543345014980222, 0.4161472777539148, 0.251284869762661, 0.05274328349392545, -0.17002206550647123, -0.39292832377125353, -0.6070689346733744, -0.8093899656475493, -1.0026005615438456, -1.1682944508688522, -1.2912687880344813, -1.3607490392665726, -1.3695850985963, -1.3030174220100763, -1.1563837746144112, -0.9505212852200847, -0.7033687311690102, -0.44656214759153046, -0.21311830367901166, -0.012541607982891381, 0.1538017786927364, 0.2886556151596727, 0.37673282908443884, 0.41169590660560934, 0.40358641483525204, 0.37865548422812556, 0.3567820902150345, 0.32476573172392065, 0.28074515547420476, 0.22624544754350417, 0.17376911010167903, 0.12405259572399108, 0.06565074743035842, -0.007449555389666611, 0.02170761249782127, 0.09228192107242983, 0.19235381894110562, 0.31074595426387763, 0.4477751308908294, 0.5850526157539081, 0.6994691731191258, 0.778034821580978, 0.8141631551867561, 0.831043338066374, 0.8452362758258788, 0.8413186441885913, 0.8037615589958855, 0.7250924497262325, 0.6021961779907071, 0.44946444399885666, 0.2785421231759139, 0.07854288544437217, -0.14811012168008458, -0.370034462239628, -0.569115443426089, -0.7431693110048111, -0.895160169986566, -1.009814486583172, -1.0846849484462333, -1.111857502588206, -1.0812787553627352, -0.9884808522227087, -0.8313500204254463, -0.6260943914368048, -0.39050712775204316, -0.15473588711765882, 0.0487108609795676, 0.21368005504312265, 0.33983247184585463, 0.4340219706822436, 0.48728670744834934, 0.495065029116123, 0.46274493113312704, 0.42067002588071384, 0.38912378902994904, 0.34731738413914454, 0.2883270458218257, 0.2154605104196168, 0.14898445890983897, 0.09558314342170923, 0.04772662625278495, 0.026385353225186328, 0.08091326839811887, 0.16922613334522213, 0.28321686390949835, 0.41403355960441407, 0.5656672267057193, 0.7162106531433458, 0.8388577320271324, 0.9204561523055496, 0.96084366018843, 0.9886607319376565, 1.0100562407166331, 1.0006385085832656, 0.9400552294355505, 0.8304229305199606, 0.6790199114348137, 0.5058710245120602, 0.3190920882623847, 0.10910050060502233, -0.1185518468243305, -0.3304728263679577, -0.5086359435175984, -0.6521798155005402, -0.7590186966842029, -0.8206071071097091, -0.8427710403445234, -0.8186658245839928, -0.7465784026377753, -0.6325977768478888, -0.4752369003520007, -0.28464169962688013, -0.08072143307566716, 0.11181417649715847, 0.2689838221742197, 0.38936815047804113, 0.4664178446053205, 0.506945505883512, 0.5155991151638054, 0.49175854888838966, 0.43533919852588554, 0.37577643204421474, 0.3308837520118913, 0.2796959422378653, 0.21336478803445927, 0.1383044091688405, 0.07537445706757175, 0.0368813810703415, 0.016433468788618184, 0.06486214315207857, 0.14853773162319117, 0.2588132027691786, 0.3908861975321671, 0.5398566006627861, 0.709745770204613, 0.8764249279668475, 1.0093603235111412, 1.0983952723781913, 1.1514657624939824, 1.1949373603509992, 1.2229493965524718, 1.2003370056137883, 1.1058102374108025, 0.9549142479303533, 0.767670161622701, 0.5673865747550418, 0.35939766103107157, 0.13818486852275833, -0.08640439094302034, -0.2825437421482669, -0.4355041753918704, -0.5432264718038643, -0.6045911927598835, -0.6173356494249219, -0.5868314299562337, -0.5100896182693573, -0.40080751167430395, -0.2698916589105587, -0.11691250665403077, 0.047981903312297576, 0.20831409544075463, 0.3490913577055285, 0.45222953492556517, 0.5210990826596203, 0.5444745805687328, 0.5303001851017085, 0.48962447742568854, 0.4235832720877581, 0.33639935477299876, 0.25455777692000486, 0.18830736713404775, 0.12091445142825853, 0.05098489385221324, -0.009523601308527566, -0.04814649036299547, -0.05211552923030938, -0.02933360539876012, 0.09387871212436667, 0.20460893482997916, 0.3405929001508429, 0.4976181160161434, 0.6720740208371758, 0.8618125555524446, 1.045323178568112, 1.1902804652964654, 1.2926403903843886, 1.3649785144254487, 1.4213061100226676, 1.4468559545049144, 1.4046539810781042, 1.2763100191395906, 1.083373244806646, 0.8590798847126623, 0.6298573271681024, 0.399909341283454, 0.16626536632434144, -0.05578066615261951, -0.23469736475445488, -0.357800032245829, -0.4226939389532108, -0.4373013137294831, -0.40545153986315197, -0.33085511245003846, -0.21357608898045774, -0.07408928058821995, 0.0708034419862027, 0.2174041153800714, 0.3519808049526872, 0.4687007960818786, 0.5630369644084795, 0.6151099225210365, 0.630679829141474, 0.601575125965538, 0.5370243078277951, 0.4471873799405217, 0.3353267049233265, 0.21152913265569223, 0.0991883093212766, 0.004408187726244198, -0.08406248276248014, -0.16006758406202318, -0.20427257587047018, -0.20859539001185098, -0.16388017934744276, -0.08453070571145678, 0.12221536935715045, 0.2594806388282125, 0.420563762223852, 0.6014353906913641, 0.7984672979239867, 1.0048574032815347, 1.2021413935466643, 1.3600180002809958, 1.4785850615291714, 1.5664099391773463, 1.6243539947140488, 1.636317685580006, 1.5736060679525876, 1.4213879736164534, 1.1996550164201432, 0.9478693715279325, 0.6942286639861059, 0.44311716602592904, 0.19795713164139767, -0.016831091126466028, -0.17315961439024558, -0.26168045817429647, -0.2811363639898414, -0.24777642266965705, -0.17484699437816165, -0.06824730180831058, 0.06999337578218884, 0.22108792423407927, 0.36618353754210065, 0.5034443992265943, 0.6150785554264725, 0.6996657685356368, 0.7540823964457998, 0.7574605434101824, 0.7172858170629373, 0.6377951081042169, 0.529208640896979, 0.3983215105570033, 0.24856887934472657, 0.08720156757620941, -0.06264837174634451, -0.18976509054313803, -0.2973121046978298, -0.37607658734269095, -0.4036056603698861, -0.3720167495493981, -0.27822781203034647, -0.14284019917386404, 0.14879553749488242, 0.3117784538366845, 0.49791622296569465, 0.7000022434918916, 0.9112789979925002, 1.128071544476776, 1.3371003138890505, 1.5127772298084319, 1.648729541761909, 1.739865064398942, 1.7828647003461124, 1.7687144454173167, 1.6843875645803474, 1.5189750856016806, 1.2882617079573322, 1.0230696507524004, 0.754110694979561, 0.49520458338451573, 0.2551242790789555, 0.05658380250290169, -0.07751377987319688, -0.1334575724482001, -0.1101042915082372, -0.03125205822949354, 0.07665729201482693, 0.2025389399276133, 0.34292571535322725, 0.48123820720112764, 0.607628513486223, 0.7302640363333137, 0.8267190310866285, 0.8907436905774275, 0.9135165586818486, 0.8747607526120177, 0.7837503161757902, 0.658123638321759, 0.5096785975188146, 0.34287069092829403, 0.16061121390763095, -0.033815599547094136, -0.21767754009026208, -0.37514371493557075, -0.4994168036330804, -0.5734739958374249, -0.576339355254649, -0.5067021559673511, -0.36948692431258817, -0.19087331064684177, 0.17287744601388735, 0.3583218626555168, 0.5657276660029837, 0.7847419649857795, 1.003456703400149, 1.2241454478945866, 1.438725881591466, 1.6282636339114889, 1.7747404035822885, 1.8586870475582953, 1.8806274011373607, 1.839651112415885, 1.7413490414070507, 1.5768958164640152, 1.3560050743987004, 1.0965569576704681, 0.8296623437063885, 0.5796272996446248, 0.35854222639186034, 0.18230833867366023, 0.06876010211018642, 0.03640547302520699, 0.08773407706172495, 0.19547385937553055, 0.3233436610139692, 0.45262940037487426, 0.5773975120535463, 0.6885757436978018, 0.7925877668369952, 0.8999674128195396, 0.9878716156713531, 1.0433220877313432, 1.0452378281100587, 0.9729394705660802, 0.840427186108153, 0.6730533913370762, 0.48589753876233793, 0.28659216938368276, 0.07817470702579256, -0.1396018969037333, -0.34783383504770016, -0.5256518923051561, -0.6571682124473879, -0.721970541077579, -0.7038866789941525, -0.6084383432649592, -0.4402366245601259, -0.22924064891964074, 0.1881686118073363, 0.3931247311463539, 0.6214941390566147, 0.8551964286420488, 1.0744649858560422, 1.2869135675749002, 1.4945138157974955, 1.6852652658049185, 1.8307826047801021, 1.9004222908563049, 1.8998024846892472, 1.8371611104880896, 1.734049581973965, 1.5835556299998728, 1.3861449836694093, 1.154346213928477, 0.9174706252287309, 0.701953491065764, 0.5205529973961491, 0.3775862676045746, 0.28430007574338256, 0.2603067332663058, 0.3144943201461531, 0.4206617954055573, 0.5417039956857281, 0.6544234861482019, 0.7536558678733217, 0.8401107077219057, 0.926034099842983, 1.0174642141130388, 1.1020859345843255, 1.160212907772955, 1.1564390818262613, 1.0664508357417168, 0.9047881084274298, 0.7007393637637543, 0.4762550739166258, 0.24512621321236097, 0.013404692081479921, -0.22010639799750695, -0.4437426157060762, -0.6314840628622211, -0.7626493369049351, -0.8197333052739839, -0.7872733920213216, -0.6740575846415773, -0.4857393452167453, -0.2540159257011503, 0.1953262771251465, 0.4103060149039073, 0.6467405841246349, 0.8843220799212426, 1.1000358039714901, 1.3011765394235415, 1.4972723087612918, 1.6759950982911975, 1.8068715103571207, 1.8567224216477194, 1.8346670851997233, 1.7598613503911962, 1.6582897113415564, 1.527062163396467, 1.3607226692799927, 1.1716622498883018, 0.9868102731499211, 0.831596634055383, 0.7149924804036052, 0.6206411484586378, 0.552028235103304, 0.5263118477469249, 0.5608740444642801, 0.6371188843391697, 0.7265174776772632, 0.8101456433639568, 0.8844043574965358, 0.9527847491497748, 1.0224650570515341, 1.0991209350622135, 1.1846368133901037, 1.2492826530058674, 1.2479456231213863, 1.1524994537522837, 0.9739746021496376, 0.7417231247995307, 0.4845520764850575, 0.22082487137006537, -0.03737267531033819, -0.2834196125975725, -0.5120156942181363, -0.6974187963916854, -0.8191228980850432, -0.8676131627971732, -0.8258136156847189, -0.7012982860092982, -0.5065896619471074, -0.2671280193748599, 0.1891093712204977, 0.39838696149266173, 0.6246948574391049, 0.8532937892956474, 1.0622818312264173, 1.2501232846749448, 1.427191910319679, 1.5805888325679935, 1.687084198871387, 1.719187882992389, 1.6866634397098186, 1.6129721626740674, 1.51588248347705, 1.3984173861740683, 1.2635418444314606, 1.1291292986132033, 1.0171591445656654, 0.9453266214255791, 0.9082560385615303, 0.8691581279814431, 0.8252239979785585, 0.7917155798517415, 0.7926968432149031, 0.828834377922008, 0.8821451979692626, 0.9393373452801711, 0.9924226251012216, 1.0438892033155511, 1.0972494868468632, 1.1611381601888886, 1.2492262313492453, 1.3214126756132967, 1.323750572607425, 1.2284213123171879, 1.0427425464507305, 0.7929645570753819, 0.5099680908340425, 0.21485500557685502, -0.07141953925883027, -0.3289804930929089, -0.5555982041535772, -0.7298254633777318, -0.8350142906893568, -0.8711743028826188, -0.8227697279731921, -0.6949631633813599, -0.5049293651378995, -0.2684506303228779, 0.16929461220536818, 0.36098788719540104, 0.5672313416431586, 0.7774054374093627, 0.9714327454846532, 1.1371833850149382, 1.281506325787412, 1.3961497082259224, 1.4711417678943832, 1.4919730971930747, 1.4640470715991933, 1.4019589887759225, 1.3151949316020008, 1.211514912413124, 1.1062730715453033, 1.0260216121632024, 0.9914227541054569, 1.0081460975214096, 1.0521064743625579, 1.0725449747940015, 1.055285081640784, 1.0210372871879814, 0.9985469259062323, 1.0074758110452333, 1.038704500987829, 1.0784695397080237, 1.112889494967195, 1.1460381634527814, 1.1822787301048985, 1.2315220150861386, 1.3149092266154945, 1.3903178617948126, 1.3955178897381444, 1.3044908084561397, 1.1183349849369728, 0.8574055795416935, 0.5507780570796093, 0.22575282448842582, -0.08508038056259544, -0.3499842466458509, -0.5685487038323193, -0.7286146308691841, -0.8206274431900051, -0.8432203798349461, -0.7857263822680931, -0.6600903910413116, -0.48043080791658765, -0.2562963085176283, 0.14338432495273706, 0.31145069003093345, 0.4915721542846671, 0.6733726654735553, 0.8411990769567391, 0.9771251771835804, 1.0816461634217298, 1.1522082293137739, 1.1890340583675008, 1.1951085014870022, 1.1762596791053235, 1.1304227441118262, 1.0608673438224692, 0.97868263247427, 0.9054480465884475, 0.8735087895175616, 0.9043690844083726, 0.9899949141803324, 1.0967235544021137, 1.173122192973831, 1.1909035728187563, 1.1758297896176257, 1.1598890312340338, 1.166778629092515, 1.1938167050112327, 1.2287472213161592, 1.2566627843000657, 1.278623543710777, 1.3014508406139564, 1.3402475677121042, 1.4128843398603295, 1.4769657599304706, 1.474556944383754, 1.384851718871092, 1.2014562531799546, 0.9387677771321353, 0.619347734922734, 0.274319912487929, -0.054704771279337434, -0.32722081813530757, -0.5393311083350565, -0.6898490141398743, -0.7760667544817291, -0.7899834015552444, -0.7273249540375494, -0.6068050820763315, -0.437037867596664, -0.23056445418023974, 0.11804937701270252, 0.25705945065716707, 0.40415170759684493, 0.5492831023952037, 0.681277946765807, 0.7799705271805668, 0.8401457556945057, 0.8635907323511929, 0.8581608676044072, 0.8408906299946406, 0.8228803310583818, 0.7933606977965024, 0.7473515258756354, 0.6981157755695165, 0.6647064516537774, 0.6761018135256982, 0.753027788941792, 0.8770429967825084, 1.0164709022558607, 1.1329564566668222, 1.1958810800813735, 1.2240497511032096, 1.2477964438080231, 1.2801106257514603, 1.3219593933625988, 1.3678458222274443, 1.4079223540341586, 1.4347463503479823, 1.4568838528074222, 1.496492518207108, 1.5602112966945623, 1.6054335813588005, 1.5851994011890633, 1.4847077484351934, 1.2981378281038385, 1.0389413652082196, 0.720280522129434, 0.3711798261344069, 0.036353359673134314, -0.2409342838123159, -0.45126700850559703, -0.6034505977108396, -0.6937593975955454, -0.7071495889267897, -0.6483015431286283, -0.5374566538063328, -0.3830139845062705, -0.20026684430941458, 0.09510624329357788, 0.20230436213138336, 0.31101619915155854, 0.41400926956837725, 0.5042387125637239, 0.5610034094319076, 0.5772276411059889, 0.5530357160437585, 0.5007258194639652, 0.45064796153950476, 0.42035695400550716, 0.40091192408053716, 0.379975764679447, 0.3726528279094309, 0.38700274219936065, 0.44063689536548944, 0.5476916790808259, 0.6863311336160954, 0.8350784956037883, 0.9738224486673946, 1.0841483966388001, 1.16921549764967, 1.2524391214785517, 1.330247406155922, 1.4065706521839283, 1.481525672295692, 1.5505290206291096, 1.6023258875928417, 1.6407104619412558, 1.6852043499904321, 1.7368794750876995, 1.7630575795992984, 1.7265250860399, 1.6116664711773316, 1.4179146548825385, 1.1599676144121238, 0.847846691801066, 0.5081841932542376, 0.1809735874978068, -0.09455631619467963, -0.3036313984855635, -0.4602315104672904, -0.561242791161991, -0.5869984773172755, -0.5450848224943442, -0.45209859384366763, -0.32202411237315576, -0.16908781758451172, 0.07167421232740531, 0.14448916640009607, 0.21214892353666706, 0.27236250284570945, 0.3180183899221006, 0.3325238792244723, 0.30941175752882405, 0.2469019748975023, 0.1561008237749561, 0.07357054960939363, 0.022586669096242844, 0.002510997363633946, 0.0012734776756088476, 0.031138525942035256, 0.0875476792234746, 0.1776850672622632, 0.3045729062477549, 0.4509437107845495, 0.6056643070041122, 0.7601475035281124, 0.9112492901735797, 1.0558718337550794, 1.2039260018438027, 1.336476731767094, 1.4591752624357106, 1.5742574245516885, 1.6791396745917295, 1.7626397667960418, 1.8230687308462403, 1.873467260886853, 1.9148930578816323, 1.9282688253581377, 1.8827080495805157, 1.7571961293932532, 1.5585749302281695, 1.3018044207099524, 0.9986474177089567, 0.6739630996216992, 0.36326811261216146, 0.098600745194362, -0.10674512518198609, -0.26712118843286176, -0.382325346612147, -0.4313746818527919, -0.4144155705522019, -0.34736188423275616, -0.2494465898760144, -0.1316102950490025, 0.04804864107632785, 0.08675821573004959, 0.11115113324351718, 0.1281724543707927, 0.13141141658927488, 0.1117995163079452, 0.05791484367971305, -0.03013249750222953, -0.1428571457373487, -0.24875449021521953, -0.3231181555700959, -0.3550249763349649, -0.3459051305093537, -0.2895911737315616, -0.2013246780011043, -0.08367385095383698, 0.05859605863563533, 0.2147050260679644, 0.3753761331228442, 0.5423262733994259, 0.7228026919704947, 0.9183985154278362, 1.12434297896047, 1.3126049833206332, 1.4841412518814738, 1.6407963970460806, 1.7806888680882467, 1.8937995281380908, 1.9771623040155004, 2.036019931635371, 2.0723529252814408, 2.081327908642791, 2.035710429698934, 1.908418985496408, 1.7123603525559914, 1.462038449593755, 1.172352894127021, 0.8673096894286774, 0.5792044411707703, 0.3307782123123135, 0.12791441144821686, -0.03922604340963674, -0.16859441194487765, -0.2448801584663961, -0.2585379187546567, -0.22899813152526177, -0.17298221406993897, -0.0942470227023065, 0.022668801673932617, 0.03380501687666405, 0.024728068956141665, 0.0061479597051740725, -0.027412110871977858, -0.07430933629298948, -0.1516551573078232, -0.25944397968343236, -0.3873190251789112, -0.509498348348693, -0.6008172242867861, -0.642977509420616, -0.6292849549950263, -0.5601168499283794, -0.45231464266710303, -0.3172933325664791, -0.1620182996205729, 0.0052383274122855495, 0.17045022123551723, 0.34471662308835727, 0.5435818934094663, 0.7775295038656921, 1.0331031010762115, 1.2754865744093156, 1.4920282146598611, 1.6838289629077845, 1.8506146197265316, 1.9842919583605392, 2.0844878956876927, 2.152510379245562, 2.1909440859638556, 2.2013957651447176, 2.161332336902493, 2.0426053060328204, 1.8588195930048648, 1.6237653981087767, 1.354002352802843, 1.0767310932613585, 0.8152918287489309, 0.5806729784392889, 0.37637147205284033, 0.20129512075895648, 0.058061274780583386, -0.049208452372170905, -0.10430614027360945, -0.12032776518744222, -0.10723801418899709, -0.06420376100708795, -0.0006620589225692637, -0.010492228516863057, -0.03971693859543539, -0.07917504183103373, -0.13448065572125545, -0.20077679412729485, -0.2981509916001379, -0.4282842780667869, -0.5757598939506428, -0.7135902350376607, -0.8146919292535147, -0.8597637094040216, -0.8419823762554052, -0.767990865113554, -0.6505256162665402, -0.5069266760473359, -0.34191586933998136, -0.167797298500147, 0.0014671708427801123, 0.17953327480992048, 0.38624657720050254, 0.6423511830783335, 0.9360325640058513, 1.2254677417177486, 1.4802464445856567, 1.6992125992308231, 1.8840069716069145, 2.028750757412469, 2.1362635787166124, 2.2089632927254534, 2.25204414779205, 2.2663985378251117, 2.233875705896173, 2.1318884216003133, 1.9707309429687714, 1.7607055461406151, 1.5180324587577558, 1.274402723066754, 1.0394208801886593, 0.8149280400018398, 0.6079874399906028, 0.4240689877317207, 0.26453775065310087, 0.1307365813660237, 0.03597818874098288, -0.022276984513936074, -0.047501121384519035, -0.03586824480234844, -0.0190407716071096, -0.0438092054045764, -0.08004677627947719, -0.12705710283639599, -0.19037334743270953, -0.2707930364635285, -0.3885885956679666, -0.5447604737823365, -0.7147248075203272, -0.8670967778030356, -0.9747999946112778, -1.019171259385728, -0.9978212246197871, -0.9205179212593395, -0.7961109178345019, -0.6491539455983404, -0.4807706447633598, -0.30493842257191267, -0.13117957378573186, 0.04883419419514187, 0.2572843670107159, 0.5216054540189418, 0.8371124202178121, 1.1600091621045174, 1.4449913111324328, 1.6820027023899957, 1.8772167025068365, 2.029969098044013, 2.141500744754729, 2.21286631079469, 2.2505784751324605, 2.262817165380448, 2.237983353973206, 2.154242856989553, 2.0151229128395456, 1.8335008175998164, 1.6270875380592424, 1.4223165835272313, 1.2146318716261122, 1.0020339409165233, 0.7944967588539397, 0.6012866929448949, 0.4231036244659828, 0.2723913171556822, 0.1537911012717699, 0.0674680741177575, 0.013892637968686923, -0.002258753173592334, -0.023663188890066467, -0.053907482896205165, -0.08718456351602079, -0.1326679277695845, -0.19458762844766084, -0.2836038003100337, -0.4216374616311627, -0.6063780214319001, -0.802567818363497, -0.9725778181725766, -1.0868507390809516, -1.1279646748993324, -1.103249314612666, -1.023092463827461, -0.8917285963336202, -0.7423427205320489, -0.5780525616857406, -0.4048319385134535, -0.22820303155800495, -0.046505502181439555, 0.16529844630755186, 0.43088374712048166, 0.7494100977077044, 1.0854139314696758, 1.3878563658089085, 1.6352624389012371, 1.8323596229196555, 1.9822947116401854, 2.088711548368915, 2.1549878088400187, 2.180356610353057, 2.1806385353337006, 2.1570371351878523, 2.090158098174033, 1.9755264244625659, 1.8252784496727603, 1.6562608860311228, 1.487674160124829, 1.3093783828177974, 1.117806830828511, 0.920670408543436, 0.7302377592777904, 0.5437406097504426, 0.38558128030906674, 0.256314302553991, 0.15357355731936287, 0.078881844892288, 0.03548123543403118, -0.01451513366824637, -0.03979874532041839, -0.06329699780101576, -0.09975606411434244, -0.15630172246980734, -0.2501751739667087, -0.4027635917290779, -0.6098342987773803, -0.8304357714373404, -1.0220252543962185, -1.1474044645384476, -1.1877191671743752, -1.1623885110000232, -1.0842905918501204, -0.9531852240190678, -0.8058854086243827, -0.648955707612523, -0.47755201890133064, -0.2965536909602468, -0.10698371742140989, 0.11258635368660279, 0.37260064142002675, 0.677000345699477, 1.0055254097309607, 1.3063854265601678, 1.552742845819179, 1.742095661014467, 1.8765140094075936, 1.9662301826192587, 2.0219611014407133, 2.034509498040639, 2.0224679889320862, 1.9975046077969711, 1.9443626289047926, 1.8547249834031547, 1.735462579584658, 1.6004787518682664, 1.4665021884892184, 1.3239897222587251, 1.1636392898838965, 0.9885384534614091, 0.8149253142560354, 0.6381120217886104, 0.48509250021743555, 0.3545745027129997, 0.23886482654311772, 0.14259369066277583, 0.06979326005414305, 0.003364983972313836, -0.008875933834376895, -0.022178077082846574, -0.049622978258997294, -0.10150581923096826, -0.19489151520827824, -0.3499890162457675, -0.5665366549158571, -0.8022379855560174, -1.0099496171355227, -1.149322823161876, -1.2011270830624186, -1.187014487262949, -1.119210864536137, -0.998846666750073, -0.8580561356138363, -0.708696690624101, -0.5422132257410162, -0.35683934606210477, -0.1521607586797507, 0.07808583319993583, 0.3262280328562148, 0.60361009032769, 0.906172814915218, 1.189091759864233, 1.4237362400641045, 1.5953955127775274, 1.707333350019859, 1.7763763436666709, 1.8161950409900305, 1.8174439609381694, 1.797531657919321, 1.7705986130461135, 1.724709554413041, 1.655015393056589, 1.5655272988858917, 1.4641324367224229, 1.3657461647015263, 1.2634558390479007, 1.1419575203941823, 1.0017493090934975, 0.8584433313377162, 0.7058836243233879, 0.5640518766312781, 0.4330097782940381, 0.30633572513492296, 0.1937521026367416, 0.09607492164941439, 0.024247763228881718, 0.031098327724930406, 0.02862053777568713, 0.008394742477627566, -0.038668051174584044, -0.12598522851766325, -0.27335576655118227, -0.4853527869010577, -0.7213662327148521, -0.9368246017753226, -1.0945890066017419, -1.1745753765032652, -1.1871450554668186, -1.137682269631332, -1.0355591047477206, -0.9061455134711802, -0.7615418733594851, -0.5936844313280258, -0.3986419144639043, -0.18027554443495214, 0.052601496696740635, 0.28079875777205215, 0.5260332099176105, 0.7922599418453067, 1.0429887151774615, 1.2511784020621248, 1.3970542068199447, 1.4880476537891507, 1.541604886883533, 1.5657598322507253, 1.5575397993790616, 1.5299258081334393, 1.4970500575940449, 1.4531459594291154, 1.3987848254833186, 1.3365789399961876, 1.2673209826044673, 1.201986542826845, 1.1391349799560602, 1.063547446880518, 0.9704182402060193, 0.8682839542757778, 0.7471511267868151, 0.6144335254073661, 0.47864838290438877, 0.3436881502239026, 0.22011371228640705, 0.10781339243539728, 0.04607279905814748, 0.07504992006186566, 0.08538767553543135, 0.0720624334797757, 0.03279441564798983, -0.041924051013388655, -0.1735116834525073, -0.372748300631952, -0.603855336322736, -0.8235748648001106, -0.9950060473292137, -1.1038987401568414, -1.151530401340722, -1.1299768673905188, -1.0482132951106014, -0.9298076778865288, -0.7871266304448516, -0.6154614679868263, -0.41389571700885924, -0.19260525897985273, 0.03017684628500445, 0.2344113194522362, 0.45017342670048616, 0.6801986683431904, 0.8945210812522533, 1.0652929097112112, 1.1765610987069222, 1.2439574969083618, 1.2829456993333437, 1.296101584756889, 1.281778315381047, 1.2416373308023785, 1.1946231166215573, 1.1474972778825883, 1.1044852533141043, 1.0679006938495363, 1.0337033556886128, 1.0022585895919887, 0.9745611724225798, 0.9422666180363881, 0.8976210837941287, 0.840361778566089, 0.7547838278096531, 0.6357335467195006, 0.5002939956399389, 0.36192342885989914, 0.23069533039436577, 0.11105670515375571, 0.0697623600519331, 0.120819384332918, 0.1436984795019488, 0.13564637586560746, 0.10191202428964374, 0.03759924478495156, -0.08010249788780356, -0.26377492674465997, -0.4831491917743213, -0.6983800411482587, -0.8744347253314319, -1.0008269429786414, -1.0729635682265908, -1.0776808107178442, -1.0168005053927267, -0.9120505248013703, -0.7752233475830128, -0.6051554827350477, -0.40758598177194616, -0.19474428815874748, 0.010759381366967684, 0.19172950863072544, 0.38097798867599036, 0.5779931572864, 0.7568576423059445, 0.8885986865709299, 0.9593618441556154, 0.9936690703395331, 1.0127739272374, 1.0185550966061496, 0.9999926154684967, 0.9466366011098931, 0.8841542485806407, 0.8321007057670872, 0.8000755353959185, 0.7883277041425563, 0.7864442122398141, 0.7858277077682292, 0.7889768091723403, 0.7954879111989791, 0.796543865240759, 0.7798359508303673, 0.7272517120918431, 0.6287143799427933, 0.5043765715047008, 0.3695269042891785, 0.2355101776155988, 0.11089999094900384, 0.09147697541257303, 0.1625399003528253, 0.19706165563454864, 0.19464343665046394, 0.16246391979932162, 0.09894780475538797, -0.013977857892254279, -0.18339323707237487, -0.38532285776720754, -0.5861386449630055, -0.7542960463875829, -0.8793194100855984, -0.9567668732469432, -0.9812828278722061, -0.9456042971221494, -0.8592486740519523, -0.7306510447625607, -0.5667903192955951, -0.3838187647187949, -0.19064495026626577, -0.008781905567831464, 0.1529210972283544, 0.32122975904933826, 0.488565018823373, 0.6294141612559774, 0.7186124589765707, 0.7448265667957776, 0.740767952194427, 0.7335336668829183, 0.7253121972838913, 0.7005408897595662, 0.6461510270772449, 0.5845051792220881, 0.5382597302853636, 0.5200105558464385, 0.5274891004717088, 0.5459083430719206, 0.5680103144106067, 0.5991218110835916, 0.6413134361596464, 0.6815649260957667, 0.6976629734453702, 0.6735795857793672, 0.5992379992044427, 0.49388868807699815, 0.37158668506389275, 0.24425250296079468, 0.1158326881167849, 0.10502566640772991, 0.18918495730117774, 0.2320706265731842, 0.235074012781765, 0.20082629750973752, 0.13028190457064193, 0.01843367170519678, -0.13575215411642857, -0.31747134180183517, -0.49868849855655084, -0.6473841362233882, -0.7554528159893953, -0.8271844284783124, -0.8652680212947677, -0.8503795190334907, -0.7808636322545366, -0.6667110589603843, -0.5211204941585899, -0.3622853486972895, -0.19364170142980272, -0.03567118339762465, 0.11115391940965162, 0.261804008300749, 0.4022793683178537, 0.5051731235641442, 0.5506705966183054, 0.53357146220124, 0.4936351403551438, 0.4631958504645012, 0.4408469935297489, 0.40988440045140456, 0.3625078259171841, 0.31339331021118955, 0.28441257592635305, 0.2830806039041254, 0.30337711375153614, 0.33417149251471173, 0.3734046458866784, 0.4261682462842731, 0.4950543817052595, 0.5622842134383649, 0.6021806997131552, 0.6034843055815382, 0.5555068269984701, 0.47314879622917866, 0.3696770077579415, 0.2566474123048436, 0.12772605446983154, 0.10498271217758103, 0.19267338935091016, 0.2404255457525891, 0.24692464068142342, 0.21061206275698258, 0.1358022860225365, 0.030726289438999972, -0.104437801341363, -0.26315676606585486, -0.42114759843197286, -0.5465633715725732, -0.6364254869098254, -0.6990085535978396, -0.7412626138911843, -0.7408695320870763, -0.6889414668999346, -0.5947429933269355, -0.47576339528184175, -0.3465792769408812, -0.20895082847602642, -0.07761806636774575, 0.054329526347025495, 0.18912525457967538, 0.3060243296541705, 0.3782222995960532, 0.39205558181879313, 0.34736872588631956, 0.2826176875522963, 0.23340921538057016, 0.1964700011102767, 0.1612059396819337, 0.1253430762229454, 0.09306697861330043, 0.0848844425779117, 0.09806929819572051, 0.12272117239066378, 0.16193563191365373, 0.2131265146256027, 0.27597158572818525, 0.3585797005306081, 0.4411541016373971, 0.49721430124808047, 0.5178861103200699, 0.4931851488867688, 0.43439961539965577, 0.351396764564264, 0.25350703339624314, 0.132375834844879, 0.09176828820504239, 0.17601322130741168, 0.22743297582049163, 0.23443398158300677, 0.19767761634282616, 0.12890184566958485, 0.04452717920067524, -0.06383352490350312, -0.19677887805322614, -0.33120986369083694, -0.4357738863119152, -0.5130698340678493, -0.5695706465308563, -0.6110638272856235, -0.6202007986099508, -0.5834910457283331, -0.5083031454741709, -0.4167655267893464, -0.31710662358467606, -0.21055345160720232, -0.10591745184907174, 0.003513425716638058, 0.11218602043085449, 0.1994711389621595, 0.24808528737576233, 0.24774748185574583, 0.19669967655436044, 0.12669983348817232, 0.07029773036470743, 0.025993726488559653, -0.008613122309655002, -0.03437711534351223, -0.05768747229943868, -0.05937742298027298, -0.041661878019513314, -0.016147082733958786, 0.031041584681715945, 0.09203286425924218, 0.15876795778527356, 0.24441035513789325, 0.33162286883410114, 0.39442690697836297, 0.42538300839745913, 0.4173388064514817, 0.3759576899448018, 0.3113191827370197, 0.22800028444999032, 0.12188916566101478, 0.0657995804688037, 0.13999174388413763, 0.19530551093150544, 0.20807417498086642, 0.17771940347640106, 0.11729283084011292, 0.05401426047501573, -0.023875971295028376, -0.12417877673956854, -0.2322010262003695, -0.31830951124155976, -0.38473311501556584, -0.43443116197217096, -0.4683788863360195, -0.477794025240137, -0.4506835885179263, -0.39544878667302635, -0.3343343524383737, -0.26731501132939856, -0.1904544326871827, -0.10679637587179336, -0.02041205972665873, 0.055722004594492586, 0.10876056438960492, 0.13544155261059854, 0.12879925733815983, 0.08484499975264326, 0.028129727330956568, -0.023343006800522297, -0.06735108467812097, -0.10062847083890865, -0.12356224185474056, -0.14653552716697624, -0.15274828820902747, -0.1368114624732267, -0.10973251432676061, -0.057466109144332436, 0.010053756649136717, 0.07853282481346215, 0.15879096439847099, 0.23854633636937717, 0.2981585819661671, 0.3345710206683739, 0.3381442375918381, 0.3068682511511082, 0.25570486847372176, 0.18576386536446537, 0.09839569967424353, 0.03388455054637654, 0.08712170508457433, 0.13616623476768372, 0.15426485113470237, 0.13436083908837484, 0.08672576399171843, 0.04243166950605659, -0.00748684965126679, -0.07217017207262826, -0.14853940637043211, -0.2125028161600374, -0.2621745164386944, -0.2988228524732832, -0.31931430426656054, -0.3214910480826799, -0.30121865867779146, -0.2682693248657261, -0.2387594326995187, -0.20653015634975186, -0.15829928330553106, -0.09267609339490696, -0.025426453847048964, 0.02433748771423955, 0.051856892209210886, 0.06132462625356112, 0.048609752529383043, 0.010788730823399484, -0.029520887212868812, -0.07029809046014655, -0.1065244225195935, -0.13499818987980394, -0.15727253198217925, -0.18093922979870772, -0.1915292029841559, -0.17962038625328888, -0.15212284129740083, -0.1015428333653604, -0.034690962084510675, 0.028762411611505674, 0.09491719248959114, 0.1601930983666611, 0.21134739885427423, 0.24783629567860235, 0.254925962453158, 0.22964421456917627, 0.1905009557933043, 0.1371348014417709, 0.07156092093885712, 0.008060355462781776, 0.03783041120593403, 0.072304861383821, 0.08817130279206777, 0.07475186127325066, 0.04190770206654836, 0.015453066563786557, -0.010460847620309247, -0.04385887935069231, -0.09009770541642632, -0.1309953681947705, -0.1587187007355701, -0.17602827924014233, -0.18291319303558723, -0.18046479083205288, -0.16992413039519846, -0.15706862261260324, -0.14899359319840091, -0.13927815170530414, -0.11014132342774109, -0.06217980806274866, -0.014770996354453884, 0.014365875464500247, 0.024698039492171177, 0.021546931231337177, 0.00563250181065287, -0.025274484478827092, -0.051895831573355235, -0.08018952631904545, -0.10414673336466883, -0.12258006550445823, -0.13987261529676034, -0.1607904077137357, -0.1722602079499386, -0.16618930981177854, -0.1426855790789632, -0.10070205553884962, -0.042893502336739116, 0.00643899484781985, 0.049832423791826445, 0.09592790037700973, 0.13853901233107122, 0.17085944398676636, 0.17436626107187003, 0.15359886849405074, 0.1256104081876933, 0.08918618860836655, 0.0456743338734042, -0.0021890886416656365, 0.00920435792368446, 0.0265142131017679, 0.03703872025133164, 0.03132932064877577, 0.013285116037775874, -0.001560042400307938, -0.01268020601489203, -0.02405080567903037, -0.04424585286930951, -0.06422730261361147, -0.07433619434378894, -0.07746954090178398, -0.07823284091886268, -0.07767679809108859, -0.0745927960572215, -0.07013640520929768, -0.06756663987722533, -0.06486915615872378, -0.050028604164279976, -0.025056085045808592, -0.0015672800363178052, 0.010048756556227764, 0.010210497949949169, 0.0026824217153107325, -0.007999708375267417, -0.024419285485880113, -0.038210020520618136, -0.0545066222623029, -0.06755404408246043, -0.0755064313795621, -0.08269761784076421, -0.0945899409662287, -0.10200971932868107, -0.0989993575714563, -0.08423417067948848, -0.060371831915800256, -0.025856614492473562, 0.0019353295545963484, 0.02251654897964307, 0.045410029638735874, 0.07030107781313813, 0.08973061010354502, 0.09069755178839477, 0.0795443462394235, 0.06415262439218725, 0.0433405354792472, 0.020715178472153137, 5.493925554541924, 0.10626307289246512, 0.10575683431320133, 0.014054821742954544, 0.14292751184568595, 0.16851566943925947, 0.0724602235996472, 0.050609813794813746, 0.11673445707299217, 0.08290683432736859, 0.008959831113004567, 0.08660219032292142, 0.05753034919807149, 0.049979571923210814, 0.10155176680586488, 0.04900388040988645, 0.031885352563417506, 0.08352788835425896, -0.03364176962822037, -0.07910323101212548, 0.0486818830322282, 0.14667021492026192, 0.0566667434192912, 0.005616976830315326, 0.00791028156506049, -0.23911469435809524, 0.06898283193511404, 0.07097497822846102, 0.11737383033269774, 0.015793711847238892, -0.20189835698130787, 0.0289465125112179, 0.026100434539993007, 0.08994045029038668, -0.34571377928546404, 0.09200590901320091, 0.037593241531148305, 0.012197494383936447, 0.07879201661410928, -0.2911957992336788, 0.053886232423270806, 0.027027060010336307, 0.1260554442901901, -0.1818975439302205, 0.12550725861233622, 0.0578794061951024, 0.042657512041888966, 0.09832762534952325, -0.17213437539897491, 0.16086836559986314, 0.08169768535778524, 0.053067322431913165, 0.10814988816444471, -0.5239388885080242, 0.036736513510754465, 0.18144437146366055, 0.06926271327056696, 0.03235346094688066, 0.13795949409215855, -0.41222232455491603, 0.01829258374566042, 0.1969878662643787, 0.08696105758296699, 0.11722848721545599, 0.13828773472866904, -0.00279966271423733, -0.21258594737445255, 0.24383456386625132, -0.09980404404108631, 0.08692712497602906, 0.06778702105758626, 0.14995767192455853, 0.1479653915054418, -0.2795813532503097, 0.24210054526958125, -0.08050232359626251, 0.08069185937850483, 0.03780137719426885, 0.2048315523680201, 0.2694629550357384, -0.1439862741484471, 0.10581245191799268, 0.07618656994073444, 0.05136223079027401, 0.24085650395409758, 0.293436450012164, -0.9369640714726569, 0.18328227300494812, 0.09289506698029712, 0.032106638860122036, 0.218810154250718, 0.3222915803185876, -0.14778658405950074, 0.15022651619812505, 0.11424427170117658, 0.005410291811113384, 0.17027206285133714, 0.3710188177228388, -0.07850238267728252, 0.20349897265299077, 0.08823558610784968, 0.17596788776721456, 0.415814114509498, -0.2776126436181621, 0.2194662057780434, 0.029767474095904054, 0.017037432264143296, 0.03118732213178858, 0.022173717758580225, 0.007142243506982184, 0.026487726183853172, 0.004022883405763718, -0.005128981338493918, 0.010747861405718982, 0.023949200779492825, 0.038883190258295404, 0.003845717159306891, 0.005584227448048434, 0.03833596291289432, 0.05095683048039138, -0.021748530940129393, 0.004006168715505228, 0.031632771343129924, 0.012862815455029552, 0.03661695227734536, 0.006952455243249849, 0.03249349266785783, 0.02982818006665889, 0.01777054607941439, 0.045383632523113344, 0.01902905234670409, 0.01165774749332481, -0.035400538093439876, 0.05857288601225688, 0.058346042499995115, 0.029922304316219155, 0.01761818843835343, 0.036741311788161944, 0.05423155591427026, 0.034640443478392895, -0.00039202199396784607, -0.009260418163205948, 0.06022499597826218, 0.06184565714109403, 0.0018478710235691877, 0.06418283277736933, 0.03833229557470774, 0.05000454101831998, 0.05771580737595951, 0.019522126955001568, -0.032920321730680165, 0.05222306458835691, 0.06750169268066523, 0.020305480285922765, -0.008388969264729271, -0.051526992802386845, 0.045552618183447115, -0.12959863175491562, 0.04105729731301759, 0.057131018695166694, 0.0009170816003589728, -0.004942238472405021, 0.04808436170726426, -0.10680705353217901, 0.04401790179660034, 0.05848841051491816, 0.004463176025195966, -0.08654190125549371, 0.05485576880074659, -0.015522191279111234, 0.03642636388985744, 0.041592007585784165, -0.1208865296534574, -0.0015834580866482682, 0.0005064948366073756, 0.04437729285451117, 0.01817903354526935, 0.07719251209029442, 0.04474414987193959, -0.06395080222662303, 0.01947962741472165, 0.0018491812272676926, 0.02416643946301483, 0.030956728191961342, 0.03580957881431476, 0.023010825937558835, 0.00882130679276503, -0.051699949466402204, 0.011553544436685813, 0.027329884765266797, 0.055655714919845174, -0.015635407295915563, -0.0018602165705060823, 0.04861553553446623, 0.04090273827844228, 0.03399331645021929, 0.050627684120835924, 0.0217598903845136, -0.01808001116220038, 0.007064187157004517, 0.06292903866870544, 0.04858818028370254, 0.06334897669813126, 0.07636887984817188, 0.0008569987854543875, 0.05501327349336637, 0.0635154538249523, 0.029351545608354016, 0.05738567499520501, 0.2483411458969304, -0.9529784524914912, 0.5844617139776119, 0.7565280210345608, 0.29559107256752937, -0.7978153745322171, 0.4868950416413501, 0.868835628722676, 0.43823177785850653, -0.8918212917046804, 0.34963093931348876, 0.8529636424956146, 0.9502258200720887, -1.1024828292893598, 0.3892635516574735, 0.919964521856527, 0.6064251337602979, -0.5383218292457737, 0.4025861756443869, 0.8574425174342755, 0.8769496083932599, -0.45703829598374024, 0.33612754996002125, 0.8806282666192694, -0.6707444563069075, 0.630045859816137, 0.9129870000195519, -0.33781984987651964, 0.3228015741913316, 0.9250013448648016, -0.8641978714020451, 0.49965272172518027, -0.23194967696873475, 0.9897049122303496, 0.9941653588665526, -0.07043998253159064, 0.24957799732263422, 0.9378427473322739, -0.6953074771154801, 0.3900450060563776, -0.2129968489559333, 0.9690379831831174, 0.2387657314209391, 0.9107687744660484, -0.9267581507445453, 0.2576071721786756, -0.1668704262626002, 0.9409635626976353, 0.9082194657510251, 0.3343208521022577, 0.14848009434247708, 0.9314031348462363, -0.9352388545521759, 0.2048102129212241, -0.21632387313363907, 0.947024108180308, 0.23475619705019324, 0.9129551600863265, -0.9938318604943583, 0.06795326608446026, -0.2859085824715176, 0.9412647571540714, 0.6772929025895227, 0.7054624984812679, 0.20182990091875916, 0.9883631838351661, -0.9780997408796723, -0.03448740725826884, -0.3326883880027042, 0.9424735252182566, 0.5109911664108667, 0.6265940827485967, 0.2367525625682455, 0.940907829262087, -0.7563406784754573, -0.24071788417033296, -0.5309095685250336, 0.7799491149304618, -0.3450961576656085, 0.6744834653827491, 0.3361661874655493, 0.9309690623897692, 0.19538470170087396, 0.9290582025295996, -0.9134422509757993, -0.33352686365776624, -0.5802193853964405, 0.7861070927319422, -0.5344485461199954, 0.8380870899299212, 0.2113511000390798, 0.9568551287196025, 0.21201544679866652, 0.954983758314048, -0.8109369584905526, -0.5332658728964377, -0.579612083734069, 0.7557976563662029, -0.7247968184376542, 0.692595554569221, -0.03926645800830325, 0.9663045103614821, -0.5383312889444543, -0.8282838883401272, 0.24298246059697198, 0.9368064447894165, -0.7260995999982608, -0.6204579386190712, -0.5823229345286309, 0.7413653376618875, -0.7533405948279751, 0.592293284799848, -0.1373227881599238, 0.9810789342459715, -0.46617056695569575, -0.8543932869618374, 0.2732139147428749, 0.9362974835793628, -0.3615611208935219, -0.9318420170701838, -0.6085436899720533, 0.7582094058607909, -0.9138823452383523, -0.3841072417075393, -0.768120531850788, -0.21342905720907318, 0.3887416401887855, 0.9285764507178162, 0.191099704026858, -0.9469836523037265, -0.5711942872934627, 0.7957380054746294, 0.046964287351889226, -0.974059026381857, -0.8605426770931007, 0.509926387552951, 0.7618113708906081, 1.2175074319401256, 0.7136574244403996, -0.6401813794598636, -0.502323754483651, 0.83436707171216, 0.698558184674464, -0.6727956536473001, -0.06689552579505421, 1.01884188238105, 0.724703827856007, 0.9509970149481726, 0.9305100601901686, -0.2836450305962804, -0.5058050692141427, 0.8674823922353744, 0.9453264819770941, -0.33502606157543935, 0.2934273351374246, 0.9907556506792866, 1.0054781943475863, -0.12458419801782679, -0.4177836648294323, 0.8816936386740454, 0.9875184148766278, -0.21959597149539942, 0.5120011629577863, 0.8700149250162413, -0.04303755298714837, 0.9557898723202306, -0.08285432504992964, 0.948756470634183, -0.04643277358423765, 0.9632631379207843, 0.04199978419791823, 0.9812767681943124, -0.03771514114514437, 0.9612935850754333, 0.08056500860312428, 1.0230192354110705, -0.047691035117875626, 0.8344394964853373, 0.057943645152315856, 0.9549350659484872, -0.027931545144176836, 0.9527435273891394, -0.06260219185909835, 0.9414524673925891, -0.06186525761088935, 0.9511152963372185, -0.04566398000153689, 0.940627081091415, -0.044400066827098385, 1.0023262050078445, -0.04248746648032736, 0.9488602408415328, 0.025449269068716106, 0.9547680532695328, 0.04050711447667426, 1.0010816482028793, 0.04046336738043462, 1.0175370642113002, -0.05510425146585285, 0.9556767387695826, -0.005735104640141014, 0.9469212503488563, -0.01546583808954093, 1.0053387119848842, 0.03065726574285062, 0.959028782832913, -0.04932628113979991, 0.940240577153043, 0.03303738202004027, 0.9448769226370892, -0.01315133037833809, 0.948524040749442, -0.05167447750275973, 0.9453013121832172, 0.01725003754644003, 0.9418579774595057, 0.008268733339434958, 0.94550939366246, 0.02752380262455824, 0.9478966072049131, -0.05647388341405138, 0.940395967343996, -0.03845013963259432, 0.953488601280454, 0.029122161141494296, 0.9574055528853745, -0.032281257782717905, 0.9487017966846947, 0.033819643853419776, 0.9630888540071553, -0.022815132915437516, 0.9792698927924599, 0.02567689803712368, 0.968789363555616, -0.05729389415813743, 0.980731531907756, -0.038432353296774975, 0.9452899731219867, -0.01819147055894534, 0.938834451146038, 0.024511351828026457, 0.9463822511062089, 0.015261371685080741, 0.9263244900397961, -0.04182420941464559, 0.9460188012974461, -0.009267369502441412, 0.9455089352620931, -0.049493287070861335, 0.958035408640674, 0.06257252764304944, 0.9881980074425454, 0.05487369709852437, 0.9537487738714796, -0.014747955062350828, 0.9915219376394988, -0.007213878262178988, 0.953790961638877, -0.08507432245422676, 0.947093383623691, 0.023337007979140824, 0.9616954145627592, 0.061435480263770596, 0.9496098980072899, -0.024654716232323546, 0.941221599116456, -0.5877460931449191, 0.7624523394920171, 0.034513049941807386, 0.9514678279155023, -0.04967838761689898, 0.9422834009729637, 0.020505597524243788, 0.9514284221003757, 0.04928058203359008, 0.9438038518938967, -0.02863169474186536, 0.9815908134954069, -0.23180967647174264, 0.9217503053993352, -0.0036223012629422262, 0.9701903043680543, -0.06998160570629629, 0.9641483510878414, 0.06396872413030442, 0.9877902863703789, -0.015991950382632993, 0.9614033865475006, 0.2737443551829829, 1.1997447528546603, 0.03282098517035073, 0.9807958380279457, 0.05291838201944632, 0.9444886788929072, 0.031026849288588763, 0.9714924091784864, 0.016905647265313774, 0.9555779888112464, 0.14935360715825607, 0.9498033093622168, 0.01402279567465137, 0.8049847030981669, 0.16732487755107633, 0.9324488522380691, -0.0041005052740172646, 0.9488153083398214, 0.012929246698473972, 0.9573950836408347, -0.11987933523471027, 0.962850784313822, 0.020925385700808038, 0.8480023640912756, 0.19185350117530509, 0.9589906266391391, -0.01413757528298935, 0.9683688313497008, -0.01100091629760188, 0.9716967747383669, 0.05072330695317875, 0.9782136410214205, 0.17101058247873582, 0.9592894930641075, -0.02025965089345058, 0.943965449164475, -0.006925855984471572, 0.9619916572916706, -0.02085265148727657, 0.9623336191860182, -0.0077905556866285286, -0.0518824287121129, 0.031417305438013444, 0.004666054193559431, 0.034470728211588614, -0.11106320490926393, -0.028996457179558014, -0.037167166843008095, 0.03269091368838825, 0.08720632290318922, 0.005999125785092639, 0.04296727828703662, 0.014110693840211757, 0.01042022811315031, 0.010398328153989393, 0.021339318962775484, -0.028467376676701406, -0.05202541406787475, -0.004418800758232927, 0.14080129999885235, -0.03221118519436687, -0.033635246015441135, 0.04066650608159168, 0.08851875052384085, 0.05233303616510995, 0.00708461143804143, 0.0051617253075159734, 0.06079165063598253]
Final objective value: -17661.038054800898
)Now let's evaluate our fits by plotting the residuals
using CairoMakie
res = residuals(post, xopt)
fig = Figure(; size = (800, 600))
plotfields!(fig[1, 1], res[1], uvdist, x -> Comrade.measurement(x)[1, 1] / noise(x)[1, 1], axis_kwargs = (; ylabel = "RR Residual"))
plotfields!(fig[2, 1], res[1], uvdist, x -> Comrade.measurement(x)[2, 1] / noise(x)[2, 1], axis_kwargs = (; ylabel = "LR Residual"))
plotfields!(fig[1, 2], res[1], uvdist, x -> Comrade.measurement(x)[1, 2] / noise(x)[1, 2], axis_kwargs = (; ylabel = "RL Residual"))
plotfields!(fig[2, 2], res[1], uvdist, x -> Comrade.measurement(x)[2, 2] / noise(x)[2, 2], axis_kwargs = (; ylabel = "LL Residual"))
fig |> DisplayAs.PNG |> DisplayAs.Text
These look reasonable, although there may be some minor overfitting. Let's plot the results
gpl = refinespatial(grid, 2)
img = intensitymap(skymodel(post, xopt), gpl)
fig = imageviz(
img, adjust_length = true, colormap = :cmr_gothic, pcolormap = :rainbow1,
pcolorrange = (0.0, 0.2), plot_total = false
);
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.03 missing missing missing missing 1.017 missing
0.73 hr │ 227.070703125 GHz │ 1.032 1.022 missing missing missing 1.007 missing
0.88 hr │ 227.070703125 GHz │ 1.027 1.004 missing missing missing 0.995 missing
1.3 hr │ 227.070703125 GHz │ 1.011 1.024 missing missing missing 1.04 missing
1.45 hr │ 227.070703125 GHz │ 1.004 1.006 missing missing missing 1.039 missing
1.89 hr │ 227.070703125 GHz │ 1.052 0.978 missing missing missing 1.004 missing
2.04 hr │ 227.070703125 GHz │ 1.032 1.013 1.037 missing missing 1.007 missing
2.46 hr │ 227.070703125 GHz │ 1.033 1.03 1.018 missing 1.046 1.019 missing
2.61 hr │ 227.070703125 GHz │ 1.012 0.965 1.06 missing 1.06 missing missing
3.06 hr │ 227.070703125 GHz │ 1.03 1.018 1.037 missing 1.056 1.035 missing
3.21 hr │ 227.070703125 GHz │ 1.0 0.991 1.062 missing 1.064 missing missing
3.62 hr │ 227.070703125 GHz │ 1.002 1.066 1.039 missing 1.051 1.059 missing
3.78 hr │ 227.070703125 GHz │ 1.02 0.968 1.054 missing 1.07 1.021 missing
4.23 hr │ 227.070703125 GHz │ 0.992 0.95 1.047 0.878 1.042 1.059 missing
4.37 hr │ 227.070703125 GHz │ 1.001 0.995 1.049 0.899 1.045 1.06 missing
4.79 hr │ 227.070703125 GHz │ 1.004 0.917 1.056 0.985 1.037 1.042 0.886
4.95 hr │ 227.070703125 GHz │ 0.998 1.001 1.045 1.018 1.08 1.046 0.938
5.63 hr │ 227.070703125 GHz │ 1.02 1.002 1.024 1.031 1.036 missing 1.023
6.15 hr │ 227.070703125 GHz │ 1.009 0.95 1.012 1.028 1.057 missing 0.984
6.72 hr │ 227.070703125 GHz │ 0.998 1.05 1.042 1.035 1.052 missing 1.022
7.23 hr │ 227.070703125 GHz │ 0.982 1.007 1.065 1.05 1.065 missing 1.079
7.44 hr │ 227.070703125 GHz │ 1.001 missing 1.057 1.066 1.03 missing 1.059
─────────┴───────────────────┴─────────────────────────────────────────────────────────────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), 2_000, n_adapts = 1000, 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] ↩︎