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 0x7f0dcade6ad0>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 0x7f0dc6b1c4d0>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.0525273375185558, 0.18948410523818945, 0.07421842310435697, 0.016811144218605825), as = ((params = [0.008171408855523574 0.016004390740642818 0.023158394412347707 0.03114088726320978 0.042370441288723616 0.05657812022225638 0.07075679078763393 0.08243575027312672 0.09035485658382775 0.09283930246792575 0.08928444916228431 0.0796220533606252 0.06559626310560317 0.05181191938625174 0.038927385155476314 0.02669769864524202 0.014442441409633602 0.004241892180785788 0.00016584919192383298 0.0026488991915084863 0.01109933189211379 0.021753010692230606 0.0321669125212267 0.04248100351116217 0.05450438707999498 0.06996150858910913 0.08692192627272213 0.0990706181517345 0.09925006809735071 0.0856658662552846 0.06486721682143204 0.04644232004336585 0.033773027612627037 0.02463755058600756 0.01794181932857858 0.014157344913555593 0.016411472601159507 0.02776188147358654 0.045733017650455045 0.06382390634023666 0.07649961379029213 0.08390264774004569 0.08637246914721738 0.08224864592507797 0.06976326469438747 0.050469371622010935 0.030448723755388804 0.013880548294015025; 0.017730865316467833 0.03383150312904154 0.0485523221422408 0.06376995539943603 0.08152337133306432 0.10289582905378057 0.12740879987031903 0.1507173980479242 0.16663727009106483 0.16916433596940741 0.1573189390089388 0.1379347204638274 0.11984695407985277 0.1076146738814312 0.0958701186888045 0.07949653575518158 0.05739391409079915 0.03581779697339367 0.022902478457964618 0.021532770483146144 0.03168301874132274 0.04741630804816655 0.06461500677441384 0.0813013799334667 0.098842610478149 0.11915973743832796 0.1406987643215759 0.15573451447029757 0.15423681771903083 0.13283207906724018 0.0991989019149832 0.06824567105195432 0.050238645572016814 0.04333646616262264 0.04170585746393942 0.0422563084436242 0.04645965025940724 0.05999088372803631 0.08440146705833697 0.11624612083713501 0.14659769591299363 0.16655794089471943 0.17101241128577405 0.1595928178690557 0.13420097606423173 0.09914406993782114 0.06223646202282542 0.029120695383113942; 0.024919820234247835 0.04608738840818408 0.06561853040298296 0.08762116929871151 0.11371591983017074 0.14488306178846036 0.18163363205814653 0.21757014301138705 0.24169472540991532 0.24498972503652974 0.2293355268773535 0.20907240809045857 0.19549357825222013 0.1890485275257882 0.17967385451542875 0.16012990786237366 0.13087510278014303 0.09945018124180172 0.07433861116895425 0.06120406513936368 0.06161782535158626 0.07151481676423929 0.08795169189384028 0.1074947955290324 0.12847478436821388 0.14980159860122236 0.16906820710930928 0.1812321777558838 0.17838880327227868 0.1575889643388609 0.12299196933134764 0.08713187854313198 0.06465745228505732 0.05961307635635096 0.0639851623608351 0.07119806794302706 0.07996795859776931 0.09462983761223351 0.11945752945169624 0.1556353741855517 0.19709145010491466 0.2305743700777071 0.24226725500615143 0.22794560410415954 0.19234321737382762 0.14435104442069727 0.09317344290645929 0.044694910713257124; 0.025477425005829158 0.04927121174988656 0.07535235274025896 0.10784889113649941 0.14683175442229052 0.19208462480088798 0.24331378960900318 0.2933044155189486 0.3293782889056711 0.34254823483257324 0.3364334582754293 0.3229012461508753 0.30902786604763466 0.296998680637753 0.2815878776926979 0.2589887266038306 0.22890231373246558 0.19368881687993733 0.1598449961841205 0.13393630062669576 0.11970151701129396 0.11645622604740033 0.12426477579262805 0.14231254408812133 0.16703595919318706 0.19294750676486153 0.21161579126473734 0.2176448520503657 0.20742933400268806 0.18281588946424485 0.1481284814639326 0.11057485571361007 0.08165603576271455 0.07106440268667899 0.0751038734309015 0.08618353699738886 0.10248640014164109 0.12466854781808642 0.15307155923420687 0.18704306989075017 0.22398473026535304 0.2595875475597648 0.2808320226035873 0.27450042088246646 0.23849362150896514 0.18260180453933833 0.11982038688168707 0.05841311716071537; 0.023631531550039088 0.053849017786203525 0.0928599216102834 0.1380039994670894 0.1869639489606505 0.24252662545313447 0.3060897586188579 0.37066488786693647 0.42311488284346027 0.45340925252734565 0.4598397682546221 0.44743204595428565 0.4258110549397634 0.4063392368171277 0.3905870715439272 0.3747315533343631 0.34972620514859704 0.3126929068606627 0.2711828732780216 0.2342904457972686 0.20857720157429813 0.1946964201803382 0.1937824156750426 0.20718301604536973 0.23364572394737174 0.2653104244633685 0.2880234848458752 0.28862745929144273 0.26413643077609283 0.22225154170476039 0.17424003221546336 0.12725173889051905 0.08805519101196077 0.06732338954205166 0.06782078784111298 0.08201462504379381 0.10643234415355877 0.13965556235705737 0.17626376407680883 0.21070261471577986 0.23775356608215448 0.26050713588717156 0.27938610876523534 0.2822166352805869 0.2563968955610801 0.2043772524806435 0.13870548847477895 0.0695027930697106; 0.029556990113275575 0.07191452905399587 0.123969796522103 0.17672423995654923 0.22992466969262476 0.29145903278367546 0.36435060392961244 0.44241952011607205 0.5112013365059135 0.5543435809167195 0.5637068778585759 0.5468867050018771 0.5237592582447864 0.5120124927426836 0.5143375325306584 0.5188338894399069 0.5039256600588503 0.46161913772773944 0.4016254094368445 0.3413616307342738 0.2941317775303965 0.2645817105518592 0.2532840674745512 0.2603475630247448 0.284458187906075 0.31763786530711774 0.34590307051458274 0.34960715768850364 0.31984587079937926 0.26479785210245843 0.20140734079990502 0.14007053786048967 0.08633814388550212 0.05120537504024035 0.04450595213338495 0.06154339388858935 0.09260543484439826 0.13343476012957603 0.1766219794786903 0.21532294477788988 0.24110141170934216 0.2509438278374735 0.2533085924589314 0.25181583065819735 0.2354122937329685 0.19653551015749726 0.13977147170136275 0.07270294860357258; 0.043618893547575525 0.09769672335775612 0.15692810862055115 0.214574135409046 0.2738638345671002 0.3437320091601233 0.42748800648951596 0.5185640406032798 0.5962641158522716 0.6381699989221649 0.6399702192730923 0.6200390826460996 0.6053772111059814 0.6149600156395439 0.6491857974304761 0.687220810187772 0.69525311261233 0.6500190055177331 0.5547084132680242 0.4413531318928829 0.340829137885148 0.271555468296842 0.23721361087585283 0.23437162013398438 0.2560371127965055 0.2889573087243137 0.3195426655485142 0.3300158159016958 0.30752532067619104 0.2565189353866192 0.19426571551448155 0.13142134124209506 0.07103634278181332 0.023249549529055898 0.0063214880988852334 0.025550660202569037 0.06574935311819466 0.1129150972579471 0.15628275866421226 0.1924573600636095 0.2201744929503428 0.22942709598255065 0.21865449240024235 0.20221771250891718 0.18427711564417015 0.15646536537854325 0.11434087103516019 0.0606428983890673; 0.059117139710552526 0.12115046996143526 0.18572368541733092 0.253954057820569 0.3291494972235867 0.4160072322564941 0.514232114558614 0.6116707065481938 0.6828408377763958 0.710653953586886 0.7013298495131894 0.6781223291678012 0.6697197553156682 0.6956005742913532 0.7578843284225179 0.8328818503996664 0.8743713342995193 0.8311693992392335 0.6903346648005354 0.49990329584405285 0.3202620272897484 0.19298769423751508 0.12608448664907268 0.11104989790759973 0.1347631925248178 0.17509752864869318 0.2117043284522919 0.22829332688571113 0.21590589317504433 0.17682408660860424 0.12831504326464765 0.07920850491551604 0.027534692314340862 -0.022207572513084712 -0.04965838551836863 -0.03429627582839498 0.014957225334910843 0.07432083716122553 0.12188995316803997 0.149987166391356 0.16971001663354332 0.1812840321591351 0.17182643359172659 0.14620126381810056 0.1194319406666709 0.09433921118768583 0.066242205600212 0.03411967932245591; 0.07100343635370189 0.14221332715377966 0.22012473210667244 0.3100062245614059 0.4105449873218944 0.5179761086722063 0.6250676923412026 0.7168218686786187 0.7739195887770053 0.7896580964650264 0.7708751045477151 0.738373747456126 0.7218495700837214 0.7452399494787613 0.8189727524310086 0.9214463065843528 0.9881468378054555 0.9422119405581961 0.7591471096546023 0.49635996517977615 0.2438866473672332 0.0649681460815585 -0.03294336696624628 -0.06197534312871567 -0.03833317858345066 0.015487261970069239 0.06967078908696904 0.10122588251641657 0.10222273442438143 0.07651097887121097 0.041471848146162456 0.00869727724797099 -0.02851795230625418 -0.07001567517247395 -0.1025425634708575 -0.10046563758417257 -0.056759990629197295 0.006941245656931514 0.061668171467580975 0.08766721728334016 0.09522620697983782 0.10226967462424152 0.10069300698359232 0.07966721019580454 0.04902414408736412 0.022880285055384374 0.006625477071815024 -0.0001056324058434255; 0.08117533569924977 0.16981954260144408 0.2740676509479732 0.39291764791446493 0.5179053581858679 0.6402142304155016 0.7510668462805631 0.8384334801021576 0.8901899572369462 0.8998545474547559 0.8679272205379285 0.813247429808689 0.7680707992851794 0.7656279846426424 0.8282562892336748 0.9336161012227566 1.0020614714804275 0.9497589168239409 0.7477168196313512 0.45001098980471593 0.1635198787104463 -0.04358049995938576 -0.16257579912929046 -0.20430066886237847 -0.18547582373117716 -0.11984288536239059 -0.04282513751995839 0.016032353205821758 0.038071050128914534 0.02774096010498884 2.715901348354627e-6 -0.026911395177317558 -0.05862554916896634 -0.09636519403551227 -0.13026476293192796 -0.14431347753795212 -0.1218393912449531 -0.07352348108597542 -0.02501987604786664 -0.0006968202483695844 -0.0010757105897808326 -0.0017864438955271869 0.003167835385939354 -0.0036649592249746363 -0.025517271830111966 -0.046776154134952126 -0.0511576337893842 -0.03347777179622348; 0.09835785371273092 0.21431542623612615 0.3511788698715367 0.49735427279930894 0.6421440604432953 0.7783317204802926 0.8977708578575686 0.988994475412606 1.0412151342549414 1.0449998169037822 0.9944870843130555 0.9044750317463663 0.8099310126838477 0.756677382121437 0.7755437693847516 0.8473371333097074 0.8997304158406819 0.8539402917716702 0.6685284376674461 0.38543496112910913 0.1052760460188385 -0.10726398132299589 -0.23111505114630412 -0.2742018912532058 -0.25197099033039966 -0.17609286903046456 -0.08077747326755652 0.00442760685085698 0.054772700266863615 0.06522446054574825 0.0435694879866037 0.00910072466489758 -0.033868004205091194 -0.08524878304924233 -0.12870387834584524 -0.15834890329443885 -0.16453098996822077 -0.14651693082110562 -0.1198170487738566 -0.10497939684787376 -0.11119525973876002 -0.11926347561053564 -0.11115211322806215 -0.10073289910020992 -0.1029890462895088 -0.10955247602680582 -0.09876092607532425 -0.05982823566030677; 0.12898630108635376 0.2786225161934612 0.44659321194453033 0.6173959272021992 0.7814704184589009 0.9307020202091006 1.0543831662573846 1.1428056727537124 1.1907997254779479 1.1884085424092357 1.1195894953843055 0.9913822022534869 0.8436625187220623 0.7313155717036139 0.6899452986673204 0.7139942093853883 0.7479716196178757 0.7152361277153797 0.5661871678487254 0.32551725825565864 0.06832371770836114 -0.1387070099091249 -0.2553881525793914 -0.2849035597568232 -0.24681297406235556 -0.15994785732960784 -0.05369744565441987 0.04545444697994054 0.12109720476487403 0.15924126895027202 0.15024048377208657 0.10201696294793759 0.03053918786795423 -0.054110076137678736 -0.12262368428068138 -0.16543169116438095 -0.19133613546935607 -0.2037901360312109 -0.20521438650758775 -0.2058815486585679 -0.2174037895984778 -0.23013574777504758 -0.22204647475115935 -0.19784768472062103 -0.17690224319821224 -0.1614417657780499 -0.1326997747400685 -0.07688760713752571; 0.17126218920858371 0.3576679458618013 0.5540075879409211 0.7452975447972887 0.9203844474944852 1.0671105827130065 1.1763076285470377 1.2470848224040256 1.2847971055903775 1.2786274012065721 1.1994760935838475 1.0483860893289136 0.8677971459431069 0.7118125288760491 0.6249447980103869 0.6157307266017389 0.6345052226396883 0.6065343983690761 0.484976585177377 0.2847885254314481 0.057065104390848206 -0.13163668348303076 -0.23134703849634697 -0.2428742062078966 -0.19189873774364052 -0.10224288872988782 0.003777221323217445 0.10375598688694114 0.19209607348173197 0.2579050580473571 0.2697176839161455 0.20986868695969232 0.0985946581530364 -0.03501194871445274 -0.1455290842869796 -0.2085002114917707 -0.23975506075179706 -0.26077841936432683 -0.2764955043210807 -0.2868731859037635 -0.29986359884169045 -0.313705194591482 -0.30739748100365355 -0.2766629636459451 -0.23732350831628776 -0.19886462024822474 -0.15165870611037816 -0.08428363833126853; 0.21724943130074406 0.4404205002480074 0.6605756297410528 0.8630378552728447 1.0355957439710977 1.1667920932848066 1.2527276237857072 1.3014860696498973 1.3253293148395184 1.3129116408749362 1.2329887822981158 1.0837686554072132 0.8961846717649576 0.7183111152457055 0.6059738850626484 0.5739800422712635 0.5775477806058197 0.544544163181286 0.42972207452990924 0.2520198268533986 0.05641867734406795 -0.10111297884319717 -0.18135455791577682 -0.18093695231718876 -0.12017265208226391 -0.03088759132878772 0.06942966994338635 0.1553043660575201 0.23239111079414182 0.3074464884496516 0.3378511566011418 0.27443161745084776 0.12942802033342435 -0.05116318631070748 -0.20662810435433202 -0.29777615569069027 -0.3343908474229202 -0.34605005905340347 -0.35053497262980593 -0.35075734544518555 -0.35207184479891457 -0.358896112411487 -0.3533900552189625 -0.321876207476586 -0.2723324328617102 -0.21706988657420026 -0.1561097904250286 -0.08336058913808085; 0.25783103944874525 0.5139387444192985 0.7544246487997521 0.9643105387439123 1.1325247249160233 1.249489770322191 1.3144827797945267 1.3370839180452003 1.3324298022900534 1.2990021373814693 1.2209738607187488 1.0913556424917674 0.9154418325121089 0.7352670094591325 0.6103565819995381 0.5553093155803761 0.5367131305219568 0.49178452435930897 0.38002187882822847 0.21755820551181876 0.045520420399747304 -0.09269248998558749 -0.17192457016323442 -0.1734774300121098 -0.10114155827939758 0.0029045903340345985 0.1044330221025349 0.16529680996689378 0.20335244766092253 0.2497074137848271 0.2757652693859992 0.21684990694277348 0.06948720100874446 -0.12306246176399804 -0.2988498280423569 -0.40845558567366924 -0.4513004210690327 -0.4538495815383778 -0.43741768213430793 -0.4115396377373275 -0.386125623970394 -0.37324026385869247 -0.3613031804822641 -0.3302531739933884 -0.27782867728660465 -0.21466621063221483 -0.147738712992882 -0.07628934765725032; 0.2902476406911756 0.5749446622842571 0.8366968011119106 1.0584895183236633 1.2272618645860074 1.3337153136153552 1.3766515376721744 1.3646177786235238 1.3190007648007787 1.2563601147601422 1.1772393359259348 1.0670858672308474 0.9106200362105673 0.7396161488841352 0.6045721259877378 0.5162879264549441 0.45981845127520926 0.39721605014759137 0.29868012711085723 0.1623298948876324 0.006695147801602907 -0.13117072935518137 -0.2203810105634667 -0.22805231024649353 -0.14143676715468365 -0.006457360601391187 0.09600828716215686 0.11684015088466902 0.09443630061469911 0.0793058732441452 0.06644195742569999 0.00295778311956248 -0.12111449203629744 -0.2790331227904289 -0.4274751978019526 -0.5210971692234659 -0.5551251674160097 -0.5486206990088154 -0.5168115143955083 -0.4675519541772041 -0.4126662340775874 -0.37219246777936127 -0.3445418299955745 -0.30928023186134646 -0.25767604724820475 -0.19563042586939805 -0.13116868731352632 -0.06615158204553145; 0.3171023866895751 0.6279022944922641 0.9141286649024634 1.1541559489118733 1.3286607826268186 1.424309767872949 1.4389321162493087 1.3840963647403128 1.2934862468498267 1.204042684288695 1.1205280925861576 1.0156011832432408 0.8659233564429344 0.6956493452766596 0.5402020149531493 0.4122808637681169 0.31682405098168265 0.23998874050697908 0.1718847536236351 0.08363991647817214 -0.04566031924933213 -0.18030609909161152 -0.2746548746151099 -0.2805453954507381 -0.16648639916046037 0.01305254410147738 0.11770910044658767 0.07580568325029408 -0.028734094718844305 -0.12476691067173151 -0.20074861995801607 -0.287588063211782 -0.3930922986529814 -0.5059504141167901 -0.604654481254539 -0.6503911244391686 -0.6441238919109591 -0.6106776860839161 -0.5613179786069944 -0.4971271501177003 -0.42412715484048435 -0.3617450430836328 -0.31656837058813264 -0.2730653525338931 -0.22166845656153758 -0.16602777131182855 -0.11115243477420532 -0.05634178652012221; 0.3430687390444336 0.6810781804185189 0.994930540970887 1.2560149297833496 1.434936906392348 1.5107791913640025 1.4817776432308747 1.370354987547442 1.2298816459248583 1.1185838014412448 1.0373263373477992 0.9361127256700857 0.7790869039029108 0.5876169939096989 0.3985457506436641 0.238965972504046 0.1254832971489514 0.0605516894666487 0.044430185628580914 0.02006814572686111 -0.07128242970503912 -0.19874921515380023 -0.29264386023374545 -0.2769629174537896 -0.11175237269468678 0.12116816928610778 0.23693725362306833 0.1334173430249549 -0.06964069549214214 -0.2578152347904206 -0.4147608781857281 -0.5439565793604264 -0.644481065475556 -0.7238481689855348 -0.7861439786125971 -0.7948556601010545 -0.7427473783617479 -0.6626890593404985 -0.5791636404870978 -0.4946203661851003 -0.4074664411378089 -0.33153300194244195 -0.2758648076214906 -0.22776528362283643 -0.1787685198846812 -0.13242268095764417 -0.0904814707862363 -0.047441302479439194; 0.3715195485848025 0.7387842267946 1.0803584770429437 1.358541447491753 1.5325854587580008 1.5729119656490937 1.4844956401651939 1.3105573119294782 1.1199711636118714 0.9844831729720808 0.9081914025751004 0.821126880064798 0.6658224748170458 0.4520807626449128 0.23090503889443123 0.05013963698506462 -0.07053005890933886 -0.11605400752563559 -0.07376292138563177 -0.022076806930699962 -0.06365604135729695 -0.17793455888900805 -0.2659780698403843 -0.21903978994145357 0.009015595224067991 0.3040816716926211 0.4343576170539007 0.29708317202099216 0.011422547679523203 -0.26921247354142847 -0.5082712807535287 -0.6971113206567141 -0.8116803783460091 -0.8694776593845519 -0.9048037691630639 -0.8967461567819511 -0.8259438045145304 -0.7141504076624173 -0.5949101806867236 -0.48311630716180587 -0.37715606121612644 -0.28519355465762364 -0.2192365792200419 -0.17088030906160756 -0.1301272030524616 -0.09710935984731506 -0.06990337845339738 -0.03900285263298954; 0.3999556249930608 0.7957443400022288 1.1609040626472718 1.4469825067014823 1.6036653061495063 1.6000633724669082 1.453767901457145 1.224946000743458 0.9917704584988053 0.834354299477848 0.7638822453825387 0.7010170853800013 0.5632576007043734 0.34038077546395606 0.09381324383489052 -0.11106304805238618 -0.2544111331839172 -0.30103699341822615 -0.21252969089780277 -0.07922312503089418 -0.038316948707321975 -0.10263008755479326 -0.15626173073184102 -0.0977039808974744 0.14107903758750143 0.4345560228526875 0.5476316654987023 0.41851146157658875 0.1344451097688692 -0.18361030561480984 -0.46713976707164917 -0.7007919541786823 -0.8487799784476032 -0.9113891328336137 -0.9338005150288139 -0.9189536470823251 -0.8507925290511601 -0.735415597119073 -0.6025010405363033 -0.4742082244710607 -0.3525505261835072 -0.2435525275206056 -0.16112131047553968 -0.10667239911430576 -0.07467832712170325 -0.05890323329068519 -0.048469779301221615 -0.030129424381401024; 0.4213222035929786 0.839073090599035 1.219954506928028 1.502836243516337 1.6315470999223343 1.5848726187666498 1.3983629176178516 1.1421852513603876 0.8962102519821679 0.7407027335856812 0.6877567536068881 0.6508712483404603 0.5284733945755357 0.2941184441277888 0.021279681602309645 -0.2121243709254453 -0.3868298325617138 -0.4462888750565009 -0.3352365839429916 -0.12972326392586528 0.025407981249771176 0.061775319832906524 0.060567424007942905 0.06726250616104627 0.1633831959125052 0.2970679309917338 0.341764543188645 0.29379124548590724 0.1345681215634518 -0.10816482153860764 -0.35502423029406904 -0.5773765112667325 -0.7365924504946925 -0.8165090830888863 -0.8511301046280748 -0.8515199502148103 -0.8064854492297819 -0.7112359325517347 -0.5882870204361496 -0.4633073517025599 -0.33968389204106864 -0.22086509376213234 -0.1223804215826128 -0.055022769669576956 -0.023174251645796836 -0.020294144653114073 -0.026304128106481958 -0.020936914788783786; 0.4296154960827328 0.8554759981603569 1.2401467945736635 1.5131273911501093 1.6115797743306866 1.5272807305080272 1.322772996564442 1.0779171832416363 0.8580480824454833 0.728293789387474 0.700623637800036 0.6843585652220316 0.5619843875664935 0.30171024832488597 -0.005019167390702621 -0.27054038190570057 -0.46886916282252133 -0.5354551001174289 -0.4128973974692676 -0.14833411825462078 0.11096815158327569 0.2554804542528263 0.26669145133519484 0.1530693260232012 0.037488677422738315 0.007274922985496478 0.017972599273016303 0.05362896986235833 0.02956944954915313 -0.09055464813375802 -0.2458901251564808 -0.40741158382716985 -0.5330282452895776 -0.6093263696186513 -0.6627079686195293 -0.6997739150140171 -0.7023283130492329 -0.6487020871186506 -0.5544574245480192 -0.4497200234018065 -0.3384890374146682 -0.22142631654756462 -0.11351098477814614 -0.03212306072206104 0.00837601915891725 0.00927515278093085 -0.005920363649503626 -0.011211477490796372; 0.4223243821896217 0.8386008059532541 1.2108622015871202 1.4694104583186833 1.5508095413094283 1.4545344888215097 1.260048025062372 1.051231797183922 0.8747679426503584 0.7741305212839054 0.7570377698709061 0.7417987084822691 0.6086806875039775 0.3216105947667023 -0.02195557909416396 -0.3196699101271945 -0.529689373714457 -0.589728164921756 -0.45249441215996905 -0.1596759195513602 0.16845742435922426 0.38193584845932493 0.3307184991112594 0.08338559615739352 -0.16293586655704295 -0.2933518786750807 -0.2846138173073576 -0.17853614447337557 -0.07950880748744613 -0.07345392693780403 -0.14363135003963814 -0.2386739607905179 -0.3054336531702102 -0.3535654114893208 -0.4201485745816394 -0.5014576409012829 -0.5629644267636296 -0.565721707319078 -0.5141228397203894 -0.43957138766218656 -0.3491920932917322 -0.2426593371627335 -0.13396146083747107 -0.04203716058809859 0.01245874822363486 0.022275269337041877 0.007593180823112917 -0.003129110128131127; 0.40162321230182724 0.7925786434856135 1.136154032146463 1.3746288546303047 1.4575884741881084 1.3881703740890108 1.23765116653495 1.0784181780828115 0.9412482579875117 0.8477830377278696 0.8035840966014027 0.75132323276919 0.5931303725281184 0.2864039524488751 -0.08554377161674531 -0.4034902122155273 -0.6015953649875352 -0.6329964250708401 -0.47927866566200455 -0.16810568803048734 0.2034874472969495 0.4511229192224292 0.3117128954265878 -0.06467966538004628 -0.388337978929363 -0.5546666264798502 -0.5545978529865013 -0.4069227226953259 -0.2202696181351602 -0.10771410184792227 -0.09127593370409483 -0.11433200409273009 -0.11324569275667634 -0.13091566063220042 -0.20941558188730314 -0.3248619178450275 -0.42876811741146187 -0.4769338329874913 -0.4697402055256674 -0.43220751112673345 -0.36754315809002264 -0.27705202625512304 -0.1741509077378193 -0.07673461987209733 -0.008318755360274188 0.016587795291634337 0.011257199543493293 0.0016288709582072476; 0.3681030589152062 0.7257880049161906 1.0361883713898683 1.2546913443996468 1.3509771392428482 1.3296616734581783 1.2396322437566683 1.1319538015731476 1.0238148486386232 0.915933106689404 0.8087083594243218 0.6760906135697249 0.4622899904269954 0.1320639116296348 -0.2521599672111229 -0.5613891743396332 -0.7149333662731322 -0.700016166352404 -0.5218981998755464 -0.1971112829746542 0.1811098289245522 0.4476709160787959 0.27228150655198013 -0.181283329714726 -0.5600252467746765 -0.7551305189946076 -0.7631872036581472 -0.6070570624457636 -0.3949046330237902 -0.217235871343124 -0.11519792756986251 -0.045433471472223465 0.0202846885115244 0.015349516914853952 -0.07927146273362908 -0.21408009797317423 -0.333067856782851 -0.4032613421356363 -0.4278658091165302 -0.4214477842776972 -0.38258199418192446 -0.3123513767769219 -0.22132330200919556 -0.12407624585504187 -0.04462782882653558 -0.0030029064109667537 0.005599345912430617 0.0020441912023199857; 0.3241495846982554 0.6460241845908434 0.9309134677373038 1.1416301978013697 1.2594926738390853 1.285566524390129 1.2491455536831324 1.1858729836214206 1.0994847147020657 0.9712049059521713 0.79836523395732 0.5830797571853931 0.30940072484295417 -0.041705226908280546 -0.4236974405088845 -0.7139143228200023 -0.8296517491650105 -0.7778773957441 -0.5864357441683166 -0.2673969513049481 0.09836740081104589 0.3487702050927908 0.2271079471774266 -0.20075924096365197 -0.5957492519730458 -0.8101750388503016 -0.8290980913671058 -0.6866354004812167 -0.4773825524261624 -0.2700871641055063 -0.1045439559496744 0.020679850761336025 0.09577759419744197 0.07599325361857942 -0.024603891630337167 -0.15234935017227438 -0.2655097839646303 -0.3425231480414878 -0.38681204887198667 -0.40405700023561103 -0.3877235174372239 -0.3390647205224844 -0.26417392614798396 -0.17254477576500904 -0.08734534312927435 -0.03168394701961517 -0.008140070400040314 -0.0021858768023788897; 0.2789654870044925 0.5640548280109864 0.8287405905258489 1.0413088928661123 1.1842255256222327 1.2521496001441883 1.2627291798381297 1.2405068432275759 1.1757373347234072 1.0338671870818594 0.8144357029952012 0.5471271941769804 0.24280317751058866 -0.11256570636782971 -0.4843293587433338 -0.7604303310558821 -0.8611807175968278 -0.8016799522435203 -0.6179864834308341 -0.32786321815942926 0.004720948117627116 0.2479665219116861 0.21205025788130763 -0.11877696072758273 -0.47283151598314266 -0.6879906664189231 -0.725335964991812 -0.6119969764142568 -0.4267713122606696 -0.2159792664721257 -0.03293987041430353 0.08446865076637014 0.1316386057826854 0.10350625813397725 0.01517919977230883 -0.09867280844371945 -0.20364678090743285 -0.2846335515779659 -0.34226027052278646 -0.3757015931435961 -0.3806301469026393 -0.35528427464112705 -0.2979150101143943 -0.21505482657700015 -0.12903729906015743 -0.06376543375755064 -0.027344124946252615 -0.010485763824861377; 0.2397695869595736 0.4913712580845629 0.7383237614766155 0.9531999256987257 1.1140647502988545 1.2102981198896063 1.2552808024150495 1.2665287721457035 1.2228395098824936 1.079274487188481 0.8409386575619261 0.5613183168129328 0.26459187935362904 -0.07173952756499798 -0.4247657582110204 -0.6881275836950679 -0.7856914276230839 -0.731457548647209 -0.5610236863317382 -0.3070023161735526 -0.022351137247342848 0.20404491328530852 0.2411320335721982 0.05215005345643821 -0.18992295164276785 -0.3507594411314242 -0.3905375549383473 -0.32402214634321413 -0.2013392459795092 -0.05055154277350928 0.08103824300336068 0.15150908194269674 0.17069264244098006 0.14501315379856386 0.06956116635891423 -0.03130322452849294 -0.13078671564919775 -0.21913205559203427 -0.29116226817660007 -0.3421774474117515 -0.368431686605825 -0.3637360517820929 -0.3213675734349141 -0.24725504882582203 -0.16374100169314884 -0.09400871142414181 -0.04813698313438889 -0.020537087629129838; 0.2015240277131403 0.4252627493831295 0.6605460821990401 0.8772001648720885 1.0461199138589012 1.1504480144012628 1.2002750787718637 1.2137293809857685 1.176294841689117 1.047901013929633 0.830326002380004 0.5798459594171501 0.3236530154490029 0.030384377225803894 -0.29225461616954435 -0.5389633036093784 -0.6258246791719696 -0.5732565838369486 -0.41959251665637226 -0.20437037928376384 0.01458255701274652 0.19306287047901308 0.26777635618876044 0.2245681077534419 0.15502334307378113 0.11092602820357944 0.10771987075961341 0.13065862203597822 0.15135799467076538 0.179841147266874 0.20839269024744808 0.21216999463160982 0.2029170411621327 0.17170890384247656 0.10867252064930694 0.03144036025880441 -0.054216664939857225 -0.1481091551350478 -0.23877683914509357 -0.3126864178791804 -0.3607775689459473 -0.3703808145553933 -0.3350355844995052 -0.2663922204973498 -0.18699864283609405 -0.1168458286961659 -0.06559928903309051 -0.029744069726255252; 0.16365829329366635 0.361845670539284 0.5874647214824867 0.8052621218048907 0.9775695454405747 1.0774742755876883 1.1062130671633637 1.0862111582527498 1.0278208831531883 0.9171465739919582 0.7504311858433665 0.5586105713809805 0.362903383018742 0.13520192721659421 -0.13511312041714008 -0.36469431116965495 -0.4492791097572741 -0.39022901726472364 -0.2530784168146193 -0.0852136723160373 0.06437818474042545 0.18166677777050505 0.2568901240905881 0.2949777218383637 0.34871783288374003 0.41345841157929175 0.45386976262636924 0.4385959655548101 0.36492046381883686 0.2812400356943569 0.21515355399565084 0.17595048849898498 0.1622012579324175 0.14765017603276198 0.11987511844881639 0.07505090109690601 0.0011424771254891965 -0.10049498845927979 -0.20921712039513327 -0.3022931126529668 -0.36159974944403556 -0.37203338711547934 -0.33584892516422044 -0.2704689632031844 -0.1960178572144628 -0.1290035156181006 -0.07693483798708815 -0.03639148698638096; 0.13391351117521866 0.30619737555606397 0.5156814966264344 0.7284977746927386 0.9021728197475835 0.9973573750989584 1.0020982617652 0.9390890971810921 0.8442501782202838 0.7366907118323364 0.6147052095617836 0.4795826727556813 0.3365142661517101 0.1675480476458757 -0.03916985843302057 -0.23426673913803855 -0.3265877130140665 -0.27618858731718876 -0.14464516261905988 -0.01032908864849494 0.09181422063762124 0.16324380787009743 0.2196189627763341 0.26693887570301517 0.3257173274290955 0.3700246108957811 0.3618888592516002 0.29218279641024847 0.18101823382040996 0.07195763866002265 -0.003988261113842262 -0.02447039361298195 0.0033245488285252108 0.04503123251992893 0.07112338727566238 0.06044152458227666 0.0009814280652274765 -0.09842122314596753 -0.2125168925231468 -0.30948857068393765 -0.3630400255846495 -0.3625173902637118 -0.32053865736468634 -0.25736993914548906 -0.18989014784065325 -0.13001150992510493 -0.08123267788876623 -0.03969855846476146; 0.11408438205683245 0.26191521011050983 0.44896031096880545 0.649814340024132 0.8226972991870374 0.9203323647045423 0.9167520158381369 0.8275973164058087 0.6985825654557285 0.57429792400564 0.4686484373789892 0.36843776636452863 0.2556865736633659 0.11153889806495994 -0.0612476893877057 -0.21979623360166087 -0.3038071413855469 -0.2702558345733469 -0.14439530159538302 -0.014741784833518599 0.0741247595676792 0.12423030899366473 0.14811595423681465 0.1501929961114272 0.1420290033534966 0.10286864133871475 0.01861275241785148 -0.10103826727040822 -0.22619848403363 -0.3241924073436291 -0.36724497589348953 -0.3367901492656648 -0.24888956372728852 -0.1434111893708968 -0.06130839135978583 -0.03192731127272779 -0.06406335330172193 -0.1455402686527269 -0.24615125233646773 -0.32485458881916957 -0.35462251750435453 -0.33549176321257473 -0.2876139044311406 -0.22866531959676212 -0.17056436976467518 -0.12109140145120843 -0.07909661509070663 -0.039783154914046014; 0.10154165869378895 0.22893685313899467 0.3906955474564243 0.572200177957213 0.7410115068688925 0.8508042268314737 0.8640470508058691 0.7806288558516072 0.6393044221110691 0.4910964286533785 0.36900955452173867 0.2702866055801837 0.1661055175196789 0.024205554159383136 -0.14936697567000873 -0.3015385808237729 -0.38096618369354907 -0.36617421731929 -0.2677415562184004 -0.14687129006986344 -0.05751813921434926 -0.012027511306441476 -0.013929760350656552 -0.057207744763635805 -0.13247730822399187 -0.2402157851068924 -0.37680677220797987 -0.5269799694338152 -0.6586039599685214 -0.7364550268849978 -0.7359471198325288 -0.6570198514443724 -0.5273393331997401 -0.3814263005173368 -0.259079535363056 -0.18903376734710456 -0.18144323442599855 -0.22622224601446128 -0.28965428094067847 -0.3292030222809636 -0.3263963569241642 -0.2919883378477183 -0.2440505507057953 -0.19244702576118286 -0.1458171592398425 -0.10810260787384642 -0.07347518042876905 -0.03745702365143766; 0.09736826293474038 0.21117047472222972 0.3485661670017394 0.5037502058964525 0.6595679914512451 0.7828836599393653 0.8317105213682204 0.7860265331575262 0.6654202584726752 0.5123249666393097 0.3663250339527127 0.24115447552857636 0.11863062616862453 -0.03507281269612359 -0.22402724060896365 -0.39523756401251686 -0.4912227772288776 -0.5030977122451399 -0.4513275113621927 -0.3767938841809567 -0.3188176524154079 -0.29363158456127814 -0.31193535906823794 -0.3711905226477427 -0.46443785560355905 -0.5852414909654181 -0.7280086745771098 -0.877288062637664 -0.9992254217960989 -1.0557920903628073 -1.0294941486988507 -0.9349891325432779 -0.7946286988775625 -0.6326531209487728 -0.4841477817787417 -0.3755751132095243 -0.3213360144837952 -0.3146142809167189 -0.3231704526132817 -0.31359470440096726 -0.2815980008066963 -0.24088919923400304 -0.19896245146070185 -0.1586255006078473 -0.12524249897382134 -0.09788508710164795 -0.06864065948912086 -0.03522082307883351; 0.10476500735801843 0.21195440651820804 0.32638698124949167 0.4518444520797342 0.5874471170276938 0.7164878373650291 0.8011133288601169 0.806032097033883 0.7298045999960106 0.5996341781709088 0.4507741433895677 0.3038395599172937 0.1525138140785332 -0.02583839266411346 -0.23612905957651037 -0.4351405750417023 -0.5634003857962927 -0.6096766710256926 -0.5998035440428561 -0.5728827281993479 -0.5618744962194763 -0.578294499770307 -0.6252767281202124 -0.6984255527531779 -0.7914356927071924 -0.9006369179572421 -1.0261280926344718 -1.1562893653694108 -1.261608043770613 -1.3051946374591359 -1.2761825159113016 -1.1838583143753656 -1.0379453016244033 -0.8630618237024774 -0.693137296926732 -0.5521471400933876 -0.45339182621031776 -0.3904994398412341 -0.3391586572352226 -0.2845111918442681 -0.23355038983761786 -0.19323484804543156 -0.16027912751484882 -0.13340835952709756 -0.11306515480684116 -0.09323545734317915 -0.06686876829831896 -0.03433436860095602; 0.12319646318783146 0.2310428945134944 0.3251269865739713 0.42136573754568674 0.5345964816586779 0.6608487250181816 0.7678778239817121 0.8148846085522812 0.7857786783506561 0.6934724604098278 0.5630670371771748 0.41431264240338767 0.2495216904148742 0.055310189396189396 -0.16877710894765433 -0.3859981260989324 -0.5436543884329208 -0.6251924469533653 -0.6506096738976858 -0.6558833644386288 -0.678506737012579 -0.7325972509740107 -0.8160701406647372 -0.9200988149989288 -1.0348985270941056 -1.153313565639067 -1.2746995404095993 -1.3890872077070338 -1.4749727344421828 -1.504708336758499 -1.4702992704980287 -1.370037014139614 -1.2144177335893154 -1.0333601405770187 -0.8556126287686275 -0.6959704186654558 -0.5612388399361102 -0.44730811664157877 -0.3446105636026814 -0.25742863580740344 -0.19544957774452026 -0.15719274805576777 -0.1335951227367701 -0.12023062237746143 -0.1101716960347635 -0.09332812652232696 -0.06650738491869909 -0.033757139846181276; 0.14370518651972328 0.2577971098868735 0.34012223545578996 0.4138152572568358 0.5052213291446024 0.6202451613028968 0.7341623977444657 0.8075952190022223 0.8178115065053294 0.7665803070796804 0.666655805584612 0.531299262887021 0.3716661916958795 0.18668538373721558 -0.024874578424543582 -0.23759976003839609 -0.4073781563440427 -0.5130074583471419 -0.5656725273156749 -0.5953775556292248 -0.6408423209914229 -0.7234925040381274 -0.8408534706887325 -0.9812740019451656 -1.130158139342932 -1.2755659896437985 -1.4082161342536048 -1.5179910572900688 -1.5889412600487205 -1.607557441851391 -1.5666645305769344 -1.463156100213366 -1.3129081543388086 -1.1430747029153117 -0.9691149394570957 -0.7965013571005266 -0.6316258562081487 -0.47847793520427984 -0.3436844459658481 -0.24121518384222934 -0.17567799642596071 -0.13938502257429586 -0.12256044104528506 -0.11779060534011015 -0.11189966879140925 -0.09404071814704246 -0.0660323086940804 -0.03337974134389642; 0.1564159120074869 0.27839420593511166 0.36157241964084696 0.42776343116610116 0.5019623975804403 0.5957761539458812 0.6988027015444888 0.7835646558476621 0.8247005635882976 0.8140961812264258 0.753497907988956 0.6450233779214459 0.5027716233712634 0.3434510212879061 0.17264680272213348 -0.0005982603675342385 -0.1525850528175121 -0.2643660223480709 -0.33965137316778443 -0.3967968891474537 -0.46370430131955226 -0.5643836055030937 -0.7024862416085587 -0.8687157640081424 -1.0468096743646087 -1.2214355895934201 -1.3766095176990212 -1.4995934703625202 -1.5769017297625303 -1.6023472021451226 -1.5688901852368846 -1.4776924596044811 -1.3456210288237496 -1.1887936293170982 -1.0130236354982856 -0.8277471282376397 -0.6462843311761374 -0.480679633191648 -0.3432198504536813 -0.24364114196954487 -0.1782509593608015 -0.1401872789750083 -0.12375022233090432 -0.11992707961502608 -0.11300841209671467 -0.09399656232777091 -0.06612321206469475 -0.0338564405209368; 0.15540008656347945 0.2831792439197408 0.378669429921267 0.45434777547641686 0.5223541988857154 0.5908967949724965 0.6652266100029347 0.7410915345516513 0.8009826913895977 0.82746941638865 0.8124655794654233 0.7478594715115873 0.6377275262985158 0.5086529652075423 0.3832385740003505 0.267386572410805 0.16282992092489107 0.0724488414840206 -0.008108813907875548 -0.08931801787316213 -0.18100675454252457 -0.29691186072701253 -0.4444374620414089 -0.6216012887378909 -0.8170938395627371 -1.014625205838485 -1.1947644944790308 -1.3410152925130696 -1.4401801771282152 -1.4861072960632233 -1.4722204985815133 -1.4035420372205982 -1.2904245756755244 -1.1407634055341576 -0.9655998891487527 -0.7855898276634928 -0.6179782347903325 -0.4721838455721688 -0.3528330648959246 -0.2614216747336124 -0.19462882919395677 -0.15275432462433525 -0.13321118513121005 -0.12502247635420946 -0.11423072275834635 -0.09427162853351487 -0.06699175359013218 -0.03482270507665848; 0.14220286004792015 0.27211227637212654 0.38413074151087395 0.4780464020521119 0.5512936873474028 0.6039999868581629 0.6471427500299922 0.696303449868411 0.7523485593005635 0.7996522927405805 0.8231351808401018 0.8107100781513532 0.7543225396016565 0.6706894299734685 0.5899494936297296 0.5243204279050628 0.4699492703570612 0.4176963809489158 0.3561271124673472 0.27302567994763294 0.1647839832618234 0.03155968907295263 -0.1273406515829779 -0.3103470570970567 -0.5105001897571758 -0.7146092144294973 -0.9051004639079016 -1.0659674265780303 -1.1855788004984764 -1.2566798938891641 -1.2734124710278767 -1.236796856723028 -1.1479737953052336 -1.0169387219198147 -0.864594216805471 -0.715693738758428 -0.5827915184896897 -0.467710843049378 -0.36809134406088423 -0.28469762738958737 -0.21988533231084229 -0.1769903877545835 -0.1517705763425755 -0.13447272676511646 -0.11694060125910011 -0.09540363888835629 -0.06828964062834116 -0.035891599798575105; 0.12541638325524868 0.25270639886705026 0.37592148534098885 0.4843734761577407 0.5665640235240739 0.6169591999677536 0.6440470824153957 0.6686512516893831 0.7054835359563535 0.7508443354414429 0.7909953861644293 0.8154359046766967 0.8149859557204852 0.7930422797640966 0.7694514350746673 0.7561740958387598 0.7497992211905553 0.7392630447505055 0.70797851598305 0.6396178200439938 0.5277571941345267 0.3790076433435282 0.2031319653075874 0.009350322804216452 -0.19263368929343586 -0.392552678647778 -0.5791789875565473 -0.7432599200017956 -0.8778682331139629 -0.9766661610413814 -1.0317768549662893 -1.0349978017317074 -0.9825316146082965 -0.8886626983505821 -0.7757944881971319 -0.6641926322045056 -0.5613104262803401 -0.46827024902451836 -0.3841598201077742 -0.3116418835042482 -0.25388157552512164 -0.21018291029658037 -0.17591062528029894 -0.1470692870611065 -0.12180556829090933 -0.09727414483615782 -0.06915768354644339 -0.03626932612458013; 0.11037903297982676 0.23037588436164805 0.3554011638847563 0.469010748882355 0.5552927062849917 0.6095062249482921 0.6368655921006974 0.6521652099623605 0.6722966797621798 0.7050548943649035 0.7450560391634112 0.7849751986268125 0.820133884886886 0.8504027752152858 0.8834246600396887 0.9241094779298838 0.9671522334647918 0.9999616240808561 1.0033105230440562 0.957292188183415 0.8523559612934386 0.6957165227636293 0.5041523773746757 0.2944292404703598 0.08281316153637705 -0.1191852155611682 -0.30413033212592966 -0.4704214887839249 -0.6174347765129495 -0.7417801672262304 -0.8324873508422815 -0.8747786651821698 -0.8629499476488567 -0.8087413822603108 -0.7295656797545956 -0.6415807977904774 -0.5533403294691853 -0.4716799415436745 -0.3991898905630925 -0.33785550273929504 -0.2864327211001649 -0.24049963188883475 -0.19809222914821942 -0.16065980548797665 -0.12829693469844294 -0.0984255609778177 -0.06717531583340748 -0.03421820198153229; 0.09536760507089025 0.20375853619671483 0.3226858666965495 0.43329193002650224 0.5178755832863413 0.574868787911298 0.6104366443218743 0.6306726803281628 0.6441499938984073 0.6638959450926025 0.696430905249027 0.7405369631554223 0.7939563753890387 0.855880836402103 0.9268465466874383 1.0055388322594025 1.0846583697899848 1.1509770697240436 1.1853839865268847 1.1668677560499063 1.082037562349223 0.9338895798943809 0.7386923286983185 0.5171980120431506 0.29116077540866714 0.07728489667854205 -0.11545676458002484 -0.28868311212476755 -0.4465454416043788 -0.589046942513463 -0.7039487765547771 -0.7753184213209269 -0.7946647002972625 -0.7673762203000257 -0.7062287121398171 -0.6274075109660793 -0.5445760581195441 -0.46921146545506026 -0.40505834184755857 -0.35117269573973803 -0.3035365222622542 -0.25726533420400155 -0.21224309509933426 -0.17093527549064896 -0.133030010064319 -0.09694189807964568 -0.06220952489210957 -0.030158431567371875; 0.07879169070570759 0.17173633601633828 0.2779850341984389 0.3805072053719078 0.46129466382991696 0.5187048833993779 0.560832063215411 0.5919925944080101 0.61050626632222 0.6231723761835247 0.6443964817713751 0.6824719829674214 0.739644770526365 0.8146592684840896 0.9030219921819118 0.9985625045749451 1.0921651810796886 1.1724510525210972 1.2236682807105046 1.2277479753384257 1.1697946906461192 1.0463498176624542 0.8672833392804156 0.6512413014194793 0.4221769291956057 0.20108056868804036 0.0007134274465540948 -0.17927656863021285 -0.3440174334237507 -0.4946617067936853 -0.6200934924679359 -0.7052091811704411 -0.7396447250120111 -0.7249453302990594 -0.672674691229706 -0.599970189587244 -0.5232316156235962 -0.4536507091941823 -0.3936146910547011 -0.3422943029939784 -0.29749978444490716 -0.25553424867184305 -0.2137025910489324 -0.17218947676770813 -0.13078004297515478 -0.09051320678764414 -0.05445400407902881 -0.024955230688642856; 0.06283608300845119 0.1378624504335596 0.2259916261589955 0.31570785983884564 0.3912097643616349 0.44721213865471143 0.4900794074228869 0.5266381655124774 0.5539721021701447 0.5694252629433826 0.58335966372272 0.6096988126297266 0.6562723354166828 0.7250918573141848 0.8102696169982985 0.9024926922442231 0.9908846703122853 1.0657539398878118 1.116042272156491 1.1283089530984498 1.0902141977240358 0.9948852147905693 0.8460020039866366 0.6565238061858388 0.4472017014322528 0.23896571354084822 0.046394309308605275 -0.12807599359418512 -0.2869892474788047 -0.4308412437825705 -0.5497960058271927 -0.6310888103883079 -0.6650308674390555 -0.6537562103243745 -0.6085483332772298 -0.544952666120928 -0.47746095220184864 -0.4136249943324676 -0.35594723462164224 -0.30705304339382145 -0.2677920631911813 -0.23419184824761877 -0.19936124140560044 -0.1608950033011216 -0.11965585645260887 -0.0789953714399142 -0.044532461690211245 -0.01907229631462173; 0.04963331322161621 0.10688604854508382 0.17364935462780487 0.24499888603728873 0.3097114183664307 0.3607221901436568 0.3997631568791451 0.4323588082335219 0.45917627832341285 0.4769573187460532 0.4894728836633704 0.5078934319247544 0.5411403167576415 0.592956222695283 0.6602964070527191 0.7344562501262885 0.8044812056462062 0.8612810601378715 0.8974629321864387 0.9047487050810197 0.8751999591178595 0.8026993282235187 0.6880468764343864 0.5389524942689884 0.3696805116404267 0.1972620759969376 0.03517808928212499 -0.11227484058631575 -0.24553717963420083 -0.3640134631476033 -0.46002134850028115 -0.5240141585891189 -0.5493991027811228 -0.5391616775803425 -0.5025228384582895 -0.4510194036801712 -0.39555317442506016 -0.34104719695509866 -0.2911695835395912 -0.2506455362727149 -0.22013760539936691 -0.1951286223109752 -0.16781085712327481 -0.13547540118490087 -0.09912223030818244 -0.06262236595782648 -0.03276339623577544 -0.012779356340952803; 0.037054606562244484 0.07720028759376654 0.12212694637818775 0.17074264857426594 0.2171554604877856 0.25627299375334806 0.28720233486113333 0.31089901357795835 0.32811662626503596 0.3394206487737838 0.3485258748286697 0.3622323526439935 0.3857812971235841 0.42108753448968017 0.46694216178158454 0.5183903273580113 0.5663464105429503 0.6031310203742478 0.6234153155891308 0.6234103489160518 0.5990546033103327 0.5468388436986775 0.46714305950919327 0.36436192461244743 0.24662662966665475 0.12594385535083416 0.012888522606341506 -0.08915126628700591 -0.1809967028018636 -0.26237650632011444 -0.3277914115619588 -0.37095297269198874 -0.38777169595329 -0.3805016921652531 -0.35498180129231477 -0.31875482882554096 -0.2796232892661151 -0.24082181913412626 -0.2056107490975504 -0.17780114835316832 -0.15692915196432428 -0.13945439242950025 -0.12030484213226994 -0.09750771046463592 -0.07092399130246592 -0.04335190944397789 -0.021236774795049936 -0.007510897120235558; 0.020623581017298248 0.04200114110087425 0.06492317268946245 0.08934409856840392 0.112968857430795 0.13393492580618233 0.1513036276621826 0.1640396123092138 0.17125747167625963 0.17437683292781644 0.17768428759812652 0.18500447910081444 0.198122725325299 0.21704294525115095 0.24103038573191335 0.26826068059906355 0.2935811010638156 0.31228565213220666 0.32135885300897354 0.31944148565725106 0.3050974537373557 0.2768647912129137 0.23520973292200764 0.18221177887807735 0.12162870511530609 0.06005886158369045 0.0035658260627318265 -0.04659190238115777 -0.09201379823373261 -0.13296695798554586 -0.166369469110133 -0.18865149001238452 -0.19762391607140894 -0.19425785817951255 -0.18149885413377917 -0.16330556329595042 -0.14390054100903243 -0.1246355358469532 -0.10688644801934692 -0.0927313319884724 -0.08168437035297775 -0.07222875863586822 -0.06227526125112365 -0.050680977013524205 -0.036660569569223526 -0.02174859551616417 -0.009996122375359545 -0.003201202348661307], hyperparams = 95.60375918192067), (params = [-0.016525877830876046 -0.03202608222218347 -0.044240093921898906 -0.05279050475470912 -0.05812192595522924 -0.06212412652430517 -0.0652687803259373 -0.06578986543654543 -0.0610552117790351 -0.049079430690797 -0.02916880462305244 -0.003450339532310386 0.02432384909080423 0.05053743956070626 0.07380104141799401 0.09374216473455493 0.10862019514141572 0.1163498400845001 0.11497135627024378 0.10481433547310531 0.08857400849350815 0.07039859675830008 0.0541924837674462 0.040306582874736555 0.025793740526914098 0.0059949197603233785 -0.022261376324017465 -0.05764566937251157 -0.09454238795282215 -0.12650507702931144 -0.1515757053357226 -0.17125211392777756 -0.18737466291737376 -0.1982739861237815 -0.20018647406356033 -0.19267215350584516 -0.17764334509360497 -0.15550809407531374 -0.12578361861704643 -0.09019116958182342 -0.052657299991794866 -0.017458715807954116 0.01171202141924695 0.03111592965977446 0.03954802982841629 0.03707765353924843 0.02707726860681458 0.013668126466354104; -0.03136870239640335 -0.061062332437518324 -0.0860630848673541 -0.10574955207328099 -0.11890761026178005 -0.12623780536740586 -0.1275512517311975 -0.12118945075140355 -0.10481523494420339 -0.07650932152162017 -0.03703140737637141 0.00909015245841658 0.056576411549677325 0.10112283813381394 0.14064369193911389 0.17422488648584358 0.19901278363475564 0.2117442677491151 0.208966526337663 0.1915499884183977 0.16420612260536338 0.13368392311790406 0.10549350036298122 0.07948420789164073 0.05048472717440923 0.010874066570190256 -0.04443791769297598 -0.11256603244551308 -0.18346065939272146 -0.24511875655332982 -0.2930936575468588 -0.32943955041464107 -0.3578763776238169 -0.3775244497602695 -0.38244372221317524 -0.36914497942504526 -0.33858536857199145 -0.2933206155344055 -0.23568877789998371 -0.16871429796756515 -0.09725227358576878 -0.02941844579717568 0.026610287148539354 0.06297822940812327 0.07788921763699788 0.0727736033130799 0.05379793319730765 0.027636120403826226; -0.04203273404148572 -0.08327243216997714 -0.12132015402794587 -0.15413141290579951 -0.17677525573511266 -0.18640317086541738 -0.1811427043452729 -0.1607756127502756 -0.12604224888123353 -0.0783546375131664 -0.021131614649543228 0.03937981945074233 0.0980108147665061 0.15037371857135456 0.19407665965995433 0.22848561009606147 0.2523332191999058 0.26337969155256263 0.2584127079436796 0.23819350307568452 0.20700222370321955 0.17156430930800404 0.13683567859362974 0.10181777718975366 0.06020500201653989 0.003705477860104377 -0.07220159568847105 -0.162746225622624 -0.2557883124794797 -0.3376084812679658 -0.4031337912201377 -0.4541292121560461 -0.4943860528612966 -0.5229641128590758 -0.5320143871167249 -0.5135147379821173 -0.4665174091810338 -0.39727604409359685 -0.3139969892757741 -0.22168452669243713 -0.12396150950301524 -0.02972124292567824 0.04916418427871126 0.10015013186533347 0.11968925170110223 0.11073179058165562 0.08231349703235719 0.04295409793731729; -0.046666560241285474 -0.09486647740752309 -0.14313250986822335 -0.18700349983437003 -0.21766666110043925 -0.22826675959909012 -0.21494276269442275 -0.1791486725804074 -0.1264811800058048 -0.0627615797550702 0.006080817971754105 0.07328975263995213 0.13288985191610928 0.18060348565962886 0.21535432684296965 0.23972783488932348 0.2553835947726944 0.2624601790058548 0.25898675049125297 0.24379304657254824 0.2177955020637296 0.18450609793547607 0.14701682421014672 0.10453673198480282 0.051546651879944075 -0.0183383033230814 -0.10737272972248417 -0.20878284551143908 -0.3100655777232895 -0.3990393438645181 -0.47249927248183554 -0.532884144898369 -0.5823565122710433 -0.61804677140892 -0.629984647430501 -0.6067932715627151 -0.5453916374287864 -0.45492521216786397 -0.3486393337790858 -0.23568850214438286 -0.11983634375322705 -0.008448578724320218 0.08639547915713805 0.14905419552244736 0.1722130057153251 0.15787172709230513 0.11719178052241275 0.06153958837158589; -0.045080576724448505 -0.09387374456229038 -0.14616535249983817 -0.19592405622607795 -0.2310154044841934 -0.2407607707336556 -0.220048392387948 -0.17303766191445566 -0.10990388514304265 -0.040293580016985006 0.02779505397618764 0.08746452648768496 0.13387859625070275 0.16600317360351632 0.18785412682045313 0.20457870563920966 0.21866013761262496 0.23062197579197943 0.23843808309446382 0.2379762436583714 0.22602435735731669 0.2006508136854646 0.16185706027750704 0.11002101141395554 0.043537009802789045 -0.03921526407410364 -0.13733267892769874 -0.2430450798758005 -0.3448944565553288 -0.43273828015276844 -0.5054659029850583 -0.5666902087123348 -0.6173906402135725 -0.6520198136489573 -0.6605336246597019 -0.6315320928491293 -0.560812510953535 -0.4565945698540531 -0.3330168597214309 -0.20311014054067947 -0.07445054537270282 0.04534351107480797 0.14644465250877234 0.2144309422104178 0.23888119265349017 0.2179042828545149 0.1621036043677701 0.08550404203435301; -0.038363141481772514 -0.08143180600011544 -0.13094416931011468 -0.18053350066552676 -0.2155960924569537 -0.22248508822931348 -0.19673834575141078 -0.14535637682325744 -0.08225349494397885 -0.020133723179292084 0.03189085398313147 0.07046131722648605 0.09686170766938021 0.11725772829686677 0.1390041770333043 0.16472191460894067 0.1931861135725937 0.22235587681296579 0.24745875619310667 0.2632586162330098 0.2644777387991982 0.24507996642696905 0.201831049009332 0.13558395744279653 0.05035514110875808 -0.0488438553573094 -0.1560945302230445 -0.26235470167144603 -0.35914695177722217 -0.43984234172205444 -0.5047309352898657 -0.5582407548203872 -0.6009693032326643 -0.625448202172176 -0.621875622993266 -0.5826394670979316 -0.5053423344909481 -0.396499184171692 -0.26620600719628856 -0.127047400859086 0.009785376040827562 0.13301120773041547 0.23258555607375697 0.2977279125583281 0.317969663080663 0.2879961395192026 0.21493264975497106 0.11396653242154668; -0.02834156442254087 -0.062525948343263 -0.10499779963350872 -0.1485995696787087 -0.1778186236732077 -0.17920358903378916 -0.15024141995249957 -0.10047823890002876 -0.04649565524272346 -0.0016268079928671475 0.02852118122776842 0.04835664528855535 0.06744657016173031 0.09611068376266721 0.13889760276827262 0.1904622733104804 0.2441060325337391 0.29332016464466054 0.3314566617727831 0.35415312733503673 0.35609023310315235 0.3310080897233185 0.27395218290912465 0.18578105585146326 0.07473416340870832 -0.04800607732590352 -0.16973262119878252 -0.277916120737237 -0.3660516876272171 -0.4338808410738061 -0.48407224305144075 -0.5215413055592979 -0.5467174479752238 -0.5528254784705852 -0.5299257907179287 -0.4740578561038207 -0.3871744619397283 -0.27695192432628396 -0.15019962844792428 -0.01379342167624574 0.12296607906490821 0.24585820521009383 0.3401806706669648 0.39566011301708875 0.40464527237251013 0.3615346273968445 0.26966587079018073 0.1432665399057716; -0.01729694706200947 -0.04165048417945194 -0.07362288227206135 -0.10467926703975107 -0.12161000119754962 -0.11434514840436506 -0.08349775706304241 -0.03984832999648709 0.0008797021942600203 0.029757899343236225 0.04851099412357396 0.06891865856401327 0.10473599709140685 0.16368374706540548 0.2416028218012417 0.3237237494384279 0.39737348245085696 0.45567646202730555 0.49526015705929916 0.5123295113396776 0.5006856461665119 0.45620895659171584 0.3748311106125679 0.2586322736289489 0.11778985530099283 -0.03227681346589136 -0.17374602652462795 -0.28973068666981544 -0.3723655419843346 -0.42628395378463185 -0.45931476196757215 -0.47740622958128537 -0.47986256216251283 -0.46115300179836366 -0.41385969877522527 -0.3360373278917249 -0.23320082876135345 -0.1163221586364839 0.006217590216556752 0.13140960569828652 0.25662188514000434 0.37118502158919753 0.45678707097142596 0.4992187445870881 0.4918206867718659 0.4320535134849228 0.32099399778309967 0.17065569535242447; -0.007616467892675848 -0.020045284577924757 -0.035683072890801915 -0.04759373932576155 -0.047422449155270836 -0.030213438264914842 0.000768806095197612 0.03667588757795126 0.06741105943294276 0.09147244208127407 0.11650356592598078 0.15751168408243754 0.2275065743996583 0.32717620770079736 0.4413201263742619 0.5463250276271789 0.6262094936444083 0.6796498886320528 0.7102084806723411 0.712071656909724 0.6768785346797672 0.6026623133896403 0.4898262813163921 0.3435723155347934 0.1742655954343564 -0.001450353991565568 -0.1638175422698614 -0.2935258308433837 -0.37839434675800937 -0.4222168098436103 -0.43792724853699655 -0.43636320991269467 -0.4167660253792258 -0.37327034471911114 -0.3010601286296042 -0.20135389177525845 -0.07962808957869577 0.051846652542498796 0.18016442806328364 0.29883641260506555 0.4070392008445864 0.5027364559984504 0.5725546291471008 0.5993604781741837 0.5736198050565556 0.4949577160268018 0.3651781795834582 0.19398794974761327; 0.003986993142616661 0.007871587297328954 0.013677521841414506 0.024299133497091917 0.042645270487306285 0.06916357425009748 0.10026507663624475 0.13159228137442494 0.16040789144944007 0.19076061722313908 0.23246754071519102 0.3002291987039442 0.404812420307804 0.539419227656042 0.6795209208605141 0.7976528975220593 0.879465220715953 0.9284092182634228 0.9489440383579348 0.9321182180829822 0.8688426536241053 0.7600278659820742 0.6125705317804088 0.43765688704230077 0.24528834933918933 0.049109021590277226 -0.13350902271755852 -0.28333949750522064 -0.38321847480820065 -0.4298503659440713 -0.43408032766274707 -0.41216128234677823 -0.36940674010960756 -0.3016204632801179 -0.20579662475154378 -0.0867104161076028 0.050648273809364486 0.19831724431711092 0.3410270434103852 0.46502454327648424 0.562823574996079 0.6363610932272302 0.6833546577934654 0.690754082674149 0.6462091799115514 0.5488796048210781 0.40172167302171097 0.2129635679583198; 0.02075641293363129 0.04463971582348079 0.07333042942335342 0.1063215822353973 0.14239755879778002 0.1796629247922674 0.2159173415011509 0.2498953859360681 0.28293691104147534 0.32101559986924727 0.3745452563520857 0.45938567334436897 0.5846407113442827 0.7375860699877131 0.8895482847901841 1.0157304608723328 1.105913751314665 1.1598924764158633 1.1747057442253854 1.1398475705736881 1.05053750786109 0.910669468656424 0.7338508958915132 0.5377950565638965 0.3332469813386107 0.12845721845411995 -0.0679393649516515 -0.23997527982082995 -0.3684425224508531 -0.4391925366822104 -0.45198937975109893 -0.41882164417304624 -0.35402365124835067 -0.2609344846410217 -0.13955315910269658 0.0010577218579226725 0.15312393340379657 0.3137235265922072 0.471481136663012 0.6077593486987266 0.705515847102465 0.7632051961856179 0.7867747818846638 0.7725616848189796 0.7094452754014043 0.5948952584494851 0.432251483959862 0.22856158927554304; 0.04024446402811561 0.08545273107707689 0.13670527748129296 0.19087494441367353 0.2447883898501405 0.2968379459416889 0.3453177075679112 0.38764722951685276 0.4244026722208465 0.4613409597639659 0.5125652160192328 0.5982494528451321 0.7261907450793526 0.8803743305289135 1.033842975785127 1.167252224740486 1.2699477024472818 1.3315164867646774 1.3393941637582198 1.286089674077452 1.1730503513122992 1.010498648398331 0.8195922665987134 0.6192231732274838 0.41960471126156906 0.2214629382886954 0.02352154429070442 -0.16430104725142505 -0.32430392579699296 -0.43333358691256757 -0.47659436818276035 -0.4519711227348429 -0.3745343364432367 -0.25984811389818746 -0.11312016854834425 0.0535178118777821 0.2253575628260967 0.3984521121863678 0.5674789145416421 0.716137564397094 0.8205465797159459 0.8712179832269398 0.8768527974873391 0.8434005462272286 0.7640994792356642 0.6344235827686349 0.4576200157495593 0.2409233695881; 0.05955668279929384 0.1251799521323124 0.19712509579661575 0.2705298640430861 0.34260776237955193 0.41310801119680735 0.47933231582986885 0.5332613100671457 0.5703766879847642 0.595405472255907 0.6276099266217774 0.6925941494433507 0.8000341044163044 0.9381815080571778 1.0872918084871754 1.2298948570199193 1.3474921646290348 1.4163863504109648 1.415735581449925 1.342283526209084 1.2067909520524611 1.0333918226437961 0.8494532381344762 0.6689500517550545 0.49406323142917213 0.3163566673871986 0.12650130411426877 -0.07188291193605688 -0.26083685676794705 -0.41286042669669754 -0.4995356214966995 -0.5038283928983937 -0.42910458601851326 -0.2990279834002935 -0.13090499900956581 0.06207890820916499 0.2595334092139992 0.4500791848313408 0.628861800821296 0.7858546985557661 0.8990659212117765 0.9512568230307308 0.9476756338797664 0.9006854733415369 0.8090331950770271 0.6672301686843255 0.47834462722993315 0.25066966424900916; 0.07852656952703474 0.16219725780872563 0.25076985714174327 0.3399077738543536 0.4287870713357033 0.5190648985001224 0.6060652647151712 0.6740781333872276 0.7098992253804441 0.7148638813996141 0.7105239457735761 0.7286056677467116 0.7903291362194312 0.8981159719482072 1.0394433300187673 1.1930374998148685 1.3291356774808798 1.4090405121069594 1.4024855897137625 1.3129407710498489 1.1679749859124 1.0063550562989538 0.8515793107791159 0.7088815230791856 0.5703317331094039 0.4220146214710319 0.24523848706339518 0.038422281354352265 -0.17864211840399988 -0.37178761395409876 -0.5043462273928877 -0.5521066537447211 -0.5046843402356376 -0.3766122061371956 -0.1952487315905002 0.019304135466897167 0.24329540644331432 0.45779040021757733 0.6520978985919734 0.8176025560447525 0.9391293845062793 0.9983751043129311 0.9946811990387359 0.9411042017493793 0.8412294271978412 0.6905825733614837 0.4927426199702174 0.25721781237610014; 0.09729332075673651 0.19569738457896582 0.2946143253185117 0.39223854827866433 0.4916724522368494 0.5976568598677685 0.7046991307416323 0.789123221908222 0.8270985561884351 0.8118830397633207 0.7612040196432466 0.7160884102143188 0.7180045761459312 0.7854894403075879 0.9094506511600623 1.0676583260588008 1.2198253008243127 1.3107984139144266 1.3072555719637426 1.2213670240900243 1.0955497948988806 0.9709568944385923 0.8596715303879492 0.7571225432317547 0.6497006848414913 0.5200225391532167 0.3508391424041352 0.13220637767017449 -0.10874534959881936 -0.33163704041595593 -0.491651072103784 -0.5726698711569577 -0.5660333725830476 -0.46769678468821074 -0.29416954197006495 -0.06997138645348179 0.17379385423199686 0.4122841359332815 0.6280670131411318 0.8087439582352794 0.9428754711091636 1.01333528356087 1.0156484437118698 0.9614809302323161 0.8577304616539684 0.7018822482047412 0.4985880111644182 0.25916890583335145; 0.113229213787125 0.22126077455383877 0.3217916879435414 0.4163352793555369 0.5141994414919795 0.625952205540589 0.7469813640256718 0.8485906649442725 0.8973695620887715 0.8747614706113225 0.7906027841078265 0.6935552058747633 0.640371536126039 0.6569635051387273 0.7433124650716935 0.8840169503650847 1.028803361714744 1.1214121199039644 1.1375908233117207 1.0878858888008853 1.0128876902308157 0.9439345192636163 0.8864410969502564 0.825846367372849 0.7363965618887287 0.6002155450081957 0.4156372413053159 0.17054823708199832 -0.09836632635622254 -0.3450240977109289 -0.5183934964351299 -0.6067645120372002 -0.6212226209097287 -0.5532489239680146 -0.40158896715336634 -0.1827121354797808 0.06901435732074741 0.323632935097304 0.5589906224066443 0.7581459845551101 0.9109870072671387 0.9996971973440067 1.0136989554945544 0.9626474289335276 0.8576239937120483 0.699533997260039 0.4944852853472377 0.25582312204091323; 0.12252191731286176 0.232763375937163 0.325061320799169 0.4034808829069988 0.4842441882787419 0.5847665609077652 0.7046330060418826 0.8169997489241907 0.8837421872190449 0.8760645238850419 0.794756282863335 0.6840016261960997 0.5955523300452242 0.5586186599901781 0.5888805785894885 0.6761253694525056 0.7752815712852107 0.8543096307026672 0.8977994963649661 0.9087152667357582 0.9123366810676752 0.9227839272114556 0.9372889543538642 0.9191001942986188 0.8368675891301534 0.680712587652823 0.45100495855741074 0.16696806866820543 -0.1367720616062947 -0.4112562068026525 -0.606249977797285 -0.7032380892463083 -0.7225432533619405 -0.6647630407137235 -0.5216649049861815 -0.30446508133517064 -0.04826924321392482 0.21635663549792494 0.4662093383255449 0.6813126659900749 0.8524414915877704 0.9622707575872497 0.9932951208543235 0.9493255360344646 0.844609819688649 0.6859784593571973 0.4823403977552324 0.24844775084831788; 0.1221269558519122 0.22627859783928295 0.3026370489156513 0.3555671409515896 0.4047467977956466 0.47341669100898986 0.5701622549106228 0.6773096750066969 0.7568767189506717 0.7769225379028465 0.7336441544372844 0.6532352635254318 0.5634886360868484 0.4892684825224181 0.4547751923248383 0.4587595528218183 0.4885111050908487 0.5443404960710057 0.6127231384097889 0.6934410081080961 0.7908699674118681 0.8979804816036668 0.9858038823443709 1.0019630955541199 0.927031524713021 0.7406969877671857 0.4392353057290822 0.10659529968875119 -0.2208489069050979 -0.5158175337301051 -0.734935173648168 -0.8495151108405574 -0.8758652738843721 -0.8211667355396308 -0.6749740170008064 -0.44433545718597445 -0.17197273910386904 0.10631385906546477 0.3706980883425608 0.6011184354484872 0.7875898315104464 0.915201494006907 0.9631916115554402 0.929122328676387 0.8267078484454667 0.6682562151640896 0.4672084116733266 0.239683510767716; 0.11108691600133677 0.2019510007092617 0.2599743169012322 0.28681848156090173 0.299091172550181 0.32183064489703245 0.3744390827610914 0.4531434601086334 0.5265640565242556 0.5662356997587785 0.5702215292271821 0.546085841815007 0.4889881173618809 0.40424384470510766 0.3154300880718276 0.2413029643682827 0.20967952602411757 0.2391739425124078 0.32025726414408334 0.4580239656506749 0.6403290703256438 0.8387663078020932 0.9970719497673015 1.056021854826588 0.9911900801764153 0.7639510018491616 0.37739143794724705 -0.020283886112262 -0.3613975889286621 -0.653057179717373 -0.8838020775296537 -1.0164732860637387 -1.0503116632404728 -0.9974692315833693 -0.848468038181869 -0.6016309614936052 -0.3031258098783031 -0.0010253896830212503 0.2833276130339022 0.5325243764213019 0.735115942245527 0.8768791480811555 0.9373965038483218 0.912178851795868 0.8134204022381789 0.6560839192110709 0.45684287331764656 0.23358894946571682; 0.09144187387402115 0.16509596979722435 0.20834830231311877 0.21873007302278838 0.20397864848797895 0.18408049335439172 0.1844272649597834 0.21427743723265313 0.2545659379514019 0.28819163859174046 0.320338477366921 0.3489363920149256 0.3406965279184622 0.270429556153004 0.15355553001215752 0.030467865899113534 -0.04283172180566022 -0.04065210079740152 0.03688169994893487 0.20375637385357667 0.44004099850024947 0.7140222814173477 0.9396592206421857 1.0413874311458948 0.986796710109559 0.7485318324026303 0.32147308534101 -0.12888732160970082 -0.5004129621999047 -0.7840743893818062 -1.0036769099335576 -1.1474694527060363 -1.1957427692867961 -1.1496994612388836 -1.0044398394490912 -0.7502045376234041 -0.42892613285669734 -0.09857273660538118 0.2114763892555844 0.48230147803754286 0.7024363824531292 0.8580765498804104 0.9283817156224548 0.9098694326636527 0.8151881129332343 0.6594095141998731 0.45985120258615253 0.23521773241213037; 0.06585472597451777 0.12091888389035102 0.15613404706551817 0.16526021813390968 0.1442926008753899 0.10153556891269794 0.059548148909954544 0.03501672149853905 0.024501152443114255 0.027207388278894573 0.057454130334790146 0.11145345384026152 0.14157839696278804 0.09577213491033944 -0.024842801568853993 -0.16796687841459504 -0.2641424854936483 -0.2863795293873146 -0.2226522813372568 -0.059069246735075166 0.18814640615817035 0.4973502584287212 0.7646167440362797 0.8963709937330036 0.858667344460595 0.6475353499840623 0.27368045698522303 -0.16102569323642515 -0.546997251926121 -0.8378404442675726 -1.0475531207704734 -1.1896150059431614 -1.2521867717111332 -1.2243488986872715 -1.0955435291957958 -0.8504935404778974 -0.5225892089868773 -0.1718381650203578 0.16296821942201037 0.4560781184746316 0.6933952476118499 0.8616166569031722 0.9403056296951878 0.927536706669303 0.8365895817182969 0.6817097598290722 0.47858058273537585 0.24595517530172317; 0.036161055750831735 0.07110946688768514 0.10205473470241044 0.12133005542960051 0.11489678067130747 0.07581714740957056 0.015510815841808436 -0.048788814065760695 -0.10768950700726793 -0.14723833367907727 -0.14445143268332422 -0.0980466039269109 -0.055995792065017334 -0.08640021458266096 -0.19957769486319366 -0.33910822732351864 -0.44024448847298997 -0.4844878229387565 -0.45164178208754413 -0.3227338519030794 -0.10640490215668909 0.17331652885155396 0.4509710083311078 0.6054010436057019 0.6046701236304721 0.45793869294967093 0.18637620273204844 -0.1566912021262685 -0.5005878458532704 -0.7893925818856558 -0.9943912549325441 -1.1324126698131605 -1.2037452879447872 -1.1945327347795711 -1.0899187860098156 -0.8672644757216493 -0.551882567324775 -0.1992662156986903 0.14823931798505408 0.45709244197208204 0.7083211803223065 0.8868615825096404 0.9721242560002794 0.963755423644748 0.8754147875516153 0.7193542333236934 0.5093178554355978 0.2634767997618454; 0.0032669670339826005 0.014138906678291424 0.036785281149754254 0.0652333043011145 0.08149219526221602 0.06689428352860452 0.018377395870443188 -0.0525742982376166 -0.13324498863066464 -0.20518221913891918 -0.24155740644444715 -0.23241247831941617 -0.21221248978425594 -0.24511409803709142 -0.34785178440345427 -0.4718796210143173 -0.5692910221689015 -0.6381800631357505 -0.6536319494912425 -0.5747857816236954 -0.4240263138600825 -0.22123727352869085 0.03104719989656367 0.22347071625800496 0.29841869052009357 0.2638389157325924 0.12081409409955123 -0.10810779551907462 -0.3815814525470365 -0.6432891353034087 -0.8455061129213538 -0.9847428206287678 -1.0632563212930546 -1.0713035398196453 -0.9885816715382746 -0.7921395909445395 -0.5031027862099338 -0.16633119125301152 0.17782567896713922 0.49056825027981793 0.7473911101792294 0.93008842886261 1.018342489686291 1.0122568916515495 0.9242741402526178 0.7645214199615361 0.54492460202147 0.2833804402931142; -0.03301783920999784 -0.052321488264127185 -0.04768433840368218 -0.0220781025760755 0.00852019997662291 0.023072977336529896 0.00964666708164319 -0.029355227528968336 -0.09120962578046803 -0.16828143297124748 -0.23699286474935674 -0.2791448189805703 -0.30681434753581893 -0.3604663110071525 -0.45696220944137056 -0.5625713463475327 -0.651102633329225 -0.7373769073043468 -0.7923619369845555 -0.7697297468506008 -0.6892851094239668 -0.559887207011018 -0.3466252501372674 -0.10993580687497172 0.0551895146131254 0.1296362022828393 0.10654217954549629 -0.01766195706607453 -0.20450850498008102 -0.4190142899961635 -0.6077793522397245 -0.7486227899235527 -0.837285777108882 -0.8627024217608286 -0.8014084379316412 -0.6323476435764378 -0.37847707023296556 -0.07363979452557001 0.25062704787109996 0.5543142792664927 0.8080271815062545 0.9880408220414387 1.0734898911950828 1.0653555502998595 0.9746174171349627 0.8088629074772529 0.5786601689331905 0.3018285502627746; -0.07282373729096155 -0.12931910677338823 -0.15458784018938962 -0.14735791566392215 -0.11878482833041681 -0.08448644509266848 -0.05513934415107377 -0.036343535263525344 -0.04509227139031819 -0.09711624297473387 -0.17946236317736158 -0.2671718281918992 -0.34874279700584127 -0.43374386085744027 -0.5293023934056977 -0.6201576623366946 -0.6991792702510632 -0.7846451518010676 -0.8559981478184108 -0.8644721799996519 -0.8077445034552984 -0.7170423738886447 -0.5402197470573833 -0.3025235385945258 -0.08180766248348353 0.0723951391787792 0.13237573621376064 0.08791181033021472 -0.026036328440219973 -0.18668859998654252 -0.34723312531379025 -0.47456720337362784 -0.5563069885801377 -0.590041006571127 -0.5478357831548516 -0.40956747934838383 -0.19743827075069545 0.06753147525655549 0.3602448011632126 0.6428678442687837 0.8842004432647325 1.0540824383071832 1.1309343075769216 1.1163369647842936 1.0194080954331517 0.845780102724743 0.6054849097184097 0.3161025754424817; -0.11426984827849049 -0.21334558161344985 -0.279940506128114 -0.3064964154125731 -0.2957833338575582 -0.2553494110781912 -0.1915010708471195 -0.11504535195631192 -0.06002441327122322 -0.06811945106632324 -0.1448737958678041 -0.26222349282839047 -0.38705356101838023 -0.49914316150780014 -0.5956888510276663 -0.6750656300538106 -0.7387378636083989 -0.7998764338990002 -0.8429656815026507 -0.8353105657087606 -0.7660109658021255 -0.6593642319708646 -0.5195753538374104 -0.3220795005081442 -0.11348510165975206 0.07062408746933588 0.18635156741294046 0.20021069689441046 0.14077323141807194 0.0319184518268842 -0.09412620022464603 -0.19788140047757047 -0.2660201799445162 -0.2973702269898172 -0.26552073930906483 -0.15808491819759204 0.010554299258959468 0.23303387254362912 0.4895368498419604 0.7452362346334982 0.9678777336863701 1.1214636760005199 1.1844569252984214 1.1594325334764548 1.0533044361900379 0.8706258054771442 0.6220628078155684 0.3246222474784378; -0.15578446944517277 -0.2987227810155134 -0.4123910467718401 -0.4838189455442567 -0.504331372972128 -0.47217263930424747 -0.3923237823718141 -0.28133867508480365 -0.180357784021896 -0.1457254738872788 -0.2028963939562707 -0.3298308795963368 -0.4788911972934008 -0.6043778820783141 -0.6918093536726725 -0.7522981197267148 -0.7884326742672925 -0.7975664903743414 -0.7776334746075524 -0.7144770543643069 -0.603213957766475 -0.4801651766335705 -0.36437894084443173 -0.22843546996711567 -0.06947846307241871 0.11120787703329442 0.2538301067069669 0.30484074151918683 0.28921024085646535 0.22211923694620633 0.12889341721710612 0.04679860254968248 -0.008663593008385597 -0.028322949708256058 0.0035021147985914115 0.08558027854309848 0.21537288563112617 0.3993704301909699 0.6203461477041162 0.8478741052031226 1.049014679879348 1.1823964155557118 1.2282350663243737 1.190099644449568 1.0727142627343829 0.8808441597832164 0.6268528608842512 0.32653066523438307; -0.19707312889964076 -0.3814824253367221 -0.5397703738672623 -0.6575505189992487 -0.7172321145478817 -0.7080524062102875 -0.634062211810919 -0.5175436952535463 -0.40158843535611755 -0.3445458744673076 -0.3825564103087925 -0.5036020993929755 -0.6575458853267527 -0.783427614663211 -0.8540243017359098 -0.8840107295712499 -0.8786630522063674 -0.8224605657731309 -0.7193225140239782 -0.5862200974727165 -0.42549688682176684 -0.28721549493384185 -0.1915916834199861 -0.0990730702147819 0.024840534314393575 0.18354830430205427 0.321675205207465 0.3889097413358193 0.39915590083598895 0.3563699136353035 0.2803827594346126 0.21237806544843812 0.1756435790629021 0.17877131093394952 0.2179069291761235 0.28420410363063464 0.3906974686033987 0.5474860179215381 0.7383408971743116 0.9397849891976947 1.1174899066379629 1.2282450185883353 1.2558552090113402 1.2037846519496862 1.0747237029240424 0.8751674622036234 0.6192867420897992 0.3216109211634882; -0.23481069914244332 -0.45731486942623667 -0.6559803071835101 -0.8157405062861696 -0.9148366871254556 -0.9381889546286051 -0.8886967676896378 -0.7896135417347238 -0.6827274770890993 -0.6236109059965197 -0.6515985656435392 -0.7618010150828685 -0.9084827875430473 -1.02752299403097 -1.0817264615509963 -1.0827805860405004 -1.037737587179598 -0.9230623178590309 -0.7434145874469908 -0.539381570077569 -0.3347347101677119 -0.1722160419802881 -0.07963924243339175 0.0024003993323355377 0.10720688895779781 0.24572305247076598 0.37110102451034976 0.44543590427773905 0.468213644940828 0.42960644690270483 0.3562795278411995 0.29641720426982837 0.27640357048117425 0.29963246967544155 0.3475399975880624 0.4159544383515737 0.5201182978502675 0.661301405401681 0.829406221562081 1.0090570657414657 1.1634744663211418 1.2510395540268657 1.2607332121588635 1.195224423910734 1.0562926071951322 0.8527832022417688 0.6000392576463307 0.3105917217483171; -0.2616005753477788 -0.5166791538605524 -0.7535436344039793 -0.9523420236192969 -1.0887829129163005 -1.1486536091139123 -1.1357734577587637 -1.0701549092043863 -0.9861278177800622 -0.9334126665152781 -0.9540688793069725 -1.0512049243335342 -1.1847490256256006 -1.2945254021446777 -1.3374006492541146 -1.3148672102377303 -1.2419731558187779 -1.0991967267041758 -0.8805913313840833 -0.6360363373799054 -0.40696852865807137 -0.22953085698937617 -0.12586905567581735 -0.039008464192904976 0.06693319600493373 0.20566807759414887 0.33689641668225484 0.4239256998831536 0.4483592329888382 0.4060168455917982 0.33898699887353295 0.29214700879771377 0.29132683724333275 0.33100682202268905 0.39386755646672966 0.48071758828216493 0.5941904411732885 0.7294069923496108 0.8851601579146472 1.0478456467003014 1.1778567833489535 1.24221632152541 1.236076605930795 1.1595739045223006 1.0142952613893281 0.812227848124845 0.5685412163363933 0.29347088021491263; -0.2744446216175941 -0.553032281041971 -0.8232998659251454 -1.0581187505326395 -1.2311969068447914 -1.330016708674509 -1.3593346400739041 -1.3352307253545497 -1.2817931525495796 -1.2378822592186767 -1.2463078010406714 -1.3229225212862605 -1.4390046896947177 -1.540400376398127 -1.5819216414460677 -1.551956020067257 -1.4656043035122481 -1.322957097128481 -1.113387144516541 -0.8722809292275058 -0.6504460248659513 -0.47703394110494785 -0.3630175680506329 -0.2636510239483755 -0.14847360254041223 -0.008249122233994946 0.1260651141443597 0.22452956201465202 0.26048304388317156 0.24288123282726687 0.21223113273093192 0.20109528126083107 0.23123105912656963 0.29555219096616275 0.3831545101843448 0.49123442362029746 0.6147227708385168 0.7509814714456617 0.9012744546007218 1.0472802468374753 1.1527454010040894 1.1972115614677568 1.1783727022792072 1.0935169165685628 0.9467808228644802 0.7524689442815641 0.5240312332912975 0.26958474640290664; -0.2778607606469708 -0.5683926674060399 -0.8602532313613664 -1.1227095598266508 -1.3286793074362224 -1.4655081627917546 -1.5360025473201446 -1.5534970689089609 -1.533991841054494 -1.5020164322779073 -1.495176439108309 -1.5425685151930717 -1.633846794177389 -1.7256928151919628 -1.7756122107211754 -1.7632646168080286 -1.6941433643230817 -1.5776451628094736 -1.4106178857914777 -1.2091133413619288 -1.0177845831029406 -0.8622628636873737 -0.7472792041391466 -0.6403869184395271 -0.5163193995054204 -0.3703309312642869 -0.22753232296341908 -0.1155204638660928 -0.05209949829027776 -0.017246464649692535 0.011190596030435105 0.05240604756320712 0.12440388672954081 0.22012406885889824 0.3323957580387505 0.4584563350608504 0.5936018253265113 0.735590601494272 0.8802265502153701 1.006752802615259 1.0890351804196508 1.117043881945695 1.0876182825765623 0.9976461348828081 0.8552095788610351 0.6748958798343627 0.46706029991234727 0.2389388476818886; -0.27753035884416544 -0.5684651052006556 -0.8652258310871834 -1.1406452045923605 -1.3695030385319802 -1.537848235635057 -1.6434244487523946 -1.6957417277382592 -1.7078845373661664 -1.6921533969199134 -1.6740152469085994 -1.689843937589465 -1.7506708783621694 -1.8276058801817994 -1.8848852656083317 -1.9021090584034244 -1.876615527014166 -1.8139271781092992 -1.7117618484254793 -1.5728486150541843 -1.4254830234911429 -1.2939531179346728 -1.1811351686561429 -1.0729352845751219 -0.9480198373973048 -0.8047950199080413 -0.6561815678321345 -0.522341250258221 -0.4096140434636279 -0.3085607525116561 -0.21653781852243467 -0.1169465028579489 0.0012110994750526192 0.1272168528983379 0.2611208976086651 0.4039869422292369 0.5503856664917633 0.6945567615836741 0.82806991482379 0.9337793569867957 0.9961665236618215 1.010053864206655 0.9707524425697484 0.8786941176359546 0.7458481066016944 0.5843735801749044 0.40113561726615726 0.20364918573586724; -0.2729277234970702 -0.5544714878557986 -0.8406911458355867 -1.1119087777316075 -1.3480150201219834 -1.5359741428888518 -1.668709521117734 -1.7487429696983112 -1.7869123306613743 -1.7908026258218985 -1.7722507700987065 -1.7628815551107224 -1.7918052328039669 -1.8506787009315242 -1.9108984963496967 -1.9545964580216022 -1.9750163389803246 -1.9701481509532321 -1.9348715423938385 -1.8637529977762013 -1.7677008446494775 -1.6651348995111823 -1.5612876366864168 -1.4528379797101487 -1.3290894100210013 -1.1893678694649512 -1.0365708428736313 -0.8811681234496307 -0.7247806849489024 -0.5729679095979853 -0.4266887284557934 -0.2735356207334128 -0.11989715044646818 0.028222956429785343 0.18181690512592263 0.34121844632930676 0.4960699417223237 0.6383435500492208 0.759666653744641 0.8467094179145933 0.8904396461146212 0.8877840249974934 0.8379676039286053 0.7480448620146586 0.6293261811279283 0.48860723689647884 0.3315680878532234 0.16662018941293677; -0.26168359434887806 -0.5261509497213899 -0.7902958361316336 -1.042013276583709 -1.2684601656472028 -1.460608676293859 -1.6099883827478172 -1.7118029412289582 -1.7725755028577213 -1.79942623747019 -1.7954728573796308 -1.7772332436753642 -1.7777557678396112 -1.8117616679483939 -1.866444672519251 -1.9279064277112843 -1.9858852234613322 -2.0272414315128446 -2.042379345278573 -2.024467689949498 -1.9759138399932672 -1.9067761548485784 -1.823325145838828 -1.7240915035214448 -1.6056812976709827 -1.4668264590813833 -1.309838597601709 -1.139805449721905 -0.9597981044881319 -0.7794880754836724 -0.596721608824536 -0.4128696361953083 -0.23864889945180653 -0.06702910865604222 0.11039500771187609 0.2843999085661267 0.4433874570067376 0.5826302389048514 0.6925959067067728 0.7604287239254416 0.7813957775949849 0.7586948509130853 0.7011118975653964 0.6186678528220979 0.5155885946417724 0.3944528521686186 0.26287686374881486 0.1303744646210917; -0.24334072832246603 -0.48344661931999866 -0.7162449590284964 -0.9365584535036929 -1.140499097750154 -1.3238933541864606 -1.4786279589464857 -1.595038720330151 -1.6741431045617627 -1.724440580503859 -1.7474129654717065 -1.7431559635867857 -1.731910222235325 -1.7400093302319626 -1.7751500566103011 -1.8340115070354994 -1.908808380677296 -1.9803757159013529 -2.0305444376029076 -2.0503862998376436 -2.039163910529826 -2.0030367403938234 -1.945992006703282 -1.8658312536118935 -1.7601871613512985 -1.6279801572890404 -1.4736863906672086 -1.3018384471072268 -1.1184028152772583 -0.9285296450298839 -0.73015261532721 -0.5303235365337479 -0.3332004691741686 -0.13429387484296548 0.06058044005642746 0.24038516608836452 0.40096702904245707 0.5367663918307688 0.631906444607073 0.6746414177878264 0.669040916801472 0.6297684548373719 0.5720306925747235 0.49996455133207973 0.4103903443286406 0.3063846738945842 0.19902064658507318 0.09692099198336493; -0.2170891614760535 -0.4252241305486399 -0.6197022795725925 -0.8021507779105564 -0.9766273414224351 -1.1430985291927074 -1.2946563585584605 -1.419509807264997 -1.512527864233144 -1.580837721013688 -1.630767213855587 -1.655681462511123 -1.656404279624886 -1.65350249574781 -1.6679036374008058 -1.7077562498495389 -1.772943713024062 -1.8500847207279314 -1.9174534700175405 -1.961625329649396 -1.9790517353575166 -1.9732972029478741 -1.9455727379112762 -1.8911790456581652 -1.8060378167361295 -1.6903230841074726 -1.5497022959157003 -1.3886803405189014 -1.212218985914126 -1.0202467349608877 -0.812642038941363 -0.596914099514263 -0.3789489795537676 -0.16572375830773328 0.03290856214994378 0.2130727653798782 0.37166061419700563 0.49470699182204797 0.5650384956584278 0.5794275598480925 0.5536247466293879 0.5092260895948579 0.45740019375485613 0.3943935976797216 0.31601189044252664 0.22858398133488628 0.14351970592816604 0.06789370709444964; -0.18129984759135007 -0.3500944500164323 -0.5032556379164237 -0.6477229911860941 -0.7912197802848657 -0.9353473317665255 -1.0763567820708282 -1.2055923879851203 -1.3131261986209293 -1.3973906193956347 -1.4658059368082905 -1.516386885891842 -1.5409270846446577 -1.5457215358853653 -1.5522323677273246 -1.5760131349622015 -1.6223466016658386 -1.6867048221671177 -1.7524452765532774 -1.805609062796241 -1.8407662743323752 -1.8585081169105742 -1.8569522907465215 -1.829013577172075 -1.7681737163041613 -1.6745872295178295 -1.55307588979871 -1.4062056278361506 -1.2366169051659146 -1.0429644935925524 -0.8297429958215493 -0.6064113635092926 -0.38410969147856777 -0.1738531295047413 0.018542303155272916 0.1911531834177205 0.33505792576738835 0.434017341376029 0.478497385990068 0.4749549714206824 0.44388348993584903 0.40321004506858055 0.3577708162259984 0.30258324788467567 0.2361152906524867 0.16483609016716927 0.09857623371682647 0.044140472158275164; -0.13408697165897715 -0.25775125427346335 -0.37112449794471214 -0.4829296766601576 -0.5995087937023011 -0.7209744005530977 -0.845987209771677 -0.9725169037892848 -1.0928476535292915 -1.1969970895136848 -1.2833529582428203 -1.3518437721305656 -1.3964247653389639 -1.416197914755614 -1.42581906836605 -1.442324083721334 -1.4736407386452473 -1.5196517194089243 -1.5718224220379422 -1.6210323775106514 -1.6626534277723786 -1.6945546633774489 -1.7116322570418316 -1.7052958017570918 -1.6673381165824128 -1.5961312432923218 -1.494007188482652 -1.362021581508472 -1.2018600403689046 -1.0140833461509868 -0.8066782987967867 -0.5901422593068153 -0.37818282913652823 -0.18107370798317396 -0.002938035655220037 0.15156820340181834 0.2725526923459386 0.34840841231216335 0.3775220477914705 0.3708824073226315 0.3454528215124194 0.3123665351963653 0.27461561158425773 0.2293681883344807 0.175524350567984 0.11810364469117864 0.06635683099181612 0.02750214524734384; -0.07976025627025064 -0.15639555135656813 -0.23308013981306247 -0.3168947178745997 -0.4114929656803195 -0.515099231011546 -0.6250907676629847 -0.7421840414478736 -0.8650563032004268 -0.98517675810723 -1.0929565945795483 -1.1815068267670559 -1.2450757143857178 -1.2820064757737297 -1.3015034030171213 -1.3171909031080462 -1.3378251557734357 -1.3648550704281324 -1.3958792678831948 -1.428916817416671 -1.4632162731487688 -1.4973178495880766 -1.5240820719506551 -1.5341468390824293 -1.517443142843138 -1.4695792700624415 -1.3897745423915469 -1.2784436733877302 -1.136782769636533 -0.9670983304919124 -0.7776477984693492 -0.5792722097545396 -0.3861237552940995 -0.20729890092462563 -0.048510231550536576 0.08447318652943661 0.18498343993909566 0.24707732018578762 0.2739087301270437 0.27525297808638083 0.261386224786941 0.23915249336877714 0.21175659425914545 0.17762160545654296 0.13535790692914063 0.08931451824745198 0.04859430575352207 0.019456166324835784; -0.0304145210434599 -0.064119017864272 -0.10620081450985075 -0.1626858690694864 -0.23690649945769593 -0.326417545176405 -0.4254931754898129 -0.5327294409189834 -0.6500415601686592 -0.7745622056225265 -0.8964586508292952 -1.0034480887350217 -1.0864546393042607 -1.143305521226492 -1.1794687576575031 -1.203504947312714 -1.2221718806058692 -1.2372807268176915 -1.2493153789577507 -1.2615306313928003 -1.2784038849281114 -1.3027133668070292 -1.3292871689619137 -1.3489627843871932 -1.3505246847273074 -1.3261513272590397 -1.2721975685729434 -1.1873127433634474 -1.071686915689767 -0.9282185429102713 -0.7642466500609743 -0.5906390060214443 -0.4194556417157554 -0.25963060892062073 -0.11858620549894303 -0.0018679703204689875 0.08699897141159979 0.14706589596966058 0.1822090766664643 0.19691624918052392 0.19577900759587635 0.18425259015396456 0.16666934965536054 0.14288913358222258 0.1116614185563444 0.07599424994885619 0.04333554631439499 0.01850813550784407; 0.005035644151640616 0.004467935495590084 -0.007712266213516005 -0.03831618844978248 -0.09180932652846642 -0.1661732722797654 -0.2541071186312933 -0.3515528794862632 -0.46043803007206446 -0.5813009218891397 -0.7067446992479042 -0.8235049455053993 -0.9201933370064301 -0.9933264053183235 -1.0460391089909735 -1.0828375916716535 -1.1077484019429862 -1.1220858749168472 -1.126999828835058 -1.127121938461672 -1.1300369128433432 -1.1427256910561585 -1.1645486786261563 -1.1885931592580177 -1.2037127214666035 -1.1996538383557998 -1.1699410710962557 -1.1108728176683464 -1.0217168033093775 -0.9055758701161302 -0.7688595884715521 -0.6202601711653902 -0.46896055572814344 -0.3243432400873235 -0.1945296506816511 -0.0853556547683438 0.00135057883387396 0.06679008604304451 0.11274560157848976 0.13903349988104258 0.14692481832569174 0.14266300390857184 0.13242197274424503 0.11808625308629185 0.09781324637746432 0.07172953100466596 0.044570415984027306 0.020598991834897665; 0.027101875325201558 0.048053742263650966 0.056754819450004754 0.04669476733589149 0.013498957344900664 -0.04249468905092432 -0.11663971413869248 -0.2040419069358151 -0.30383847217240206 -0.41669339788344 -0.537559674223066 -0.6549414685441339 -0.7568719440475873 -0.8383969285081946 -0.900805782728318 -0.9468419116098449 -0.978946584049423 -0.998217004228268 -1.0058400392675244 -1.0053839857521074 -1.004608920170116 -1.0116636773896204 -1.0298828856325302 -1.0557493505949092 -1.0798153816948028 -1.090748825950702 -1.0794298043898638 -1.0405009287963412 -0.9728687754879592 -0.8803604851806831 -0.7679424529833632 -0.6413398825943941 -0.5072857969781374 -0.3750652418903583 -0.25305619307496025 -0.14713454669930118 -0.05897707232142096 0.012253492555459634 0.06574270964947167 0.09884087686562253 0.11146529517274277 0.11087124303710791 0.10519890286485108 0.09775183524519207 0.08597881560761794 0.0673813219348581 0.04441171270981562 0.021282272518912657; 0.039124676914618337 0.07166202298993972 0.092144913166751 0.09595744580442819 0.08038330424704059 0.04433529623889834 -0.012998870366291049 -0.08988536099734531 -0.18224805516116377 -0.2861200450831224 -0.39638210699278387 -0.5045598231648274 -0.6012282918729405 -0.681526362464925 -0.7455446500891254 -0.7954525140879453 -0.8332794579692149 -0.8601061937468063 -0.876304601858798 -0.8834946691037253 -0.887607620601202 -0.8954992156865383 -0.9121047924964356 -0.9373037891506469 -0.9644624014366008 -0.9829931208141256 -0.9820264607642682 -0.9557627348413924 -0.9033886350882336 -0.8293919845451115 -0.7372535197116393 -0.6304175152879917 -0.5134001187797296 -0.3947638556652207 -0.2824341157540243 -0.181829651528098 -0.09440859040613817 -0.02083085795959281 0.035642963595742906 0.07125877338401035 0.08540032575388717 0.08585985225273143 0.08166072401630455 0.077367984691598 0.07028458401372832 0.05702246539964826 0.03857793297847017 0.018727791967557153; 0.04376209040433223 0.08118412951116434 0.10757120330074971 0.11983416158855534 0.11661494595217373 0.09702736183538951 0.05728014807367923 -0.006044212063834511 -0.09004996461043502 -0.1860111598052851 -0.28484051405510563 -0.37848091607696616 -0.46009454663418753 -0.5274001730521635 -0.5815728136906049 -0.6260537217217849 -0.6641535973172076 -0.6972485015649784 -0.7243690994146674 -0.7439182292298772 -0.7587606183143103 -0.7726625807595603 -0.7905258579708545 -0.8139960411294853 -0.8395591577123275 -0.8585975122071093 -0.8605487516501721 -0.8405050470598215 -0.7985333102198723 -0.7392447275334885 -0.6647856677029431 -0.5770309326914366 -0.47881343576248947 -0.37742282924739157 -0.279768770360844 -0.18987150821681315 -0.1089745472505022 -0.03869930312802759 0.01590157175322619 0.05073793383185258 0.06470711329528384 0.06481725202174334 0.06001563252498227 0.0557064994540225 0.050248446907987306 0.04060506605244428 0.027364690047528083 0.013213010384103649; 0.04160134661024497 0.07832717542350913 0.1062953058095546 0.12297231338930001 0.1268432355820907 0.11731639122315807 0.09134595086708408 0.04404593158339094 -0.024989458040114557 -0.10795145100212174 -0.19374635093078532 -0.2725503691230542 -0.33711954483731904 -0.3863942629964099 -0.42345946061701484 -0.4539619921057485 -0.48325120801107985 -0.5139696533801956 -0.5448280134907175 -0.5721530951478682 -0.5954466856353859 -0.6152223569575461 -0.6350248891371508 -0.6568868949725017 -0.6790297308096945 -0.695478475190828 -0.697447384934131 -0.6816984716879013 -0.6490865876220464 -0.603805898570621 -0.5470343529122434 -0.47962122900250165 -0.40321723370564194 -0.3237831982667986 -0.24632095918386207 -0.1735258067605445 -0.10610849065349819 -0.04573119199158853 0.002269831752160619 0.033559337712156516 0.046402295628191294 0.04623377903101398 0.040598195936739294 0.035121365584062855 0.02973961356400703 0.022790573716552364 0.014562215826337807 0.0066884490464665354; 0.0328391674795628 0.06283320527515115 0.08700641037707789 0.10328700418183215 0.109762314835872 0.10521006606864693 0.08816875197963851 0.056162679508994305 0.008083732114982626 -0.05198899764193684 -0.11643598646918742 -0.17625639537443896 -0.22395561271889158 -0.2574644673835429 -0.2796957169120804 -0.29634026288682525 -0.3131472249402678 -0.33346334221140145 -0.35710248061131544 -0.3809371478280471 -0.40305079480366557 -0.4219353239327186 -0.43961932409806354 -0.45736942377811657 -0.47426901745251465 -0.4866804957855417 -0.4886886567993023 -0.4783615049272017 -0.45654310272167653 -0.42649291906402426 -0.3889644815584575 -0.3440790899276291 -0.29263906241300713 -0.23872644792806186 -0.18556794243385213 -0.13471738823446353 -0.08647581020857331 -0.04170198361110306 -0.00503877650749539 0.019335989904389388 0.02962060054683594 0.029577630530620878 0.02445029352094951 0.018841604729045527 0.014031484457275662 0.009524218799794178 0.005222316283693019 0.001914799783672792; 0.01823654482177043 0.03530360178987613 0.049492819223090664 0.05964474779553969 0.0644185048790043 0.06259418127296366 0.053515913370069106 0.03674647956394542 0.012199217384365605 -0.01871534035573521 -0.05286681243184511 -0.08556122491201304 -0.11190812234962887 -0.1300352574852288 -0.1411096835185667 -0.14849726487386422 -0.15563582403032622 -0.16483758228073042 -0.1765187708753176 -0.18929262851141085 -0.20181246883390155 -0.21271429644866138 -0.222825439903261 -0.2327103902272949 -0.24183253844458083 -0.24863272744081685 -0.2502011490738832 -0.24559860065237837 -0.2351023309659193 -0.2204958408254966 -0.20225691497081744 -0.18029538316467955 -0.15474880068473745 -0.12770249267912692 -0.10072922245304888 -0.07465121399351354 -0.04944450713313395 -0.025325848723690057 -0.005115745832646847 0.008451316768907775 0.014290650054300967 0.014382792016600428 0.011337052630268475 0.007735570207858194 0.004823999290669351 0.0026399111735704956 0.0009000877278978821 -6.127831649637145e-5], hyperparams = 95.61472443707288), (params = [-0.0009985315506385872 -0.00373249831159878 -0.008581558146753505 -0.015530634978701609 -0.025225232362395978 -0.038675642263598584 -0.05597552711846183 -0.07721059667703528 -0.10156888465226631 -0.12729041615147793 -0.15237091651106616 -0.17372990262335616 -0.19023740656877217 -0.20099387008937103 -0.2065248645938206 -0.20967334434179477 -0.21339413015402228 -0.22010946914401489 -0.22964574070842053 -0.23826513272097669 -0.2425308155967793 -0.24079818668025313 -0.23401240506317766 -0.22448223951004437 -0.21416289171393138 -0.20483296745254484 -0.19663914989529593 -0.1873794988457102 -0.17499090672620968 -0.15803344530383237 -0.13814058332032184 -0.1182018490295842 -0.10056503744944054 -0.0855133160905376 -0.07396162155217707 -0.06821029729859085 -0.07105796425745796 -0.0816040308833116 -0.09338319505650428 -0.10045032037245746 -0.10059921641005709 -0.09649634117829285 -0.09192483455271451 -0.08786305267140923 -0.08181219748106289 -0.07009628145164336 -0.05117568665554311 -0.027026088172488083; 0.0027265118625173054 0.0026616078954314485 -0.002165385512853239 -0.014191220913005122 -0.03550349140345042 -0.0666036008781516 -0.1055253328562173 -0.15007780906156842 -0.19716277586402509 -0.24392607065269248 -0.28860468671511574 -0.3284434063882476 -0.361165734833384 -0.38372368430081666 -0.3976380613604947 -0.4091543379460131 -0.4239178332353347 -0.44506383757496387 -0.4699037917279107 -0.4905806964658199 -0.5005632171513765 -0.497252218976601 -0.4830119672880907 -0.46226559441768034 -0.43893701485745246 -0.4158560422185035 -0.39354956572807315 -0.3690682138223836 -0.3397927003255263 -0.30418044240607456 -0.265548618040409 -0.2285387274043658 -0.19688204370971868 -0.1711993412436828 -0.15206787191641336 -0.141666410424145 -0.14291125357237414 -0.15502443796349466 -0.17055644374455606 -0.18223632279003013 -0.18566384611196854 -0.1822952138483082 -0.1760979009111642 -0.16825963088942644 -0.15536910711910798 -0.13211142512432236 -0.09617898513964325 -0.05069880505937899; 0.014075894328031047 0.024253637889664927 0.02524532911280236 0.010425495751226668 -0.023601113559082725 -0.07512752161751164 -0.13865698252160188 -0.20762327577788695 -0.2757089598839076 -0.33964379717653737 -0.39979306363273287 -0.45469448218368125 -0.5010642591236272 -0.5359752958442623 -0.564194604779636 -0.5939295249477488 -0.630989739979617 -0.675360311162785 -0.720102247564168 -0.7539622192890866 -0.7685316870293981 -0.7621935827534486 -0.7390970724557169 -0.7055836684097184 -0.6664537332159547 -0.6246601801994951 -0.5808346695943302 -0.5332440268073029 -0.4809978124333156 -0.424700977509677 -0.3695415491639879 -0.32019790928205744 -0.2800060504094169 -0.24975560203872393 -0.22899922730401592 -0.21782457379764888 -0.21650182490594527 -0.22357508853745234 -0.23407865230194655 -0.24339129199738133 -0.24801555019963414 -0.2484724461204822 -0.24552440531684155 -0.23728498166790782 -0.21843982909843646 -0.18410717168699633 -0.1330022083772594 -0.06964277377616798; 0.032870582570647296 0.05912196979417489 0.06937863195209264 0.05396825233638142 0.009711614634349318 -0.059563071406315414 -0.14542191001844493 -0.23714612379655037 -0.32537443254803955 -0.40682263463467594 -0.4821521820123425 -0.5500286720757945 -0.6086402862745842 -0.6605652523904131 -0.7136993814291523 -0.7732808610606083 -0.8398335036784894 -0.9074938139110971 -0.9668249340853625 -1.00675005647306 -1.0205230804060368 -1.009051782393261 -0.978693871411769 -0.9357418354003031 -0.8842779577520217 -0.8249751266338156 -0.7576345457208071 -0.6823395239125583 -0.6019941165157912 -0.5218371597819034 -0.44953825523858476 -0.38945503755809313 -0.34282190949370817 -0.30991566044988217 -0.2904387600256741 -0.2832165647444275 -0.2849882967875952 -0.2907660821539719 -0.29558045957587703 -0.29715041262304864 -0.29627671551578 -0.2972506042861827 -0.2991732600613095 -0.2942482851120996 -0.2722359497596263 -0.22813562656226827 -0.16342667153685425 -0.08479920006758328; 0.05633146994637366 0.10163493622017274 0.12271061227640563 0.10898590798869139 0.05831020357561457 -0.023765305107970917 -0.12680940707036575 -0.23707201137357536 -0.34406509314872225 -0.443838883296682 -0.5353088767545898 -0.6181207496323604 -0.6960992087322408 -0.7770580752597941 -0.8654897693407907 -0.9572320122693806 -1.045588853336709 -1.1217102472886697 -1.1796978050078375 -1.2146686412319967 -1.224007412451347 -1.2112377576294007 -1.1827123090367258 -1.1428040745186046 -1.0925656578638503 -1.028107146482796 -0.9462910596745973 -0.8476114415790399 -0.7390221123991685 -0.6309332053628307 -0.5347489668738327 -0.4562931292052885 -0.3955870978454671 -0.3523487314084159 -0.328151519022874 -0.3235264463886082 -0.3330569836121403 -0.3466485827141828 -0.35469320334516513 -0.3530185926378063 -0.3455117255034132 -0.3416575887753888 -0.3436850016720747 -0.34096044731948605 -0.31717237803723747 -0.2652615564755597 -0.18895442887081812 -0.09743451868353033; 0.07949120262939616 0.14395424913549118 0.17689794385840793 0.1669656830911956 0.11298035430635685 0.02270092602779857 -0.09119111000033217 -0.21452313157269692 -0.3376354981796816 -0.45577981414374213 -0.566245481080427 -0.672362838083829 -0.7830985322537963 -0.9035666244334063 -1.0260809322418314 -1.1364509883924419 -1.2253652725970738 -1.2882591204192722 -1.3290675514712413 -1.3521388648150723 -1.359707245133207 -1.3554902465499623 -1.343466324135002 -1.3243840659281771 -1.2948819108801994 -1.245500256648547 -1.1682544497801726 -1.0614718946611756 -0.9334445842296565 -0.7981021803519465 -0.670088836103969 -0.5593647401511078 -0.46807908739816595 -0.3979901157863756 -0.3541691327293462 -0.3410887552843983 -0.3537683468151197 -0.37853237296796016 -0.39951320432568305 -0.40660463443217904 -0.40104118380560394 -0.39266394195155135 -0.38825684377290987 -0.3808364175655283 -0.3526007935889963 -0.293721386404099 -0.20844190090723833 -0.10714969875357555; 0.10014523452020983 0.18206462437214885 0.22629451299223777 0.22072573486674682 0.1657838406844996 0.07249188133508268 -0.045840922077677156 -0.1776275142904833 -0.3153745716276642 -0.4537209105072807 -0.5902303696122612 -0.7315065779477579 -0.8849983784607157 -1.0434778182038544 -1.1858636584520488 -1.294433288877146 -1.3638778118822688 -1.398140026206027 -1.411978864940674 -1.4190027443153994 -1.4267649769205866 -1.4380090475444154 -1.4529954568576549 -1.468221334243153 -1.475478347827305 -1.4610231957451427 -1.4112687663487475 -1.3194581586537837 -1.1908702008757135 -1.0395280059541763 -0.8812664711886047 -0.7301436805638543 -0.5935558243379848 -0.4788518791793685 -0.3965888591134296 -0.35683720954753 -0.3580945743645596 -0.3862845708239241 -0.4213490517408131 -0.44609136434528845 -0.45444212499764874 -0.4490724738666401 -0.4368642151547284 -0.41758990807543467 -0.37970583692673143 -0.31346263030923893 -0.2216077128827119 -0.11382997085700791; 0.11861203813448988 0.21568683649438153 0.2695637787622528 0.2686973728645381 0.21648336748960048 0.12581209584756545 0.007529867993902122 -0.13128464966835335 -0.2847110362914874 -0.4478606462957465 -0.620252021001414 -0.8068343733509408 -1.0035028638907615 -1.1872210970285781 -1.3312937203541333 -1.4236362895942467 -1.4648933217299285 -1.465431318811346 -1.4472582331617012 -1.43344200217602 -1.4383241544938712 -1.4642185966498562 -1.507125683674185 -1.5589682837769792 -1.6083606589653248 -1.639516582315411 -1.634568152112528 -1.5798454515832625 -1.4739554978525706 -1.3267938445541412 -1.1529883490617123 -0.9682708195937813 -0.7856176642135256 -0.6193952249931419 -0.48622352529856694 -0.40313142406297925 -0.37473747027525683 -0.39022151063274213 -0.42869979006333125 -0.4684918018711884 -0.49545383997174536 -0.5016761413022034 -0.4866898387296277 -0.45379641711950414 -0.4024221451685723 -0.32779589676321247 -0.23090723893775408 -0.11875537863757744; 0.13491561689869347 0.24536904487496475 0.3086953793790024 0.3151772471101076 0.2706385971269603 0.18663646457039607 0.06936375607089643 -0.07784833724315499 -0.2504886134259194 -0.4460201512803313 -0.6640651009808077 -0.8993576163979371 -1.129947771342577 -1.3220501895063301 -1.4547207003851916 -1.526077530612441 -1.540065775608043 -1.5086296008443452 -1.4587911635292476 -1.4222315595199837 -1.420310826814442 -1.4554294425530752 -1.518819654951523 -1.5992942514127169 -1.683363578020921 -1.7568930094465525 -1.7997730150518607 -1.7941913598650026 -1.7299317303922896 -1.6098804247272116 -1.443392609063881 -1.2456429858201716 -1.0317365354699743 -0.8222193367938357 -0.6391043179467892 -0.5055622302884165 -0.43399220729529997 -0.41899291368191294 -0.4433954226002124 -0.4847070942356491 -0.5237745466201494 -0.5437177005100439 -0.5331948865728356 -0.49172768005936895 -0.4273377635552862 -0.34317228941657324 -0.24070019114295682 -0.12402265955741437; 0.149028404148117 0.2711655355009174 0.344295841876683 0.36124213309945924 0.3282723480413604 0.25265012855065966 0.1359034702624641 -0.02148037647741247 -0.2187251474096265 -0.45549810030330423 -0.7250841412400726 -1.0048821787635884 -1.2561071324450752 -1.4439029338121807 -1.5599170622063339 -1.610608803209302 -1.6001215756521978 -1.5419330229599117 -1.4664604845283546 -1.4113664091526354 -1.4012691586770032 -1.4375991579528957 -1.5098902407090378 -1.6044959941740122 -1.708348084394922 -1.8092342849521204 -1.8884760386732211 -1.928850680365697 -1.9143800227655257 -1.8398987163448177 -1.706337801152664 -1.5236984616131204 -1.3051420660588278 -1.0716116589122184 -0.8506803786241821 -0.670154478241027 -0.5501323211929244 -0.4929812936448916 -0.4869322492306028 -0.5129760171532618 -0.5503054052654999 -0.5778182846305332 -0.574919717769154 -0.5324673491067471 -0.4595021097374704 -0.3656905127742613 -0.2554819348512807 -0.13173384334376562; 0.15998806537426347 0.2911879569738457 0.37363019524085633 0.4026816800795536 0.3826046605971163 0.3147219198343785 0.19671653898263733 0.0258856603329767 -0.20142834627020065 -0.4837233435395369 -0.8023678750806605 -1.1171210785226726 -1.378417436029173 -1.5579460783617811 -1.6588126771913034 -1.6905247230604656 -1.6588355085987754 -1.5801993779500374 -1.487459031017452 -1.4197547203162924 -1.3994076020330435 -1.428039417227525 -1.495667987598399 -1.5882805496049042 -1.695060532903019 -1.8045435198993507 -1.9022808403137774 -1.97409673286981 -2.0054350548996918 -1.9853810831103509 -1.9062236087271132 -1.7676054709142828 -1.5764758148055416 -1.346388741140293 -1.1055579075447421 -0.8870260497673975 -0.7187969802275502 -0.6139146592567191 -0.5679225482835807 -0.5656347963828611 -0.588354560478465 -0.6143016315006302 -0.6174781266639017 -0.5791804028501699 -0.5026136541516784 -0.39985912345268065 -0.27910370981132865 -0.14399665573441373; 0.16568660703530144 0.3022134802486783 0.392169644656742 0.43212579666210904 0.42255426527143664 0.35965855899285176 0.23782234202114133 0.05085703963033288 -0.20743866450140958 -0.530283610402507 -0.887863860717317 -1.2286092010416751 -1.4992610644472293 -1.6770547712402488 -1.7688581312629568 -1.783844277918431 -1.7312014788921746 -1.6338690990043399 -1.5281518090267414 -1.4505501813790804 -1.4190738132658294 -1.4346709530187978 -1.4863664973546715 -1.5616721967572054 -1.6521888137187064 -1.7501767477586698 -1.8473446315461293 -1.9347246292621063 -2.0023748605844647 -2.0378113145961536 -2.02531472792065 -1.9517117103020813 -1.8150753817784213 -1.6178875176001275 -1.3805797885577447 -1.1386162790718306 -0.9281462445550213 -0.7745655703342935 -0.6840312777113436 -0.6468277723481631 -0.6464136494472036 -0.6624311098611155 -0.6668530250062623 -0.633333281157616 -0.5560092318193627 -0.4449128211263733 -0.31112251848965544 -0.1605351890780302; 0.1663564808485578 0.30407649634761236 0.3977084311207037 0.4436708443315925 0.43904559877316773 0.3770469956211289 0.24921643011260375 0.045867784117109275 -0.23798685957650978 -0.5895427298119164 -0.9740306660620215 -1.3374865793543076 -1.6247314627808151 -1.8110799600935865 -1.9000015031242579 -1.8990996283648867 -1.8231152985900316 -1.7055604991354496 -1.5881360543105032 -1.504335166186023 -1.4641388719360993 -1.4620983129509413 -1.4840041715050782 -1.5194216846628295 -1.5662598167890822 -1.6266480625949375 -1.7043912067960334 -1.798904477572574 -1.9032087752707223 -2.000032430222199 -2.064631724966356 -2.0687949427593586 -2.0011013761383123 -1.8564944326376225 -1.6452737149218788 -1.3998220579850467 -1.1610478761687741 -0.9645754521270088 -0.8293008787692308 -0.7545476266550311 -0.7266351931570322 -0.7258291630326023 -0.724491488800454 -0.6921749486388887 -0.6138169024641051 -0.49494649170006016 -0.3472286655822254 -0.17926328010308892; 0.1631122986329272 0.2973546022275969 0.38841319764262433 0.43290454526121624 0.42602598316750256 0.3595163214418069 0.2226821201317786 0.005270111228564494 -0.2935717272592381 -0.658973340649494 -1.0599657819289188 -1.4436158437145497 -1.7504079599630016 -1.9502363132983547 -2.0425154918060646 -2.0324894795387123 -1.9404481735615653 -1.8099536583478082 -1.6882147193281063 -1.602743396401075 -1.5502388644559735 -1.5165650162711224 -1.4827078960725295 -1.4446455696899316 -1.4106204377649598 -1.3994603331568434 -1.4375434605484905 -1.536056103959405 -1.6884188354536889 -1.8634917617347562 -2.020800317473672 -2.1163056227080195 -2.1258085671998845 -2.0430455324393924 -1.8735019440871097 -1.6448669601029402 -1.3979738752101896 -1.1730064809077037 -0.9990564636663115 -0.8863718259549459 -0.8269241079526356 -0.8029612088140008 -0.7883747295181782 -0.7508637570002524 -0.6686905181042817 -0.5419590005279535 -0.3813843603363711 -0.19710674945367665; 0.15630483601218761 0.28153694374930005 0.3616988756785114 0.3949533778325709 0.3771832397686717 0.3000894271550047 0.15288845024388564 -0.07172346166871135 -0.3705296817993868 -0.7334929490706443 -1.1378559426090595 -1.5307561709650834 -1.8502505506546991 -2.0677493009857524 -2.1783343649275104 -2.1806619846754223 -2.0973813435290576 -1.9772482237993358 -1.864948662996717 -1.7757098555364355 -1.6951993399750047 -1.6037366694077837 -1.4826613351076616 -1.3344039200445907 -1.1783270734304434 -1.0605172403344063 -1.0385234069674998 -1.1404375088668761 -1.3536400791403351 -1.6260197113321107 -1.8920611907322353 -2.0911459620965207 -2.1870273645457328 -2.1718802684911807 -2.053148099550745 -1.8560818529094434 -1.6200107889910067 -1.3849249391580047 -1.1840887699765799 -1.0370110955922633 -0.943439523293011 -0.8906265076399456 -0.8556890459731462 -0.806415649630354 -0.7163714265271058 -0.5811905954425203 -0.40920393812168165 -0.21154618607661801; 0.1452457381018561 0.25575448601321704 0.31681217964725406 0.32901353448512344 0.29142017075264415 0.19783231701123596 0.040525144193867255 -0.18215537474572285 -0.46493841705660266 -0.8057376099941504 -1.1901729021180742 -1.5695085107804432 -1.8914759829388357 -2.134664748005375 -2.2848177759402715 -2.330685308557433 -2.2941080120889854 -2.2169378033960436 -2.129579792340714 -2.0334532664549467 -1.9083337832022724 -1.7359160663845168 -1.4992532424985772 -1.202030052497988 -0.8817896872417053 -0.6251988411053723 -0.5274300787316892 -0.6359954403226015 -0.9206454284487618 -1.3012627397958818 -1.6864518697003454 -1.9969562202861064 -2.187089103023652 -2.2466913072349293 -2.1845407441436033 -2.0279175771332913 -1.8152776472761 -1.584761806059613 -1.3695117325540165 -1.1946349783996133 -1.0684411449586608 -0.9842195424717566 -0.9239764177592782 -0.8578559164038826 -0.7572543445555433 -0.6128750932557263 -0.43067923410753506 -0.22233341419206162; 0.12966242119341778 0.2207544232059715 0.25703159475615966 0.24076367224136258 0.1751005164773132 0.05835989541708842 -0.10998085026769948 -0.32335894231311957 -0.5750072056247755 -0.8702421574692997 -1.2044908891092112 -1.5437347974030136 -1.8560957552863109 -2.126831700040566 -2.330274567325845 -2.447666575407149 -2.492186413708961 -2.4875189872679315 -2.444909317791065 -2.351316421659429 -2.182683821654015 -1.919771206065631 -1.543630427396294 -1.063728566277943 -0.5483869259785737 -0.1288496226952499 0.054722460441205614 -0.0673050354573696 -0.4297638308367507 -0.91641695115524 -1.418275575684194 -1.843498318974379 -2.133612213680373 -2.2733213814202724 -2.2722185840341798 -2.160928310234124 -1.9792750501512373 -1.7623245217333277 -1.5410227608725513 -1.3450253306203679 -1.1908164736204374 -1.0776992166355626 -0.9917468597409484 -0.906834215287252 -0.7938474196460842 -0.639872972970254 -0.44823021502197297 -0.23093048933650567; 0.11027559246010125 0.179726678765466 0.1900860251117807 0.14317404030246392 0.044880659214098846 -0.10092251938060881 -0.2837489433660792 -0.4856149767496506 -0.6971900247440498 -0.9297406017453644 -1.189810017497657 -1.465481004601771 -1.749235612215262 -2.03303129154498 -2.2871115540302966 -2.4875050343683274 -2.630572063869219 -2.7158173481720973 -2.7356784795682154 -2.664292222228231 -2.467279287411104 -2.1188446742571947 -1.6026177796517533 -0.9448426348415877 -0.2413549559224121 0.34392347074871804 0.6112937521098274 0.46909595661571746 0.02915198108396384 -0.5454228058634343 -1.1387406327491463 -1.6613326446805081 -2.044683182234658 -2.2617220885998903 -2.320202325189217 -2.255161446721979 -2.1075398248711763 -1.9093872826028973 -1.6881817362507032 -1.4767273813158066 -1.3004642323560678 -1.1642225542641456 -1.0567049031373996 -0.9538167886110516 -0.8273588907123136 -0.662792254972976 -0.46254240134364666 -0.2377712971839776; 0.08794236079162693 0.13602350939850313 0.12413162519371736 0.05106939717760366 -0.0773886446782771 -0.25295987037457973 -0.45338859854912383 -0.6477454890755404 -0.8218234984244465 -0.9889566457311351 -1.1654671361553413 -1.3626466493671519 -1.5961156783952148 -1.8676275224017913 -2.1525892960730793 -2.423815906250571 -2.6553427653099755 -2.824234696694933 -2.9115385273932213 -2.878207858243902 -2.6747089859606237 -2.2714750075013357 -1.6587074195187754 -0.882854123454124 -0.05026710434115696 0.6549148796639916 0.981621943961656 0.8275029124763645 0.33813327306882107 -0.2862111045000823 -0.9230723387060361 -1.4985898601327572 -1.9443254996427224 -2.222665594658247 -2.3334365609683894 -2.3107272556387874 -2.1963273886072456 -2.0190907422455426 -1.8027663418445734 -1.581772265859085 -1.3888506623928394 -1.2352815819945013 -1.1113763268788734 -0.9933226818219245 -0.8537038132415277 -0.6787967835401276 -0.4713292036783018 -0.24149220431763463; 0.06334518519497152 0.09233852655684635 0.06597529920574763 -0.022500189933482233 -0.17115129397925644 -0.3704882502151463 -0.5893080741779593 -0.7846808614154399 -0.9339381803340896 -1.047666675141425 -1.1490866439720158 -1.2671429816322741 -1.4340780996559634 -1.6648367676550768 -1.948336650604461 -2.2556098738119115 -2.5409576490953314 -2.768080652211704 -2.910765384337592 -2.9158930167397332 -2.7295097431848387 -2.3230279374735594 -1.697047943427749 -0.9125442175104743 -0.0842760981882506 0.6182031717256166 0.9501248456206992 0.8201971880711124 0.36308387295317013 -0.22908105937105644 -0.8383582484669374 -1.4012448863555658 -1.856460291302511 -2.1623519703804064 -2.309098683182546 -2.3221260903979033 -2.23861950898673 -2.08382748909343 -1.8769916915635314 -1.6525316769280394 -1.449118201781479 -1.283422125830459 -1.1474498506185384 -1.017325701838616 -0.8664302721150987 -0.6826886643049134 -0.4706385272299261 -0.23981084183875062; 0.03580980148985215 0.04762265898590783 0.015232181859144524 -0.07516035557897674 -0.229123484722862 -0.44025896759981875 -0.6740337986355174 -0.8784667916422054 -1.0196055593408133 -1.101017601942179 -1.1482649317146467 -1.1990058835871904 -1.2940424614884058 -1.4626756982590186 -1.7111826048214225 -2.012215206968918 -2.308906736874633 -2.558667179154992 -2.7222974605640426 -2.740074672417793 -2.5771342940776276 -2.215415974392855 -1.6748209385359911 -1.0164581167688105 -0.3492445987328634 0.19895576890962208 0.4630359929937659 0.3792681819765502 0.03967690035857741 -0.4218978174174355 -0.918398001888364 -1.3946106782554282 -1.796060866961702 -2.085140441032078 -2.2428752694450216 -2.280893106018549 -2.2264978761730987 -2.096404792931481 -1.904285995734277 -1.6837225185396718 -1.4767469390750834 -1.3042933478501644 -1.1601296240982524 -1.0209445450501835 -0.8616278117085945 -0.6722370361321792 -0.4593695700528838 -0.23248859545157963; 0.0049003706747445235 -0.0005445268938310561 -0.033862335648704917 -0.11578935907019683 -0.2612853934318126 -0.47018746741291084 -0.7102890234015634 -0.9257318586677244 -1.0720653882554059 -1.1426854377143525 -1.1606623040048798 -1.1641664956578757 -1.1953123994694885 -1.2948087973353748 -1.4852669302317805 -1.7440070723733543 -2.0117262518379215 -2.2374883009021747 -2.3674916752970154 -2.3523540293139145 -2.1860753769364822 -1.8907765648883013 -1.5152385962964263 -1.091100153583639 -0.6810071644513481 -0.36860881198681705 -0.2350484031274005 -0.3048324968750106 -0.5142764355918356 -0.8017905124504894 -1.1325662639055434 -1.4651580106518647 -1.7599916911701485 -1.9912516090966672 -2.13452648026175 -2.185272616766392 -2.1558198798365376 -2.052084226263192 -1.8805371175402141 -1.6722356590626546 -1.4701139170707007 -1.2971778933763924 -1.1490989046982527 -1.0043525728546072 -0.8400757477476049 -0.6490058481489261 -0.4396752886388946 -0.22120672720345555; -0.029674319735177205 -0.05527522844852426 -0.09041990446373531 -0.16120921654969525 -0.2908159288686808 -0.4856441818793698 -0.7192716267891329 -0.9380516700010911 -1.0926638037358196 -1.166906708021991 -1.1765116958319346 -1.154519632662262 -1.1393490091455423 -1.1765466011900387 -1.301907539105233 -1.4987275879678938 -1.7043774513732017 -1.8606360457349918 -1.9105318898452845 -1.8147615514713928 -1.6002213962209408 -1.3591227472856302 -1.1802948306012724 -1.0363334417479686 -0.9053520737988394 -0.8325287586063096 -0.8559320510785464 -0.961221065620038 -1.0924378044425913 -1.2351123690194057 -1.3952970255344956 -1.5587129337470589 -1.718947758946235 -1.8698204980475974 -1.981652115723356 -2.0350992019097554 -2.0271931849289837 -1.950610018419709 -1.805058027166698 -1.6181266784443369 -1.430361470036138 -1.2649206146398864 -1.1192653078019457 -0.9738850806396537 -0.8091780373552616 -0.6206196707338131 -0.4177170462557754 -0.20923131041427218; -0.06594128756976363 -0.11582477715972536 -0.15922140855387396 -0.22480463578324927 -0.34049236341257516 -0.5168010462794971 -0.7339410974764758 -0.9448742647537496 -1.1017876941955072 -1.1820334748718317 -1.193354571875704 -1.1612636502503981 -1.1171442162723069 -1.1052598736759787 -1.169251274539163 -1.296497627686794 -1.4233642453570052 -1.48934066461528 -1.4388580753794553 -1.2431930854694544 -0.9534366884334872 -0.7323899024758498 -0.7159403258661111 -0.8252353494465693 -0.9476861756858215 -1.0861013600115037 -1.258648436058206 -1.4299078985017366 -1.5444672935962234 -1.597838584748494 -1.6159476796283423 -1.6203251923763995 -1.648852776098041 -1.7142993085569018 -1.7848637697299325 -1.8326666381284458 -1.8421301218296142 -1.7938821959047964 -1.6797347111229841 -1.5227900976870925 -1.3598763758184103 -1.2117204265546266 -1.076300417014272 -0.9366422954405734 -0.7766757844943404 -0.5943552586286842 -0.3990773337093874 -0.19950538109764374; -0.10136143837963106 -0.18074795492026574 -0.24332869795716566 -0.31589580081233404 -0.4262898582899934 -0.5870223777096107 -0.7849740568548376 -0.9813765367281159 -1.1327209940243341 -1.2131231302188696 -1.2243628869185186 -1.1857330671186777 -1.1219744933621063 -1.0715818308674767 -1.0804808402399024 -1.141710836500612 -1.1924522949846912 -1.1722244350912474 -1.035419492167275 -0.7613223611070721 -0.4095317719365342 -0.18618523190058767 -0.2546136529890813 -0.5296946920576456 -0.8381338764138827 -1.133095479970501 -1.4196314002039572 -1.6550966484718754 -1.7817962387932402 -1.7955399366627713 -1.7252856927505835 -1.6190295909070826 -1.5460151126382693 -1.5343195125122262 -1.5584417224274603 -1.5912771788738178 -1.611092427808864 -1.5886030762913799 -1.5089442327211158 -1.390197692088621 -1.262439390866202 -1.141425316740382 -1.0246490436714033 -0.8969888692326661 -0.7462573788806466 -0.572708414617249 -0.3852087880509593 -0.192659109106378; -0.1358415945051951 -0.24990187360194038 -0.34354463704290583 -0.43744856048075437 -0.5549984029632036 -0.7087687694060423 -0.8922512140181634 -1.0750369685051073 -1.2171614947606435 -1.289841245472946 -1.2924712413104973 -1.2431080384830713 -1.1611769658675781 -1.076591023419323 -1.0332905209461574 -1.0317422103765885 -1.0169052252131399 -0.933856598689208 -0.7476790009819732 -0.44879921836664205 -0.0865238412366943 0.14495285512127648 0.06452212220212473 -0.2626153095943237 -0.6520617918828533 -1.0268671526006339 -1.3721369588548176 -1.6463206070620664 -1.7950461264277675 -1.809171078256721 -1.711202981761378 -1.552735089912079 -1.4158152349724888 -1.341253172534456 -1.3180590286234501 -1.3292974125391501 -1.3513190600445997 -1.3503494168031285 -1.3071815458427714 -1.2322898092079104 -1.1462520290347473 -1.0585626720831982 -0.9658913751965426 -0.8549576877725468 -0.7164529092296413 -0.5529269826930991 -0.3734290228018062 -0.18730691667644866; -0.17118372875098964 -0.32342280363994974 -0.4557274521186662 -0.5822590433475592 -0.7189917393044648 -0.8760515978342375 -1.052220907503688 -1.2253289601848252 -1.3581734807586154 -1.4178300430487671 -1.403029874037752 -1.3358836127053078 -1.2347083934204062 -1.1178650998297157 -1.0229155015698845 -0.9618271741242513 -0.8936465963540777 -0.7718677398767545 -0.5742241333698169 -0.3018288370234372 0.011992693196384262 0.23143247690660562 0.19226850105122123 -0.07916128399327449 -0.441893348708342 -0.8144404146045812 -1.1660751577515476 -1.4548995004899372 -1.62903982502598 -1.6753612092785963 -1.5983395760980328 -1.4352930406881914 -1.2665400620391534 -1.142327199708063 -1.074878271264547 -1.0620201687399977 -1.0823349330998162 -1.1008590524474575 -1.0949521284514314 -1.0665086099534535 -1.024461832892252 -0.9719928566297733 -0.9051543713681509 -0.8119680226757047 -0.6861755212619554 -0.5328463329161712 -0.3616296318387575 -0.18208499719115845; -0.20753120608600625 -0.39905287044814847 -0.5721620403849085 -0.7353856798842964 -0.8972624680283686 -1.0639947380067676 -1.2372863709080104 -1.4021954090933741 -1.5252865010272918 -1.5705885197931235 -1.534679652550255 -1.445045724640416 -1.3236808614088094 -1.1797488389627244 -1.0383837971882446 -0.9199564972935305 -0.8060084346805335 -0.6652365276837134 -0.4832051764363457 -0.2671616089412061 -0.03621090590720537 0.1447772216224608 0.1618127866941801 0.004784266951065319 -0.2528383080853154 -0.5509769979250455 -0.8601647714392389 -1.1429905170526649 -1.346182980756752 -1.4425816638044948 -1.412615615237445 -1.2751165479158355 -1.0981896628795407 -0.9403684601635994 -0.8368513385442229 -0.8020356925036018 -0.8203750039565543 -0.8587473036278606 -0.8912490296676236 -0.9082860185477063 -0.9079670952446923 -0.8889930059497019 -0.8462962220576618 -0.7696349769678569 -0.6562623567322308 -0.5130198197679431 -0.3499030280773605 -0.17683022450116723; -0.2408118971196161 -0.46915793760799435 -0.6813777882839451 -0.8800879693754706 -1.0671569647188448 -1.2451303824804019 -1.416338806559666 -1.5704031731424957 -1.6796388527739317 -1.7094981055304772 -1.653269686831359 -1.5402967975993003 -1.3996883493137233 -1.2357909672221887 -1.0585625725528582 -0.890254321832143 -0.7338834371319586 -0.5784357666140213 -0.422382991585492 -0.27219466858816554 -0.1332366871082157 -0.013979918273585664 0.03515395365340217 -0.0048272117665222256 -0.11814416427301531 -0.28694056461446477 -0.5154504010016784 -0.7754575492168201 -1.0057036484113255 -1.1538682883694031 -1.1744129709929563 -1.069981845548112 -0.8985365034981627 -0.7234527830401414 -0.5979001384366661 -0.5500365050086136 -0.5726541087357363 -0.6352865207222917 -0.7055649465367595 -0.7635864526135634 -0.8002107977507794 -0.8113467715704098 -0.7906945686058682 -0.730013528207746 -0.6295664805694358 -0.49662767321782614 -0.34088143568626966 -0.17288922133463533; -0.26562945280294226 -0.524086213723539 -0.771093798176551 -1.0024614499977138 -1.213041596327439 -1.4019637381771732 -1.5706244626690122 -1.7115926880149896 -1.8030545010316383 -1.81598874241848 -1.7412869216268552 -1.6064445787884547 -1.4468139029953007 -1.2677373936404364 -1.0640496858100001 -0.85261382860373 -0.655974967775906 -0.4822069815133746 -0.34210130579889 -0.2467298645412418 -0.18762769680475105 -0.13917073498739804 -0.09418983268414749 -0.06154361641034345 -0.05326973786875773 -0.09633807794223807 -0.23196345417701117 -0.44710728611473305 -0.6780416278675593 -0.8484867121308715 -0.8943556249444629 -0.8138830458121664 -0.6544476172376213 -0.47926871218154865 -0.35066395427988534 -0.3057334069028328 -0.34347786573608746 -0.43243798781082277 -0.5364144569289983 -0.6295815635409129 -0.6985842035747637 -0.7372338929482734 -0.7382729069247027 -0.6955276176922017 -0.6105134896149004 -0.4886922902542774 -0.3391368314224837 -0.17313899235879962; -0.28030832424634844 -0.5597408992802042 -0.8345801587499101 -1.0943169487991427 -1.3265987124700587 -1.526214514197338 -1.6932640187865884 -1.8224667986617238 -1.8971921108034422 -1.8935985359652234 -1.8017687279352212 -1.6458718935424845 -1.4654452572502557 -1.2716953940756242 -1.05049601211458 -0.8050082791071408 -0.5666127346251659 -0.36502015463988835 -0.2200350881013565 -0.14795418804055374 -0.13649498265337226 -0.1438070604247431 -0.1300103909127935 -0.08622132919198905 -0.03001897108854937 -0.00698614131997724 -0.07082952231603433 -0.22233304746026802 -0.4079188657180326 -0.5474376564559894 -0.5809363493624273 -0.5075596668288209 -0.36318700274650867 -0.20525372287186402 -0.09545501283160393 -0.07187391339455279 -0.13216733318674914 -0.24565458635867282 -0.37763264727007545 -0.5006056505704551 -0.5991574379968035 -0.6647360536319294 -0.6895760432502063 -0.6692941065180152 -0.6033587413383281 -0.4939032781444494 -0.34884767713807135 -0.18014636813170407; -0.2889580684226439 -0.5821083712989206 -0.8763985447880148 -1.1577230950458997 -1.4081029382088626 -1.6176787044603531 -1.784476602126198 -1.9051846412498878 -1.9670390757994336 -1.9508438285047707 -1.8459186868080806 -1.6710300721140043 -1.4663088929900578 -1.2530654161597259 -1.0190894649577014 -0.7546549395521351 -0.4832996565834092 -0.24659616225692804 -0.07576818602689576 0.010074699122340887 0.01721138675388521 -0.011563113059081477 -0.02719684482545661 -0.00749486094407802 0.036205862470017655 0.06637456869279376 0.040688297124465166 -0.04689888802940966 -0.15943249799379 -0.23641645104532477 -0.23879352985080116 -0.16571736384581742 -0.041868232866447974 0.08404759720569376 0.1574641773281738 0.14861283956653812 0.06333542594824446 -0.07191555297786574 -0.22668100905287228 -0.3749288899991396 -0.5010226680227053 -0.5939556974014945 -0.6459623324688416 -0.6525363099603059 -0.6087631301950335 -0.5121740677409007 -0.3691044710419144 -0.19286012631310698; -0.2972000361973584 -0.600661026429904 -0.9072490085247716 -1.2017902771381868 -1.464080631045772 -1.6805937474370876 -1.847367573710833 -1.9619029257118108 -2.0148540436188127 -1.9913460665356935 -1.8809159024689426 -1.694953837412283 -1.468097574009207 -1.2300348124571254 -0.9799625410877942 -0.7060034817971105 -0.4185163971504083 -0.15379196880660725 0.05157681021141478 0.1757373381652365 0.21673523223473817 0.20428612612347077 0.18196856219814228 0.1763950228982853 0.18880715857944702 0.20006618251639294 0.18925496837248143 0.15211781912436703 0.10732612377769142 0.087410201290756 0.11278007246483142 0.18572538942400715 0.2867062381306261 0.37269820917312974 0.4012378923436521 0.3551545782092313 0.24321701273519097 0.08714153918597657 -0.08756000787237161 -0.25818430977336265 -0.4092186028164582 -0.5284277644754685 -0.6085821020729144 -0.6433107654086595 -0.6214636653795256 -0.5364384830983403 -0.3933131085430641 -0.20748897106482042; -0.306455524098107 -0.6186060197868025 -0.9325042873642893 -1.2334282267185406 -1.5012780578665204 -1.7207605413686544 -1.8856449678584224 -1.993829035190714 -2.039816229737824 -2.013471930450502 -1.9050412915580486 -1.7190484677680573 -1.4808960823497845 -1.2218180530460903 -0.953393152347341 -0.6714648531954721 -0.3793136958651661 -0.10111273167051689 0.13124293303344364 0.29576284837348543 0.38579640057474723 0.41493627231359453 0.4120068539780942 0.40132917282649944 0.3950563089372845 0.3922004099361974 0.3893547884251315 0.38567166805784886 0.3874108019967438 0.4082390633131428 0.4561018232429037 0.5291787802409509 0.6053237578819927 0.6485828155845522 0.6313960371984915 0.5468944271163227 0.4054606746174504 0.2264087158064584 0.031646650240853696 -0.15897480698250652 -0.33053010297506413 -0.47243617136508176 -0.578439171557794 -0.6369975389818427 -0.6318366132906336 -0.5552095960886347 -0.4119574431458111 -0.21880807260100427; -0.31544662807606205 -0.6338192892004401 -0.9503717311120357 -1.251996172664817 -1.5208095072561345 -1.7411083955319602 -1.903632602522425 -2.0047668018542293 -2.0429394599624358 -2.014592179001866 -1.9127618328598943 -1.7364775230404375 -1.500512150557635 -1.2320255656628816 -0.9503724919121406 -0.6623403978470035 -0.3720084794943219 -0.0946136760903845 0.14772539159186193 0.33805913886667116 0.4689835098822788 0.5439575430708005 0.5766715217169095 0.5851836235497521 0.5859965623541462 0.589510454873279 0.6020578123564361 0.6259034220701555 0.6627177370157401 0.7159384849901292 0.7829143723388468 0.8528356762954397 0.9012658987074688 0.902748212700153 0.8426287543979616 0.7205427410224066 0.5482245826277332 0.34492673826771164 0.13019844659881963 -0.07822346515309363 -0.2668757084406417 -0.4279132265414423 -0.5530415092432551 -0.6259506818941162 -0.6297027746250913 -0.5580353724638554 -0.4160254762858471 -0.22160186791104133; -0.32271842624428404 -0.6434820717950303 -0.9567818694899765 -1.2528036752424365 -1.5181079818806544 -1.7382731319360416 -1.9006295026975222 -1.997551232154951 -2.028590028938904 -1.9963333187766847 -1.9005002030637028 -1.7388276847215351 -1.5163153747066183 -1.2520966101389586 -0.9684504536960378 -0.6803957722480638 -0.39737296109423526 -0.1312780910952749 0.10420057401856384 0.3003670119775713 0.4532530245945379 0.5627595290499369 0.6337946057608579 0.6777106840452716 0.7100498814394282 0.7440769158574672 0.7891347743139667 0.8482490159810472 0.920168350656656 1.0006061936796036 1.0788033758890228 1.138066480070363 1.1576119721454012 1.1226665119451698 1.027709376486733 0.875018454090688 0.6760797193223507 0.4497715838637904 0.2150467491004067 -0.010564705966898217 -0.2149305159209616 -0.3902730274967272 -0.5254274674006545 -0.6035452559658094 -0.6105638018098646 -0.5417273056557596 -0.4033333826516704 -0.21455097806144616; -0.326125613668358 -0.644826132396656 -0.9497471936462513 -1.2347041289287164 -1.4919024290118796 -1.7094652113550726 -1.8724546445418753 -1.9691821207949092 -1.9970505102088836 -1.9614018442984287 -1.868449155295647 -1.7202695712490028 -1.5175697196035138 -1.2702317064750392 -0.9976755451277249 -0.7190706302611165 -0.44922213206463874 -0.20083693483905274 0.01745640224121511 0.20356052960289492 0.35992676875333274 0.4882236515964797 0.5913001408034066 0.6756297484629911 0.7527284790450246 0.8330525880868649 0.9241003640260449 1.0260527749794568 1.1327700949557384 1.2336310528505505 1.3145610821781843 1.3600150714852302 1.3569950253204202 1.2985013159741579 1.18232753684216 1.0098729845739622 0.7911595445949543 0.5448004613185778 0.2916587988240127 0.050283774881702104 -0.1672981524688284 -0.3514471195841203 -0.48978802991891435 -0.5679359525746543 -0.5751679795595054 -0.5088026089825177 -0.37710661275937674 -0.19996869045924295; -0.3213328034181073 -0.6322141637087106 -0.9256589953316289 -1.197398392202612 -1.4435305389199256 -1.6547981844246995 -1.8162695577592087 -1.914347920064898 -1.9438106481251631 -1.9091631465762058 -1.8196255481291488 -1.682238821675034 -1.5004725777236259 -1.278812161162942 -1.0303257314449186 -0.7731834669440513 -0.5251634431299337 -0.29968084173247966 -0.10294415262567107 0.06661769651742541 0.21599050329589645 0.3514707370892286 0.477558451685403 0.5987541580837829 0.7213792373063479 0.8513572062434771 0.9909816850900041 1.1353919230521863 1.2727412401296072 1.388839898439747 1.4706490297602672 1.5075332047053442 1.49344158610179 1.4248790094807111 1.2994426927617235 1.1172489750898495 0.8870967790622176 0.6272462338484603 0.3607477272220384 0.10747198998700491 -0.1189211769526255 -0.30729927623612624 -0.44554614719863245 -0.5217299992606538 -0.5281476146253837 -0.4650200727213276 -0.3430806168008907 -0.18137912087086963; -0.30543680430126036 -0.6012733510848791 -0.8807367620595967 -1.1393388416281895 -1.3735292113119881 -1.575184114201541 -1.7315512431057165 -1.8304791541286864 -1.8650603223464581 -1.8371341225195625 -1.755196539349939 -1.628998119836843 -1.466729477930969 -1.2740342207807063 -1.0598645839661358 -0.8383011023309184 -0.6248875767817159 -0.4302477098247241 -0.2578937187099263 -0.10496653135287416 0.03653546546198271 0.17476992128508434 0.31648517687022626 0.4657654791486545 0.6258894773298856 0.7983601240470073 0.9799591653831825 1.1603590062010236 1.323776448114047 1.4544294000887557 1.5417628226895088 1.5789586959673831 1.5638441200296656 1.4944086308714966 1.3686151504170112 1.1862756641027428 0.9544135577300283 0.6903454149898087 0.41814865861310274 0.15954123134410111 -0.06992639927504853 -0.2579490052788181 -0.39327021990508004 -0.46632522186576747 -0.4724173216343269 -0.41458150448777276 -0.30497402496303105 -0.1608809686018284; -0.27943975729079995 -0.5528760980817237 -0.8146799785320634 -1.0590529809650298 -1.280275728591663 -1.4701045905765187 -1.6187237509294379 -1.7177604395765276 -1.7606026142987914 -1.7450217597440758 -1.6763993667180883 -1.5651058671803018 -1.4226991972819656 -1.2586187308890135 -1.082806500353144 -0.9061865238518577 -0.7386488435633276 -0.584350076173545 -0.44166067323826724 -0.30570428091399804 -0.16966752799962279 -0.027664465645560476 0.12585283197370079 0.2943439736992214 0.4798963446329287 0.681759437594066 0.8930340009504171 1.1006401512118302 1.286908940750408 1.43485583948905 1.534651885838715 1.5807335954023292 1.5722252727206925 1.5080628188447454 1.3879895488043623 1.211884230054274 0.9856805163322901 0.7255923726122039 0.45639858027524044 0.20082570687468557 -0.023892484756839843 -0.2052321027590302 -0.3336562309326826 -0.4026219243477546 -0.4098627676839249 -0.35949760265588554 -0.2638216498466336 -0.13864824144046545; -0.24787811794868475 -0.4935726628012712 -0.7329705492583262 -0.9592291318168168 -1.1644821511983472 -1.3405592041343568 -1.4802964379805006 -1.578596524892195 -1.6307240250317554 -1.631733822518923 -1.582343909983169 -1.4919184629760076 -1.3731419974260872 -1.2385681285611825 -1.1006221423581801 -0.969215922911339 -0.8490563263761702 -0.737901471018621 -0.6281312745317638 -0.5112595030232999 -0.3813866118482148 -0.23678185164428714 -0.07537603970435867 0.10453572700803646 0.30464958006888804 0.5232722707367167 0.7524378249091663 0.9787862170250713 1.184231126605446 1.3506775842225522 1.4669274454066106 1.5269774701134378 1.5293473956783992 1.4735510420238551 1.3610022931350714 1.193013017910146 0.9760794970743686 0.7264672005269361 0.46902715303552844 0.22701340661191094 0.017330073729901738 -0.14961661994009295 -0.26751143161035273 -0.3318133813809672 -0.3410671414078541 -0.29925618672587306 -0.2184445845360149 -0.11395169084073094; -0.2157271839566235 -0.4308667919545022 -0.6427362199068741 -0.8453349550432152 -1.030562812082879 -1.1912059276507792 -1.3215668838191958 -1.4178095475083548 -1.4770578988895466 -1.4946373468514322 -1.4681490964454746 -1.403769522621118 -1.3133766269448104 -1.2107580145687842 -1.109339822237444 -1.0180547377640372 -0.9381281135620537 -0.8636275528252848 -0.7829862645279223 -0.6852556928457532 -0.5650047517965412 -0.42354300461112204 -0.2614678208824122 -0.0787091857632134 0.1262719198132585 0.35148802278747693 0.5892516973743984 0.8266012512530303 1.0457938860591056 1.227849985646744 1.3595138511101181 1.4329372885713136 1.4453512390748784 1.3966578040838526 1.2898931448368094 1.1294253491905992 0.9247668864550911 0.6926640941885805 0.45650203639015496 0.2379723613063794 0.05178068124143285 -0.0952520727020694 -0.19947984544159322 -0.25721618517774786 -0.26753602306724655 -0.2346199271504549 -0.17012602255722228 -0.08802470987358116; -0.18548742710461238 -0.3694818378472344 -0.5501481065940067 -0.7240464805325264 -0.8855267181740321 -1.0287436699766168 -1.14832174829292 -1.240258210108992 -1.302518094982135 -1.3324120739387812 -1.3273449315301382 -1.2901874187441649 -1.229974229021377 -1.1599784641708661 -1.0923244079779904 -1.0343959752608658 -0.985428128322592 -0.9380287979008024 -0.8793829665173365 -0.7984475323992831 -0.6904355401595484 -0.5579207948561893 -0.4030671367744366 -0.22651240828230254 -0.026528879472272695 0.1951303342298845 0.43161453360448193 0.6703356974057102 0.8938856355217555 1.083014753320355 1.2227122694140753 1.3032759283924804 1.3211724548523647 1.2771493122087503 1.1758347584122226 1.0252446857925523 0.8383009618533784 0.6317448785993781 0.4251384856798997 0.23655422585146146 0.07771369990215653 -0.046671853346176254 -0.13458893669858404 -0.18344151677491058 -0.19350407785553528 -0.16982140424826783 -0.1226417488869403 -0.06326974173120806; -0.1560676563156404 -0.3090669670994818 -0.45730180572528095 -0.600010796256455 -0.7350285734605684 -0.8585726711180375 -0.9651578232650182 -1.0500039972844528 -1.110779905806295 -1.1465384734730562 -1.156678808109972 -1.1427539181009407 -1.1105391865946548 -1.0705685034990369 -1.0319490236546767 -0.9999937553850605 -0.9731948390281155 -0.9446779451984031 -0.9021655723862914 -0.8359404701502883 -0.7415348508434584 -0.6220544919880583 -0.4806858530025161 -0.31818555449504665 -0.13220441502935865 0.07580748771530234 0.2995815306523334 0.5269660912269271 0.7413520284182696 0.9240111701181307 1.0597118855817085 1.138347551674889 1.156416666724327 1.1160040591586982 1.0231868156272226 0.8885231635809457 0.725989914288065 0.5513336935240764 0.3797388419103548 0.2248517710413065 0.09523636628331744 -0.00578145678920092 -0.07714415488681789 -0.11736476510356521 -0.12769342527215893 -0.11315551297806692 -0.0819165053488669 -0.04233227963643622; -0.1250995278561036 -0.24666856387681105 -0.36314770064669066 -0.4749115719983943 -0.5825420724863994 -0.6846508834291299 -0.776275942381505 -0.8514611668973541 -0.906648693268786 -0.9417587817878372 -0.9586367855785566 -0.959684577900659 -0.9488139723054656 -0.9331961185348998 -0.9180179985303166 -0.9060146866226484 -0.8948939460069395 -0.8794069251111698 -0.8493303687701376 -0.7966520696122651 -0.7171148932717467 -0.6136006878893623 -0.4901431094656123 -0.34749327676156194 -0.18343306527282022 0.0006171043044806461 0.19872006315742038 0.3998326775602614 0.5892314187732741 0.7502677384286041 0.8694380227892605 0.9379302306490376 0.9529895769278683 0.9175463747048851 0.8389278673226006 0.7277762881216976 0.5965656561841913 0.4585939531702245 0.3249438256205547 0.20501205143915016 0.10426404499724648 0.02513533632477199 -0.031165036489104576 -0.06407948249232591 -0.07509863075345705 -0.06865108232119109 -0.050247540319443576 -0.02601379034003246; -0.09231944956562425 -0.18192824856205742 -0.26775722644285416 -0.35006222463391495 -0.4302996782392676 -0.5091907760903199 -0.583159343054122 -0.645666975061436 -0.6920531207483992 -0.7223838786485923 -0.7394199015734656 -0.7464972273332604 -0.7471769484993717 -0.7465229007714677 -0.7469446863626317 -0.7488426501247858 -0.7490264285511496 -0.7435395420471953 -0.724468461748436 -0.6856780627629693 -0.6234268931831607 -0.539998620817379 -0.43925551174211325 -0.3225089580494504 -0.18849920936259557 -0.03853362014007335 0.12218532621176742 0.28411207797529014 0.4353375516854967 0.562950741005673 0.6566928731152403 0.7103452774307193 0.7219067509098521 0.6946591699544946 0.6354486934758686 0.5531278017237337 0.4570530432229447 0.3574890451793485 0.26126501122598056 0.17454428560700994 0.10061656648378775 0.041758304134596115 -0.0006190602631442802 -0.026526331670874786 -0.03748882968550335 -0.03676525367382576 -0.027696946048013753 -0.01438146106252777; -0.059480087492090515 -0.11746123743608751 -0.173681670431613 -0.2281031849666642 -0.28152190774067676 -0.3353251092383839 -0.387769270880948 -0.4332752366646122 -0.4674308961571226 -0.49023593591278597 -0.5035721721702903 -0.5103693460577519 -0.5140134993019253 -0.5185083999741668 -0.5250728554817857 -0.5331314230725772 -0.5394585630542202 -0.5409275521139308 -0.5315135207426639 -0.5068806196121823 -0.4644553464444366 -0.4058172490352454 -0.33387867055798004 -0.2503145541423508 -0.15500969267477988 -0.04866547675490116 0.06478757693767809 0.1778968914190661 0.282397545280071 0.37016634416780964 0.4347032900530909 0.4719010822214406 0.48044266737787616 0.46306021807318676 0.4250109343451335 0.37193711782662714 0.31019378459151736 0.24654876028458345 0.18479835564588085 0.1287794124847794 0.08068964149890998 0.04186929617197486 0.013133045629726598 -0.0058362060337827015 -0.015268039395601219 -0.017168130823574566 -0.013497872242662445 -0.007024817544720424; -0.028770354157718232 -0.05686535150836642 -0.08451138003039105 -0.11166766568731665 -0.13843394636426817 -0.16565646103132967 -0.1928413631935789 -0.21689594008174332 -0.23515767114603212 -0.247661655899227 -0.2551004535862498 -0.25893778838695214 -0.2613918024258284 -0.2648008774744217 -0.2698765660016907 -0.2761329867056111 -0.2817035382503195 -0.2847570419660082 -0.28173576065988426 -0.2702848175150637 -0.24917339139071357 -0.21918942917417322 -0.18174334050413232 -0.13802745470833352 -0.08832160437861411 -0.032948914740927204 0.025924946639887626 0.0840106621595854 0.13722665590874242 0.18205331230836022 0.2152947311219605 0.23469628963866027 0.23939409948144744 0.23117891089547224 0.21289387715929042 0.18718320925330803 0.15711915621570563 0.1261488672906259 0.0958862750626522 0.06848804836522428 0.04505352408431858 0.025967410093934908 0.011173954841160212 0.0006830137753077146 -0.004903948119178802 -0.006352597601169172 -0.005002253109034981 -0.0024754083148453517], hyperparams = 95.5887980585923), (params = [0.045605436522475916 0.08907132228929919 0.12492780051311471 0.1454157695839701 0.14677142735689674 0.13172539401862093 0.10988434372376106 0.09563462995688676 0.08087936987925662 0.07225786373921762 0.05927058254853195 0.04368723880579974 0.027252708125378836 0.008893321832290763 -0.0002070462186698295 0.004680889070706913 0.02481157598417723 0.05819606406426342 0.07972323930495497 0.10331424057276466 0.1292732967133743 0.15394838114092924 0.18353426654594346 0.19580427408119475 0.18881089602859033 0.15779846488192842 0.12084036855782472 0.0930540836016598 0.07614128033411417 0.06624979827171877 0.05444575995193448 0.03961433206991378 0.024827463778032993 0.0151069659142924 0.017195998975778413 0.03480571187213634 0.054233402122725295 0.07055360773912236 0.08174286441836684 0.08832091199028115 0.10178590996982129 0.12590484953008987 0.13915914780852917 0.12614844843283007 0.0926429900994835 0.050882083653940126 0.01395551570570037 -0.004062446366398147; 0.07470469212887909 0.15518738328775558 0.2277580642290186 0.2709979380190679 0.2723107773832838 0.24585573324429968 0.2128795485113253 0.18983775540718267 0.1669281374557825 0.14809163351283064 0.11967628342187163 0.08414011841606926 0.05235199373293468 0.024617060248538443 0.01915521013349294 0.035072327236972865 0.07512088239050183 0.13677561317947012 0.1852651613665166 0.23516270986244486 0.2849972930881758 0.3305822382997687 0.3815622418601415 0.403674792951718 0.3936125897444373 0.3431204596773407 0.27910004710876474 0.22314349756075694 0.17632600829809542 0.13840622429589358 0.0987556702279955 0.05888983456005705 0.021182481556085608 -0.0005224366637456928 0.0019481275387511683 0.03671387437088994 0.0801877078233044 0.11696931921799301 0.13633375852692298 0.15144341933793073 0.17395089727899182 0.20920352454443245 0.2292492376872349 0.21766142677492228 0.16644405966984405 0.09539007583127387 0.03341818952275389 0.004081177395223716; 0.09604734133637927 0.20379259238106412 0.3050324312870372 0.3700690699412804 0.3757404030657833 0.3481936793323289 0.31134983328609755 0.28362056572595506 0.25402821858586 0.2259850531979778 0.18585976773000015 0.14345500306647035 0.0979888227722646 0.0655098291915093 0.06043711882517857 0.09096839121088922 0.15245613963373061 0.24278119503034104 0.3203454748451745 0.3970272392289626 0.4692124205585093 0.5401064158880032 0.6095102913114572 0.6401365829575034 0.6229533929512316 0.5534477075245421 0.46432184548105887 0.3757926727904496 0.29169439884478754 0.20986457955618448 0.12830269684232526 0.05212971044244934 -0.01312673050564771 -0.04810732981041232 -0.044174489131477444 0.0015051079529249112 0.06817423179213454 0.1275678978320511 0.1603406603227701 0.18136754250194437 0.20681874864220773 0.23481043591700734 0.25426158353353434 0.2479700182653808 0.20108651492567298 0.1243416885452315 0.05724471299615101 0.02049146697821741; 0.11288050446929239 0.23969515000181693 0.3616309830989025 0.4529373589361483 0.4789080212474143 0.464361447731382 0.43413419722154395 0.4061995741161959 0.3783558397158553 0.33534892268538874 0.2778928183314947 0.2181576967792071 0.15799986199133376 0.11974064885938929 0.12035121579299939 0.16612382506567203 0.252844177822454 0.36773354925385815 0.47920436525424803 0.5851366008970003 0.6847726967132791 0.7770567872028836 0.8533317979539156 0.8815097872037582 0.8521209521203553 0.7695022198865435 0.6600505596401475 0.5379774524881829 0.4126417274299717 0.2813204394596694 0.14747161031481248 0.029606555458029492 -0.0661973901325458 -0.11665267155775721 -0.1156444359061874 -0.0647540506733729 0.015106216351036574 0.09596339870881697 0.14296935244900325 0.16805962325643115 0.18665490245870792 0.21110515755087378 0.23167619094907504 0.2384832561498595 0.21527834401793383 0.16325563849518906 0.10020588650795273 0.04853750304599178; 0.12781286003706613 0.2725611590096548 0.41978828465013096 0.5416038085687687 0.5970245101284357 0.6034765892285301 0.5816483962605631 0.5522798705418875 0.5204079159194458 0.4624682466074874 0.3796178268869901 0.29961602553636413 0.22408743688515217 0.19211832015958033 0.20169250080127418 0.2635739797691203 0.3644061073092975 0.49557560078291923 0.6394093170594217 0.7840076711607973 0.9164339605970575 1.0291662955104108 1.102181870107262 1.1193607935473053 1.070851021819642 0.971816093547842 0.8367529280871071 0.6710845645961543 0.49660401817572036 0.31366188597453326 0.13506346223812019 -0.014780268112981533 -0.1288737519282671 -0.19552561506538013 -0.20545573212745943 -0.1589804968954035 -0.07660677070356835 0.01625341920907337 0.08586530745985224 0.12149726040286594 0.14060620443405783 0.1612249124871141 0.18421545877704648 0.19723968134701084 0.20468663390399167 0.18694232329629198 0.1387877827873372 0.0742297918217421; 0.14356417169877494 0.309431985685292 0.48171208038532154 0.6309701305628789 0.71552007271994 0.7464704775550357 0.7387796829201949 0.7045106653704097 0.6595870567485794 0.5856454132196762 0.49022954058076895 0.3948659958355358 0.3136567296938597 0.28223942386714357 0.2998966937283959 0.37440000447791466 0.4924757752923029 0.6421252808990732 0.8191732650810498 0.9944125635307113 1.152548329194125 1.2745608190314617 1.3411136581520442 1.3445375013653178 1.272058505441772 1.143146118605065 0.9714029877325364 0.7610739178804468 0.5348604888952305 0.3033019840011207 0.09074027868188078 -0.0801251187433988 -0.20289619057469638 -0.2825689540232458 -0.3100323084857242 -0.27819303559979414 -0.20614819683005553 -0.11342061700302158 -0.024101705054485893 0.03398160558844677 0.06001820759355363 0.07901046369951126 0.10258084455185326 0.1321699659685185 0.16979206507837147 0.18395817362430603 0.15321592546235063 0.0891000803746159; 0.17199884952488506 0.3637071687386132 0.5576462167348757 0.7202766017493839 0.8217111763201307 0.8610754539877109 0.8564554200007162 0.8140255631862722 0.7527596003287955 0.6718638966828708 0.5743990510695639 0.48009457120299903 0.40429254085428407 0.385100111045336 0.417863323173991 0.5081470528563097 0.6395184932329732 0.8038148763884035 0.9977053628217895 1.191512763398536 1.3687766023550818 1.5023867477291009 1.565744201430628 1.559245662717626 1.4633859993428944 1.2945531354447666 1.071806812877891 0.8092155221420719 0.5264658925692611 0.2493471600822134 0.014392237334190388 -0.17047656335055417 -0.30122724441023385 -0.39623166688759187 -0.4512130020863145 -0.44701301801420873 -0.38985750661284124 -0.2976993731422955 -0.18862921257857565 -0.10251162278262779 -0.05117156054666659 -0.027435275972273403 0.0007653134697945513 0.04572711516220913 0.10496654333258942 0.1377040249350328 0.12851059216023572 0.08001655726225516; 0.20603224306663132 0.4225989037198218 0.6273589363039066 0.7935397016114272 0.8973585272673815 0.9339751149901855 0.925837775015485 0.8860726848139326 0.8245211291492963 0.7463419233845936 0.6502113916698504 0.5560268152965493 0.49292930370600374 0.4886541174907856 0.5426344621636281 0.6472700826182421 0.7855120337006004 0.9570707965064988 1.1543562304140778 1.3552346999958353 1.5445121915209459 1.684385762190547 1.747264971791165 1.7327490706543862 1.6226701430556838 1.422099272899467 1.1485589208864946 0.8299972307137805 0.49015864093418327 0.17294830420155766 -0.07997621625114673 -0.2804429513085561 -0.4246719089647702 -0.5414504830988878 -0.6268589052887806 -0.6604563249156423 -0.6228405656389454 -0.5320269829073312 -0.408264241414772 -0.2972623274317438 -0.2143209845108419 -0.1727701941829199 -0.13895222814649688 -0.08303208022102349 -0.011359658817106596 0.04501419318946631 0.0656393829420382 0.046951500777428; 0.23904752228067105 0.47263543901279037 0.6823946652764965 0.8411827308686697 0.9415075000216804 0.9732787503760274 0.9660706277109928 0.9344044675321537 0.8794239659008244 0.809369565664232 0.7167368848496922 0.6297381017156811 0.5774349943952213 0.5798613818036676 0.6485502935720199 0.7667410371680718 0.9152446052849366 1.0942520991915294 1.2898533936402343 1.4882236087281182 1.6722848192045852 1.809524408412498 1.873781382087882 1.854738998928176 1.73460226991963 1.513957361030145 1.2044509649052484 0.8429244648569039 0.4586020819609828 0.10575343750645767 -0.17504731925638103 -0.39846063076541116 -0.5683315439096962 -0.7081585434367631 -0.8161765513887675 -0.8748490174090636 -0.8595018616297838 -0.7736680488904327 -0.639941246440891 -0.5083385550720586 -0.3979250353137219 -0.3343133663286989 -0.28897264044040133 -0.22794892704514952 -0.14783236211506495 -0.06734610638188925 -0.013946870516024005 0.001233938672605331; 0.25928200003866364 0.5027700226523949 0.7111697136383035 0.8631977556784688 0.9576485604614439 0.9965680292559591 0.9993375418640305 0.9820649931452844 0.9360673286145951 0.8732797804469299 0.785760928764371 0.7036796927377119 0.6527856816025955 0.6510737401223745 0.7243026627039463 0.8506686047737689 1.0056577869152048 1.188404562988059 1.3803972948391414 1.5722577500522659 1.7424006930084748 1.8684288613826452 1.9315167641068494 1.9070274690779383 1.7838774551825247 1.5535983619774256 1.2270796008287357 0.8404585988970787 0.4316709475875498 0.055690466854079 -0.24946428456175532 -0.4937422100103687 -0.6862350718860535 -0.8532502243273349 -0.976226848206794 -1.0518968409401617 -1.0526860901011725 -0.9809134233000962 -0.8445963846321616 -0.7020089398734722 -0.5771735138698443 -0.49499079514127214 -0.4318119264227046 -0.3594858671536867 -0.2689859960556451 -0.17046839871680758 -0.08999296884114741 -0.04045574739682843; 0.266888701449422 0.5121010734287563 0.7191541302837062 0.866644851827865 0.9628121783472298 1.0123210582484876 1.0314203218651476 1.0294995400581106 0.9942390908101153 0.9333567159393361 0.8411941129478472 0.7531175178744192 0.6963536368555763 0.6953505017982776 0.7730300322858888 0.9017249325059775 1.0618407077309082 1.2464169367078768 1.4401925626520897 1.6276653521147886 1.7837689883681425 1.8914386483934478 1.934465577739849 1.8942524838909756 1.7656944575650448 1.5343259491826708 1.2085613978695022 0.8171299706724998 0.4048535412160136 0.022847348592110156 -0.30404319899080007 -0.5669471125386615 -0.7804749851214425 -0.9595601477783801 -1.089954152460083 -1.1654913143556473 -1.170734109208081 -1.1086517327356318 -0.9853912424865489 -0.8458007311783857 -0.7227151710926042 -0.6310608538040461 -0.5534917016807512 -0.4635039253771979 -0.35355741479194497 -0.2388579400028124 -0.13920461936328887 -0.06321919686587796; 0.2617457756201345 0.504605669655282 0.7099046066175739 0.8654095436296224 0.9698831150504125 1.035097343579599 1.0633074502339597 1.0637989997053428 1.0285005034546046 0.9628184685681547 0.8688403792183913 0.7806621570599139 0.7266725655910361 0.7324752411865718 0.805988261745277 0.9244597863518912 1.0780800814305427 1.2538434210749805 1.441242941088927 1.6188607582051435 1.765669868098065 1.8639181253221275 1.8931550438225162 1.8384582468672366 1.7006376109686918 1.4612293630270647 1.143069627867384 0.7645969449188791 0.3701441253691539 -0.0003927525760570238 -0.33334246301532267 -0.6109817777308914 -0.8333862252003773 -1.008591540986246 -1.126814910806569 -1.1957849880695246 -1.199833536722875 -1.1561072736170313 -1.061516620270895 -0.9434449922961239 -0.8292409725263484 -0.7349555141825695 -0.6499422466874105 -0.5472332896816869 -0.4162589855707368 -0.28335185987531325 -0.166800700479097 -0.07340360281730238; 0.26011911259347187 0.5052867092948984 0.7137746607511282 0.8737498445243279 0.9811388979217327 1.0480307448876158 1.0729235781420543 1.0603472248574561 1.0137215388288465 0.9415046740682459 0.8518475818190047 0.7753642036105949 0.728902871299225 0.7372126476166311 0.7975565520510803 0.902392325361255 1.0454603276301746 1.207511528334562 1.3853836780393187 1.5513799589497799 1.6876481187529686 1.777067597006065 1.7930022319094072 1.7317873978153462 1.5880598848540743 1.3495028877567428 1.048030744783962 0.6977031645130162 0.33192612591894405 -0.01794871183876709 -0.33894956202255455 -0.6132418178557404 -0.8371896395289917 -1.0007157069276529 -1.105119775776946 -1.1626341784384269 -1.1711376458058842 -1.1459841219451112 -1.084224837211185 -0.9944214327089282 -0.8984882168734803 -0.8076346042178216 -0.7160009358112593 -0.5999609481529435 -0.4533941353408252 -0.3030960161940839 -0.17524846867615754 -0.07532862745166247; 0.27052678057908625 0.5254200647978052 0.7361276281586748 0.8929374788451743 0.9879098621503493 1.0387334746452224 1.0462370009692454 1.0186229787605892 0.9674600523919187 0.8960806991451029 0.8208252103920093 0.7568012787306635 0.7143718561179545 0.7131998654578537 0.753370322596101 0.8343101637190512 0.9492751398589968 1.081346183753202 1.2363155761914182 1.3884609243017068 1.5178573409085485 1.604654114378283 1.6239780406834228 1.5732113002008692 1.4441524567828805 1.227558652745798 0.953802392353707 0.6404401792175843 0.31146641756591026 -0.009116303105667047 -0.30443716563463524 -0.5649079466466852 -0.783783071844161 -0.9419671229636585 -1.0405454924885098 -1.0938046929436454 -1.1129057214311875 -1.1083885075608781 -1.0752058605914618 -1.0125196676474997 -0.9372881619494721 -0.8542206191198017 -0.7543718994980523 -0.6238549711528084 -0.46852773477474335 -0.3082198265995059 -0.17287397851111844 -0.07406823417261764; 0.2815459149374057 0.5417484088714234 0.7525353775096537 0.9039861102937298 0.9886301485269446 1.017736912434191 1.0015079453293216 0.9583082303754481 0.8996655371912605 0.8329981143608375 0.7698670854925647 0.7148511637827127 0.6665845069094282 0.6507662263961314 0.6684263399517759 0.723505599328746 0.8097141704058213 0.9131389255230328 1.035445866023968 1.1614755585895404 1.272370855839772 1.3585278955624212 1.396583809812232 1.3773877530938865 1.2816489839135146 1.1073439278179142 0.8722953587226905 0.6022659351453062 0.32230428861541793 0.04336774082517159 -0.2220874897736965 -0.46968257034221456 -0.6804481877854843 -0.8317380130841274 -0.9294179238495834 -0.9868758924315525 -1.0255088232604912 -1.0431807544360039 -1.0328538570311159 -0.9877545108883157 -0.9233805626623364 -0.8494954722272438 -0.7505399014211642 -0.6191606612346101 -0.4659120900354656 -0.3038325822053754 -0.16623347911940695 -0.07109677899235732; 0.29370350669960615 0.559091501255403 0.7696368053009471 0.9128235944829736 0.9860982023561756 0.9957664992847503 0.9618260908223686 0.9036323096052755 0.8387356570874895 0.7724182048082797 0.7184312476376759 0.6618412613261178 0.6027252511705532 0.5625443807295049 0.5533742353183361 0.5785475201241079 0.6414335735842468 0.723118081570222 0.8106717686238989 0.9029786378256848 0.9903125372489043 1.0729826891811647 1.1374225135390224 1.1642240027551571 1.1288977727954503 1.0245255357449325 0.8480502657782338 0.6244475137150388 0.38286181604456143 0.1379579035539198 -0.10258137010723385 -0.3345675077053962 -0.535010951450402 -0.68311711172568 -0.7885602784242176 -0.8588125328872895 -0.9171752233000884 -0.9478732753308101 -0.9504604485920894 -0.9125091117972579 -0.8525243590287701 -0.7833488203127944 -0.6971731555386265 -0.5815495420233397 -0.44250457682870087 -0.28964700971417856 -0.1590737298526185 -0.0692958436864425; 0.2991086012620635 0.5691688971240719 0.7844148250514715 0.9255045140209802 0.9951407262933956 0.9951875468462381 0.9454120776694169 0.8688977198058738 0.7835229272341553 0.7031986283397688 0.6333929974154178 0.56601851534553 0.4948418175758958 0.4398216116525744 0.4162813757696947 0.4276733035722659 0.4769406734985246 0.540950873056344 0.5973794083911524 0.6598877827879113 0.7256355725977592 0.8080354389136212 0.8958833564930005 0.9739895974789977 1.0101869058053636 0.9844983396834471 0.8775052734186698 0.7042950817913514 0.4951910530531716 0.2718634053344545 0.052365790966783336 -0.16155669450916132 -0.34985946019780084 -0.4990339098049062 -0.6131611175974729 -0.695950069872112 -0.767883812395795 -0.8091922731891642 -0.8169734228423086 -0.7838993099527403 -0.7276763227629739 -0.6684023687007936 -0.6032055225549986 -0.5190703332066094 -0.40348628763196503 -0.27001561332572627 -0.15230462765741964 -0.0664364495710119; 0.29894093095361435 0.5727762013086757 0.7984706112310034 0.9476288130172831 1.0256040089401324 1.0203348273756045 0.9523362497975583 0.8426226180645815 0.7234238893112998 0.6086838639039549 0.511316069393528 0.4281937525907531 0.351443213366427 0.2848038364750652 0.254854673953026 0.26352971035857076 0.3079669869203775 0.3610883577415422 0.3990526399300274 0.4391705887606407 0.4900781383063625 0.5778466741012208 0.6967438586368471 0.8305088258291673 0.9426591228266968 0.9960756633739802 0.9590288022117841 0.8357124014607569 0.6496312291338202 0.43663327104592214 0.22346086445050903 0.021327633363131513 -0.1549203586497536 -0.29781481694201556 -0.40905999511799185 -0.4941524083747686 -0.5724479795315134 -0.6220690656826938 -0.6324483013081365 -0.5997125529846062 -0.5582425772041961 -0.5221222090261759 -0.4923843319397878 -0.4448928232550343 -0.3581776101036476 -0.24446617537416535 -0.13969073234998705 -0.057081642481014216; 0.2990367856654393 0.5773362685258155 0.8139355163331264 0.9723964880696724 1.0522260728905182 1.0355628007680802 0.9409335092423271 0.7939055441462954 0.6281573222806874 0.4717034583900716 0.33670727654606364 0.23500629376701765 0.15269865948653805 0.08548689831766759 0.05569968822117223 0.06893254298661153 0.11462099239395597 0.1670342355989787 0.20337758632986144 0.23914507833854817 0.2897063973428388 0.39325113066913575 0.5441159926294026 0.7283705882179733 0.9087992609185568 1.0373334176824551 1.0650102489677853 0.9773471206916495 0.8083357382467958 0.6082335686523967 0.4056576897376237 0.21190323765874425 0.044147453149288814 -0.09385832475651634 -0.19788763986159236 -0.2764886769378379 -0.3465314879473719 -0.3996412889047109 -0.41517707694859785 -0.39617574493785923 -0.3762745637069205 -0.3726398331193261 -0.37739770229456615 -0.3646222281385606 -0.30325427866355514 -0.20772877430376138 -0.11350792835941857 -0.03985842463325701; 0.30454797259329863 0.587182334738088 0.8316668422017724 0.9937501785713116 1.0680298411418363 1.0308867140784825 0.9079021984234983 0.7215930963063901 0.512306528937944 0.31582283311044557 0.14670387190127424 0.016719760666685932 -0.07999220629592377 -0.14845702052610074 -0.17398305578183476 -0.15397965108350525 -0.10362344524416753 -0.04438836506510851 0.001055009822271817 0.04695240215807532 0.11500976068344626 0.24048690294503047 0.4213640257125299 0.6436639486759663 0.8698909403152892 1.054267828130967 1.1385370120197698 1.0922115652557656 0.950662704446955 0.7750363384547411 0.5837257071080181 0.39486227118585737 0.23126297924459172 0.0982959962667257 0.003951501561853234 -0.06389445948214846 -0.11933690759909966 -0.1668001344998755 -0.19343322376365799 -0.19672935750959758 -0.20176392316652433 -0.22302168133917497 -0.2566751321984616 -0.26643894137302554 -0.22720685181022546 -0.1478522803019055 -0.06843643270492533 -0.014017947622008918; 0.3094808559965047 0.591684126768514 0.8311032111062157 0.9865359605494162 1.0461438080676753 0.988100623634323 0.8375026155376618 0.6219686661057315 0.3786806815817247 0.15348266291426235 -0.044545115862068295 -0.2012505844704215 -0.3193321664810518 -0.3943209206212057 -0.4191578967308563 -0.39229118411623826 -0.3289098014281932 -0.25111119511733154 -0.18433337378302972 -0.11611405714397001 -0.018398524911850886 0.12999137480778322 0.3367259486131053 0.5857116828058794 0.8293776289882989 1.029094338540341 1.1445436045041275 1.1455956154624274 1.0543248897925908 0.918307316596538 0.7510567460324865 0.5758152279018222 0.4210406013326731 0.29890191498653396 0.21630952598192438 0.15761706773893774 0.1072141109254927 0.056802845709591716 0.01878497895991456 -0.006624287470555025 -0.026668663249248263 -0.06714228917159058 -0.1238328467948449 -0.15576272857118953 -0.13720563264702354 -0.07749371741911511 -0.014639474826165726 0.014221297518406709; 0.3097158196062335 0.5875250011520505 0.8158499038855573 0.957688272886243 0.9982093873917381 0.918065841862772 0.7461423581759308 0.5112253172860813 0.2464660462598334 -0.009149084113191083 -0.24234635633862553 -0.4304255080761411 -0.56513216867184 -0.6399361555958945 -0.6548906116664829 -0.6109534402655018 -0.5279610848890164 -0.4268788282519796 -0.3351902729400005 -0.23618443392351401 -0.09990296267317833 0.0746495148200316 0.3006293179322642 0.561160528072922 0.8034264161572063 0.9970101270968783 1.1220665569846677 1.1609580499664098 1.12515566446621 1.0438607599207617 0.9237658625544826 0.7823789905197274 0.6440493858963495 0.5279711943306262 0.4506227105978157 0.39582114868933865 0.3414298766157024 0.27721535970998973 0.22345778970379146 0.17965639452242438 0.14520736799435774 0.09576336562935889 0.026907701616474346 -0.021543627910989457 -0.031078952433385616 -0.0023753697706109223 0.03213052593426466 0.033502042358883787; 0.29495487412083277 0.5610631782900803 0.7739999809729305 0.9001270147722352 0.9179973015698124 0.8174282498832957 0.6256125600324967 0.37465491447661314 0.09148224584275234 -0.18917860752827276 -0.45309976083096953 -0.6645320861557655 -0.8076156545396692 -0.8738229380877426 -0.8654619810005696 -0.7934467418171373 -0.6837221144878733 -0.5577630238255751 -0.43072961774832014 -0.2918809545300509 -0.11029932252821002 0.09607977001805995 0.3358973554007879 0.5823973133973964 0.8039785637109296 0.9844467171001917 1.1118567072553964 1.1811898468927158 1.1990168894419493 1.1775421321946131 1.1150020036482786 1.0203441821686576 0.9104506107287598 0.809098488826878 0.7318766586493528 0.674787773536978 0.6051874244784384 0.5169261303501115 0.4393746623357361 0.37709917472663324 0.32998277858320885 0.27415286360769026 0.19744129505520142 0.12117395513994288 0.07114930138693536 0.058992267076952605 0.061200212833413946 0.041072843049226905; 0.27136431203143996 0.516048209848778 0.7034298795187265 0.8061040846010482 0.802123436051459 0.6882898592647074 0.48223867307457025 0.21008492971807533 -0.09932409788325094 -0.40868376316499905 -0.6937426433378044 -0.9136318936420651 -1.0493083861966508 -1.0935724551774846 -1.0500439407705522 -0.940611470130557 -0.7988748442951216 -0.6385898933217254 -0.466763087221804 -0.2827121181634034 -0.06366236776597949 0.17283245738267164 0.4204518542802771 0.6447019952702691 0.8372168027421538 1.0014981220919812 1.129102649753487 1.2245357711776967 1.287388608327676 1.317211838563572 1.3065202935363618 1.2585983053052758 1.1922216590490027 1.1219974682163452 1.054416047162165 0.9838626639686706 0.8908539123608642 0.7709973666725249 0.660502740642733 0.5722679131844335 0.5048863713492774 0.43384749138211715 0.3409952022467631 0.23356061468874548 0.14636855786101832 0.1012398398658291 0.07713188264840899 0.04362839520088705; 0.24169438562606058 0.453704352246879 0.6037665769066646 0.673935914008118 0.6446010481268637 0.5154070169862991 0.29450769589991227 0.0046947312959308655 -0.3244049915467925 -0.6528780259169411 -0.9484776036824609 -1.1624846257430237 -1.2757413573967193 -1.2820261393806498 -1.1932867742521458 -1.0438441591568337 -0.8619983510301609 -0.6625256632965782 -0.44336780264130216 -0.21289662898196407 0.039556914522174975 0.2907609062594307 0.5283824925545363 0.7283993156852788 0.8969532126426526 1.0437393549421083 1.1711167462145953 1.2861384417038029 1.3812900862058366 1.453216266400333 1.4880650480174828 1.4849523727438025 1.4573270922405082 1.420626182611686 1.3690050999060785 1.2918368985806632 1.1733515854901257 1.0201955034806205 0.8608558660374576 0.7306601545563987 0.6277854747820303 0.529084616340348 0.41729828703597505 0.2891906604613556 0.18248852425649015 0.11439184047398257 0.07189119242842867 0.03535455750286873; 0.1998093299134044 0.36989787024066556 0.4801982069475448 0.5175431945840613 0.45870483654634364 0.3069978670026592 0.06639423712078933 -0.23771739670003297 -0.5722915157135643 -0.9029476973517271 -1.191731070185066 -1.3881939884885683 -1.4701567422269861 -1.4346924442025744 -1.2984428977594906 -1.1066824222412228 -0.8773108173865616 -0.6321150660879588 -0.3705365118265913 -0.09584007603857532 0.1826317048047864 0.433085806647881 0.6397993531059324 0.813617853364262 0.9627302557390061 1.100123303359374 1.2329079685481665 1.3645355546555256 1.4806511558256799 1.5800936391714064 1.6452005458760002 1.6763604047021479 1.677040962107615 1.6609816295047832 1.626146361065203 1.5488638962791896 1.4143792080549247 1.2341461752387477 1.0331387459015904 0.8574157553994821 0.7060066993395933 0.5606586351238223 0.4188967623312238 0.2781501494985139 0.16774231818918897 0.092019782293751 0.04734966721988678 0.019563830368421083; 0.15151666444527295 0.26856083109188233 0.327157608424653 0.3181555317900553 0.22484073091910772 0.05894479261657244 -0.1827008198068745 -0.4845708586784965 -0.8116195592967852 -1.1316683079388337 -1.4002198054796569 -1.5638170965032478 -1.608773179544647 -1.5326892961471792 -1.353526380529892 -1.12089891365847 -0.8431895086256679 -0.5470809773919033 -0.24242481275076702 0.059217662633488856 0.3416373922469803 0.5751500131720143 0.7504433604874988 0.8978223502349825 1.026736917491322 1.1539101961581453 1.2906322975437194 1.4337004764301489 1.5716126329416484 1.693896547062738 1.7751732663093198 1.8289319010998335 1.851659697379739 1.8508660140063586 1.8229879435393876 1.7436285588805929 1.5969017704655033 1.3997905379199411 1.1677220710336738 0.9454862646311205 0.7332869305661184 0.5295195330828342 0.3500966952112306 0.20287413644363814 0.10190364072797951 0.03793662413328005 0.011429114614908913 0.002412750849955324; 0.09985404496529303 0.16121607569012417 0.16576933006096872 0.10847183309556138 -0.024116039581986756 -0.20535654271099324 -0.44117312392962965 -0.7253248184549617 -1.0254767810971974 -1.3167718690661219 -1.550413374544066 -1.6765197994607186 -1.6827206711281604 -1.5747814140627638 -1.3580225901818137 -1.0882208008705754 -0.7728581308336366 -0.43403012886138 -0.09185154931930581 0.2273357703096025 0.4973674959627763 0.7066338583699326 0.8501032339948483 0.9697845609038759 1.0762506818437707 1.1960380672424904 1.333372055582756 1.485428622913163 1.6465987242102764 1.7958615916360638 1.8966633035667129 1.9648328422397976 1.9949784239580288 1.9930651034193898 1.9541964211974285 1.8664040189251232 1.7183901917969426 1.5223973593654505 1.2798841620163437 1.020376290291574 0.7553146354686656 0.4990192636119501 0.27997951529999976 0.11646228236133958 0.017381279741717173 -0.03504522096687608 -0.04179670186409151 -0.026178210339085167; 0.03916814986244212 0.04260945212453247 -0.0002885661067140591 -0.09666636330426925 -0.25668725380592583 -0.4521400044381931 -0.6766737135053762 -0.9300205240237969 -1.1884646763029043 -1.4362808803669573 -1.6294569053553627 -1.7177878874263686 -1.687883822177651 -1.5508003011696783 -1.306748266256455 -1.0054457831889447 -0.6661181160128616 -0.308892192373695 0.049834682310377056 0.3746824045216643 0.6337736722296702 0.82176059480166 0.941225518241378 1.0360552286928573 1.1210874307250498 1.2269796440907794 1.3551819078010106 1.5112988191447223 1.69217169506685 1.8689248730733337 2.004462776485324 2.0918775499625912 2.122244043324858 2.1108925658604623 2.054335652641305 1.9511606483670734 1.7963923404706854 1.5979935362567474 1.3553565976826594 1.0766226165682098 0.7743910890386579 0.4800001319876058 0.22232652519467688 0.03754130298772825 -0.06345875382272051 -0.10230737023079221 -0.09387537569744173 -0.056304310106451545; -0.014179032892334166 -0.05656644452747889 -0.14080903640871656 -0.2706122002676759 -0.4480990263200105 -0.6478151739704746 -0.8563940769984909 -1.074785792129266 -1.290214047696972 -1.4886608572676514 -1.6332214130010527 -1.681580031870759 -1.61164975827912 -1.4450682475801853 -1.1862678898583698 -0.8692403450125641 -0.5180310559262441 -0.15466027887485162 0.20039295274312696 0.5165269846736035 0.7576813969523675 0.9268808157608581 1.0300238609576897 1.1071609339940602 1.1708658834903094 1.250511681318051 1.3584344535099648 1.5211819200003736 1.7223571583796955 1.9254862853615695 2.0967698188832458 2.2049838434140656 2.2341152381043496 2.2098887205304427 2.130360318599659 2.0043806085595186 1.8324631968767398 1.6203322176808304 1.3772507782074046 1.0927772722497702 0.7740985645108812 0.4606150005311603 0.1827068462259411 -0.019001358044790317 -0.12682832934333485 -0.1618519421543957 -0.14379341037395982 -0.08596996192076482; -0.06455567699113557 -0.14002912768003778 -0.24628628950557838 -0.39571559225754543 -0.5759748802019694 -0.7752137627566453 -0.9710017648111954 -1.1622876979918897 -1.338186247316851 -1.4809181361040908 -1.5678298666781971 -1.5694775465557949 -1.4616907833613866 -1.2640416234224015 -0.9943304189012055 -0.678567437793285 -0.3333396903600825 0.018777653193005943 0.35343059934097315 0.6451914327963169 0.8647088459159574 1.019190210909093 1.117288976586636 1.1899355193256147 1.2447972529140445 1.3051879355435507 1.3888286898375677 1.5420770732899696 1.7441720727549808 1.9538650445656984 2.142982949060024 2.2688098642002545 2.3110597687468 2.283831729666883 2.183667205608693 2.03216862777808 1.8381170371241764 1.6034280733870243 1.3439535057363121 1.0525318789591949 0.7292619787750511 0.41721759554618243 0.14090674926804497 -0.058907575442257935 -0.17311642998376023 -0.21093469350427885 -0.1867807137677381 -0.11019657359089136; -0.1110156068311687 -0.21249395989293954 -0.32458084949209054 -0.4680796605286751 -0.6375497255795076 -0.8299255158752085 -1.0159781163970443 -1.1835952202817017 -1.3250297954109431 -1.4195219204136402 -1.4503092717660657 -1.3997548179578614 -1.254029100497356 -1.0244187738696218 -0.7419591951289779 -0.4325657360049756 -0.11390633557799437 0.20382580745252335 0.4958744035447551 0.7497200181322188 0.9420487167336049 1.0826484148538886 1.1783233807168874 1.2496728401349706 1.3054226704989786 1.3600140213409393 1.4273513432552516 1.5560862794385002 1.7379052602028433 1.9415458888010362 2.1315268470225917 2.269262163350867 2.330499124412555 2.3109607335381073 2.204888515191121 2.036437282775007 1.8180327128817684 1.5535259062294438 1.2650252729374762 0.9636565438568706 0.6522211344576372 0.35678557131065036 0.09854139950343425 -0.08868182492220587 -0.20286185441496105 -0.24379665458001717 -0.2144928127314663 -0.12624428613837865; -0.1370670373313835 -0.26068478609474655 -0.37657499847509895 -0.506576842564951 -0.6591376626294961 -0.8395613101448163 -1.010710474679216 -1.155828516072024 -1.2674647154885417 -1.3248497490760507 -1.305878414057735 -1.1965435163136577 -1.0061188769271998 -0.750441894187369 -0.4635857112831035 -0.17241190758825942 0.10978610865407225 0.37803329461805213 0.6189718526735194 0.8242293025845782 0.9772376136048726 1.08895259451878 1.1716042770397015 1.2356244620483277 1.289730276155437 1.3477386697936586 1.4176757121836698 1.532799735598489 1.6963158162295302 1.887626620536325 2.0650542693754486 2.1969014341595035 2.267023926914168 2.263269726754492 2.1790824094046957 2.019487123604598 1.7862987512614676 1.4990557005653735 1.1809065407736061 0.8684567175514301 0.5698666032461058 0.29777671802082223 0.06131145147412175 -0.11232816030667857 -0.22670571841747433 -0.26926716591302624 -0.23809482176609378 -0.1415882772706165; -0.16354548953109235 -0.30498990290273953 -0.418394688266766 -0.5257662173011552 -0.6534348354189253 -0.8071740429367095 -0.9572710316098034 -1.0812894809787796 -1.1656422885813276 -1.188841525225962 -1.131343194936611 -0.9793725293395694 -0.7577680510389462 -0.48680719233962055 -0.20904590803325457 0.058431764129025135 0.29678216238028515 0.5075730836177595 0.6874618839751148 0.8330857367740386 0.9326671544457652 1.0033145061724988 1.066302841570054 1.1256051071046647 1.1852515174873923 1.25330471561991 1.3397562252215882 1.4561387535970243 1.6055604563456445 1.7743763769511192 1.9295937226187159 2.0500152066276582 2.1276023947562863 2.1455266868949163 2.0953806365852854 1.9593179348795047 1.7318175624265586 1.445768574529634 1.1225494032379864 0.805202681170149 0.516400294535915 0.261348965016746 0.045020701263779224 -0.11940040033001205 -0.23046875678375775 -0.27087427494425403 -0.2392814305952244 -0.14226332251212184; -0.1787693637398371 -0.32666645096115826 -0.4376458355294851 -0.5346699190590072 -0.6421587038011689 -0.7610364863718141 -0.878706619757197 -0.9767778828612474 -1.0316608154612723 -1.0231705702073213 -0.9382677013896057 -0.7653371095863584 -0.5302395079344303 -0.2579901247898659 0.003059616220205134 0.23699586463835956 0.4302852155062802 0.5808104434766719 0.7010021418575968 0.7860701502543376 0.8357892246033264 0.8617476723210626 0.8908364386772717 0.9312373686598889 0.9901734504626061 1.068925224072428 1.174143646188295 1.3006144246480775 1.4441532905034522 1.5930951383423189 1.7344935204819831 1.8531355729462353 1.9427800718777772 1.9830281704486217 1.9627471332235011 1.85997820003767 1.6592375252849345 1.3963476648174284 1.0874860555299135 0.7838445808792193 0.5078592166328977 0.26895151732511596 0.06294371180715072 -0.09891133022682728 -0.20822248685161143 -0.24669984965284014 -0.2169503812355804 -0.12673446635807104; -0.18190728917621612 -0.33314123957188785 -0.4495796682076632 -0.545495642673795 -0.6344537273959232 -0.7132938169024678 -0.7868498720431506 -0.8419353304758087 -0.8662588430187378 -0.8353568005036925 -0.7385942802108115 -0.5611540120108102 -0.3314608230273037 -0.0747614811598953 0.15391165506224638 0.34781563092885215 0.4955313978948416 0.5978246216691705 0.6679376878693711 0.6999921317145568 0.7041314144110504 0.6869705538332846 0.6748810684671389 0.6856030754603616 0.7346037777182225 0.8173112326795379 0.9324488991384758 1.0656980833182341 1.2104852599310072 1.3508043436622745 1.4887809601174535 1.6116461166656302 1.7189141038230764 1.7873945983043942 1.7987728278665156 1.7364801452573237 1.5806693239116023 1.349394588769994 1.0691701026517295 0.7881455129151667 0.5301958519420908 0.3000468482000908 0.10316306553201642 -0.05346086332861722 -0.1551542953917502 -0.1945811871903654 -0.17477594781370695 -0.10164542539106323; -0.17979232063876363 -0.33634457040573507 -0.45924415913258987 -0.5498861482391072 -0.6172530327276079 -0.6634466737679461 -0.6975158337846266 -0.70769911897424 -0.6983015669316494 -0.6465275013923075 -0.542298138071258 -0.37304499313054207 -0.16467455513548676 0.06348100026022618 0.26123375648782604 0.4162967988942259 0.5202970978682704 0.5748305302726198 0.6011918306583995 0.5881740208165696 0.5521467469014202 0.49547566505881935 0.4465441121376201 0.42694337974589286 0.45536858367382294 0.5271432320572869 0.6359179626302429 0.7638459465404464 0.9073422607192919 1.0500296208908204 1.200956742174804 1.3441890287193006 1.4783481478616478 1.5799419810692001 1.6164912709723716 1.5872083455086448 1.473699943647971 1.2876911530727804 1.051364466210564 0.8104563826617514 0.5738514760287574 0.3564326779324329 0.16717104875074065 0.01815877565990518 -0.07922611081338994 -0.12364347604254886 -0.11819780563570222 -0.0698563749777983; -0.169073106008963 -0.3249049552013737 -0.45394978973315964 -0.544323955939586 -0.5999285295166198 -0.622315564848797 -0.6254660234617285 -0.5993503298659194 -0.560891041626384 -0.4839456262711111 -0.3690482962670009 -0.2116556286415052 -0.03288359652587607 0.1599875796347336 0.32507257167105336 0.4433279490008559 0.5041895659024961 0.5131790605894492 0.49848599487627027 0.4508372643592079 0.38276072813504847 0.2915792022761501 0.20958003834388733 0.15906318406363118 0.16022036407248247 0.21159622000760298 0.30848746335209926 0.4314517189556781 0.5742564628962425 0.7272313347327489 0.9029135696253281 1.0776372002867933 1.2397712058073749 1.3717085367366244 1.435688446032062 1.434592083739258 1.35999160601096 1.2163566016585152 1.0288778685995463 0.823925050220884 0.6184947836725444 0.4223999257804061 0.2515519508613995 0.11035171057304617 0.012583521287384599 -0.04179117901590379 -0.0535645929028397 -0.03332902219234102; -0.15984149190203342 -0.309482886120032 -0.43681497968754673 -0.5296534401558614 -0.5851626216845142 -0.594810599508227 -0.5745514072492267 -0.5246338850953426 -0.4652130185740706 -0.3689985290759095 -0.24379772501755728 -0.09181579584319007 0.06694414774197162 0.2273033266869898 0.3561280039542159 0.4366392932208751 0.46246237693618525 0.4319369315966261 0.37157160235126063 0.28477861120454107 0.18469096090944528 0.06587928665803211 -0.04201492862348623 -0.11533835725539664 -0.13309364905839177 -0.09869069338575004 -0.013916865631646371 0.10393050763631148 0.25099556560824304 0.42125702263710985 0.6252881633217432 0.8318446687124509 1.0152046868558442 1.1622517227298026 1.2454821044927473 1.2724339398874833 1.2337771325788005 1.1375152289690744 0.9975344690333382 0.8361321757864947 0.6661841217062517 0.49636798189618386 0.33618089604246004 0.19939628898746653 0.09851345984137715 0.03280445445234841 0.0021833717565529053 -0.0040463365926822785; -0.15495287831640744 -0.29759290132809046 -0.4181201765894542 -0.5080245525016298 -0.5663065238928556 -0.5798416157437916 -0.5565227056402133 -0.49638935786999067 -0.41637729313710176 -0.30018200913934084 -0.1642152793712122 -0.015682391138964136 0.12900609505901167 0.26142501891008724 0.36095561741044246 0.40947359247440024 0.40630157686918184 0.3386561797289412 0.23335623361528557 0.10851299678447092 -0.020978886614101803 -0.1599426321221024 -0.28670277089610935 -0.37785750702626836 -0.4054598864199345 -0.37780899816688185 -0.3004196009985301 -0.1843861697233519 -0.02871005683761658 0.1637950990221794 0.3903369527645453 0.6216503295064166 0.8211434486028459 0.9701877386803237 1.0592529096116727 1.1007124577751668 1.0946818355297758 1.0435817453010725 0.9586660749571841 0.845968528084441 0.7178959488861075 0.5696190072923425 0.41783665557359156 0.2840496971453139 0.18010508359683017 0.10150817786405833 0.048826466927265985 0.016946933187012573; -0.1529848809048385 -0.2957110555292264 -0.417572690732681 -0.5063722733982186 -0.5611215736967807 -0.5783636650701255 -0.5577805070231188 -0.49341400969952137 -0.39483231658732754 -0.2617250721658054 -0.1183450285520608 0.023050780739860922 0.1509785834410101 0.26337450691813424 0.3500396374840168 0.38429711081676726 0.3555565583825284 0.2555759705425875 0.11377434266422569 -0.044239907823078614 -0.2072848330247614 -0.36669974705311065 -0.5064573112863401 -0.6069879136841975 -0.6394120026948986 -0.6133955470191796 -0.5362911430910992 -0.41742193945276046 -0.2528142708979897 -0.04394253718947998 0.19199688184883434 0.4280802664346722 0.6318655146932342 0.7793007985346626 0.8751302690920452 0.9292991391155755 0.9506867268870217 0.9440169473904982 0.9062446236989377 0.8374754897689779 0.7382807203210674 0.612206569773035 0.4757121991543101 0.35381298673738143 0.25064548290983263 0.16243677303212503 0.09337984887336985 0.03791382479523383; -0.16326085758525508 -0.31078086378459086 -0.43248492330254595 -0.520791334574588 -0.571275088703147 -0.5886044669722295 -0.5643604502452795 -0.4952375569298035 -0.38634623195314083 -0.24700828710434236 -0.10093252567742864 0.03191877204268266 0.14530948546255829 0.24239016636899885 0.3273638589821104 0.36061195002784596 0.3194869242063449 0.19710759518766832 0.02817107311588977 -0.15928038774199008 -0.353720424679457 -0.5289927087759279 -0.6731828939465673 -0.772783245382131 -0.8076753611402634 -0.7889388021420111 -0.7201407530087631 -0.6050113784509427 -0.4400860939800894 -0.22152552849210358 0.022278122611912407 0.2580328751581698 0.4554615460850109 0.596692281061703 0.6973748144066177 0.7624578913032595 0.8079542265259451 0.8373352608418214 0.839923887135619 0.8047135007801965 0.7302701768115494 0.623127445953185 0.5025941235286239 0.38894501255283964 0.28925621410600916 0.20168213420917427 0.12806832758440378 0.0587616176456065; -0.18401793416782014 -0.3359803192460576 -0.4481801236122253 -0.5271035611436582 -0.5738612016144164 -0.5912707192842439 -0.5609096654860806 -0.48624568253832795 -0.3697823806881253 -0.23376146997061803 -0.09726930424671239 0.019967461444203794 0.12257281147101556 0.20912913007865042 0.2866963966424965 0.31854758687582463 0.27190880346838303 0.14011603291144392 -0.04643048715392903 -0.25149685534256 -0.45874040531302046 -0.6361957763314803 -0.7778570529317417 -0.8680595736002937 -0.8993316837468861 -0.8842832477286848 -0.8281894270205508 -0.7258994600920702 -0.5748625308806623 -0.3684720809908019 -0.1328165643810258 0.09492392572469519 0.2858253816364383 0.4213503591583588 0.5267417856251276 0.6060221526311869 0.6713383424991076 0.722330081897487 0.7453102376705019 0.7330912693511743 0.6780400587529061 0.5960903037660417 0.4968645887745773 0.40257944866254436 0.3181968616900269 0.23627655677768966 0.156965761437621 0.07526905010880666; -0.1940835803462383 -0.347818777945964 -0.4501086364114813 -0.5152659795962587 -0.5489726125681088 -0.5594676836959215 -0.5267387116436203 -0.4542386456233247 -0.338313777633648 -0.21236363863451593 -0.09498894513157896 0.0005979724083920847 0.09146946186551012 0.16931362566493466 0.2355931621404567 0.2611417965028987 0.21115915439322805 0.07733136509790552 -0.11382499868608065 -0.32087943516786027 -0.52307366418889 -0.6898818933533899 -0.8216933369890231 -0.8991956201170627 -0.9234815612482673 -0.9054018339231537 -0.8579143527771532 -0.769546265079206 -0.6341763046179199 -0.4525594951023076 -0.24329732828290462 -0.03783883582663792 0.13981082857420765 0.2727238417966342 0.3806819245662701 0.47606507034891415 0.5547416325538672 0.6094252490925596 0.6342414507225896 0.628089066476813 0.5890730084560696 0.5313641252824582 0.46111447864827243 0.38980970285588945 0.31862142107379654 0.23702097225076924 0.1505156559127256 0.06938131107375502; -0.1911079958214496 -0.3377047883622222 -0.42911767036517945 -0.47869369198412764 -0.49697914559708195 -0.4994036503487747 -0.46776794802115224 -0.4027232014941666 -0.293888740204781 -0.18116877318612964 -0.07370273666772646 0.007347301280159354 0.08257146511658238 0.1430460455587186 0.18900912417988563 0.19707460983511488 0.13540267676737816 0.0025458446880237905 -0.17520350413242372 -0.3629258888481846 -0.5392746879937741 -0.6761367284939819 -0.7799668349046905 -0.8332991024472536 -0.8477388407432124 -0.8251990906145386 -0.7879909454663171 -0.7205797626181448 -0.6122628211682675 -0.46698644455017657 -0.2956602407126892 -0.1278936894946801 0.028892407690534617 0.15945141761067777 0.2733875974778007 0.3782753778713846 0.45796051433777113 0.5031312382519971 0.5187335740773019 0.5127930147592088 0.48382145110218744 0.4481483761376484 0.40423399213953326 0.35557505658191024 0.29377434119560897 0.21384478264875403 0.1293513130480024 0.05669880142374603; -0.16917310114356718 -0.2903200580880402 -0.3571662538365709 -0.39031133633442167 -0.400482060639951 -0.40432234213781165 -0.3789620509207011 -0.31947704142557976 -0.22566319834869383 -0.1329017159403189 -0.03803041932976232 0.030751855058008072 0.08692928706626007 0.12957750005044227 0.1536695502629995 0.14135195452789917 0.0697296600686001 -0.05244731494247322 -0.2015569654938354 -0.35236775643358437 -0.48831106930833873 -0.588768597672866 -0.6619584266546954 -0.6916794474638918 -0.696907249689412 -0.6727744017983354 -0.6414973614596603 -0.5931817162256461 -0.5148848316069867 -0.4094789463620975 -0.27803625680526545 -0.15340114022924645 -0.030707315363983675 0.0869042972937209 0.19477639135302485 0.29599950145404813 0.36664418552826067 0.39937907806803147 0.4032494451065591 0.39149495359494485 0.3682077209041086 0.34840674475963335 0.3274701961124465 0.2967734562149009 0.2432822046149068 0.1694325525818461 0.0953432708997972 0.03861372107770447; -0.12843972128856843 -0.21640906371698088 -0.2616582983587689 -0.2811206283083045 -0.28327072561801686 -0.2853350733250957 -0.2668257265584777 -0.21930971621595666 -0.1465822979885941 -0.07634405072344103 0.0012143348030488686 0.05387021158469065 0.09341091019986364 0.12081093841028762 0.12564392822323997 0.09638021105479919 0.028689802296683258 -0.06932042738943056 -0.17886545734822865 -0.2817833819402578 -0.36690544632570016 -0.428136981345435 -0.4714541816512122 -0.48008546292868465 -0.4780961712232535 -0.4604356263576244 -0.4401526070255988 -0.4101012868800619 -0.36391771125021866 -0.30008397867753217 -0.21320130468980125 -0.13378907218905614 -0.048705671430746576 0.04128182201338353 0.1287256038054212 0.2107731035298306 0.2674338070902596 0.289782061293993 0.28501588971187874 0.2684004938329505 0.25042220606753474 0.24415237638595522 0.23812677182106962 0.2180297668142833 0.1747297426393779 0.1138994101479436 0.05679875843320764 0.018745350634206234; -0.06729807942689403 -0.11476447026620998 -0.14003683768536998 -0.14935358420047903 -0.1452273077461926 -0.1433762144218853 -0.1354570955068539 -0.11289636915111555 -0.07526529224515967 -0.034605921600953424 0.012373997790445916 0.042811982949609015 0.063416994324311 0.07650403135352617 0.07199586204700008 0.04858133576088213 0.009334370169526436 -0.04288994103680366 -0.10108189557322773 -0.15292363552996788 -0.19375938980669163 -0.22503209477921982 -0.24752373652185725 -0.24771465782366148 -0.24380462745417933 -0.2345243356528883 -0.2227565728192069 -0.2055169160348409 -0.1827497165203652 -0.15548160298150085 -0.11627497841446321 -0.07970034426453142 -0.03434863331062915 0.018672975760753024 0.06968135541356453 0.11588129831832532 0.1456980331899014 0.15486631435302284 0.14739293864525882 0.1348255033557543 0.12545234047664136 0.12640957833814992 0.1255849903081732 0.1140480051127527 0.0897163020468167 0.056447258742937316 0.02526315306508892 0.006119782069209299], hyperparams = 95.68692736389875))), instrument = (lgR = [0.13873744688789771, 0.13867587580303456, 0.042664649819608436, 0.1647055403724984, 0.20877292801078715, 0.1005902283519436, 0.059719690771735265, 0.15953935644914138, 0.10962715184755438, 0.02308478037577736, 0.13207164233343838, 0.07885769736731829, 0.07375091656744409, 0.15188395556225812, 0.07590643748390594, 0.05286481304480498, 0.1290921760389648, -0.03794537176239952, -0.11529143063112231, 0.08298150252143485, 0.22208756810265126, 0.08862239101257541, 0.040431831701024636, 0.0021565570803084256, -0.2538476117303457, 0.10663321786456571, 0.10237630782176192, 0.13486483772199742, 0.01252270269074727, -0.21948291252480656, 0.05840785834423638, 0.05227388815763036, 0.08512824380099825, -0.359484335068418, 0.13346775325746274, 0.07208482008149882, 0.04110545147727677, 0.07444186337405963, -0.307646519419434, 0.08300831845665099, 0.05710762788686321, 0.11621752539633981, -0.1997784264167861, 0.16278740837452255, 0.08583629292387848, 0.0674089789209481, 0.09245720290074656, -0.19008435618441114, 0.20036968536227717, 0.1110637220241777, 0.0789576509275871, 0.09982459250680348, -0.5001748786288372, 0.017342090401909645, 0.21497665874326094, 0.09701446489850181, 0.06074600179662531, 0.13055412357611404, -0.386305446978643, 0.00014983101885151696, 0.2318481497443753, 0.10880542373770721, 0.13760955371325834, 0.1335036893222835, 0.01748049975197292, -0.22754955749186423, 0.2857586119534252, -0.06982212474552149, 0.11001995202257979, 0.09673571411576985, 0.1438354307724803, 0.16530744307276946, -0.2943540949309506, 0.2824249705569035, -0.05614224789017031, 0.10464310345709753, 0.07570334198449324, 0.19330943932478684, 0.2774169053342335, -0.15623906596529866, 0.10982481614233429, 0.10297729459686211, 0.07835584043475241, 0.22281792714564636, 0.29927432549150323, -0.9325250175377683, 0.1780802441131838, 0.11822499003881078, 0.07001068346718377, 0.20087854993895207, 0.33184989729744896, -0.15500421999955596, 0.14664226000597966, 0.1258796092882746, 0.011990432873390515, 0.16187884464361052, 0.3936837211006682, -0.07719865902284792, 0.23743383684448904, 0.1043375077486798, 0.16157089928629173, 0.4464577454542084, -0.2777853156098558, 0.25037541731272267], lgrat = [0.02612078541159355, 0.022367429154527947, 0.03748431663281597, 0.05426931354821225, -0.0003379482621823106, 0.028461635948675696, 0.04735719282138819, -0.00998353057134035, -0.014342137240598157, 0.017660302948278153, 0.06183772778357298, -0.0012244782550917695, 0.02203249897831047, 0.042699302085215086, 0.030836196497337837, -0.039370778814981924, 0.02262796430434177, 0.051241666335734445, 0.07804036225929507, 0.017104467662477287, -0.012393704322417437, 0.03377043344864185, 0.025392502773392528, 0.018797678764924833, 0.04529566780487234, 0.02147277495241342, 0.0174954192988214, -0.008805607664939683, 0.05258445768309106, 0.055713369743094605, 0.026820085873982845, 0.00891653104382862, 0.03661416693150538, 0.05254197140970789, 0.036658832604688656, 0.002232900207754935, 0.0024266847955939654, 0.047982889321576634, 0.05939411035646482, 0.0005905156791956467, 0.05965534502555524, 0.038820563273683426, 0.04904781484638424, 0.059657073166257596, 0.01864588803258101, -0.03429054556053854, 0.05185190322718405, 0.06714033919843902, 0.02315472179012945, -0.009852612115755952, -0.04845317035734052, 0.0457999493921294, -0.12568520082083545, 0.04331493791038236, 0.06281589391097543, 0.0001987180551815064, -0.004778321413514932, 0.04770339079620585, -0.09973542066899306, 0.04543506703973181, 0.06141416331783643, 0.007779723322883721, -0.08942377489366256, 0.051162904226779764, -0.008269304914474607, 0.038432498904875795, 0.03855103438577453, -0.12530263956823157, 0.0008976124718489937, 0.004564734024207419, 0.039941053909883124, 0.024718553869380128, 0.0802312267823461, 0.04281916747361256, -0.0703647596020348, 0.0186666601664134, -0.02047912552385917, 0.021382074503227374, 0.036575982526903514, 0.04374072637819814, 0.03226842351654654, 0.003400451938225948, -0.07506586893097664, 0.013050137921455079, 0.03342777730202878, 0.04216376643602573, 0.004671788850470471, -0.009616501886043004, 0.023997728210307868, 0.04188379226824938, 0.038626229567387295, 0.059482412251633775, 0.04267130628905009, -0.011642261589472753, -0.013212461193239699, 0.05404579774415803, 0.053182711720703636, 0.06765347360332218, 0.0689552720996745, -0.003902530397608656, 0.05729551272733869, 0.06978986320610954, 0.03376761811828634, 0.06448297965017244], gpR = [0.0, 2.80788775373378, 0.0, 0.6474004790709516, 2.6987040601645043, 0.0, 0.49572052263012367, 2.5979988224196826, 0.0, 0.4073175071129365, 2.343536927207081, 0.0, 0.40227534770205386, 2.205071807890163, 0.0, 0.43310635119296853, 1.9606810507629804, 0.0, 0.36721840027478087, -0.7638607335777762, 1.8352906027701805, 0.0, 0.3369584193641795, -0.9890288038444329, -0.20637383601222337, 1.5560613389550948, 0.0, 0.26389714663573044, -1.0017621718158893, -0.18545316869020298, 0.0, 0.2559036454878256, -1.239845462405167, -0.14306618318726572, 1.1392659617769296, 0.0, 0.1519649993038275, -1.295404722606448, -0.189538316659382, 0.0, 0.24888856449418578, -1.445393693711758, -0.2580236820186666, 0.6933184494247275, 0.0, 0.20608383763056054, -1.5464750999194847, -0.29883430046835807, 0.6100587358571901, 0.0, 0.266959341407027, -1.8257185625386416, -0.5396188958066263, -0.43302705468819425, 0.27241550031171213, 0.0, 0.20912275359064225, -1.8646103721179894, -0.5471776145636932, -0.5253127004929369, 0.1443677825172725, 0.0, 0.22469752267783, -2.10021906808244, -0.6133533136906192, -0.7648003581241689, -0.12124340679711924, -2.553775399623814, 0.0, 0.2613560523347087, -2.227258252213759, -0.6337124922440922, -0.862564140799674, -0.22213667985178912, -2.634385448633814, 0.0, 0.28440845327460185, -2.7251685495370235, -0.6318244128989946, -1.9287969074534423, -1.845161675289246, 0.0, 0.40044363954408585, 2.9826091962050056, -0.6083515055052675, 3.1331820607820595, -1.0452200354653105, 0.0, 0.5344490299566591, 2.3406001790852042, -0.5509923221033387, 2.371860670515807, -0.05946509435452804, 0.0, 0.6595533541804793, 1.903863936341183, -0.5424343876152227, 1.9468529292550696, 0.31020834154925425, 0.0, 1.731755846935815, -0.45690073197139164, 1.8249090073211016, 0.5561865704076636], gprat = [0.0, -0.04902859972701634, 0.0, -0.08056656305913183, -0.04529884903496568, 0.0, 0.06904834063779257, -0.038602106356258714, 0.0, 0.05643560458483346, -0.06396751372061138, 0.0, 0.05878920685149526, -0.032551425882980406, 0.0, -0.07037057649605438, -0.06920835336716415, 0.0, -0.050759687001270454, -0.045822632374191104, -0.04681384196858338, 0.0, 0.02484176004587874, 0.03741143421280325, 0.040840477827758306, -0.05782047833610302, 0.0, -0.005433762576598265, -0.017539468711206787, 0.025515145633240033, 0.0, -0.051504400010016674, 0.03328160863681816, -0.014369106178940574, -0.05664294408033945, 0.0, 0.018476030218998726, 0.004659457950232543, 0.024508594514424904, 0.0, -0.05523383445185849, -0.04012743060266946, 0.030261742408710778, -0.036002777893884556, 0.0, 0.030174797339484628, -0.025709289460900085, 0.027146819955483067, -0.05826029719715185, 0.0, -0.07302785546464285, -0.016494629093577122, 0.0015108261023385734, 0.01770835258196477, -0.03951577349381416, 0.0, -0.01238401876148852, -0.05357201070510542, 0.004700823970755479, 0.05630448680541638, -0.015093221947527045, 0.0, -0.013996967357520939, -0.0892458156282134, 0.0009131415366507278, 0.0653373981835525, -0.02368338289912587, -0.655177252051875, 0.0, 0.025455895427787544, -0.05219115329355196, 0.0018307132094100517, 0.05404997965624865, -0.02957904842626733, -0.24314548738863417, 0.0, -0.005909762069364374, -0.07440758826333983, 0.019916440801720055, -0.013411526148663372, 0.23255121240677107, 0.0, 0.055781702763750204, 0.057950287894116576, 0.01492731470355445, 0.013961253414236851, 0.1697338886453307, 0.0, 0.03993419560527962, 0.1789653484943773, 0.012099628268094194, 0.015058256824331954, -0.1204472774258799, 0.0, 0.06633308765346886, 0.1985987806601055, 0.013210787188493956, -0.011624905997252551, 0.03985260667354685, 0.0, 0.17660592105952833, 0.00828173825627132, -0.007501373723260695, -0.028989061688281637], dRx = [-0.010824731500294959, -0.05391450335010085, 0.03060420421757431, 0.0005675071606143261, 0.034720615728814526, -0.11211645831825322, -0.03896739602659108], dRy = [-0.04050022603242034, 0.037926089068212036, 0.08777918182336464, 0.0007296415127728724, 0.04312115673739187, 0.013567489298582324, 0.0003580177030829035], dLx = [0.00852672735889978, 0.019179619086284776, -0.025559643194598653, -0.060279984599293915, -0.004717045948331756, 0.14585578889245301, -0.04302172474836201], dLy = [-0.031986885165784594, 0.03735637503930742, 0.08807571542885825, 0.05387271399935864, 0.008608281025169391, 0.00941927596539451, 0.05928748531852142])), retcode: MaxIters
u: [1.1159698827426545, -1.6634501353485913, -2.600742869811486, -4.085713266144277, 0.008171408855523574, 0.017730865316467833, 0.024919820234247835, 0.025477425005829158, 0.023631531550039088, 0.029556990113275575, 0.043618893547575525, 0.059117139710552526, 0.07100343635370189, 0.08117533569924977, 0.09835785371273092, 0.12898630108635376, 0.17126218920858371, 0.21724943130074406, 0.25783103944874525, 0.2902476406911756, 0.3171023866895751, 0.3430687390444336, 0.3715195485848025, 0.3999556249930608, 0.4213222035929786, 0.4296154960827328, 0.4223243821896217, 0.40162321230182724, 0.3681030589152062, 0.3241495846982554, 0.2789654870044925, 0.2397695869595736, 0.2015240277131403, 0.16365829329366635, 0.13391351117521866, 0.11408438205683245, 0.10154165869378895, 0.09736826293474038, 0.10476500735801843, 0.12319646318783146, 0.14370518651972328, 0.1564159120074869, 0.15540008656347945, 0.14220286004792015, 0.12541638325524868, 0.11037903297982676, 0.09536760507089025, 0.07879169070570759, 0.06283608300845119, 0.04963331322161621, 0.037054606562244484, 0.020623581017298248, 0.016004390740642818, 0.03383150312904154, 0.04608738840818408, 0.04927121174988656, 0.053849017786203525, 0.07191452905399587, 0.09769672335775612, 0.12115046996143526, 0.14221332715377966, 0.16981954260144408, 0.21431542623612615, 0.2786225161934612, 0.3576679458618013, 0.4404205002480074, 0.5139387444192985, 0.5749446622842571, 0.6279022944922641, 0.6810781804185189, 0.7387842267946, 0.7957443400022288, 0.839073090599035, 0.8554759981603569, 0.8386008059532541, 0.7925786434856135, 0.7257880049161906, 0.6460241845908434, 0.5640548280109864, 0.4913712580845629, 0.4252627493831295, 0.361845670539284, 0.30619737555606397, 0.26191521011050983, 0.22893685313899467, 0.21117047472222972, 0.21195440651820804, 0.2310428945134944, 0.2577971098868735, 0.27839420593511166, 0.2831792439197408, 0.27211227637212654, 0.25270639886705026, 0.23037588436164805, 0.20375853619671483, 0.17173633601633828, 0.1378624504335596, 0.10688604854508382, 0.07720028759376654, 0.04200114110087425, 0.023158394412347707, 0.0485523221422408, 0.06561853040298296, 0.07535235274025896, 0.0928599216102834, 0.123969796522103, 0.15692810862055115, 0.18572368541733092, 0.22012473210667244, 0.2740676509479732, 0.3511788698715367, 0.44659321194453033, 0.5540075879409211, 0.6605756297410528, 0.7544246487997521, 0.8366968011119106, 0.9141286649024634, 0.994930540970887, 1.0803584770429437, 1.1609040626472718, 1.219954506928028, 1.2401467945736635, 1.2108622015871202, 1.136154032146463, 1.0361883713898683, 0.9309134677373038, 0.8287405905258489, 0.7383237614766155, 0.6605460821990401, 0.5874647214824867, 0.5156814966264344, 0.44896031096880545, 0.3906955474564243, 0.3485661670017394, 0.32638698124949167, 0.3251269865739713, 0.34012223545578996, 0.36157241964084696, 0.378669429921267, 0.38413074151087395, 0.37592148534098885, 0.3554011638847563, 0.3226858666965495, 0.2779850341984389, 0.2259916261589955, 0.17364935462780487, 0.12212694637818775, 0.06492317268946245, 0.03114088726320978, 0.06376995539943603, 0.08762116929871151, 0.10784889113649941, 0.1380039994670894, 0.17672423995654923, 0.214574135409046, 0.253954057820569, 0.3100062245614059, 0.39291764791446493, 0.49735427279930894, 0.6173959272021992, 0.7452975447972887, 0.8630378552728447, 0.9643105387439123, 1.0584895183236633, 1.1541559489118733, 1.2560149297833496, 1.358541447491753, 1.4469825067014823, 1.502836243516337, 1.5131273911501093, 1.4694104583186833, 1.3746288546303047, 1.2546913443996468, 1.1416301978013697, 1.0413088928661123, 0.9531999256987257, 0.8772001648720885, 0.8052621218048907, 0.7284977746927386, 0.649814340024132, 0.572200177957213, 0.5037502058964525, 0.4518444520797342, 0.42136573754568674, 0.4138152572568358, 0.42776343116610116, 0.45434777547641686, 0.4780464020521119, 0.4843734761577407, 0.469010748882355, 0.43329193002650224, 0.3805072053719078, 0.31570785983884564, 0.24499888603728873, 0.17074264857426594, 0.08934409856840392, 0.042370441288723616, 0.08152337133306432, 0.11371591983017074, 0.14683175442229052, 0.1869639489606505, 0.22992466969262476, 0.2738638345671002, 0.3291494972235867, 0.4105449873218944, 0.5179053581858679, 0.6421440604432953, 0.7814704184589009, 0.9203844474944852, 1.0355957439710977, 1.1325247249160233, 1.2272618645860074, 1.3286607826268186, 1.434936906392348, 1.5325854587580008, 1.6036653061495063, 1.6315470999223343, 1.6115797743306866, 1.5508095413094283, 1.4575884741881084, 1.3509771392428482, 1.2594926738390853, 1.1842255256222327, 1.1140647502988545, 1.0461199138589012, 0.9775695454405747, 0.9021728197475835, 0.8226972991870374, 0.7410115068688925, 0.6595679914512451, 0.5874471170276938, 0.5345964816586779, 0.5052213291446024, 0.5019623975804403, 0.5223541988857154, 0.5512936873474028, 0.5665640235240739, 0.5552927062849917, 0.5178755832863413, 0.46129466382991696, 0.3912097643616349, 0.3097114183664307, 0.2171554604877856, 0.112968857430795, 0.05657812022225638, 0.10289582905378057, 0.14488306178846036, 0.19208462480088798, 0.24252662545313447, 0.29145903278367546, 0.3437320091601233, 0.4160072322564941, 0.5179761086722063, 0.6402142304155016, 0.7783317204802926, 0.9307020202091006, 1.0671105827130065, 1.1667920932848066, 1.249489770322191, 1.3337153136153552, 1.424309767872949, 1.5107791913640025, 1.5729119656490937, 1.6000633724669082, 1.5848726187666498, 1.5272807305080272, 1.4545344888215097, 1.3881703740890108, 1.3296616734581783, 1.285566524390129, 1.2521496001441883, 1.2102981198896063, 1.1504480144012628, 1.0774742755876883, 0.9973573750989584, 0.9203323647045423, 0.8508042268314737, 0.7828836599393653, 0.7164878373650291, 0.6608487250181816, 0.6202451613028968, 0.5957761539458812, 0.5908967949724965, 0.6039999868581629, 0.6169591999677536, 0.6095062249482921, 0.574868787911298, 0.5187048833993779, 0.44721213865471143, 0.3607221901436568, 0.25627299375334806, 0.13393492580618233, 0.07075679078763393, 0.12740879987031903, 0.18163363205814653, 0.24331378960900318, 0.3060897586188579, 0.36435060392961244, 0.42748800648951596, 0.514232114558614, 0.6250676923412026, 0.7510668462805631, 0.8977708578575686, 1.0543831662573846, 1.1763076285470377, 1.2527276237857072, 1.3144827797945267, 1.3766515376721744, 1.4389321162493087, 1.4817776432308747, 1.4844956401651939, 1.453767901457145, 1.3983629176178516, 1.322772996564442, 1.260048025062372, 1.23765116653495, 1.2396322437566683, 1.2491455536831324, 1.2627291798381297, 1.2552808024150495, 1.2002750787718637, 1.1062130671633637, 1.0020982617652, 0.9167520158381369, 0.8640470508058691, 0.8317105213682204, 0.8011133288601169, 0.7678778239817121, 0.7341623977444657, 0.6988027015444888, 0.6652266100029347, 0.6471427500299922, 0.6440470824153957, 0.6368655921006974, 0.6104366443218743, 0.560832063215411, 0.4900794074228869, 0.3997631568791451, 0.28720233486113333, 0.1513036276621826, 0.08243575027312672, 0.1507173980479242, 0.21757014301138705, 0.2933044155189486, 0.37066488786693647, 0.44241952011607205, 0.5185640406032798, 0.6116707065481938, 0.7168218686786187, 0.8384334801021576, 0.988994475412606, 1.1428056727537124, 1.2470848224040256, 1.3014860696498973, 1.3370839180452003, 1.3646177786235238, 1.3840963647403128, 1.370354987547442, 1.3105573119294782, 1.224946000743458, 1.1421852513603876, 1.0779171832416363, 1.051231797183922, 1.0784181780828115, 1.1319538015731476, 1.1858729836214206, 1.2405068432275759, 1.2665287721457035, 1.2137293809857685, 1.0862111582527498, 0.9390890971810921, 0.8275973164058087, 0.7806288558516072, 0.7860265331575262, 0.806032097033883, 0.8148846085522812, 0.8075952190022223, 0.7835646558476621, 0.7410915345516513, 0.696303449868411, 0.6686512516893831, 0.6521652099623605, 0.6306726803281628, 0.5919925944080101, 0.5266381655124774, 0.4323588082335219, 0.31089901357795835, 0.1640396123092138, 0.09035485658382775, 0.16663727009106483, 0.24169472540991532, 0.3293782889056711, 0.42311488284346027, 0.5112013365059135, 0.5962641158522716, 0.6828408377763958, 0.7739195887770053, 0.8901899572369462, 1.0412151342549414, 1.1907997254779479, 1.2847971055903775, 1.3253293148395184, 1.3324298022900534, 1.3190007648007787, 1.2934862468498267, 1.2298816459248583, 1.1199711636118714, 0.9917704584988053, 0.8962102519821679, 0.8580480824454833, 0.8747679426503584, 0.9412482579875117, 1.0238148486386232, 1.0994847147020657, 1.1757373347234072, 1.2228395098824936, 1.176294841689117, 1.0278208831531883, 0.8442501782202838, 0.6985825654557285, 0.6393044221110691, 0.6654202584726752, 0.7298045999960106, 0.7857786783506561, 0.8178115065053294, 0.8247005635882976, 0.8009826913895977, 0.7523485593005635, 0.7054835359563535, 0.6722966797621798, 0.6441499938984073, 0.61050626632222, 0.5539721021701447, 0.45917627832341285, 0.32811662626503596, 0.17125747167625963, 0.09283930246792575, 0.16916433596940741, 0.24498972503652974, 0.34254823483257324, 0.45340925252734565, 0.5543435809167195, 0.6381699989221649, 0.710653953586886, 0.7896580964650264, 0.8998545474547559, 1.0449998169037822, 1.1884085424092357, 1.2786274012065721, 1.3129116408749362, 1.2990021373814693, 1.2563601147601422, 1.204042684288695, 1.1185838014412448, 0.9844831729720808, 0.834354299477848, 0.7407027335856812, 0.728293789387474, 0.7741305212839054, 0.8477830377278696, 0.915933106689404, 0.9712049059521713, 1.0338671870818594, 1.079274487188481, 1.047901013929633, 0.9171465739919582, 0.7366907118323364, 0.57429792400564, 0.4910964286533785, 0.5123249666393097, 0.5996341781709088, 0.6934724604098278, 0.7665803070796804, 0.8140961812264258, 0.82746941638865, 0.7996522927405805, 0.7508443354414429, 0.7050548943649035, 0.6638959450926025, 0.6231723761835247, 0.5694252629433826, 0.4769573187460532, 0.3394206487737838, 0.17437683292781644, 0.08928444916228431, 0.1573189390089388, 0.2293355268773535, 0.3364334582754293, 0.4598397682546221, 0.5637068778585759, 0.6399702192730923, 0.7013298495131894, 0.7708751045477151, 0.8679272205379285, 0.9944870843130555, 1.1195894953843055, 1.1994760935838475, 1.2329887822981158, 1.2209738607187488, 1.1772393359259348, 1.1205280925861576, 1.0373263373477992, 0.9081914025751004, 0.7638822453825387, 0.6877567536068881, 0.700623637800036, 0.7570377698709061, 0.8035840966014027, 0.8087083594243218, 0.79836523395732, 0.8144357029952012, 0.8409386575619261, 0.830326002380004, 0.7504311858433665, 0.6147052095617836, 0.4686484373789892, 0.36900955452173867, 0.3663250339527127, 0.4507741433895677, 0.5630670371771748, 0.666655805584612, 0.753497907988956, 0.8124655794654233, 0.8231351808401018, 0.7909953861644293, 0.7450560391634112, 0.696430905249027, 0.6443964817713751, 0.58335966372272, 0.4894728836633704, 0.3485258748286697, 0.17768428759812652, 0.0796220533606252, 0.1379347204638274, 0.20907240809045857, 0.3229012461508753, 0.44743204595428565, 0.5468867050018771, 0.6200390826460996, 0.6781223291678012, 0.738373747456126, 0.813247429808689, 0.9044750317463663, 0.9913822022534869, 1.0483860893289136, 1.0837686554072132, 1.0913556424917674, 1.0670858672308474, 1.0156011832432408, 0.9361127256700857, 0.821126880064798, 0.7010170853800013, 0.6508712483404603, 0.6843585652220316, 0.7417987084822691, 0.75132323276919, 0.6760906135697249, 0.5830797571853931, 0.5471271941769804, 0.5613183168129328, 0.5798459594171501, 0.5586105713809805, 0.4795826727556813, 0.36843776636452863, 0.2702866055801837, 0.24115447552857636, 0.3038395599172937, 0.41431264240338767, 0.531299262887021, 0.6450233779214459, 0.7478594715115873, 0.8107100781513532, 0.8154359046766967, 0.7849751986268125, 0.7405369631554223, 0.6824719829674214, 0.6096988126297266, 0.5078934319247544, 0.3622323526439935, 0.18500447910081444, 0.06559626310560317, 0.11984695407985277, 0.19549357825222013, 0.30902786604763466, 0.4258110549397634, 0.5237592582447864, 0.6053772111059814, 0.6697197553156682, 0.7218495700837214, 0.7680707992851794, 0.8099310126838477, 0.8436625187220623, 0.8677971459431069, 0.8961846717649576, 0.9154418325121089, 0.9106200362105673, 0.8659233564429344, 0.7790869039029108, 0.6658224748170458, 0.5632576007043734, 0.5284733945755357, 0.5619843875664935, 0.6086806875039775, 0.5931303725281184, 0.4622899904269954, 0.30940072484295417, 0.24280317751058866, 0.26459187935362904, 0.3236530154490029, 0.362903383018742, 0.3365142661517101, 0.2556865736633659, 0.1661055175196789, 0.11863062616862453, 0.1525138140785332, 0.2495216904148742, 0.3716661916958795, 0.5027716233712634, 0.6377275262985158, 0.7543225396016565, 0.8149859557204852, 0.820133884886886, 0.7939563753890387, 0.739644770526365, 0.6562723354166828, 0.5411403167576415, 0.3857812971235841, 0.198122725325299, 0.05181191938625174, 0.1076146738814312, 0.1890485275257882, 0.296998680637753, 0.4063392368171277, 0.5120124927426836, 0.6149600156395439, 0.6956005742913532, 0.7452399494787613, 0.7656279846426424, 0.756677382121437, 0.7313155717036139, 0.7118125288760491, 0.7183111152457055, 0.7352670094591325, 0.7396161488841352, 0.6956493452766596, 0.5876169939096989, 0.4520807626449128, 0.34038077546395606, 0.2941184441277888, 0.30171024832488597, 0.3216105947667023, 0.2864039524488751, 0.1320639116296348, -0.041705226908280546, -0.11256570636782971, -0.07173952756499798, 0.030384377225803894, 0.13520192721659421, 0.1675480476458757, 0.11153889806495994, 0.024205554159383136, -0.03507281269612359, -0.02583839266411346, 0.055310189396189396, 0.18668538373721558, 0.3434510212879061, 0.5086529652075423, 0.6706894299734685, 0.7930422797640966, 0.8504027752152858, 0.855880836402103, 0.8146592684840896, 0.7250918573141848, 0.592956222695283, 0.42108753448968017, 0.21704294525115095, 0.038927385155476314, 0.0958701186888045, 0.17967385451542875, 0.2815878776926979, 0.3905870715439272, 0.5143375325306584, 0.6491857974304761, 0.7578843284225179, 0.8189727524310086, 0.8282562892336748, 0.7755437693847516, 0.6899452986673204, 0.6249447980103869, 0.6059738850626484, 0.6103565819995381, 0.6045721259877378, 0.5402020149531493, 0.3985457506436641, 0.23090503889443123, 0.09381324383489052, 0.021279681602309645, -0.005019167390702621, -0.02195557909416396, -0.08554377161674531, -0.2521599672111229, -0.4236974405088845, -0.4843293587433338, -0.4247657582110204, -0.29225461616954435, -0.13511312041714008, -0.03916985843302057, -0.0612476893877057, -0.14936697567000873, -0.22402724060896365, -0.23612905957651037, -0.16877710894765433, -0.024874578424543582, 0.17264680272213348, 0.3832385740003505, 0.5899494936297296, 0.7694514350746673, 0.8834246600396887, 0.9268465466874383, 0.9030219921819118, 0.8102696169982985, 0.6602964070527191, 0.46694216178158454, 0.24103038573191335, 0.02669769864524202, 0.07949653575518158, 0.16012990786237366, 0.2589887266038306, 0.3747315533343631, 0.5188338894399069, 0.687220810187772, 0.8328818503996664, 0.9214463065843528, 0.9336161012227566, 0.8473371333097074, 0.7139942093853883, 0.6157307266017389, 0.5739800422712635, 0.5553093155803761, 0.5162879264549441, 0.4122808637681169, 0.238965972504046, 0.05013963698506462, -0.11106304805238618, -0.2121243709254453, -0.27054038190570057, -0.3196699101271945, -0.4034902122155273, -0.5613891743396332, -0.7139143228200023, -0.7604303310558821, -0.6881275836950679, -0.5389633036093784, -0.36469431116965495, -0.23426673913803855, -0.21979623360166087, -0.3015385808237729, -0.39523756401251686, -0.4351405750417023, -0.3859981260989324, -0.23759976003839609, -0.0005982603675342385, 0.267386572410805, 0.5243204279050628, 0.7561740958387598, 0.9241094779298838, 1.0055388322594025, 0.9985625045749451, 0.9024926922442231, 0.7344562501262885, 0.5183903273580113, 0.26826068059906355, 0.014442441409633602, 0.05739391409079915, 0.13087510278014303, 0.22890231373246558, 0.34972620514859704, 0.5039256600588503, 0.69525311261233, 0.8743713342995193, 0.9881468378054555, 1.0020614714804275, 0.8997304158406819, 0.7479716196178757, 0.6345052226396883, 0.5775477806058197, 0.5367131305219568, 0.45981845127520926, 0.31682405098168265, 0.1254832971489514, -0.07053005890933886, -0.2544111331839172, -0.3868298325617138, -0.46886916282252133, -0.529689373714457, -0.6015953649875352, -0.7149333662731322, -0.8296517491650105, -0.8611807175968278, -0.7856914276230839, -0.6258246791719696, -0.4492791097572741, -0.3265877130140665, -0.3038071413855469, -0.38096618369354907, -0.4912227772288776, -0.5634003857962927, -0.5436543884329208, -0.4073781563440427, -0.1525850528175121, 0.16282992092489107, 0.4699492703570612, 0.7497992211905553, 0.9671522334647918, 1.0846583697899848, 1.0921651810796886, 0.9908846703122853, 0.8044812056462062, 0.5663464105429503, 0.2935811010638156, 0.004241892180785788, 0.03581779697339367, 0.09945018124180172, 0.19368881687993733, 0.3126929068606627, 0.46161913772773944, 0.6500190055177331, 0.8311693992392335, 0.9422119405581961, 0.9497589168239409, 0.8539402917716702, 0.7152361277153797, 0.6065343983690761, 0.544544163181286, 0.49178452435930897, 0.39721605014759137, 0.23998874050697908, 0.0605516894666487, -0.11605400752563559, -0.30103699341822615, -0.4462888750565009, -0.5354551001174289, -0.589728164921756, -0.6329964250708401, -0.700016166352404, -0.7778773957441, -0.8016799522435203, -0.731457548647209, -0.5732565838369486, -0.39022901726472364, -0.27618858731718876, -0.2702558345733469, -0.36617421731929, -0.5030977122451399, -0.6096766710256926, -0.6251924469533653, -0.5130074583471419, -0.2643660223480709, 0.0724488414840206, 0.4176963809489158, 0.7392630447505055, 0.9999616240808561, 1.1509770697240436, 1.1724510525210972, 1.0657539398878118, 0.8612810601378715, 0.6031310203742478, 0.31228565213220666, 0.00016584919192383298, 0.022902478457964618, 0.07433861116895425, 0.1598449961841205, 0.2711828732780216, 0.4016254094368445, 0.5547084132680242, 0.6903346648005354, 0.7591471096546023, 0.7477168196313512, 0.6685284376674461, 0.5661871678487254, 0.484976585177377, 0.42972207452990924, 0.38002187882822847, 0.29868012711085723, 0.1718847536236351, 0.044430185628580914, -0.07376292138563177, -0.21252969089780277, -0.3352365839429916, -0.4128973974692676, -0.45249441215996905, -0.47927866566200455, -0.5218981998755464, -0.5864357441683166, -0.6179864834308341, -0.5610236863317382, -0.41959251665637226, -0.2530784168146193, -0.14464516261905988, -0.14439530159538302, -0.2677415562184004, -0.4513275113621927, -0.5998035440428561, -0.6506096738976858, -0.5656725273156749, -0.33965137316778443, -0.008108813907875548, 0.3561271124673472, 0.70797851598305, 1.0033105230440562, 1.1853839865268847, 1.2236682807105046, 1.116042272156491, 0.8974629321864387, 0.6234153155891308, 0.32135885300897354, 0.0026488991915084863, 0.021532770483146144, 0.06120406513936368, 0.13393630062669576, 0.2342904457972686, 0.3413616307342738, 0.4413531318928829, 0.49990329584405285, 0.49635996517977615, 0.45001098980471593, 0.38543496112910913, 0.32551725825565864, 0.2847885254314481, 0.2520198268533986, 0.21755820551181876, 0.1623298948876324, 0.08363991647817214, 0.02006814572686111, -0.022076806930699962, -0.07922312503089418, -0.12972326392586528, -0.14833411825462078, -0.1596759195513602, -0.16810568803048734, -0.1971112829746542, -0.2673969513049481, -0.32786321815942926, -0.3070023161735526, -0.20437037928376384, -0.0852136723160373, -0.01032908864849494, -0.014741784833518599, -0.14687129006986344, -0.3767938841809567, -0.5728827281993479, -0.6558833644386288, -0.5953775556292248, -0.3967968891474537, -0.08931801787316213, 0.27302567994763294, 0.6396178200439938, 0.957292188183415, 1.1668677560499063, 1.2277479753384257, 1.1283089530984498, 0.9047487050810197, 0.6234103489160518, 0.31944148565725106, 0.01109933189211379, 0.03168301874132274, 0.06161782535158626, 0.11970151701129396, 0.20857720157429813, 0.2941317775303965, 0.340829137885148, 0.3202620272897484, 0.2438866473672332, 0.1635198787104463, 0.1052760460188385, 0.06832371770836114, 0.057065104390848206, 0.05641867734406795, 0.045520420399747304, 0.006695147801602907, -0.04566031924933213, -0.07128242970503912, -0.06365604135729695, -0.038316948707321975, 0.025407981249771176, 0.11096815158327569, 0.16845742435922426, 0.2034874472969495, 0.1811098289245522, 0.09836740081104589, 0.004720948117627116, -0.022351137247342848, 0.01458255701274652, 0.06437818474042545, 0.09181422063762124, 0.0741247595676792, -0.05751813921434926, -0.3188176524154079, -0.5618744962194763, -0.678506737012579, -0.6408423209914229, -0.46370430131955226, -0.18100675454252457, 0.1647839832618234, 0.5277571941345267, 0.8523559612934386, 1.082037562349223, 1.1697946906461192, 1.0902141977240358, 0.8751999591178595, 0.5990546033103327, 0.3050974537373557, 0.021753010692230606, 0.04741630804816655, 0.07151481676423929, 0.11645622604740033, 0.1946964201803382, 0.2645817105518592, 0.271555468296842, 0.19298769423751508, 0.0649681460815585, -0.04358049995938576, -0.10726398132299589, -0.1387070099091249, -0.13163668348303076, -0.10111297884319717, -0.09269248998558749, -0.13117072935518137, -0.18030609909161152, -0.19874921515380023, -0.17793455888900805, -0.10263008755479326, 0.061775319832906524, 0.2554804542528263, 0.38193584845932493, 0.4511229192224292, 0.4476709160787959, 0.3487702050927908, 0.2479665219116861, 0.20404491328530852, 0.19306287047901308, 0.18166677777050505, 0.16324380787009743, 0.12423030899366473, -0.012027511306441476, -0.29363158456127814, -0.578294499770307, -0.7325972509740107, -0.7234925040381274, -0.5643836055030937, -0.29691186072701253, 0.03155968907295263, 0.3790076433435282, 0.6957165227636293, 0.9338895798943809, 1.0463498176624542, 0.9948852147905693, 0.8026993282235187, 0.5468388436986775, 0.2768647912129137, 0.0321669125212267, 0.06461500677441384, 0.08795169189384028, 0.12426477579262805, 0.1937824156750426, 0.2532840674745512, 0.23721361087585283, 0.12608448664907268, -0.03294336696624628, -0.16257579912929046, -0.23111505114630412, -0.2553881525793914, -0.23134703849634697, -0.18135455791577682, -0.17192457016323442, -0.2203810105634667, -0.2746548746151099, -0.29264386023374545, -0.2659780698403843, -0.15626173073184102, 0.060567424007942905, 0.26669145133519484, 0.3307184991112594, 0.3117128954265878, 0.27228150655198013, 0.2271079471774266, 0.21205025788130763, 0.2411320335721982, 0.26777635618876044, 0.2568901240905881, 0.2196189627763341, 0.14811595423681465, -0.013929760350656552, -0.31193535906823794, -0.6252767281202124, -0.8160701406647372, -0.8408534706887325, -0.7024862416085587, -0.4444374620414089, -0.1273406515829779, 0.2031319653075874, 0.5041523773746757, 0.7386923286983185, 0.8672833392804156, 0.8460020039866366, 0.6880468764343864, 0.46714305950919327, 0.23520973292200764, 0.04248100351116217, 0.0813013799334667, 0.1074947955290324, 0.14231254408812133, 0.20718301604536973, 0.2603475630247448, 0.23437162013398438, 0.11104989790759973, -0.06197534312871567, -0.20430066886237847, -0.2742018912532058, -0.2849035597568232, -0.2428742062078966, -0.18093695231718876, -0.1734774300121098, -0.22805231024649353, -0.2805453954507381, -0.2769629174537896, -0.21903978994145357, -0.0977039808974744, 0.06726250616104627, 0.1530693260232012, 0.08338559615739352, -0.06467966538004628, -0.181283329714726, -0.20075924096365197, -0.11877696072758273, 0.05215005345643821, 0.2245681077534419, 0.2949777218383637, 0.26693887570301517, 0.1501929961114272, -0.057207744763635805, -0.3711905226477427, -0.6984255527531779, -0.9200988149989288, -0.9812740019451656, -0.8687157640081424, -0.6216012887378909, -0.3103470570970567, 0.009350322804216452, 0.2944292404703598, 0.5171980120431506, 0.6512413014194793, 0.6565238061858388, 0.5389524942689884, 0.36436192461244743, 0.18221177887807735, 0.05450438707999498, 0.098842610478149, 0.12847478436821388, 0.16703595919318706, 0.23364572394737174, 0.284458187906075, 0.2560371127965055, 0.1347631925248178, -0.03833317858345066, -0.18547582373117716, -0.25197099033039966, -0.24681297406235556, -0.19189873774364052, -0.12017265208226391, -0.10114155827939758, -0.14143676715468365, -0.16648639916046037, -0.11175237269468678, 0.009015595224067991, 0.14107903758750143, 0.1633831959125052, 0.037488677422738315, -0.16293586655704295, -0.388337978929363, -0.5600252467746765, -0.5957492519730458, -0.47283151598314266, -0.18992295164276785, 0.15502334307378113, 0.34871783288374003, 0.3257173274290955, 0.1420290033534966, -0.13247730822399187, -0.46443785560355905, -0.7914356927071924, -1.0348985270941056, -1.130158139342932, -1.0468096743646087, -0.8170938395627371, -0.5105001897571758, -0.19263368929343586, 0.08281316153637705, 0.29116077540866714, 0.4221769291956057, 0.4472017014322528, 0.3696805116404267, 0.24662662966665475, 0.12162870511530609, 0.06996150858910913, 0.11915973743832796, 0.14980159860122236, 0.19294750676486153, 0.2653104244633685, 0.31763786530711774, 0.2889573087243137, 0.17509752864869318, 0.015487261970069239, -0.11984288536239059, -0.17609286903046456, -0.15994785732960784, -0.10224288872988782, -0.03088759132878772, 0.0029045903340345985, -0.006457360601391187, 0.01305254410147738, 0.12116816928610778, 0.3040816716926211, 0.4345560228526875, 0.2970679309917338, 0.007274922985496478, -0.2933518786750807, -0.5546666264798502, -0.7551305189946076, -0.8101750388503016, -0.6879906664189231, -0.3507594411314242, 0.11092602820357944, 0.41345841157929175, 0.3700246108957811, 0.10286864133871475, -0.2402157851068924, -0.5852414909654181, -0.9006369179572421, -1.153313565639067, -1.2755659896437985, -1.2214355895934201, -1.014625205838485, -0.7146092144294973, -0.392552678647778, -0.1191852155611682, 0.07728489667854205, 0.20108056868804036, 0.23896571354084822, 0.1972620759969376, 0.12594385535083416, 0.06005886158369045, 0.08692192627272213, 0.1406987643215759, 0.16906820710930928, 0.21161579126473734, 0.2880234848458752, 0.34590307051458274, 0.3195426655485142, 0.2117043284522919, 0.06967078908696904, -0.04282513751995839, -0.08077747326755652, -0.05369744565441987, 0.003777221323217445, 0.06942966994338635, 0.1044330221025349, 0.09600828716215686, 0.11770910044658767, 0.23693725362306833, 0.4343576170539007, 0.5476316654987023, 0.341764543188645, 0.017972599273016303, -0.2846138173073576, -0.5545978529865013, -0.7631872036581472, -0.8290980913671058, -0.725335964991812, -0.3905375549383473, 0.10771987075961341, 0.45386976262636924, 0.3618888592516002, 0.01861275241785148, -0.37680677220797987, -0.7280086745771098, -1.0261280926344718, -1.2746995404095993, -1.4082161342536048, -1.3766095176990212, -1.1947644944790308, -0.9051004639079016, -0.5791789875565473, -0.30413033212592966, -0.11545676458002484, 0.0007134274465540948, 0.046394309308605275, 0.03517808928212499, 0.012888522606341506, 0.0035658260627318265, 0.0990706181517345, 0.15573451447029757, 0.1812321777558838, 0.2176448520503657, 0.28862745929144273, 0.34960715768850364, 0.3300158159016958, 0.22829332688571113, 0.10122588251641657, 0.016032353205821758, 0.00442760685085698, 0.04545444697994054, 0.10375598688694114, 0.1553043660575201, 0.16529680996689378, 0.11684015088466902, 0.07580568325029408, 0.1334173430249549, 0.29708317202099216, 0.41851146157658875, 0.29379124548590724, 0.05362896986235833, -0.17853614447337557, -0.4069227226953259, -0.6070570624457636, -0.6866354004812167, -0.6119969764142568, -0.32402214634321413, 0.13065862203597822, 0.4385959655548101, 0.29218279641024847, -0.10103826727040822, -0.5269799694338152, -0.877288062637664, -1.1562893653694108, -1.3890872077070338, -1.5179910572900688, -1.4995934703625202, -1.3410152925130696, -1.0659674265780303, -0.7432599200017956, -0.4704214887839249, -0.28868311212476755, -0.17927656863021285, -0.12807599359418512, -0.11227484058631575, -0.08915126628700591, -0.04659190238115777, 0.09925006809735071, 0.15423681771903083, 0.17838880327227868, 0.20742933400268806, 0.26413643077609283, 0.31984587079937926, 0.30752532067619104, 0.21590589317504433, 0.10222273442438143, 0.038071050128914534, 0.054772700266863615, 0.12109720476487403, 0.19209607348173197, 0.23239111079414182, 0.20335244766092253, 0.09443630061469911, -0.028734094718844305, -0.06964069549214214, 0.011422547679523203, 0.1344451097688692, 0.1345681215634518, 0.02956944954915313, -0.07950880748744613, -0.2202696181351602, -0.3949046330237902, -0.4773825524261624, -0.4267713122606696, -0.2013392459795092, 0.15135799467076538, 0.36492046381883686, 0.18101823382040996, -0.22619848403363, -0.6586039599685214, -0.9992254217960989, -1.261608043770613, -1.4749727344421828, -1.5889412600487205, -1.5769017297625303, -1.4401801771282152, -1.1855788004984764, -0.8778682331139629, -0.6174347765129495, -0.4465454416043788, -0.3440174334237507, -0.2869892474788047, -0.24553717963420083, -0.1809967028018636, -0.09201379823373261, 0.0856658662552846, 0.13283207906724018, 0.1575889643388609, 0.18281588946424485, 0.22225154170476039, 0.26479785210245843, 0.2565189353866192, 0.17682408660860424, 0.07651097887121097, 0.02774096010498884, 0.06522446054574825, 0.15924126895027202, 0.2579050580473571, 0.3074464884496516, 0.2497074137848271, 0.0793058732441452, -0.12476691067173151, -0.2578152347904206, -0.26921247354142847, -0.18361030561480984, -0.10816482153860764, -0.09055464813375802, -0.07345392693780403, -0.10771410184792227, -0.217235871343124, -0.2700871641055063, -0.2159792664721257, -0.05055154277350928, 0.179841147266874, 0.2812400356943569, 0.07195763866002265, -0.3241924073436291, -0.7364550268849978, -1.0557920903628073, -1.3051946374591359, -1.504708336758499, -1.607557441851391, -1.6023472021451226, -1.4861072960632233, -1.2566798938891641, -0.9766661610413814, -0.7417801672262304, -0.589046942513463, -0.4946617067936853, -0.4308412437825705, -0.3640134631476033, -0.26237650632011444, -0.13296695798554586, 0.06486721682143204, 0.0991989019149832, 0.12299196933134764, 0.1481284814639326, 0.17424003221546336, 0.20140734079990502, 0.19426571551448155, 0.12831504326464765, 0.041471848146162456, 2.715901348354627e-6, 0.0435694879866037, 0.15024048377208657, 0.2697176839161455, 0.3378511566011418, 0.2757652693859992, 0.06644195742569999, -0.20074861995801607, -0.4147608781857281, -0.5082712807535287, -0.46713976707164917, -0.35502423029406904, -0.2458901251564808, -0.14363135003963814, -0.09127593370409483, -0.11519792756986251, -0.1045439559496744, -0.03293987041430353, 0.08103824300336068, 0.20839269024744808, 0.21515355399565084, -0.003988261113842262, -0.36724497589348953, -0.7359471198325288, -1.0294941486988507, -1.2761825159113016, -1.4702992704980287, -1.5666645305769344, -1.5688901852368846, -1.4722204985815133, -1.2734124710278767, -1.0317768549662893, -0.8324873508422815, -0.7039487765547771, -0.6200934924679359, -0.5497960058271927, -0.46002134850028115, -0.3277914115619588, -0.166369469110133, 0.04644232004336585, 0.06824567105195432, 0.08713187854313198, 0.11057485571361007, 0.12725173889051905, 0.14007053786048967, 0.13142134124209506, 0.07920850491551604, 0.00869727724797099, -0.026911395177317558, 0.00910072466489758, 0.10201696294793759, 0.20986868695969232, 0.27443161745084776, 0.21684990694277348, 0.00295778311956248, -0.287588063211782, -0.5439565793604264, -0.6971113206567141, -0.7007919541786823, -0.5773765112667325, -0.40741158382716985, -0.2386739607905179, -0.11433200409273009, -0.045433471472223465, 0.020679850761336025, 0.08446865076637014, 0.15150908194269674, 0.21216999463160982, 0.17595048849898498, -0.02447039361298195, -0.3367901492656648, -0.6570198514443724, -0.9349891325432779, -1.1838583143753656, -1.370037014139614, -1.463156100213366, -1.4776924596044811, -1.4035420372205982, -1.236796856723028, -1.0349978017317074, -0.8747786651821698, -0.7753184213209269, -0.7052091811704411, -0.6310888103883079, -0.5240141585891189, -0.37095297269198874, -0.18865149001238452, 0.033773027612627037, 0.050238645572016814, 0.06465745228505732, 0.08165603576271455, 0.08805519101196077, 0.08633814388550212, 0.07103634278181332, 0.027534692314340862, -0.02851795230625418, -0.05862554916896634, -0.033868004205091194, 0.03053918786795423, 0.0985946581530364, 0.12942802033342435, 0.06948720100874446, -0.12111449203629744, -0.3930922986529814, -0.644481065475556, -0.8116803783460091, -0.8487799784476032, -0.7365924504946925, -0.5330282452895776, -0.3054336531702102, -0.11324569275667634, 0.0202846885115244, 0.09577759419744197, 0.1316386057826854, 0.17069264244098006, 0.2029170411621327, 0.1622012579324175, 0.0033245488285252108, -0.24888956372728852, -0.5273393331997401, -0.7946286988775625, -1.0379453016244033, -1.2144177335893154, -1.3129081543388086, -1.3456210288237496, -1.2904245756755244, -1.1479737953052336, -0.9825316146082965, -0.8629499476488567, -0.7946647002972625, -0.7396447250120111, -0.6650308674390555, -0.5493991027811228, -0.38777169595329, -0.19762391607140894, 0.02463755058600756, 0.04333646616262264, 0.05961307635635096, 0.07106440268667899, 0.06732338954205166, 0.05120537504024035, 0.023249549529055898, -0.022207572513084712, -0.07001567517247395, -0.09636519403551227, -0.08524878304924233, -0.054110076137678736, -0.03501194871445274, -0.05116318631070748, -0.12306246176399804, -0.2790331227904289, -0.5059504141167901, -0.7238481689855348, -0.8694776593845519, -0.9113891328336137, -0.8165090830888863, -0.6093263696186513, -0.3535654114893208, -0.13091566063220042, 0.015349516914853952, 0.07599325361857942, 0.10350625813397725, 0.14501315379856386, 0.17170890384247656, 0.14765017603276198, 0.04503123251992893, -0.1434111893708968, -0.3814263005173368, -0.6326531209487728, -0.8630618237024774, -1.0333601405770187, -1.1430747029153117, -1.1887936293170982, -1.1407634055341576, -1.0169387219198147, -0.8886626983505821, -0.8087413822603108, -0.7673762203000257, -0.7249453302990594, -0.6537562103243745, -0.5391616775803425, -0.3805016921652531, -0.19425785817951255, 0.01794181932857858, 0.04170585746393942, 0.0639851623608351, 0.0751038734309015, 0.06782078784111298, 0.04450595213338495, 0.0063214880988852334, -0.04965838551836863, -0.1025425634708575, -0.13026476293192796, -0.12870387834584524, -0.12262368428068138, -0.1455290842869796, -0.20662810435433202, -0.2988498280423569, -0.4274751978019526, -0.604654481254539, -0.7861439786125971, -0.9048037691630639, -0.9338005150288139, -0.8511301046280748, -0.6627079686195293, -0.4201485745816394, -0.20941558188730314, -0.07927146273362908, -0.024603891630337167, 0.01517919977230883, 0.06956116635891423, 0.10867252064930694, 0.11987511844881639, 0.07112338727566238, -0.06130839135978583, -0.259079535363056, -0.4841477817787417, -0.693137296926732, -0.8556126287686275, -0.9691149394570957, -1.0130236354982856, -0.9655998891487527, -0.864594216805471, -0.7757944881971319, -0.7295656797545956, -0.7062287121398171, -0.672674691229706, -0.6085483332772298, -0.5025228384582895, -0.35498180129231477, -0.18149885413377917, 0.014157344913555593, 0.0422563084436242, 0.07119806794302706, 0.08618353699738886, 0.08201462504379381, 0.06154339388858935, 0.025550660202569037, -0.03429627582839498, -0.10046563758417257, -0.14431347753795212, -0.15834890329443885, -0.16543169116438095, -0.2085002114917707, -0.29777615569069027, -0.40845558567366924, -0.5210971692234659, -0.6503911244391686, -0.7948556601010545, -0.8967461567819511, -0.9189536470823251, -0.8515199502148103, -0.6997739150140171, -0.5014576409012829, -0.3248619178450275, -0.21408009797317423, -0.15234935017227438, -0.09867280844371945, -0.03130322452849294, 0.03144036025880441, 0.07505090109690601, 0.06044152458227666, -0.03192731127272779, -0.18903376734710456, -0.3755751132095243, -0.5521471400933876, -0.6959704186654558, -0.7965013571005266, -0.8277471282376397, -0.7855898276634928, -0.715693738758428, -0.6641926322045056, -0.6415807977904774, -0.6274075109660793, -0.599970189587244, -0.544952666120928, -0.4510194036801712, -0.31875482882554096, -0.16330556329595042, 0.016411472601159507, 0.04645965025940724, 0.07996795859776931, 0.10248640014164109, 0.10643234415355877, 0.09260543484439826, 0.06574935311819466, 0.014957225334910843, -0.056759990629197295, -0.1218393912449531, -0.16453098996822077, -0.19133613546935607, -0.23975506075179706, -0.3343908474229202, -0.4513004210690327, -0.5551251674160097, -0.6441238919109591, -0.7427473783617479, -0.8259438045145304, -0.8507925290511601, -0.8064854492297819, -0.7023283130492329, -0.5629644267636296, -0.42876811741146187, -0.333067856782851, -0.2655097839646303, -0.20364678090743285, -0.13078671564919775, -0.054216664939857225, 0.0011424771254891965, 0.0009814280652274765, -0.06406335330172193, -0.18144323442599855, -0.3213360144837952, -0.45339182621031776, -0.5612388399361102, -0.6316258562081487, -0.6462843311761374, -0.6179782347903325, -0.5827915184896897, -0.5613104262803401, -0.5533403294691853, -0.5445760581195441, -0.5232316156235962, -0.47746095220184864, -0.39555317442506016, -0.2796232892661151, -0.14390054100903243, 0.02776188147358654, 0.05999088372803631, 0.09462983761223351, 0.12466854781808642, 0.13965556235705737, 0.13343476012957603, 0.1129150972579471, 0.07432083716122553, 0.006941245656931514, -0.07352348108597542, -0.14651693082110562, -0.2037901360312109, -0.26077841936432683, -0.34605005905340347, -0.4538495815383778, -0.5486206990088154, -0.6106776860839161, -0.6626890593404985, -0.7141504076624173, -0.735415597119073, -0.7112359325517347, -0.6487020871186506, -0.565721707319078, -0.4769338329874913, -0.4032613421356363, -0.3425231480414878, -0.2846335515779659, -0.21913205559203427, -0.1481091551350478, -0.10049498845927979, -0.09842122314596753, -0.1455402686527269, -0.22622224601446128, -0.3146142809167189, -0.3904994398412341, -0.44730811664157877, -0.47847793520427984, -0.480679633191648, -0.4721838455721688, -0.467710843049378, -0.46827024902451836, -0.4716799415436745, -0.46921146545506026, -0.4536507091941823, -0.4136249943324676, -0.34104719695509866, -0.24082181913412626, -0.1246355358469532, 0.045733017650455045, 0.08440146705833697, 0.11945752945169624, 0.15307155923420687, 0.17626376407680883, 0.1766219794786903, 0.15628275866421226, 0.12188995316803997, 0.061668171467580975, -0.02501987604786664, -0.1198170487738566, -0.20521438650758775, -0.2764955043210807, -0.35053497262980593, -0.43741768213430793, -0.5168115143955083, -0.5613179786069944, -0.5791636404870978, -0.5949101806867236, -0.6025010405363033, -0.5882870204361496, -0.5544574245480192, -0.5141228397203894, -0.4697402055256674, -0.4278658091165302, -0.38681204887198667, -0.34226027052278646, -0.29116226817660007, -0.23877683914509357, -0.20921712039513327, -0.2125168925231468, -0.24615125233646773, -0.28965428094067847, -0.3231704526132817, -0.3391586572352226, -0.3446105636026814, -0.3436844459658481, -0.3432198504536813, -0.3528330648959246, -0.36809134406088423, -0.3841598201077742, -0.3991898905630925, -0.40505834184755857, -0.3936146910547011, -0.35594723462164224, -0.2911695835395912, -0.2056107490975504, -0.10688644801934692, 0.06382390634023666, 0.11624612083713501, 0.1556353741855517, 0.18704306989075017, 0.21070261471577986, 0.21532294477788988, 0.1924573600636095, 0.149987166391356, 0.08766721728334016, -0.0006968202483695844, -0.10497939684787376, -0.2058815486585679, -0.2868731859037635, -0.35075734544518555, -0.4115396377373275, -0.4675519541772041, -0.4971271501177003, -0.4946203661851003, -0.48311630716180587, -0.4742082244710607, -0.4633073517025599, -0.4497200234018065, -0.43957138766218656, -0.43220751112673345, -0.4214477842776972, -0.40405700023561103, -0.3757015931435961, -0.3421774474117515, -0.3126864178791804, -0.3022931126529668, -0.30948857068393765, -0.32485458881916957, -0.3292030222809636, -0.31359470440096726, -0.2845111918442681, -0.25742863580740344, -0.24121518384222934, -0.24364114196954487, -0.2614216747336124, -0.28469762738958737, -0.3116418835042482, -0.33785550273929504, -0.35117269573973803, -0.3422943029939784, -0.30705304339382145, -0.2506455362727149, -0.17780114835316832, -0.0927313319884724, 0.07649961379029213, 0.14659769591299363, 0.19709145010491466, 0.22398473026535304, 0.23775356608215448, 0.24110141170934216, 0.2201744929503428, 0.16971001663354332, 0.09522620697983782, -0.0010757105897808326, -0.11119525973876002, -0.2174037895984778, -0.29986359884169045, -0.35207184479891457, -0.386125623970394, -0.4126662340775874, -0.42412715484048435, -0.4074664411378089, -0.37715606121612644, -0.3525505261835072, -0.33968389204106864, -0.3384890374146682, -0.3491920932917322, -0.36754315809002264, -0.38258199418192446, -0.3877235174372239, -0.3806301469026393, -0.368431686605825, -0.3607775689459473, -0.36159974944403556, -0.3630400255846495, -0.35462251750435453, -0.3263963569241642, -0.2815980008066963, -0.23355038983761786, -0.19544957774452026, -0.17567799642596071, -0.1782509593608015, -0.19462882919395677, -0.21988533231084229, -0.25388157552512164, -0.2864327211001649, -0.3035365222622542, -0.29749978444490716, -0.2677920631911813, -0.22013760539936691, -0.15692915196432428, -0.08168437035297775, 0.08390264774004569, 0.16655794089471943, 0.2305743700777071, 0.2595875475597648, 0.26050713588717156, 0.2509438278374735, 0.22942709598255065, 0.1812840321591351, 0.10226967462424152, -0.0017864438955271869, -0.11926347561053564, -0.23013574777504758, -0.313705194591482, -0.358896112411487, -0.37324026385869247, -0.37219246777936127, -0.3617450430836328, -0.33153300194244195, -0.28519355465762364, -0.2435525275206056, -0.22086509376213234, -0.22142631654756462, -0.2426593371627335, -0.27705202625512304, -0.3123513767769219, -0.3390647205224844, -0.35528427464112705, -0.3637360517820929, -0.3703808145553933, -0.37203338711547934, -0.3625173902637118, -0.33549176321257473, -0.2919883378477183, -0.24088919923400304, -0.19323484804543156, -0.15719274805576777, -0.13938502257429586, -0.1401872789750083, -0.15275432462433525, -0.1769903877545835, -0.21018291029658037, -0.24049963188883475, -0.25726533420400155, -0.25553424867184305, -0.23419184824761877, -0.1951286223109752, -0.13945439242950025, -0.07222875863586822, 0.08637246914721738, 0.17101241128577405, 0.24226725500615143, 0.2808320226035873, 0.27938610876523534, 0.2533085924589314, 0.21865449240024235, 0.17182643359172659, 0.10069300698359232, 0.003167835385939354, -0.11115211322806215, -0.22204647475115935, -0.30739748100365355, -0.3533900552189625, -0.3613031804822641, -0.3445418299955745, -0.31656837058813264, -0.2758648076214906, -0.2192365792200419, -0.16112131047553968, -0.1223804215826128, -0.11351098477814614, -0.13396146083747107, -0.1741509077378193, -0.22132330200919556, -0.26417392614798396, -0.2979150101143943, -0.3213675734349141, -0.3350355844995052, -0.33584892516422044, -0.32053865736468634, -0.2876139044311406, -0.2440505507057953, -0.19896245146070185, -0.16027912751484882, -0.1335951227367701, -0.12256044104528506, -0.12375022233090432, -0.13321118513121005, -0.1517705763425755, -0.17591062528029894, -0.19809222914821942, -0.21224309509933426, -0.2137025910489324, -0.19936124140560044, -0.16781085712327481, -0.12030484213226994, -0.06227526125112365, 0.08224864592507797, 0.1595928178690557, 0.22794560410415954, 0.27450042088246646, 0.2822166352805869, 0.25181583065819735, 0.20221771250891718, 0.14620126381810056, 0.07966721019580454, -0.0036649592249746363, -0.10073289910020992, -0.19784768472062103, -0.2766629636459451, -0.321876207476586, -0.3302531739933884, -0.30928023186134646, -0.2730653525338931, -0.22776528362283643, -0.17088030906160756, -0.10667239911430576, -0.055022769669576956, -0.03212306072206104, -0.04203716058809859, -0.07673461987209733, -0.12407624585504187, -0.17254477576500904, -0.21505482657700015, -0.24725504882582203, -0.2663922204973498, -0.2704689632031844, -0.25736993914548906, -0.22866531959676212, -0.19244702576118286, -0.1586255006078473, -0.13340835952709756, -0.12023062237746143, -0.11779060534011015, -0.11992707961502608, -0.12502247635420946, -0.13447272676511646, -0.1470692870611065, -0.16065980548797665, -0.17093527549064896, -0.17218947676770813, -0.1608950033011216, -0.13547540118490087, -0.09750771046463592, -0.050680977013524205, 0.06976326469438747, 0.13420097606423173, 0.19234321737382762, 0.23849362150896514, 0.2563968955610801, 0.2354122937329685, 0.18427711564417015, 0.1194319406666709, 0.04902414408736412, -0.025517271830111966, -0.1029890462895088, -0.17690224319821224, -0.23732350831628776, -0.2723324328617102, -0.27782867728660465, -0.25767604724820475, -0.22166845656153758, -0.1787685198846812, -0.1301272030524616, -0.07467832712170325, -0.023174251645796836, 0.00837601915891725, 0.01245874822363486, -0.008318755360274188, -0.04462782882653558, -0.08734534312927435, -0.12903729906015743, -0.16374100169314884, -0.18699864283609405, -0.1960178572144628, -0.18989014784065325, -0.17056436976467518, -0.1458171592398425, -0.12524249897382134, -0.11306515480684116, -0.1101716960347635, -0.11189966879140925, -0.11300841209671467, -0.11423072275834635, -0.11694060125910011, -0.12180556829090933, -0.12829693469844294, -0.133030010064319, -0.13078004297515478, -0.11965585645260887, -0.09912223030818244, -0.07092399130246592, -0.036660569569223526, 0.050469371622010935, 0.09914406993782114, 0.14435104442069727, 0.18260180453933833, 0.2043772524806435, 0.19653551015749726, 0.15646536537854325, 0.09433921118768583, 0.022880285055384374, -0.046776154134952126, -0.10955247602680582, -0.1614417657780499, -0.19886462024822474, -0.21706988657420026, -0.21466621063221483, -0.19563042586939805, -0.16602777131182855, -0.13242268095764417, -0.09710935984731506, -0.05890323329068519, -0.020294144653114073, 0.00927515278093085, 0.022275269337041877, 0.016587795291634337, -0.0030029064109667537, -0.03168394701961517, -0.06376543375755064, -0.09400871142414181, -0.1168458286961659, -0.1290035156181006, -0.13001150992510493, -0.12109140145120843, -0.10810260787384642, -0.09788508710164795, -0.09323545734317915, -0.09332812652232696, -0.09404071814704246, -0.09399656232777091, -0.09427162853351487, -0.09540363888835629, -0.09727414483615782, -0.0984255609778177, -0.09694189807964568, -0.09051320678764414, -0.0789953714399142, -0.06262236595782648, -0.04335190944397789, -0.02174859551616417, 0.030448723755388804, 0.06223646202282542, 0.09317344290645929, 0.11982038688168707, 0.13870548847477895, 0.13977147170136275, 0.11434087103516019, 0.066242205600212, 0.006625477071815024, -0.0511576337893842, -0.09876092607532425, -0.1326997747400685, -0.15165870611037816, -0.1561097904250286, -0.147738712992882, -0.13116868731352632, -0.11115243477420532, -0.0904814707862363, -0.06990337845339738, -0.048469779301221615, -0.026304128106481958, -0.005920363649503626, 0.007593180823112917, 0.011257199543493293, 0.005599345912430617, -0.008140070400040314, -0.027344124946252615, -0.04813698313438889, -0.06559928903309051, -0.07693483798708815, -0.08123267788876623, -0.07909661509070663, -0.07347518042876905, -0.06864065948912086, -0.06686876829831896, -0.06650738491869909, -0.0660323086940804, -0.06612321206469475, -0.06699175359013218, -0.06828964062834116, -0.06915768354644339, -0.06717531583340748, -0.06220952489210957, -0.05445400407902881, -0.044532461690211245, -0.03276339623577544, -0.021236774795049936, -0.009996122375359545, 0.013880548294015025, 0.029120695383113942, 0.044694910713257124, 0.05841311716071537, 0.0695027930697106, 0.07270294860357258, 0.0606428983890673, 0.03411967932245591, -0.0001056324058434255, -0.03347777179622348, -0.05982823566030677, -0.07688760713752571, -0.08428363833126853, -0.08336058913808085, -0.07628934765725032, -0.06615158204553145, -0.05634178652012221, -0.047441302479439194, -0.03900285263298954, -0.030129424381401024, -0.020936914788783786, -0.011211477490796372, -0.003129110128131127, 0.0016288709582072476, 0.0020441912023199857, -0.0021858768023788897, -0.010485763824861377, -0.020537087629129838, -0.029744069726255252, -0.03639148698638096, -0.03969855846476146, -0.039783154914046014, -0.03745702365143766, -0.03522082307883351, -0.03433436860095602, -0.033757139846181276, -0.03337974134389642, -0.0338564405209368, -0.03482270507665848, -0.035891599798575105, -0.03626932612458013, -0.03421820198153229, -0.030158431567371875, -0.024955230688642856, -0.01907229631462173, -0.012779356340952803, -0.007510897120235558, -0.003201202348661307, 5.475430339019417, -0.016525877830876046, -0.03136870239640335, -0.04203273404148572, -0.046666560241285474, -0.045080576724448505, -0.038363141481772514, -0.02834156442254087, -0.01729694706200947, -0.007616467892675848, 0.003986993142616661, 0.02075641293363129, 0.04024446402811561, 0.05955668279929384, 0.07852656952703474, 0.09729332075673651, 0.113229213787125, 0.12252191731286176, 0.1221269558519122, 0.11108691600133677, 0.09144187387402115, 0.06585472597451777, 0.036161055750831735, 0.0032669670339826005, -0.03301783920999784, -0.07282373729096155, -0.11426984827849049, -0.15578446944517277, -0.19707312889964076, -0.23481069914244332, -0.2616005753477788, -0.2744446216175941, -0.2778607606469708, -0.27753035884416544, -0.2729277234970702, -0.26168359434887806, -0.24334072832246603, -0.2170891614760535, -0.18129984759135007, -0.13408697165897715, -0.07976025627025064, -0.0304145210434599, 0.005035644151640616, 0.027101875325201558, 0.039124676914618337, 0.04376209040433223, 0.04160134661024497, 0.0328391674795628, 0.01823654482177043, -0.03202608222218347, -0.061062332437518324, -0.08327243216997714, -0.09486647740752309, -0.09387374456229038, -0.08143180600011544, -0.062525948343263, -0.04165048417945194, -0.020045284577924757, 0.007871587297328954, 0.04463971582348079, 0.08545273107707689, 0.1251799521323124, 0.16219725780872563, 0.19569738457896582, 0.22126077455383877, 0.232763375937163, 0.22627859783928295, 0.2019510007092617, 0.16509596979722435, 0.12091888389035102, 0.07110946688768514, 0.014138906678291424, -0.052321488264127185, -0.12931910677338823, -0.21334558161344985, -0.2987227810155134, -0.3814824253367221, -0.45731486942623667, -0.5166791538605524, -0.553032281041971, -0.5683926674060399, -0.5684651052006556, -0.5544714878557986, -0.5261509497213899, -0.48344661931999866, -0.4252241305486399, -0.3500944500164323, -0.25775125427346335, -0.15639555135656813, -0.064119017864272, 0.004467935495590084, 0.048053742263650966, 0.07166202298993972, 0.08118412951116434, 0.07832717542350913, 0.06283320527515115, 0.03530360178987613, -0.044240093921898906, -0.0860630848673541, -0.12132015402794587, -0.14313250986822335, -0.14616535249983817, -0.13094416931011468, -0.10499779963350872, -0.07362288227206135, -0.035683072890801915, 0.013677521841414506, 0.07333042942335342, 0.13670527748129296, 0.19712509579661575, 0.25076985714174327, 0.2946143253185117, 0.3217916879435414, 0.325061320799169, 0.3026370489156513, 0.2599743169012322, 0.20834830231311877, 0.15613404706551817, 0.10205473470241044, 0.036785281149754254, -0.04768433840368218, -0.15458784018938962, -0.279940506128114, -0.4123910467718401, -0.5397703738672623, -0.6559803071835101, -0.7535436344039793, -0.8232998659251454, -0.8602532313613664, -0.8652258310871834, -0.8406911458355867, -0.7902958361316336, -0.7162449590284964, -0.6197022795725925, -0.5032556379164237, -0.37112449794471214, -0.23308013981306247, -0.10620081450985075, -0.007712266213516005, 0.056754819450004754, 0.092144913166751, 0.10757120330074971, 0.1062953058095546, 0.08700641037707789, 0.049492819223090664, -0.05279050475470912, -0.10574955207328099, -0.15413141290579951, -0.18700349983437003, -0.19592405622607795, -0.18053350066552676, -0.1485995696787087, -0.10467926703975107, -0.04759373932576155, 0.024299133497091917, 0.1063215822353973, 0.19087494441367353, 0.2705298640430861, 0.3399077738543536, 0.39223854827866433, 0.4163352793555369, 0.4034808829069988, 0.3555671409515896, 0.28681848156090173, 0.21873007302278838, 0.16526021813390968, 0.12133005542960051, 0.0652333043011145, -0.0220781025760755, -0.14735791566392215, -0.3064964154125731, -0.4838189455442567, -0.6575505189992487, -0.8157405062861696, -0.9523420236192969, -1.0581187505326395, -1.1227095598266508, -1.1406452045923605, -1.1119087777316075, -1.042013276583709, -0.9365584535036929, -0.8021507779105564, -0.6477229911860941, -0.4829296766601576, -0.3168947178745997, -0.1626858690694864, -0.03831618844978248, 0.04669476733589149, 0.09595744580442819, 0.11983416158855534, 0.12297231338930001, 0.10328700418183215, 0.05964474779553969, -0.05812192595522924, -0.11890761026178005, -0.17677525573511266, -0.21766666110043925, -0.2310154044841934, -0.2155960924569537, -0.1778186236732077, -0.12161000119754962, -0.047422449155270836, 0.042645270487306285, 0.14239755879778002, 0.2447883898501405, 0.34260776237955193, 0.4287870713357033, 0.4916724522368494, 0.5141994414919795, 0.4842441882787419, 0.4047467977956466, 0.299091172550181, 0.20397864848797895, 0.1442926008753899, 0.11489678067130747, 0.08149219526221602, 0.00852019997662291, -0.11878482833041681, -0.2957833338575582, -0.504331372972128, -0.7172321145478817, -0.9148366871254556, -1.0887829129163005, -1.2311969068447914, -1.3286793074362224, -1.3695030385319802, -1.3480150201219834, -1.2684601656472028, -1.140499097750154, -0.9766273414224351, -0.7912197802848657, -0.5995087937023011, -0.4114929656803195, -0.23690649945769593, -0.09180932652846642, 0.013498957344900664, 0.08038330424704059, 0.11661494595217373, 0.1268432355820907, 0.109762314835872, 0.0644185048790043, -0.06212412652430517, -0.12623780536740586, -0.18640317086541738, -0.22826675959909012, -0.2407607707336556, -0.22248508822931348, -0.17920358903378916, -0.11434514840436506, -0.030213438264914842, 0.06916357425009748, 0.1796629247922674, 0.2968379459416889, 0.41310801119680735, 0.5190648985001224, 0.5976568598677685, 0.625952205540589, 0.5847665609077652, 0.47341669100898986, 0.32183064489703245, 0.18408049335439172, 0.10153556891269794, 0.07581714740957056, 0.06689428352860452, 0.023072977336529896, -0.08448644509266848, -0.2553494110781912, -0.47217263930424747, -0.7080524062102875, -0.9381889546286051, -1.1486536091139123, -1.330016708674509, -1.4655081627917546, -1.537848235635057, -1.5359741428888518, -1.460608676293859, -1.3238933541864606, -1.1430985291927074, -0.9353473317665255, -0.7209744005530977, -0.515099231011546, -0.326417545176405, -0.1661732722797654, -0.04249468905092432, 0.04433529623889834, 0.09702736183538951, 0.11731639122315807, 0.10521006606864693, 0.06259418127296366, -0.0652687803259373, -0.1275512517311975, -0.1811427043452729, -0.21494276269442275, -0.220048392387948, -0.19673834575141078, -0.15024141995249957, -0.08349775706304241, 0.000768806095197612, 0.10026507663624475, 0.2159173415011509, 0.3453177075679112, 0.47933231582986885, 0.6060652647151712, 0.7046991307416323, 0.7469813640256718, 0.7046330060418826, 0.5701622549106228, 0.3744390827610914, 0.1844272649597834, 0.059548148909954544, 0.015510815841808436, 0.018377395870443188, 0.00964666708164319, -0.05513934415107377, -0.1915010708471195, -0.3923237823718141, -0.634062211810919, -0.8886967676896378, -1.1357734577587637, -1.3593346400739041, -1.5360025473201446, -1.6434244487523946, -1.668709521117734, -1.6099883827478172, -1.4786279589464857, -1.2946563585584605, -1.0763567820708282, -0.845987209771677, -0.6250907676629847, -0.4254931754898129, -0.2541071186312933, -0.11663971413869248, -0.012998870366291049, 0.05728014807367923, 0.09134595086708408, 0.08816875197963851, 0.053515913370069106, -0.06578986543654543, -0.12118945075140355, -0.1607756127502756, -0.1791486725804074, -0.17303766191445566, -0.14535637682325744, -0.10047823890002876, -0.03984832999648709, 0.03667588757795126, 0.13159228137442494, 0.2498953859360681, 0.38764722951685276, 0.5332613100671457, 0.6740781333872276, 0.789123221908222, 0.8485906649442725, 0.8169997489241907, 0.6773096750066969, 0.4531434601086334, 0.21427743723265313, 0.03501672149853905, -0.048788814065760695, -0.0525742982376166, -0.029355227528968336, -0.036343535263525344, -0.11504535195631192, -0.28133867508480365, -0.5175436952535463, -0.7896135417347238, -1.0701549092043863, -1.3352307253545497, -1.5534970689089609, -1.6957417277382592, -1.7487429696983112, -1.7118029412289582, -1.595038720330151, -1.419509807264997, -1.2055923879851203, -0.9725169037892848, -0.7421840414478736, -0.5327294409189834, -0.3515528794862632, -0.2040419069358151, -0.08988536099734531, -0.006044212063834511, 0.04404593158339094, 0.056162679508994305, 0.03674647956394542, -0.0610552117790351, -0.10481523494420339, -0.12604224888123353, -0.1264811800058048, -0.10990388514304265, -0.08225349494397885, -0.04649565524272346, 0.0008797021942600203, 0.06741105943294276, 0.16040789144944007, 0.28293691104147534, 0.4244026722208465, 0.5703766879847642, 0.7098992253804441, 0.8270985561884351, 0.8973695620887715, 0.8837421872190449, 0.7568767189506717, 0.5265640565242556, 0.2545659379514019, 0.024501152443114255, -0.10768950700726793, -0.13324498863066464, -0.09120962578046803, -0.04509227139031819, -0.06002441327122322, -0.180357784021896, -0.40158843535611755, -0.6827274770890993, -0.9861278177800622, -1.2817931525495796, -1.533991841054494, -1.7078845373661664, -1.7869123306613743, -1.7725755028577213, -1.6741431045617627, -1.512527864233144, -1.3131261986209293, -1.0928476535292915, -0.8650563032004268, -0.6500415601686592, -0.46043803007206446, -0.30383847217240206, -0.18224805516116377, -0.09004996461043502, -0.024989458040114557, 0.008083732114982626, 0.012199217384365605, -0.049079430690797, -0.07650932152162017, -0.0783546375131664, -0.0627615797550702, -0.040293580016985006, -0.020133723179292084, -0.0016268079928671475, 0.029757899343236225, 0.09147244208127407, 0.19076061722313908, 0.32101559986924727, 0.4613409597639659, 0.595405472255907, 0.7148638813996141, 0.8118830397633207, 0.8747614706113225, 0.8760645238850419, 0.7769225379028465, 0.5662356997587785, 0.28819163859174046, 0.027207388278894573, -0.14723833367907727, -0.20518221913891918, -0.16828143297124748, -0.09711624297473387, -0.06811945106632324, -0.1457254738872788, -0.3445458744673076, -0.6236109059965197, -0.9334126665152781, -1.2378822592186767, -1.5020164322779073, -1.6921533969199134, -1.7908026258218985, -1.79942623747019, -1.724440580503859, -1.580837721013688, -1.3973906193956347, -1.1969970895136848, -0.98517675810723, -0.7745622056225265, -0.5813009218891397, -0.41669339788344, -0.2861200450831224, -0.1860111598052851, -0.10795145100212174, -0.05198899764193684, -0.01871534035573521, -0.02916880462305244, -0.03703140737637141, -0.021131614649543228, 0.006080817971754105, 0.02779505397618764, 0.03189085398313147, 0.02852118122776842, 0.04851099412357396, 0.11650356592598078, 0.23246754071519102, 0.3745452563520857, 0.5125652160192328, 0.6276099266217774, 0.7105239457735761, 0.7612040196432466, 0.7906027841078265, 0.794756282863335, 0.7336441544372844, 0.5702215292271821, 0.320338477366921, 0.057454130334790146, -0.14445143268332422, -0.24155740644444715, -0.23699286474935674, -0.17946236317736158, -0.1448737958678041, -0.2028963939562707, -0.3825564103087925, -0.6515985656435392, -0.9540688793069725, -1.2463078010406714, -1.495176439108309, -1.6740152469085994, -1.7722507700987065, -1.7954728573796308, -1.7474129654717065, -1.630767213855587, -1.4658059368082905, -1.2833529582428203, -1.0929565945795483, -0.8964586508292952, -0.7067446992479042, -0.537559674223066, -0.39638210699278387, -0.28484051405510563, -0.19374635093078532, -0.11643598646918742, -0.05286681243184511, -0.003450339532310386, 0.00909015245841658, 0.03937981945074233, 0.07328975263995213, 0.08746452648768496, 0.07046131722648605, 0.04835664528855535, 0.06891865856401327, 0.15751168408243754, 0.3002291987039442, 0.45938567334436897, 0.5982494528451321, 0.6925941494433507, 0.7286056677467116, 0.7160884102143188, 0.6935552058747633, 0.6840016261960997, 0.6532352635254318, 0.546085841815007, 0.3489363920149256, 0.11145345384026152, -0.0980466039269109, -0.23241247831941617, -0.2791448189805703, -0.2671718281918992, -0.26222349282839047, -0.3298308795963368, -0.5036020993929755, -0.7618010150828685, -1.0512049243335342, -1.3229225212862605, -1.5425685151930717, -1.689843937589465, -1.7628815551107224, -1.7772332436753642, -1.7431559635867857, -1.655681462511123, -1.516386885891842, -1.3518437721305656, -1.1815068267670559, -1.0034480887350217, -0.8235049455053993, -0.6549414685441339, -0.5045598231648274, -0.37848091607696616, -0.2725503691230542, -0.17625639537443896, -0.08556122491201304, 0.02432384909080423, 0.056576411549677325, 0.0980108147665061, 0.13288985191610928, 0.13387859625070275, 0.09686170766938021, 0.06744657016173031, 0.10473599709140685, 0.2275065743996583, 0.404812420307804, 0.5846407113442827, 0.7261907450793526, 0.8000341044163044, 0.7903291362194312, 0.7180045761459312, 0.640371536126039, 0.5955523300452242, 0.5634886360868484, 0.4889881173618809, 0.3406965279184622, 0.14157839696278804, -0.055995792065017334, -0.21221248978425594, -0.30681434753581893, -0.34874279700584127, -0.38705356101838023, -0.4788911972934008, -0.6575458853267527, -0.9084827875430473, -1.1847490256256006, -1.4390046896947177, -1.633846794177389, -1.7506708783621694, -1.7918052328039669, -1.7777557678396112, -1.731910222235325, -1.656404279624886, -1.5409270846446577, -1.3964247653389639, -1.2450757143857178, -1.0864546393042607, -0.9201933370064301, -0.7568719440475873, -0.6012282918729405, -0.46009454663418753, -0.33711954483731904, -0.22395561271889158, -0.11190812234962887, 0.05053743956070626, 0.10112283813381394, 0.15037371857135456, 0.18060348565962886, 0.16600317360351632, 0.11725772829686677, 0.09611068376266721, 0.16368374706540548, 0.32717620770079736, 0.539419227656042, 0.7375860699877131, 0.8803743305289135, 0.9381815080571778, 0.8981159719482072, 0.7854894403075879, 0.6569635051387273, 0.5586186599901781, 0.4892684825224181, 0.40424384470510766, 0.270429556153004, 0.09577213491033944, -0.08640021458266096, -0.24511409803709142, -0.3604663110071525, -0.43374386085744027, -0.49914316150780014, -0.6043778820783141, -0.783427614663211, -1.02752299403097, -1.2945254021446777, -1.540400376398127, -1.7256928151919628, -1.8276058801817994, -1.8506787009315242, -1.8117616679483939, -1.7400093302319626, -1.65350249574781, -1.5457215358853653, -1.416197914755614, -1.2820064757737297, -1.143305521226492, -0.9933264053183235, -0.8383969285081946, -0.681526362464925, -0.5274001730521635, -0.3863942629964099, -0.2574644673835429, -0.1300352574852288, 0.07380104141799401, 0.14064369193911389, 0.19407665965995433, 0.21535432684296965, 0.18785412682045313, 0.1390041770333043, 0.13889760276827262, 0.2416028218012417, 0.4413201263742619, 0.6795209208605141, 0.8895482847901841, 1.033842975785127, 1.0872918084871754, 1.0394433300187673, 0.9094506511600623, 0.7433124650716935, 0.5888805785894885, 0.4547751923248383, 0.3154300880718276, 0.15355553001215752, -0.024842801568853993, -0.19957769486319366, -0.34785178440345427, -0.45696220944137056, -0.5293023934056977, -0.5956888510276663, -0.6918093536726725, -0.8540243017359098, -1.0817264615509963, -1.3374006492541146, -1.5819216414460677, -1.7756122107211754, -1.8848852656083317, -1.9108984963496967, -1.866444672519251, -1.7751500566103011, -1.6679036374008058, -1.5522323677273246, -1.42581906836605, -1.3015034030171213, -1.1794687576575031, -1.0460391089909735, -0.900805782728318, -0.7455446500891254, -0.5815728136906049, -0.42345946061701484, -0.2796957169120804, -0.1411096835185667, 0.09374216473455493, 0.17422488648584358, 0.22848561009606147, 0.23972783488932348, 0.20457870563920966, 0.16472191460894067, 0.1904622733104804, 0.3237237494384279, 0.5463250276271789, 0.7976528975220593, 1.0157304608723328, 1.167252224740486, 1.2298948570199193, 1.1930374998148685, 1.0676583260588008, 0.8840169503650847, 0.6761253694525056, 0.4587595528218183, 0.2413029643682827, 0.030467865899113534, -0.16796687841459504, -0.33910822732351864, -0.4718796210143173, -0.5625713463475327, -0.6201576623366946, -0.6750656300538106, -0.7522981197267148, -0.8840107295712499, -1.0827805860405004, -1.3148672102377303, -1.551956020067257, -1.7632646168080286, -1.9021090584034244, -1.9545964580216022, -1.9279064277112843, -1.8340115070354994, -1.7077562498495389, -1.5760131349622015, -1.442324083721334, -1.3171909031080462, -1.203504947312714, -1.0828375916716535, -0.9468419116098449, -0.7954525140879453, -0.6260537217217849, -0.4539619921057485, -0.29634026288682525, -0.14849726487386422, 0.10862019514141572, 0.19901278363475564, 0.2523332191999058, 0.2553835947726944, 0.21866013761262496, 0.1931861135725937, 0.2441060325337391, 0.39737348245085696, 0.6262094936444083, 0.879465220715953, 1.105913751314665, 1.2699477024472818, 1.3474921646290348, 1.3291356774808798, 1.2198253008243127, 1.028803361714744, 0.7752815712852107, 0.4885111050908487, 0.20967952602411757, -0.04283172180566022, -0.2641424854936483, -0.44024448847298997, -0.5692910221689015, -0.651102633329225, -0.6991792702510632, -0.7387378636083989, -0.7884326742672925, -0.8786630522063674, -1.037737587179598, -1.2419731558187779, -1.4656043035122481, -1.6941433643230817, -1.876615527014166, -1.9750163389803246, -1.9858852234613322, -1.908808380677296, -1.772943713024062, -1.6223466016658386, -1.4736407386452473, -1.3378251557734357, -1.2221718806058692, -1.1077484019429862, -0.978946584049423, -0.8332794579692149, -0.6641535973172076, -0.48325120801107985, -0.3131472249402678, -0.15563582403032622, 0.1163498400845001, 0.2117442677491151, 0.26337969155256263, 0.2624601790058548, 0.23062197579197943, 0.22235587681296579, 0.29332016464466054, 0.45567646202730555, 0.6796498886320528, 0.9284092182634228, 1.1598924764158633, 1.3315164867646774, 1.4163863504109648, 1.4090405121069594, 1.3107984139144266, 1.1214121199039644, 0.8543096307026672, 0.5443404960710057, 0.2391739425124078, -0.04065210079740152, -0.2863795293873146, -0.4844878229387565, -0.6381800631357505, -0.7373769073043468, -0.7846451518010676, -0.7998764338990002, -0.7975664903743414, -0.8224605657731309, -0.9230623178590309, -1.0991967267041758, -1.322957097128481, -1.5776451628094736, -1.8139271781092992, -1.9701481509532321, -2.0272414315128446, -1.9803757159013529, -1.8500847207279314, -1.6867048221671177, -1.5196517194089243, -1.3648550704281324, -1.2372807268176915, -1.1220858749168472, -0.998217004228268, -0.8601061937468063, -0.6972485015649784, -0.5139696533801956, -0.33346334221140145, -0.16483758228073042, 0.11497135627024378, 0.208966526337663, 0.2584127079436796, 0.25898675049125297, 0.23843808309446382, 0.24745875619310667, 0.3314566617727831, 0.49526015705929916, 0.7102084806723411, 0.9489440383579348, 1.1747057442253854, 1.3393941637582198, 1.415735581449925, 1.4024855897137625, 1.3072555719637426, 1.1375908233117207, 0.8977994963649661, 0.6127231384097889, 0.32025726414408334, 0.03688169994893487, -0.2226522813372568, -0.45164178208754413, -0.6536319494912425, -0.7923619369845555, -0.8559981478184108, -0.8429656815026507, -0.7776334746075524, -0.7193225140239782, -0.7434145874469908, -0.8805913313840833, -1.113387144516541, -1.4106178857914777, -1.7117618484254793, -1.9348715423938385, -2.042379345278573, -2.0305444376029076, -1.9174534700175405, -1.7524452765532774, -1.5718224220379422, -1.3958792678831948, -1.2493153789577507, -1.126999828835058, -1.0058400392675244, -0.876304601858798, -0.7243690994146674, -0.5448280134907175, -0.35710248061131544, -0.1765187708753176, 0.10481433547310531, 0.1915499884183977, 0.23819350307568452, 0.24379304657254824, 0.2379762436583714, 0.2632586162330098, 0.35415312733503673, 0.5123295113396776, 0.712071656909724, 0.9321182180829822, 1.1398475705736881, 1.286089674077452, 1.342283526209084, 1.3129407710498489, 1.2213670240900243, 1.0878858888008853, 0.9087152667357582, 0.6934410081080961, 0.4580239656506749, 0.20375637385357667, -0.059069246735075166, -0.3227338519030794, -0.5747857816236954, -0.7697297468506008, -0.8644721799996519, -0.8353105657087606, -0.7144770543643069, -0.5862200974727165, -0.539381570077569, -0.6360363373799054, -0.8722809292275058, -1.2091133413619288, -1.5728486150541843, -1.8637529977762013, -2.024467689949498, -2.0503862998376436, -1.961625329649396, -1.805609062796241, -1.6210323775106514, -1.428916817416671, -1.2615306313928003, -1.127121938461672, -1.0053839857521074, -0.8834946691037253, -0.7439182292298772, -0.5721530951478682, -0.3809371478280471, -0.18929262851141085, 0.08857400849350815, 0.16420612260536338, 0.20700222370321955, 0.2177955020637296, 0.22602435735731669, 0.2644777387991982, 0.35609023310315235, 0.5006856461665119, 0.6768785346797672, 0.8688426536241053, 1.05053750786109, 1.1730503513122992, 1.2067909520524611, 1.1679749859124, 1.0955497948988806, 1.0128876902308157, 0.9123366810676752, 0.7908699674118681, 0.6403290703256438, 0.44004099850024947, 0.18814640615817035, -0.10640490215668909, -0.4240263138600825, -0.6892851094239668, -0.8077445034552984, -0.7660109658021255, -0.603213957766475, -0.42549688682176684, -0.3347347101677119, -0.40696852865807137, -0.6504460248659513, -1.0177845831029406, -1.4254830234911429, -1.7677008446494775, -1.9759138399932672, -2.039163910529826, -1.9790517353575166, -1.8407662743323752, -1.6626534277723786, -1.4632162731487688, -1.2784038849281114, -1.1300369128433432, -1.004608920170116, -0.887607620601202, -0.7587606183143103, -0.5954466856353859, -0.40305079480366557, -0.20181246883390155, 0.07039859675830008, 0.13368392311790406, 0.17156430930800404, 0.18450609793547607, 0.2006508136854646, 0.24507996642696905, 0.3310080897233185, 0.45620895659171584, 0.6026623133896403, 0.7600278659820742, 0.910669468656424, 1.010498648398331, 1.0333918226437961, 1.0063550562989538, 0.9709568944385923, 0.9439345192636163, 0.9227839272114556, 0.8979804816036668, 0.8387663078020932, 0.7140222814173477, 0.4973502584287212, 0.17331652885155396, -0.22123727352869085, -0.559887207011018, -0.7170423738886447, -0.6593642319708646, -0.4801651766335705, -0.28721549493384185, -0.1722160419802881, -0.22953085698937617, -0.47703394110494785, -0.8622628636873737, -1.2939531179346728, -1.6651348995111823, -1.9067761548485784, -2.0030367403938234, -1.9732972029478741, -1.8585081169105742, -1.6945546633774489, -1.4973178495880766, -1.3027133668070292, -1.1427256910561585, -1.0116636773896204, -0.8954992156865383, -0.7726625807595603, -0.6152223569575461, -0.4219353239327186, -0.21271429644866138, 0.0541924837674462, 0.10549350036298122, 0.13683567859362974, 0.14701682421014672, 0.16185706027750704, 0.201831049009332, 0.27395218290912465, 0.3748311106125679, 0.4898262813163921, 0.6125705317804088, 0.7338508958915132, 0.8195922665987134, 0.8494532381344762, 0.8515793107791159, 0.8596715303879492, 0.8864410969502564, 0.9372889543538642, 0.9858038823443709, 0.9970719497673015, 0.9396592206421857, 0.7646167440362797, 0.4509710083311078, 0.03104719989656367, -0.3466252501372674, -0.5402197470573833, -0.5195753538374104, -0.36437894084443173, -0.1915916834199861, -0.07963924243339175, -0.12586905567581735, -0.3630175680506329, -0.7472792041391466, -1.1811351686561429, -1.5612876366864168, -1.823325145838828, -1.945992006703282, -1.9455727379112762, -1.8569522907465215, -1.7116322570418316, -1.5240820719506551, -1.3292871689619137, -1.1645486786261563, -1.0298828856325302, -0.9121047924964356, -0.7905258579708545, -0.6350248891371508, -0.43961932409806354, -0.222825439903261, 0.040306582874736555, 0.07948420789164073, 0.10181777718975366, 0.10453673198480282, 0.11002101141395554, 0.13558395744279653, 0.18578105585146326, 0.2586322736289489, 0.3435723155347934, 0.43765688704230077, 0.5377950565638965, 0.6192231732274838, 0.6689500517550545, 0.7088815230791856, 0.7571225432317547, 0.825846367372849, 0.9191001942986188, 1.0019630955541199, 1.056021854826588, 1.0413874311458948, 0.8963709937330036, 0.6054010436057019, 0.22347071625800496, -0.10993580687497172, -0.3025235385945258, -0.3220795005081442, -0.22843546996711567, -0.0990730702147819, 0.0024003993323355377, -0.039008464192904976, -0.2636510239483755, -0.6403869184395271, -1.0729352845751219, -1.4528379797101487, -1.7240915035214448, -1.8658312536118935, -1.8911790456581652, -1.829013577172075, -1.7052958017570918, -1.5341468390824293, -1.3489627843871932, -1.1885931592580177, -1.0557493505949092, -0.9373037891506469, -0.8139960411294853, -0.6568868949725017, -0.45736942377811657, -0.2327103902272949, 0.025793740526914098, 0.05048472717440923, 0.06020500201653989, 0.051546651879944075, 0.043537009802789045, 0.05035514110875808, 0.07473416340870832, 0.11778985530099283, 0.1742655954343564, 0.24528834933918933, 0.3332469813386107, 0.41960471126156906, 0.49406323142917213, 0.5703317331094039, 0.6497006848414913, 0.7363965618887287, 0.8368675891301534, 0.927031524713021, 0.9911900801764153, 0.986796710109559, 0.858667344460595, 0.6046701236304721, 0.29841869052009357, 0.0551895146131254, -0.08180766248348353, -0.11348510165975206, -0.06947846307241871, 0.024840534314393575, 0.10720688895779781, 0.06693319600493373, -0.14847360254041223, -0.5163193995054204, -0.9480198373973048, -1.3290894100210013, -1.6056812976709827, -1.7601871613512985, -1.8060378167361295, -1.7681737163041613, -1.6673381165824128, -1.517443142843138, -1.3505246847273074, -1.2037127214666035, -1.0798153816948028, -0.9644624014366008, -0.8395591577123275, -0.6790297308096945, -0.47426901745251465, -0.24183253844458083, 0.0059949197603233785, 0.010874066570190256, 0.003705477860104377, -0.0183383033230814, -0.03921526407410364, -0.0488438553573094, -0.04800607732590352, -0.03227681346589136, -0.001450353991565568, 0.049109021590277226, 0.12845721845411995, 0.2214629382886954, 0.3163566673871986, 0.4220146214710319, 0.5200225391532167, 0.6002155450081957, 0.680712587652823, 0.7406969877671857, 0.7639510018491616, 0.7485318324026303, 0.6475353499840623, 0.45793869294967093, 0.2638389157325924, 0.1296362022828393, 0.0723951391787792, 0.07062408746933588, 0.11120787703329442, 0.18354830430205427, 0.24572305247076598, 0.20566807759414887, -0.008249122233994946, -0.3703309312642869, -0.8047950199080413, -1.1893678694649512, -1.4668264590813833, -1.6279801572890404, -1.6903230841074726, -1.6745872295178295, -1.5961312432923218, -1.4695792700624415, -1.3261513272590397, -1.1996538383557998, -1.090748825950702, -0.9829931208141256, -0.8585975122071093, -0.695478475190828, -0.4866804957855417, -0.24863272744081685, -0.022261376324017465, -0.04443791769297598, -0.07220159568847105, -0.10737272972248417, -0.13733267892769874, -0.1560945302230445, -0.16973262119878252, -0.17374602652462795, -0.1638175422698614, -0.13350902271755852, -0.0679393649516515, 0.02352154429070442, 0.12650130411426877, 0.24523848706339518, 0.3508391424041352, 0.4156372413053159, 0.45100495855741074, 0.4392353057290822, 0.37739143794724705, 0.32147308534101, 0.27368045698522303, 0.18637620273204844, 0.12081409409955123, 0.10654217954549629, 0.13237573621376064, 0.18635156741294046, 0.2538301067069669, 0.321675205207465, 0.37110102451034976, 0.33689641668225484, 0.1260651141443597, -0.22753232296341908, -0.6561815678321345, -1.0365708428736313, -1.309838597601709, -1.4736863906672086, -1.5497022959157003, -1.55307588979871, -1.494007188482652, -1.3897745423915469, -1.2721975685729434, -1.1699410710962557, -1.0794298043898638, -0.9820264607642682, -0.8605487516501721, -0.697447384934131, -0.4886886567993023, -0.2502011490738832, -0.05764566937251157, -0.11256603244551308, -0.162746225622624, -0.20878284551143908, -0.2430450798758005, -0.26235470167144603, -0.277916120737237, -0.28973068666981544, -0.2935258308433837, -0.28333949750522064, -0.23997527982082995, -0.16430104725142505, -0.07188291193605688, 0.038422281354352265, 0.13220637767017449, 0.17054823708199832, 0.16696806866820543, 0.10659529968875119, -0.020283886112262, -0.12888732160970082, -0.16102569323642515, -0.1566912021262685, -0.10810779551907462, -0.01766195706607453, 0.08791181033021472, 0.20021069689441046, 0.30484074151918683, 0.3889097413358193, 0.44543590427773905, 0.4239256998831536, 0.22452956201465202, -0.1155204638660928, -0.522341250258221, -0.8811681234496307, -1.139805449721905, -1.3018384471072268, -1.3886803405189014, -1.4062056278361506, -1.362021581508472, -1.2784436733877302, -1.1873127433634474, -1.1108728176683464, -1.0405009287963412, -0.9557627348413924, -0.8405050470598215, -0.6816984716879013, -0.4783615049272017, -0.24559860065237837, -0.09454238795282215, -0.18346065939272146, -0.2557883124794797, -0.3100655777232895, -0.3448944565553288, -0.35914695177722217, -0.3660516876272171, -0.3723655419843346, -0.37839434675800937, -0.38321847480820065, -0.3684425224508531, -0.32430392579699296, -0.26083685676794705, -0.17864211840399988, -0.10874534959881936, -0.09836632635622254, -0.1367720616062947, -0.2208489069050979, -0.3613975889286621, -0.5004129621999047, -0.546997251926121, -0.5005878458532704, -0.3815814525470365, -0.20450850498008102, -0.026036328440219973, 0.14077323141807194, 0.28921024085646535, 0.39915590083598895, 0.468213644940828, 0.4483592329888382, 0.26048304388317156, -0.05209949829027776, -0.4096140434636279, -0.7247806849489024, -0.9597981044881319, -1.1184028152772583, -1.212218985914126, -1.2366169051659146, -1.2018600403689046, -1.136782769636533, -1.071686915689767, -1.0217168033093775, -0.9728687754879592, -0.9033886350882336, -0.7985333102198723, -0.6490865876220464, -0.45654310272167653, -0.2351023309659193, -0.12650507702931144, -0.24511875655332982, -0.3376084812679658, -0.3990393438645181, -0.43273828015276844, -0.43984234172205444, -0.4338808410738061, -0.42628395378463185, -0.4222168098436103, -0.4298503659440713, -0.4391925366822104, -0.43333358691256757, -0.41286042669669754, -0.37178761395409876, -0.33163704041595593, -0.3450240977109289, -0.4112562068026525, -0.5158175337301051, -0.653057179717373, -0.7840743893818062, -0.8378404442675726, -0.7893925818856558, -0.6432891353034087, -0.4190142899961635, -0.18668859998654252, 0.0319184518268842, 0.22211923694620633, 0.3563699136353035, 0.42960644690270483, 0.4060168455917982, 0.24288123282726687, -0.017246464649692535, -0.3085607525116561, -0.5729679095979853, -0.7794880754836724, -0.9285296450298839, -1.0202467349608877, -1.0429644935925524, -1.0140833461509868, -0.9670983304919124, -0.9282185429102713, -0.9055758701161302, -0.8803604851806831, -0.8293919845451115, -0.7392447275334885, -0.603805898570621, -0.42649291906402426, -0.2204958408254966, -0.1515757053357226, -0.2930936575468588, -0.4031337912201377, -0.47249927248183554, -0.5054659029850583, -0.5047309352898657, -0.48407224305144075, -0.45931476196757215, -0.43792724853699655, -0.43408032766274707, -0.45198937975109893, -0.47659436818276035, -0.4995356214966995, -0.5043462273928877, -0.491651072103784, -0.5183934964351299, -0.606249977797285, -0.734935173648168, -0.8838020775296537, -1.0036769099335576, -1.0475531207704734, -0.9943912549325441, -0.8455061129213538, -0.6077793522397245, -0.34723312531379025, -0.09412620022464603, 0.12889341721710612, 0.2803827594346126, 0.3562795278411995, 0.33898699887353295, 0.21223113273093192, 0.011190596030435105, -0.21653781852243467, -0.4266887284557934, -0.596721608824536, -0.73015261532721, -0.812642038941363, -0.8297429958215493, -0.8066782987967867, -0.7776477984693492, -0.7642466500609743, -0.7688595884715521, -0.7679424529833632, -0.7372535197116393, -0.6647856677029431, -0.5470343529122434, -0.3889644815584575, -0.20225691497081744, -0.17125211392777756, -0.32943955041464107, -0.4541292121560461, -0.532884144898369, -0.5666902087123348, -0.5582407548203872, -0.5215413055592979, -0.47740622958128537, -0.43636320991269467, -0.41216128234677823, -0.41882164417304624, -0.4519711227348429, -0.5038283928983937, -0.5521066537447211, -0.5726698711569577, -0.6067645120372002, -0.7032380892463083, -0.8495151108405574, -1.0164732860637387, -1.1474694527060363, -1.1896150059431614, -1.1324126698131605, -0.9847428206287678, -0.7486227899235527, -0.47456720337362784, -0.19788140047757047, 0.04679860254968248, 0.21237806544843812, 0.29641720426982837, 0.29214700879771377, 0.20109528126083107, 0.05240604756320712, -0.1169465028579489, -0.2735356207334128, -0.4128696361953083, -0.5303235365337479, -0.596914099514263, -0.6064113635092926, -0.5901422593068153, -0.5792722097545396, -0.5906390060214443, -0.6202601711653902, -0.6413398825943941, -0.6304175152879917, -0.5770309326914366, -0.47962122900250165, -0.3440790899276291, -0.18029538316467955, -0.18737466291737376, -0.3578763776238169, -0.4943860528612966, -0.5823565122710433, -0.6173906402135725, -0.6009693032326643, -0.5467174479752238, -0.47986256216251283, -0.4167660253792258, -0.36940674010960756, -0.35402365124835067, -0.3745343364432367, -0.42910458601851326, -0.5046843402356376, -0.5660333725830476, -0.6212226209097287, -0.7225432533619405, -0.8758652738843721, -1.0503116632404728, -1.1957427692867961, -1.2521867717111332, -1.2037452879447872, -1.0632563212930546, -0.837285777108882, -0.5563069885801377, -0.2660201799445162, -0.008663593008385597, 0.1756435790629021, 0.27640357048117425, 0.29132683724333275, 0.23123105912656963, 0.12440388672954081, 0.0012110994750526192, -0.11989715044646818, -0.23864889945180653, -0.3332004691741686, -0.3789489795537676, -0.38410969147856777, -0.37818282913652823, -0.3861237552940995, -0.4194556417157554, -0.46896055572814344, -0.5072857969781374, -0.5134001187797296, -0.47881343576248947, -0.40321723370564194, -0.29263906241300713, -0.15474880068473745, -0.1982739861237815, -0.3775244497602695, -0.5229641128590758, -0.61804677140892, -0.6520198136489573, -0.625448202172176, -0.5528254784705852, -0.46115300179836366, -0.37327034471911114, -0.3016204632801179, -0.2609344846410217, -0.25984811389818746, -0.2990279834002935, -0.3766122061371956, -0.46769678468821074, -0.5532489239680146, -0.6647630407137235, -0.8211667355396308, -0.9974692315833693, -1.1496994612388836, -1.2243488986872715, -1.1945327347795711, -1.0713035398196453, -0.8627024217608286, -0.590041006571127, -0.2973702269898172, -0.028322949708256058, 0.17877131093394952, 0.29963246967544155, 0.33100682202268905, 0.29555219096616275, 0.22012406885889824, 0.1272168528983379, 0.028222956429785343, -0.06702910865604222, -0.13429387484296548, -0.16572375830773328, -0.1738531295047413, -0.18107370798317396, -0.20729890092462563, -0.25963060892062073, -0.3243432400873235, -0.3750652418903583, -0.3947638556652207, -0.37742282924739157, -0.3237831982667986, -0.23872644792806186, -0.12770249267912692, -0.20018647406356033, -0.38244372221317524, -0.5320143871167249, -0.629984647430501, -0.6605336246597019, -0.621875622993266, -0.5299257907179287, -0.41385969877522527, -0.3010601286296042, -0.20579662475154378, -0.13955315910269658, -0.11312016854834425, -0.13090499900956581, -0.1952487315905002, -0.29416954197006495, -0.40158896715336634, -0.5216649049861815, -0.6749740170008064, -0.848468038181869, -1.0044398394490912, -1.0955435291957958, -1.0899187860098156, -0.9885816715382746, -0.8014084379316412, -0.5478357831548516, -0.26552073930906483, 0.0035021147985914115, 0.2179069291761235, 0.3475399975880624, 0.39386755646672966, 0.3831545101843448, 0.3323957580387505, 0.2611208976086651, 0.18181690512592263, 0.11039500771187609, 0.06058044005642746, 0.03290856214994378, 0.018542303155272916, -0.002938035655220037, -0.048510231550536576, -0.11858620549894303, -0.1945296506816511, -0.25305619307496025, -0.2824341157540243, -0.279768770360844, -0.24632095918386207, -0.18556794243385213, -0.10072922245304888, -0.19267215350584516, -0.36914497942504526, -0.5135147379821173, -0.6067932715627151, -0.6315320928491293, -0.5826394670979316, -0.4740578561038207, -0.3360373278917249, -0.20135389177525845, -0.0867104161076028, 0.0010577218579226725, 0.0535178118777821, 0.06207890820916499, 0.019304135466897167, -0.06997138645348179, -0.1827121354797808, -0.30446508133517064, -0.44433545718597445, -0.6016309614936052, -0.7502045376234041, -0.8504935404778974, -0.8672644757216493, -0.7921395909445395, -0.6323476435764378, -0.40956747934838383, -0.15808491819759204, 0.08558027854309848, 0.28420410363063464, 0.4159544383515737, 0.48071758828216493, 0.49123442362029746, 0.4584563350608504, 0.4039869422292369, 0.34121844632930676, 0.2843999085661267, 0.24038516608836452, 0.2130727653798782, 0.1911531834177205, 0.15156820340181834, 0.08447318652943661, -0.0018679703204689875, -0.0853556547683438, -0.14713454669930118, -0.181829651528098, -0.18987150821681315, -0.1735258067605445, -0.13471738823446353, -0.07465121399351354, -0.17764334509360497, -0.33858536857199145, -0.4665174091810338, -0.5453916374287864, -0.560812510953535, -0.5053423344909481, -0.3871744619397283, -0.23320082876135345, -0.07962808957869577, 0.050648273809364486, 0.15312393340379657, 0.2253575628260967, 0.2595334092139992, 0.24329540644331432, 0.17379385423199686, 0.06901435732074741, -0.04826924321392482, -0.17197273910386904, -0.3031258098783031, -0.42892613285669734, -0.5225892089868773, -0.551882567324775, -0.5031027862099338, -0.37847707023296556, -0.19743827075069545, 0.010554299258959468, 0.21537288563112617, 0.3906974686033987, 0.5201182978502675, 0.5941904411732885, 0.6147227708385168, 0.5936018253265113, 0.5503856664917633, 0.4960699417223237, 0.4433874570067376, 0.40096702904245707, 0.37166061419700563, 0.33505792576738835, 0.2725526923459386, 0.18498343993909566, 0.08699897141159979, 0.00135057883387396, -0.05897707232142096, -0.09440859040613817, -0.1089745472505022, -0.10610849065349819, -0.08647581020857331, -0.04944450713313395, -0.15550809407531374, -0.2933206155344055, -0.39727604409359685, -0.45492521216786397, -0.4565945698540531, -0.396499184171692, -0.27695192432628396, -0.1163221586364839, 0.051846652542498796, 0.19831724431711092, 0.3137235265922072, 0.3984521121863678, 0.4500791848313408, 0.45779040021757733, 0.4122841359332815, 0.323632935097304, 0.21635663549792494, 0.10631385906546477, -0.0010253896830212503, -0.09857273660538118, -0.1718381650203578, -0.1992662156986903, -0.16633119125301152, -0.07363979452557001, 0.06753147525655549, 0.23303387254362912, 0.3993704301909699, 0.5474860179215381, 0.661301405401681, 0.7294069923496108, 0.7509814714456617, 0.735590601494272, 0.6945567615836741, 0.6383435500492208, 0.5826302389048514, 0.5367663918307688, 0.49470699182204797, 0.434017341376029, 0.34840841231216335, 0.24707732018578762, 0.14706589596966058, 0.06679008604304451, 0.012253492555459634, -0.02083085795959281, -0.03869930312802759, -0.04573119199158853, -0.04170198361110306, -0.025325848723690057, -0.12578361861704643, -0.23568877789998371, -0.3139969892757741, -0.3486393337790858, -0.3330168597214309, -0.26620600719628856, -0.15019962844792428, 0.006217590216556752, 0.18016442806328364, 0.3410270434103852, 0.471481136663012, 0.5674789145416421, 0.628861800821296, 0.6520978985919734, 0.6280670131411318, 0.5589906224066443, 0.4662093383255449, 0.3706980883425608, 0.2833276130339022, 0.2114763892555844, 0.16296821942201037, 0.14823931798505408, 0.17782567896713922, 0.25062704787109996, 0.3602448011632126, 0.4895368498419604, 0.6203461477041162, 0.7383408971743116, 0.829406221562081, 0.8851601579146472, 0.9012744546007218, 0.8802265502153701, 0.82806991482379, 0.759666653744641, 0.6925959067067728, 0.631906444607073, 0.5650384956584278, 0.478497385990068, 0.3775220477914705, 0.2739087301270437, 0.1822090766664643, 0.11274560157848976, 0.06574270964947167, 0.035642963595742906, 0.01590157175322619, 0.002269831752160619, -0.00503877650749539, -0.005115745832646847, -0.09019116958182342, -0.16871429796756515, -0.22168452669243713, -0.23568850214438286, -0.20311014054067947, -0.127047400859086, -0.01379342167624574, 0.13140960569828652, 0.29883641260506555, 0.46502454327648424, 0.6077593486987266, 0.716137564397094, 0.7858546985557661, 0.8176025560447525, 0.8087439582352794, 0.7581459845551101, 0.6813126659900749, 0.6011184354484872, 0.5325243764213019, 0.48230147803754286, 0.4560781184746316, 0.45709244197208204, 0.49056825027981793, 0.5543142792664927, 0.6428678442687837, 0.7452362346334982, 0.8478741052031226, 0.9397849891976947, 1.0090570657414657, 1.0478456467003014, 1.0472802468374753, 1.006752802615259, 0.9337793569867957, 0.8467094179145933, 0.7604287239254416, 0.6746414177878264, 0.5794275598480925, 0.4749549714206824, 0.3708824073226315, 0.27525297808638083, 0.19691624918052392, 0.13903349988104258, 0.09884087686562253, 0.07125877338401035, 0.05073793383185258, 0.033559337712156516, 0.019335989904389388, 0.008451316768907775, -0.052657299991794866, -0.09725227358576878, -0.12396150950301524, -0.11983634375322705, -0.07445054537270282, 0.009785376040827562, 0.12296607906490821, 0.25662188514000434, 0.4070392008445864, 0.562823574996079, 0.705515847102465, 0.8205465797159459, 0.8990659212117765, 0.9391293845062793, 0.9428754711091636, 0.9109870072671387, 0.8524414915877704, 0.7875898315104464, 0.735115942245527, 0.7024363824531292, 0.6933952476118499, 0.7083211803223065, 0.7473911101792294, 0.8080271815062545, 0.8842004432647325, 0.9678777336863701, 1.049014679879348, 1.1174899066379629, 1.1634744663211418, 1.1778567833489535, 1.1527454010040894, 1.0890351804196508, 0.9961665236618215, 0.8904396461146212, 0.7813957775949849, 0.669040916801472, 0.5536247466293879, 0.44388348993584903, 0.3454528215124194, 0.261386224786941, 0.19577900759587635, 0.14692481832569174, 0.11146529517274277, 0.08540032575388717, 0.06470711329528384, 0.046402295628191294, 0.02962060054683594, 0.014290650054300967, -0.017458715807954116, -0.02941844579717568, -0.02972124292567824, -0.008448578724320218, 0.04534351107480797, 0.13301120773041547, 0.24585820521009383, 0.37118502158919753, 0.5027364559984504, 0.6363610932272302, 0.7632051961856179, 0.8712179832269398, 0.9512568230307308, 0.9983751043129311, 1.01333528356087, 0.9996971973440067, 0.9622707575872497, 0.915201494006907, 0.8768791480811555, 0.8580765498804104, 0.8616166569031722, 0.8868615825096404, 0.93008842886261, 0.9880408220414387, 1.0540824383071832, 1.1214636760005199, 1.1823964155557118, 1.2282450185883353, 1.2510395540268657, 1.24221632152541, 1.1972115614677568, 1.117043881945695, 1.010053864206655, 0.8877840249974934, 0.7586948509130853, 0.6297684548373719, 0.5092260895948579, 0.40321004506858055, 0.3123665351963653, 0.23915249336877714, 0.18425259015396456, 0.14266300390857184, 0.11087124303710791, 0.08585985225273143, 0.06481725202174334, 0.04623377903101398, 0.029577630530620878, 0.014382792016600428, 0.01171202141924695, 0.026610287148539354, 0.04916418427871126, 0.08639547915713805, 0.14644465250877234, 0.23258555607375697, 0.3401806706669648, 0.45678707097142596, 0.5725546291471008, 0.6833546577934654, 0.7867747818846638, 0.8768527974873391, 0.9476756338797664, 0.9946811990387359, 1.0156484437118698, 1.0136989554945544, 0.9932951208543235, 0.9631916115554402, 0.9373965038483218, 0.9283817156224548, 0.9403056296951878, 0.9721242560002794, 1.018342489686291, 1.0734898911950828, 1.1309343075769216, 1.1844569252984214, 1.2282350663243737, 1.2558552090113402, 1.2607332121588635, 1.236076605930795, 1.1783727022792072, 1.0876182825765623, 0.9707524425697484, 0.8379676039286053, 0.7011118975653964, 0.5720306925747235, 0.45740019375485613, 0.3577708162259984, 0.27461561158425773, 0.21175659425914545, 0.16666934965536054, 0.13242197274424503, 0.10519890286485108, 0.08166072401630455, 0.06001563252498227, 0.040598195936739294, 0.02445029352094951, 0.011337052630268475, 0.03111592965977446, 0.06297822940812327, 0.10015013186533347, 0.14905419552244736, 0.2144309422104178, 0.2977279125583281, 0.39566011301708875, 0.4992187445870881, 0.5993604781741837, 0.690754082674149, 0.7725616848189796, 0.8434005462272286, 0.9006854733415369, 0.9411042017493793, 0.9614809302323161, 0.9626474289335276, 0.9493255360344646, 0.929122328676387, 0.912178851795868, 0.9098694326636527, 0.927536706669303, 0.963755423644748, 1.0122568916515495, 1.0653555502998595, 1.1163369647842936, 1.1594325334764548, 1.190099644449568, 1.2037846519496862, 1.195224423910734, 1.1595739045223006, 1.0935169165685628, 0.9976461348828081, 0.8786941176359546, 0.7480448620146586, 0.6186678528220979, 0.49996455133207973, 0.3943935976797216, 0.30258324788467567, 0.2293681883344807, 0.17762160545654296, 0.14288913358222258, 0.11808625308629185, 0.09775183524519207, 0.077367984691598, 0.0557064994540225, 0.035121365584062855, 0.018841604729045527, 0.007735570207858194, 0.03954802982841629, 0.07788921763699788, 0.11968925170110223, 0.1722130057153251, 0.23888119265349017, 0.317969663080663, 0.40464527237251013, 0.4918206867718659, 0.5736198050565556, 0.6462091799115514, 0.7094452754014043, 0.7640994792356642, 0.8090331950770271, 0.8412294271978412, 0.8577304616539684, 0.8576239937120483, 0.844609819688649, 0.8267078484454667, 0.8134204022381789, 0.8151881129332343, 0.8365895817182969, 0.8754147875516153, 0.9242741402526178, 0.9746174171349627, 1.0194080954331517, 1.0533044361900379, 1.0727142627343829, 1.0747237029240424, 1.0562926071951322, 1.0142952613893281, 0.9467808228644802, 0.8552095788610351, 0.7458481066016944, 0.6293261811279283, 0.5155885946417724, 0.4103903443286406, 0.31601189044252664, 0.2361152906524867, 0.175524350567984, 0.13535790692914063, 0.1116614185563444, 0.09781324637746432, 0.08597881560761794, 0.07028458401372832, 0.050248446907987306, 0.02973961356400703, 0.014031484457275662, 0.004823999290669351, 0.03707765353924843, 0.0727736033130799, 0.11073179058165562, 0.15787172709230513, 0.2179042828545149, 0.2879961395192026, 0.3615346273968445, 0.4320535134849228, 0.4949577160268018, 0.5488796048210781, 0.5948952584494851, 0.6344235827686349, 0.6672301686843255, 0.6905825733614837, 0.7018822482047412, 0.699533997260039, 0.6859784593571973, 0.6682562151640896, 0.6560839192110709, 0.6594095141998731, 0.6817097598290722, 0.7193542333236934, 0.7645214199615361, 0.8088629074772529, 0.845780102724743, 0.8706258054771442, 0.8808441597832164, 0.8751674622036234, 0.8527832022417688, 0.812227848124845, 0.7524689442815641, 0.6748958798343627, 0.5843735801749044, 0.48860723689647884, 0.3944528521686186, 0.3063846738945842, 0.22858398133488628, 0.16483609016716927, 0.11810364469117864, 0.08931451824745198, 0.07599424994885619, 0.07172953100466596, 0.0673813219348581, 0.05702246539964826, 0.04060506605244428, 0.022790573716552364, 0.009524218799794178, 0.0026399111735704956, 0.02707726860681458, 0.05379793319730765, 0.08231349703235719, 0.11719178052241275, 0.1621036043677701, 0.21493264975497106, 0.26966587079018073, 0.32099399778309967, 0.3651781795834582, 0.40172167302171097, 0.432251483959862, 0.4576200157495593, 0.47834462722993315, 0.4927426199702174, 0.4985880111644182, 0.4944852853472377, 0.4823403977552324, 0.4672084116733266, 0.45684287331764656, 0.45985120258615253, 0.47858058273537585, 0.5093178554355978, 0.54492460202147, 0.5786601689331905, 0.6054849097184097, 0.6220628078155684, 0.6268528608842512, 0.6192867420897992, 0.6000392576463307, 0.5685412163363933, 0.5240312332912975, 0.46706029991234727, 0.40113561726615726, 0.3315680878532234, 0.26287686374881486, 0.19902064658507318, 0.14351970592816604, 0.09857623371682647, 0.06635683099181612, 0.04859430575352207, 0.04333554631439499, 0.044570415984027306, 0.04441171270981562, 0.03857793297847017, 0.027364690047528083, 0.014562215826337807, 0.005222316283693019, 0.0009000877278978821, 0.013668126466354104, 0.027636120403826226, 0.04295409793731729, 0.06153958837158589, 0.08550404203435301, 0.11396653242154668, 0.1432665399057716, 0.17065569535242447, 0.19398794974761327, 0.2129635679583198, 0.22856158927554304, 0.2409233695881, 0.25066966424900916, 0.25721781237610014, 0.25916890583335145, 0.25582312204091323, 0.24844775084831788, 0.239683510767716, 0.23358894946571682, 0.23521773241213037, 0.24595517530172317, 0.2634767997618454, 0.2833804402931142, 0.3018285502627746, 0.3161025754424817, 0.3246222474784378, 0.32653066523438307, 0.3216109211634882, 0.3105917217483171, 0.29347088021491263, 0.26958474640290664, 0.2389388476818886, 0.20364918573586724, 0.16662018941293677, 0.1303744646210917, 0.09692099198336493, 0.06789370709444964, 0.044140472158275164, 0.02750214524734384, 0.019456166324835784, 0.01850813550784407, 0.020598991834897665, 0.021282272518912657, 0.018727791967557153, 0.013213010384103649, 0.0066884490464665354, 0.001914799783672792, -6.127831649637145e-5, 5.503609566243272, -0.0009985315506385872, 0.0027265118625173054, 0.014075894328031047, 0.032870582570647296, 0.05633146994637366, 0.07949120262939616, 0.10014523452020983, 0.11861203813448988, 0.13491561689869347, 0.149028404148117, 0.15998806537426347, 0.16568660703530144, 0.1663564808485578, 0.1631122986329272, 0.15630483601218761, 0.1452457381018561, 0.12966242119341778, 0.11027559246010125, 0.08794236079162693, 0.06334518519497152, 0.03580980148985215, 0.0049003706747445235, -0.029674319735177205, -0.06594128756976363, -0.10136143837963106, -0.1358415945051951, -0.17118372875098964, -0.20753120608600625, -0.2408118971196161, -0.26562945280294226, -0.28030832424634844, -0.2889580684226439, -0.2972000361973584, -0.306455524098107, -0.31544662807606205, -0.32271842624428404, -0.326125613668358, -0.3213328034181073, -0.30543680430126036, -0.27943975729079995, -0.24787811794868475, -0.2157271839566235, -0.18548742710461238, -0.1560676563156404, -0.1250995278561036, -0.09231944956562425, -0.059480087492090515, -0.028770354157718232, -0.00373249831159878, 0.0026616078954314485, 0.024253637889664927, 0.05912196979417489, 0.10163493622017274, 0.14395424913549118, 0.18206462437214885, 0.21568683649438153, 0.24536904487496475, 0.2711655355009174, 0.2911879569738457, 0.3022134802486783, 0.30407649634761236, 0.2973546022275969, 0.28153694374930005, 0.25575448601321704, 0.2207544232059715, 0.179726678765466, 0.13602350939850313, 0.09233852655684635, 0.04762265898590783, -0.0005445268938310561, -0.05527522844852426, -0.11582477715972536, -0.18074795492026574, -0.24990187360194038, -0.32342280363994974, -0.39905287044814847, -0.46915793760799435, -0.524086213723539, -0.5597408992802042, -0.5821083712989206, -0.600661026429904, -0.6186060197868025, -0.6338192892004401, -0.6434820717950303, -0.644826132396656, -0.6322141637087106, -0.6012733510848791, -0.5528760980817237, -0.4935726628012712, -0.4308667919545022, -0.3694818378472344, -0.3090669670994818, -0.24666856387681105, -0.18192824856205742, -0.11746123743608751, -0.05686535150836642, -0.008581558146753505, -0.002165385512853239, 0.02524532911280236, 0.06937863195209264, 0.12271061227640563, 0.17689794385840793, 0.22629451299223777, 0.2695637787622528, 0.3086953793790024, 0.344295841876683, 0.37363019524085633, 0.392169644656742, 0.3977084311207037, 0.38841319764262433, 0.3616988756785114, 0.31681217964725406, 0.25703159475615966, 0.1900860251117807, 0.12413162519371736, 0.06597529920574763, 0.015232181859144524, -0.033862335648704917, -0.09041990446373531, -0.15922140855387396, -0.24332869795716566, -0.34354463704290583, -0.4557274521186662, -0.5721620403849085, -0.6813777882839451, -0.771093798176551, -0.8345801587499101, -0.8763985447880148, -0.9072490085247716, -0.9325042873642893, -0.9503717311120357, -0.9567818694899765, -0.9497471936462513, -0.9256589953316289, -0.8807367620595967, -0.8146799785320634, -0.7329705492583262, -0.6427362199068741, -0.5501481065940067, -0.45730180572528095, -0.36314770064669066, -0.26775722644285416, -0.173681670431613, -0.08451138003039105, -0.015530634978701609, -0.014191220913005122, 0.010425495751226668, 0.05396825233638142, 0.10898590798869139, 0.1669656830911956, 0.22072573486674682, 0.2686973728645381, 0.3151772471101076, 0.36124213309945924, 0.4026816800795536, 0.43212579666210904, 0.4436708443315925, 0.43290454526121624, 0.3949533778325709, 0.32901353448512344, 0.24076367224136258, 0.14317404030246392, 0.05106939717760366, -0.022500189933482233, -0.07516035557897674, -0.11578935907019683, -0.16120921654969525, -0.22480463578324927, -0.31589580081233404, -0.43744856048075437, -0.5822590433475592, -0.7353856798842964, -0.8800879693754706, -1.0024614499977138, -1.0943169487991427, -1.1577230950458997, -1.2017902771381868, -1.2334282267185406, -1.251996172664817, -1.2528036752424365, -1.2347041289287164, -1.197398392202612, -1.1393388416281895, -1.0590529809650298, -0.9592291318168168, -0.8453349550432152, -0.7240464805325264, -0.600010796256455, -0.4749115719983943, -0.35006222463391495, -0.2281031849666642, -0.11166766568731665, -0.025225232362395978, -0.03550349140345042, -0.023601113559082725, 0.009711614634349318, 0.05831020357561457, 0.11298035430635685, 0.1657838406844996, 0.21648336748960048, 0.2706385971269603, 0.3282723480413604, 0.3826046605971163, 0.42255426527143664, 0.43904559877316773, 0.42602598316750256, 0.3771832397686717, 0.29142017075264415, 0.1751005164773132, 0.044880659214098846, -0.0773886446782771, -0.17115129397925644, -0.229123484722862, -0.2612853934318126, -0.2908159288686808, -0.34049236341257516, -0.4262898582899934, -0.5549984029632036, -0.7189917393044648, -0.8972624680283686, -1.0671569647188448, -1.213041596327439, -1.3265987124700587, -1.4081029382088626, -1.464080631045772, -1.5012780578665204, -1.5208095072561345, -1.5181079818806544, -1.4919024290118796, -1.4435305389199256, -1.3735292113119881, -1.280275728591663, -1.1644821511983472, -1.030562812082879, -0.8855267181740321, -0.7350285734605684, -0.5825420724863994, -0.4302996782392676, -0.28152190774067676, -0.13843394636426817, -0.038675642263598584, -0.0666036008781516, -0.07512752161751164, -0.059563071406315414, -0.023765305107970917, 0.02270092602779857, 0.07249188133508268, 0.12581209584756545, 0.18663646457039607, 0.25265012855065966, 0.3147219198343785, 0.35965855899285176, 0.3770469956211289, 0.3595163214418069, 0.3000894271550047, 0.19783231701123596, 0.05835989541708842, -0.10092251938060881, -0.25295987037457973, -0.3704882502151463, -0.44025896759981875, -0.47018746741291084, -0.4856441818793698, -0.5168010462794971, -0.5870223777096107, -0.7087687694060423, -0.8760515978342375, -1.0639947380067676, -1.2451303824804019, -1.4019637381771732, -1.526214514197338, -1.6176787044603531, -1.6805937474370876, -1.7207605413686544, -1.7411083955319602, -1.7382731319360416, -1.7094652113550726, -1.6547981844246995, -1.575184114201541, -1.4701045905765187, -1.3405592041343568, -1.1912059276507792, -1.0287436699766168, -0.8585726711180375, -0.6846508834291299, -0.5091907760903199, -0.3353251092383839, -0.16565646103132967, -0.05597552711846183, -0.1055253328562173, -0.13865698252160188, -0.14542191001844493, -0.12680940707036575, -0.09119111000033217, -0.045840922077677156, 0.007529867993902122, 0.06936375607089643, 0.1359034702624641, 0.19671653898263733, 0.23782234202114133, 0.24921643011260375, 0.2226821201317786, 0.15288845024388564, 0.040525144193867255, -0.10998085026769948, -0.2837489433660792, -0.45338859854912383, -0.5893080741779593, -0.6740337986355174, -0.7102890234015634, -0.7192716267891329, -0.7339410974764758, -0.7849740568548376, -0.8922512140181634, -1.052220907503688, -1.2372863709080104, -1.416338806559666, -1.5706244626690122, -1.6932640187865884, -1.784476602126198, -1.847367573710833, -1.8856449678584224, -1.903632602522425, -1.9006295026975222, -1.8724546445418753, -1.8162695577592087, -1.7315512431057165, -1.6187237509294379, -1.4802964379805006, -1.3215668838191958, -1.14832174829292, -0.9651578232650182, -0.776275942381505, -0.583159343054122, -0.387769270880948, -0.1928413631935789, -0.07721059667703528, -0.15007780906156842, -0.20762327577788695, -0.23714612379655037, -0.23707201137357536, -0.21452313157269692, -0.1776275142904833, -0.13128464966835335, -0.07784833724315499, -0.02148037647741247, 0.0258856603329767, 0.05085703963033288, 0.045867784117109275, 0.005270111228564494, -0.07172346166871135, -0.18215537474572285, -0.32335894231311957, -0.4856149767496506, -0.6477454890755404, -0.7846808614154399, -0.8784667916422054, -0.9257318586677244, -0.9380516700010911, -0.9448742647537496, -0.9813765367281159, -1.0750369685051073, -1.2253289601848252, -1.4021954090933741, -1.5704031731424957, -1.7115926880149896, -1.8224667986617238, -1.9051846412498878, -1.9619029257118108, -1.993829035190714, -2.0047668018542293, -1.997551232154951, -1.9691821207949092, -1.914347920064898, -1.8304791541286864, -1.7177604395765276, -1.578596524892195, -1.4178095475083548, -1.240258210108992, -1.0500039972844528, -0.8514611668973541, -0.645666975061436, -0.4332752366646122, -0.21689594008174332, -0.10156888465226631, -0.19716277586402509, -0.2757089598839076, -0.32537443254803955, -0.34406509314872225, -0.3376354981796816, -0.3153745716276642, -0.2847110362914874, -0.2504886134259194, -0.2187251474096265, -0.20142834627020065, -0.20743866450140958, -0.23798685957650978, -0.2935717272592381, -0.3705296817993868, -0.46493841705660266, -0.5750072056247755, -0.6971900247440498, -0.8218234984244465, -0.9339381803340896, -1.0196055593408133, -1.0720653882554059, -1.0926638037358196, -1.1017876941955072, -1.1327209940243341, -1.2171614947606435, -1.3581734807586154, -1.5252865010272918, -1.6796388527739317, -1.8030545010316383, -1.8971921108034422, -1.9670390757994336, -2.0148540436188127, -2.039816229737824, -2.0429394599624358, -2.028590028938904, -1.9970505102088836, -1.9438106481251631, -1.8650603223464581, -1.7606026142987914, -1.6307240250317554, -1.4770578988895466, -1.302518094982135, -1.110779905806295, -0.906648693268786, -0.6920531207483992, -0.4674308961571226, -0.23515767114603212, -0.12729041615147793, -0.24392607065269248, -0.33964379717653737, -0.40682263463467594, -0.443838883296682, -0.45577981414374213, -0.4537209105072807, -0.4478606462957465, -0.4460201512803313, -0.45549810030330423, -0.4837233435395369, -0.530283610402507, -0.5895427298119164, -0.658973340649494, -0.7334929490706443, -0.8057376099941504, -0.8702421574692997, -0.9297406017453644, -0.9889566457311351, -1.047666675141425, -1.101017601942179, -1.1426854377143525, -1.166906708021991, -1.1820334748718317, -1.2131231302188696, -1.289841245472946, -1.4178300430487671, -1.5705885197931235, -1.7094981055304772, -1.81598874241848, -1.8935985359652234, -1.9508438285047707, -1.9913460665356935, -2.013471930450502, -2.014592179001866, -1.9963333187766847, -1.9614018442984287, -1.9091631465762058, -1.8371341225195625, -1.7450217597440758, -1.631733822518923, -1.4946373468514322, -1.3324120739387812, -1.1465384734730562, -0.9417587817878372, -0.7223838786485923, -0.49023593591278597, -0.247661655899227, -0.15237091651106616, -0.28860468671511574, -0.39979306363273287, -0.4821521820123425, -0.5353088767545898, -0.566245481080427, -0.5902303696122612, -0.620252021001414, -0.6640651009808077, -0.7250841412400726, -0.8023678750806605, -0.887863860717317, -0.9740306660620215, -1.0599657819289188, -1.1378559426090595, -1.1901729021180742, -1.2044908891092112, -1.189810017497657, -1.1654671361553413, -1.1490866439720158, -1.1482649317146467, -1.1606623040048798, -1.1765116958319346, -1.193354571875704, -1.2243628869185186, -1.2924712413104973, -1.403029874037752, -1.534679652550255, -1.653269686831359, -1.7412869216268552, -1.8017687279352212, -1.8459186868080806, -1.8809159024689426, -1.9050412915580486, -1.9127618328598943, -1.9005002030637028, -1.868449155295647, -1.8196255481291488, -1.755196539349939, -1.6763993667180883, -1.582343909983169, -1.4681490964454746, -1.3273449315301382, -1.156678808109972, -0.9586367855785566, -0.7394199015734656, -0.5035721721702903, -0.2551004535862498, -0.17372990262335616, -0.3284434063882476, -0.45469448218368125, -0.5500286720757945, -0.6181207496323604, -0.672362838083829, -0.7315065779477579, -0.8068343733509408, -0.8993576163979371, -1.0048821787635884, -1.1171210785226726, -1.2286092010416751, -1.3374865793543076, -1.4436158437145497, -1.5307561709650834, -1.5695085107804432, -1.5437347974030136, -1.465481004601771, -1.3626466493671519, -1.2671429816322741, -1.1990058835871904, -1.1641664956578757, -1.154519632662262, -1.1612636502503981, -1.1857330671186777, -1.2431080384830713, -1.3358836127053078, -1.445045724640416, -1.5402967975993003, -1.6064445787884547, -1.6458718935424845, -1.6710300721140043, -1.694953837412283, -1.7190484677680573, -1.7364775230404375, -1.7388276847215351, -1.7202695712490028, -1.682238821675034, -1.628998119836843, -1.5651058671803018, -1.4919184629760076, -1.403769522621118, -1.2901874187441649, -1.1427539181009407, -0.959684577900659, -0.7464972273332604, -0.5103693460577519, -0.25893778838695214, -0.19023740656877217, -0.361165734833384, -0.5010642591236272, -0.6086402862745842, -0.6960992087322408, -0.7830985322537963, -0.8849983784607157, -1.0035028638907615, -1.129947771342577, -1.2561071324450752, -1.378417436029173, -1.4992610644472293, -1.6247314627808151, -1.7504079599630016, -1.8502505506546991, -1.8914759829388357, -1.8560957552863109, -1.749235612215262, -1.5961156783952148, -1.4340780996559634, -1.2940424614884058, -1.1953123994694885, -1.1393490091455423, -1.1171442162723069, -1.1219744933621063, -1.1611769658675781, -1.2347083934204062, -1.3236808614088094, -1.3996883493137233, -1.4468139029953007, -1.4654452572502557, -1.4663088929900578, -1.468097574009207, -1.4808960823497845, -1.500512150557635, -1.5163153747066183, -1.5175697196035138, -1.5004725777236259, -1.466729477930969, -1.4226991972819656, -1.3731419974260872, -1.3133766269448104, -1.229974229021377, -1.1105391865946548, -0.9488139723054656, -0.7471769484993717, -0.5140134993019253, -0.2613918024258284, -0.20099387008937103, -0.38372368430081666, -0.5359752958442623, -0.6605652523904131, -0.7770580752597941, -0.9035666244334063, -1.0434778182038544, -1.1872210970285781, -1.3220501895063301, -1.4439029338121807, -1.5579460783617811, -1.6770547712402488, -1.8110799600935865, -1.9502363132983547, -2.0677493009857524, -2.134664748005375, -2.126831700040566, -2.03303129154498, -1.8676275224017913, -1.6648367676550768, -1.4626756982590186, -1.2948087973353748, -1.1765466011900387, -1.1052598736759787, -1.0715818308674767, -1.076591023419323, -1.1178650998297157, -1.1797488389627244, -1.2357909672221887, -1.2677373936404364, -1.2716953940756242, -1.2530654161597259, -1.2300348124571254, -1.2218180530460903, -1.2320255656628816, -1.2520966101389586, -1.2702317064750392, -1.278812161162942, -1.2740342207807063, -1.2586187308890135, -1.2385681285611825, -1.2107580145687842, -1.1599784641708661, -1.0705685034990369, -0.9331961185348998, -0.7465229007714677, -0.5185083999741668, -0.2648008774744217, -0.2065248645938206, -0.3976380613604947, -0.564194604779636, -0.7136993814291523, -0.8654897693407907, -1.0260809322418314, -1.1858636584520488, -1.3312937203541333, -1.4547207003851916, -1.5599170622063339, -1.6588126771913034, -1.7688581312629568, -1.9000015031242579, -2.0425154918060646, -2.1783343649275104, -2.2848177759402715, -2.330274567325845, -2.2871115540302966, -2.1525892960730793, -1.948336650604461, -1.7111826048214225, -1.4852669302317805, -1.301907539105233, -1.169251274539163, -1.0804808402399024, -1.0332905209461574, -1.0229155015698845, -1.0383837971882446, -1.0585625725528582, -1.0640496858100001, -1.05049601211458, -1.0190894649577014, -0.9799625410877942, -0.953393152347341, -0.9503724919121406, -0.9684504536960378, -0.9976755451277249, -1.0303257314449186, -1.0598645839661358, -1.082806500353144, -1.1006221423581801, -1.109339822237444, -1.0923244079779904, -1.0319490236546767, -0.9180179985303166, -0.7469446863626317, -0.5250728554817857, -0.2698765660016907, -0.20967334434179477, -0.4091543379460131, -0.5939295249477488, -0.7732808610606083, -0.9572320122693806, -1.1364509883924419, -1.294433288877146, -1.4236362895942467, -1.526077530612441, -1.610608803209302, -1.6905247230604656, -1.783844277918431, -1.8990996283648867, -2.0324894795387123, -2.1806619846754223, -2.330685308557433, -2.447666575407149, -2.4875050343683274, -2.423815906250571, -2.2556098738119115, -2.012215206968918, -1.7440070723733543, -1.4987275879678938, -1.296497627686794, -1.141710836500612, -1.0317422103765885, -0.9618271741242513, -0.9199564972935305, -0.890254321832143, -0.85261382860373, -0.8050082791071408, -0.7546549395521351, -0.7060034817971105, -0.6714648531954721, -0.6623403978470035, -0.6803957722480638, -0.7190706302611165, -0.7731834669440513, -0.8383011023309184, -0.9061865238518577, -0.969215922911339, -1.0180547377640372, -1.0343959752608658, -0.9999937553850605, -0.9060146866226484, -0.7488426501247858, -0.5331314230725772, -0.2761329867056111, -0.21339413015402228, -0.4239178332353347, -0.630989739979617, -0.8398335036784894, -1.045588853336709, -1.2253652725970738, -1.3638778118822688, -1.4648933217299285, -1.540065775608043, -1.6001215756521978, -1.6588355085987754, -1.7312014788921746, -1.8231152985900316, -1.9404481735615653, -2.0973813435290576, -2.2941080120889854, -2.492186413708961, -2.630572063869219, -2.6553427653099755, -2.5409576490953314, -2.308906736874633, -2.0117262518379215, -1.7043774513732017, -1.4233642453570052, -1.1924522949846912, -1.0169052252131399, -0.8936465963540777, -0.8060084346805335, -0.7338834371319586, -0.655974967775906, -0.5666127346251659, -0.4832996565834092, -0.4185163971504083, -0.3793136958651661, -0.3720084794943219, -0.39737296109423526, -0.44922213206463874, -0.5251634431299337, -0.6248875767817159, -0.7386488435633276, -0.8490563263761702, -0.9381281135620537, -0.985428128322592, -0.9731948390281155, -0.8948939460069395, -0.7490264285511496, -0.5394585630542202, -0.2817035382503195, -0.22010946914401489, -0.44506383757496387, -0.675360311162785, -0.9074938139110971, -1.1217102472886697, -1.2882591204192722, -1.398140026206027, -1.465431318811346, -1.5086296008443452, -1.5419330229599117, -1.5801993779500374, -1.6338690990043399, -1.7055604991354496, -1.8099536583478082, -1.9772482237993358, -2.2169378033960436, -2.4875189872679315, -2.7158173481720973, -2.824234696694933, -2.768080652211704, -2.558667179154992, -2.2374883009021747, -1.8606360457349918, -1.48934066461528, -1.1722244350912474, -0.933856598689208, -0.7718677398767545, -0.6652365276837134, -0.5784357666140213, -0.4822069815133746, -0.36502015463988835, -0.24659616225692804, -0.15379196880660725, -0.10111273167051689, -0.0946136760903845, -0.1312780910952749, -0.20083693483905274, -0.29968084173247966, -0.4302477098247241, -0.584350076173545, -0.737901471018621, -0.8636275528252848, -0.9380287979008024, -0.9446779451984031, -0.8794069251111698, -0.7435395420471953, -0.5409275521139308, -0.2847570419660082, -0.22964574070842053, -0.4699037917279107, -0.720102247564168, -0.9668249340853625, -1.1796978050078375, -1.3290675514712413, -1.411978864940674, -1.4472582331617012, -1.4587911635292476, -1.4664604845283546, -1.487459031017452, -1.5281518090267414, -1.5881360543105032, -1.6882147193281063, -1.864948662996717, -2.129579792340714, -2.444909317791065, -2.7356784795682154, -2.9115385273932213, -2.910765384337592, -2.7222974605640426, -2.3674916752970154, -1.9105318898452845, -1.4388580753794553, -1.035419492167275, -0.7476790009819732, -0.5742241333698169, -0.4832051764363457, -0.422382991585492, -0.34210130579889, -0.2200350881013565, -0.07576818602689576, 0.05157681021141478, 0.13124293303344364, 0.14772539159186193, 0.10420057401856384, 0.01745640224121511, -0.10294415262567107, -0.2578937187099263, -0.44166067323826724, -0.6281312745317638, -0.7829862645279223, -0.8793829665173365, -0.9021655723862914, -0.8493303687701376, -0.724468461748436, -0.5315135207426639, -0.28173576065988426, -0.23826513272097669, -0.4905806964658199, -0.7539622192890866, -1.00675005647306, -1.2146686412319967, -1.3521388648150723, -1.4190027443153994, -1.43344200217602, -1.4222315595199837, -1.4113664091526354, -1.4197547203162924, -1.4505501813790804, -1.504335166186023, -1.602743396401075, -1.7757098555364355, -2.0334532664549467, -2.351316421659429, -2.664292222228231, -2.878207858243902, -2.9158930167397332, -2.740074672417793, -2.3523540293139145, -1.8147615514713928, -1.2431930854694544, -0.7613223611070721, -0.44879921836664205, -0.3018288370234372, -0.2671616089412061, -0.27219466858816554, -0.2467298645412418, -0.14795418804055374, 0.010074699122340887, 0.1757373381652365, 0.29576284837348543, 0.33805913886667116, 0.3003670119775713, 0.20356052960289492, 0.06661769651742541, -0.10496653135287416, -0.30570428091399804, -0.5112595030232999, -0.6852556928457532, -0.7984475323992831, -0.8359404701502883, -0.7966520696122651, -0.6856780627629693, -0.5068806196121823, -0.2702848175150637, -0.2425308155967793, -0.5005632171513765, -0.7685316870293981, -1.0205230804060368, -1.224007412451347, -1.359707245133207, -1.4267649769205866, -1.4383241544938712, -1.420310826814442, -1.4012691586770032, -1.3994076020330435, -1.4190738132658294, -1.4641388719360993, -1.5502388644559735, -1.6951993399750047, -1.9083337832022724, -2.182683821654015, -2.467279287411104, -2.6747089859606237, -2.7295097431848387, -2.5771342940776276, -2.1860753769364822, -1.6002213962209408, -0.9534366884334872, -0.4095317719365342, -0.0865238412366943, 0.011992693196384262, -0.03621090590720537, -0.1332366871082157, -0.18762769680475105, -0.13649498265337226, 0.01721138675388521, 0.21673523223473817, 0.38579640057474723, 0.4689835098822788, 0.4532530245945379, 0.35992676875333274, 0.21599050329589645, 0.03653546546198271, -0.16966752799962279, -0.3813866118482148, -0.5650047517965412, -0.6904355401595484, -0.7415348508434584, -0.7171148932717467, -0.6234268931831607, -0.4644553464444366, -0.24917339139071357, -0.24079818668025313, -0.497252218976601, -0.7621935827534486, -1.009051782393261, -1.2112377576294007, -1.3554902465499623, -1.4380090475444154, -1.4642185966498562, -1.4554294425530752, -1.4375991579528957, -1.428039417227525, -1.4346709530187978, -1.4620983129509413, -1.5165650162711224, -1.6037366694077837, -1.7359160663845168, -1.919771206065631, -2.1188446742571947, -2.2714750075013357, -2.3230279374735594, -2.215415974392855, -1.8907765648883013, -1.3591227472856302, -0.7323899024758498, -0.18618523190058767, 0.14495285512127648, 0.23143247690660562, 0.1447772216224608, -0.013979918273585664, -0.13917073498739804, -0.1438070604247431, -0.011563113059081477, 0.20428612612347077, 0.41493627231359453, 0.5439575430708005, 0.5627595290499369, 0.4882236515964797, 0.3514707370892286, 0.17476992128508434, -0.027664465645560476, -0.23678185164428714, -0.42354300461112204, -0.5579207948561893, -0.6220544919880583, -0.6136006878893623, -0.539998620817379, -0.4058172490352454, -0.21918942917417322, -0.23401240506317766, -0.4830119672880907, -0.7390970724557169, -0.978693871411769, -1.1827123090367258, -1.343466324135002, -1.4529954568576549, -1.507125683674185, -1.518819654951523, -1.5098902407090378, -1.495667987598399, -1.4863664973546715, -1.4840041715050782, -1.4827078960725295, -1.4826613351076616, -1.4992532424985772, -1.543630427396294, -1.6026177796517533, -1.6587074195187754, -1.697047943427749, -1.6748209385359911, -1.5152385962964263, -1.1802948306012724, -0.7159403258661111, -0.2546136529890813, 0.06452212220212473, 0.19226850105122123, 0.1618127866941801, 0.03515395365340217, -0.09418983268414749, -0.1300103909127935, -0.02719684482545661, 0.18196856219814228, 0.4120068539780942, 0.5766715217169095, 0.6337946057608579, 0.5913001408034066, 0.477558451685403, 0.31648517687022626, 0.12585283197370079, -0.07537603970435867, -0.2614678208824122, -0.4030671367744366, -0.4806858530025161, -0.4901431094656123, -0.43925551174211325, -0.33387867055798004, -0.18174334050413232, -0.22448223951004437, -0.46226559441768034, -0.7055836684097184, -0.9357418354003031, -1.1428040745186046, -1.3243840659281771, -1.468221334243153, -1.5589682837769792, -1.5992942514127169, -1.6044959941740122, -1.5882805496049042, -1.5616721967572054, -1.5194216846628295, -1.4446455696899316, -1.3344039200445907, -1.202030052497988, -1.063728566277943, -0.9448426348415877, -0.882854123454124, -0.9125442175104743, -1.0164581167688105, -1.091100153583639, -1.0363334417479686, -0.8252353494465693, -0.5296946920576456, -0.2626153095943237, -0.07916128399327449, 0.004784266951065319, -0.0048272117665222256, -0.06154361641034345, -0.08622132919198905, -0.00749486094407802, 0.1763950228982853, 0.40132917282649944, 0.5851836235497521, 0.6777106840452716, 0.6756297484629911, 0.5987541580837829, 0.4657654791486545, 0.2943439736992214, 0.10453572700803646, -0.0787091857632134, -0.22651240828230254, -0.31818555449504665, -0.34749327676156194, -0.3225089580494504, -0.2503145541423508, -0.13802745470833352, -0.21416289171393138, -0.43893701485745246, -0.6664537332159547, -0.8842779577520217, -1.0925656578638503, -1.2948819108801994, -1.475478347827305, -1.6083606589653248, -1.683363578020921, -1.708348084394922, -1.695060532903019, -1.6521888137187064, -1.5662598167890822, -1.4106204377649598, -1.1783270734304434, -0.8817896872417053, -0.5483869259785737, -0.2413549559224121, -0.05026710434115696, -0.0842760981882506, -0.3492445987328634, -0.6810071644513481, -0.9053520737988394, -0.9476861756858215, -0.8381338764138827, -0.6520617918828533, -0.441893348708342, -0.2528383080853154, -0.11814416427301531, -0.05326973786875773, -0.03001897108854937, 0.036205862470017655, 0.18880715857944702, 0.3950563089372845, 0.5859965623541462, 0.7100498814394282, 0.7527284790450246, 0.7213792373063479, 0.6258894773298856, 0.4798963446329287, 0.30464958006888804, 0.1262719198132585, -0.026528879472272695, -0.13220441502935865, -0.18343306527282022, -0.18849920936259557, -0.15500969267477988, -0.08832160437861411, -0.20483296745254484, -0.4158560422185035, -0.6246601801994951, -0.8249751266338156, -1.028107146482796, -1.245500256648547, -1.4610231957451427, -1.639516582315411, -1.7568930094465525, -1.8092342849521204, -1.8045435198993507, -1.7501767477586698, -1.6266480625949375, -1.3994603331568434, -1.0605172403344063, -0.6251988411053723, -0.1288496226952499, 0.34392347074871804, 0.6549148796639916, 0.6182031717256166, 0.19895576890962208, -0.36860881198681705, -0.8325287586063096, -1.0861013600115037, -1.133095479970501, -1.0268671526006339, -0.8144404146045812, -0.5509769979250455, -0.28694056461446477, -0.09633807794223807, -0.00698614131997724, 0.06637456869279376, 0.20006618251639294, 0.3922004099361974, 0.589510454873279, 0.7440769158574672, 0.8330525880868649, 0.8513572062434771, 0.7983601240470073, 0.681759437594066, 0.5232722707367167, 0.35148802278747693, 0.1951303342298845, 0.07580748771530234, 0.0006171043044806461, -0.03853362014007335, -0.04866547675490116, -0.032948914740927204, -0.19663914989529593, -0.39354956572807315, -0.5808346695943302, -0.7576345457208071, -0.9462910596745973, -1.1682544497801726, -1.4112687663487475, -1.634568152112528, -1.7997730150518607, -1.8884760386732211, -1.9022808403137774, -1.8473446315461293, -1.7043912067960334, -1.4375434605484905, -1.0385234069674998, -0.5274300787316892, 0.054722460441205614, 0.6112937521098274, 0.981621943961656, 0.9501248456206992, 0.4630359929937659, -0.2350484031274005, -0.8559320510785464, -1.258648436058206, -1.4196314002039572, -1.3721369588548176, -1.1660751577515476, -0.8601647714392389, -0.5154504010016784, -0.23196345417701117, -0.07082952231603433, 0.040688297124465166, 0.18925496837248143, 0.3893547884251315, 0.6020578123564361, 0.7891347743139667, 0.9241003640260449, 0.9909816850900041, 0.9799591653831825, 0.8930340009504171, 0.7524378249091663, 0.5892516973743984, 0.43161453360448193, 0.2995815306523334, 0.19872006315742038, 0.12218532621176742, 0.06478757693767809, 0.025924946639887626, -0.1873794988457102, -0.3690682138223836, -0.5332440268073029, -0.6823395239125583, -0.8476114415790399, -1.0614718946611756, -1.3194581586537837, -1.5798454515832625, -1.7941913598650026, -1.928850680365697, -1.97409673286981, -1.9347246292621063, -1.798904477572574, -1.536056103959405, -1.1404375088668761, -0.6359954403226015, -0.0673050354573696, 0.46909595661571746, 0.8275029124763645, 0.8201971880711124, 0.3792681819765502, -0.3048324968750106, -0.961221065620038, -1.4299078985017366, -1.6550966484718754, -1.6463206070620664, -1.4548995004899372, -1.1429905170526649, -0.7754575492168201, -0.44710728611473305, -0.22233304746026802, -0.04689888802940966, 0.15211781912436703, 0.38567166805784886, 0.6259034220701555, 0.8482490159810472, 1.0260527749794568, 1.1353919230521863, 1.1603590062010236, 1.1006401512118302, 0.9787862170250713, 0.8266012512530303, 0.6703356974057102, 0.5269660912269271, 0.3998326775602614, 0.28411207797529014, 0.1778968914190661, 0.0840106621595854, -0.17499090672620968, -0.3397927003255263, -0.4809978124333156, -0.6019941165157912, -0.7390221123991685, -0.9334445842296565, -1.1908702008757135, -1.4739554978525706, -1.7299317303922896, -1.9143800227655257, -2.0054350548996918, -2.0023748605844647, -1.9032087752707223, -1.6884188354536889, -1.3536400791403351, -0.9206454284487618, -0.4297638308367507, 0.02915198108396384, 0.33813327306882107, 0.36308387295317013, 0.03967690035857741, -0.5142764355918356, -1.0924378044425913, -1.5444672935962234, -1.7817962387932402, -1.7950461264277675, -1.62903982502598, -1.346182980756752, -1.0057036484113255, -0.6780416278675593, -0.4079188657180326, -0.15943249799379, 0.10732612377769142, 0.3874108019967438, 0.6627177370157401, 0.920168350656656, 1.1327700949557384, 1.2727412401296072, 1.323776448114047, 1.286908940750408, 1.184231126605446, 1.0457938860591056, 0.8938856355217555, 0.7413520284182696, 0.5892314187732741, 0.4353375516854967, 0.282397545280071, 0.13722665590874242, -0.15803344530383237, -0.30418044240607456, -0.424700977509677, -0.5218371597819034, -0.6309332053628307, -0.7981021803519465, -1.0395280059541763, -1.3267938445541412, -1.6098804247272116, -1.8398987163448177, -1.9853810831103509, -2.0378113145961536, -2.000032430222199, -1.8634917617347562, -1.6260197113321107, -1.3012627397958818, -0.91641695115524, -0.5454228058634343, -0.2862111045000823, -0.22908105937105644, -0.4218978174174355, -0.8017905124504894, -1.2351123690194057, -1.597838584748494, -1.7955399366627713, -1.809171078256721, -1.6753612092785963, -1.4425816638044948, -1.1538682883694031, -0.8484867121308715, -0.5474376564559894, -0.23641645104532477, 0.087410201290756, 0.4082390633131428, 0.7159384849901292, 1.0006061936796036, 1.2336310528505505, 1.388839898439747, 1.4544294000887557, 1.43485583948905, 1.3506775842225522, 1.227849985646744, 1.083014753320355, 0.9240111701181307, 0.7502677384286041, 0.562950741005673, 0.37016634416780964, 0.18205331230836022, -0.13814058332032184, -0.265548618040409, -0.3695415491639879, -0.44953825523858476, -0.5347489668738327, -0.670088836103969, -0.8812664711886047, -1.1529883490617123, -1.443392609063881, -1.706337801152664, -1.9062236087271132, -2.02531472792065, -2.064631724966356, -2.020800317473672, -1.8920611907322353, -1.6864518697003454, -1.418275575684194, -1.1387406327491463, -0.9230723387060361, -0.8383582484669374, -0.918398001888364, -1.1325662639055434, -1.3952970255344956, -1.6159476796283423, -1.7252856927505835, -1.711202981761378, -1.5983395760980328, -1.412615615237445, -1.1744129709929563, -0.8943556249444629, -0.5809363493624273, -0.23879352985080116, 0.11278007246483142, 0.4561018232429037, 0.7829143723388468, 1.0788033758890228, 1.3145610821781843, 1.4706490297602672, 1.5417628226895088, 1.534651885838715, 1.4669274454066106, 1.3595138511101181, 1.2227122694140753, 1.0597118855817085, 0.8694380227892605, 0.6566928731152403, 0.4347032900530909, 0.2152947311219605, -0.1182018490295842, -0.2285387274043658, -0.32019790928205744, -0.38945503755809313, -0.4562931292052885, -0.5593647401511078, -0.7301436805638543, -0.9682708195937813, -1.2456429858201716, -1.5236984616131204, -1.7676054709142828, -1.9517117103020813, -2.0687949427593586, -2.1163056227080195, -2.0911459620965207, -1.9969562202861064, -1.843498318974379, -1.6613326446805081, -1.4985898601327572, -1.4012448863555658, -1.3946106782554282, -1.4651580106518647, -1.5587129337470589, -1.6203251923763995, -1.6190295909070826, -1.552735089912079, -1.4352930406881914, -1.2751165479158355, -1.069981845548112, -0.8138830458121664, -0.5075596668288209, -0.16571736384581742, 0.18572538942400715, 0.5291787802409509, 0.8528356762954397, 1.138066480070363, 1.3600150714852302, 1.5075332047053442, 1.5789586959673831, 1.5807335954023292, 1.5269774701134378, 1.4329372885713136, 1.3032759283924804, 1.138347551674889, 0.9379302306490376, 0.7103452774307193, 0.4719010822214406, 0.23469628963866027, -0.10056503744944054, -0.19688204370971868, -0.2800060504094169, -0.34282190949370817, -0.3955870978454671, -0.46807908739816595, -0.5935558243379848, -0.7856176642135256, -1.0317365354699743, -1.3051420660588278, -1.5764758148055416, -1.8150753817784213, -2.0011013761383123, -2.1258085671998845, -2.1870273645457328, -2.187089103023652, -2.133612213680373, -2.044683182234658, -1.9443254996427224, -1.856460291302511, -1.796060866961702, -1.7599916911701485, -1.718947758946235, -1.648852776098041, -1.5460151126382693, -1.4158152349724888, -1.2665400620391534, -1.0981896628795407, -0.8985365034981627, -0.6544476172376213, -0.36318700274650867, -0.041868232866447974, 0.2867062381306261, 0.6053237578819927, 0.9012658987074688, 1.1576119721454012, 1.3569950253204202, 1.49344158610179, 1.5638441200296656, 1.5722252727206925, 1.5293473956783992, 1.4453512390748784, 1.3211724548523647, 1.156416666724327, 0.9529895769278683, 0.7219067509098521, 0.48044266737787616, 0.23939409948144744, -0.0855133160905376, -0.1711993412436828, -0.24975560203872393, -0.30991566044988217, -0.3523487314084159, -0.3979901157863756, -0.4788518791793685, -0.6193952249931419, -0.8222193367938357, -1.0716116589122184, -1.346388741140293, -1.6178875176001275, -1.8564944326376225, -2.0430455324393924, -2.1718802684911807, -2.2466913072349293, -2.2733213814202724, -2.2617220885998903, -2.222665594658247, -2.1623519703804064, -2.085140441032078, -1.9912516090966672, -1.8698204980475974, -1.7142993085569018, -1.5343195125122262, -1.341253172534456, -1.142327199708063, -0.9403684601635994, -0.7234527830401414, -0.47926871218154865, -0.20525372287186402, 0.08404759720569376, 0.37269820917312974, 0.6485828155845522, 0.902748212700153, 1.1226665119451698, 1.2985013159741579, 1.4248790094807111, 1.4944086308714966, 1.5080628188447454, 1.4735510420238551, 1.3966578040838526, 1.2771493122087503, 1.1160040591586982, 0.9175463747048851, 0.6946591699544946, 0.46306021807318676, 0.23117891089547224, -0.07396162155217707, -0.15206787191641336, -0.22899922730401592, -0.2904387600256741, -0.328151519022874, -0.3541691327293462, -0.3965888591134296, -0.48622352529856694, -0.6391043179467892, -0.8506803786241821, -1.1055579075447421, -1.3805797885577447, -1.6452737149218788, -1.8735019440871097, -2.053148099550745, -2.1845407441436033, -2.2722185840341798, -2.320202325189217, -2.3334365609683894, -2.309098683182546, -2.2428752694450216, -2.13452648026175, -1.981652115723356, -1.7848637697299325, -1.5584417224274603, -1.3180590286234501, -1.074878271264547, -0.8368513385442229, -0.5979001384366661, -0.35066395427988534, -0.09545501283160393, 0.1574641773281738, 0.4012378923436521, 0.6313960371984915, 0.8426287543979616, 1.027709376486733, 1.18232753684216, 1.2994426927617235, 1.3686151504170112, 1.3879895488043623, 1.3610022931350714, 1.2898931448368094, 1.1758347584122226, 1.0231868156272226, 0.8389278673226006, 0.6354486934758686, 0.4250109343451335, 0.21289387715929042, -0.06821029729859085, -0.141666410424145, -0.21782457379764888, -0.2832165647444275, -0.3235264463886082, -0.3410887552843983, -0.35683720954753, -0.40313142406297925, -0.5055622302884165, -0.670154478241027, -0.8870260497673975, -1.1386162790718306, -1.3998220579850467, -1.6448669601029402, -1.8560818529094434, -2.0279175771332913, -2.160928310234124, -2.255161446721979, -2.3107272556387874, -2.3221260903979033, -2.280893106018549, -2.185272616766392, -2.0350992019097554, -1.8326666381284458, -1.5912771788738178, -1.3292974125391501, -1.0620201687399977, -0.8020356925036018, -0.5500365050086136, -0.3057334069028328, -0.07187391339455279, 0.14861283956653812, 0.3551545782092313, 0.5468944271163227, 0.7205427410224066, 0.875018454090688, 1.0098729845739622, 1.1172489750898495, 1.1862756641027428, 1.211884230054274, 1.193013017910146, 1.1294253491905992, 1.0252446857925523, 0.8885231635809457, 0.7277762881216976, 0.5531278017237337, 0.37193711782662714, 0.18718320925330803, -0.07105796425745796, -0.14291125357237414, -0.21650182490594527, -0.2849882967875952, -0.3330569836121403, -0.3537683468151197, -0.3580945743645596, -0.37473747027525683, -0.43399220729529997, -0.5501323211929244, -0.7187969802275502, -0.9281462445550213, -1.1610478761687741, -1.3979738752101896, -1.6200107889910067, -1.8152776472761, -1.9792750501512373, -2.1075398248711763, -2.1963273886072456, -2.23861950898673, -2.2264978761730987, -2.1558198798365376, -2.0271931849289837, -1.8421301218296142, -1.611092427808864, -1.3513190600445997, -1.0823349330998162, -0.8203750039565543, -0.5726541087357363, -0.34347786573608746, -0.13216733318674914, 0.06333542594824446, 0.24321701273519097, 0.4054606746174504, 0.5482245826277332, 0.6760797193223507, 0.7911595445949543, 0.8870967790622176, 0.9544135577300283, 0.9856805163322901, 0.9760794970743686, 0.9247668864550911, 0.8383009618533784, 0.725989914288065, 0.5965656561841913, 0.4570530432229447, 0.31019378459151736, 0.15711915621570563, -0.0816040308833116, -0.15502443796349466, -0.22357508853745234, -0.2907660821539719, -0.3466485827141828, -0.37853237296796016, -0.3862845708239241, -0.39022151063274213, -0.41899291368191294, -0.4929812936448916, -0.6139146592567191, -0.7745655703342935, -0.9645754521270088, -1.1730064809077037, -1.3849249391580047, -1.584761806059613, -1.7623245217333277, -1.9093872826028973, -2.0190907422455426, -2.08382748909343, -2.096404792931481, -2.052084226263192, -1.950610018419709, -1.7938821959047964, -1.5886030762913799, -1.3503494168031285, -1.1008590524474575, -0.8587473036278606, -0.6352865207222917, -0.43243798781082277, -0.24565458635867282, -0.07191555297786574, 0.08714153918597657, 0.2264087158064584, 0.34492673826771164, 0.4497715838637904, 0.5448004613185778, 0.6272462338484603, 0.6903454149898087, 0.7255923726122039, 0.7264672005269361, 0.6926640941885805, 0.6317448785993781, 0.5513336935240764, 0.4585939531702245, 0.3574890451793485, 0.24654876028458345, 0.1261488672906259, -0.09338319505650428, -0.17055644374455606, -0.23407865230194655, -0.29558045957587703, -0.35469320334516513, -0.39951320432568305, -0.4213490517408131, -0.42869979006333125, -0.4433954226002124, -0.4869322492306028, -0.5679225482835807, -0.6840312777113436, -0.8293008787692308, -0.9990564636663115, -1.1840887699765799, -1.3695117325540165, -1.5410227608725513, -1.6881817362507032, -1.8027663418445734, -1.8769916915635314, -1.904285995734277, -1.8805371175402141, -1.805058027166698, -1.6797347111229841, -1.5089442327211158, -1.3071815458427714, -1.0949521284514314, -0.8912490296676236, -0.7055649465367595, -0.5364144569289983, -0.37763264727007545, -0.22668100905287228, -0.08756000787237161, 0.031646650240853696, 0.13019844659881963, 0.2150467491004067, 0.2916587988240127, 0.3607477272220384, 0.41814865861310274, 0.45639858027524044, 0.46902715303552844, 0.45650203639015496, 0.4251384856798997, 0.3797388419103548, 0.3249438256205547, 0.26126501122598056, 0.18479835564588085, 0.0958862750626522, -0.10045032037245746, -0.18223632279003013, -0.24339129199738133, -0.29715041262304864, -0.3530185926378063, -0.40660463443217904, -0.44609136434528845, -0.4684918018711884, -0.4847070942356491, -0.5129760171532618, -0.5656347963828611, -0.6468277723481631, -0.7545476266550311, -0.8863718259549459, -1.0370110955922633, -1.1946349783996133, -1.3450253306203679, -1.4767273813158066, -1.581772265859085, -1.6525316769280394, -1.6837225185396718, -1.6722356590626546, -1.6181266784443369, -1.5227900976870925, -1.390197692088621, -1.2322898092079104, -1.0665086099534535, -0.9082860185477063, -0.7635864526135634, -0.6295815635409129, -0.5006056505704551, -0.3749288899991396, -0.25818430977336265, -0.15897480698250652, -0.07822346515309363, -0.010564705966898217, 0.050283774881702104, 0.10747198998700491, 0.15954123134410111, 0.20082570687468557, 0.22701340661191094, 0.2379723613063794, 0.23655422585146146, 0.2248517710413065, 0.20501205143915016, 0.17454428560700994, 0.1287794124847794, 0.06848804836522428, -0.10059921641005709, -0.18566384611196854, -0.24801555019963414, -0.29627671551578, -0.3455117255034132, -0.40104118380560394, -0.45444212499764874, -0.49545383997174536, -0.5237745466201494, -0.5503054052654999, -0.588354560478465, -0.6464136494472036, -0.7266351931570322, -0.8269241079526356, -0.943439523293011, -1.0684411449586608, -1.1908164736204374, -1.3004642323560678, -1.3888506623928394, -1.449118201781479, -1.4767469390750834, -1.4701139170707007, -1.430361470036138, -1.3598763758184103, -1.262439390866202, -1.1462520290347473, -1.024461832892252, -0.9079670952446923, -0.8002107977507794, -0.6985842035747637, -0.5991574379968035, -0.5010226680227053, -0.4092186028164582, -0.33053010297506413, -0.2668757084406417, -0.2149305159209616, -0.1672981524688284, -0.1189211769526255, -0.06992639927504853, -0.023892484756839843, 0.017330073729901738, 0.05178068124143285, 0.07771369990215653, 0.09523636628331744, 0.10426404499724648, 0.10061656648378775, 0.08068964149890998, 0.04505352408431858, -0.09649634117829285, -0.1822952138483082, -0.2484724461204822, -0.2972506042861827, -0.3416575887753888, -0.39266394195155135, -0.4490724738666401, -0.5016761413022034, -0.5437177005100439, -0.5778182846305332, -0.6143016315006302, -0.6624311098611155, -0.7258291630326023, -0.8029612088140008, -0.8906265076399456, -0.9842195424717566, -1.0776992166355626, -1.1642225542641456, -1.2352815819945013, -1.283422125830459, -1.3042933478501644, -1.2971778933763924, -1.2649206146398864, -1.2117204265546266, -1.141425316740382, -1.0585626720831982, -0.9719928566297733, -0.8889930059497019, -0.8113467715704098, -0.7372338929482734, -0.6647360536319294, -0.5939556974014945, -0.5284277644754685, -0.47243617136508176, -0.4279132265414423, -0.3902730274967272, -0.3514471195841203, -0.30729927623612624, -0.2579490052788181, -0.2052321027590302, -0.14961661994009295, -0.0952520727020694, -0.046671853346176254, -0.00578145678920092, 0.02513533632477199, 0.041758304134596115, 0.04186929617197486, 0.025967410093934908, -0.09192483455271451, -0.1760979009111642, -0.24552440531684155, -0.2991732600613095, -0.3436850016720747, -0.38825684377290987, -0.4368642151547284, -0.4866898387296277, -0.5331948865728356, -0.574919717769154, -0.6174781266639017, -0.6668530250062623, -0.724491488800454, -0.7883747295181782, -0.8556890459731462, -0.9239764177592782, -0.9917468597409484, -1.0567049031373996, -1.1113763268788734, -1.1474498506185384, -1.1601296240982524, -1.1490989046982527, -1.1192653078019457, -1.076300417014272, -1.0246490436714033, -0.9658913751965426, -0.9051543713681509, -0.8462962220576618, -0.7906945686058682, -0.7382729069247027, -0.6895760432502063, -0.6459623324688416, -0.6085821020729144, -0.578439171557794, -0.5530415092432551, -0.5254274674006545, -0.48978802991891435, -0.44554614719863245, -0.39327021990508004, -0.3336562309326826, -0.26751143161035273, -0.19947984544159322, -0.13458893669858404, -0.07714415488681789, -0.031165036489104576, -0.0006190602631442802, 0.013133045629726598, 0.011173954841160212, -0.08786305267140923, -0.16825963088942644, -0.23728498166790782, -0.2942482851120996, -0.34096044731948605, -0.3808364175655283, -0.41758990807543467, -0.45379641711950414, -0.49172768005936895, -0.5324673491067471, -0.5791804028501699, -0.633333281157616, -0.6921749486388887, -0.7508637570002524, -0.806415649630354, -0.8578559164038826, -0.906834215287252, -0.9538167886110516, -0.9933226818219245, -1.017325701838616, -1.0209445450501835, -1.0043525728546072, -0.9738850806396537, -0.9366422954405734, -0.8969888692326661, -0.8549576877725468, -0.8119680226757047, -0.7696349769678569, -0.730013528207746, -0.6955276176922017, -0.6692941065180152, -0.6525363099603059, -0.6433107654086595, -0.6369975389818427, -0.6259506818941162, -0.6035452559658094, -0.5679359525746543, -0.5217299992606538, -0.46632522186576747, -0.4026219243477546, -0.3318133813809672, -0.25721618517774786, -0.18344151677491058, -0.11736476510356521, -0.06407948249232591, -0.026526331670874786, -0.0058362060337827015, 0.0006830137753077146, -0.08181219748106289, -0.15536910711910798, -0.21843982909843646, -0.2722359497596263, -0.31717237803723747, -0.3526007935889963, -0.37970583692673143, -0.4024221451685723, -0.4273377635552862, -0.4595021097374704, -0.5026136541516784, -0.5560092318193627, -0.6138169024641051, -0.6686905181042817, -0.7163714265271058, -0.7572543445555433, -0.7938474196460842, -0.8273588907123136, -0.8537038132415277, -0.8664302721150987, -0.8616278117085945, -0.8400757477476049, -0.8091780373552616, -0.7766757844943404, -0.7462573788806466, -0.7164529092296413, -0.6861755212619554, -0.6562623567322308, -0.6295664805694358, -0.6105134896149004, -0.6033587413383281, -0.6087631301950335, -0.6214636653795256, -0.6318366132906336, -0.6297027746250913, -0.6105638018098646, -0.5751679795595054, -0.5281476146253837, -0.4724173216343269, -0.4098627676839249, -0.3410671414078541, -0.26753602306724655, -0.19350407785553528, -0.12769342527215893, -0.07509863075345705, -0.03748882968550335, -0.015268039395601219, -0.004903948119178802, -0.07009628145164336, -0.13211142512432236, -0.18410717168699633, -0.22813562656226827, -0.2652615564755597, -0.293721386404099, -0.31346263030923893, -0.32779589676321247, -0.34317228941657324, -0.3656905127742613, -0.39985912345268065, -0.4449128211263733, -0.49494649170006016, -0.5419590005279535, -0.5811905954425203, -0.6128750932557263, -0.639872972970254, -0.662792254972976, -0.6787967835401276, -0.6826886643049134, -0.6722370361321792, -0.6490058481489261, -0.6206196707338131, -0.5943552586286842, -0.572708414617249, -0.5529269826930991, -0.5328463329161712, -0.5130198197679431, -0.49662767321782614, -0.4886922902542774, -0.4939032781444494, -0.5121740677409007, -0.5364384830983403, -0.5552095960886347, -0.5580353724638554, -0.5417273056557596, -0.5088026089825177, -0.4650200727213276, -0.41458150448777276, -0.35949760265588554, -0.29925618672587306, -0.2346199271504549, -0.16982140424826783, -0.11315551297806692, -0.06865108232119109, -0.03676525367382576, -0.017168130823574566, -0.006352597601169172, -0.05117568665554311, -0.09617898513964325, -0.1330022083772594, -0.16342667153685425, -0.18895442887081812, -0.20844190090723833, -0.2216077128827119, -0.23090723893775408, -0.24070019114295682, -0.2554819348512807, -0.27910370981132865, -0.31112251848965544, -0.3472286655822254, -0.3813843603363711, -0.40920393812168165, -0.43067923410753506, -0.44823021502197297, -0.46254240134364666, -0.4713292036783018, -0.4706385272299261, -0.4593695700528838, -0.4396752886388946, -0.4177170462557754, -0.3990773337093874, -0.3852087880509593, -0.3734290228018062, -0.3616296318387575, -0.3499030280773605, -0.34088143568626966, -0.3391368314224837, -0.34884767713807135, -0.3691044710419144, -0.3933131085430641, -0.4119574431458111, -0.4160254762858471, -0.4033333826516704, -0.37710661275937674, -0.3430806168008907, -0.30497402496303105, -0.2638216498466336, -0.2184445845360149, -0.17012602255722228, -0.1226417488869403, -0.0819165053488669, -0.050247540319443576, -0.027696946048013753, -0.013497872242662445, -0.005002253109034981, -0.027026088172488083, -0.05069880505937899, -0.06964277377616798, -0.08479920006758328, -0.09743451868353033, -0.10714969875357555, -0.11382997085700791, -0.11875537863757744, -0.12402265955741437, -0.13173384334376562, -0.14399665573441373, -0.1605351890780302, -0.17926328010308892, -0.19710674945367665, -0.21154618607661801, -0.22233341419206162, -0.23093048933650567, -0.2377712971839776, -0.24149220431763463, -0.23981084183875062, -0.23248859545157963, -0.22120672720345555, -0.20923131041427218, -0.19950538109764374, -0.192659109106378, -0.18730691667644866, -0.18208499719115845, -0.17683022450116723, -0.17288922133463533, -0.17313899235879962, -0.18014636813170407, -0.19286012631310698, -0.20748897106482042, -0.21880807260100427, -0.22160186791104133, -0.21455097806144616, -0.19996869045924295, -0.18137912087086963, -0.1608809686018284, -0.13864824144046545, -0.11395169084073094, -0.08802470987358116, -0.06326974173120806, -0.04233227963643622, -0.02601379034003246, -0.01438146106252777, -0.007024817544720424, -0.0024754083148453517, 5.438209898819509, 0.045605436522475916, 0.07470469212887909, 0.09604734133637927, 0.11288050446929239, 0.12781286003706613, 0.14356417169877494, 0.17199884952488506, 0.20603224306663132, 0.23904752228067105, 0.25928200003866364, 0.266888701449422, 0.2617457756201345, 0.26011911259347187, 0.27052678057908625, 0.2815459149374057, 0.29370350669960615, 0.2991086012620635, 0.29894093095361435, 0.2990367856654393, 0.30454797259329863, 0.3094808559965047, 0.3097158196062335, 0.29495487412083277, 0.27136431203143996, 0.24169438562606058, 0.1998093299134044, 0.15151666444527295, 0.09985404496529303, 0.03916814986244212, -0.014179032892334166, -0.06455567699113557, -0.1110156068311687, -0.1370670373313835, -0.16354548953109235, -0.1787693637398371, -0.18190728917621612, -0.17979232063876363, -0.169073106008963, -0.15984149190203342, -0.15495287831640744, -0.1529848809048385, -0.16326085758525508, -0.18401793416782014, -0.1940835803462383, -0.1911079958214496, -0.16917310114356718, -0.12843972128856843, -0.06729807942689403, 0.08907132228929919, 0.15518738328775558, 0.20379259238106412, 0.23969515000181693, 0.2725611590096548, 0.309431985685292, 0.3637071687386132, 0.4225989037198218, 0.47263543901279037, 0.5027700226523949, 0.5121010734287563, 0.504605669655282, 0.5052867092948984, 0.5254200647978052, 0.5417484088714234, 0.559091501255403, 0.5691688971240719, 0.5727762013086757, 0.5773362685258155, 0.587182334738088, 0.591684126768514, 0.5875250011520505, 0.5610631782900803, 0.516048209848778, 0.453704352246879, 0.36989787024066556, 0.26856083109188233, 0.16121607569012417, 0.04260945212453247, -0.05656644452747889, -0.14002912768003778, -0.21249395989293954, -0.26068478609474655, -0.30498990290273953, -0.32666645096115826, -0.33314123957188785, -0.33634457040573507, -0.3249049552013737, -0.309482886120032, -0.29759290132809046, -0.2957110555292264, -0.31078086378459086, -0.3359803192460576, -0.347818777945964, -0.3377047883622222, -0.2903200580880402, -0.21640906371698088, -0.11476447026620998, 0.12492780051311471, 0.2277580642290186, 0.3050324312870372, 0.3616309830989025, 0.41978828465013096, 0.48171208038532154, 0.5576462167348757, 0.6273589363039066, 0.6823946652764965, 0.7111697136383035, 0.7191541302837062, 0.7099046066175739, 0.7137746607511282, 0.7361276281586748, 0.7525353775096537, 0.7696368053009471, 0.7844148250514715, 0.7984706112310034, 0.8139355163331264, 0.8316668422017724, 0.8311032111062157, 0.8158499038855573, 0.7739999809729305, 0.7034298795187265, 0.6037665769066646, 0.4801982069475448, 0.327157608424653, 0.16576933006096872, -0.0002885661067140591, -0.14080903640871656, -0.24628628950557838, -0.32458084949209054, -0.37657499847509895, -0.418394688266766, -0.4376458355294851, -0.4495796682076632, -0.45924415913258987, -0.45394978973315964, -0.43681497968754673, -0.4181201765894542, -0.417572690732681, -0.43248492330254595, -0.4481801236122253, -0.4501086364114813, -0.42911767036517945, -0.3571662538365709, -0.2616582983587689, -0.14003683768536998, 0.1454157695839701, 0.2709979380190679, 0.3700690699412804, 0.4529373589361483, 0.5416038085687687, 0.6309701305628789, 0.7202766017493839, 0.7935397016114272, 0.8411827308686697, 0.8631977556784688, 0.866644851827865, 0.8654095436296224, 0.8737498445243279, 0.8929374788451743, 0.9039861102937298, 0.9128235944829736, 0.9255045140209802, 0.9476288130172831, 0.9723964880696724, 0.9937501785713116, 0.9865359605494162, 0.957688272886243, 0.9001270147722352, 0.8061040846010482, 0.673935914008118, 0.5175431945840613, 0.3181555317900553, 0.10847183309556138, -0.09666636330426925, -0.2706122002676759, -0.39571559225754543, -0.4680796605286751, -0.506576842564951, -0.5257662173011552, -0.5346699190590072, -0.545495642673795, -0.5498861482391072, -0.544323955939586, -0.5296534401558614, -0.5080245525016298, -0.5063722733982186, -0.520791334574588, -0.5271035611436582, -0.5152659795962587, -0.47869369198412764, -0.39031133633442167, -0.2811206283083045, -0.14935358420047903, 0.14677142735689674, 0.2723107773832838, 0.3757404030657833, 0.4789080212474143, 0.5970245101284357, 0.71552007271994, 0.8217111763201307, 0.8973585272673815, 0.9415075000216804, 0.9576485604614439, 0.9628121783472298, 0.9698831150504125, 0.9811388979217327, 0.9879098621503493, 0.9886301485269446, 0.9860982023561756, 0.9951407262933956, 1.0256040089401324, 1.0522260728905182, 1.0680298411418363, 1.0461438080676753, 0.9982093873917381, 0.9179973015698124, 0.802123436051459, 0.6446010481268637, 0.45870483654634364, 0.22484073091910772, -0.024116039581986756, -0.25668725380592583, -0.4480990263200105, -0.5759748802019694, -0.6375497255795076, -0.6591376626294961, -0.6534348354189253, -0.6421587038011689, -0.6344537273959232, -0.6172530327276079, -0.5999285295166198, -0.5851626216845142, -0.5663065238928556, -0.5611215736967807, -0.571275088703147, -0.5738612016144164, -0.5489726125681088, -0.49697914559708195, -0.400482060639951, -0.28327072561801686, -0.1452273077461926, 0.13172539401862093, 0.24585573324429968, 0.3481936793323289, 0.464361447731382, 0.6034765892285301, 0.7464704775550357, 0.8610754539877109, 0.9339751149901855, 0.9732787503760274, 0.9965680292559591, 1.0123210582484876, 1.035097343579599, 1.0480307448876158, 1.0387334746452224, 1.017736912434191, 0.9957664992847503, 0.9951875468462381, 1.0203348273756045, 1.0355628007680802, 1.0308867140784825, 0.988100623634323, 0.918065841862772, 0.8174282498832957, 0.6882898592647074, 0.5154070169862991, 0.3069978670026592, 0.05894479261657244, -0.20535654271099324, -0.4521400044381931, -0.6478151739704746, -0.7752137627566453, -0.8299255158752085, -0.8395613101448163, -0.8071740429367095, -0.7610364863718141, -0.7132938169024678, -0.6634466737679461, -0.622315564848797, -0.594810599508227, -0.5798416157437916, -0.5783636650701255, -0.5886044669722295, -0.5912707192842439, -0.5594676836959215, -0.4994036503487747, -0.40432234213781165, -0.2853350733250957, -0.1433762144218853, 0.10988434372376106, 0.2128795485113253, 0.31134983328609755, 0.43413419722154395, 0.5816483962605631, 0.7387796829201949, 0.8564554200007162, 0.925837775015485, 0.9660706277109928, 0.9993375418640305, 1.0314203218651476, 1.0633074502339597, 1.0729235781420543, 1.0462370009692454, 1.0015079453293216, 0.9618260908223686, 0.9454120776694169, 0.9523362497975583, 0.9409335092423271, 0.9079021984234983, 0.8375026155376618, 0.7461423581759308, 0.6256125600324967, 0.48223867307457025, 0.29450769589991227, 0.06639423712078933, -0.1827008198068745, -0.44117312392962965, -0.6766737135053762, -0.8563940769984909, -0.9710017648111954, -1.0159781163970443, -1.010710474679216, -0.9572710316098034, -0.878706619757197, -0.7868498720431506, -0.6975158337846266, -0.6254660234617285, -0.5745514072492267, -0.5565227056402133, -0.5577805070231188, -0.5643604502452795, -0.5609096654860806, -0.5267387116436203, -0.46776794802115224, -0.3789620509207011, -0.2668257265584777, -0.1354570955068539, 0.09563462995688676, 0.18983775540718267, 0.28362056572595506, 0.4061995741161959, 0.5522798705418875, 0.7045106653704097, 0.8140255631862722, 0.8860726848139326, 0.9344044675321537, 0.9820649931452844, 1.0294995400581106, 1.0637989997053428, 1.0603472248574561, 1.0186229787605892, 0.9583082303754481, 0.9036323096052755, 0.8688977198058738, 0.8426226180645815, 0.7939055441462954, 0.7215930963063901, 0.6219686661057315, 0.5112253172860813, 0.37465491447661314, 0.21008492971807533, 0.0046947312959308655, -0.23771739670003297, -0.4845708586784965, -0.7253248184549617, -0.9300205240237969, -1.074785792129266, -1.1622876979918897, -1.1835952202817017, -1.155828516072024, -1.0812894809787796, -0.9767778828612474, -0.8419353304758087, -0.70769911897424, -0.5993503298659194, -0.5246338850953426, -0.49638935786999067, -0.49341400969952137, -0.4952375569298035, -0.48624568253832795, -0.4542386456233247, -0.4027232014941666, -0.31947704142557976, -0.21930971621595666, -0.11289636915111555, 0.08087936987925662, 0.1669281374557825, 0.25402821858586, 0.3783558397158553, 0.5204079159194458, 0.6595870567485794, 0.7527596003287955, 0.8245211291492963, 0.8794239659008244, 0.9360673286145951, 0.9942390908101153, 1.0285005034546046, 1.0137215388288465, 0.9674600523919187, 0.8996655371912605, 0.8387356570874895, 0.7835229272341553, 0.7234238893112998, 0.6281573222806874, 0.512306528937944, 0.3786806815817247, 0.2464660462598334, 0.09148224584275234, -0.09932409788325094, -0.3244049915467925, -0.5722915157135643, -0.8116195592967852, -1.0254767810971974, -1.1884646763029043, -1.290214047696972, -1.338186247316851, -1.3250297954109431, -1.2674647154885417, -1.1656422885813276, -1.0316608154612723, -0.8662588430187378, -0.6983015669316494, -0.560891041626384, -0.4652130185740706, -0.41637729313710176, -0.39483231658732754, -0.38634623195314083, -0.3697823806881253, -0.338313777633648, -0.293888740204781, -0.22566319834869383, -0.1465822979885941, -0.07526529224515967, 0.07225786373921762, 0.14809163351283064, 0.2259850531979778, 0.33534892268538874, 0.4624682466074874, 0.5856454132196762, 0.6718638966828708, 0.7463419233845936, 0.809369565664232, 0.8732797804469299, 0.9333567159393361, 0.9628184685681547, 0.9415046740682459, 0.8960806991451029, 0.8329981143608375, 0.7724182048082797, 0.7031986283397688, 0.6086838639039549, 0.4717034583900716, 0.31582283311044557, 0.15348266291426235, -0.009149084113191083, -0.18917860752827276, -0.40868376316499905, -0.6528780259169411, -0.9029476973517271, -1.1316683079388337, -1.3167718690661219, -1.4362808803669573, -1.4886608572676514, -1.4809181361040908, -1.4195219204136402, -1.3248497490760507, -1.188841525225962, -1.0231705702073213, -0.8353568005036925, -0.6465275013923075, -0.4839456262711111, -0.3689985290759095, -0.30018200913934084, -0.2617250721658054, -0.24700828710434236, -0.23376146997061803, -0.21236363863451593, -0.18116877318612964, -0.1329017159403189, -0.07634405072344103, -0.034605921600953424, 0.05927058254853195, 0.11967628342187163, 0.18585976773000015, 0.2778928183314947, 0.3796178268869901, 0.49022954058076895, 0.5743990510695639, 0.6502113916698504, 0.7167368848496922, 0.785760928764371, 0.8411941129478472, 0.8688403792183913, 0.8518475818190047, 0.8208252103920093, 0.7698670854925647, 0.7184312476376759, 0.6333929974154178, 0.511316069393528, 0.33670727654606364, 0.14670387190127424, -0.044545115862068295, -0.24234635633862553, -0.45309976083096953, -0.6937426433378044, -0.9484776036824609, -1.191731070185066, -1.4002198054796569, -1.550413374544066, -1.6294569053553627, -1.6332214130010527, -1.5678298666781971, -1.4503092717660657, -1.305878414057735, -1.131343194936611, -0.9382677013896057, -0.7385942802108115, -0.542298138071258, -0.3690482962670009, -0.24379772501755728, -0.1642152793712122, -0.1183450285520608, -0.10093252567742864, -0.09726930424671239, -0.09498894513157896, -0.07370273666772646, -0.03803041932976232, 0.0012143348030488686, 0.012373997790445916, 0.04368723880579974, 0.08414011841606926, 0.14345500306647035, 0.2181576967792071, 0.29961602553636413, 0.3948659958355358, 0.48009457120299903, 0.5560268152965493, 0.6297381017156811, 0.7036796927377119, 0.7531175178744192, 0.7806621570599139, 0.7753642036105949, 0.7568012787306635, 0.7148511637827127, 0.6618412613261178, 0.56601851534553, 0.4281937525907531, 0.23500629376701765, 0.016719760666685932, -0.2012505844704215, -0.4304255080761411, -0.6645320861557655, -0.9136318936420651, -1.1624846257430237, -1.3881939884885683, -1.5638170965032478, -1.6765197994607186, -1.7177878874263686, -1.681580031870759, -1.5694775465557949, -1.3997548179578614, -1.1965435163136577, -0.9793725293395694, -0.7653371095863584, -0.5611540120108102, -0.37304499313054207, -0.2116556286415052, -0.09181579584319007, -0.015682391138964136, 0.023050780739860922, 0.03191877204268266, 0.019967461444203794, 0.0005979724083920847, 0.007347301280159354, 0.030751855058008072, 0.05387021158469065, 0.042811982949609015, 0.027252708125378836, 0.05235199373293468, 0.0979888227722646, 0.15799986199133376, 0.22408743688515217, 0.3136567296938597, 0.40429254085428407, 0.49292930370600374, 0.5774349943952213, 0.6527856816025955, 0.6963536368555763, 0.7266725655910361, 0.728902871299225, 0.7143718561179545, 0.6665845069094282, 0.6027252511705532, 0.4948418175758958, 0.351443213366427, 0.15269865948653805, -0.07999220629592377, -0.3193321664810518, -0.56513216867184, -0.8076156545396692, -1.0493083861966508, -1.2757413573967193, -1.4701567422269861, -1.608773179544647, -1.6827206711281604, -1.687883822177651, -1.61164975827912, -1.4616907833613866, -1.254029100497356, -1.0061188769271998, -0.7577680510389462, -0.5302395079344303, -0.3314608230273037, -0.16467455513548676, -0.03288359652587607, 0.06694414774197162, 0.12900609505901167, 0.1509785834410101, 0.14530948546255829, 0.12257281147101556, 0.09146946186551012, 0.08257146511658238, 0.08692928706626007, 0.09341091019986364, 0.063416994324311, 0.008893321832290763, 0.024617060248538443, 0.0655098291915093, 0.11974064885938929, 0.19211832015958033, 0.28223942386714357, 0.385100111045336, 0.4886541174907856, 0.5798613818036676, 0.6510737401223745, 0.6953505017982776, 0.7324752411865718, 0.7372126476166311, 0.7131998654578537, 0.6507662263961314, 0.5625443807295049, 0.4398216116525744, 0.2848038364750652, 0.08548689831766759, -0.14845702052610074, -0.3943209206212057, -0.6399361555958945, -0.8738229380877426, -1.0935724551774846, -1.2820261393806498, -1.4346924442025744, -1.5326892961471792, -1.5747814140627638, -1.5508003011696783, -1.4450682475801853, -1.2640416234224015, -1.0244187738696218, -0.750441894187369, -0.48680719233962055, -0.2579901247898659, -0.0747614811598953, 0.06348100026022618, 0.1599875796347336, 0.2273033266869898, 0.26142501891008724, 0.26337450691813424, 0.24239016636899885, 0.20912913007865042, 0.16931362566493466, 0.1430460455587186, 0.12957750005044227, 0.12081093841028762, 0.07650403135352617, -0.0002070462186698295, 0.01915521013349294, 0.06043711882517857, 0.12035121579299939, 0.20169250080127418, 0.2998966937283959, 0.417863323173991, 0.5426344621636281, 0.6485502935720199, 0.7243026627039463, 0.7730300322858888, 0.805988261745277, 0.7975565520510803, 0.753370322596101, 0.6684263399517759, 0.5533742353183361, 0.4162813757696947, 0.254854673953026, 0.05569968822117223, -0.17398305578183476, -0.4191578967308563, -0.6548906116664829, -0.8654619810005696, -1.0500439407705522, -1.1932867742521458, -1.2984428977594906, -1.353526380529892, -1.3580225901818137, -1.306748266256455, -1.1862678898583698, -0.9943304189012055, -0.7419591951289779, -0.4635857112831035, -0.20904590803325457, 0.003059616220205134, 0.15391165506224638, 0.26123375648782604, 0.32507257167105336, 0.3561280039542159, 0.36095561741044246, 0.3500396374840168, 0.3273638589821104, 0.2866963966424965, 0.2355931621404567, 0.18900912417988563, 0.1536695502629995, 0.12564392822323997, 0.07199586204700008, 0.004680889070706913, 0.035072327236972865, 0.09096839121088922, 0.16612382506567203, 0.2635739797691203, 0.37440000447791466, 0.5081470528563097, 0.6472700826182421, 0.7667410371680718, 0.8506686047737689, 0.9017249325059775, 0.9244597863518912, 0.902392325361255, 0.8343101637190512, 0.723505599328746, 0.5785475201241079, 0.4276733035722659, 0.26352971035857076, 0.06893254298661153, -0.15397965108350525, -0.39229118411623826, -0.6109534402655018, -0.7934467418171373, -0.940611470130557, -1.0438441591568337, -1.1066824222412228, -1.12089891365847, -1.0882208008705754, -1.0054457831889447, -0.8692403450125641, -0.678567437793285, -0.4325657360049756, -0.17241190758825942, 0.058431764129025135, 0.23699586463835956, 0.34781563092885215, 0.4162967988942259, 0.4433279490008559, 0.4366392932208751, 0.40947359247440024, 0.38429711081676726, 0.36061195002784596, 0.31854758687582463, 0.2611417965028987, 0.19707460983511488, 0.14135195452789917, 0.09638021105479919, 0.04858133576088213, 0.02481157598417723, 0.07512088239050183, 0.15245613963373061, 0.252844177822454, 0.3644061073092975, 0.4924757752923029, 0.6395184932329732, 0.7855120337006004, 0.9152446052849366, 1.0056577869152048, 1.0618407077309082, 1.0780800814305427, 1.0454603276301746, 0.9492751398589968, 0.8097141704058213, 0.6414335735842468, 0.4769406734985246, 0.3079669869203775, 0.11462099239395597, -0.10362344524416753, -0.3289098014281932, -0.5279610848890164, -0.6837221144878733, -0.7988748442951216, -0.8619983510301609, -0.8773108173865616, -0.8431895086256679, -0.7728581308336366, -0.6661181160128616, -0.5180310559262441, -0.3333396903600825, -0.11390633557799437, 0.10978610865407225, 0.29678216238028515, 0.4302852155062802, 0.4955313978948416, 0.5202970978682704, 0.5041895659024961, 0.46246237693618525, 0.40630157686918184, 0.3555565583825284, 0.3194869242063449, 0.27190880346838303, 0.21115915439322805, 0.13540267676737816, 0.0697296600686001, 0.028689802296683258, 0.009334370169526436, 0.05819606406426342, 0.13677561317947012, 0.24278119503034104, 0.36773354925385815, 0.49557560078291923, 0.6421252808990732, 0.8038148763884035, 0.9570707965064988, 1.0942520991915294, 1.188404562988059, 1.2464169367078768, 1.2538434210749805, 1.207511528334562, 1.081346183753202, 0.9131389255230328, 0.723118081570222, 0.540950873056344, 0.3610883577415422, 0.1670342355989787, -0.04438836506510851, -0.25111119511733154, -0.4268788282519796, -0.5577630238255751, -0.6385898933217254, -0.6625256632965782, -0.6321150660879588, -0.5470809773919033, -0.43403012886138, -0.308892192373695, -0.15466027887485162, 0.018777653193005943, 0.20382580745252335, 0.37803329461805213, 0.5075730836177595, 0.5808104434766719, 0.5978246216691705, 0.5748305302726198, 0.5131790605894492, 0.4319369315966261, 0.3386561797289412, 0.2555759705425875, 0.19710759518766832, 0.14011603291144392, 0.07733136509790552, 0.0025458446880237905, -0.05244731494247322, -0.06932042738943056, -0.04288994103680366, 0.07972323930495497, 0.1852651613665166, 0.3203454748451745, 0.47920436525424803, 0.6394093170594217, 0.8191732650810498, 0.9977053628217895, 1.1543562304140778, 1.2898533936402343, 1.3803972948391414, 1.4401925626520897, 1.441242941088927, 1.3853836780393187, 1.2363155761914182, 1.035445866023968, 0.8106717686238989, 0.5973794083911524, 0.3990526399300274, 0.20337758632986144, 0.001055009822271817, -0.18433337378302972, -0.3351902729400005, -0.43072961774832014, -0.466763087221804, -0.44336780264130216, -0.3705365118265913, -0.24242481275076702, -0.09185154931930581, 0.049834682310377056, 0.20039295274312696, 0.35343059934097315, 0.4958744035447551, 0.6189718526735194, 0.6874618839751148, 0.7010021418575968, 0.6679376878693711, 0.6011918306583995, 0.49848599487627027, 0.37157160235126063, 0.23335623361528557, 0.11377434266422569, 0.02817107311588977, -0.04643048715392903, -0.11382499868608065, -0.17520350413242372, -0.2015569654938354, -0.17886545734822865, -0.10108189557322773, 0.10331424057276466, 0.23516270986244486, 0.3970272392289626, 0.5851366008970003, 0.7840076711607973, 0.9944125635307113, 1.191512763398536, 1.3552346999958353, 1.4882236087281182, 1.5722577500522659, 1.6276653521147886, 1.6188607582051435, 1.5513799589497799, 1.3884609243017068, 1.1614755585895404, 0.9029786378256848, 0.6598877827879113, 0.4391705887606407, 0.23914507833854817, 0.04695240215807532, -0.11611405714397001, -0.23618443392351401, -0.2918809545300509, -0.2827121181634034, -0.21289662898196407, -0.09584007603857532, 0.059217662633488856, 0.2273357703096025, 0.3746824045216643, 0.5165269846736035, 0.6451914327963169, 0.7497200181322188, 0.8242293025845782, 0.8330857367740386, 0.7860701502543376, 0.6999921317145568, 0.5881740208165696, 0.4508372643592079, 0.28477861120454107, 0.10851299678447092, -0.044239907823078614, -0.15928038774199008, -0.25149685534256, -0.32087943516786027, -0.3629258888481846, -0.35236775643358437, -0.2817833819402578, -0.15292363552996788, 0.1292732967133743, 0.2849972930881758, 0.4692124205585093, 0.6847726967132791, 0.9164339605970575, 1.152548329194125, 1.3687766023550818, 1.5445121915209459, 1.6722848192045852, 1.7424006930084748, 1.7837689883681425, 1.765669868098065, 1.6876481187529686, 1.5178573409085485, 1.272370855839772, 0.9903125372489043, 0.7256355725977592, 0.4900781383063625, 0.2897063973428388, 0.11500976068344626, -0.018398524911850886, -0.09990296267317833, -0.11029932252821002, -0.06366236776597949, 0.039556914522174975, 0.1826317048047864, 0.3416373922469803, 0.4973674959627763, 0.6337736722296702, 0.7576813969523675, 0.8647088459159574, 0.9420487167336049, 0.9772376136048726, 0.9326671544457652, 0.8357892246033264, 0.7041314144110504, 0.5521467469014202, 0.38276072813504847, 0.18469096090944528, -0.020978886614101803, -0.2072848330247614, -0.353720424679457, -0.45874040531302046, -0.52307366418889, -0.5392746879937741, -0.48831106930833873, -0.36690544632570016, -0.19375938980669163, 0.15394838114092924, 0.3305822382997687, 0.5401064158880032, 0.7770567872028836, 1.0291662955104108, 1.2745608190314617, 1.5023867477291009, 1.684385762190547, 1.809524408412498, 1.8684288613826452, 1.8914386483934478, 1.8639181253221275, 1.777067597006065, 1.604654114378283, 1.3585278955624212, 1.0729826891811647, 0.8080354389136212, 0.5778466741012208, 0.39325113066913575, 0.24048690294503047, 0.12999137480778322, 0.0746495148200316, 0.09607977001805995, 0.17283245738267164, 0.2907609062594307, 0.433085806647881, 0.5751500131720143, 0.7066338583699326, 0.82176059480166, 0.9268808157608581, 1.019190210909093, 1.0826484148538886, 1.08895259451878, 1.0033145061724988, 0.8617476723210626, 0.6869705538332846, 0.49547566505881935, 0.2915792022761501, 0.06587928665803211, -0.1599426321221024, -0.36669974705311065, -0.5289927087759279, -0.6361957763314803, -0.6898818933533899, -0.6761367284939819, -0.588768597672866, -0.428136981345435, -0.22503209477921982, 0.18353426654594346, 0.3815622418601415, 0.6095102913114572, 0.8533317979539156, 1.102181870107262, 1.3411136581520442, 1.565744201430628, 1.747264971791165, 1.873781382087882, 1.9315167641068494, 1.934465577739849, 1.8931550438225162, 1.7930022319094072, 1.6239780406834228, 1.396583809812232, 1.1374225135390224, 0.8958833564930005, 0.6967438586368471, 0.5441159926294026, 0.4213640257125299, 0.3367259486131053, 0.3006293179322642, 0.3358973554007879, 0.4204518542802771, 0.5283824925545363, 0.6397993531059324, 0.7504433604874988, 0.8501032339948483, 0.941225518241378, 1.0300238609576897, 1.117288976586636, 1.1783233807168874, 1.1716042770397015, 1.066302841570054, 0.8908364386772717, 0.6748810684671389, 0.4465441121376201, 0.20958003834388733, -0.04201492862348623, -0.28670277089610935, -0.5064573112863401, -0.6731828939465673, -0.7778570529317417, -0.8216933369890231, -0.7799668349046905, -0.6619584266546954, -0.4714541816512122, -0.24752373652185725, 0.19580427408119475, 0.403674792951718, 0.6401365829575034, 0.8815097872037582, 1.1193607935473053, 1.3445375013653178, 1.559245662717626, 1.7327490706543862, 1.854738998928176, 1.9070274690779383, 1.8942524838909756, 1.8384582468672366, 1.7317873978153462, 1.5732113002008692, 1.3773877530938865, 1.1642240027551571, 0.9739895974789977, 0.8305088258291673, 0.7283705882179733, 0.6436639486759663, 0.5857116828058794, 0.561160528072922, 0.5823973133973964, 0.6447019952702691, 0.7283993156852788, 0.813617853364262, 0.8978223502349825, 0.9697845609038759, 1.0360552286928573, 1.1071609339940602, 1.1899355193256147, 1.2496728401349706, 1.2356244620483277, 1.1256051071046647, 0.9312373686598889, 0.6856030754603616, 0.42694337974589286, 0.15906318406363118, -0.11533835725539664, -0.37785750702626836, -0.6069879136841975, -0.772783245382131, -0.8680595736002937, -0.8991956201170627, -0.8332991024472536, -0.6916794474638918, -0.48008546292868465, -0.24771465782366148, 0.18881089602859033, 0.3936125897444373, 0.6229533929512316, 0.8521209521203553, 1.070851021819642, 1.272058505441772, 1.4633859993428944, 1.6226701430556838, 1.73460226991963, 1.7838774551825247, 1.7656944575650448, 1.7006376109686918, 1.5880598848540743, 1.4441524567828805, 1.2816489839135146, 1.1288977727954503, 1.0101869058053636, 0.9426591228266968, 0.9087992609185568, 0.8698909403152892, 0.8293776289882989, 0.8034264161572063, 0.8039785637109296, 0.8372168027421538, 0.8969532126426526, 0.9627302557390061, 1.026736917491322, 1.0762506818437707, 1.1210874307250498, 1.1708658834903094, 1.2447972529140445, 1.3054226704989786, 1.289730276155437, 1.1852515174873923, 0.9901734504626061, 0.7346037777182225, 0.45536858367382294, 0.16022036407248247, -0.13309364905839177, -0.4054598864199345, -0.6394120026948986, -0.8076753611402634, -0.8993316837468861, -0.9234815612482673, -0.8477388407432124, -0.696907249689412, -0.4780961712232535, -0.24380462745417933, 0.15779846488192842, 0.3431204596773407, 0.5534477075245421, 0.7695022198865435, 0.971816093547842, 1.143146118605065, 1.2945531354447666, 1.422099272899467, 1.513957361030145, 1.5535983619774256, 1.5343259491826708, 1.4612293630270647, 1.3495028877567428, 1.227558652745798, 1.1073439278179142, 1.0245255357449325, 0.9844983396834471, 0.9960756633739802, 1.0373334176824551, 1.054267828130967, 1.029094338540341, 0.9970101270968783, 0.9844467171001917, 1.0014981220919812, 1.0437393549421083, 1.100123303359374, 1.1539101961581453, 1.1960380672424904, 1.2269796440907794, 1.250511681318051, 1.3051879355435507, 1.3600140213409393, 1.3477386697936586, 1.25330471561991, 1.068925224072428, 0.8173112326795379, 0.5271432320572869, 0.21159622000760298, -0.09869069338575004, -0.37780899816688185, -0.6133955470191796, -0.7889388021420111, -0.8842832477286848, -0.9054018339231537, -0.8251990906145386, -0.6727744017983354, -0.4604356263576244, -0.2345243356528883, 0.12084036855782472, 0.27910004710876474, 0.46432184548105887, 0.6600505596401475, 0.8367529280871071, 0.9714029877325364, 1.071806812877891, 1.1485589208864946, 1.2044509649052484, 1.2270796008287357, 1.2085613978695022, 1.143069627867384, 1.048030744783962, 0.953802392353707, 0.8722953587226905, 0.8480502657782338, 0.8775052734186698, 0.9590288022117841, 1.0650102489677853, 1.1385370120197698, 1.1445436045041275, 1.1220665569846677, 1.1118567072553964, 1.129102649753487, 1.1711167462145953, 1.2329079685481665, 1.2906322975437194, 1.333372055582756, 1.3551819078010106, 1.3584344535099648, 1.3888286898375677, 1.4273513432552516, 1.4176757121836698, 1.3397562252215882, 1.174143646188295, 0.9324488991384758, 0.6359179626302429, 0.30848746335209926, -0.013916865631646371, -0.3004196009985301, -0.5362911430910992, -0.7201407530087631, -0.8281894270205508, -0.8579143527771532, -0.7879909454663171, -0.6414973614596603, -0.4401526070255988, -0.2227565728192069, 0.0930540836016598, 0.22314349756075694, 0.3757926727904496, 0.5379774524881829, 0.6710845645961543, 0.7610739178804468, 0.8092155221420719, 0.8299972307137805, 0.8429244648569039, 0.8404585988970787, 0.8171299706724998, 0.7645969449188791, 0.6977031645130162, 0.6404401792175843, 0.6022659351453062, 0.6244475137150388, 0.7042950817913514, 0.8357124014607569, 0.9773471206916495, 1.0922115652557656, 1.1455956154624274, 1.1609580499664098, 1.1811898468927158, 1.2245357711776967, 1.2861384417038029, 1.3645355546555256, 1.4337004764301489, 1.485428622913163, 1.5112988191447223, 1.5211819200003736, 1.5420770732899696, 1.5560862794385002, 1.532799735598489, 1.4561387535970243, 1.3006144246480775, 1.0656980833182341, 0.7638459465404464, 0.4314517189556781, 0.10393050763631148, -0.1843861697233519, -0.41742193945276046, -0.6050113784509427, -0.7258994600920702, -0.769546265079206, -0.7205797626181448, -0.5931817162256461, -0.4101012868800619, -0.2055169160348409, 0.07614128033411417, 0.17632600829809542, 0.29169439884478754, 0.4126417274299717, 0.49660401817572036, 0.5348604888952305, 0.5264658925692611, 0.49015864093418327, 0.4586020819609828, 0.4316709475875498, 0.4048535412160136, 0.3701441253691539, 0.33192612591894405, 0.31146641756591026, 0.32230428861541793, 0.38286181604456143, 0.4951910530531716, 0.6496312291338202, 0.8083357382467958, 0.950662704446955, 1.0543248897925908, 1.12515566446621, 1.1990168894419493, 1.287388608327676, 1.3812900862058366, 1.4806511558256799, 1.5716126329416484, 1.6465987242102764, 1.69217169506685, 1.7223571583796955, 1.7441720727549808, 1.7379052602028433, 1.6963158162295302, 1.6055604563456445, 1.4441532905034522, 1.2104852599310072, 0.9073422607192919, 0.5742564628962425, 0.25099556560824304, -0.02871005683761658, -0.2528142708979897, -0.4400860939800894, -0.5748625308806623, -0.6341763046179199, -0.6122628211682675, -0.5148848316069867, -0.36391771125021866, -0.1827497165203652, 0.06624979827171877, 0.13840622429589358, 0.20986457955618448, 0.2813204394596694, 0.31366188597453326, 0.3033019840011207, 0.2493471600822134, 0.17294830420155766, 0.10575343750645767, 0.055690466854079, 0.022847348592110156, -0.0003927525760570238, -0.01794871183876709, -0.009116303105667047, 0.04336774082517159, 0.1379579035539198, 0.2718634053344545, 0.43663327104592214, 0.6082335686523967, 0.7750363384547411, 0.918307316596538, 1.0438607599207617, 1.1775421321946131, 1.317211838563572, 1.453216266400333, 1.5800936391714064, 1.693896547062738, 1.7958615916360638, 1.8689248730733337, 1.9254862853615695, 1.9538650445656984, 1.9415458888010362, 1.887626620536325, 1.7743763769511192, 1.5930951383423189, 1.3508043436622745, 1.0500296208908204, 0.7272313347327489, 0.42125702263710985, 0.1637950990221794, -0.04394253718947998, -0.22152552849210358, -0.3684720809908019, -0.4525594951023076, -0.46698644455017657, -0.4094789463620975, -0.30008397867753217, -0.15548160298150085, 0.05444575995193448, 0.0987556702279955, 0.12830269684232526, 0.14747161031481248, 0.13506346223812019, 0.09074027868188078, 0.014392237334190388, -0.07997621625114673, -0.17504731925638103, -0.24946428456175532, -0.30404319899080007, -0.33334246301532267, -0.33894956202255455, -0.30443716563463524, -0.2220874897736965, -0.10258137010723385, 0.052365790966783336, 0.22346086445050903, 0.4056576897376237, 0.5837257071080181, 0.7510567460324865, 0.9237658625544826, 1.1150020036482786, 1.3065202935363618, 1.4880650480174828, 1.6452005458760002, 1.7751732663093198, 1.8966633035667129, 2.004462776485324, 2.0967698188832458, 2.142982949060024, 2.1315268470225917, 2.0650542693754486, 1.9295937226187159, 1.7344935204819831, 1.4887809601174535, 1.200956742174804, 0.9029135696253281, 0.6252881633217432, 0.3903369527645453, 0.19199688184883434, 0.022278122611912407, -0.1328165643810258, -0.24329732828290462, -0.2956602407126892, -0.27803625680526545, -0.21320130468980125, -0.11627497841446321, 0.03961433206991378, 0.05888983456005705, 0.05212971044244934, 0.029606555458029492, -0.014780268112981533, -0.0801251187433988, -0.17047656335055417, -0.2804429513085561, -0.39846063076541116, -0.4937422100103687, -0.5669471125386615, -0.6109817777308914, -0.6132418178557404, -0.5649079466466852, -0.46968257034221456, -0.3345675077053962, -0.16155669450916132, 0.021327633363131513, 0.21190323765874425, 0.39486227118585737, 0.5758152279018222, 0.7823789905197274, 1.0203441821686576, 1.2585983053052758, 1.4849523727438025, 1.6763604047021479, 1.8289319010998335, 1.9648328422397976, 2.0918775499625912, 2.2049838434140656, 2.2688098642002545, 2.269262163350867, 2.1969014341595035, 2.0500152066276582, 1.8531355729462353, 1.6116461166656302, 1.3441890287193006, 1.0776372002867933, 0.8318446687124509, 0.6216503295064166, 0.4280802664346722, 0.2580328751581698, 0.09492392572469519, -0.03783883582663792, -0.1278936894946801, -0.15340114022924645, -0.13378907218905614, -0.07970034426453142, 0.024827463778032993, 0.021182481556085608, -0.01312673050564771, -0.0661973901325458, -0.1288737519282671, -0.20289619057469638, -0.30122724441023385, -0.4246719089647702, -0.5683315439096962, -0.6862350718860535, -0.7804749851214425, -0.8333862252003773, -0.8371896395289917, -0.783783071844161, -0.6804481877854843, -0.535010951450402, -0.34985946019780084, -0.1549203586497536, 0.044147453149288814, 0.23126297924459172, 0.4210406013326731, 0.6440493858963495, 0.9104506107287598, 1.1922216590490027, 1.4573270922405082, 1.677040962107615, 1.851659697379739, 1.9949784239580288, 2.122244043324858, 2.2341152381043496, 2.3110597687468, 2.330499124412555, 2.267023926914168, 2.1276023947562863, 1.9427800718777772, 1.7189141038230764, 1.4783481478616478, 1.2397712058073749, 1.0152046868558442, 0.8211434486028459, 0.6318655146932342, 0.4554615460850109, 0.2858253816364383, 0.13981082857420765, 0.028892407690534617, -0.030707315363983675, -0.048705671430746576, -0.03434863331062915, 0.0151069659142924, -0.0005224366637456928, -0.04810732981041232, -0.11665267155775721, -0.19552561506538013, -0.2825689540232458, -0.39623166688759187, -0.5414504830988878, -0.7081585434367631, -0.8532502243273349, -0.9595601477783801, -1.008591540986246, -1.0007157069276529, -0.9419671229636585, -0.8317380130841274, -0.68311711172568, -0.4990339098049062, -0.29781481694201556, -0.09385832475651634, 0.0982959962667257, 0.29890191498653396, 0.5279711943306262, 0.809098488826878, 1.1219974682163452, 1.420626182611686, 1.6609816295047832, 1.8508660140063586, 1.9930651034193898, 2.1108925658604623, 2.2098887205304427, 2.283831729666883, 2.3109607335381073, 2.263269726754492, 2.1455266868949163, 1.9830281704486217, 1.7873945983043942, 1.5799419810692001, 1.3717085367366244, 1.1622517227298026, 0.9701877386803237, 0.7793007985346626, 0.596692281061703, 0.4213503591583588, 0.2727238417966342, 0.15945141761067777, 0.0869042972937209, 0.04128182201338353, 0.018672975760753024, 0.017195998975778413, 0.0019481275387511683, -0.044174489131477444, -0.1156444359061874, -0.20545573212745943, -0.3100323084857242, -0.4512130020863145, -0.6268589052887806, -0.8161765513887675, -0.976226848206794, -1.089954152460083, -1.126814910806569, -1.105119775776946, -1.0405454924885098, -0.9294179238495834, -0.7885602784242176, -0.6131611175974729, -0.40905999511799185, -0.19788763986159236, 0.003951501561853234, 0.21630952598192438, 0.4506227105978157, 0.7318766586493528, 1.054416047162165, 1.3690050999060785, 1.626146361065203, 1.8229879435393876, 1.9541964211974285, 2.054335652641305, 2.130360318599659, 2.183667205608693, 2.204888515191121, 2.1790824094046957, 2.0953806365852854, 1.9627471332235011, 1.7987728278665156, 1.6164912709723716, 1.435688446032062, 1.2454821044927473, 1.0592529096116727, 0.8751302690920452, 0.6973748144066177, 0.5267417856251276, 0.3806819245662701, 0.2733875974778007, 0.19477639135302485, 0.1287256038054212, 0.06968135541356453, 0.03480571187213634, 0.03671387437088994, 0.0015051079529249112, -0.0647540506733729, -0.1589804968954035, -0.27819303559979414, -0.44701301801420873, -0.6604563249156423, -0.8748490174090636, -1.0518968409401617, -1.1654913143556473, -1.1957849880695246, -1.1626341784384269, -1.0938046929436454, -0.9868758924315525, -0.8588125328872895, -0.695950069872112, -0.4941524083747686, -0.2764886769378379, -0.06389445948214846, 0.15761706773893774, 0.39582114868933865, 0.674787773536978, 0.9838626639686706, 1.2918368985806632, 1.5488638962791896, 1.7436285588805929, 1.8664040189251232, 1.9511606483670734, 2.0043806085595186, 2.03216862777808, 2.036437282775007, 2.019487123604598, 1.9593179348795047, 1.85997820003767, 1.7364801452573237, 1.5872083455086448, 1.434592083739258, 1.2724339398874833, 1.1007124577751668, 0.9292991391155755, 0.7624578913032595, 0.6060221526311869, 0.47606507034891415, 0.3782753778713846, 0.29599950145404813, 0.2107731035298306, 0.11588129831832532, 0.054233402122725295, 0.0801877078233044, 0.06817423179213454, 0.015106216351036574, -0.07660677070356835, -0.20614819683005553, -0.38985750661284124, -0.6228405656389454, -0.8595018616297838, -1.0526860901011725, -1.170734109208081, -1.199833536722875, -1.1711376458058842, -1.1129057214311875, -1.0255088232604912, -0.9171752233000884, -0.767883812395795, -0.5724479795315134, -0.3465314879473719, -0.11933690759909966, 0.1072141109254927, 0.3414298766157024, 0.6051874244784384, 0.8908539123608642, 1.1733515854901257, 1.4143792080549247, 1.5969017704655033, 1.7183901917969426, 1.7963923404706854, 1.8324631968767398, 1.8381170371241764, 1.8180327128817684, 1.7862987512614676, 1.7318175624265586, 1.6592375252849345, 1.5806693239116023, 1.473699943647971, 1.35999160601096, 1.2337771325788005, 1.0946818355297758, 0.9506867268870217, 0.8079542265259451, 0.6713383424991076, 0.5547416325538672, 0.45796051433777113, 0.36664418552826067, 0.2674338070902596, 0.1456980331899014, 0.07055360773912236, 0.11696931921799301, 0.1275678978320511, 0.09596339870881697, 0.01625341920907337, -0.11342061700302158, -0.2976993731422955, -0.5320269829073312, -0.7736680488904327, -0.9809134233000962, -1.1086517327356318, -1.1561072736170313, -1.1459841219451112, -1.1083885075608781, -1.0431807544360039, -0.9478732753308101, -0.8091922731891642, -0.6220690656826938, -0.3996412889047109, -0.1668001344998755, 0.056802845709591716, 0.27721535970998973, 0.5169261303501115, 0.7709973666725249, 1.0201955034806205, 1.2341461752387477, 1.3997905379199411, 1.5223973593654505, 1.5979935362567474, 1.6203322176808304, 1.6034280733870243, 1.5535259062294438, 1.4990557005653735, 1.445768574529634, 1.3963476648174284, 1.349394588769994, 1.2876911530727804, 1.2163566016585152, 1.1375152289690744, 1.0435817453010725, 0.9440169473904982, 0.8373352608418214, 0.722330081897487, 0.6094252490925596, 0.5031312382519971, 0.39937907806803147, 0.289782061293993, 0.15486631435302284, 0.08174286441836684, 0.13633375852692298, 0.1603406603227701, 0.14296935244900325, 0.08586530745985224, -0.024101705054485893, -0.18862921257857565, -0.408264241414772, -0.639941246440891, -0.8445963846321616, -0.9853912424865489, -1.061516620270895, -1.084224837211185, -1.0752058605914618, -1.0328538570311159, -0.9504604485920894, -0.8169734228423086, -0.6324483013081365, -0.41517707694859785, -0.19343322376365799, 0.01878497895991456, 0.22345778970379146, 0.4393746623357361, 0.660502740642733, 0.8608558660374576, 1.0331387459015904, 1.1677220710336738, 1.2798841620163437, 1.3553565976826594, 1.3772507782074046, 1.3439535057363121, 1.2650252729374762, 1.1809065407736061, 1.1225494032379864, 1.0874860555299135, 1.0691701026517295, 1.051364466210564, 1.0288778685995463, 0.9975344690333382, 0.9586660749571841, 0.9062446236989377, 0.839923887135619, 0.7453102376705019, 0.6342414507225896, 0.5187335740773019, 0.4032494451065591, 0.28501588971187874, 0.14739293864525882, 0.08832091199028115, 0.15144341933793073, 0.18136754250194437, 0.16805962325643115, 0.12149726040286594, 0.03398160558844677, -0.10251162278262779, -0.2972623274317438, -0.5083385550720586, -0.7020089398734722, -0.8458007311783857, -0.9434449922961239, -0.9944214327089282, -1.0125196676474997, -0.9877545108883157, -0.9125091117972579, -0.7838993099527403, -0.5997125529846062, -0.39617574493785923, -0.19672935750959758, -0.006624287470555025, 0.17965639452242438, 0.37709917472663324, 0.5722679131844335, 0.7306601545563987, 0.8574157553994821, 0.9454862646311205, 1.020376290291574, 1.0766226165682098, 1.0927772722497702, 1.0525318789591949, 0.9636565438568706, 0.8684567175514301, 0.805202681170149, 0.7838445808792193, 0.7881455129151667, 0.8104563826617514, 0.823925050220884, 0.8361321757864947, 0.845968528084441, 0.8374754897689779, 0.8047135007801965, 0.7330912693511743, 0.628089066476813, 0.5127930147592088, 0.39149495359494485, 0.2684004938329505, 0.1348255033557543, 0.10178590996982129, 0.17395089727899182, 0.20681874864220773, 0.18665490245870792, 0.14060620443405783, 0.06001820759355363, -0.05117156054666659, -0.2143209845108419, -0.3979250353137219, -0.5771735138698443, -0.7227151710926042, -0.8292409725263484, -0.8984882168734803, -0.9372881619494721, -0.9233805626623364, -0.8525243590287701, -0.7276763227629739, -0.5582425772041961, -0.3762745637069205, -0.20176392316652433, -0.026668663249248263, 0.14520736799435774, 0.32998277858320885, 0.5048863713492774, 0.6277854747820303, 0.7060066993395933, 0.7332869305661184, 0.7553146354686656, 0.7743910890386579, 0.7740985645108812, 0.7292619787750511, 0.6522211344576372, 0.5698666032461058, 0.516400294535915, 0.5078592166328977, 0.5301958519420908, 0.5738514760287574, 0.6184947836725444, 0.6661841217062517, 0.7178959488861075, 0.7382807203210674, 0.7302701768115494, 0.6780400587529061, 0.5890730084560696, 0.48382145110218744, 0.3682077209041086, 0.25042220606753474, 0.12545234047664136, 0.12590484953008987, 0.20920352454443245, 0.23481043591700734, 0.21110515755087378, 0.1612249124871141, 0.07901046369951126, -0.027435275972273403, -0.1727701941829199, -0.3343133663286989, -0.49499079514127214, -0.6310608538040461, -0.7349555141825695, -0.8076346042178216, -0.8542206191198017, -0.8494954722272438, -0.7833488203127944, -0.6684023687007936, -0.5221222090261759, -0.3726398331193261, -0.22302168133917497, -0.06714228917159058, 0.09576336562935889, 0.27415286360769026, 0.43384749138211715, 0.529084616340348, 0.5606586351238223, 0.5295195330828342, 0.4990192636119501, 0.4800001319876058, 0.4606150005311603, 0.41721759554618243, 0.35678557131065036, 0.29777671802082223, 0.261348965016746, 0.26895151732511596, 0.3000468482000908, 0.3564326779324329, 0.4223999257804061, 0.49636798189618386, 0.5696190072923425, 0.612206569773035, 0.623127445953185, 0.5960903037660417, 0.5313641252824582, 0.4481483761376484, 0.34840674475963335, 0.24415237638595522, 0.12640957833814992, 0.13915914780852917, 0.2292492376872349, 0.25426158353353434, 0.23167619094907504, 0.18421545877704648, 0.10258084455185326, 0.0007653134697945513, -0.13895222814649688, -0.28897264044040133, -0.4318119264227046, -0.5534917016807512, -0.6499422466874105, -0.7160009358112593, -0.7543718994980523, -0.7505399014211642, -0.6971731555386265, -0.6032055225549986, -0.4923843319397878, -0.37739770229456615, -0.2566751321984616, -0.1238328467948449, 0.026907701616474346, 0.19744129505520142, 0.3409952022467631, 0.41729828703597505, 0.4188967623312238, 0.3500966952112306, 0.27997951529999976, 0.22232652519467688, 0.1827068462259411, 0.14090674926804497, 0.09854139950343425, 0.06131145147412175, 0.045020701263779224, 0.06294371180715072, 0.10316306553201642, 0.16717104875074065, 0.2515519508613995, 0.33618089604246004, 0.41783665557359156, 0.4757121991543101, 0.5025941235286239, 0.4968645887745773, 0.46111447864827243, 0.40423399213953326, 0.3274701961124465, 0.23812677182106962, 0.1255849903081732, 0.12614844843283007, 0.21766142677492228, 0.2479700182653808, 0.2384832561498595, 0.19723968134701084, 0.1321699659685185, 0.04572711516220913, -0.08303208022102349, -0.22794892704514952, -0.3594858671536867, -0.4635039253771979, -0.5472332896816869, -0.5999609481529435, -0.6238549711528084, -0.6191606612346101, -0.5815495420233397, -0.5190703332066094, -0.4448928232550343, -0.3646222281385606, -0.26643894137302554, -0.15576272857118953, -0.021543627910989457, 0.12117395513994288, 0.23356061468874548, 0.2891906604613556, 0.2781501494985139, 0.20287413644363814, 0.11646228236133958, 0.03754130298772825, -0.019001358044790317, -0.058907575442257935, -0.08868182492220587, -0.11232816030667857, -0.11940040033001205, -0.09891133022682728, -0.05346086332861722, 0.01815877565990518, 0.11035171057304617, 0.19939628898746653, 0.2840496971453139, 0.35381298673738143, 0.38894501255283964, 0.40257944866254436, 0.38980970285588945, 0.35557505658191024, 0.2967734562149009, 0.2180297668142833, 0.1140480051127527, 0.0926429900994835, 0.16644405966984405, 0.20108651492567298, 0.21527834401793383, 0.20468663390399167, 0.16979206507837147, 0.10496654333258942, -0.011359658817106596, -0.14783236211506495, -0.2689859960556451, -0.35355741479194497, -0.4162589855707368, -0.4533941353408252, -0.46852773477474335, -0.4659120900354656, -0.44250457682870087, -0.40348628763196503, -0.3581776101036476, -0.30325427866355514, -0.22720685181022546, -0.13720563264702354, -0.031078952433385616, 0.07114930138693536, 0.14636855786101832, 0.18248852425649015, 0.16774231818918897, 0.10190364072797951, 0.017381279741717173, -0.06345875382272051, -0.12682832934333485, -0.17311642998376023, -0.20286185441496105, -0.22670571841747433, -0.23046875678375775, -0.20822248685161143, -0.1551542953917502, -0.07922611081338994, 0.012583521287384599, 0.09851345984137715, 0.18010508359683017, 0.25064548290983263, 0.28925621410600916, 0.3181968616900269, 0.31862142107379654, 0.29377434119560897, 0.2432822046149068, 0.1747297426393779, 0.0897163020468167, 0.050882083653940126, 0.09539007583127387, 0.1243416885452315, 0.16325563849518906, 0.18694232329629198, 0.18395817362430603, 0.1377040249350328, 0.04501419318946631, -0.06734610638188925, -0.17046839871680758, -0.2388579400028124, -0.28335185987531325, -0.3030960161940839, -0.3082198265995059, -0.3038325822053754, -0.28964700971417856, -0.27001561332572627, -0.24446617537416535, -0.20772877430376138, -0.1478522803019055, -0.07749371741911511, -0.0023753697706109223, 0.058992267076952605, 0.1012398398658291, 0.11439184047398257, 0.092019782293751, 0.03793662413328005, -0.03504522096687608, -0.10230737023079221, -0.1618519421543957, -0.21093469350427885, -0.24379665458001717, -0.26926716591302624, -0.27087427494425403, -0.24669984965284014, -0.1945811871903654, -0.12364347604254886, -0.04179117901590379, 0.03280445445234841, 0.10150817786405833, 0.16243677303212503, 0.20168213420917427, 0.23627655677768966, 0.23702097225076924, 0.21384478264875403, 0.1694325525818461, 0.1138994101479436, 0.056447258742937316, 0.01395551570570037, 0.03341818952275389, 0.05724471299615101, 0.10020588650795273, 0.1387877827873372, 0.15321592546235063, 0.12851059216023572, 0.0656393829420382, -0.013946870516024005, -0.08999296884114741, -0.13920461936328887, -0.166800700479097, -0.17524846867615754, -0.17287397851111844, -0.16623347911940695, -0.1590737298526185, -0.15230462765741964, -0.13969073234998705, -0.11350792835941857, -0.06843643270492533, -0.014639474826165726, 0.03213052593426466, 0.061200212833413946, 0.07713188264840899, 0.07189119242842867, 0.04734966721988678, 0.011429114614908913, -0.04179670186409151, -0.09387537569744173, -0.14379341037395982, -0.1867807137677381, -0.2144928127314663, -0.23809482176609378, -0.2392814305952244, -0.2169503812355804, -0.17477594781370695, -0.11819780563570222, -0.0535645929028397, 0.0021833717565529053, 0.048826466927265985, 0.09337984887336985, 0.12806832758440378, 0.156965761437621, 0.1505156559127256, 0.1293513130480024, 0.0953432708997972, 0.05679875843320764, 0.02526315306508892, -0.004062446366398147, 0.004081177395223716, 0.02049146697821741, 0.04853750304599178, 0.0742297918217421, 0.0891000803746159, 0.08001655726225516, 0.046951500777428, 0.001233938672605331, -0.04045574739682843, -0.06321919686587796, -0.07340360281730238, -0.07532862745166247, -0.07406823417261764, -0.07109677899235732, -0.0692958436864425, -0.0664364495710119, -0.057081642481014216, -0.03985842463325701, -0.014017947622008918, 0.014221297518406709, 0.033502042358883787, 0.041072843049226905, 0.04362839520088705, 0.03535455750286873, 0.019563830368421083, 0.002412750849955324, -0.026178210339085167, -0.056304310106451545, -0.08596996192076482, -0.11019657359089136, -0.12624428613837865, -0.1415882772706165, -0.14226332251212184, -0.12673446635807104, -0.10164542539106323, -0.0698563749777983, -0.03332902219234102, -0.0040463365926822785, 0.016946933187012573, 0.03791382479523383, 0.0587616176456065, 0.07526905010880666, 0.06938131107375502, 0.05669880142374603, 0.03861372107770447, 0.018745350634206234, 0.006119782069209299, 5.711895999186883, 0.13873744688789771, 0.13867587580303456, 0.042664649819608436, 0.1647055403724984, 0.20877292801078715, 0.1005902283519436, 0.059719690771735265, 0.15953935644914138, 0.10962715184755438, 0.02308478037577736, 0.13207164233343838, 0.07885769736731829, 0.07375091656744409, 0.15188395556225812, 0.07590643748390594, 0.05286481304480498, 0.1290921760389648, -0.03794537176239952, -0.11529143063112231, 0.08298150252143485, 0.22208756810265126, 0.08862239101257541, 0.040431831701024636, 0.0021565570803084256, -0.2538476117303457, 0.10663321786456571, 0.10237630782176192, 0.13486483772199742, 0.01252270269074727, -0.21948291252480656, 0.05840785834423638, 0.05227388815763036, 0.08512824380099825, -0.359484335068418, 0.13346775325746274, 0.07208482008149882, 0.04110545147727677, 0.07444186337405963, -0.307646519419434, 0.08300831845665099, 0.05710762788686321, 0.11621752539633981, -0.1997784264167861, 0.16278740837452255, 0.08583629292387848, 0.0674089789209481, 0.09245720290074656, -0.19008435618441114, 0.20036968536227717, 0.1110637220241777, 0.0789576509275871, 0.09982459250680348, -0.5001748786288372, 0.017342090401909645, 0.21497665874326094, 0.09701446489850181, 0.06074600179662531, 0.13055412357611404, -0.386305446978643, 0.00014983101885151696, 0.2318481497443753, 0.10880542373770721, 0.13760955371325834, 0.1335036893222835, 0.01748049975197292, -0.22754955749186423, 0.2857586119534252, -0.06982212474552149, 0.11001995202257979, 0.09673571411576985, 0.1438354307724803, 0.16530744307276946, -0.2943540949309506, 0.2824249705569035, -0.05614224789017031, 0.10464310345709753, 0.07570334198449324, 0.19330943932478684, 0.2774169053342335, -0.15623906596529866, 0.10982481614233429, 0.10297729459686211, 0.07835584043475241, 0.22281792714564636, 0.29927432549150323, -0.9325250175377683, 0.1780802441131838, 0.11822499003881078, 0.07001068346718377, 0.20087854993895207, 0.33184989729744896, -0.15500421999955596, 0.14664226000597966, 0.1258796092882746, 0.011990432873390515, 0.16187884464361052, 0.3936837211006682, -0.07719865902284792, 0.23743383684448904, 0.1043375077486798, 0.16157089928629173, 0.4464577454542084, -0.2777853156098558, 0.25037541731272267, 0.02612078541159355, 0.022367429154527947, 0.03748431663281597, 0.05426931354821225, -0.0003379482621823106, 0.028461635948675696, 0.04735719282138819, -0.00998353057134035, -0.014342137240598157, 0.017660302948278153, 0.06183772778357298, -0.0012244782550917695, 0.02203249897831047, 0.042699302085215086, 0.030836196497337837, -0.039370778814981924, 0.02262796430434177, 0.051241666335734445, 0.07804036225929507, 0.017104467662477287, -0.012393704322417437, 0.03377043344864185, 0.025392502773392528, 0.018797678764924833, 0.04529566780487234, 0.02147277495241342, 0.0174954192988214, -0.008805607664939683, 0.05258445768309106, 0.055713369743094605, 0.026820085873982845, 0.00891653104382862, 0.03661416693150538, 0.05254197140970789, 0.036658832604688656, 0.002232900207754935, 0.0024266847955939654, 0.047982889321576634, 0.05939411035646482, 0.0005905156791956467, 0.05965534502555524, 0.038820563273683426, 0.04904781484638424, 0.059657073166257596, 0.01864588803258101, -0.03429054556053854, 0.05185190322718405, 0.06714033919843902, 0.02315472179012945, -0.009852612115755952, -0.04845317035734052, 0.0457999493921294, -0.12568520082083545, 0.04331493791038236, 0.06281589391097543, 0.0001987180551815064, -0.004778321413514932, 0.04770339079620585, -0.09973542066899306, 0.04543506703973181, 0.06141416331783643, 0.007779723322883721, -0.08942377489366256, 0.051162904226779764, -0.008269304914474607, 0.038432498904875795, 0.03855103438577453, -0.12530263956823157, 0.0008976124718489937, 0.004564734024207419, 0.039941053909883124, 0.024718553869380128, 0.0802312267823461, 0.04281916747361256, -0.0703647596020348, 0.0186666601664134, -0.02047912552385917, 0.021382074503227374, 0.036575982526903514, 0.04374072637819814, 0.03226842351654654, 0.003400451938225948, -0.07506586893097664, 0.013050137921455079, 0.03342777730202878, 0.04216376643602573, 0.004671788850470471, -0.009616501886043004, 0.023997728210307868, 0.04188379226824938, 0.038626229567387295, 0.059482412251633775, 0.04267130628905009, -0.011642261589472753, -0.013212461193239699, 0.05404579774415803, 0.053182711720703636, 0.06765347360332218, 0.0689552720996745, -0.003902530397608656, 0.05729551272733869, 0.06978986320610954, 0.03376761811828634, 0.06448297965017244, 0.3265656191638811, -0.9420079196279779, 0.5893952244614175, 0.7795092035130067, 0.36376936251331043, -0.7669376184624916, 0.4457174404403908, 0.8242445357817153, 0.5146162018452755, -0.8515548920017784, 0.32953803252543, 0.7637995812869948, 1.156685738313506, -1.1277685696956339, 0.37138490395230156, 0.8728653594680124, 0.6012271549132718, -0.44231296304971446, 0.3975328712672753, 0.8597422249693947, 0.9247042796455791, -0.3799796377186419, 0.3384455050539533, 0.8798412801619987, -0.5764431857925698, 0.6018239561750758, 0.9501232647393364, -0.25733106108353176, 0.3250521382150077, 0.9278763651947604, -0.7284645223645984, 0.47910937153506516, -0.19625987126837277, 0.937452562864055, 0.9249362821764413, 0.013629911326249843, 0.2571585175650921, 0.9517380821012335, -0.6779073861697313, 0.4335941339015137, -0.18395952985732933, 0.980547886090202, 0.23831291454837408, 0.9108426471322243, -0.9109249194715258, 0.3129825404855633, -0.13655958698122633, 0.9479991194732287, 0.8906487734768559, 0.41012111768453047, 0.1428118277094433, 0.9325226013016605, -0.9252362495605061, 0.26144534040769285, -0.18470475759750185, 0.9628006611521724, 0.23232052263380756, 0.9140778458512904, -0.9817892184018123, 0.12376842097317618, -0.2522980492870102, 0.9560131113608114, 0.6334440289843918, 0.7623310707253073, 0.19086940288227489, 0.9130245918825817, -0.9047797938124283, 0.022009694548822862, -0.28963591712627285, 0.9401948314531824, 0.45691532560766246, 0.6536641084384777, 0.2609575740053763, 0.9541852754987845, -0.7804645575382566, -0.20338260526319066, -0.49649502649290106, 0.8289953695998138, -0.3260907667391588, 0.7053815923904178, 0.26835205864665707, 0.9605944944661859, 0.19746345800682535, 0.9304416433854493, -0.9392546258758682, -0.284191424139073, -0.5146835240378524, 0.8448118273514104, -0.4967671937670075, 0.8570304093960615, 0.1332607246418927, 0.9166423713199535, 0.2197088857151493, 0.9612867620078437, -0.8440547815038508, -0.4938917711089471, -0.5614185151505986, 0.7975578786247984, -0.6819164148584075, 0.7106033223535372, -0.11809192048993183, 0.9692296409629367, -0.5541366984127205, -0.8315389447213155, 0.2525831504288535, 0.944327567342319, -0.7641718703575178, -0.5887571494402805, -0.5706649268557933, 0.7766089949975414, -0.7328514011589045, 0.6276575219999242, -0.20884944458988403, 0.9246689292093466, -0.4822842251008246, -0.8678893684991419, 0.25044352033000217, 0.8567051422092818, -0.3841567644597814, -0.8685624119024256, -0.582894184288066, 0.7963984670262308, -0.9092913608567336, -0.3401857842551513, -0.7260454108113399, -0.20435532841238693, 0.3577269778269331, 0.8450584412487014, 0.15404062077336592, -0.9607326503515092, -0.5681565786994308, 0.8157684827724457, 0.008241969048693622, -0.9799279189770052, -0.8663291864425533, 0.5024622423844635, 0.618854227246066, 1.0455224987964773, 0.694893604216793, -0.6735519091443569, -0.5053471519691275, 0.8224095854011071, 0.6807337000161596, -0.7024039568274235, -0.060359774890662965, 1.013848758707689, 0.6325886382307454, 0.8158334001423779, 0.8073002667263491, -0.27929036709153876, -0.5179862836998934, 0.8593808574843683, 0.8907558522872682, -0.35171263102906236, 0.2955231320994392, 0.9219044070180943, 0.9067427178426891, -0.14722248594259157, -0.4269776112796637, 0.8685562945714461, 0.9018477089488964, -0.23423453946056258, 0.5363700102045617, 0.862816960932603, -0.04687237309453825, 0.9552548922256774, -0.07597661773543932, 0.9409878780272858, -0.04259240475612004, 0.9396103582003009, 0.06689783419865862, 0.967314842048665, -0.03748181555748082, 0.9704961657180173, 0.04789357226859433, 0.8477399182917802, -0.06981617999844156, 1.089942759145887, 0.05667500635624403, 0.9629267259083727, -0.02832592861578934, 0.8698827306957123, -0.0663291095881027, 0.9410124099253327, -0.06630063258572017, 0.9564559773860452, -0.047776972729312174, 0.9404300009099332, -0.04343561262594924, 0.9472438691952, -0.04451889960931317, 0.9502824677212558, 0.024060526234837846, 0.9683523483010575, 0.035132866525016376, 0.9386561862846222, 0.039787402473083384, 0.9736732052743784, -0.05527695015598506, 0.9549442902501066, -0.005161627704568703, 0.9499084347822256, -0.016454936624370073, 0.9380699894831491, 0.024416054433701123, 0.9567163004437774, -0.04847729616189713, 0.9403938940508692, 0.03143363577875755, 0.9441259068985381, -0.013604541930814621, 0.9467259433604582, -0.05365680886269655, 0.9462681164087517, 0.017404708428501094, 0.9419083933059853, 0.0044214901407685515, 0.9489211385292191, 0.02338490384188731, 0.9539601068444528, -0.0520631143460908, 0.9416358611164799, -0.03837987558619765, 0.9559364480387783, 0.02914109033427629, 0.9626740541217631, -0.03420651978016047, 0.9496972457645272, 0.029468720206678393, 0.9763040127498842, -0.025140495376345984, 0.9776604737812464, 0.026530946773115814, 0.9770731588742043, -0.05311768466808932, 0.9106986261082161, -0.07027494745423761, 0.9605920309750791, -0.014404055643096264, 0.873178124860826, 0.00142808118563902, 0.9452312856199182, 0.015251837814288554, 0.8611892866581169, -0.03743740846258369, 0.9469109927462881, -0.011723082080183297, 0.9465814773499289, -0.051879043301575695, 0.9674716863449532, 0.004625177800433708, 0.983900643906076, 0.05413835697472789, 0.9605119987414791, -0.01477254545265543, 0.9786792861071575, -0.013483847773697665, 0.9632777482934455, -0.08500806284297399, 0.9499857347268524, 0.0008816848827019411, 0.9655509055892144, 0.06239534519437407, 0.9536120748389734, -0.022238692189194657, 0.9388242471439957, -0.5905264200507879, 0.7685083471535126, 0.024451742299694955, 0.9603457298619709, -0.04935256109691219, 0.9447528765756172, 0.0017445801438561912, 0.9529500229174893, 0.051126525650912136, 0.9449907152737022, -0.029251338252073173, 0.9886324425215575, -0.22870609799852187, 0.9220044432103933, -0.005592841144645637, 0.9463623016157837, -0.07305981539278203, 0.9800738832725108, 0.01948120035956589, 0.9780173401007441, -0.013156729231578016, 0.9809428283476184, 0.2875577370740399, 1.214163686760078, 0.05418701097612882, 0.9704041629030266, 0.05482947441006194, 0.9450873478899551, 0.014547633926026579, 0.9744923098820016, 0.01330772930801651, 0.953128223485648, 0.16208443063265443, 0.9457445730675488, 0.03305291553641072, 0.8272444930668207, 0.16973277686686764, 0.9382642859379732, 0.011446969196628352, 0.9460134081499753, 0.014496163605206893, 0.9625993289971876, -0.11751362106121528, 0.9709210126272818, 0.05745131421320343, 0.864832741597347, 0.19351937287615006, 0.9615790552900427, 0.012921348408286308, 0.978033823131185, -0.011370048125217948, 0.9780325059348705, 0.03940094180561908, 0.9881431511682188, 0.17290741460240996, 0.9688578045765228, 0.007830574054234657, 0.9455013893731982, -0.007248257075630492, 0.9662391700382629, -0.028214226848906575, 0.9729988257839909, -0.010824731500294959, -0.05391450335010085, 0.03060420421757431, 0.0005675071606143261, 0.034720615728814526, -0.11211645831825322, -0.03896739602659108, -0.04050022603242034, 0.037926089068212036, 0.08777918182336464, 0.0007296415127728724, 0.04312115673739187, 0.013567489298582324, 0.0003580177030829035, 0.00852672735889978, 0.019179619086284776, -0.025559643194598653, -0.060279984599293915, -0.004717045948331756, 0.14585578889245301, -0.04302172474836201, -0.031986885165784594, 0.03735637503930742, 0.08807571542885825, 0.05387271399935864, 0.008608281025169391, 0.00941927596539451, 0.05928748531852142]
Final objective value: -17642.620191267077
)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.026 missing missing missing missing 1.023 missing
0.73 hr │ 227.070703125 GHz │ 1.038 1.056 missing missing missing 1.0 missing
0.88 hr │ 227.070703125 GHz │ 1.029 1.048 missing missing missing 0.99 missing
1.3 hr │ 227.070703125 GHz │ 0.986 1.018 missing missing missing 1.064 missing
1.45 hr │ 227.070703125 GHz │ 0.999 1.022 missing missing missing 1.044 missing
1.89 hr │ 227.070703125 GHz │ 1.031 0.961 missing missing missing 1.023 missing
2.04 hr │ 227.070703125 GHz │ 1.053 1.081 1.017 missing missing 0.988 missing
2.46 hr │ 227.070703125 GHz │ 1.034 1.026 1.019 missing 1.046 1.022 missing
2.61 hr │ 227.070703125 GHz │ 1.018 0.991 1.054 missing 1.057 missing missing
3.06 hr │ 227.070703125 GHz │ 1.027 1.009 1.037 missing 1.054 1.037 missing
3.21 hr │ 227.070703125 GHz │ 1.002 1.002 1.049 missing 1.061 missing missing
3.62 hr │ 227.070703125 GHz │ 1.001 1.061 1.04 missing 1.05 1.061 missing
3.78 hr │ 227.070703125 GHz │ 1.019 0.966 1.053 missing 1.069 1.023 missing
4.23 hr │ 227.070703125 GHz │ 0.99 0.953 1.047 0.882 1.044 1.065 missing
4.37 hr │ 227.070703125 GHz │ 1.0 0.995 1.049 0.905 1.046 1.063 missing
4.79 hr │ 227.070703125 GHz │ 1.008 0.914 1.052 0.992 1.039 1.039 0.882
4.95 hr │ 227.070703125 GHz │ 1.001 1.005 1.041 1.025 1.084 1.044 0.932
5.63 hr │ 227.070703125 GHz │ 1.019 0.98 1.022 1.037 1.045 missing 1.033
6.15 hr │ 227.070703125 GHz │ 1.003 0.928 1.013 1.034 1.043 missing 1.005
6.72 hr │ 227.070703125 GHz │ 0.99 1.024 1.043 1.039 1.061 missing 1.044
7.23 hr │ 227.070703125 GHz │ 0.988 0.987 1.056 1.055 1.07 missing 1.071
7.44 hr │ 227.070703125 GHz │ 0.996 missing 1.059 1.072 1.034 missing 1.067
─────────┴───────────────────┴─────────────────────────────────────────────────────────────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] ↩︎