Skip to content

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 R/L components of the electric field, and linear feeds, which measure X/Y components of the electric field. Most sites in the EHT use circular feeds, meaning they measure the right (R) and left electric field (L) at each telescope. Although note that ALMA actually uses linear feeds. Currently Comrade has the ability to fit natively mixed polarization data however, the publically released EHT data has been converted to circular polarization. For a VLBI array whose feeds are purely circluar the coherency matrices are given by,

Cij=(RRRLLRLL).

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

(I~Q~U~V~)=12(RR+LLRL+LRi(LRRL)RRLL).

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 Vij are given by

Vij=JiCijJj

where J is known as a Jones matrix and ij denotes the baseline ij with sites i and j.

Comrade is highly flexible with how the Jones matrices are formed and provides several convenience functions that parameterize standard Jones matrices. These matrices include:

  • JonesG which builds the set of complex gain Jones matrices
G=(ga00gb)
  • JonesD which builds the set of complex d-terms Jones matrices
D=(1dadb1)
  • JonesR is the basis transform matrix T. This transformation is special and combines two things using the decomposition T=FB. The first, B, is the transformation from some reference basis to the observed coherency basis (this allows for mixed basis measurements). The second is the feed rotation, F, that transforms from some reference axis to the axis of the telescope as the source moves in the sky. The feed rotation matrix F for circular feeds in terms of the per station feed rotation angle φ is
F=(eiφ00eiφ)

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

julia
using Comrade

Load the Data

julia
using Pyehtim
    CondaPkg Found dependencies: /home/runner/.julia/packages/DimensionalData/KlTtO/CondaPkg.toml
    CondaPkg Found dependencies: /home/runner/.julia/packages/PythonCall/L4cjh/CondaPkg.toml
    CondaPkg Found dependencies: /home/runner/.julia/packages/Pyehtim/Fm109/CondaPkg.toml
    CondaPkg Resolving changes
             + ehtim (pip)
             + libstdcxx-ng
             + numpy
             + numpy (pip)
             + openssl
             + pandas
             + python
             + setuptools (pip)
             + uv
             + xarray
    CondaPkg Initialising pixi
             │ /home/runner/.julia/artifacts/cefba4912c2b400756d043a2563ef77a0088866b/bin/pixi
             │ init
             │ --format pixi
             └ /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg
✔ Created /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/pixi.toml
    CondaPkg Wrote /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/pixi.toml
             │ [dependencies]
             │ openssl = ">=3, <3.6, >=3, <3.6"
             │ uv = ">=0.4"
             │ libstdcxx-ng = ">=3.4,<15.0"
             │ pandas = "<2"
             │ xarray = "*"
             │ numpy = ">=1.24, <2.0"

             │     [dependencies.python]
             │     channel = "conda-forge"
             │     build = "*cpython*"
             │     version = ">=3.8,<4, >=3.6,<=3.10"

             │ [project]
             │ name = ".CondaPkg"
             │ platforms = ["linux-64"]
             │ channels = ["conda-forge"]
             │ channel-priority = "strict"
             │ description = "automatically generated by CondaPkg.jl"

             │ [pypi-dependencies]
             │ ehtim = ">=1.2.10, <2.0"
             │ numpy = ">=1.24, <2.0"
             └ setuptools = "*"
    CondaPkg Installing packages
             │ /home/runner/.julia/artifacts/cefba4912c2b400756d043a2563ef77a0088866b/bin/pixi
             │ install
             └ --manifest-path /home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/pixi.toml
✔ The default environment has been installed.
/home/runner/work/Comrade.jl/Comrade.jl/examples/intermediate/PolarizedImaging/.CondaPkg/.pixi/envs/default/lib/python3.10/site-packages/ehtim/__init__.py:58: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
  import pkg_resources

For reproducibility we use a stable random number genreator

julia
using StableRNGs
rng = StableRNG(42)
StableRNGs.LehmerRNG(state=0x00000000000000000000000000000055)

Now we will load some synthetic polarized data.

julia
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 0x7f5b9fbf39a0>

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.

julia
obs = scan_average(obs).add_fractional_noise(0.01).flag_uvdist(uv_min = 0.1e9)
Python: <ehtim.obsdata.Obsdata object at 0x7f5b9f876320>

Now we extract our observed/corrupted coherency matrices.

julia
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:

  1. 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 functions VLBISkyModels.PolExp2Map

  2. The instrument model. The instrument model specifies the model that describes the impact of instrumental and atmospheric effects. We will be using the J=GDR 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.

julia
using StatsFuns: logistic
function sky(θ, metadata)
    (; c, σ, p, p0, pσ, angparams) = θ
    (; mimg, ftot) = metadata
    # Build the stokes I model
    rast = apply_fluctuations(CenteredLR(), mimg, σ .* c.params)
    brast = baseimage(rast)
    brast .= ftot .* brast
    # The total polarization fraction is modeled in logit space so we transform it back
    pim = logistic.(p0 .+.* p.params)
    # Build our IntensityMap
    pmap = PoincareSphere2Map(rast, pim, angparams)
    # Construct the actual image model which uses a third order B-spline pulse
    m = ContinuousImage(pmap, BSplinePulse{3}())
    # Finally find the image centroid and shift it to be at the center
    x0, y0 = centroid(pmap)
    ms = shifted(m, -x0, -y0)
    return ms
end
sky (generic function with 1 method)

Now, we define the model metadata required to build the model. We specify our image grid and cache model needed to define the polarimetric image model. Our image will be a 10x10 raster with a 60μas FOV.

julia
using Distributions
using VLBIImagePriors
fovx = μas2rad(200.0)
fovy = μas2rad(200.0)
nx = ny = 32
grid = imagepixels(fovx, fovy, nx, ny)

fwhmfac = 2 * sqrt(2 * log(2))
mpr = modify(Gaussian(), Stretch(μas2rad(50.0) ./ fwhmfac))
mimg = intensitymap(mpr, grid)
┌ 32×32 IntensityMap{Float64, 2} ┐
├────────────────────────────────┴─────────────────────────────────────── dims ┐
  ↓ X Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points,
  → Y Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points
└──────────────────────────────────────────────────────────────────────────────┘
  ↓ →          -4.69663e-10  -4.39362e-10  -4.09062e-10  -3.78761e-10  -3.4846e-10  -3.18159e-10  -2.87858e-10  -2.57557e-10  -2.27256e-10  -1.96956e-10  -1.66655e-10  -1.36354e-10  -1.06053e-10  -7.57521e-11  -4.54513e-11  -1.51504e-11  1.51504e-11  4.54513e-11  7.57521e-11  1.06053e-10  1.36354e-10  1.66655e-10  1.96956e-10  2.27256e-10  2.57557e-10  2.87858e-10  3.18159e-10  3.4846e-10  3.78761e-10  4.09062e-10  4.39362e-10  4.69663e-10
 -4.69663e-10   1.25675e-11   4.60978e-11   1.55054e-10   4.78251e-10   1.3527e-9    3.50847e-9    8.34459e-9    1.81997e-8    3.63993e-8    6.67567e-8    1.12271e-7    1.73145e-7    2.44865e-7    3.1755e-7     3.77633e-7    4.11812e-7   4.11812e-7   3.77633e-7   3.1755e-7    2.44865e-7   1.73145e-7   1.12271e-7   6.67567e-8   3.63993e-8   1.81997e-8   8.34459e-9   3.50847e-9   1.3527e-9   4.78251e-10  1.55054e-10  4.60978e-11  1.25675e-11
 -4.39362e-10   4.60978e-11   1.69087e-10   5.6874e-10    1.75423e-9    4.96172e-9   1.28691e-8    3.06081e-8    6.67567e-8    1.33513e-7    2.44865e-7    4.11812e-7    6.351e-7      8.98167e-7    1.16478e-6    1.38516e-6    1.51053e-6   1.51053e-6   1.38516e-6   1.16478e-6   8.98167e-7   6.351e-7     4.11812e-7   2.44865e-7   1.33513e-7   6.67567e-8   3.06081e-8   1.28691e-8   4.96172e-9  1.75423e-9   5.6874e-10   1.69087e-10  4.60978e-11
 -4.09062e-10   1.55054e-10   5.6874e-10    1.913e-9      5.90051e-9    1.66892e-8   4.32864e-8    1.02953e-7    2.24542e-7    4.49084e-7    8.23623e-7    1.38516e-6    2.13621e-6    3.02106e-6    3.91783e-6    4.65912e-6    5.0808e-6    5.0808e-6    4.65912e-6   3.91783e-6   3.02106e-6   2.13621e-6   1.38516e-6   8.23623e-7   4.49084e-7   2.24542e-7   1.02953e-7   4.32864e-8   1.66892e-8  5.90051e-9   1.913e-9     5.6874e-10   1.55054e-10
 -3.78761e-10   4.78251e-10   1.75423e-9    5.90051e-9    1.81997e-8    5.14764e-8   1.33513e-7    3.1755e-7     6.92582e-7    1.38516e-6    2.5404e-6     4.27243e-6    6.58898e-6    9.31823e-6    1.20843e-5    1.43707e-5    1.56713e-5   1.56713e-5   1.43707e-5   1.20843e-5   9.31823e-6   6.58898e-6   4.27243e-6   2.5404e-6    1.38516e-6   6.92582e-7   3.1755e-7    1.33513e-7   5.14764e-8  1.81997e-8   5.90051e-9   1.75423e-9   4.78251e-10
 -3.4846e-10    1.3527e-9     4.96172e-9    1.66892e-8    5.14764e-8    1.45597e-7   3.77633e-7    8.98167e-7    1.95892e-6    3.91783e-6    7.18534e-6    1.20843e-5    1.86365e-5    2.63559e-5    3.41794e-5    4.06464e-5    4.43252e-5   4.43252e-5   4.06464e-5   3.41794e-5   2.63559e-5   1.86365e-5   1.20843e-5   7.18534e-6   3.91783e-6   1.95892e-6   8.98167e-7   3.77633e-7   1.45597e-7  5.14764e-8   1.66892e-8   4.96172e-9   1.3527e-9
 -3.18159e-10   3.50847e-9    1.28691e-8    4.32864e-8    1.33513e-7    3.77633e-7   9.79458e-7    2.32956e-6    5.0808e-6     1.01616e-5    1.86365e-5    3.13427e-5    4.8337e-5     6.83588e-5    8.86505e-5    0.000105424   0.000114965  0.000114965  0.000105424  8.86505e-5   6.83588e-5   4.8337e-5    3.13427e-5   1.86365e-5   1.01616e-5   5.0808e-6    2.32956e-6   9.79458e-7   3.77633e-7  1.33513e-7   4.32864e-8   1.28691e-8   3.50847e-9
 -2.87858e-10   8.34459e-9    3.06081e-8    1.02953e-7    3.1755e-7     8.98167e-7   2.32956e-6    5.54065e-6    1.20843e-5    2.41685e-5    4.43252e-5    7.45458e-5    0.000114965   0.000162586   0.000210847   0.000250741   0.000273435  0.000273435  0.000250741  0.000210847  0.000162586  0.000114965  7.45458e-5   4.43252e-5   2.41685e-5   1.20843e-5   5.54065e-6   2.32956e-6   8.98167e-7  3.1755e-7    1.02953e-7   3.06081e-8   8.34459e-9
 -2.57557e-10   1.81997e-8    6.67567e-8    2.24542e-7    6.92582e-7    1.95892e-6   5.0808e-6     1.20843e-5    2.63559e-5    5.27119e-5    9.6674e-5     0.000162586   0.000250741   0.000354602   0.000459862   0.000546871   0.000596367  0.000596367  0.000546871  0.000459862  0.000354602  0.000250741  0.000162586  9.6674e-5    5.27119e-5   2.63559e-5   1.20843e-5   5.0808e-6    1.95892e-6  6.92582e-7   2.24542e-7   6.67567e-8   1.81997e-8
 -2.27256e-10   3.63993e-8    1.33513e-7    4.49084e-7    1.38516e-6    3.91783e-6   1.01616e-5    2.41685e-5    5.27119e-5    0.000105424   0.000193348   0.000325171   0.000501483   0.000709204   0.000919723   0.00109374    0.00119273   0.00119273   0.00109374   0.000919723  0.000709204  0.000501483  0.000325171  0.000193348  0.000105424  5.27119e-5   2.41685e-5   1.01616e-5   3.91783e-6  1.38516e-6   4.49084e-7   1.33513e-7   3.63993e-8
 -1.96956e-10   6.67567e-8    2.44865e-7    8.23623e-7    2.5404e-6     7.18534e-6   1.86365e-5    4.43252e-5    9.6674e-5     0.000193348   0.000354602   0.000596367   0.000919723   0.00130069    0.00168678    0.00200593    0.00218748   0.00218748   0.00200593   0.00168678   0.00130069   0.000919723  0.000596367  0.000354602  0.000193348  9.6674e-5    4.43252e-5   1.86365e-5   7.18534e-6  2.5404e-6    8.23623e-7   2.44865e-7   6.67567e-8
 -1.66655e-10   1.12271e-7    4.11812e-7    1.38516e-6    4.27243e-6    1.20843e-5   3.13427e-5    7.45458e-5    0.000162586   0.000325171   0.000596367   0.00100297    0.00154678    0.00218748    0.00283681    0.00337356    0.00367889   0.00367889   0.00337356   0.00283681   0.00218748   0.00154678   0.00100297   0.000596367  0.000325171  0.000162586  7.45458e-5   3.13427e-5   1.20843e-5  4.27243e-6   1.38516e-6   4.11812e-7   1.12271e-7
 -1.36354e-10   1.73145e-7    6.351e-7      2.13621e-6    6.58898e-6    1.86365e-5   4.8337e-5     0.000114965   0.000250741   0.000501483   0.000919723   0.00154678    0.00238547    0.00337356    0.00437497    0.00520274    0.00567363   0.00567363   0.00520274   0.00437497   0.00337356   0.00238547   0.00154678   0.000919723  0.000501483  0.000250741  0.000114965  4.8337e-5    1.86365e-5  6.58898e-6   2.13621e-6   6.351e-7     1.73145e-7
 -1.06053e-10   2.44865e-7    8.98167e-7    3.02106e-6    9.31823e-6    2.63559e-5   6.83588e-5    0.000162586   0.000354602   0.000709204   0.00130069    0.00218748    0.00337356    0.00477093    0.00618714    0.00735779    0.00802372   0.00802372   0.00735779   0.00618714   0.00477093   0.00337356   0.00218748   0.00130069   0.000709204  0.000354602  0.000162586  6.83588e-5   2.63559e-5  9.31823e-6   3.02106e-6   8.98167e-7   2.44865e-7
 -7.57521e-11   3.1755e-7     1.16478e-6    3.91783e-6    1.20843e-5    3.41794e-5   8.86505e-5    0.000210847   0.000459862   0.000919723   0.00168678    0.00283681    0.00437497    0.00618714    0.00802372    0.00954187    0.0104055    0.0104055    0.00954187   0.00802372   0.00618714   0.00437497   0.00283681   0.00168678   0.000919723  0.000459862  0.000210847  8.86505e-5   3.41794e-5  1.20843e-5   3.91783e-6   1.16478e-6   3.1755e-7
 -4.54513e-11   3.77633e-7    1.38516e-6    4.65912e-6    1.43707e-5    4.06464e-5   0.000105424   0.000250741   0.000546871   0.00109374    0.00200593    0.00337356    0.00520274    0.00735779    0.00954187    0.0113473     0.0123743    0.0123743    0.0113473    0.00954187   0.00735779   0.00520274   0.00337356   0.00200593   0.00109374   0.000546871  0.000250741  0.000105424  4.06464e-5  1.43707e-5   4.65912e-6   1.38516e-6   3.77633e-7
 -1.51504e-11   4.11812e-7    1.51053e-6    5.0808e-6     1.56713e-5    4.43252e-5   0.000114965   0.000273435   0.000596367   0.00119273    0.00218748    0.00367889    0.00567363    0.00802372    0.0104055     0.0123743     0.0134942    0.0134942    0.0123743    0.0104055    0.00802372   0.00567363   0.00367889   0.00218748   0.00119273   0.000596367  0.000273435  0.000114965  4.43252e-5  1.56713e-5   5.0808e-6    1.51053e-6   4.11812e-7
  1.51504e-11   4.11812e-7    1.51053e-6    5.0808e-6     1.56713e-5    4.43252e-5   0.000114965   0.000273435   0.000596367   0.00119273    0.00218748    0.00367889    0.00567363    0.00802372    0.0104055     0.0123743     0.0134942    0.0134942    0.0123743    0.0104055    0.00802372   0.00567363   0.00367889   0.00218748   0.00119273   0.000596367  0.000273435  0.000114965  4.43252e-5  1.56713e-5   5.0808e-6    1.51053e-6   4.11812e-7
  4.54513e-11   3.77633e-7    1.38516e-6    4.65912e-6    1.43707e-5    4.06464e-5   0.000105424   0.000250741   0.000546871   0.00109374    0.00200593    0.00337356    0.00520274    0.00735779    0.00954187    0.0113473     0.0123743    0.0123743    0.0113473    0.00954187   0.00735779   0.00520274   0.00337356   0.00200593   0.00109374   0.000546871  0.000250741  0.000105424  4.06464e-5  1.43707e-5   4.65912e-6   1.38516e-6   3.77633e-7
  7.57521e-11   3.1755e-7     1.16478e-6    3.91783e-6    1.20843e-5    3.41794e-5   8.86505e-5    0.000210847   0.000459862   0.000919723   0.00168678    0.00283681    0.00437497    0.00618714    0.00802372    0.00954187    0.0104055    0.0104055    0.00954187   0.00802372   0.00618714   0.00437497   0.00283681   0.00168678   0.000919723  0.000459862  0.000210847  8.86505e-5   3.41794e-5  1.20843e-5   3.91783e-6   1.16478e-6   3.1755e-7
  1.06053e-10   2.44865e-7    8.98167e-7    3.02106e-6    9.31823e-6    2.63559e-5   6.83588e-5    0.000162586   0.000354602   0.000709204   0.00130069    0.00218748    0.00337356    0.00477093    0.00618714    0.00735779    0.00802372   0.00802372   0.00735779   0.00618714   0.00477093   0.00337356   0.00218748   0.00130069   0.000709204  0.000354602  0.000162586  6.83588e-5   2.63559e-5  9.31823e-6   3.02106e-6   8.98167e-7   2.44865e-7
  1.36354e-10   1.73145e-7    6.351e-7      2.13621e-6    6.58898e-6    1.86365e-5   4.8337e-5     0.000114965   0.000250741   0.000501483   0.000919723   0.00154678    0.00238547    0.00337356    0.00437497    0.00520274    0.00567363   0.00567363   0.00520274   0.00437497   0.00337356   0.00238547   0.00154678   0.000919723  0.000501483  0.000250741  0.000114965  4.8337e-5    1.86365e-5  6.58898e-6   2.13621e-6   6.351e-7     1.73145e-7
  1.66655e-10   1.12271e-7    4.11812e-7    1.38516e-6    4.27243e-6    1.20843e-5   3.13427e-5    7.45458e-5    0.000162586   0.000325171   0.000596367   0.00100297    0.00154678    0.00218748    0.00283681    0.00337356    0.00367889   0.00367889   0.00337356   0.00283681   0.00218748   0.00154678   0.00100297   0.000596367  0.000325171  0.000162586  7.45458e-5   3.13427e-5   1.20843e-5  4.27243e-6   1.38516e-6   4.11812e-7   1.12271e-7
  1.96956e-10   6.67567e-8    2.44865e-7    8.23623e-7    2.5404e-6     7.18534e-6   1.86365e-5    4.43252e-5    9.6674e-5     0.000193348   0.000354602   0.000596367   0.000919723   0.00130069    0.00168678    0.00200593    0.00218748   0.00218748   0.00200593   0.00168678   0.00130069   0.000919723  0.000596367  0.000354602  0.000193348  9.6674e-5    4.43252e-5   1.86365e-5   7.18534e-6  2.5404e-6    8.23623e-7   2.44865e-7   6.67567e-8
  2.27256e-10   3.63993e-8    1.33513e-7    4.49084e-7    1.38516e-6    3.91783e-6   1.01616e-5    2.41685e-5    5.27119e-5    0.000105424   0.000193348   0.000325171   0.000501483   0.000709204   0.000919723   0.00109374    0.00119273   0.00119273   0.00109374   0.000919723  0.000709204  0.000501483  0.000325171  0.000193348  0.000105424  5.27119e-5   2.41685e-5   1.01616e-5   3.91783e-6  1.38516e-6   4.49084e-7   1.33513e-7   3.63993e-8
  2.57557e-10   1.81997e-8    6.67567e-8    2.24542e-7    6.92582e-7    1.95892e-6   5.0808e-6     1.20843e-5    2.63559e-5    5.27119e-5    9.6674e-5     0.000162586   0.000250741   0.000354602   0.000459862   0.000546871   0.000596367  0.000596367  0.000546871  0.000459862  0.000354602  0.000250741  0.000162586  9.6674e-5    5.27119e-5   2.63559e-5   1.20843e-5   5.0808e-6    1.95892e-6  6.92582e-7   2.24542e-7   6.67567e-8   1.81997e-8
  2.87858e-10   8.34459e-9    3.06081e-8    1.02953e-7    3.1755e-7     8.98167e-7   2.32956e-6    5.54065e-6    1.20843e-5    2.41685e-5    4.43252e-5    7.45458e-5    0.000114965   0.000162586   0.000210847   0.000250741   0.000273435  0.000273435  0.000250741  0.000210847  0.000162586  0.000114965  7.45458e-5   4.43252e-5   2.41685e-5   1.20843e-5   5.54065e-6   2.32956e-6   8.98167e-7  3.1755e-7    1.02953e-7   3.06081e-8   8.34459e-9
  3.18159e-10   3.50847e-9    1.28691e-8    4.32864e-8    1.33513e-7    3.77633e-7   9.79458e-7    2.32956e-6    5.0808e-6     1.01616e-5    1.86365e-5    3.13427e-5    4.8337e-5     6.83588e-5    8.86505e-5    0.000105424   0.000114965  0.000114965  0.000105424  8.86505e-5   6.83588e-5   4.8337e-5    3.13427e-5   1.86365e-5   1.01616e-5   5.0808e-6    2.32956e-6   9.79458e-7   3.77633e-7  1.33513e-7   4.32864e-8   1.28691e-8   3.50847e-9
  3.4846e-10    1.3527e-9     4.96172e-9    1.66892e-8    5.14764e-8    1.45597e-7   3.77633e-7    8.98167e-7    1.95892e-6    3.91783e-6    7.18534e-6    1.20843e-5    1.86365e-5    2.63559e-5    3.41794e-5    4.06464e-5    4.43252e-5   4.43252e-5   4.06464e-5   3.41794e-5   2.63559e-5   1.86365e-5   1.20843e-5   7.18534e-6   3.91783e-6   1.95892e-6   8.98167e-7   3.77633e-7   1.45597e-7  5.14764e-8   1.66892e-8   4.96172e-9   1.3527e-9
  3.78761e-10   4.78251e-10   1.75423e-9    5.90051e-9    1.81997e-8    5.14764e-8   1.33513e-7    3.1755e-7     6.92582e-7    1.38516e-6    2.5404e-6     4.27243e-6    6.58898e-6    9.31823e-6    1.20843e-5    1.43707e-5    1.56713e-5   1.56713e-5   1.43707e-5   1.20843e-5   9.31823e-6   6.58898e-6   4.27243e-6   2.5404e-6    1.38516e-6   6.92582e-7   3.1755e-7    1.33513e-7   5.14764e-8  1.81997e-8   5.90051e-9   1.75423e-9   4.78251e-10
  4.09062e-10   1.55054e-10   5.6874e-10    1.913e-9      5.90051e-9    1.66892e-8   4.32864e-8    1.02953e-7    2.24542e-7    4.49084e-7    8.23623e-7    1.38516e-6    2.13621e-6    3.02106e-6    3.91783e-6    4.65912e-6    5.0808e-6    5.0808e-6    4.65912e-6   3.91783e-6   3.02106e-6   2.13621e-6   1.38516e-6   8.23623e-7   4.49084e-7   2.24542e-7   1.02953e-7   4.32864e-8   1.66892e-8  5.90051e-9   1.913e-9     5.6874e-10   1.55054e-10
  4.39362e-10   4.60978e-11   1.69087e-10   5.6874e-10    1.75423e-9    4.96172e-9   1.28691e-8    3.06081e-8    6.67567e-8    1.33513e-7    2.44865e-7    4.11812e-7    6.351e-7      8.98167e-7    1.16478e-6    1.38516e-6    1.51053e-6   1.51053e-6   1.38516e-6   1.16478e-6   8.98167e-7   6.351e-7     4.11812e-7   2.44865e-7   1.33513e-7   6.67567e-8   3.06081e-8   1.28691e-8   4.96172e-9  1.75423e-9   5.6874e-10   1.69087e-10  4.60978e-11
  4.69663e-10   1.25675e-11   4.60978e-11   1.55054e-10   4.78251e-10   1.3527e-9    3.50847e-9    8.34459e-9    1.81997e-8    3.63993e-8    6.67567e-8    1.12271e-7    1.73145e-7    2.44865e-7    3.1755e-7     3.77633e-7    4.11812e-7   4.11812e-7   3.77633e-7   3.1755e-7    2.44865e-7   1.73145e-7   1.12271e-7   6.67567e-8   3.63993e-8   1.81997e-8   8.34459e-9   3.50847e-9   1.3527e-9   4.78251e-10  1.55054e-10  4.60978e-11  1.25675e-11

For the image metadata we specify the grid and the total flux of the image, which is 1.0. Note that we specify the total flux out front since it is degenerate with an overall shift in the gain amplitudes.

julia
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 again uses a Half-normal process. The angular parameters of the polarizaton are given by a uniform prior on the sphere.

julia
cprior = corr_image_prior(grid, dvis)
skyprior = (
    c = cprior,
    σ = Exponential(0.1),
    p = cprior,
    p0 = Normal(-2.0, 2.0),
= truncated(Normal(0.0, 1.0); lower = 0.01),
    angparams = ImageSphericalUniform(nx, ny),
)

skym = SkyModel(sky, skyprior, grid; metadata = skymeta)
SkyModel
  with map: sky
   on grid: 
RectiGrid(
executor: ComradeBase.Serial()
Dimensions: 
(↓ X Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points)
)
   )

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).

julia
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.

julia
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.

julia
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.

julia
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 value

  • TrackSeg() 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.

julia
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.

julia
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.

julia
using Enzyme
post = VLBIPosterior(skym, intmodel, dvis; admode = set_runtime_activity(Enzyme.Reverse))
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.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points)
)
Visibility Domain: UnstructredDomain(
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

Reconstructing the Image and Instrument Effects

To sample from this posterior, it is convenient to move from our constrained parameter space to an unconstrained one (i.e., the support of the transformed posterior is (-∞, ∞)). This transformation is done using the asflat function.

julia
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.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points,
→ Y Sampled{Float64} LinRange{Float64}(-4.69663253574863e-10, 4.69663253574863e-10, 32) ForwardOrdered Regular Points)
)
Visibility Domain: UnstructredDomain(
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 ℝ^5689
)

We can also query the dimension of our posterior or the number of parameters we will sample.

Warning

This can often be different from what you would expect. This difference is especially true when using angular variables, where we often artificially increase the dimension of the parameter space to make sampling easier.

Now we optimize. Unlike other imaging examples, we move straight to gradient optimizers due to the higher dimension of the space. In addition the only AD package that can currently work with the polarized Comrade posterior is Enzyme.

julia
using Optimization
using OptimizationOptimisers
xopt, sol = comrade_opt(
    post, Optimisers.Adam();
    initial_params = prior_sample(rng, post), maxiters = 25_000
)
((sky = (c = (params = [0.011740799277281649 0.023744121850675922 0.03597133074244788 0.048778058195223725 0.06201057561278756 0.07584310907884464 0.08993121792906052 0.10392669833934967 0.1168774288926631 0.1274930204804091 0.13445012288634167 0.1372692542624231 0.13677945053735668 0.13431613379050672 0.13060788278499025 0.12561739903201313 0.11875741654666175 0.10981924001921396 0.10001188128188761 0.09084800989427162 0.0831438374349162 0.07703529076674688 0.07225368974609028 0.06822319650764887 0.06427574122987566 0.05969189386090727 0.0541476945052795 0.04733609634302274 0.039446386062188525 0.030452649634381258 0.020791647597109546 0.010479796916539648; 0.023407253443380682 0.04709566000828068 0.07162068343561621 0.09701454939796997 0.12367959923330453 0.15142031171808656 0.18015308715538308 0.20899005220165867 0.2361957908527984 0.2587050098321326 0.2730731712355716 0.27792480210702414 0.2755704752514122 0.26967686870390095 0.262256369998166 0.25275038235435404 0.23913754035705095 0.22022372899191667 0.1993188531505042 0.1802390905546616 0.1646417784513752 0.15268004817512346 0.14373733685108214 0.13647015715110808 0.12921536902150701 0.12053672206522957 0.10951341784254157 0.09596862160310442 0.0798840323272986 0.0618202214292022 0.04204588678187551 0.02133693485316879; 0.03461857591030186 0.06993003901809307 0.10626567748792838 0.14435108880894904 0.184267791893436 0.22636951146511594 0.2704199966261521 0.315781838040999 0.360042767985659 0.39756825753948105 0.4205103383580954 0.4252534799419204 0.41725124869819596 0.40457472487533314 0.39293277118113973 0.38176472511935877 0.3627348743158126 0.3320335001447026 0.2971577375883482 0.2660842433913035 0.24188650208628357 0.22477211899814037 0.2133705191554651 0.20484199424133426 0.19583942725668343 0.18384958891631886 0.16768723683003792 0.1471114825898625 0.12262490231605322 0.09475146676756152 0.06455611297313335 0.03262096505355281; 0.04540781433468824 0.09158589169579405 0.13957671818370476 0.18984002983389345 0.2431270189041766 0.29962932604626985 0.3596469475185854 0.42331342588994353 0.48901970237883297 0.5482192333418886 0.5827364397529283 0.5821540711456563 0.560052369354039 0.5310145297465461 0.5101923390911968 0.5051912736116205 0.4925551007875814 0.4491340685096865 0.3917422245578277 0.34290274516700875 0.30880587514017926 0.28885772101585244 0.27932292149035054 0.27380126382893405 0.2657771203766418 0.2516457744077659 0.23043644196604957 0.20249581411217812 0.1687159011607984 0.1304009109229419 0.08863375400496434 0.04488102721892933; 0.055284951510162744 0.11181979444896628 0.17056742404343564 0.23276494828371486 0.29906455512967245 0.36993779071045657 0.4457956914289377 0.5281228340459635 0.6194237896570038 0.7135579699776731 0.7734783247578234 0.7556198393640147 0.6989632669888645 0.6288646265323926 0.5815633439703021 0.5914260681309564 0.61666617231436 0.5688472924167585 0.47478534359561864 0.39885378540998434 0.35405224148301534 0.3372305168916873 0.3388511715563873 0.34420428628794897 0.34128167879119153 0.3263043021877181 0.2999722524762314 0.2638576382430428 0.21971015888315412 0.1694517692567023 0.11510362441671508 0.05809679965889468; 0.0641752814766789 0.1297852680072809 0.198499693761446 0.2717647302525631 0.35079825115158403 0.43582966132189604 0.5262591530309194 0.6235505674839752 0.7374140657138769 0.8782361307767216 1.0021590966071767 0.9642880703397682 0.8195986472369973 0.653325379593833 0.5542192234704227 0.5819252547465796 0.6925309908085846 0.6757509925252644 0.5354300074629931 0.42341306122099837 0.3666603815911631 0.36226227732832045 0.3900990537287549 0.41726081326582554 0.4243931811037323 0.41013791634835184 0.37876118255796554 0.3333796492213875 0.2770066011097526 0.21299054318037056 0.144151222635983 0.0727169334124771; 0.07158652179445742 0.1449615898375864 0.22202164194736523 0.3050496356946281 0.3960839965371489 0.49490307296186187 0.5960314658664425 0.692614007576435 0.7967749939493682 0.9456219068246555 1.1166837223795987 1.0725405872802907 0.7994437584680418 0.5283125377705731 0.40039645221091297 0.451037827483078 0.6676022412013977 0.7579898843049685 0.5723274613282905 0.41494364839845993 0.3483462822100439 0.36742967827342116 0.43128367292938846 0.4891934184812144 0.5135121765201128 0.5043976876606447 0.46949715446087337 0.41344006106035064 0.3420539957412434 0.26151919927453393 0.17618879965545045 0.08851439907275792; 0.07739813480132635 0.1565746243408644 0.23971945446589724 0.3297412312471698 0.43008099139918177 0.5410216826357448 0.6489671905640287 0.7205140542277476 0.7445741881878755 0.7668406817568939 0.7889992198056845 0.6788887123503451 0.44945933072359334 0.24517557116965338 0.17201201972546282 0.2655702353975981 0.5338814470622186 0.7561090816813918 0.5430187406946261 0.3606934198057994 0.29973066867776743 0.34057063442493424 0.43640515574483885 0.535770035400743 0.5992307208959586 0.6108873194970486 0.5766215124997196 0.5072290719137402 0.41608995102677987 0.3151394677188973 0.2107421389830079 0.10544862317856461; 0.08149394303584623 0.16441928402956255 0.25058555606220195 0.3427373145697878 0.44482342784121137 0.5584281658677924 0.6681033133005131 0.7220501637812096 0.6779390670994971 0.5814854373631941 0.47022914122809334 0.3184404797550281 0.13481293896755167 0.0009110922163529749 -0.012859079644431538 0.10689315658436181 0.3196574937360067 0.4367615422828357 0.3410641365794596 0.22519615785275943 0.20605411539047622 0.28248330685664513 0.4213529789730789 0.5863431614150242 0.7238725775440622 0.7708043153811833 0.7238516430512116 0.6223332417728136 0.4995629691345704 0.3723944030311986 0.24648806401491694 0.12262089031326458; 0.08425598506258375 0.1691697238381448 0.25545290725356384 0.3439962521999562 0.4357923676873259 0.5291416869906163 0.6090232607292817 0.6350850764795525 0.5678272583497571 0.43469231341639447 0.27962128699210526 0.11973420189901277 -0.014637048814191065 -0.07684313413302174 -0.0341817206494773 0.10338396738264949 0.23995733557410634 0.24411781006051764 0.15748499188365542 0.09056542560257011 0.11716088732538228 0.2349617649412155 0.4289408202074615 0.68171274593807 0.9311640611423208 1.0158985482724774 0.9194350380476981 0.7540526547794251 0.5852910028186902 0.4280427209148163 0.28037141722807507 0.13872379402294369; 0.0864050723408626 0.17254105871611922 0.25765291878989843 0.33993448191329484 0.41589404793180634 0.4789619826435519 0.5165259234514319 0.5095895287014139 0.4387030634051404 0.31141340751904945 0.16453695529381776 0.04141076304719963 -0.012597915062824176 0.036383123377595486 0.18552031778157754 0.3518138493298373 0.3723651660344116 0.2254836809432866 0.12257824079594408 0.08909439046126713 0.10175482785836316 0.18619622766832206 0.36879879874138843 0.6882342358451332 1.13333209160117 1.2867478501759715 1.1039108126591433 0.864925223245621 0.6552460089806107 0.47361697604774716 0.30826940910083195 0.15202807220168213; 0.0888841795511788 0.17689500180751414 0.2623051792460939 0.3416050317681516 0.4088382772325872 0.45517879439650444 0.468792292041799 0.43360143082632824 0.3362434748056143 0.19606403068042128 0.0736435485967907 0.032150004276648776 0.12155873503240273 0.36857435807971656 0.6852300394311526 0.7652265403882649 0.46642027908257244 0.24442729303173527 0.23708263403836238 0.24238894652382695 0.1153248506879961 0.0788501151443985 0.18991374274472797 0.48010365129069715 1.015886495103459 1.4051048621640505 1.1787155423014297 0.9173598897419676 0.6953130611780485 0.5026190297230286 0.3270531209277792 0.1612366978767627; 0.09237889986821626 0.184192444706231 0.27392970684671697 0.3580694489242088 0.43037493811282584 0.4801234629575914 0.4848504615593178 0.409696231279394 0.25964610041073205 0.10012553218975997 0.027689529278965078 0.11845684563218183 0.40891604841483004 0.6034957655551518 0.14093331150101082 -0.13008559139884 -0.24772852592526448 -0.18580916608267148 0.18071375930254693 0.4640880240472887 0.09764839641094722 -0.060145093125315026 -0.009922216651786928 0.22721362942580098 0.6414259697997328 1.024518941398886 1.0798005642962707 0.9109316099441063 0.7078432297142639 0.51566690598536 0.3364583328743249 0.16605876545178502; 0.09659139282491759 0.19393969169892794 0.2922865590260518 0.39054528189713283 0.4854606203696421 0.5661252325395699 0.5838983892058006 0.45958547528347476 0.26626261731824913 0.08786295712493496 0.05118818127554018 0.25456827058381837 0.6396305996294707 0.18817829434724895 -0.3462573387459552 -0.6024585501190951 -0.6552822669954885 -0.5124988011330409 -0.14684835895296963 0.27157254720746044 0.04543940106942927 -0.14519251875147815 -0.1122320945174091 0.10229418692415704 0.45934420629594025 0.8321736090351552 0.9757233914039357 0.8764740206428605 0.6995058459205266 0.514679473501894 0.33713365184828464 0.16668744730825868; 0.10023702026448539 0.20300982094342906 0.31139526806609547 0.4288777250112743 0.5564751750774762 0.6753502871702716 0.6864907406764157 0.47597830516229744 0.186863510903804 -0.01647208636618188 -0.03259735577166631 0.18490583569817287 0.6365196372527286 -0.08787482198002144 -0.5762949316431282 -0.7955759364585018 -0.8163139403741214 -0.6522094282557132 -0.3045898296964345 0.08412662789077348 -0.01919757832883019 -0.15561258020251068 -0.10740798316379645 0.12070191853634639 0.47216657880382407 0.8073102862926149 0.9059590579517603 0.8214575064126989 0.6698894712905431 0.49979013815310075 0.3297021150171326 0.16355320097651488; 0.1014599782323095 0.206408220644598 0.31951808380486113 0.4470044604461555 0.5902073993812285 0.7064058146459545 0.6300653176221612 0.3444919450890259 0.03956465146547993 -0.1531770223845202 -0.15558754603852937 0.09296297237852123 0.5302225856494431 -0.13539622759395195 -0.5703093909114605 -0.7496667999404116 -0.7416611004427649 -0.551586865202056 -0.17651691617335366 0.12935360689497274 -0.06253089094567933 -0.15557551895633356 -0.05729620725725304 0.22617458116251177 0.6584880857055625 1.0498085856401755 1.0062241618940844 0.8219917449689441 0.6470494939837418 0.48036544529966296 0.31755445273395866 0.15784505114355166; 0.09915009109718072 0.20131980215377293 0.31007255386198873 0.42943107415259457 0.5562367991510015 0.640369238127308 0.5377058090937863 0.2493756366800971 -0.02901261298718745 -0.20089198617303078 -0.20355148563608405 0.02125983929672036 0.4647159603391602 0.0510078515526164 -0.30835928552912556 -0.4116603481309789 -0.3726199856619421 -0.17548224884861066 0.271135498696442 0.2876348668614447 -0.02953372951146116 -0.09655888992147492 0.016852422018946298 0.27917395053801725 0.6832275559877065 1.068583430459721 1.0346614850358533 0.8190972352459135 0.6261416134606288 0.45891425876852504 0.30254027654645593 0.15043336269160282; 0.09373165227694381 0.18919432525085284 0.28799562197646555 0.3912166203202661 0.4948313290611106 0.5665749119712533 0.5202005623313178 0.32329684216542787 0.07297064946593046 -0.12385087698134542 -0.19291314125228742 -0.0970273200060449 0.15979283399605856 0.2035806364076588 0.21535977740188839 0.40019315380175585 0.3989725659606416 0.19440575791207595 0.1348234619256648 0.020391966457239234 -0.07248908263788387 -0.013341100625781801 0.11747545004639241 0.29561314099080654 0.5447081415522854 0.7755896127046986 0.8233976664803571 0.7208420825903951 0.5741843484127451 0.4268450103014366 0.28332241421215504 0.14144684559614557; 0.08663922873402581 0.17377979275107355 0.261473303681513 0.34935426833319533 0.4369248353251264 0.5162981356358578 0.5577155270241648 0.5076083194005964 0.30523863500958015 0.04503433973990725 -0.14473551907995227 -0.21423700357402642 -0.1659680789381296 -0.028416758522452634 0.3593536807957688 0.5777097970595044 0.09899506608025513 -0.18806839486818236 -0.2924168596474005 -0.2599366937507104 -0.10516409932341361 0.14615827293121966 0.30760582277222664 0.31239605403576565 0.371441507708573 0.4875677919563049 0.5752372121591277 0.5744535611908302 0.4983632017663962 0.386943793564951 0.26220647073601444 0.13213577230598358; 0.0791091412740873 0.15799254612649602 0.23582085099911246 0.31114281786675496 0.38475626442883143 0.4614635624651729 0.5409530251149546 0.5840333980361254 0.4584615586644475 0.1800418457817697 -0.08897035220953749 -0.2602160802757338 -0.3050423883253698 -0.2094488615300542 0.030566979432152794 0.0922306447532076 -0.22707909406183635 -0.45026529187549136 -0.5116837824406226 -0.4114232861692622 -0.14701662698755125 0.2510705445499911 0.5192838379880825 0.387373727741733 0.3421328297868078 0.39518846150608306 0.46944078841927833 0.4935863087287312 0.4486646013496699 0.35846595173249335 0.24655907817122036 0.12511303743943342; 0.0717772839043766 0.1430071334497441 0.21259540349035044 0.2787744076019974 0.34210453735466606 0.4096057020582337 0.4917803018219084 0.5744350858092637 0.5482387154899756 0.3534226559946101 0.08050146555708516 -0.1467258297035978 -0.2525074823239233 -0.21596249433655537 -0.07158551283715105 -0.07161795001564213 -0.29131724418872595 -0.4674583137591086 -0.5129333588086381 -0.4076609909733082 -0.14107090737177688 0.27617892024018365 0.6576170243343784 0.5623312245259913 0.49790724738935127 0.5049357258650364 0.5232167552756953 0.5073044542871514 0.4455081328821863 0.3516674857418336 0.24084484091794311 0.12200365641138758; 0.06499501531211829 0.12953878692990262 0.19291880344185794 0.25412203856247306 0.3129169437357649 0.3727435635428561 0.44164670599603906 0.5193516734371711 0.5666278672692755 0.5442948315877221 0.3599654401330304 0.10217113983356017 -0.05716693482498252 -0.0632301492596666 0.0466500830225072 0.07624582467951593 -0.08107214879434338 -0.24481390872492803 -0.31351048962855477 -0.2471130682493982 -0.035321624548407926 0.30935475243935123 0.6926726819053327 0.8062612254146089 0.8447704675453362 0.7835071351310239 0.6886839336604221 0.586048573151011 0.4772983729483471 0.36257271827220267 0.243584404935002 0.12227302876375128; 0.05871135341338871 0.11728764915629704 0.17563021191271902 0.2337979296396972 0.292041313590412 0.35086686751248813 0.41190669833377697 0.48286449862295483 0.5761121978143109 0.644851854054383 0.5278193773663067 0.26510129376663405 0.06988784186970456 0.018725888804480225 0.09360654274613285 0.19963018502255603 0.26055630113489014 0.18881072498216273 0.08189320715441008 0.06157889525112424 0.1711515575393018 0.4088712555768644 0.7564461802584981 1.1030312821826609 1.2629355666843023 1.1261417426237224 0.8808532354925613 0.678442900346468 0.5178265672777362 0.378668568413925 0.2490552248221919 0.12368454770326844; 0.052640805167854056 0.10532757218360611 0.15825906038670656 0.2118052879397978 0.2662665861435758 0.32098927922177056 0.37409490829144837 0.4266842350483343 0.48383124315102 0.5147899630672643 0.4379383743950092 0.26592142830824694 0.12704973760713303 0.08922580980658326 0.14854887495223992 0.2798675227438109 0.4576671825183744 0.6214723510150092 0.543815606384287 0.42510516904911466 0.41252470873619274 0.5257447038155407 0.7662299955019425 1.103053601233787 1.370562302200551 1.2365111304141347 0.9538671607609658 0.7196682587029709 0.537390965710756 0.3858458539233721 0.2505896881000103 0.12356034680530611; 0.04654271782254059 0.09322389864611555 0.14006515307731202 0.18721009997572507 0.2343552962802507 0.2800955716378296 0.32202019930982706 0.3589529445168609 0.3887940844954453 0.3949965419812289 0.3484024470009981 0.25783779606043916 0.1826636909942278 0.16978691570914944 0.23085331433779827 0.3572070596280628 0.5160945962253548 0.6341858301048591 0.6542471333715346 0.6174968273712522 0.6152020541127629 0.6816784851409762 0.8350664617419677 1.0512711927599914 1.2011020905887435 1.1076157577113912 0.897053388258114 0.6956928411718757 0.5247266170269193 0.3769457904842707 0.24418797115963606 0.12012356650770149; 0.04053825089434741 0.08099639501351931 0.12156279817570535 0.16202390662959254 0.20193651555766448 0.24024499781805533 0.2756881208701766 0.30736707991246054 0.33277339571603487 0.3418043483622979 0.32056216680301 0.27742847056980136 0.2513366172529059 0.2769540108945605 0.36109200121662094 0.4832474815723686 0.6020623612832401 0.6906309862001098 0.7632315812471818 0.858561207307675 0.9628132461257259 0.9842062958865317 1.017238837380643 1.0729604103804484 1.0719048586877713 0.9655310802402054 0.8048605096356338 0.6397541400977125 0.48888917353461864 0.3533073312859031 0.22937793194678271 0.11289156624228332; 0.03441728488148022 0.0689467213357355 0.10322481320401944 0.13731512713825966 0.17074372213698458 0.2028949912872488 0.23317848400442437 0.26116524721283696 0.28525336059916284 0.30074324140665426 0.30381456045545746 0.30412440240337507 0.326871121370821 0.3938195252985277 0.5038034703359375 0.6258872887336611 0.72496421335291 0.8144363224404895 0.9451542858437194 1.1854025313470529 1.5096665465923214 1.4042211874143768 1.2058477046656502 1.0748152396730728 0.9700223233888957 0.8458940751727324 0.7067858747774505 0.568040555144003 0.43809641158351953 0.31846665065151303 0.20743417273240444 0.10225696209917408; 0.028570623319491388 0.056924816196081154 0.08533690237239874 0.1133181059781801 0.14084047376155312 0.1675387781071514 0.19317485506434698 0.21744187144637034 0.23957238099653444 0.25853549852307794 0.27565783577715874 0.29999503616993556 0.34829885371191527 0.43235485436174104 0.5460758536839116 0.6661318817946713 0.7690684124329653 0.8709241557357796 1.0421332093536226 1.3385800839325117 1.7168245095645054 1.547250621029363 1.2296316374467755 1.0077962432415584 0.8545160719309562 0.7252659145560871 0.6030744972642064 0.4865561405634229 0.37727786899152155 0.27546340174687495 0.17994387937537834 0.08884899913264098; 0.022615571846603125 0.045332672500522336 0.06770001167871167 0.09003487838292236 0.11187479269374256 0.13331667184563067 0.15423669911835844 0.17457290600765993 0.19428601284216185 0.21395504574070362 0.23580399733173987 0.26616521299892965 0.3149885532872085 0.38739753344142347 0.4779695884290882 0.5761723133448239 0.6722154920804223 0.7746061534297876 0.913081200385349 1.0951578282474783 1.2468093365319899 1.178100975053413 1.0023214662577096 0.8385928472301846 0.7062707422359101 0.5940264311960413 0.4923882280735732 0.3978026023705422 0.3093821257754425 0.22654028029824816 0.14831440483032735 0.07331837948895242; 0.01696835586674429 0.03372749024471816 0.050599501908283745 0.06709892896892047 0.0835766168708578 0.09967936127401371 0.11564799350588308 0.13152432653983614 0.14765775277701523 0.16494805619599323 0.18531682014076553 0.2126013883539076 0.25184040818915093 0.30495581915927744 0.36904125815527206 0.4401700757734394 0.5156181914832019 0.5973455146091664 0.690822162987202 0.7879624166026948 0.85003201187929 0.8218271977805338 0.7332729061725022 0.6318762066215846 0.537490846183433 0.4525879337290432 0.3751064616553959 0.3033308558911176 0.23630604671984476 0.1733563329257617 0.11365016987888284 0.05624221695547059; 0.011184981557027381 0.022490060080343325 0.03352469711208726 0.04466582544135974 0.055502221272129816 0.0663918581182909 0.07714067893144243 0.08806693544538852 0.09947669858038036 0.11212477964461166 0.12733250876585256 0.1471996216764749 0.17402837384016417 0.20858721972781383 0.24974712258865042 0.2958971753782058 0.34610096404512963 0.39985720050138307 0.45578730836700393 0.5062803398423457 0.5339750117108281 0.5213911922857672 0.4768949565209677 0.41914615519225834 0.3601900220573925 0.3044714992463413 0.2527113552872722 0.20454905343388877 0.1595380651539699 0.11715659819740544 0.0768861581383881 0.03806546063677384; 0.005654256833286078 0.011145720845811636 0.016803442986290034 0.022220917540371227 0.027770774327795577 0.03313766906706339 0.038623595044961635 0.04416521326414802 0.05007959987203 0.05673114651990108 0.06478447124392056 0.07514380572429007 0.0886995105398454 0.1057721067854284 0.1259951631866137 0.14878341863486547 0.1736048827065366 0.1997637846757324 0.22571563399219122 0.24755596624397844 0.2586645969919083 0.2535801616665054 0.23465461962431475 0.2084615201670309 0.18032187714454728 0.1529157815052425 0.12709117772263345 0.10296651808051537 0.08035174170974382 0.05905089874185961 0.03876721381089739 0.019202287142754283], hyperparams = 25.795340426512496), σ = 3.210140674348714, p = (params = [0.006945636780416822 0.013955112306106946 0.02098393469317883 0.02811617239255015 0.03527132429187324 0.04245608803806869 0.04952747145520184 0.056388794679761066 0.06281332085261467 0.06864241772135077 0.07363892883079676 0.07770015156467841 0.08071867374330524 0.08270646885922656 0.08372446130154618 0.08388635778381408 0.08323112048951349 0.08165860507312124 0.07918755916207093 0.07594739134692449 0.07209886703993694 0.06775421469315956 0.0630458477219631 0.05790834707782985 0.05251271049638467 0.04664508201025083 0.04062641751906591 0.034137664811197746 0.027649335165965825 0.02075847053676108 0.014001484317481112 0.0069232798162094334; 0.013899460702844495 0.02784306069113607 0.04195703664621954 0.056198904739247435 0.07061069818198373 0.08504816271595246 0.09937466595687494 0.11325657021916058 0.12634128085980764 0.1381565735320478 0.14831617661732585 0.15650602502337466 0.16256210571833496 0.16645651855422278 0.16838644221651436 0.16866513145470086 0.16738458370872125 0.16421759539661543 0.15918655768405154 0.15258969394224697 0.14476808390478496 0.13602090135774214 0.1264990676731351 0.11631780475101153 0.10535147444707524 0.09380255341461985 0.08143637554768586 0.06871188884643532 0.05532517586763354 0.041848733004298894 0.02790586459171165 0.01407651768820309; 0.020761027714323064 0.04167677439461655 0.06279748079325985 0.08425219090509233 0.10598036101873046 0.12791731315035107 0.14976149336179573 0.17109493083093158 0.19124230199088046 0.20943528955414403 0.2249687860904506 0.237421624554793 0.2465397054806862 0.252109149289295 0.2547034496668175 0.25521230469851874 0.25341584132355677 0.2485981671364884 0.24081344258211393 0.2305760918840973 0.21852240245890686 0.20518997907845857 0.190862199596829 0.17553185710082422 0.15915301189714579 0.14157061271178417 0.12312161779162556 0.10360961334236986 0.08364439376408611 0.06297710200068685 0.04223183477731059 0.021069995742887798; 0.027558246040056526 0.05530144232096972 0.08345648287892031 0.1121055600317608 0.1413380508037651 0.17101933346002535 0.20085662849212113 0.23021729813261946 0.2581428414452913 0.2833247602972658 0.30435542795248016 0.32085824727044415 0.33299915673054437 0.3397645709434867 0.34241382712374213 0.3436349960772286 0.3423844075714124 0.33579626385779204 0.3244224281920518 0.3099544250115251 0.2934019150228848 0.2754408984927633 0.25638397102304333 0.23607633649443382 0.21420725535739046 0.19071802458388484 0.16564786144035573 0.139537416781048 0.11233555176904271 0.08474227552418166 0.05657103416488029 0.028406772009583577; 0.03416506479369166 0.0686468586701857 0.10369612956164616 0.1395812850149482 0.1764143746146902 0.21419275248399341 0.25257201799053786 0.29073168673591676 0.3273309518493698 0.3604848950707557 0.3872411683594771 0.40596264734822896 0.4202140667351 0.42709161905246923 0.4286582542054007 0.43092288527557016 0.43227679630117877 0.42414335954753934 0.4082661982424956 0.389386560800225 0.36862169593518057 0.34647577188645545 0.323196483047782 0.2982882346034628 0.2710876906949816 0.24145516011691534 0.20973795732588574 0.17635552568710888 0.14199598620964654 0.10679142547396904 0.07140324958029193 0.0356691554586231; 0.04053814740295494 0.0814889753461283 0.12328392729167752 0.16627711878014484 0.21078787238010946 0.25691799600898246 0.3043726791149355 0.3520283597684469 0.39781087786368896 0.43922095450410925 0.4720972755686921 0.49081368391445085 0.5031846381243298 0.507091142151338 0.5064827774780029 0.5094326374995912 0.5154201505389968 0.507545423758167 0.48830014188478166 0.4665800894438113 0.44278217316662016 0.41769264300627906 0.3914195277452405 0.362640055540687 0.3302985637718717 0.29439300294825943 0.2555601968414091 0.21463041055318208 0.1723473174340559 0.12953597944737144 0.08633807606214239 0.04321979516459825; 0.046536221106907034 0.09362955791342163 0.14182099178424548 0.1916824267047734 0.24372375765712892 0.2982347847719185 0.3547672597589923 0.4113096107322536 0.4642169177028148 0.5101454919378167 0.5446435384013862 0.5621434650316256 0.571120876505143 0.5706266021268077 0.5691001641157952 0.5728478944654072 0.583398582031652 0.5801489297128024 0.561585875761279 0.539146402901775 0.5145367405974552 0.4888915698730004 0.46115471930023355 0.42942969035145906 0.39242269495098997 0.3501101449912682 0.30359938550803967 0.2543169999761913 0.2036655211684008 0.15256088603142695 0.10159270945534166 0.05069820283127765; 0.052059034219816 0.10478661625601864 0.1588871827980784 0.21510367132617253 0.2742413317718597 0.33687819997810015 0.4022004542685676 0.46578220140780446 0.5199168380837879 0.5602193545161245 0.5872924356844376 0.6024141318331119 0.611370105405537 0.6135100070724964 0.615145466495719 0.621779454565978 0.6357195586898494 0.6416381017147793 0.6254189764772247 0.6039956116708056 0.5810076223391051 0.5563484178575434 0.5287555300587085 0.4965302167492112 0.45720052028850827 0.40906996009400837 0.3540360408941369 0.2953613117782981 0.23549812003099266 0.1758262195133515 0.11671900252349063 0.058231094688021456; 0.056977488372953265 0.11472389671234448 0.17403611865693044 0.2358154198913679 0.30111343126836915 0.37088952696598476 0.4443944179992747 0.5152149092264182 0.5707902778990013 0.6060230766184838 0.626197270074874 0.638138822581382 0.643913945442022 0.6452377310910881 0.647511517230372 0.6554304465406644 0.6696780105095165 0.6778620396999103 0.6715155451927817 0.6557020357167809 0.6366743344084449 0.6153679878764756 0.5916007798820989 0.5640370664989729 0.5271599632030766 0.4741681698791938 0.4080817731357731 0.33756652179734487 0.267322009329394 0.19864758021175571 0.1315246324897575 0.06546130375057008; 0.06121110673275743 0.12323439058999859 0.18691857686969918 0.25316460448727257 0.32294099934253195 0.3968993792195751 0.4736538623949397 0.5465042168616974 0.6033840492954783 0.6388646547605444 0.6580220860389584 0.6679564335695215 0.6718185487101094 0.6708180500538835 0.6684830644014702 0.673454884287406 0.6918503923236979 0.7048549030643679 0.7053145144361509 0.6963173404457144 0.682731608599124 0.6660457574634017 0.6479752456876822 0.6276406925399622 0.5976395533655816 0.541419347534457 0.46244368724159146 0.3786219134565943 0.2975771707957557 0.22013528167304258 0.14535418897424923 0.07227056038111405; 0.06470014144747364 0.13020388068819955 0.19731351806182265 0.26680316556120337 0.33926452792627637 0.41443040100524076 0.48963682747333886 0.5587856429097584 0.614173673288204 0.6521797723108927 0.6750322753113398 0.6872659824929435 0.6920212160753565 0.6885402585560136 0.6737323063733868 0.6642068015163675 0.7017025956848878 0.7235033663923581 0.7320009815459374 0.7329607174872614 0.7225191023635947 0.7057347776011799 0.6871767433907444 0.6686277944578881 0.6463857285186467 0.5928482914221509 0.5064423223725868 0.4134469338271141 0.32403064752189775 0.23918519121981688 0.15768041695495538 0.07830986370909263; 0.06746949700131222 0.1356787367210958 0.20534871841101732 0.2770906218738412 0.3510955654757771 0.42616340492474214 0.498490350538382 0.5622569571802918 0.6129959042050871 0.6499275063527146 0.6753151935411185 0.6920582587138032 0.7020552261806754 0.7003525348091038 0.6580392945438708 0.5963323476793689 0.6958964724283814 0.7327294292763494 0.752217808648836 0.7623276914118969 0.7494953798891031 0.7293088081843443 0.7084253257410701 0.6885765749226138 0.6703094429225228 0.6271775220018784 0.5364525286391825 0.4399619990638792 0.34552408627793646 0.25501337595366996 0.16800711311790573 0.08340503895151413; 0.06959322036479738 0.13987920015950278 0.21148646412667707 0.2848171863752338 0.35958900233343827 0.43370391488780874 0.5021751203522763 0.5594314831296643 0.6048219832617724 0.6393156302199263 0.6652260520664064 0.6849695889373505 0.7010616773566216 0.7061526554122645 0.6712594937864007 0.6517520062138757 0.6861639211126024 0.7198633810518827 0.7552771144271271 0.7751037822870385 0.7572429956912584 0.7362695538727995 0.7155055593444389 0.693973498594038 0.6677099673052681 0.6223715884176451 0.5506706859943725 0.4589425526412398 0.36208524444372353 0.26739511471078237 0.17611190940408486 0.08739901765166987; 0.0711049606839432 0.14290712312433484 0.21599883230086614 0.2905784049554984 0.3658651479086358 0.4390862051739912 0.5045386752020199 0.557229227718603 0.6008184387789561 0.6306436738310004 0.6489528954248388 0.6560996818068843 0.6427112603514905 0.658092477750978 0.6490839556708082 0.6477787009448848 0.6692755272144788 0.7009142051341464 0.7363467709212022 0.7612997682112471 0.7517411283780788 0.7340644367624188 0.7168971274292314 0.6975539492846985 0.6721207736243773 0.6313304606996144 0.5643277386739879 0.47326206802265725 0.37405744698343824 0.27619580559671686 0.18181562991300926 0.09020198354745278; 0.07200575934080133 0.14476305402969705 0.21893303365996275 0.2947148161221088 0.37085964663225834 0.44338660964501114 0.5065534657822713 0.5570791678033356 0.5937252485295651 0.6163432125653987 0.6240848917583771 0.6081928624877986 0.5517529337142093 0.6020533411036064 0.6095240168502837 0.6160063165427827 0.6366864518914664 0.6692969209318703 0.7059947720306045 0.7345147370827632 0.7362449060333607 0.7279565466965957 0.7159514064370696 0.7007048848536971 0.6790589066936027 0.6414101324926983 0.5737863178234589 0.4810469193445042 0.38031388137804073 0.2808294632792011 0.18484971060591135 0.09170115293635121; 0.07225429048616128 0.1453068540163182 0.2199295779230343 0.29655654276242016 0.37407088795514987 0.44722140236831337 0.5066834342023295 0.5536985049411709 0.5865186771702253 0.604592116236369 0.6071824441050588 0.591231535117257 0.5597147154223197 0.567710244809789 0.5648208638378945 0.5667536391153204 0.5883749859550015 0.6266975822051088 0.6681775249036177 0.7012668137753907 0.7154814215554376 0.7177890640573849 0.7128162327956644 0.7030487480670498 0.6893182067117969 0.6616496564707923 0.5867056381379903 0.48524414172861086 0.3813285264789607 0.28124393049715635 0.1851531443824675 0.0918736502246695; 0.07179588609638016 0.14441294137489716 0.21862974634991775 0.2949811341329777 0.37268990872476704 0.4468986972249381 0.507249979729197 0.551995955186809 0.5846727318345213 0.601802115046789 0.6022866301076844 0.5827246843898327 0.5387706011546627 0.5341344077768805 0.512029003142762 0.49686957968432927 0.5221556191371783 0.5758511197913391 0.6231874973603236 0.6633250350290057 0.6990475993706395 0.7108063767000868 0.7085884482035797 0.6978904641333088 0.6803207587092269 0.6498925111653547 0.5777008889310632 0.4776258631815831 0.375481244579711 0.27728045842804017 0.18277737788437506 0.09076885206580981; 0.07059572981786354 0.14199835136232355 0.21495149719716755 0.2899567457774045 0.36650929251780956 0.4412575822734681 0.5069236091038113 0.558123545463386 0.5923935414658326 0.6092246445789115 0.6097041239212112 0.5931898084032741 0.5618901798846361 0.5220373663807308 0.45715050974432564 0.39174239627989543 0.43415123767591746 0.5322247375141358 0.6076724519230897 0.6578741171734264 0.6905823247657541 0.7050023104817551 0.7028997870929311 0.688455351776228 0.6623922674729787 0.6183884343252812 0.5472978234194801 0.45743574984000696 0.36272866523141944 0.2692187028606989 0.17797280375700297 0.08851605196248902; 0.06867595955607388 0.13811340658684426 0.20901667819469344 0.2819215774870844 0.3568558903682847 0.4322302522599643 0.5038383802020759 0.5649942893962185 0.6047764563655247 0.6226809406555721 0.6242096162746155 0.611377112442021 0.5847836648284291 0.5417113291449837 0.46631610634487347 0.3433106883485461 0.46632920062361033 0.555036381201612 0.6160541069382438 0.6596135511508782 0.6889957253146151 0.7029537719319816 0.6995602717265179 0.6764350955719091 0.6395310624074928 0.5870405701751165 0.5168861112454588 0.4341888645689253 0.3466231857588147 0.25855774884559796 0.17144623155807834 0.0854066604525607; 0.06607511093507647 0.13287077922375723 0.20107739095964908 0.27128737370145484 0.34399630039131424 0.41888065076498726 0.4928802686878747 0.5588305861834486 0.6054251711160444 0.6289669148821625 0.635140914708902 0.6274901736909932 0.6096175280095127 0.584445033199108 0.553577070222186 0.5245819146244696 0.5552095800366729 0.597104251845692 0.6354559385442177 0.6671742351059634 0.6911395514441134 0.70421691360509 0.6986598277812274 0.6665274433960398 0.621546393345322 0.5636370993493989 0.49314895807129633 0.4138554364261246 0.3307495637332129 0.2470587695587469 0.16400801735224974 0.08176042572666037; 0.06282088817286342 0.1263032483162823 0.1911028286295335 0.25785674952580845 0.3272875161455839 0.3997082597873282 0.47335147030500485 0.5424344325202672 0.596589207849303 0.6316298905094456 0.6455964272232958 0.6424486403924115 0.6309342302136752 0.6175166495134384 0.6073611806463581 0.6041754541173505 0.617133314361948 0.6374195498888371 0.6585160906914526 0.6781181197023535 0.6944768824322843 0.7050019938697302 0.7005677675235918 0.6604325576870497 0.6086625869620054 0.5461812260125497 0.4737110039958888 0.3953168090492925 0.3150049238531686 0.2349959602924214 0.15593742907111396 0.07773183663332354; 0.05897929242047636 0.11854809456554685 0.17928771961945936 0.24179492952665968 0.3065964320431491 0.3738467111063691 0.44243815831566635 0.5090533674214471 0.5688229763676036 0.6194043694537948 0.6465706221488838 0.6486764228823951 0.6428188406651759 0.6393067070757357 0.642483446081928 0.6512441007060407 0.6614134116308392 0.6714114414795185 0.6799304049126894 0.688174272602835 0.6958607598817373 0.6997980663750905 0.6910967292542773 0.6515054672723438 0.5972891740016191 0.5294474830457091 0.4536719903455946 0.3756670940137005 0.2981588618884646 0.22200374947340043 0.14718056005789074 0.07333726748667962; 0.05463666033962628 0.10976600255348025 0.1659005013964898 0.22352596397384455 0.2829976048325519 0.3442160468006351 0.40634846162569255 0.46848403044920656 0.5305426551217162 0.5872209262885488 0.6208841099096196 0.629100586857367 0.6313087052345154 0.6382893504598812 0.6518201914618603 0.6684088434189284 0.6859104906565802 0.6952581550139548 0.6956631419429071 0.6933960804459041 0.6913108485220117 0.6873539508235941 0.6759184482669833 0.6427243810046921 0.5821932514386327 0.5094055531209047 0.4309560386001281 0.353969802242518 0.27971885610259883 0.20781930328475978 0.13762446837323705 0.06853563534439959; 0.04986086666758456 0.1001298703550254 0.15118263192258263 0.2033890935243171 0.25698198225032 0.3118737498904308 0.367555207733631 0.4235671326056257 0.47942459213144517 0.5302596691238096 0.5658549165165037 0.5855475173208741 0.6008732306851091 0.6193359658811528 0.6409218050696394 0.6621389576442582 0.6807248482241658 0.6964815878492795 0.6959374125240553 0.6870708151221274 0.6761657803380082 0.6616960431107924 0.6413475877484232 0.6082292086184775 0.5551491016022684 0.4798801231657454 0.40239915535086496 0.32887807038244365 0.2591306882589795 0.19217725537117036 0.1271343838125645 0.06328347941902043; 0.044767081008797845 0.08982607332974155 0.135480221576733 0.18194114592363014 0.22933573161920975 0.2775937365726789 0.32644550253288424 0.37552195892578644 0.423716306430841 0.46773472051547665 0.5032718904516172 0.530451821662091 0.5545794470980188 0.5797701893589642 0.6058480411798283 0.6293842736775453 0.6467907713639791 0.6574910301365939 0.6626052301356902 0.6592847190004888 0.6480644552014501 0.6266857208268933 0.5959154136399493 0.5556377003794772 0.5025232462768284 0.4353622132024373 0.36579327138850976 0.2992160816295183 0.2358252193699887 0.17485932994618797 0.11564133424712034 0.05754684583174354; 0.03942649549226162 0.07907593737840676 0.11912329929219287 0.15973832496220422 0.20096556925472597 0.24277527398263432 0.2850355004353562 0.32741213072678493 0.36893136164101037 0.4074699775554057 0.4407472282677819 0.4691363599870878 0.4957961078017092 0.5231414872000301 0.5504747267062912 0.5743301670954616 0.591432392472105 0.6040338079772647 0.615117668103766 0.6234626649117496 0.6219708809881713 0.5941608263776974 0.5512711754219695 0.5019913483845989 0.44608616227954623 0.38558227008168594 0.32519902604139245 0.2666348496960536 0.21032966447611195 0.15600844587419788 0.10318537829163549 0.051347312897266455; 0.033939783688756206 0.06801997768074172 0.10238480570099921 0.13710275396902313 0.1722235860107428 0.20768306729710959 0.24336174706863084 0.2789712634932935 0.3138482384415095 0.3468642398967747 0.3770188762492849 0.4045936670940159 0.4310811159854085 0.4574479375682742 0.48286027780779284 0.5049174447865199 0.52223697366675 0.5375023681619907 0.5528816922161168 0.572517132487053 0.5928337908031543 0.5593607400252539 0.5015406706004825 0.4442709421521717 0.3893118247069192 0.3352218116243081 0.28265043837704146 0.23194295365349663 0.1830977393365649 0.13587330873465445 0.08988841939008237 0.04473882470130067; 0.028348326512567704 0.05679620793601466 0.08541497778479902 0.11426937166274978 0.1433429232898465 0.1726043051131713 0.20190526560113659 0.23099921087698028 0.2594686941986574 0.28680744747096193 0.3126438476136659 0.3371340843114935 0.3609102312617768 0.3841692522185055 0.4061618225400595 0.42612064209425965 0.443429999312044 0.4580873568014229 0.47330151831703543 0.492659208076851 0.5167190724564978 0.49121635874101555 0.4349692414293289 0.379901544005785 0.3296545987548327 0.2827729217227355 0.23823711405489525 0.19556264290906045 0.15447108140310795 0.11467875442650313 0.07589522174769721 0.037776299006837016; 0.02270734382969346 0.045473106829841084 0.06835068725895818 0.09135424705782333 0.11449304679221205 0.13769033087980473 0.16085750170894753 0.1837863150650576 0.20624245653602102 0.22799852192049483 0.24884890966850484 0.26881323056709217 0.2881850962903866 0.3069437342003254 0.324634409379004 0.3412249406425502 0.3562002396205849 0.368743240417614 0.37975927353005895 0.38995835125898826 0.3954192801238364 0.37912505115907563 0.3442906410815108 0.3044730477529321 0.2652759734273652 0.22784492964061154 0.19210610524522775 0.15781737527229747 0.12472938996606903 0.09265456889703334 0.06133247346593136 0.030539853153061073; 0.01703834991766219 0.03411315374665038 0.05124675364368054 0.0684608950940588 0.08572129357622334 0.1030109413879151 0.12021381840811134 0.13723916685474521 0.15391871673099475 0.17014235424615579 0.1857758232320362 0.20080649979639975 0.21534419094694054 0.22931076652876614 0.24244269976066232 0.2547167572041356 0.2658446469947483 0.27513400241239394 0.28228120624721664 0.2866778643360217 0.2857679238787986 0.2741838318406367 0.25269518185397316 0.2263638609134613 0.19872818263991818 0.17135149689285725 0.14477368792877807 0.11905592785809743 0.09418269401438562 0.06998615796620762 0.04635299365465689 0.02307640037861835; 0.011360571981293916 0.02273849999700997 0.03415463493509356 0.045596618340688434 0.05707654678633376 0.06853019090801098 0.07994187807051739 0.09119656080304696 0.10225848246661494 0.11300443845661601 0.12340716474717181 0.13342099629869764 0.14308760627525355 0.15232668982767733 0.16099385269444846 0.1689838871565054 0.17613041249288353 0.18200699117945365 0.1861597144271413 0.18791737987392762 0.18591952594070588 0.17838785448411362 0.1655923673295975 0.14952610365501962 0.1320396379055705 0.11428314727146371 0.09673991443617454 0.07967365331293647 0.0630552717327459 0.04689310241261796 0.0310539102200382 0.015473120252843996; 0.00567913896830787 0.011369731514967693 0.017067499959286005 0.022791022439091535 0.02850552919961508 0.034230707222797266 0.039898836221068275 0.04552103558977261 0.05101170131666498 0.056385443172127986 0.061562713305682644 0.0665765871931734 0.07138512220404844 0.0759848983422837 0.08028753450938741 0.08422756942888748 0.08769572457876937 0.09050042649661208 0.09238330263866154 0.0929700443366907 0.09168948056359835 0.08797533813301102 0.08194907281076484 0.07429680463534688 0.06584937862450856 0.05710551289083915 0.04843400372119312 0.039902436532480316 0.03161534619604303 0.023503268677854083 0.015581137559984101 0.007753056583290679], hyperparams = 25.915776278735116), p0 = 0.61175225009926, pσ = 2.0523833583657094, angparams = ([-0.7589374175321588 0.5628023278778873 0.2755585133904507 0.730604614101922 0.34087111042443446 0.5534171854919872 0.6368688055515829 0.9017348826078591 0.9892047463797675 0.7717254943601781 0.5957435289891929 0.6460487573932464 0.676987839078095 0.5352313051903623 0.8668115481078549 0.04718732035437182 -0.2965302216155345 -0.4601414532190093 -0.6221326593147901 -0.8155755592844989 -0.8276303794388701 -0.8478389807071177 -0.70486455099651 -0.936624531390085 -0.6600608295327158 0.23687621110372997 0.4944105182032511 0.5433098210286643 -0.09000645961919457 -0.21550594078574872 -0.2546364933156692 0.38703536250831516; -0.20735104888606715 0.12622327870254849 0.9554505490341872 0.8541228811974293 0.9055050544072394 0.8063864735725331 0.7102213265878158 0.8209435961143243 0.9789531746027488 0.9058468265018723 0.7418744320648075 0.7673038561651002 0.8907382038397682 0.7695766168812003 0.6546845356899178 -0.19564838262164577 -0.483535951886938 -0.3697465092782362 0.025228588752258006 0.5943876359886286 0.7025444191793017 0.260703859117509 -0.485274135890205 -0.7644805099413302 0.04165896256114687 0.37011954333486174 0.3643357422225161 -0.2541262430829244 -0.5628241304071959 -0.38704530747920063 -0.9522783502311888 -0.8088723452938414; 0.5969765786796242 0.12722521827823 0.7153357326660286 0.9896713522838045 0.9933663051170322 0.8927931370552225 0.7646441289380232 0.7178247698573498 0.8014949194500378 0.957137312271964 0.8310021915006186 0.7672801435293165 0.8349424956952365 0.8764636982607231 0.6837263991667153 0.16034395266432874 0.022425600059574412 0.7635280019253221 0.8347031137382194 0.7916785542745162 0.6187230230179203 0.19007262453354898 -0.4944062198044022 -0.7922304729058784 -0.6028741829515936 -0.7701334408033235 -0.9952585979387152 -0.9399521790486868 -0.9218483072322322 -0.6699382445109969 -0.9767900012626464 -0.3623124692418931; -0.7700771796175986 -0.6635907488573581 -0.23948189336983874 0.2352101086398974 0.4992943336371283 0.6240346588710126 0.6334561485335202 0.5401167544320762 0.4370492428318189 0.5006583146930189 0.9193102398030192 0.8213222785529264 0.7095552666545965 0.7085197860895756 0.7002201044550919 0.33106035563607905 0.38213854384677876 0.7185302987575727 0.8572922364280848 0.673868132991711 0.32569130937116814 -0.22080484713722923 -0.7422606617321474 -0.7003702578674277 -0.575438576331503 -0.6642140574470071 -0.8813958702213354 -0.9935790106822899 -0.9308251794484924 -0.5448548999918759 0.5740136842700695 0.2597290178031398; -0.3835578771789435 -0.30944715245470383 -0.4485970427254683 -0.5602127623721049 -0.4161996721762941 -0.162877908239322 -0.04538202554346786 -0.046647753134637746 -0.0738538389430999 -0.039636709288220356 0.17922956794573897 0.9172732494399646 0.5366075936690157 0.40861364348586277 0.4636828857836713 0.43223025143283594 0.45476944558006804 0.6360205332668207 0.6622204009164864 0.22632017807457466 -0.25340668380413084 -0.6782099560649144 -0.7749584132158194 -0.3275196120428163 -0.26454751231059115 -0.43444814215677363 -0.6498453639624463 -0.600293334526777 -0.05049924147927562 0.4372052254660547 0.9249788675879473 0.9800395290890733; -0.4403000941532317 -0.3840411857276838 -0.6133019456555314 -0.8266693190444975 -0.9587616363850586 -0.7298647755602481 -0.5202984411443439 -0.44829032892040277 -0.4448276648453329 -0.38597815283713344 -0.20965258726623562 0.06046791923161286 0.09648529930160292 -0.005296349872114703 -0.007091364025624423 0.4052665486639345 0.5143323444579777 0.5805445289516288 0.09805930314246751 -0.5586130664224633 -0.8547998724391651 -0.7763509742769741 0.5597600811614656 0.7849698950217119 0.6519068482239047 0.43480295387288426 0.28849471541785154 0.3297187330657917 0.47126933967571905 0.646523298153897 0.7436481771594675 0.904672429350942; -0.26980500096598486 -0.37084329507354247 -0.6616288341162054 -0.9405775949367555 -0.9701943619051852 -0.9165978647743906 -0.8080385545005978 -0.7136905788535075 -0.6502062615556968 -0.5864936325920816 -0.4989480900998288 -0.3850183409037768 -0.2603951487933707 -0.3505470405104225 -0.4403400040281255 0.23983479282519513 0.6812032009977488 0.7409114785257491 -0.7171038308612903 -0.8033390798874167 -0.39630213714157786 0.42698630652217306 0.8772379189637375 0.9900744957488354 0.9825951197994169 0.8987719412872605 0.6333361417967901 0.5033990124820708 0.47193225392073906 0.44339105760526404 -0.07369912501694331 -0.6271397996754695; -0.3115542168071124 -0.3838176699548908 -0.6367082027936359 -0.9849859315091061 -0.7461638000011919 -0.5707512304811663 -0.5535790403053119 -0.6106048416469619 -0.7076143404795797 -0.7789279838946843 -0.5549830641633241 -0.46575726824902797 -0.1435123796031529 -0.30174498417055806 -0.30209299348749524 0.3318145113351736 0.7433509802679658 0.5702132033549528 -0.4125249145265368 -0.14624867179674486 0.2782828294623865 0.6928533847500005 0.9593377220286663 0.9222434721841819 0.6390467657440005 0.5454716702918907 0.5084808746849061 0.20742934272153485 -0.02567099178706437 -0.4047862334805982 -0.8439991761857422 -0.9591629883896275; -0.1671631160237718 -0.20424946987710357 -0.350435530183295 -0.335297022729707 -0.12481170807041418 -0.07914679609037194 -0.10594064026631897 -0.14687891559949282 -0.16270418947055162 -0.08084425506676853 0.4112247038225222 0.9152369823758224 0.9266395416668586 0.6716689284698528 0.2505533850327531 0.3388379006453142 0.38511983540571687 0.07490622665245059 -0.23507618459838187 0.12540917402265328 0.42889158196997945 0.5216653353716859 0.20266629825260032 -0.4246214704538744 -0.66204935029651 -0.7007168097075502 -0.6980257975772439 -0.6740762249382029 -0.6199146730432487 -0.6347174711913979 -0.5727238412531046 -0.46936543929418806; -0.039218962315303654 -0.03687811588312792 -0.024725908935647835 0.10665151458770736 0.23106011135915774 0.21801222026580058 0.13659305867685553 0.05816018625603817 0.03458780235208633 0.1159027714216904 0.3220082511598362 0.484249910606706 0.5044550905968992 0.45872855782395694 0.2640097460397552 0.06868340483427374 -0.1745549464885077 -0.8970528267126038 -0.7209698507957687 -0.468362149696497 0.00866086548971619 -0.15418900914696193 -0.5338951941649285 -0.8217214038191315 -0.8560505485380493 -0.7504117418302845 -0.5964660634371228 -0.4762318695327084 -0.396315505533446 0.07955580245585313 0.355012863627157 0.45282025021626765; -0.12447785997495538 -0.08404482481717945 0.02950261925537529 0.19883254146644783 0.2936405184147005 0.28085187372694953 0.19302357119138094 0.10313306205907669 0.08541813426899413 0.16422914792890553 0.2653435237504332 0.3044913571208009 0.2652791324028468 0.1325774061816936 -0.17312512487158163 -0.17966597458727754 0.7848674218758162 0.3399737450206911 -0.4360451961589665 -0.31419416352667956 -0.1880922772976559 -0.22877584615943442 -0.45087700772876976 -0.863454847761611 -0.9531739082171431 -0.6028859176508409 -0.19392100212154884 0.047315296320472565 0.5735477409248465 0.9597560649222011 0.7971135444979491 0.7784650739127071; -0.96174153731426 -0.4645002634006942 0.1712375051039133 0.27203922404708186 0.22392368780064417 0.12714590353575805 0.020311951792125943 -0.0466204115984198 -0.00039248231030168803 0.14702513999470745 0.26518011321594676 0.27153351346960947 0.1786358612208521 0.13113149326704868 0.9809800142296905 -0.6584382100034772 0.8785242380108691 0.9429302542422081 -0.4081574921918003 -0.3801033918432912 -0.09897755460365525 -0.059301804361380904 0.007132986728333923 0.39603097378242064 0.6890700843277394 0.8735256841812071 0.8724515139919288 0.5633324566077474 0.6331943360143035 0.9060225674069866 0.9887161506411037 0.9508728602101961; -0.15084419102124547 0.06148470337337749 0.2601330420775973 0.24851016612648716 0.13723415210655066 0.0009025115332034932 -0.13920817313842715 -0.28533484317432634 -0.3396220052073366 0.06718889006066706 0.15239955431556598 0.32910886951486457 0.5603198678384209 -0.3020077252444498 0.901886870791843 0.8400890506005863 0.5550320245691462 0.036687025882600546 -0.9120495346349593 0.27912658257991785 -0.905049119130511 -0.13123397117981678 -0.11539284362918 -0.16183417099417968 -0.04204851028115716 -0.2462421014395635 0.023858269167645395 -0.047691319690777986 -0.07541878759935186 -0.039593920885271486 0.021660895315308282 0.017616654096756834; 0.37713231717016926 0.30418372098999497 0.26713763178773914 0.20145314184609672 0.1098255012850399 -0.0067519886921426145 -0.08708996890060298 0.4196892917596436 0.11826590545849039 0.07519513446270823 -0.005634381680858154 0.17479874939335557 -0.3980754207618836 0.6415041039143172 0.7221434617536598 0.1909802052105887 -0.3130379802804594 -0.6410891086129359 -0.8829892579314017 -0.624613857719838 -0.370371469077288 -0.41380718495947033 -0.25372617054094343 -0.3784164778112085 -0.43267435176260316 -0.4250547112647666 -0.3783591019012664 -0.37446954699885304 -0.39034719256075423 -0.4006434827210551 -0.3988884336505043 -0.18618222025203363; 0.8453969765677598 0.29103538810855123 0.12264121035017712 0.07388555300113793 0.06688219054831292 0.16891055552425024 0.5436865072302954 0.7483765490994158 0.4172361845354951 0.08309107249550418 -0.08910639564404266 0.7937242733947815 -0.9306761864898181 0.8757744814139997 0.6163103638527108 0.13938149944089298 -0.32155801925938815 -0.5615457987788266 -0.686974214640279 -0.673297560239551 -0.30551896366612796 0.16436211228796985 0.18930982717454103 0.2856164819054497 0.771106857758391 0.3877618604338973 -0.2270085551032216 -0.48834046024613104 -0.5674158831854041 -0.5794588227257559 -0.5665833964728496 -0.08200592500431224; 0.4287648590263743 -0.01972165082332633 -0.13558372787018372 -0.10262525363714972 -0.04196950819923009 0.10676503750828527 0.8371823814720967 0.5849536169640118 0.2417368643087591 -0.13076493686307514 -0.5345229364310091 -0.5059602941992235 0.6835770393350928 0.8723844372993129 0.6342389400856987 0.1741463764702973 -0.39086119455890295 -0.43527770959848144 0.06556347989181485 0.34334013595556373 -0.794972098791904 -0.7526842439927041 0.2897029390466382 0.7363246384873643 0.8986826215053964 0.429956526110881 0.014007070200889944 -0.356278959947646 -0.7235103586477692 -0.9155042358088755 -0.9063670927794706 -0.8244950120799232; -0.1672576103826849 -0.4336721334901868 -0.5077645282683074 -0.37791099198342165 -0.22974044535451066 -0.11617747738087039 -0.04204257923758704 -0.1940426314785125 -0.440603607836675 -0.4933534382797085 -0.4769690433404909 -0.722986816600366 -0.5989222311561607 0.8169460635981525 -0.01609029145298383 -0.40835267905087574 -0.6862765631968804 0.29728065633693596 0.6558542624115985 -0.17436462574628614 -0.24613082261086283 -0.18391846226989303 -0.026043283548566474 0.8557549590567932 0.6417683317874846 -0.08974098068582384 -0.3112838847312047 -0.504896538659534 -0.76405801670571 -0.9042143756049943 -0.7543416043170627 -0.6601435748234361; -0.41301177823693985 -0.5984417673935868 -0.6834485024446866 -0.6462945945992858 -0.5301122252300486 -0.4580966575638966 -0.47502442336677825 -0.46008342072660446 -0.4194169278103167 -0.3832948865091124 -0.3243903102153526 -0.8205643762192407 -0.41077294431081635 0.1691912401385684 -0.20169708348394355 -0.9085328580355189 0.9448488396157035 0.20450818614862862 -0.6100163957566945 -0.6036625228597919 -0.5268558021786559 0.1543885327697353 0.48772901633239524 -0.108071411034024 -0.49955887736728505 -0.8680388291088827 -0.9143549696717166 -0.8228713015154837 -0.7975749321732952 -0.7771819933119775 -0.6848274671666715 -0.6785958805001919; -0.1320036817028791 -0.41306981092723205 -0.7432114362782204 -0.9711428479179324 -0.8707515470863575 -0.8264093667024932 -0.7782200879571496 -0.5164682802595871 -0.3530786885455957 -0.2803163664301185 -0.22778160706169617 -0.13115019235149772 -0.2822750738918471 0.8597179952645635 0.7563361988173047 0.05424568178289434 0.8020409125512821 -0.7089133029310432 -0.8032062959781419 -0.4817325629986916 -0.15258830282874125 0.3943078059431654 0.9708408216039537 0.08436475077113051 -0.22348725770353908 -0.37065842431869206 -0.4953776389238387 -0.6290454722355562 -0.7880344520266302 -0.7627834659577463 -0.6136899675301558 -0.5467403205172656; 0.19732099363203412 0.04380487860038838 -0.22571821883240867 -0.7064492768340661 -0.8964259485695149 -0.7782695197930798 -0.8010997467943561 -0.9274186748726959 -0.8649848858506135 -0.8285942482538315 -0.8954164989648992 -0.8023533178369279 -0.46962782824044824 -0.004457752851771504 0.3266961962305524 0.2928742305340237 -0.25797734055466537 -0.8135326504392056 -0.8532972515650563 -0.1889857789578956 0.08743648990238613 0.5843274725048693 -0.24069463698512006 -0.7001257243331988 0.5331492229607064 0.7129638647574317 0.8870053847520065 0.9979000572152908 0.9002547469356251 0.6083368259341109 0.32450492612162546 0.12648914703993713; 0.623374881936345 0.4670265309669047 0.09792130308522053 -0.6860437227012134 -0.8287390483862529 -0.6219066247638394 -0.5355789743578693 -0.5572900719323405 -0.7060035526752121 -0.7152422257427499 -0.6870688157781552 -0.7280242501637765 -0.837067186101019 -0.7677373582272532 -0.07165057757755008 -0.724492619176599 -0.9665148261237854 -0.9417122523025581 -0.4758438215014634 0.0761933169392653 0.241441971412441 -0.0655967243557552 -0.40805122387603765 -0.5165084249337847 0.8686018405532177 0.9256951147334551 0.979626338648369 0.9959280601925599 0.9378630116777347 0.8054336606187344 0.6377479534339713 0.42924971931413414; 0.6670746267344276 0.9672483836752929 0.5969972791890993 -0.16497282997750612 -0.5561760823469947 -0.5928557632606791 -0.47794810934590853 -0.37562241303527805 -0.342576436459161 -0.18813219383576268 -0.18799540927216055 -0.21018243149146193 -0.18864379934580214 -0.021791680243495117 0.2084473179479047 -0.13952452960923115 -0.4513991107518094 -0.5940096259644778 -0.49184477333623383 -0.09003118183111251 -0.0012110144526833318 -0.16905492518390572 -0.6150080090788428 -0.11997422308347692 0.24562345352955064 0.7457813430960603 0.9321751673649095 0.9895965829442918 0.9014041478960412 0.7223686610140905 0.5412158404931756 0.26588031288361497; 0.48117154102708226 0.7920839619632088 0.6549328732309774 0.31502195566552277 0.08353344646248761 -0.046861874813496004 -0.0001599406441430719 0.5675359813172516 0.6595480976888428 0.5610731935558899 0.43438958667259775 0.3462929834737139 0.3874880376823641 0.6358319283703269 0.6438509302911206 0.8969353552133301 0.06317201428595781 -0.27070374341872966 -0.6401666289031497 -0.7495340241668215 -0.49520495976071405 -0.33990181189377083 -0.16931398791554603 0.07857930928675448 0.8101474252491525 -0.20308043245549193 -0.3908930128939581 -0.520141170481179 -0.5558469921302917 -0.12988262837213715 0.06011269563295603 -0.048407017243931094; 0.7977342577673328 0.9866237523321706 0.9098127691416206 0.6065958404903963 0.371824363242971 0.18852513635216148 0.14757034394624108 0.4152338590741991 0.6555469311317914 0.7384876666054055 0.7719705565080738 0.7520087947403136 0.4031396243896646 0.11573893500240508 0.06354553130363605 0.11888388093704688 0.2233215384073034 -0.20388871258111557 -0.628481984586578 -0.904651559188765 -0.841758240697461 -0.547166336134568 0.03539944771054971 0.48476741234292775 0.4373677599614743 -0.04512956321213538 -0.5515741380552943 -0.7324307330701482 -0.7376603309104667 -0.6565612081065243 -0.28703019877515873 0.11712777020286502; 0.8207331004675192 0.8235445323191349 0.8593711348031778 0.8640533218447201 0.6684159438532891 0.14652160054993366 -0.7317599157518476 -0.7445665878627692 -0.2870239166223687 0.0757117669162484 0.29299712071289685 0.28108511365226063 0.1491346769829548 0.05569426401397875 0.012933556791632241 -0.006402164481298081 -0.03126361798548856 -0.3736248381923128 -0.21362129593862889 0.1434344895683421 -0.1707813983233842 0.04530468447737392 0.4863084224866473 0.6939617000708743 0.5073202854447881 0.3439126760344617 0.21505668109490605 -0.1061329155975831 -0.0725195323067857 -0.023047878054536876 0.060203515148184616 0.2221314002510507; -0.6201145322072189 0.15820016252349917 0.4504851877026686 0.4880111929306967 0.3961893874989451 -0.33081606780062156 -0.7430457399458895 -0.6803489074865555 -0.5578401112920405 -0.45849632893743786 -0.3604561388899975 -0.1278803098677754 0.2622572727649579 0.36224728515482985 0.2566063346595687 0.07665311572650485 -0.23706158061966504 -0.6695147943633216 0.018806924072967135 0.5925781344710138 0.7193113864109673 0.8335069352777422 0.43923240654704926 0.04276710153667189 -0.12553770594985916 -0.031991929898351784 0.3215012748434984 0.4412949804086771 0.5859867288548305 0.5242073590944563 0.25528069252969104 0.6032240799897294; -0.954081468093904 -0.3058196036760164 -0.027107373442698007 0.09269760168498233 0.10136777970922022 -0.16035666389237407 -0.4865065715110053 -0.5269032546510168 -0.5420607920395514 -0.553279231246846 -0.46392951790566356 -0.11939196277238605 0.3451412448053112 0.6157419988735006 0.6478731333975296 0.47858372754694567 -0.06293171184135098 -0.6811518485456679 -0.614947525460976 0.13647860880786736 0.2974816800818905 0.2764800147329366 0.18068962656305057 -0.23923300361846608 -0.668008590058673 -0.8315717350083981 -0.6173570924951801 -0.21336285704486202 0.05140988559188461 0.19516589451389707 0.150374891949803 -0.3153081480592003; -0.9849207000780238 -0.6990662889099827 -0.17109961298972853 0.059287527359568375 0.40026880639448076 0.5911645594968437 0.4926502918608925 0.22642461940366743 -0.2852650335110778 -0.5777974429761373 -0.4191796520912009 0.014444331142664827 0.4162363109585041 0.6442768547158512 0.7627356927440415 0.6634459210222636 0.42759120076012763 0.34389874724180464 -0.0384678963011768 -0.8901804926951762 -0.4732484020474519 -0.19616993070257685 -0.07167219195715809 -0.035782268453190075 -0.17229901810103784 -0.5538837979265545 -0.7347198233600882 -0.6515478863748587 -0.45320411559807455 -0.18688757288126392 -0.04782612130623234 -0.0800280587634052; -0.9877456304575322 -0.6345685727438026 0.7707210908029639 0.46024306111172847 0.881220413478486 0.8740439913419381 0.8020544884899165 0.7303790769537004 0.32343301992920237 -0.21628753523540034 -0.16585114030270037 0.19761228795350483 0.5111165287094537 0.5715441597764205 0.6580916914163657 0.5444291956498528 0.5538667567472775 0.7764271361863496 0.8767076496010704 -0.14205552286470552 -0.8805830139427249 -0.5421145038123497 -0.24031925508155932 -0.020234005856407035 0.10860340113706204 0.02649465380650249 -0.4577726544016493 -0.7697725554316193 -0.7425502377080796 -0.588472149465128 -0.2668809451076599 0.3587052443361679; 0.3943771918339326 0.3124525852168687 -0.42634554960416443 -0.02249549296430693 0.6843706171282713 0.9919101605544022 0.9749205584729532 0.9441143692818889 0.13738916998377898 -0.14094187669791866 -0.0322383505355236 0.4091772705370907 0.5332024381790339 0.3050696873410911 0.23362559345722173 0.3818415964713055 0.5741481666567624 0.8123499924430188 0.9777269218700517 0.5715948646667203 -0.5894557947819858 -0.8512019041701554 -0.5670388261608402 -0.1474058404618783 0.20649848540257976 0.39558345089918917 0.42146032474726625 -0.15961657333195078 -0.8581278225903892 -0.7884928688075654 -0.2205938375140363 0.48191908631980707; -0.8768475082812726 -0.9228651767568944 -0.17311483875462305 -0.014582660139021856 0.19586983020711538 0.7936102169040434 0.7907594080208343 0.41098767411523934 -0.42721940449478163 -0.42391261773028305 -0.1148382807685084 0.7122545379499065 0.37718739596696105 0.027175470437005998 -0.1988345518928589 0.020353347276678316 0.4994736895564776 0.6979938772964358 0.9008743847293477 0.8639398486025155 0.1439119544348814 -0.42658907548435043 -0.7756855220925284 -0.7494631215693905 0.08826393429236523 0.6565384782988445 0.843106612100736 0.8623028300737051 0.9055336238206271 -0.2304332852287269 -0.5498135848688641 0.7636251666116183; -0.25493061344663265 -0.5514175740109496 0.038582242046991316 -0.3001458203810597 -0.4245782369887801 0.01528943523385187 0.17357999778806563 -0.22029049479508264 -0.629071122025712 -0.5241223648694994 -0.3961798197827256 -0.26923633604859876 -0.14104060012823189 -0.11932337976475729 -0.0736678804059313 0.07864320078940848 0.22130538302649985 0.3081078397074809 0.544665570564207 0.8911973276434991 0.6513844229807069 0.4107062170810144 0.1555406483663266 -0.10516485528458562 -0.23079125512329954 -0.17144490342797222 0.9191843838607103 0.7032574388064888 0.6887099489652075 0.6920259491818564 0.11846047028423697 -0.7351168316416541], [-0.5292246796597376 -0.7988035362312511 0.26473172019918184 -0.3540229774730737 -0.9380913488246453 -0.8222172431696755 -0.7535426391815272 -0.42322898488027505 0.13601676224618475 0.6330795825839901 0.7899297885500047 0.6315691203862086 -0.345758221408609 -0.7605111535232169 -0.3632922591961666 0.9789552848857556 0.9281493268153036 0.8262309297433508 0.6381924702444653 0.13873626205314032 -0.48879923364929945 0.22450132285531485 0.6099921512066488 0.3061577456492545 -0.7499115137495395 -0.8984262741104142 -0.8687175917777388 -0.6651580980174133 -0.03105204833097646 0.5977288606489356 0.7354875351111676 -0.6366079298679931; -0.44503316220765515 -0.9705323492881823 -0.09083695880663976 0.2885933750279543 -0.4144145858030296 -0.5829560009402263 -0.6943019002625016 -0.559284058415838 -0.16906947122926141 0.3998767565397789 0.6319524103464996 0.5328386836640725 0.024216948091101212 -0.5419428542471901 -0.7208106682565293 0.8303833933223348 0.8675985623293956 0.9071210278132095 0.9170898248976785 0.619284363427991 0.477985999639407 0.8389459913778302 0.8463756447153937 0.6110515839027931 -0.9516945251980337 -0.9240423967750916 -0.8282804088256911 -0.3122835666496908 0.2514683897032767 0.8886566498865845 0.3036345037162984 -0.42443598006466277; -0.7683645217235449 -0.9206965755213818 -0.6098784166718173 -0.012701217871089961 0.0067898977805632265 -0.3227041537336869 -0.578561083916999 -0.6558477640152873 -0.5497188264309355 -0.08214263023423408 0.46313649370946913 0.5471039795348567 0.37493171792680946 -0.03170619474866991 -0.589347258844012 -0.9772249556300394 -0.8569114952697877 0.2840728135665381 0.5233446789321967 0.6081578235217412 0.7354264053386679 0.8785212164312615 0.8295470792377196 0.4717544252929451 0.1051228146639985 0.07520507744158733 0.0942087836488666 0.06999445871023206 0.06346775724175298 0.7388802388827486 0.16388125270030612 0.7845316667865884; -0.5973444375906506 -0.7479523115702039 -0.7884089239368913 -0.4581175438231158 0.2821408177319342 0.2015455834573592 -0.1448127888567277 -0.5094826334147596 -0.7273647258732091 -0.7565363845135048 -0.21798240084523365 0.5347733443800797 0.6513896745571551 0.5356377772162711 -0.09639320299043129 -0.9054111456520921 -0.8995270478800529 -0.47081193934658805 0.2344020384068284 0.7107427885858382 0.9435328432171205 0.9533116545270516 0.6603617014099079 0.3145766625695696 0.3039944217769476 0.3577074468474789 0.2735118896069638 -0.004279644939055599 -0.33898606754862237 -0.7093986751164111 -0.49489854321169424 0.8398158284265193; -0.17826002843542135 -0.644680211385161 -0.6771761811614777 -0.48849746058426097 0.2724695043980083 0.6153263200851551 0.546153345457425 0.21682306581319258 -0.3881991709930739 -0.8044809843312731 -0.9663992832341132 0.1003249523593785 0.83824350966789 0.8876826587282981 0.5264584207093473 -0.7661269471926043 -0.8868025899599467 -0.6027135005999609 0.1445434014221953 0.8277152010210062 0.9462982526838354 0.7272767583973448 0.2678155436655984 0.1475303020707292 0.3114769890288158 0.32655669052833 0.06527418333112649 -0.5566712676830956 -0.9930407201460286 -0.8901022635875494 -0.17214023000306553 0.19050063488830446; 0.4266210049802853 0.17264512857224287 -0.295691523662849 -0.33476789361174747 0.06607081865539813 0.603976473096961 0.7232821270644073 0.6116148591017654 0.2526741268811712 -0.3805217769062955 -0.9115167376770803 -0.6892037979163752 0.6689444435604529 0.9647063742428832 0.9457337433968233 -0.5204193736370977 -0.8476486240838295 -0.7000752478346867 0.10361612119021185 0.5200156013427064 0.3243666547334854 -0.46061483907242273 -0.6590272448659458 -0.16856186271193635 0.11166594529330036 0.00430113866510862 -0.48844799581165654 -0.7835539432569125 -0.8441530832342418 -0.7626439083715344 -0.4918648745660812 -0.008166955543070474; 0.895889273751658 0.7305067963596538 0.3664746560414455 -0.10614111806307104 -0.1354265811839053 0.23275142229397028 0.5626484188902194 0.6890872599703577 0.5986430733583734 0.2488739716264597 -0.41615913443047875 -0.6958752340503989 0.23736685277039238 0.5837429658621586 0.7800927974677458 0.2687122470294037 -0.4884573608575292 -0.6425354248658871 -0.19278850878150777 -0.34115462122200346 -0.8232696721875468 -0.874779105158311 -0.4670034959293022 -0.1066934590691659 0.07197353285054758 -0.1557475981215717 -0.5488344761218888 -0.6858498434135791 -0.7408146396374607 -0.8262465859858339 -0.911995346550765 -0.034530390482011265; 0.7591151287709486 0.9233882063242658 0.7334040840748866 0.16059058097178694 -0.3447793434421618 -0.2915386580259485 -0.10496540356031249 0.12349378678457461 0.36409722069434663 0.5964351722396097 0.6841508442769472 0.5723637486225737 0.16143086182704774 0.24086398260187386 0.3459085365798299 0.7868242386284505 0.5220274374997624 0.4005256078783972 -0.8927200301861273 -0.8957376487618568 -0.8395865276413222 -0.591209958806337 -0.14143965039667605 0.38428494943448027 0.7036628338256399 0.7783142190448447 -0.21668637915649702 -0.40820256444952074 -0.4193136851864538 -0.36159519013553554 -0.35290921308955325 -0.26742600526280186; -0.11125724571230233 0.0886350670680899 0.1582210061204221 -0.2974426409101733 -0.6158505112568707 -0.6177915321142269 -0.5508579204987528 -0.47860506884525056 -0.42522861194620726 -0.42777166162784436 -0.5468124407888633 -0.3890577602206375 -0.3369807892944461 -0.19686292080070958 0.33633811188979706 0.7435535959630206 0.9083773135798824 0.978420292391018 -0.8708863745022511 -0.7458504072138172 -0.405250364694467 0.10544467399054165 0.750220538401885 0.9048785445082425 0.6875446247671372 0.6093271226792609 0.6740397741533746 0.7187605595973199 0.4500842483271617 -0.052737467489124105 -0.5054589339848348 -0.8374775683205831; -0.4308496163878923 -0.44238876245956615 -0.48479046534489506 -0.6592426770919387 -0.8135371579436746 -0.852323790530985 -0.8392065756800751 -0.8166276431403351 -0.82564988326019 -0.8939429079900172 -0.9430452506434097 -0.8072435161989234 -0.6343060370024712 -0.4500205412087384 0.2868240715880809 0.9967506549631696 0.8997385488352323 -0.16203609339163708 -0.5953539336306395 -0.03488195860172207 0.8612833306099945 0.9303282968967581 0.822678085303326 0.5688882226028481 0.4515094406909703 0.5370198263064215 0.698355724150681 0.8349254011419074 0.9133059902316178 -0.20529264739400013 -0.7055717594224336 -0.817056316856157; -0.5275914220887378 -0.5931338496370648 -0.7485893510728313 -0.9145990173888965 -0.9545231857331831 -0.9279101541955603 -0.9460701932524546 -0.9712378725594061 -0.9705164829942714 -0.927875398911921 -0.8417254260185845 -0.7709625974086802 -0.7447271192629099 -0.6972936617053097 -0.4748505140612879 -0.40434184138303136 -0.15577006063510782 -0.937456991834789 -0.5492096423936423 0.6162187106083225 0.7271572743722423 0.7007772989260845 0.555256851185284 0.10663145160615364 0.04894039031561526 0.633104350196019 0.8220318357809046 0.836436432341039 0.6919169248981035 -0.20424255091048082 -0.49712066066782357 -0.5822965910155454; 0.07958937095676719 -0.6556069477659587 -0.9728682866236892 -0.7289489553457617 -0.5605331054862535 -0.4886013239068057 -0.47680313852036854 -0.4879147064463575 -0.4718137845705342 -0.4113194582251233 -0.37361749834180363 -0.4562919047161985 -0.7316186999137858 -0.9909622851593661 0.1728348800768961 0.6722989640074138 -0.29812674861195765 -0.29243843365572914 0.062723819203806 0.6200199782773246 0.5062058379275969 0.36095287122423747 0.16003742876365665 -0.38401385941147265 -0.5285477723639949 -0.12732527873931876 0.2803125152535748 0.25431538302627055 0.1523205429498515 0.03023831298644075 -0.06339574661495305 -0.1089222802089055; 0.842135581343274 0.9017650376143093 0.7588801701203245 0.45393234615463784 0.27366172433828717 0.16180852926628492 0.07080802963048445 -0.02479649898950958 0.03455176103353542 0.9551415401133341 0.9847594724037528 0.9179517719699356 0.6662033011249331 -0.35013237522432467 -0.3796013790512724 -0.5259868670882039 -0.2521494292554442 -0.9372345555734598 0.23554744895080676 0.7251924918684483 0.35960264360683936 0.35200699285077086 0.3759638515882627 0.7261376757797828 0.9645044254163173 -0.5421352280359256 -0.0747293707277826 0.009382813041290556 0.16626989370671663 0.447536508213432 0.8676814159065532 0.9507389218779982; 0.9138967952588183 0.8498267308009915 0.865398695888882 0.9679358120923731 0.9639000519314499 0.8326989435147918 0.7155472134670157 0.2742989880238688 -0.43810609184632254 -0.3206083574079098 -0.07968984256079809 0.45697036528058455 -0.47101029114518594 -0.38363710844408266 0.18313245267237702 0.41279151026847294 0.47752703723360057 0.460699910283539 0.38396201396302293 -0.4106634187742387 -0.6365552479593961 -0.19526219616676246 0.2634126568386084 0.4857407202678671 0.5957860576398637 0.44935900059148376 0.29218315504234643 0.29876014466592415 0.3864522490000125 0.5463497574028845 0.7940336178180992 0.931122839416379; 0.522767673036176 0.540301780456528 0.4660507856826268 0.4911756307796096 0.6172092687247627 0.8854553310813736 0.6927403334694312 -0.3298713024202229 -0.9079749316155113 -0.918954795290323 -0.8635031300830378 -0.16708851483311948 -0.18612075729826638 0.3659278090653313 0.5887806997932975 0.6699802429245 0.5190442889908162 0.30437570314657364 0.05657076389589654 -0.4955898957377676 -0.9427636525667481 -0.9365250939724855 -0.5829422116827758 -0.3290441164441972 0.02956456988795747 0.9208115246075953 0.9706283668432549 0.8096928229916746 0.6781066023695188 0.6363711649918126 0.7289756240338842 0.7275007397495348; 0.47812397271940743 0.8667468925819175 0.48157915214317776 0.30708080008163485 0.20860109909578967 0.15514040585744668 0.23650718863192755 0.07498553835641307 -0.006998570983090387 -0.20923207158037987 -0.5935743810614799 -0.8440644582015938 0.6058253445576713 0.4845460098232269 0.7722889319338218 0.945869601890694 0.4677699349358182 -0.031112134707490562 -0.49436596859983895 -0.600588730689011 0.2761137364451752 -0.21945394982490415 -0.7998995327645091 -0.6152347566700492 -0.1204184491842093 0.3466481569519587 0.5444906451366205 0.632416503493512 0.5943889472844753 0.38781555879036145 0.08288029776206712 -0.560022154882854; 0.4251694768070941 0.7741014084391162 0.8193224023549688 0.5729114715370989 0.32462501693812656 0.11404462181143284 -0.06724379453751567 0.4650592963646075 0.3997835925931237 0.6034356352974063 0.7673008554155638 0.24092601335793598 -0.49917550228273916 0.5357758754550804 0.664898546113219 0.1981474066459665 -0.17808810354084462 -0.4026365420890889 -0.4188265622485951 -0.6181539533908803 0.8356192033553755 0.7766357228743187 0.7523447291821688 -0.4030702699177517 -0.022293569846915447 0.23499680391417146 0.2205921309222277 0.11227206617540426 -0.11965153387773739 -0.4187635839579435 -0.53420953571824 -0.5280892885144542; 0.14502492362664582 0.4613587496648649 0.6849599914012062 0.7127994412394255 0.5315097728028016 0.1855249656491787 -0.364035617023226 -0.8141034661024547 -0.9046826979621759 -0.9195987038673161 -0.928070739347977 -0.19481454055705633 -0.13401654638233945 0.7027632059582108 0.30204173160442 0.14182707680114684 0.2984595314587175 0.9478269030139532 0.04075415165117322 0.05646889888378627 0.7980176227458807 0.7420449120419993 0.7940836427837414 -0.0991993154884551 -0.3615214410128197 -0.37863899270512397 -0.33613463460006043 -0.39310498182101494 -0.5365478759129638 -0.6197923896646301 -0.5522625612962988 -0.36153785756308204; -0.8347931864611942 -0.5791332658738134 -0.22980791010184154 0.20716319315558793 0.334823636470311 0.10609051841971921 -0.4708845387982617 -0.8536839495974381 -0.9345786412993506 -0.9579756158601245 -0.9163459936484251 -0.7695678880979174 -0.8087711614365815 -0.5100444105054044 0.539427795920952 -0.8755974562578754 0.005597638714931945 0.6847407947568561 -0.24262163578623896 -0.6542488056218696 -0.8131552141456873 -0.8059706915914329 0.07355553653941824 -0.7682374156449285 -0.7889101356221053 -0.7961561619142734 -0.8036295744770374 -0.7559621763757572 -0.5564577705463215 -0.2597346036402378 -0.1175993940458586 -0.05353739544301285; -0.9454100493287255 -0.918802754848765 -0.8789973940826696 -0.6969551676765063 -0.033542064179638446 0.22334025914882305 0.1762645175720159 -0.14781302405073232 -0.5001099584682112 -0.5473785653869736 -0.423700318927769 -0.24352083641305614 -0.12801217550594593 0.0021115390674033485 0.44682817229594995 0.8379233733823623 0.8720666706555625 0.5211238113609169 -0.4944904648210291 -0.9819309310036275 -0.991988234744252 0.35804142133789946 0.9471695613840171 -0.1669770550038157 -0.8299994864727827 -0.6990650379982186 -0.46134194706399956 -0.06472008417958976 0.4233798994770441 0.7274178029090269 0.7224325906844297 0.3790433743740616; -0.7773492127692859 -0.8402006039097344 -0.896554701457938 -0.7162435092911241 0.25869168813644455 0.5125369269200036 0.6019358344156955 0.6777521468070165 0.7070878945195972 0.49550927401962525 0.3720768013343295 0.35306628474299195 0.31620190484859845 -0.4155887825252956 -0.9851976970815313 0.6891435606568191 0.25582114914132936 -0.23899999049466802 -0.5943785531117669 -0.49531634749670317 -0.08999140366098957 0.6810728694986261 0.8588573651607866 0.8479026539541957 -0.48690404295839657 -0.37772177333510343 -0.19925688777044792 0.039589960390204855 0.3257462146319511 0.5872712761916089 0.7629168551786174 0.6931119533851245; 0.3852236595741358 0.250165030660277 0.13500329471636166 0.3323049104742376 0.647438769120454 0.8052626109007026 0.8221897483461964 0.8572069214514738 0.8626383741282041 0.20391025885328545 0.0716975653064578 0.0752380626947539 0.09224821626274061 -0.00033900636085280953 -0.43127566005564943 -0.5978555565088901 -0.5314476296983937 -0.7041704041909587 -0.794116947964252 -0.3108728207349088 -0.0009196021855167813 0.175288334428047 0.44301095317673916 -0.004077130956769269 -0.2901744313514519 -0.209024241537731 -0.05578610510743776 0.13459273164595895 0.32514546810175377 0.4723933991626882 0.6170165961300205 0.8898990437355183; 0.6185716352122738 0.6022043972296448 0.28890384550297454 0.1277462528245977 0.11519822550891123 0.15148315118742897 0.09524482228577844 -0.471263600809468 -0.6701979390541175 -0.6381607957165635 -0.5346779874192568 -0.39610254815836726 -0.10962725372842755 0.7062030177136315 0.7433065218614824 -0.1088959963604486 -0.4899638193457662 -0.5796802760918762 -0.647786314620912 -0.4849592015162582 -0.3567446744852567 -0.49626842126595755 -0.7016838519668445 -0.8353514134988382 0.3111700132376839 0.6469990994304192 0.6378418156734523 0.6564133210930441 0.8291429146877644 0.6543169326779903 0.49217112023014736 0.5906483433666313; 0.3429666281170103 0.05122847901901197 -0.19299335762767844 -0.28410834359996967 -0.315775491164712 -0.35648059460628384 -0.5166373745199692 -0.8504645706273082 -0.7260163565660935 -0.6284967373776834 -0.5892126129928791 -0.44177020772878045 0.10323679989591425 0.465102537223088 0.6273409307822897 0.7841851533750915 0.9747406445931867 -0.26934376425202805 -0.4859482988995229 -0.4184021435228071 -0.4530828445767798 -0.7088369913392402 -0.7831051435304035 -0.307404620655372 0.40469418014545533 0.892607420475732 0.8311982754207143 0.5499751121895822 0.41854450771280294 0.5820564851861674 0.9555567262560934 0.8023630593670587; -0.318811610599093 -0.3331482174289568 -0.3936684933338367 -0.5032751728846361 -0.6781116696074659 -0.8673309501003051 -0.6784152887986512 0.22148731648959363 0.5834722421979942 0.6363206257069227 0.5130283911052567 0.3898822468882269 0.4421310955749138 0.5855690925706973 0.7136735868465808 0.8147575259725907 0.9008326372063762 0.5193419318482578 -0.8177306668902632 -0.2976505396518673 0.9441380388354955 0.450161536420902 0.4525775082277264 0.7185884389346091 0.752613161239816 0.7176667390195713 0.7467422820853956 0.8093816779913195 0.07855878846083894 0.15301283055013523 0.39894734933178455 0.8347816554022072; -0.3936367663765387 0.18332823078998356 0.16055023847875446 0.1361433308892315 0.03674352783276006 0.08349297072598122 0.41314422494274955 0.6797090363935824 0.8217423349740984 0.8886104339979498 0.9226513438330936 0.9710320322669742 0.9649944735013387 0.8981451696125102 0.8963089559318823 0.9019021896942017 0.8232268036040387 0.12880572624788894 -0.3804830154795593 0.10342438856341854 0.37116579139142886 0.5350683896718273 0.5064439609543187 0.4600070068418835 0.6595394821523023 0.9031224632708289 -0.34993476657156264 -0.6767675661480919 -0.8027115955421383 -0.6551249224652116 -0.14053447222903986 0.7351844362718253; -0.2827805175906282 0.7171050187650739 0.7824482433004853 0.7583764717224329 0.7517508815060447 0.8217781917866747 0.8711555466436024 0.8265152611355405 0.777741271962849 0.6904051430050059 0.542696327637503 0.40815323205847165 0.44288645762783535 0.6110542933431198 0.7577308474007592 0.7730751125388815 0.32531431090119184 -0.5863751447355625 -0.7692678266660187 -0.04822055064254067 0.0313019271483154 -0.18763136294187632 -0.5532176188094219 -0.9628340908295813 -0.6220189698187608 -0.5334673665164712 -0.6465554820920562 -0.6885666888238533 -0.7276793918113947 -0.7943896504041373 -0.9630385973277813 -0.7182140998188453; 0.11437446548559599 0.714727474318493 0.9830204836605202 0.9914479237585663 0.9102387473814105 0.6732531843647583 0.5334861095181521 0.5305003202169357 0.36319416089364176 -0.07926939612240394 -0.31318660009730026 -0.185464562338983 0.16891758651931027 0.4816198634822861 0.6428907186758459 0.3771160599242836 -0.18234505950786992 -0.7683921986183841 -0.7575180766033192 -0.32714420076236517 -0.2809108271371709 -0.399089577434037 -0.5341523554266258 -0.6907957142646703 -0.8515045426430785 -0.7953086407627253 -0.5899315961360952 -0.492103017730363 -0.5012238085921035 -0.6418142859236795 -0.7065699563254878 -0.8396061384316641; -0.0760059716603711 0.33928355011620415 0.4676774604219444 0.8112917737391685 0.23654162728938743 0.1600355061414845 0.18050180950121184 -0.007967998963881227 -0.7736115784073329 -0.9710465910435332 -0.9729240189470196 -0.762952889456996 0.02448047936655121 0.5238176049376718 0.7528349755309889 0.28947737726226563 -0.10310012481463725 -0.3066382537558643 -0.4032705859091938 -0.38624950073597913 -0.4463315892554543 -0.46280729506560664 -0.5129363727879426 -0.5929168562718738 -0.696037612041855 -0.8127509131088372 -0.7654706854715037 -0.43861206280380044 -0.3667796881107648 -0.4211299729127905 -0.6584447553115751 -0.6391606213333915; -0.33362846135009133 -0.7049635041782475 -0.9045470188499604 -0.8628536430956639 -0.7043318676305738 -0.10323082562043306 0.10309638687244535 -0.1168829009233811 -0.960589560153973 -0.911539997686078 -0.9450231796102876 -0.886856180625741 -0.007186081456506129 0.4617768372720129 0.8697559255311142 0.5480586370551767 0.15985153769071284 0.017321968981210172 -0.14309205270872108 -0.45684968407432786 -0.566953638909919 -0.4939144222941015 -0.4573133209249164 -0.4902809318801914 -0.5407533509043778 -0.6307865941830677 -0.7843470057697002 -0.8996499278732513 -0.4376789177568486 -0.22478783319911477 -0.35852825031095725 -0.7116706658417086; 0.4049471738502205 -0.2125940911175795 -0.9704342982910279 -0.7392335818245852 -0.7475110257270587 -0.20643376203754302 0.308499730633369 0.41742508893095875 -0.2859197940843793 -0.507395115882449 -0.6324496489481557 -0.6539262442708085 -0.09399570492963163 0.022901536933439246 0.24956315939677376 0.8694414143225792 0.734061660583489 0.4499380924260424 0.11689366858064267 -0.46422079114012305 -0.606295285099506 -0.3281396880012453 0.1351017174683525 0.5713281587933129 0.18469743079363338 -0.3088742451275702 -0.40346017693856584 -0.49683514160802245 -0.2740027910173434 0.970729847803249 0.06339005373699338 -0.4266407804166067; -0.3435298768706824 -0.7505154391912693 -0.1123458896676991 -0.6797002649230397 -0.6124857191774952 0.2011532087432646 0.38148750447381613 0.5225961743912411 0.4818064806375621 0.708021360597971 0.8554246222899671 0.6042397925225415 -0.4899891162947953 -0.5571598260948811 -0.3276838507231421 0.20987774874027904 0.8319844713917879 0.9488589338413922 0.6371454923097175 -0.37888023397736253 -0.5036557144585211 -0.04121145192183568 0.36748035856172073 0.6794750122293326 0.8050168717101946 0.9627693348968301 0.33533171595959194 0.7109339666560116 0.7015505069250697 0.5914448393915613 -0.24333108558657923 -0.6361688069331984], [0.37938797385877376 0.2125239992087462 0.9241128838071825 0.5838532600526274 -0.061575216916960544 -0.13299708206042013 -0.16300802265728825 -0.08804219355174418 -0.05452898429096845 -0.06041525858439812 -0.14526037597654612 -0.42865073106811885 -0.6497220313862897 -0.3676278489328676 -0.3415501053652444 -0.1985444710688848 -0.2249636744030925 -0.32498045135813397 -0.45349898030444846 -0.5617728693068927 -0.27586820080199426 0.4803834081540798 0.36204356121159414 0.1702995066853396 -0.044186229330610755 -0.369756528814868 -0.029799080956949494 -0.5122295803794016 -0.9954569842646487 -0.7721900016403831 0.6278680928093083 -0.6670337111400334; -0.871177953727769 -0.20526724750612366 0.2808253821595031 0.43265224800638263 -0.09122032403278231 -0.09951460298385004 -0.11632084315256014 -0.11512147497661195 -0.11430746184505251 -0.13978593096486194 -0.2241840273207896 -0.356830112946351 -0.4538711178797968 -0.3377125604417091 -0.22764037264082268 -0.5217136479641096 -0.11604187983981754 -0.20104467109492274 -0.39788160472521816 -0.5130206773585616 -0.5272198054215477 -0.4777061035744757 -0.21944767273456423 0.2053911189164013 0.3042072674122335 -0.09569311680438454 -0.4256888902646088 -0.91536813718695 -0.7873961183619239 -0.24593757047406045 -0.031177425068828674 -0.40691476729825077; -0.23072695175145605 -0.3689601057800925 -0.3410910530181539 -0.14279108352182446 -0.11479233923160921 -0.31429674447903483 -0.28387748811309255 -0.23364783374855172 -0.23540413327546383 -0.27774224337504533 -0.3081232641584665 -0.33460187824152243 -0.402861310843647 -0.4804228375563504 -0.4303347761633571 -0.13900072999033752 0.5149755156669727 0.5799376060131953 0.1714090398697723 -0.0582162210308332 -0.27627852453314466 -0.4382611888851956 -0.25964231771205837 0.38706412907404825 0.7908804671804502 0.6334340373578284 0.02418735852597758 -0.33405190742081853 -0.38231863967608215 -0.07237914844826583 -0.13792834533444467 0.5032293099978378; -0.22396598025529244 -0.014651199531758315 -0.5666213827633673 -0.8572073966287759 -0.8192079878562046 -0.7549570334241356 -0.7601069425209952 -0.6698517282432898 -0.5290827108265069 -0.42070649012818984 -0.32764669373436867 -0.198613153877516 -0.2687430286408338 -0.45944736840947764 -0.7073896774297359 -0.26576248466455676 0.2117102346105656 0.511908514811053 0.458372889415219 0.2018574442805911 -0.06058832206548231 -0.20601482670817756 0.1138926396039981 0.6407207076888525 0.7592482047381294 0.656403129456009 0.3851396710291 0.1130594276068911 -0.13657573471375797 -0.4470868569952863 -0.6523677813914814 0.47670767943813913; -0.9061493900655593 -0.6990206612726547 -0.5832607589453638 -0.6689782446971979 -0.8674895976629627 -0.7712615035239632 -0.8364550167242915 -0.9750957620966558 -0.9186114598205581 -0.5926544331448022 -0.1842530524538905 0.38541495792968 0.09695415884017855 -0.21226018880201747 -0.7126287341214544 -0.4756327475391576 0.08225519927109823 0.4818862079967947 0.7352355715791435 0.5134848809800032 0.20076022905673663 0.10535545638208275 0.5724633545975841 0.9332554386116603 0.9126865283523257 0.8394138071581335 0.7572583997071081 0.5742516976542761 0.10639527593777305 -0.12872276869884713 -0.33879468078795183 -0.05685094132923746; -0.7900192055882354 -0.9070314367457989 -0.7324119375659319 -0.45227015638582707 -0.27642498352799066 -0.32017156235641003 -0.4540401929476643 -0.6518918968067979 -0.8592346211559948 -0.8403713719734328 -0.3538121388351541 0.7220399959015037 0.7370236892042725 0.26327468578118624 -0.324865201517318 -0.7516133980160237 -0.1302077168725068 0.4157676000766938 0.989771727468869 0.6461696498461346 0.40509684197114487 0.4302477597448698 0.5023462372333548 0.596162026926141 0.7500321179126455 0.900515347736838 0.8235225282671682 0.5266201430557251 0.25555974164123496 -0.019542107562850502 -0.452831462881605 -0.42602945486130683; -0.3529697871354877 -0.5734414276727424 -0.6541739924097678 -0.3225644911631003 0.2009540774312124 0.32507711348411134 0.17464378363091107 -0.12571597274129528 -0.46782292392934927 -0.7707703712363472 -0.7601725976485918 0.6062330705289888 0.9358692984016289 0.7323666583043188 0.44447261804464033 -0.9328842374308317 -0.5453178940531094 -0.19544413212271816 0.6697721154585823 0.4881186814131477 0.4064131677901532 0.22900701129218187 0.11118169058789172 0.09148223138700476 0.17125022953380428 0.4098190859807418 0.5455878016542963 0.5255467881375026 0.4779891394248516 0.34744920374414384 -0.40352562104714884 -0.7781409408302404; 0.5715576884801508 0.0061819617965063025 -0.23816194901279783 0.06335124333651664 0.5695320780284224 0.7676250671914406 0.8261552579207317 0.7822474109787099 0.6055701107471386 0.1937428223735516 -0.47321392706367804 0.6748851060261432 0.9763935035375938 0.9224611137674443 0.8883057511954793 0.5203909564684606 -0.4182304085454402 -0.7172420373579087 0.1813122792293824 0.41983972011741383 0.4665330957494823 0.4128255949534587 0.244266167097524 -0.04233267829706698 -0.3106088335585489 -0.3109463512273276 0.8333631940323017 0.8890127862719114 0.9074783929086268 0.8398791720571696 0.4038817622947353 -0.09213953230106375; 0.9796317256590537 0.9748979325758966 0.9231256969705666 0.8939260494677265 0.7779139960903111 0.7823486483126211 0.8278478919244476 0.865657999574861 0.8903414930862384 0.9002641900746983 0.7293081636486765 -0.1047631867771289 -0.1666826549642354 0.7142169424915467 0.9077993587456621 0.5764693634675979 0.1628906644055136 -0.19256891921119154 0.4316203310097802 0.6542015814180969 0.8073562737913726 0.8466089407740596 0.6293611962240555 0.029856766707634933 -0.2982835005926164 -0.37110161702785105 -0.2417237447499112 0.1703070783626122 0.6427518709062278 0.7709425992168487 0.6453670798198518 0.2798703395431841; 0.901571118133959 0.8960648343833186 0.8742807524691288 0.7443282522763742 0.533637065413959 0.47541016807559944 0.5263788176367126 0.5742270327960225 0.5631216158174782 0.43293489675830366 0.08352449595114216 -0.3374313702550423 -0.5858164499167754 -0.766191635771983 -0.920885881069777 0.04207994452068319 0.400001392992905 0.4111453885492379 0.3546211611763333 0.8828477477435075 0.5080511921276478 0.3327386503721136 0.1953373738157824 -0.03376573247077779 -0.25162806543514177 -0.3853464984621753 -0.39563558701638574 -0.27586732493973687 0.09384129304742764 0.9754618409869081 0.6132979365404527 0.3568932558616483; 0.8403288366552933 0.8007051291431605 0.6623772179939688 0.3520997839324221 -0.05158230164427735 -0.24516315131934674 -0.2601789584186028 -0.21461725563569545 -0.2253918777916239 -0.33477758447152534 -0.47020327688940644 -0.5593761586227948 -0.612379375669985 -0.7044180440020935 -0.8628700252262386 0.8967874959445985 0.599765636134436 -0.07478128881394308 -0.7129048713598022 -0.7221887068502156 -0.6601996618815503 -0.6757017015842834 -0.6988560317499979 -0.4930268343663838 -0.2984364905466698 -0.48549711848905946 -0.5354048056366792 -0.5460177262568499 -0.4385133497620767 0.19275185146356205 0.3427550815306793 0.23435615799410528; 0.2621426089652535 0.5953310300510879 -0.1555796057575496 -0.6281943020118733 -0.7972833998621169 -0.863193295554705 -0.8787753932100743 -0.8716454419405625 -0.8816981335167188 -0.8995553965681755 -0.8888697725131562 -0.8473884875034077 -0.6578930817559538 -0.028253864607893153 -0.08835335823114618 -0.3383389226825298 0.3732500569182606 0.15925544937523597 -0.910754184218875 -0.6863647995389998 -0.8567141257926707 -0.9306966856900606 -0.9870851745898379 -0.8340820244945059 0.4958020484161202 0.46983098287544706 -0.4003164367414928 -0.7861171854682237 -0.7588566300921852 -0.42214778428529803 0.13572528420515736 0.28978740585086404; -0.517739019845686 -0.42783109773314904 -0.5970190012198962 -0.8556799182207864 -0.9519853192816533 -0.9868217596555188 -0.9877283571262446 -0.9581070717349631 -0.9399271617462861 -0.2884272722929367 -0.0838042800547736 0.22147662708264107 0.4921532355636569 0.8866784387321289 -0.20616223057502486 -0.132620521457811 -0.792691691030522 0.3467642570550037 -0.3356829540875159 0.629431648898343 0.22709476143684657 -0.926751704499394 -0.9194213799657317 -0.6682318287179694 0.26069740339227593 -0.8034016567079401 -0.9969184039543828 -0.9988180519221629 -0.9831919084918269 -0.893388714527478 -0.49664853377870544 0.30949177036667197; -0.15021272569765998 0.4304262904386536 0.42393700338217777 0.1500563071297395 -0.2425593724308297 -0.5536848201983243 -0.6931143647454445 0.8652288503924093 0.8911095487611077 0.9442224170783794 0.9968037834677944 0.8721373071173185 -0.7872009051192564 -0.6643004242703388 -0.6670617103571753 -0.8905783122600698 -0.8209598964704855 -0.6138080705583874 -0.2700058188469499 0.6642387260804629 0.6764779310434917 0.8891773098904692 -0.9307184335769083 -0.7879447455212916 -0.676632750351888 -0.7857512208193181 -0.8783355816076036 -0.8777898007664876 -0.8356337286770861 -0.7355180095272671 -0.45869230566311897 0.31360235773859113; 0.10962623791060416 0.7895393523466775 0.8762167532571207 0.867921324076076 0.783951204596117 0.432941197961183 -0.4738309954407618 -0.575428070741805 0.038671564127530936 0.38550999712649137 0.4964095029228626 -0.5848787960208413 0.314961743079202 -0.3148267718233097 -0.5229711492603143 -0.7291771195700235 -0.7919554699072396 -0.7694294946308458 -0.7244764848437848 -0.5486903048333339 -0.13362207242584892 -0.30968668748279105 -0.7901519899193694 -0.9000851041414981 -0.6360189856642021 0.04179564262789441 -0.07967238787147868 -0.32545526156811416 -0.46713022952041444 -0.5091750319214838 -0.38415855373230834 0.6811884481757357; -0.7665234258488807 0.49835818513233326 0.8658513573113356 0.9461339437612064 0.9770998627763403 0.9821062474275587 0.4931429913099554 -0.8075929884775618 -0.9703166021656866 -0.9690833150505578 -0.6016266986900202 -0.1776495738657575 -0.4070602942875266 -0.06450238695079878 -0.036204592132575465 -0.27386809924013666 -0.7927287143519703 -0.899758495709067 -0.8667777795922198 -0.7220877561705209 -0.5401671655040499 -0.6207305315121691 -0.5255786759285995 -0.2816242548886683 0.4217451160360466 0.8336500710348879 0.8386499504221616 0.6878333146974379 0.3510477749187847 -0.10700974991152332 -0.4142819684337731 -0.08113668156692345; -0.8895256082658081 -0.46118921289059445 0.2662442202785738 0.727293426286325 0.9175172620426452 0.9866593221499023 0.9968503867819121 0.8637518787439772 -0.803767093040416 -0.6264725205392535 -0.42866062213994066 0.6474910957762434 0.6261916471398365 0.21340885748212385 0.7467603537263382 0.8910587493265807 0.705201464961541 -0.8657413160652678 -0.6280441841395886 0.7664741790794931 0.49108060961987454 0.6025039030510612 0.6582546284332668 -0.32437294516981074 0.7665744615222907 0.9678445425457908 0.9243600244936173 0.8558472225849233 0.633954933373376 0.0838655095970242 -0.38156115623063963 -0.5341649220752258; -0.8991045782135949 -0.6549927901484968 -0.2524439634567934 0.2724339434808142 0.660665111896156 0.8693261410136343 0.8011428503978418 0.35434276125310615 0.07509098929987358 0.08615830674705079 0.18290880078467184 -0.5373280183160668 -0.9018343270900554 -0.6910124460613647 -0.9317129809568366 0.39300524952709376 0.1348427912730278 -0.2445415378236919 -0.7913400634564164 -0.7952375883680323 0.2925591179534457 0.6523293105953387 0.36270039273584664 -0.9891815131328209 -0.7872376869354974 -0.32115588794622596 0.22576203591152835 0.4103063421514629 0.2756639338434578 -0.10883723161413451 -0.47541287698644974 -0.6393731371561255; -0.5345047837530089 -0.7028356789882481 -0.6283510845378469 -0.11817351792778433 0.3601178636328833 0.5529849550646196 0.4155011983384822 0.06696439117488699 -0.04356837066016945 0.0608724414561377 0.3292803659632194 0.6249519122737975 0.515955415794694 0.02719683677331659 -0.3700989156245317 -0.4799859379217759 0.5972428660392048 -0.16903246115213563 -0.5440536627479713 -0.5830027770852114 -0.5616897787458179 -0.44151171951366636 -0.22816152644948387 -0.6345816433135506 -0.5724283741717063 -0.4782757555297131 -0.32981889254574065 -0.18117113939359852 -0.2633561315361879 -0.592198716423243 -0.7807400375751734 -0.8355888757097333; -0.25935355039081975 -0.3922787660492543 -0.4200176982973466 -0.12321896570592518 0.4419224464335507 0.5868693919471227 0.5719877756832946 0.3435781009004361 -0.041123918720439766 -0.1175086291110835 0.1367747532330063 0.5449098600583029 0.8735345361600736 0.9999878348471442 0.8328350255669783 0.46055304301309935 0.4158694671312921 0.2580592953218944 0.1654175948096318 -0.00979908618326351 -0.09118224806689422 -0.7282635137657302 0.21198092771334442 0.6942208821615541 0.1638681131621156 0.054686380376615676 0.019622825997872916 -0.002605093761470066 -0.10144383341870256 -0.317473851243556 -0.6105634322818404 -0.9166933053231241; 0.08445092052677183 -0.27558875986283654 -0.4319734780003977 -0.1278250599084391 0.4962561840108035 0.5920625377595241 0.5923077016822027 0.4796663457280769 0.039820761341568846 -0.49284796628889666 -0.6240955826586321 -0.5876435056658514 -0.44646935093356616 0.48771437606593154 0.15572954889182322 -0.013841877180225773 0.020115430269288314 0.2367636762824728 0.6482952977923302 0.8653648330942955 0.966233575129533 0.7292714283356385 0.30960979474548145 0.11949952464278757 -0.09195268097413152 -0.020367044635882323 0.025078462919928123 0.08099341922271686 0.11959253730782834 0.07993163643129247 -0.1059972639984146 -0.5790859163745861; 0.6376630571637613 0.042988623056297304 -0.7908023514485399 -0.9286320109946253 -0.5210481797923686 0.00861228506154491 0.3091433688227675 0.35228411352378874 -0.3721510723676489 -0.9607428813043213 -0.9795494807418965 -0.9747628323927197 -0.9777033208313878 -0.9997624756645213 -0.8778103557625011 -0.7893678731673642 -0.7168000137419326 -0.38896864413868004 0.35702519784711273 0.9461778245268774 0.9999988438872396 0.9698940313686363 0.6523085497939721 0.992768635080036 -0.9249150871653452 -0.6325496460669411 -0.35768333456445045 -0.05082715428843252 0.28592129464015653 0.5050029643598453 0.5712932120193522 0.37065799759282275; 0.6211626841789809 0.09976402737433006 -0.6982818196222854 -0.9404477988373109 -0.9898239904961369 -0.987348378028389 -0.995453865453714 -0.6751396362696822 -0.3403395794242012 -0.5272074262407513 -0.7248621501773304 -0.8504022230329144 -0.9153332103081553 -0.3114402938558718 0.18152518866935285 -0.42854244894176174 -0.8694508337698941 -0.7685637649597674 -0.41298859285534006 0.4505699939865103 0.7921523117777274 0.7988644517848605 0.6920784243025538 0.5440710506151836 -0.49682428707122256 -0.7349493202186916 -0.6635966174183512 -0.5464199069050005 -0.05963345003256284 0.7449831236061738 0.8684204351782271 0.8054758191030936; 0.49597776762920626 0.15475533681067824 -0.36741568967376864 -0.7425119092624921 -0.8729447187987587 -0.9150846182908712 -0.8433912596397365 -0.32294094876007373 0.20774616983758176 0.24418807787709615 0.2385161557939393 0.48920533132468114 0.9092967647551657 0.8776583212122785 0.776147744966478 0.6090322389491629 -0.002857667134957044 -0.9412137533741011 -0.6073422806348792 -0.08090242736072252 0.29352853382274263 0.4451506714700167 0.6208809976783106 0.8188424482951947 0.8030766234318365 0.44857030155366 -0.06982404432707555 -0.40133850703163515 -0.5297902710172283 -0.4797266180465977 0.06726817893945264 0.5852303874632953; 0.4740847337177031 0.4591150928810399 0.32635313699023233 0.011223072976880192 -0.30558908610238655 -0.4756768268166821 -0.06542263846017857 0.62973324898137 0.7597219319403652 0.7677003254202581 0.806817548875769 0.8769167534290145 0.8844653427053636 0.8087069845017238 0.7003590040445355 0.5797664927891033 0.43303942769020787 0.7685625791761447 0.5344927486399662 0.9438382824653921 -0.28184584015126757 -0.8917971051150473 -0.7474474678965277 -0.04525278184005038 0.4197613101571288 0.6055398607588357 0.629385881683359 -0.5776132820137642 -0.9942682908498944 -0.9879553982868957 -0.9149953820784809 -0.5037829183551762; 0.6786074440367158 0.9702388718109335 0.8782293075187747 0.8621543185699087 0.9174333122334364 0.9399944963265929 0.5264929987613514 0.2740820861106358 0.11642141188372669 -0.012353661030967251 -0.13706155427216404 -0.20184999048697477 -0.0026055697573390355 0.24922311028407987 0.3616399376850962 0.4250843917085445 0.5158482691857982 0.7315456411013554 0.924596655054784 0.7988457613313951 0.5872197924800445 0.13772438860965397 -0.7420171207268658 -0.8868847324666962 -0.7411126472184373 0.4281895990761677 0.8798764625892157 0.5892744705789428 0.11078649731898772 -0.5440753446317581 -0.9565990958269126 -0.3092322007557153; 0.09881159401080963 0.6262864856193107 0.6221253385460382 0.6451916628256182 0.6516096879203896 0.5467781486573248 0.06632774252673794 -0.19810472823285907 -0.3182587180566533 -0.46607170133267717 -0.700178618914193 -0.905072648125873 -0.8274835991027906 -0.4974680305408645 -0.0781304416920453 0.41630816242330204 0.9435095117525841 0.4384020402087196 0.1733970927840563 0.989468730093882 0.9542142523419241 0.9425249456082576 0.8132044792617282 0.12537178117926137 -0.4084812416665315 -0.15459954203393877 0.44814755262369405 0.693074459402313 0.6839881039875093 0.5752002755122625 0.22348165904168624 -0.6202816123253074; 0.12980637966871922 -0.021701639660000556 0.06629970692696953 0.11625834840740018 -0.10606745680489467 -0.4441335534922075 -0.6875232802462501 -0.816885121652753 -0.8869689183667527 -0.8123216590296154 -0.852175200761084 -0.9825447864673907 -0.8934283308716747 -0.5940956501917466 -0.0701839501219565 0.6462375625310743 0.8853903344319858 0.5397287103239212 -0.6516798175280326 -0.3171046551732196 0.8349401518412226 0.8956812309475218 0.8423445601962679 0.7221640467497035 0.4952303122988535 0.24636741733151746 0.3349141577211086 0.5773386975607337 0.7371436246115091 0.7437388368821596 0.7060251829354246 0.5372681287015174; -0.13631456922873375 -0.6944129888664512 -0.43274333409628646 -0.3605301409891544 -0.4092659788305092 -0.45873275223499455 -0.5693221357544135 -0.6829955453301082 -0.5449001811098902 -0.10143086376704395 -0.16097283191977924 -0.6155097660630592 -0.85916273208862 -0.6316267807675879 0.012442881740269843 0.7872735858501885 0.8261973009115064 0.5505759561831752 -0.26221466715541 -0.911389900978084 0.15925347088288977 0.7013709948310854 0.8241012881364724 0.8050094325880169 0.7097442806282659 0.5820085794560294 0.45221546475751423 0.46375604714900426 0.5604389394653486 0.6901811901365933 0.703722292769756 0.6802971761094139; -0.8562468571261166 -0.636710169361242 -0.004915589727834873 0.504953011074133 0.18855630101244805 -0.07387577431515517 -0.1972334649105772 -0.30819871055407777 0.2416441865519734 0.3863032746577921 0.32541032367460404 -0.2146161134717978 -0.8459571621265666 -0.8328833282187041 -0.43467656031269464 0.7441966981608202 0.80299524819428 0.5829128915785285 0.15354064837077605 -0.6815920164202488 -0.5754176199289857 0.1774932725119057 0.6850777299918316 0.8590088043974977 0.8154411008847466 0.6675492535937814 0.455160377453964 0.40638966128018017 0.2684283983625266 0.5724940400434421 0.907080951503114 0.5111544361747256; -0.2591451979328246 -0.3211286626125987 0.1681919299590839 0.6732912130171194 0.6347143263162699 0.5723355008354316 0.5287035793577327 0.8104600094121406 0.8577490610743157 0.7502321566739825 0.7660415202947475 -0.2550959431736229 -0.9213546959659156 -0.9993683071884027 -0.9477251977474622 -0.49361662078518787 0.4600864178632643 0.5570998655902749 0.418044511008431 -0.19521013055141534 -0.7821095681788078 -0.8428203283238086 -0.6164896566473301 0.33449837724166587 0.9788239560623065 0.6881525464676501 0.35551529679708593 0.09792176116785893 -0.32393105230124053 -0.06770571351501552 0.8328785763728523 -0.48461763216260195; -0.9038791988008892 -0.3642323909366313 -0.9929198415146112 0.6692682843010942 0.6667792471868975 0.9794404626022545 0.9079302111386289 0.8236293683536166 0.6100262606224081 0.4732879668664749 0.33360195739382964 -0.7499373763744823 -0.8602431139091518 -0.8217875998257927 -0.9419110028934532 -0.9745596839359347 -0.508749217990968 0.0688206566385808 0.5453302099383224 0.24943354125366698 -0.5674762151767845 -0.9108358905321511 -0.916932545380047 -0.7261226211659575 -0.546519197119867 -0.20900204035101824 0.206525322268728 0.0013674129173149177 -0.18304505573633723 -0.41387569101850025 0.9626822423662411 -0.23429147001614625])), instrument = (lgR = [0.05763283456076993, 0.057632834561718034, -0.010180253007758402, 0.11463515739913034, 0.10450727425786423, 0.04122744866139321, 0.02509195484067119, 0.06637789973719979, 0.05658086447043257, -0.010059313152844253, 0.04655601932999022, 0.039293933481102446, 0.01724233759547907, 0.05656166562509766, 0.02814043973015111, 0.01555127353750953, 0.04371303869216045, 0.037896927546217346, -0.03346762029788786, 0.006694765132123161, 0.0157978214467784, 0.08810527110654279, 0.03473340582280654, -0.05239404197139825, -0.10920632812818144, -0.03114496491848285, 0.08362140740520602, 0.12608780426290034, -0.0464104487103549, -0.06329072603814623, 0.014747005435204338, 0.013866496381123066, 0.0020937089561196723, -0.19623849151861503, 0.02435237675803537, 0.015087516703008905, -0.0044160292123909956, -0.008667540247815865, -0.12730187716043775, 0.015102003724045585, -0.004024859482259876, 0.02335280712588217, -0.011232861899476759, 0.07766960531114002, 0.01570046602205708, 0.0033609277320502126, -0.004611816807071707, 0.0022874537896698396, 0.11648301702788376, 0.030772616538494148, 0.007062114646766232, 0.012467972429219525, -0.2997466808417115, 0.22274049840782179, 0.14253805057545255, 0.017894108987089635, -0.009648464940467814, 0.04611056324296626, -0.18875012198732202, 0.2076940575979857, 0.15636261387317144, 0.03673065974485745, 0.07048768208321018, 0.05925298308048566, 0.15963502019654588, -0.016844034216053176, 0.1938056188707374, 0.0293914022062783, 0.04122595933783676, 0.02752391539330037, 0.07429083028104617, 0.27012860838602865, -0.08342249076426397, 0.18553772555392706, -0.007217275780996469, 0.04152265263460864, 0.010612634873859895, 0.1388559615013306, 0.18308323838603344, 0.07843686348084075, 0.03670072177867947, 0.0408299695966403, 0.012838704496837607, 0.17568647861900472, 0.11367738558973535, -0.693103819731707, 0.05770436672126441, 0.056711480142349495, 0.015238007145526823, 0.14792165184091038, 0.08079996036838498, 0.11699796536902009, -0.042891623687407954, 0.06644340009049492, -0.019775655489770092, 0.10601706538402302, 0.10217309515297425, 0.20164649307496396, -0.04270803752030987, 0.0390691826173883, 0.11474007667311346, 0.13857709506416535, 0.003563840188361138, -0.05477054741128916], lgrat = [0.006754651029731023, 0.023523822271245293, -0.00124288127695392, 0.018758079800865312, 0.015269521441937483, 0.0204683850717686, -0.00665225076014907, -0.027459754271291676, -0.007320541663707196, -0.0038465622698550775, 0.019392496149271063, -0.023494732404499633, -0.006964916798429746, 0.027257379468710072, 0.012443488658675724, -0.06507664135593556, 0.006472150966433478, 0.006540184294621533, 0.024572813159845903, -0.0152659832297747, -0.006161456747118473, 0.012137332023562495, 0.015805623180420895, -0.037052836931387854, -0.010256713927171516, 0.0132319896113885, -0.001434342558317324, -0.03355329399759189, 0.0041018082901661925, -0.001889227130196806, 0.023112754217860684, 0.010890894180367131, -0.0010619600101372233, 0.0002912480941589185, 0.02427924691261365, -0.0030432353183861946, -0.017023793347299546, 0.020188410143022858, 0.00014964355176753274, 0.010164778051756458, 0.06315182233234956, 0.016622393556580194, -0.005493619977577376, 0.0329185666332904, 0.03028485636903451, -0.0272240641715442, 0.03393040720833614, 0.011809188388802815, -0.008007310890415242, 0.018119153896443495, -0.033143089782155355, 0.021925703072777553, -0.07491098775992325, -0.010870752933058522, 0.011434684163888783, 0.029922715791815598, 0.01313817156094561, 0.021907973626658753, -0.047159527492404575, -0.006681479725361559, 0.008765056554968726, 0.03249793808962712, -0.06984877059256778, 0.022979126491375974, 0.039931483163817276, -0.004180525590744754, -0.007392019575232849, -0.023608282518278546, 0.02298470036403784, 0.01664698794650805, 0.010949429836409806, 0.06754842550073568, 0.04082760664745894, -0.0027731180976579947, 0.03939085400047403, 0.042662689662793046, 0.007344465816487439, -0.017765607084953214, 0.045775868769312576, -2.191831906364601e-5, 0.025838621385830072, 0.016371513360283366, -0.05078058987686791, -0.022083329967330784, 0.02842173928775507, 0.017787966443517482, -0.07267441607037649, 0.007772273769695994, 0.03730508514482977, 0.0020643928622332943, 0.02019114188532079, 0.003269508841270183, -0.045085447937476444, -0.0013239470098230326, -0.023790138145055748, 0.014541892577305277, 0.025516064147190615, 0.008733217671847478, 0.015644936966797855, 0.020138079742302976, 9.846630974610416e-5, 0.034626038626490205, -0.025929630697819294, 0.00838736833056518], gpR = [0.0, 1.4646942539274395, 0.0, 0.6638918860059945, 1.3782674121478262, 0.0, 0.5094643556776847, 1.2946272418231775, 0.0, 0.407504712841991, 1.0814206575551628, 0.0, 0.4246507735073065, 0.9609627491148768, 0.0, 0.43747212781643463, 0.7504662782898598, 0.0, 0.36435052613450347, 1.2174743658306253, 0.6341453566665631, 0.0, 0.33813489825032916, 0.9698237386360932, 1.6049535355749234, 0.37945260719873086, 0.0, 0.26446008121043824, 0.951335341912249, 1.6158283711138293, 0.0, 0.2566853762943416, 0.691778876633495, 1.6259830267877182, -0.017984684508631464, 0.0, 0.15596972696781375, 0.633438387191531, 1.5768731912673233, 0.0, 0.25478932589064557, 0.4600797285454915, 1.4777389443836824, -0.4793167066473544, 0.0, 0.20319288702820965, 0.34765776215058025, 1.423130317111592, -0.5757442276586288, 0.0, 0.24821029855028642, 0.03880475720905336, 0.8519378888477824, 1.260336981621879, -0.9714678019206454, 0.0, 0.20871269290453498, -0.011924722235272205, 0.7289285468055552, 1.1560312311052179, -1.1268038453989704, 0.0, 0.22230086430595716, -0.276311262515059, 0.28633356014230554, 0.8932536104973676, -1.4783914865464678, -2.1014807290249236, 0.0, 0.2559809501023541, -0.4128602130675738, 0.13733979447756997, 0.7876842558529131, -1.6150318865804634, -2.1786566285073503, 0.0, 0.29561152786020317, -0.9583515996791532, -0.26484489783204607, -0.3105712541220219, -1.4545386167059342, 0.0, 0.3976702609296046, -1.5550091398876873, -0.4149351994825733, -1.5394178671935914, -0.7803266774775512, 0.0, 0.5419580918660678, -2.1972808921142057, -0.47802302289984944, -2.3009388184111694, 0.03613899008899913, 0.0, 0.6635090154713948, -2.619731838003469, -0.5463037491304638, -2.7194504714732055, 0.300505000560033, 0.0, -2.777854690567575, -0.4913945054875261, -2.835716255437303, 0.5213598368147743], gprat = [0.0, -0.0034716770566746396, 0.0, -0.09116517284575308, -0.0007339719602380961, 0.0, 0.04902537004391953, 0.004854778881082474, 0.0, 0.056462834199275676, -0.010685964692165678, 0.0, 0.03857916587472803, 0.01671460657226576, 0.0, -0.06665143853444921, -0.012532732489001979, 0.0, -0.046813100383100714, -0.02027453090753465, 0.01090208262336323, 0.0, 0.024875267551829602, 0.05181336562928233, 0.0034728866701888915, 0.005858203730589871, 0.0, -0.011164456870642745, -0.007649274416677965, -0.0071821281610404296, 0.0, -0.05065545635340829, 0.0389896696718578, -0.038281952325738465, 0.012447628592765339, 0.0, 0.017346423068006177, 0.005844888050510621, -0.007550070405669381, 0.0, -0.0635530341920982, -0.03797343503586571, 0.006502619530407551, 0.021508336000583654, 0.0, 0.03305100266917006, -0.02200760575768778, 0.007047726931538827, -0.0047528953172207575, 0.0, -0.04329084115111736, -0.012552861815237806, 0.0007226814006167274, 0.0008196239104421435, -0.006716662694092968, 0.0, -0.012152722121581751, -0.04763677621736219, 0.0006242435238335971, 0.04182037058976998, 0.013471288760428954, 0.0, -0.008879878566882054, -0.08869122352802337, 0.00015461003721584912, 0.04428676133493627, -0.01423916197810634, -0.22955710955035238, 0.0, 0.034630508565630526, -0.05323889331312012, -3.42438230448356e-5, 0.029659671493687624, -0.025659661188996995, 0.05471941541665977, 0.0, -0.02051485620186656, -0.07558873889265312, -0.00035342184652212397, -0.04374222586965187, 0.1873228820306745, 0.0, 0.029011977508440024, 0.041089872759870326, -0.0004384845568613384, -0.02133015649101913, 0.08208547474593782, 0.0, 0.042459396586266705, 0.13563141702648004, -0.00045855629552230557, -0.028027243692384116, -0.1482119224114227, 0.0, 0.04935222795642565, 0.1337738440674926, -0.0005133482874867727, -0.05115485910156029, 0.04490043481758198, 0.0, 0.10229308308419213, -0.0004733030831111208, -0.04455096053060524, -0.022167206834594062], dRx = [0.00914187984618979, -0.09292689330876898, 0.035102928598770115, 4.2722494033183155e-9, 0.019307534548149242, -0.1934441855611287, -0.0033016776587323766], dRy = [-0.07810756821126588, 0.02275619846858615, 0.06531324275037954, -1.4182394660340997e-16, 0.04670387251884041, -0.022579548689397388, 0.10746483048485644], dLx = [0.01325259913142778, 0.047747175985821476, -0.04433937547869218, 0.05744472043607049, 0.002835254584775533, 0.1166086910149789, 0.07223761486277346], dLy = [-0.06352118254356899, 0.045547135071024654, 0.08760070603876528, 0.027172734321977136, 0.016190109621464575, -0.058239910264999126, 0.051543881231571456])), retcode: Default
u: [0.011740799277281649, 0.023407253443380682, 0.03461857591030186, 0.04540781433468824, 0.055284951510162744, 0.0641752814766789, 0.07158652179445742, 0.07739813480132635, 0.08149394303584623, 0.08425598506258375, 0.0864050723408626, 0.0888841795511788, 0.09237889986821626, 0.09659139282491759, 0.10023702026448539, 0.1014599782323095, 0.09915009109718072, 0.09373165227694381, 0.08663922873402581, 0.0791091412740873, 0.0717772839043766, 0.06499501531211829, 0.05871135341338871, 0.052640805167854056, 0.04654271782254059, 0.04053825089434741, 0.03441728488148022, 0.028570623319491388, 0.022615571846603125, 0.01696835586674429, 0.011184981557027381, 0.005654256833286078, 0.023744121850675922, 0.04709566000828068, 0.06993003901809307, 0.09158589169579405, 0.11181979444896628, 0.1297852680072809, 0.1449615898375864, 0.1565746243408644, 0.16441928402956255, 0.1691697238381448, 0.17254105871611922, 0.17689500180751414, 0.184192444706231, 0.19393969169892794, 0.20300982094342906, 0.206408220644598, 0.20131980215377293, 0.18919432525085284, 0.17377979275107355, 0.15799254612649602, 0.1430071334497441, 0.12953878692990262, 0.11728764915629704, 0.10532757218360611, 0.09322389864611555, 0.08099639501351931, 0.0689467213357355, 0.056924816196081154, 0.045332672500522336, 0.03372749024471816, 0.022490060080343325, 0.011145720845811636, 0.03597133074244788, 0.07162068343561621, 0.10626567748792838, 0.13957671818370476, 0.17056742404343564, 0.198499693761446, 0.22202164194736523, 0.23971945446589724, 0.25058555606220195, 0.25545290725356384, 0.25765291878989843, 0.2623051792460939, 0.27392970684671697, 0.2922865590260518, 0.31139526806609547, 0.31951808380486113, 0.31007255386198873, 0.28799562197646555, 0.261473303681513, 0.23582085099911246, 0.21259540349035044, 0.19291880344185794, 0.17563021191271902, 0.15825906038670656, 0.14006515307731202, 0.12156279817570535, 0.10322481320401944, 0.08533690237239874, 0.06770001167871167, 0.050599501908283745, 0.03352469711208726, 0.016803442986290034, 0.048778058195223725, 0.09701454939796997, 0.14435108880894904, 0.18984002983389345, 0.23276494828371486, 0.2717647302525631, 0.3050496356946281, 0.3297412312471698, 0.3427373145697878, 0.3439962521999562, 0.33993448191329484, 0.3416050317681516, 0.3580694489242088, 0.39054528189713283, 0.4288777250112743, 0.4470044604461555, 0.42943107415259457, 0.3912166203202661, 0.34935426833319533, 0.31114281786675496, 0.2787744076019974, 0.25412203856247306, 0.2337979296396972, 0.2118052879397978, 0.18721009997572507, 0.16202390662959254, 0.13731512713825966, 0.1133181059781801, 0.09003487838292236, 0.06709892896892047, 0.04466582544135974, 0.022220917540371227, 0.06201057561278756, 0.12367959923330453, 0.184267791893436, 0.2431270189041766, 0.29906455512967245, 0.35079825115158403, 0.3960839965371489, 0.43008099139918177, 0.44482342784121137, 0.4357923676873259, 0.41589404793180634, 0.4088382772325872, 0.43037493811282584, 0.4854606203696421, 0.5564751750774762, 0.5902073993812285, 0.5562367991510015, 0.4948313290611106, 0.4369248353251264, 0.38475626442883143, 0.34210453735466606, 0.3129169437357649, 0.292041313590412, 0.2662665861435758, 0.2343552962802507, 0.20193651555766448, 0.17074372213698458, 0.14084047376155312, 0.11187479269374256, 0.0835766168708578, 0.055502221272129816, 0.027770774327795577, 0.07584310907884464, 0.15142031171808656, 0.22636951146511594, 0.29962932604626985, 0.36993779071045657, 0.43582966132189604, 0.49490307296186187, 0.5410216826357448, 0.5584281658677924, 0.5291416869906163, 0.4789619826435519, 0.45517879439650444, 0.4801234629575914, 0.5661252325395699, 0.6753502871702716, 0.7064058146459545, 0.640369238127308, 0.5665749119712533, 0.5162981356358578, 0.4614635624651729, 0.4096057020582337, 0.3727435635428561, 0.35086686751248813, 0.32098927922177056, 0.2800955716378296, 0.24024499781805533, 0.2028949912872488, 0.1675387781071514, 0.13331667184563067, 0.09967936127401371, 0.0663918581182909, 0.03313766906706339, 0.08993121792906052, 0.18015308715538308, 0.2704199966261521, 0.3596469475185854, 0.4457956914289377, 0.5262591530309194, 0.5960314658664425, 0.6489671905640287, 0.6681033133005131, 0.6090232607292817, 0.5165259234514319, 0.468792292041799, 0.4848504615593178, 0.5838983892058006, 0.6864907406764157, 0.6300653176221612, 0.5377058090937863, 0.5202005623313178, 0.5577155270241648, 0.5409530251149546, 0.4917803018219084, 0.44164670599603906, 0.41190669833377697, 0.37409490829144837, 0.32202019930982706, 0.2756881208701766, 0.23317848400442437, 0.19317485506434698, 0.15423669911835844, 0.11564799350588308, 0.07714067893144243, 0.038623595044961635, 0.10392669833934967, 0.20899005220165867, 0.315781838040999, 0.42331342588994353, 0.5281228340459635, 0.6235505674839752, 0.692614007576435, 0.7205140542277476, 0.7220501637812096, 0.6350850764795525, 0.5095895287014139, 0.43360143082632824, 0.409696231279394, 0.45958547528347476, 0.47597830516229744, 0.3444919450890259, 0.2493756366800971, 0.32329684216542787, 0.5076083194005964, 0.5840333980361254, 0.5744350858092637, 0.5193516734371711, 0.48286449862295483, 0.4266842350483343, 0.3589529445168609, 0.30736707991246054, 0.26116524721283696, 0.21744187144637034, 0.17457290600765993, 0.13152432653983614, 0.08806693544538852, 0.04416521326414802, 0.1168774288926631, 0.2361957908527984, 0.360042767985659, 0.48901970237883297, 0.6194237896570038, 0.7374140657138769, 0.7967749939493682, 0.7445741881878755, 0.6779390670994971, 0.5678272583497571, 0.4387030634051404, 0.3362434748056143, 0.25964610041073205, 0.26626261731824913, 0.186863510903804, 0.03956465146547993, -0.02901261298718745, 0.07297064946593046, 0.30523863500958015, 0.4584615586644475, 0.5482387154899756, 0.5666278672692755, 0.5761121978143109, 0.48383124315102, 0.3887940844954453, 0.33277339571603487, 0.28525336059916284, 0.23957238099653444, 0.19428601284216185, 0.14765775277701523, 0.09947669858038036, 0.05007959987203, 0.1274930204804091, 0.2587050098321326, 0.39756825753948105, 0.5482192333418886, 0.7135579699776731, 0.8782361307767216, 0.9456219068246555, 0.7668406817568939, 0.5814854373631941, 0.43469231341639447, 0.31141340751904945, 0.19606403068042128, 0.10012553218975997, 0.08786295712493496, -0.01647208636618188, -0.1531770223845202, -0.20089198617303078, -0.12385087698134542, 0.04503433973990725, 0.1800418457817697, 0.3534226559946101, 0.5442948315877221, 0.644851854054383, 0.5147899630672643, 0.3949965419812289, 0.3418043483622979, 0.30074324140665426, 0.25853549852307794, 0.21395504574070362, 0.16494805619599323, 0.11212477964461166, 0.05673114651990108, 0.13445012288634167, 0.2730731712355716, 0.4205103383580954, 0.5827364397529283, 0.7734783247578234, 1.0021590966071767, 1.1166837223795987, 0.7889992198056845, 0.47022914122809334, 0.27962128699210526, 0.16453695529381776, 0.0736435485967907, 0.027689529278965078, 0.05118818127554018, -0.03259735577166631, -0.15558754603852937, -0.20355148563608405, -0.19291314125228742, -0.14473551907995227, -0.08897035220953749, 0.08050146555708516, 0.3599654401330304, 0.5278193773663067, 0.4379383743950092, 0.3484024470009981, 0.32056216680301, 0.30381456045545746, 0.27565783577715874, 0.23580399733173987, 0.18531682014076553, 0.12733250876585256, 0.06478447124392056, 0.1372692542624231, 0.27792480210702414, 0.4252534799419204, 0.5821540711456563, 0.7556198393640147, 0.9642880703397682, 1.0725405872802907, 0.6788887123503451, 0.3184404797550281, 0.11973420189901277, 0.04141076304719963, 0.032150004276648776, 0.11845684563218183, 0.25456827058381837, 0.18490583569817287, 0.09296297237852123, 0.02125983929672036, -0.0970273200060449, -0.21423700357402642, -0.2602160802757338, -0.1467258297035978, 0.10217113983356017, 0.26510129376663405, 0.26592142830824694, 0.25783779606043916, 0.27742847056980136, 0.30412440240337507, 0.29999503616993556, 0.26616521299892965, 0.2126013883539076, 0.1471996216764749, 0.07514380572429007, 0.13677945053735668, 0.2755704752514122, 0.41725124869819596, 0.560052369354039, 0.6989632669888645, 0.8195986472369973, 0.7994437584680418, 0.44945933072359334, 0.13481293896755167, -0.014637048814191065, -0.012597915062824176, 0.12155873503240273, 0.40891604841483004, 0.6396305996294707, 0.6365196372527286, 0.5302225856494431, 0.4647159603391602, 0.15979283399605856, -0.1659680789381296, -0.3050423883253698, -0.2525074823239233, -0.05716693482498252, 0.06988784186970456, 0.12704973760713303, 0.1826636909942278, 0.2513366172529059, 0.326871121370821, 0.34829885371191527, 0.3149885532872085, 0.25184040818915093, 0.17402837384016417, 0.0886995105398454, 0.13431613379050672, 0.26967686870390095, 0.40457472487533314, 0.5310145297465461, 0.6288646265323926, 0.653325379593833, 0.5283125377705731, 0.24517557116965338, 0.0009110922163529749, -0.07684313413302174, 0.036383123377595486, 0.36857435807971656, 0.6034957655551518, 0.18817829434724895, -0.08787482198002144, -0.13539622759395195, 0.0510078515526164, 0.2035806364076588, -0.028416758522452634, -0.2094488615300542, -0.21596249433655537, -0.0632301492596666, 0.018725888804480225, 0.08922580980658326, 0.16978691570914944, 0.2769540108945605, 0.3938195252985277, 0.43235485436174104, 0.38739753344142347, 0.30495581915927744, 0.20858721972781383, 0.1057721067854284, 0.13060788278499025, 0.262256369998166, 0.39293277118113973, 0.5101923390911968, 0.5815633439703021, 0.5542192234704227, 0.40039645221091297, 0.17201201972546282, -0.012859079644431538, -0.0341817206494773, 0.18552031778157754, 0.6852300394311526, 0.14093331150101082, -0.3462573387459552, -0.5762949316431282, -0.5703093909114605, -0.30835928552912556, 0.21535977740188839, 0.3593536807957688, 0.030566979432152794, -0.07158551283715105, 0.0466500830225072, 0.09360654274613285, 0.14854887495223992, 0.23085331433779827, 0.36109200121662094, 0.5038034703359375, 0.5460758536839116, 0.4779695884290882, 0.36904125815527206, 0.24974712258865042, 0.1259951631866137, 0.12561739903201313, 0.25275038235435404, 0.38176472511935877, 0.5051912736116205, 0.5914260681309564, 0.5819252547465796, 0.451037827483078, 0.2655702353975981, 0.10689315658436181, 0.10338396738264949, 0.3518138493298373, 0.7652265403882649, -0.13008559139884, -0.6024585501190951, -0.7955759364585018, -0.7496667999404116, -0.4116603481309789, 0.40019315380175585, 0.5777097970595044, 0.0922306447532076, -0.07161795001564213, 0.07624582467951593, 0.19963018502255603, 0.2798675227438109, 0.3572070596280628, 0.4832474815723686, 0.6258872887336611, 0.6661318817946713, 0.5761723133448239, 0.4401700757734394, 0.2958971753782058, 0.14878341863486547, 0.11875741654666175, 0.23913754035705095, 0.3627348743158126, 0.4925551007875814, 0.61666617231436, 0.6925309908085846, 0.6676022412013977, 0.5338814470622186, 0.3196574937360067, 0.23995733557410634, 0.3723651660344116, 0.46642027908257244, -0.24772852592526448, -0.6552822669954885, -0.8163139403741214, -0.7416611004427649, -0.3726199856619421, 0.3989725659606416, 0.09899506608025513, -0.22707909406183635, -0.29131724418872595, -0.08107214879434338, 0.26055630113489014, 0.4576671825183744, 0.5160945962253548, 0.6020623612832401, 0.72496421335291, 0.7690684124329653, 0.6722154920804223, 0.5156181914832019, 0.34610096404512963, 0.1736048827065366, 0.10981924001921396, 0.22022372899191667, 0.3320335001447026, 0.4491340685096865, 0.5688472924167585, 0.6757509925252644, 0.7579898843049685, 0.7561090816813918, 0.4367615422828357, 0.24411781006051764, 0.2254836809432866, 0.24442729303173527, -0.18580916608267148, -0.5124988011330409, -0.6522094282557132, -0.551586865202056, -0.17548224884861066, 0.19440575791207595, -0.18806839486818236, -0.45026529187549136, -0.4674583137591086, -0.24481390872492803, 0.18881072498216273, 0.6214723510150092, 0.6341858301048591, 0.6906309862001098, 0.8144363224404895, 0.8709241557357796, 0.7746061534297876, 0.5973455146091664, 0.39985720050138307, 0.1997637846757324, 0.10001188128188761, 0.1993188531505042, 0.2971577375883482, 0.3917422245578277, 0.47478534359561864, 0.5354300074629931, 0.5723274613282905, 0.5430187406946261, 0.3410641365794596, 0.15748499188365542, 0.12257824079594408, 0.23708263403836238, 0.18071375930254693, -0.14684835895296963, -0.3045898296964345, -0.17651691617335366, 0.271135498696442, 0.1348234619256648, -0.2924168596474005, -0.5116837824406226, -0.5129333588086381, -0.31351048962855477, 0.08189320715441008, 0.543815606384287, 0.6542471333715346, 0.7632315812471818, 0.9451542858437194, 1.0421332093536226, 0.913081200385349, 0.690822162987202, 0.45578730836700393, 0.22571563399219122, 0.09084800989427162, 0.1802390905546616, 0.2660842433913035, 0.34290274516700875, 0.39885378540998434, 0.42341306122099837, 0.41494364839845993, 0.3606934198057994, 0.22519615785275943, 0.09056542560257011, 0.08909439046126713, 0.24238894652382695, 0.4640880240472887, 0.27157254720746044, 0.08412662789077348, 0.12935360689497274, 0.2876348668614447, 0.020391966457239234, -0.2599366937507104, -0.4114232861692622, -0.4076609909733082, -0.2471130682493982, 0.06157889525112424, 0.42510516904911466, 0.6174968273712522, 0.858561207307675, 1.1854025313470529, 1.3385800839325117, 1.0951578282474783, 0.7879624166026948, 0.5062803398423457, 0.24755596624397844, 0.0831438374349162, 0.1646417784513752, 0.24188650208628357, 0.30880587514017926, 0.35405224148301534, 0.3666603815911631, 0.3483462822100439, 0.29973066867776743, 0.20605411539047622, 0.11716088732538228, 0.10175482785836316, 0.1153248506879961, 0.09764839641094722, 0.04543940106942927, -0.01919757832883019, -0.06253089094567933, -0.02953372951146116, -0.07248908263788387, -0.10516409932341361, -0.14701662698755125, -0.14107090737177688, -0.035321624548407926, 0.1711515575393018, 0.41252470873619274, 0.6152020541127629, 0.9628132461257259, 1.5096665465923214, 1.7168245095645054, 1.2468093365319899, 0.85003201187929, 0.5339750117108281, 0.2586645969919083, 0.07703529076674688, 0.15268004817512346, 0.22477211899814037, 0.28885772101585244, 0.3372305168916873, 0.36226227732832045, 0.36742967827342116, 0.34057063442493424, 0.28248330685664513, 0.2349617649412155, 0.18619622766832206, 0.0788501151443985, -0.060145093125315026, -0.14519251875147815, -0.15561258020251068, -0.15557551895633356, -0.09655888992147492, -0.013341100625781801, 0.14615827293121966, 0.2510705445499911, 0.27617892024018365, 0.30935475243935123, 0.4088712555768644, 0.5257447038155407, 0.6816784851409762, 0.9842062958865317, 1.4042211874143768, 1.547250621029363, 1.178100975053413, 0.8218271977805338, 0.5213911922857672, 0.2535801616665054, 0.07225368974609028, 0.14373733685108214, 0.2133705191554651, 0.27932292149035054, 0.3388511715563873, 0.3900990537287549, 0.43128367292938846, 0.43640515574483885, 0.4213529789730789, 0.4289408202074615, 0.36879879874138843, 0.18991374274472797, -0.009922216651786928, -0.1122320945174091, -0.10740798316379645, -0.05729620725725304, 0.016852422018946298, 0.11747545004639241, 0.30760582277222664, 0.5192838379880825, 0.6576170243343784, 0.6926726819053327, 0.7564461802584981, 0.7662299955019425, 0.8350664617419677, 1.017238837380643, 1.2058477046656502, 1.2296316374467755, 1.0023214662577096, 0.7332729061725022, 0.4768949565209677, 0.23465461962431475, 0.06822319650764887, 0.13647015715110808, 0.20484199424133426, 0.27380126382893405, 0.34420428628794897, 0.41726081326582554, 0.4891934184812144, 0.535770035400743, 0.5863431614150242, 0.68171274593807, 0.6882342358451332, 0.48010365129069715, 0.22721362942580098, 0.10229418692415704, 0.12070191853634639, 0.22617458116251177, 0.27917395053801725, 0.29561314099080654, 0.31239605403576565, 0.387373727741733, 0.5623312245259913, 0.8062612254146089, 1.1030312821826609, 1.103053601233787, 1.0512711927599914, 1.0729604103804484, 1.0748152396730728, 1.0077962432415584, 0.8385928472301846, 0.6318762066215846, 0.41914615519225834, 0.2084615201670309, 0.06427574122987566, 0.12921536902150701, 0.19583942725668343, 0.2657771203766418, 0.34128167879119153, 0.4243931811037323, 0.5135121765201128, 0.5992307208959586, 0.7238725775440622, 0.9311640611423208, 1.13333209160117, 1.015886495103459, 0.6414259697997328, 0.45934420629594025, 0.47216657880382407, 0.6584880857055625, 0.6832275559877065, 0.5447081415522854, 0.371441507708573, 0.3421328297868078, 0.49790724738935127, 0.8447704675453362, 1.2629355666843023, 1.370562302200551, 1.2011020905887435, 1.0719048586877713, 0.9700223233888957, 0.8545160719309562, 0.7062707422359101, 0.537490846183433, 0.3601900220573925, 0.18032187714454728, 0.05969189386090727, 0.12053672206522957, 0.18384958891631886, 0.2516457744077659, 0.3263043021877181, 0.41013791634835184, 0.5043976876606447, 0.6108873194970486, 0.7708043153811833, 1.0158985482724774, 1.2867478501759715, 1.4051048621640505, 1.024518941398886, 0.8321736090351552, 0.8073102862926149, 1.0498085856401755, 1.068583430459721, 0.7755896127046986, 0.4875677919563049, 0.39518846150608306, 0.5049357258650364, 0.7835071351310239, 1.1261417426237224, 1.2365111304141347, 1.1076157577113912, 0.9655310802402054, 0.8458940751727324, 0.7252659145560871, 0.5940264311960413, 0.4525879337290432, 0.3044714992463413, 0.1529157815052425, 0.0541476945052795, 0.10951341784254157, 0.16768723683003792, 0.23043644196604957, 0.2999722524762314, 0.37876118255796554, 0.46949715446087337, 0.5766215124997196, 0.7238516430512116, 0.9194350380476981, 1.1039108126591433, 1.1787155423014297, 1.0798005642962707, 0.9757233914039357, 0.9059590579517603, 1.0062241618940844, 1.0346614850358533, 0.8233976664803571, 0.5752372121591277, 0.46944078841927833, 0.5232167552756953, 0.6886839336604221, 0.8808532354925613, 0.9538671607609658, 0.897053388258114, 0.8048605096356338, 0.7067858747774505, 0.6030744972642064, 0.4923882280735732, 0.3751064616553959, 0.2527113552872722, 0.12709117772263345, 0.04733609634302274, 0.09596862160310442, 0.1471114825898625, 0.20249581411217812, 0.2638576382430428, 0.3333796492213875, 0.41344006106035064, 0.5072290719137402, 0.6223332417728136, 0.7540526547794251, 0.864925223245621, 0.9173598897419676, 0.9109316099441063, 0.8764740206428605, 0.8214575064126989, 0.8219917449689441, 0.8190972352459135, 0.7208420825903951, 0.5744535611908302, 0.4935863087287312, 0.5073044542871514, 0.586048573151011, 0.678442900346468, 0.7196682587029709, 0.6956928411718757, 0.6397541400977125, 0.568040555144003, 0.4865561405634229, 0.3978026023705422, 0.3033308558911176, 0.20454905343388877, 0.10296651808051537, 0.039446386062188525, 0.0798840323272986, 0.12262490231605322, 0.1687159011607984, 0.21971015888315412, 0.2770066011097526, 0.3420539957412434, 0.41608995102677987, 0.4995629691345704, 0.5852910028186902, 0.6552460089806107, 0.6953130611780485, 0.7078432297142639, 0.6995058459205266, 0.6698894712905431, 0.6470494939837418, 0.6261416134606288, 0.5741843484127451, 0.4983632017663962, 0.4486646013496699, 0.4455081328821863, 0.4772983729483471, 0.5178265672777362, 0.537390965710756, 0.5247266170269193, 0.48888917353461864, 0.43809641158351953, 0.37727786899152155, 0.3093821257754425, 0.23630604671984476, 0.1595380651539699, 0.08035174170974382, 0.030452649634381258, 0.0618202214292022, 0.09475146676756152, 0.1304009109229419, 0.1694517692567023, 0.21299054318037056, 0.26151919927453393, 0.3151394677188973, 0.3723944030311986, 0.4280427209148163, 0.47361697604774716, 0.5026190297230286, 0.51566690598536, 0.514679473501894, 0.49979013815310075, 0.48036544529966296, 0.45891425876852504, 0.4268450103014366, 0.386943793564951, 0.35846595173249335, 0.3516674857418336, 0.36257271827220267, 0.378668568413925, 0.3858458539233721, 0.3769457904842707, 0.3533073312859031, 0.31846665065151303, 0.27546340174687495, 0.22654028029824816, 0.1733563329257617, 0.11715659819740544, 0.05905089874185961, 0.020791647597109546, 0.04204588678187551, 0.06455611297313335, 0.08863375400496434, 0.11510362441671508, 0.144151222635983, 0.17618879965545045, 0.2107421389830079, 0.24648806401491694, 0.28037141722807507, 0.30826940910083195, 0.3270531209277792, 0.3364583328743249, 0.33713365184828464, 0.3297021150171326, 0.31755445273395866, 0.30254027654645593, 0.28332241421215504, 0.26220647073601444, 0.24655907817122036, 0.24084484091794311, 0.243584404935002, 0.2490552248221919, 0.2505896881000103, 0.24418797115963606, 0.22937793194678271, 0.20743417273240444, 0.17994387937537834, 0.14831440483032735, 0.11365016987888284, 0.0768861581383881, 0.03876721381089739, 0.010479796916539648, 0.02133693485316879, 0.03262096505355281, 0.04488102721892933, 0.05809679965889468, 0.0727169334124771, 0.08851439907275792, 0.10544862317856461, 0.12262089031326458, 0.13872379402294369, 0.15202807220168213, 0.1612366978767627, 0.16605876545178502, 0.16668744730825868, 0.16355320097651488, 0.15784505114355166, 0.15043336269160282, 0.14144684559614557, 0.13213577230598358, 0.12511303743943342, 0.12200365641138758, 0.12227302876375128, 0.12368454770326844, 0.12356034680530611, 0.12012356650770149, 0.11289156624228332, 0.10225696209917408, 0.08884899913264098, 0.07331837948895242, 0.05624221695547059, 0.03806546063677384, 0.019202287142754283, -0.43230173704689745, 1.1663147599663366, 0.006945636780416822, 0.013899460702844495, 0.020761027714323064, 0.027558246040056526, 0.03416506479369166, 0.04053814740295494, 0.046536221106907034, 0.052059034219816, 0.056977488372953265, 0.06121110673275743, 0.06470014144747364, 0.06746949700131222, 0.06959322036479738, 0.0711049606839432, 0.07200575934080133, 0.07225429048616128, 0.07179588609638016, 0.07059572981786354, 0.06867595955607388, 0.06607511093507647, 0.06282088817286342, 0.05897929242047636, 0.05463666033962628, 0.04986086666758456, 0.044767081008797845, 0.03942649549226162, 0.033939783688756206, 0.028348326512567704, 0.02270734382969346, 0.01703834991766219, 0.011360571981293916, 0.00567913896830787, 0.013955112306106946, 0.02784306069113607, 0.04167677439461655, 0.05530144232096972, 0.0686468586701857, 0.0814889753461283, 0.09362955791342163, 0.10478661625601864, 0.11472389671234448, 0.12323439058999859, 0.13020388068819955, 0.1356787367210958, 0.13987920015950278, 0.14290712312433484, 0.14476305402969705, 0.1453068540163182, 0.14441294137489716, 0.14199835136232355, 0.13811340658684426, 0.13287077922375723, 0.1263032483162823, 0.11854809456554685, 0.10976600255348025, 0.1001298703550254, 0.08982607332974155, 0.07907593737840676, 0.06801997768074172, 0.05679620793601466, 0.045473106829841084, 0.03411315374665038, 0.02273849999700997, 0.011369731514967693, 0.02098393469317883, 0.04195703664621954, 0.06279748079325985, 0.08345648287892031, 0.10369612956164616, 0.12328392729167752, 0.14182099178424548, 0.1588871827980784, 0.17403611865693044, 0.18691857686969918, 0.19731351806182265, 0.20534871841101732, 0.21148646412667707, 0.21599883230086614, 0.21893303365996275, 0.2199295779230343, 0.21862974634991775, 0.21495149719716755, 0.20901667819469344, 0.20107739095964908, 0.1911028286295335, 0.17928771961945936, 0.1659005013964898, 0.15118263192258263, 0.135480221576733, 0.11912329929219287, 0.10238480570099921, 0.08541497778479902, 0.06835068725895818, 0.05124675364368054, 0.03415463493509356, 0.017067499959286005, 0.02811617239255015, 0.056198904739247435, 0.08425219090509233, 0.1121055600317608, 0.1395812850149482, 0.16627711878014484, 0.1916824267047734, 0.21510367132617253, 0.2358154198913679, 0.25316460448727257, 0.26680316556120337, 0.2770906218738412, 0.2848171863752338, 0.2905784049554984, 0.2947148161221088, 0.29655654276242016, 0.2949811341329777, 0.2899567457774045, 0.2819215774870844, 0.27128737370145484, 0.25785674952580845, 0.24179492952665968, 0.22352596397384455, 0.2033890935243171, 0.18194114592363014, 0.15973832496220422, 0.13710275396902313, 0.11426937166274978, 0.09135424705782333, 0.0684608950940588, 0.045596618340688434, 0.022791022439091535, 0.03527132429187324, 0.07061069818198373, 0.10598036101873046, 0.1413380508037651, 0.1764143746146902, 0.21078787238010946, 0.24372375765712892, 0.2742413317718597, 0.30111343126836915, 0.32294099934253195, 0.33926452792627637, 0.3510955654757771, 0.35958900233343827, 0.3658651479086358, 0.37085964663225834, 0.37407088795514987, 0.37268990872476704, 0.36650929251780956, 0.3568558903682847, 0.34399630039131424, 0.3272875161455839, 0.3065964320431491, 0.2829976048325519, 0.25698198225032, 0.22933573161920975, 0.20096556925472597, 0.1722235860107428, 0.1433429232898465, 0.11449304679221205, 0.08572129357622334, 0.05707654678633376, 0.02850552919961508, 0.04245608803806869, 0.08504816271595246, 0.12791731315035107, 0.17101933346002535, 0.21419275248399341, 0.25691799600898246, 0.2982347847719185, 0.33687819997810015, 0.37088952696598476, 0.3968993792195751, 0.41443040100524076, 0.42616340492474214, 0.43370391488780874, 0.4390862051739912, 0.44338660964501114, 0.44722140236831337, 0.4468986972249381, 0.4412575822734681, 0.4322302522599643, 0.41888065076498726, 0.3997082597873282, 0.3738467111063691, 0.3442160468006351, 0.3118737498904308, 0.2775937365726789, 0.24277527398263432, 0.20768306729710959, 0.1726043051131713, 0.13769033087980473, 0.1030109413879151, 0.06853019090801098, 0.034230707222797266, 0.04952747145520184, 0.09937466595687494, 0.14976149336179573, 0.20085662849212113, 0.25257201799053786, 0.3043726791149355, 0.3547672597589923, 0.4022004542685676, 0.4443944179992747, 0.4736538623949397, 0.48963682747333886, 0.498490350538382, 0.5021751203522763, 0.5045386752020199, 0.5065534657822713, 0.5066834342023295, 0.507249979729197, 0.5069236091038113, 0.5038383802020759, 0.4928802686878747, 0.47335147030500485, 0.44243815831566635, 0.40634846162569255, 0.367555207733631, 0.32644550253288424, 0.2850355004353562, 0.24336174706863084, 0.20190526560113659, 0.16085750170894753, 0.12021381840811134, 0.07994187807051739, 0.039898836221068275, 0.056388794679761066, 0.11325657021916058, 0.17109493083093158, 0.23021729813261946, 0.29073168673591676, 0.3520283597684469, 0.4113096107322536, 0.46578220140780446, 0.5152149092264182, 0.5465042168616974, 0.5587856429097584, 0.5622569571802918, 0.5594314831296643, 0.557229227718603, 0.5570791678033356, 0.5536985049411709, 0.551995955186809, 0.558123545463386, 0.5649942893962185, 0.5588305861834486, 0.5424344325202672, 0.5090533674214471, 0.46848403044920656, 0.4235671326056257, 0.37552195892578644, 0.32741213072678493, 0.2789712634932935, 0.23099921087698028, 0.1837863150650576, 0.13723916685474521, 0.09119656080304696, 0.04552103558977261, 0.06281332085261467, 0.12634128085980764, 0.19124230199088046, 0.2581428414452913, 0.3273309518493698, 0.39781087786368896, 0.4642169177028148, 0.5199168380837879, 0.5707902778990013, 0.6033840492954783, 0.614173673288204, 0.6129959042050871, 0.6048219832617724, 0.6008184387789561, 0.5937252485295651, 0.5865186771702253, 0.5846727318345213, 0.5923935414658326, 0.6047764563655247, 0.6054251711160444, 0.596589207849303, 0.5688229763676036, 0.5305426551217162, 0.47942459213144517, 0.423716306430841, 0.36893136164101037, 0.3138482384415095, 0.2594686941986574, 0.20624245653602102, 0.15391871673099475, 0.10225848246661494, 0.05101170131666498, 0.06864241772135077, 0.1381565735320478, 0.20943528955414403, 0.2833247602972658, 0.3604848950707557, 0.43922095450410925, 0.5101454919378167, 0.5602193545161245, 0.6060230766184838, 0.6388646547605444, 0.6521797723108927, 0.6499275063527146, 0.6393156302199263, 0.6306436738310004, 0.6163432125653987, 0.604592116236369, 0.601802115046789, 0.6092246445789115, 0.6226809406555721, 0.6289669148821625, 0.6316298905094456, 0.6194043694537948, 0.5872209262885488, 0.5302596691238096, 0.46773472051547665, 0.4074699775554057, 0.3468642398967747, 0.28680744747096193, 0.22799852192049483, 0.17014235424615579, 0.11300443845661601, 0.056385443172127986, 0.07363892883079676, 0.14831617661732585, 0.2249687860904506, 0.30435542795248016, 0.3872411683594771, 0.4720972755686921, 0.5446435384013862, 0.5872924356844376, 0.626197270074874, 0.6580220860389584, 0.6750322753113398, 0.6753151935411185, 0.6652260520664064, 0.6489528954248388, 0.6240848917583771, 0.6071824441050588, 0.6022866301076844, 0.6097041239212112, 0.6242096162746155, 0.635140914708902, 0.6455964272232958, 0.6465706221488838, 0.6208841099096196, 0.5658549165165037, 0.5032718904516172, 0.4407472282677819, 0.3770188762492849, 0.3126438476136659, 0.24884890966850484, 0.1857758232320362, 0.12340716474717181, 0.061562713305682644, 0.07770015156467841, 0.15650602502337466, 0.237421624554793, 0.32085824727044415, 0.40596264734822896, 0.49081368391445085, 0.5621434650316256, 0.6024141318331119, 0.638138822581382, 0.6679564335695215, 0.6872659824929435, 0.6920582587138032, 0.6849695889373505, 0.6560996818068843, 0.6081928624877986, 0.591231535117257, 0.5827246843898327, 0.5931898084032741, 0.611377112442021, 0.6274901736909932, 0.6424486403924115, 0.6486764228823951, 0.629100586857367, 0.5855475173208741, 0.530451821662091, 0.4691363599870878, 0.4045936670940159, 0.3371340843114935, 0.26881323056709217, 0.20080649979639975, 0.13342099629869764, 0.0665765871931734, 0.08071867374330524, 0.16256210571833496, 0.2465397054806862, 0.33299915673054437, 0.4202140667351, 0.5031846381243298, 0.571120876505143, 0.611370105405537, 0.643913945442022, 0.6718185487101094, 0.6920212160753565, 0.7020552261806754, 0.7010616773566216, 0.6427112603514905, 0.5517529337142093, 0.5597147154223197, 0.5387706011546627, 0.5618901798846361, 0.5847836648284291, 0.6096175280095127, 0.6309342302136752, 0.6428188406651759, 0.6313087052345154, 0.6008732306851091, 0.5545794470980188, 0.4957961078017092, 0.4310811159854085, 0.3609102312617768, 0.2881850962903866, 0.21534419094694054, 0.14308760627525355, 0.07138512220404844, 0.08270646885922656, 0.16645651855422278, 0.252109149289295, 0.3397645709434867, 0.42709161905246923, 0.507091142151338, 0.5706266021268077, 0.6135100070724964, 0.6452377310910881, 0.6708180500538835, 0.6885402585560136, 0.7003525348091038, 0.7061526554122645, 0.658092477750978, 0.6020533411036064, 0.567710244809789, 0.5341344077768805, 0.5220373663807308, 0.5417113291449837, 0.584445033199108, 0.6175166495134384, 0.6393067070757357, 0.6382893504598812, 0.6193359658811528, 0.5797701893589642, 0.5231414872000301, 0.4574479375682742, 0.3841692522185055, 0.3069437342003254, 0.22931076652876614, 0.15232668982767733, 0.0759848983422837, 0.08372446130154618, 0.16838644221651436, 0.2547034496668175, 0.34241382712374213, 0.4286582542054007, 0.5064827774780029, 0.5691001641157952, 0.615145466495719, 0.647511517230372, 0.6684830644014702, 0.6737323063733868, 0.6580392945438708, 0.6712594937864007, 0.6490839556708082, 0.6095240168502837, 0.5648208638378945, 0.512029003142762, 0.45715050974432564, 0.46631610634487347, 0.553577070222186, 0.6073611806463581, 0.642483446081928, 0.6518201914618603, 0.6409218050696394, 0.6058480411798283, 0.5504747267062912, 0.48286027780779284, 0.4061618225400595, 0.324634409379004, 0.24244269976066232, 0.16099385269444846, 0.08028753450938741, 0.08388635778381408, 0.16866513145470086, 0.25521230469851874, 0.3436349960772286, 0.43092288527557016, 0.5094326374995912, 0.5728478944654072, 0.621779454565978, 0.6554304465406644, 0.673454884287406, 0.6642068015163675, 0.5963323476793689, 0.6517520062138757, 0.6477787009448848, 0.6160063165427827, 0.5667536391153204, 0.49686957968432927, 0.39174239627989543, 0.3433106883485461, 0.5245819146244696, 0.6041754541173505, 0.6512441007060407, 0.6684088434189284, 0.6621389576442582, 0.6293842736775453, 0.5743301670954616, 0.5049174447865199, 0.42612064209425965, 0.3412249406425502, 0.2547167572041356, 0.1689838871565054, 0.08422756942888748, 0.08323112048951349, 0.16738458370872125, 0.25341584132355677, 0.3423844075714124, 0.43227679630117877, 0.5154201505389968, 0.583398582031652, 0.6357195586898494, 0.6696780105095165, 0.6918503923236979, 0.7017025956848878, 0.6958964724283814, 0.6861639211126024, 0.6692755272144788, 0.6366864518914664, 0.5883749859550015, 0.5221556191371783, 0.43415123767591746, 0.46632920062361033, 0.5552095800366729, 0.617133314361948, 0.6614134116308392, 0.6859104906565802, 0.6807248482241658, 0.6467907713639791, 0.591432392472105, 0.52223697366675, 0.443429999312044, 0.3562002396205849, 0.2658446469947483, 0.17613041249288353, 0.08769572457876937, 0.08165860507312124, 0.16421759539661543, 0.2485981671364884, 0.33579626385779204, 0.42414335954753934, 0.507545423758167, 0.5801489297128024, 0.6416381017147793, 0.6778620396999103, 0.7048549030643679, 0.7235033663923581, 0.7327294292763494, 0.7198633810518827, 0.7009142051341464, 0.6692969209318703, 0.6266975822051088, 0.5758511197913391, 0.5322247375141358, 0.555036381201612, 0.597104251845692, 0.6374195498888371, 0.6714114414795185, 0.6952581550139548, 0.6964815878492795, 0.6574910301365939, 0.6040338079772647, 0.5375023681619907, 0.4580873568014229, 0.368743240417614, 0.27513400241239394, 0.18200699117945365, 0.09050042649661208, 0.07918755916207093, 0.15918655768405154, 0.24081344258211393, 0.3244224281920518, 0.4082661982424956, 0.48830014188478166, 0.561585875761279, 0.6254189764772247, 0.6715155451927817, 0.7053145144361509, 0.7320009815459374, 0.752217808648836, 0.7552771144271271, 0.7363467709212022, 0.7059947720306045, 0.6681775249036177, 0.6231874973603236, 0.6076724519230897, 0.6160541069382438, 0.6354559385442177, 0.6585160906914526, 0.6799304049126894, 0.6956631419429071, 0.6959374125240553, 0.6626052301356902, 0.615117668103766, 0.5528816922161168, 0.47330151831703543, 0.37975927353005895, 0.28228120624721664, 0.1861597144271413, 0.09238330263866154, 0.07594739134692449, 0.15258969394224697, 0.2305760918840973, 0.3099544250115251, 0.389386560800225, 0.4665800894438113, 0.539146402901775, 0.6039956116708056, 0.6557020357167809, 0.6963173404457144, 0.7329607174872614, 0.7623276914118969, 0.7751037822870385, 0.7612997682112471, 0.7345147370827632, 0.7012668137753907, 0.6633250350290057, 0.6578741171734264, 0.6596135511508782, 0.6671742351059634, 0.6781181197023535, 0.688174272602835, 0.6933960804459041, 0.6870708151221274, 0.6592847190004888, 0.6234626649117496, 0.572517132487053, 0.492659208076851, 0.38995835125898826, 0.2866778643360217, 0.18791737987392762, 0.0929700443366907, 0.07209886703993694, 0.14476808390478496, 0.21852240245890686, 0.2934019150228848, 0.36862169593518057, 0.44278217316662016, 0.5145367405974552, 0.5810076223391051, 0.6366743344084449, 0.682731608599124, 0.7225191023635947, 0.7494953798891031, 0.7572429956912584, 0.7517411283780788, 0.7362449060333607, 0.7154814215554376, 0.6990475993706395, 0.6905823247657541, 0.6889957253146151, 0.6911395514441134, 0.6944768824322843, 0.6958607598817373, 0.6913108485220117, 0.6761657803380082, 0.6480644552014501, 0.6219708809881713, 0.5928337908031543, 0.5167190724564978, 0.3954192801238364, 0.2857679238787986, 0.18591952594070588, 0.09168948056359835, 0.06775421469315956, 0.13602090135774214, 0.20518997907845857, 0.2754408984927633, 0.34647577188645545, 0.41769264300627906, 0.4888915698730004, 0.5563484178575434, 0.6153679878764756, 0.6660457574634017, 0.7057347776011799, 0.7293088081843443, 0.7362695538727995, 0.7340644367624188, 0.7279565466965957, 0.7177890640573849, 0.7108063767000868, 0.7050023104817551, 0.7029537719319816, 0.70421691360509, 0.7050019938697302, 0.6997980663750905, 0.6873539508235941, 0.6616960431107924, 0.6266857208268933, 0.5941608263776974, 0.5593607400252539, 0.49121635874101555, 0.37912505115907563, 0.2741838318406367, 0.17838785448411362, 0.08797533813301102, 0.0630458477219631, 0.1264990676731351, 0.190862199596829, 0.25638397102304333, 0.323196483047782, 0.3914195277452405, 0.46115471930023355, 0.5287555300587085, 0.5916007798820989, 0.6479752456876822, 0.6871767433907444, 0.7084253257410701, 0.7155055593444389, 0.7168971274292314, 0.7159514064370696, 0.7128162327956644, 0.7085884482035797, 0.7028997870929311, 0.6995602717265179, 0.6986598277812274, 0.7005677675235918, 0.6910967292542773, 0.6759184482669833, 0.6413475877484232, 0.5959154136399493, 0.5512711754219695, 0.5015406706004825, 0.4349692414293289, 0.3442906410815108, 0.25269518185397316, 0.1655923673295975, 0.08194907281076484, 0.05790834707782985, 0.11631780475101153, 0.17553185710082422, 0.23607633649443382, 0.2982882346034628, 0.362640055540687, 0.42942969035145906, 0.4965302167492112, 0.5640370664989729, 0.6276406925399622, 0.6686277944578881, 0.6885765749226138, 0.693973498594038, 0.6975539492846985, 0.7007048848536971, 0.7030487480670498, 0.6978904641333088, 0.688455351776228, 0.6764350955719091, 0.6665274433960398, 0.6604325576870497, 0.6515054672723438, 0.6427243810046921, 0.6082292086184775, 0.5556377003794772, 0.5019913483845989, 0.4442709421521717, 0.379901544005785, 0.3044730477529321, 0.2263638609134613, 0.14952610365501962, 0.07429680463534688, 0.05251271049638467, 0.10535147444707524, 0.15915301189714579, 0.21420725535739046, 0.2710876906949816, 0.3302985637718717, 0.39242269495098997, 0.45720052028850827, 0.5271599632030766, 0.5976395533655816, 0.6463857285186467, 0.6703094429225228, 0.6677099673052681, 0.6721207736243773, 0.6790589066936027, 0.6893182067117969, 0.6803207587092269, 0.6623922674729787, 0.6395310624074928, 0.621546393345322, 0.6086625869620054, 0.5972891740016191, 0.5821932514386327, 0.5551491016022684, 0.5025232462768284, 0.44608616227954623, 0.3893118247069192, 0.3296545987548327, 0.2652759734273652, 0.19872818263991818, 0.1320396379055705, 0.06584937862450856, 0.04664508201025083, 0.09380255341461985, 0.14157061271178417, 0.19071802458388484, 0.24145516011691534, 0.29439300294825943, 0.3501101449912682, 0.40906996009400837, 0.4741681698791938, 0.541419347534457, 0.5928482914221509, 0.6271775220018784, 0.6223715884176451, 0.6313304606996144, 0.6414101324926983, 0.6616496564707923, 0.6498925111653547, 0.6183884343252812, 0.5870405701751165, 0.5636370993493989, 0.5461812260125497, 0.5294474830457091, 0.5094055531209047, 0.4798801231657454, 0.4353622132024373, 0.38558227008168594, 0.3352218116243081, 0.2827729217227355, 0.22784492964061154, 0.17135149689285725, 0.11428314727146371, 0.05710551289083915, 0.04062641751906591, 0.08143637554768586, 0.12312161779162556, 0.16564786144035573, 0.20973795732588574, 0.2555601968414091, 0.30359938550803967, 0.3540360408941369, 0.4080817731357731, 0.46244368724159146, 0.5064423223725868, 0.5364525286391825, 0.5506706859943725, 0.5643277386739879, 0.5737863178234589, 0.5867056381379903, 0.5777008889310632, 0.5472978234194801, 0.5168861112454588, 0.49314895807129633, 0.4737110039958888, 0.4536719903455946, 0.4309560386001281, 0.40239915535086496, 0.36579327138850976, 0.32519902604139245, 0.28265043837704146, 0.23823711405489525, 0.19210610524522775, 0.14477368792877807, 0.09673991443617454, 0.04843400372119312, 0.034137664811197746, 0.06871188884643532, 0.10360961334236986, 0.139537416781048, 0.17635552568710888, 0.21463041055318208, 0.2543169999761913, 0.2953613117782981, 0.33756652179734487, 0.3786219134565943, 0.4134469338271141, 0.4399619990638792, 0.4589425526412398, 0.47326206802265725, 0.4810469193445042, 0.48524414172861086, 0.4776258631815831, 0.45743574984000696, 0.4341888645689253, 0.4138554364261246, 0.3953168090492925, 0.3756670940137005, 0.353969802242518, 0.32887807038244365, 0.2992160816295183, 0.2666348496960536, 0.23194295365349663, 0.19556264290906045, 0.15781737527229747, 0.11905592785809743, 0.07967365331293647, 0.039902436532480316, 0.027649335165965825, 0.05532517586763354, 0.08364439376408611, 0.11233555176904271, 0.14199598620964654, 0.1723473174340559, 0.2036655211684008, 0.23549812003099266, 0.267322009329394, 0.2975771707957557, 0.32403064752189775, 0.34552408627793646, 0.36208524444372353, 0.37405744698343824, 0.38031388137804073, 0.3813285264789607, 0.375481244579711, 0.36272866523141944, 0.3466231857588147, 0.3307495637332129, 0.3150049238531686, 0.2981588618884646, 0.27971885610259883, 0.2591306882589795, 0.2358252193699887, 0.21032966447611195, 0.1830977393365649, 0.15447108140310795, 0.12472938996606903, 0.09418269401438562, 0.0630552717327459, 0.03161534619604303, 0.02075847053676108, 0.041848733004298894, 0.06297710200068685, 0.08474227552418166, 0.10679142547396904, 0.12953597944737144, 0.15256088603142695, 0.1758262195133515, 0.19864758021175571, 0.22013528167304258, 0.23918519121981688, 0.25501337595366996, 0.26739511471078237, 0.27619580559671686, 0.2808294632792011, 0.28124393049715635, 0.27728045842804017, 0.2692187028606989, 0.25855774884559796, 0.2470587695587469, 0.2349959602924214, 0.22200374947340043, 0.20781930328475978, 0.19217725537117036, 0.17485932994618797, 0.15600844587419788, 0.13587330873465445, 0.11467875442650313, 0.09265456889703334, 0.06998615796620762, 0.04689310241261796, 0.023503268677854083, 0.014001484317481112, 0.02790586459171165, 0.04223183477731059, 0.05657103416488029, 0.07140324958029193, 0.08633807606214239, 0.10159270945534166, 0.11671900252349063, 0.1315246324897575, 0.14535418897424923, 0.15768041695495538, 0.16800711311790573, 0.17611190940408486, 0.18181562991300926, 0.18484971060591135, 0.1851531443824675, 0.18277737788437506, 0.17797280375700297, 0.17144623155807834, 0.16400801735224974, 0.15593742907111396, 0.14718056005789074, 0.13762446837323705, 0.1271343838125645, 0.11564133424712034, 0.10318537829163549, 0.08988841939008237, 0.07589522174769721, 0.06133247346593136, 0.04635299365465689, 0.0310539102200382, 0.015581137559984101, 0.0069232798162094334, 0.01407651768820309, 0.021069995742887798, 0.028406772009583577, 0.0356691554586231, 0.04321979516459825, 0.05069820283127765, 0.058231094688021456, 0.06546130375057008, 0.07227056038111405, 0.07830986370909263, 0.08340503895151413, 0.08739901765166987, 0.09020198354745278, 0.09170115293635121, 0.0918736502246695, 0.09076885206580981, 0.08851605196248902, 0.0854066604525607, 0.08176042572666037, 0.07773183663332354, 0.07333726748667962, 0.06853563534439959, 0.06328347941902043, 0.05754684583174354, 0.051347312897266455, 0.04473882470130067, 0.037776299006837016, 0.030539853153061073, 0.02307640037861835, 0.015473120252843996, 0.007753056583290679, -0.42429893249086204, 0.61175225009926, 0.7141174388340474, -7.642191235285961e-5, -5.3290773586364786e-5, 3.820282649950599e-5, -1.6815408945171486e-5, -3.609055588041157e-5, -7.064933423124084e-5, 0.00016922654940760258, -0.0002178103485836746, -6.540478687889601e-5, -0.00017794458111831154, -0.00013803058776940357, -5.1752647132161905e-5, -0.00014483901162389308, -6.731449897609067e-5, -0.00034217986345632604, -0.00018222115684710094, 0.0001765599737431031, -0.00032695476445575343, -0.00017318712994807242, 0.0005750689998954974, -0.0002265703903690206, -0.00010231462561553615, 0.0002492939463161714, 0.00018769994999211597, -5.507812968629316e-5, -3.665785344065104e-5, 0.00032277624702200185, -1.9565575288626188e-5, -0.00021494246940398045, 0.00044977624466666853, -8.46854767757318e-5, -0.00035893395927083326, 0.0005716972335069667, -0.0005814574585615069, 4.81187840698504e-5, 0.00015848829365868665, -0.00012208576306516967, 0.000681582528014906, -0.0004190321342740409, 0.00033610192522085197, 0.0008144687112588606, -0.00013387022008213277, 0.0010838454633401884, 0.0006702169353639183, 0.0001405468719616802, 0.0006479590365013252, 0.0007225516321345644, -0.0011583873305209093, -0.00019976466593075776, 0.0005078025346888302, -0.0010624077766357286, -0.0005661304867114598, 0.00019879101498878747, -0.0012324358269912368, -0.00016586308307149874, -0.0010489205289379003, -0.0006716071113022991, 0.00016139762800277408, -0.000773292981365112, -0.00021213681867645245, 0.0003746790231803918, -0.000467225183673961, 5.075916487261808e-5, 0.000450653545747591, 0.0002602443581804243, 0.00043078406251164785, 0.0002677399173264034, 0.0003441939191139128, 0.0003456356653041676, 0.0002940375134467717, 0.00012641434606179571, 0.0001828128453787766, 0.00028916646894152395, -0.00011232595303148529, 0.00016703287384186135, -0.0001732262266554097, -0.00010996067366706852, 0.00018956596048852267, -0.0006861336279049688, -0.0002033633698209574, 7.10609730353098e-5, -0.000353801931936566, 4.108544662510424e-5, 4.662887875221435e-5, -0.00020190317702657983, -1.55362339027638e-5, -2.7863797878348925e-5, 6.861977791700938e-5, -5.8049784314801324e-5, -0.00014898292902007523, -7.736902262657052e-5, 3.573069063923648e-5, -2.2865789653359295e-5, -3.293726371048673e-5, -4.438436794210037e-5, -0.00011678200248618119, 4.022042373377956e-5, -5.708614750831911e-5, 1.5187935227637943e-5, 1.1216455117751241e-5, -8.624346196686759e-5, -1.8240461604728428e-5, 3.415700556918947e-5, -0.0002471855696788279, -9.905718817772961e-5, -9.025177873923507e-5, -0.00010172538819682032, -1.9926390183731596e-6, -6.214662810600625e-5, -0.0001294718695145197, -0.00014038512466481702, -0.0001600705208205788, 7.195945819022242e-5, -0.0003780557916084777, -0.00016970389995766817, 0.0003342917451513603, -0.0002624160877819262, -0.00024802488710149123, 0.0005966980510598719, 3.9948144566257475e-6, -0.00015347935439732668, 6.660312449652611e-5, 0.000732568389945233, -3.190570917455338e-5, -0.0003827399220138335, 0.0007752452456623063, -0.00022865009157411144, -0.001613664010011694, 0.002178376854264334, -0.0016160152885830365, -0.0022808832079759507, 0.002071180841291655, 0.0001861063950375104, 0.002729528339790787, -0.001294990443404059, 0.0010990518707927716, 0.0030705247976345698, 0.0015551812510063768, 0.001166105505532166, 0.002164853164193873, 0.0031634853465392363, -8.251906552647734e-5, 0.003626630664165389, 0.002085223600346413, -0.001803553254073855, 0.0032193286272222846, -0.0019179911306692551, -0.0019669317568401005, 0.0015163733974721725, -0.0021528011406280537, -0.0012452677053411763, -0.001745893633481896, -0.0021188151495287683, 0.00010608158701262681, -0.002225050211303777, -0.0009499753311379088, 0.0011182840550224603, -0.002011840604488228, -0.0006598908101858204, 0.0007206528081609946, 0.0001863865940659261, 3.202886915848818e-5, 0.0008995266126544171, 0.000683890733279029, 0.00011329657197750706, 0.0006861882241321122, 3.56289608474884e-5, 0.00010763098849999542, 0.0004607791382971394, -0.00018639884369077002, 0.0002568782240362903, 0.00016056615141201474, 0.0001860700266900724, 0.0009847494409108203, -7.649911466791259e-5, 0.00017937992986728592, 0.0001566621665271387, -0.00024502877688931216, 0.0002505181577479823, -7.606612286617144e-6, -0.00020479864872045584, 0.00010949929697342747, -0.0002241126457915514, 7.620770668889592e-5, -0.00017194177451117373, -0.00015529467230632841, -0.0001461438660478805, -3.366615531430207e-5, -5.085356500059317e-5, -4.515452116781498e-5, -6.145826118530851e-5, -2.982628770229473e-5, 5.111181285541984e-5, 4.910361132824597e-5, 0.00017140854838154998, 0.00015239269043368218, -1.448833595558704e-5, 4.479115698097983e-5, 9.428643327240722e-5, -8.038639482400277e-5, -4.4958272516810034e-5, -4.051534642708183e-5, -0.00013338236235745806, -9.586053163608916e-5, -0.00018016103457343843, -0.0002719606902562749, -0.0002342433225133694, -0.0003214292713152537, -0.00015497082906439894, -0.00038385437558457764, -0.0006398687055010415, 0.0003544217719492459, -0.0006326590440315784, -0.0013515849501532825, 0.0015568480476100396, -0.000505562995061964, -0.0005806528116259465, 0.0002621636910334289, 0.0015295695934420765, -6.438840154660563e-5, -0.001262436225492596, 0.0022767025592855465, 0.0001291779931161307, -0.0032777181308088856, 0.002900236042286892, 0.000738449707928861, -0.004195426122767638, -0.0006709261172757199, 0.001576988810011864, 0.004600513363706653, -0.0036192721876807557, 0.001764199392030934, 0.005715165785270698, 0.0027997156320548806, 0.0008867768379398146, 0.003369854560852425, 0.006335625028362401, -0.00101502724012102, 0.003605270082024395, 0.006482066302294342, -0.003743071534167591, 0.006039772750608867, 0.001962664003844668, -0.004583281229128796, 0.004593417441202818, -0.0016929171327170153, -0.004131478360240252, -0.0012774916548006013, -0.003492974921647722, -0.0011542626083542338, -0.004494957607226879, -0.002147858185747954, 0.0004047847543833679, -0.003706156507180716, -0.0017856816921680814, 0.0027561792564107365, 0.0006232746670969004, -0.0036509262486821336, 0.0019301923453775831, 0.0008514460243673317, -0.002057948651290139, 0.0009328685565660991, -0.00019788404940374374, -0.0003767264603343396, 0.0008407186567709956, -0.0003851239976828938, 0.0003192697076406554, 0.0003105486594886935, 0.00011067769307672599, 0.0006054204258401711, -1.1858007026862437e-5, 0.00034227870829413174, 0.00027214612480484725, -3.582433018583794e-5, 0.00020582191724893427, 1.3881636262488962e-5, 0.0004914049710315943, 0.000298187024636035, -0.00027591333375106257, -6.90731231269567e-5, -0.00014654753090574926, -7.963848451744817e-7, -0.00012392075436247534, -0.0006946657557986612, 0.0001203967897157152, 1.9427688762970407e-5, -5.657061027207137e-5, -0.0004999745122128804, 0.00010272761735075555, -4.9777863787424164e-5, 8.209345127309906e-5, 0.00021053922197605758, 7.113756812210427e-5, 0.00010664773147600612, 0.0003581488666304771, -4.596401396140596e-6, -5.167418922480223e-5, 0.00012710249659406733, -0.0002475568923893741, -0.0004632164869122346, -0.0003795230707770166, -0.00033093865181273657, -0.00045320759319270596, -0.0007777886641405178, -0.0003149731903324702, -0.00042552758722502027, -0.0010255890738920012, -0.00011573438657497062, -0.0003517185817982969, -0.0009099760538049217, 0.00014836108666755658, 5.8526840405401054e-5, -0.001712262212386076, -0.001518951138416079, 0.004565014573377365, 0.0007036022206080233, -0.004349161034558142, 0.0049104882681460646, 0.001486554813002716, -0.006837922813034335, 0.0026324444912367764, 0.0022705406266004687, -0.006084079322120375, -0.005243143480919596, 0.0022807501718293687, 0.00416605200756313, -0.007853168145723559, 0.0021659980099824646, 0.010407120105302358, 0.0016133859201691609, 0.0009008563474094822, 0.005988703700625382, 0.010582209946157316, -0.0013441001799005539, 0.00402188880422235, 0.012391675137932236, -0.004854636786660653, 0.0073596089137992, 0.009342796311415439, -0.007281404121004435, 0.0080306733682469, 0.0030693458607566108, -0.009638325315221902, 0.002056037639832819, -0.0011728396207356358, -0.005922825905929199, -0.005843227897245382, -0.0010330599890418953, -0.004778520085814621, -0.004988871528487982, -0.0008903435685380598, -0.0008926719190442867, 0.0017981097989367343, -0.0050248499674374, 0.0017648600050504035, 0.0007156779022874444, -0.005268708028617283, 0.002601778234761015, -0.001218582217930833, -0.0031847421225444142, 0.0022320910815203576, -0.0013001003486082215, 2.8992332377663532e-5, 0.000896748558016371, 0.00025017117932334327, 0.001584258011219318, 5.4955707943658995e-5, 0.00044960295772218, 0.0003825014233962934, 3.2419469190195684e-5, 0.000542141270676334, 6.357212236965493e-5, 0.0001664668334423247, 0.0002934388021971305, -0.00013040133790612405, -1.0096758640827702e-5, -0.0003872786869138175, 0.0002266404513056999, -6.712077473301347e-6, -0.0003402529459488235, 0.0003099011250883526, -5.243378558730295e-5, -0.00011873981090045071, 0.0001169174025974214, 0.00012673525093954342, -0.0003487806354415652, -2.289355222245441e-5, 0.0003052211449199374, -0.0001396878943244815, -3.074789213570943e-5, 0.0004817883444651701, 3.2931392920559013e-6, -5.567494165122245e-5, 0.00027957337731012707, 0.00015798108645808246, -0.00045870487296746236, -0.000634895569873712, 0.0004156410800696314, -0.0013233198853516885, -0.0018648363755716592, 0.00012851084285865272, -0.000537659565044135, -0.0034709913569370815, -0.00048450548801974136, 0.0007189382800939935, -0.005041063235191476, -0.002329320281253206, 0.0038477439133427498, -0.001103378754116365, -0.005444331948803827, 0.006877029319489561, 0.0024782553526052913, -0.008725663656775956, 0.005723570831553264, 0.0036212291511310175, -0.011771356365492659, -0.0006361224786181935, 0.0030003329104555335, -0.007510531557909665, -0.010682726990883842, 0.0019393909173243714, 0.0038673832603193974, -0.013453441824069472, 0.0018052713956955985, 0.01584423628119947, -0.0039871021910546, 0.001302477456455251, 0.012019659521297073, 0.015266826079953165, -0.0008819274339119654, 0.004383445027839049, 0.020532315283834545, -0.004737009923747939, 0.006693431469412603, 0.018918255202297205, -0.009804824674510153, 0.00983067336894308, 0.012219498593710723, -0.013259596144116982, 0.005098614195928219, 0.005483788632971166, -0.011298745882887703, -0.00042277140700580255, 0.00557008577246639, -0.008819790913253751, 0.0027531061855995613, 0.005281367869545014, -0.004923447572597536, 0.005731333901990581, -0.0046124842067634874, 0.0004806787109016888, 0.0006628881828867437, -0.005695770256347684, 0.002329237349997792, -0.0019781276886208696, -0.005468429840840522, 0.0033607547673668906, -0.003409504287558743, -0.0015364833640163823, 0.00118975540801605, 0.00011034069141675567, 0.0027550491738669164, 0.00023590182363544246, 0.0017494652085261852, 0.001516417880710075, 0.00028941087086028263, 0.0006581401906967569, -7.669114993084621e-5, 0.00038764114629941457, 0.00010405259132393625, -0.00018003252165819665, 0.00018463280191778584, -0.00019001804423793083, 5.086962722225786e-5, 0.00011381222402665268, -0.00043434914010228405, 0.00036880743207490176, -5.1199193195657926e-5, -7.38586482626964e-5, 8.040581575187863e-5, 0.00032206948860081505, -0.00047850174148642065, -7.739966037831027e-5, 0.0002903059483885136, -0.00020986908916262366, -3.58260984584018e-5, 0.0005391424527056449, -0.00019487549995752035, -0.0001897984098026787, 0.0012218156011528701, 0.00039461195738257747, -0.0014781523245944593, -0.0005923838921493194, 0.002237930265523647, -0.0028050635980120023, -0.0040535340263639485, 0.003354373668660116, -0.0017781736641415478, -0.00670069409447935, 0.00170150525195774, 0.0023764426890842977, -0.005896904275574946, -0.0030121276437008533, 0.007930971146472336, -0.0010627633505913903, -0.008295549928351102, 0.010505181660948004, 0.0035390580495728205, -0.013836028861333902, 0.007717476479645994, 0.005131807052826139, -0.016955043989912454, -0.0044796923457839834, 0.0025368924601679144, -0.009748871022798119, -0.017222958052630976, 1.9455344216651455e-5, 0.0034880890916613823, -0.021272810715706317, -0.0001670723040640792, 0.02060443780758072, -0.013700467055504595, 0.004836118359617921, 0.02535168255159407, 0.01239564259081758, 0.0033089635550022523, 0.004808258966337283, 0.030438370610094398, -0.003395576353057558, 0.003333238332820412, 0.028837577974193982, -0.01214372341003622, 0.00491809715548044, 0.02304504089971715, -0.01957421590455961, 0.002512845082165956, 0.013097923787575825, -0.01550178156971196, 0.004448551337290472, 0.011689422356322974, -0.010244108163259906, 0.008442559554703497, 0.009752513375341316, -0.007823527317994374, 0.010626520690110943, 0.00011365065775657327, -0.0004667414203706277, 0.0015087629641116463, -0.009833929739167989, 0.0016272860559536763, -0.003077021515779586, -0.007898705011838885, 0.0010048296802089842, -0.0059480641622368545, -0.0032621414998134724, -0.0018904199335855836, 0.00047711339181323744, 0.005371517608351166, -0.0005924859259040278, 0.003036306699266649, 0.002020236326996395, 0.000978326544599807, 0.0011141761645200715, -0.0007350028646823589, 0.0004916546500046506, 9.002087027622745e-5, -0.0002580397474038955, 0.0004097981924710664, -4.2648827916940295e-5, -3.0521069332357755e-5, 0.0002078948229217122, -5.407756791650148e-5, 0.00014992950577446791, 8.446662869395448e-6, 0.00011112727928560884, 0.0005410928043914245, 0.0002021879049858441, -0.00023922856042801852, -5.175045521097152e-5, 0.0003503090939900775, -0.0003424570067546021, -5.73740151858097e-5, 0.0009710122790702175, -0.000734707683502158, -0.00036049256938944566, 0.0025773762311989707, -0.0005892073837108154, -0.0030926869545086872, -0.0002596917259267086, 0.003125279297342853, -0.004786486375429119, -0.004291831515380723, 0.005966200899274737, -0.003745281275601057, -0.009061284164948837, 0.006309497461633402, 0.0019584423816256832, -0.008659597837595802, -0.0016419663959674861, 0.012923488362317829, -0.002056653296534002, -0.010693948566552211, 0.016071227167167076, 0.00303722594660891, -0.018660245336846088, 0.011704338552471653, 0.0046835520308902475, -0.02295558489371747, -0.006313020122750524, 0.0005359495724564112, -0.01258089034727471, -0.023187298842385597, -0.004193151308047847, 0.002132840158530876, -0.029751805223112913, -0.0028874514801166228, 0.02372383279843328, -0.022980075933411778, 0.02007010989092987, 0.025572410633177032, -0.017491403633816113, 0.03044842875112653, 0.008601796265140951, 0.017935672760594344, -0.0014197621027989867, -0.0022707976737881413, 0.03366326298192877, -0.015018392640673043, -0.011509365756175241, 0.025328966883988314, -0.02530408872834545, -0.015310969653630067, 0.013510161652457537, -0.02448945543083341, 0.005388370255252772, 0.017485549328445087, -0.01383167181286575, 0.01554538044370313, 0.015296727717370753, -0.009587166321718887, 0.016492313101090957, 0.006201110196285639, -2.4843311257426965e-6, 0.0014794218057464325, -0.015462217470972138, 0.00189448123853054, -0.006632496658734586, -0.010827303612643096, -0.007016978761539654, -0.006505447443254419, -0.0006273495646824124, -0.005351293657650311, 0.0029753970069083353, 0.0037917163017098837, -0.0024971895747102728, 0.004471554294267579, 0.0003404536687704133, 0.0017344173877376114, 0.0018781833681041317, -0.002420484370828714, 0.0007444586591704414, 0.00016753990783358107, -0.0005284389027206488, 0.0006037014898864613, 6.384052712386508e-5, -0.00012213316827423107, 0.0003083593095854888, 0.00012030051489808963, 0.00020616975157358066, 9.91855442001438e-5, 0.00021798620934993337, 0.0005188014358514293, 0.0002317203596666215, -0.00010875787827367976, -2.2624353509145993e-5, 0.0006184749791777926, -0.0004213483094580792, -8.67291640693444e-5, 0.0015803811605753228, -0.0014439310176788513, -0.0005144049776087084, 0.002488851987018863, -0.002347690298663734, -0.003086669300972387, -0.0002883892664269001, 0.0013404599512825746, -0.006028310746616144, -0.005166738588328906, 0.007049123949041357, -0.007513334108192749, -0.01178507676010943, 0.011378805456854794, -0.002075930988339553, -0.013583037738723368, 0.0027471461933847247, 0.01740126409034564, -0.003946907310503556, -0.01286100075943031, 0.02326182674329127, 0.0016591596935685278, -0.023296274605923234, 0.016381212116109774, 0.003120185297729855, -0.029383808354515678, -0.006493025537145793, -0.0014665822116207278, -0.015348792615263639, -0.027420171898131552, -0.010120906596683684, -0.0008795387461469647, -0.0339843254850138, 0.016871743258613833, 0.011026972078874743, 0.0347826816418432, 0.03031094282409798, -0.013360533810155326, -0.023306138297124624, 0.022768545039188032, 0.002918712796780248, -0.03143448779224336, -0.0058563984358711895, 0.0140359492914764, 0.02606888554908711, -0.015907868736664277, -0.02814848458648749, 0.01225177409109719, -0.020355170463261785, -0.033645594473047734, 0.0026392164813069663, -0.03870992244377228, -0.006169630666504223, 0.014340752455798977, -0.02049279358062934, 0.024922451597219234, 0.017638396780507645, -0.010938667581822837, 0.024963104535816776, 0.010259022567516348, 0.013329235522765312, -0.011068167896450001, -0.015856431167070306, 0.007366056538851638, -0.01508684798850063, -0.0057288230121234395, -0.009659226685281014, 0.0028733443492657447, 0.00816949927961402, -0.006257129257891319, 0.006251244400734845, 0.002520716975062735, -0.003438290295336045, 0.005393398837879017, -0.0012927260527065135, 0.0010725864300404114, 0.0025130104937147214, -0.0038696317507090922, 0.0022278969134685717, -2.4305023046651534e-5, -0.002083361524676029, 0.0005623088027836268, -6.961474819422018e-5, -0.00018356128620618112, 0.00023956336250493065, 0.00024331571041271823, 0.0004724144719145748, -9.558387239973528e-5, 0.00022675406896728812, 0.00035737213501934527, 0.0006398608734122699, 8.798158784424219e-5, -3.527173079425153e-5, 0.0007677474241843944, -0.00013259331948860156, -8.96460236029236e-5, 0.0025915179416732183, -0.0017774363467566807, -0.0007611452301481825, 0.0027357598799959176, -0.004553022955204813, -0.003311853932293919, -0.0007375380395586926, -0.0038767335541369484, -0.009173672010661302, -0.006888841967614645, 0.0039130482812812905, -0.013306572378552437, -0.014415814207439506, 0.013272599530888473, -0.010372167652170337, -0.01987857861279633, 0.010228361425473528, 0.017011912228754728, -0.005327753622495001, -0.013924123804414818, 0.029154259214120362, 0.001191655172901664, -0.0284461540625553, 0.01940125537988001, 0.00309829248940135, -0.03520264117022342, -0.008175429820730018, -1.4090771002240866e-5, -0.01693890353675746, -0.03165443681509496, -0.012886706353175624, 0.0013110410738916638, -0.03566484250454728, 0.0050014877380642, -0.018527590329993147, 0.03768519307506507, 0.01789864612625264, -0.03895041368616468, 0.0016589372329678133, 0.009453814271974878, -0.0002736992160155682, -0.037947017175550234, -0.015107672466007636, 0.01370801206970509, -0.02756003301977258, -0.015290848306756765, -0.03298237382193426, 0.0027376218041155064, -0.014522075636898144, -0.03843908499118041, -0.0017919608139183652, -0.037720479796199136, -0.021808921627257317, -0.0017933422544249918, -0.03131543661190263, 0.03136353359125182, 0.0017662864767527173, -0.012973762968885624, 0.03266910564392648, -0.014093788386084905, 0.021284115595139538, -0.0216277940250868, -0.010983015454747495, 0.01570829917378814, -0.0173968965338823, 0.004978040218086648, -0.00516480635719402, 0.010499198746964615, 0.013670695842910552, -0.00684064587722615, 0.01007680911088145, 0.0014276450099271049, -0.00453136469820426, 0.006501538934127131, -0.0026604881612474853, -0.0014005769877497754, 0.001783188698494904, -0.004354786286366014, 0.001222882544150301, -0.0029249830317076815, -0.002060237757819169, 0.0001397078840245279, -0.0009768014093178396, 0.0002457224102452206, -0.0003055752163532283, -0.00020450850784815388, 0.000613518141163375, -0.0003270397460455194, 0.0002504802136893409, 0.00031713875644556435, 0.0005106579344917111, 0.00041891464565291546, -3.99773382970453e-5, 0.0012630339004403612, 0.0005575533133546102, -0.000194905324441043, 0.0027600957583419085, -0.00023687460762592856, -0.0008009249853943694, 0.004330443422329017, -0.006543660444504678, -0.003638900222847234, -0.0005673399245036465, -0.011514936257606167, -0.008482957525867307, -0.008585655783576882, -0.008464284754611582, -0.018693128813382937, -0.01719113689116913, 0.007294924065876678, -0.022592604978539012, -0.025979507705935993, 0.01989284307878356, 0.006461885117615712, -0.002849547219052501, -0.015077825230430626, 0.03173194331645723, 0.004424620727453263, -0.034126520628757435, 0.016527410814579906, 0.006547349796177729, -0.036991757435009064, -0.01334663168564563, 0.0059285759871109235, -0.016585861867927636, -0.03627326947868989, 0.002876038329504408, 0.04088508795110982, -0.012346206190337165, 0.003250717173248878, -0.013860033641270657, 0.04081913076550811, 0.003520452722129489, -0.038934831546058195, 0.01633352029323632, -0.005142937705650735, -0.008229021754424177, -0.038113696534027595, -0.016987823665342173, 0.02077832517304601, -0.02157156286822013, -0.014216616562402884, -0.0341084178900297, 0.003195658626819667, -0.011317340264883007, -0.038676785619838845, 0.0024576307886932597, -0.03546640167469796, -0.023429498948425213, -0.005029733490281347, -0.03122947061826689, 0.0216353170396295, -0.021519116920856243, -0.008548275302672641, 0.009265192704013304, -0.04365385039650297, 0.023228543538409044, -0.02641998583796419, -0.021826493931376863, 0.023533521538766096, -0.020028420480074225, 0.007781586138934269, 0.0017024297606316517, 0.014308095222576766, 0.01726225571631148, -0.007317074765806145, 0.014181201839296845, -0.00019715024023092523, -0.006092616211117503, 0.007602623284868106, -0.005132301815637276, -0.004384176403204094, -0.0006014755174166361, -0.006163685029454732, -0.0007995425302304592, -0.003589633806356929, -0.00037495590937082246, -0.00034589551832246273, -0.0022370753629672546, 0.0009480544359701641, -0.00038341997470925165, -0.0004589281242461792, 0.0006785690788780136, -0.00025573748325222905, 0.0003454681825936351, 0.0002309336170574092, 0.00037618048555386604, 0.0004987988235716012, -9.172423384826313e-5, 0.002329608790665266, 0.001984435406848881, -0.0007039750370149307, 0.004505002045632775, 0.0025107404925138466, -0.0016703878155054253, 0.00944728113533157, -0.0022400936421427394, -0.0033670574902262673, 0.00329810346166675, -0.017783253387921086, -0.003390543408020802, -0.006297139783472092, -0.02737838052452907, -0.010627126163269716, -0.019332800649111616, -0.01612496719376469, -0.029454497533635514, -0.020445738692080623, 0.025204317557222487, -0.01743333972322798, 0.014321990494431665, -0.019044192886317937, 0.025400090243108814, 0.012704013078393429, -0.03720544164485993, 0.003295245650096181, 0.010786680817256441, -0.034217618647332255, -0.019114590005235806, 0.012151473689107697, -0.017120451250405642, -0.04073109979005482, 0.0071335069533621275, 0.04609454781761054, -0.003922704480187405, -0.00028735165000520123, -0.0040641562899963795, 0.050836671729926605, -0.0046294273744722685, -0.04486238052224665, 0.02579042419086911, -0.02074132672748564, -0.023032725699040725, -0.023345183293399924, -0.01976144376185894, 0.03179026587664019, -0.017759963451747112, -0.01330462095764664, -0.03806411295303643, 0.007501864844983234, -0.009401169013560851, -0.037820101773427414, 0.013590299994805665, -0.03766698233208187, -0.017823563052053334, 0.005753626630130325, -0.02782304215694853, 0.015067353213262745, -0.02527292362499413, -0.008772551588269537, 0.0033456699439594604, -0.04570935208652166, 0.019275709763185492, -0.023725931786725038, -0.0321652103407068, 0.027302520570166088, -0.0208388640613538, 0.008435674385481384, 0.007137190923062422, 0.012496988254903982, 0.019653472608852644, -0.006857602641626194, 0.017553248814832036, -0.0026075673992863335, -0.006441365257858416, 0.0075349921388756826, -0.009721533241793564, -0.004117815727515983, -0.003076591864834445, -0.00837135206059479, -0.0009493083388992792, -0.0055688787102464565, -0.0009213855955332882, -9.216912190581023e-5, -0.002701811823447323, 0.0009303448623751561, -0.0001350226492059704, -0.0007436111592658347, 0.0009006835941794238, -0.00021998110301504688, 0.00047497939713531513, 0.00018523438825258692, 0.0007144639407322315, 0.0006984509410970918, -0.00047404392781807346, 0.002580207370822083, 0.0017917729567012027, -0.0011999101531393133, 0.0051020250807054, 0.0036379648931106744, -0.0022249333431031957, 0.009523586411508488, 0.006200927807228454, -0.002303005267003561, 0.017958940485657233, 0.0019642236920661433, 0.007545891364396788, 0.0019164242115219565, -0.021843100635573126, 0.022883786103713555, -0.016216953227391234, -0.029310229991135847, 0.025534506555165364, -0.017407090785770685, 0.021391373605854542, 0.02522298010447863, 0.03214567525748761, -0.013664793553242321, -0.003679575285883978, 0.017791900149851842, -0.02965905769364464, -0.012397617667050654, 0.012984110572638227, -0.0328753620686557, -0.023852900009817147, 0.015117450349758388, -0.02540375265801527, -0.047177798508556405, 0.031987400768650864, 0.08921938585118969, 0.02152619478722829, 0.017988379605619876, 0.04702640280730976, 0.08975085349921705, 0.1033504985186178, -0.02175652412755341, -0.07615681813936112, -0.050405195836742356, -0.08408808912924864, -0.017697953107544614, -0.050181586605022935, 0.016722365231463136, 0.044941525561228754, -0.04755504837893026, -0.011290296251703951, -0.03114034760332814, -0.006068248578741757, -0.03560749061411615, 0.02891618750564575, -0.03224743791422358, -0.009787362846857288, 0.021900510025247687, -0.029718371836848376, 0.014412370371847385, -0.023987948485175083, -0.009455977617700406, 0.0033849139140329785, -0.04385397704396734, 0.014177227268687056, -0.016216429771738355, -0.03481544865505335, 0.02494226014514748, -0.014652418326240611, 0.016225723320838107, 0.0070188423111255645, 0.009735563635010673, 0.021897070009608922, -0.0026437771466839037, 0.020074961487502315, -0.004173014535698283, -0.0019012758712012685, 0.006499699593221418, -0.01441297008280659, 0.00016897967703676035, -0.002169691454472125, -0.011494481748691172, 0.0015509522611206095, -0.005988005712024566, -0.0048308041635646065, 0.0020177809946742968, -0.004373364981703803, -0.0010583391260854539, 0.0013452546362743257, -0.0012350883918813757, -0.00048180668843028634, -0.00018140520353816605, 0.00040712276863188773, -0.0005052904240144418, 0.0009706193766734865, -0.0004957247530478074, -0.0009315275056845509, 0.0025298444975527215, 6.878015629249136e-5, -0.0012890693867362811, 0.006153168734256086, 0.002763086243810321, -0.0029689153862751385, 0.008886893127898709, 0.008158392579762353, -0.003365897889334539, 0.010771419604733153, 0.016826210959560602, 0.00194617806309999, 0.0029754446493819794, 0.02062912360466387, 0.022728573247781672, -0.010859627899102832, 0.009899246236392299, 0.039029883582435095, -0.006075393880809886, 0.006833947516095435, 0.04133423982696263, 0.03367147113053718, -0.012244932800798683, -0.006056778231688396, 0.018862792220914807, -0.023718232214273268, -0.02190508963106894, 0.01263681543159818, -0.03547576120212841, -0.02917125472465501, 0.015466855449300335, -0.06334585115348984, -0.0569624549464555, 0.09802171889910659, 0.11654484600813096, 0.0860967259608542, -0.072757248558306, -0.0860877387525749, -0.14387869466913172, -0.1759763655258711, -0.035192535162851715, 0.05955435803705022, 0.07926145662790919, 0.07024606812196782, -0.047199057317662, -0.09164093870828485, -0.07637871701817402, 0.0958134251326854, -0.03773259472969121, -0.012310431107389089, -0.08284028840922086, -0.017300309170457915, -0.04956863866188972, 0.03162230404672718, -0.01980872303249892, -0.005399504835319563, 0.0368453542264491, -0.03155028687003215, 0.0119181123958429, -0.016828083019528508, -0.008095432337771028, 0.003958726423157697, -0.04195701691575726, 0.01618721556203969, -0.004579651021462339, -0.038237815223853756, 0.014006295367756211, 0.0035867600818283375, 0.03159173222773013, 0.004032665978747408, 0.01195541548981969, 0.023916324285308543, 0.005846152760302591, 0.021511339020110484, -5.8082502988126434e-5, 0.006216979324453345, 0.007977649706008895, -0.014905342390615162, 0.005863948303909925, 0.0023797154858726773, -0.012586642269185223, 0.004874641546615454, 0.00023347623310591186, -0.008194042090005621, 0.003028868514446634, -4.0820698307744676e-5, -0.004805478800296559, 0.0009223217960350335, -0.0002298440730449824, -0.002252953113107286, -0.00010840253767460899, -0.0003766012310710719, -0.0006611751260280801, 0.0011484553486935146, -0.001631842333463981, -0.0007888256261196838, 0.0033735592821531424, -0.0023756911348885323, -0.0014804157480706108, 0.006552727150504867, -0.00023704580529814579, -0.0035917971019509606, 0.009464817727384778, 0.007155359707361223, -0.006137564091643495, 0.008423517382271553, 0.018299463135761765, -0.004375716323823378, -0.00015482683318299308, 0.02820101324156597, 0.007696241154943448, -0.012089492032265338, 0.020131837154881583, 0.025257497160366432, -0.011081701365090044, 0.008845823012227715, 0.03387774153654547, 0.022002461836409287, -0.006448815358765088, 0.023396245313724546, 0.018600974977120963, -0.01824787378819914, -0.031068289082066245, 0.008342333286935023, -0.043876677726225104, -0.044324974108655886, 0.015293125577606785, -0.11557033548570567, -0.0032950886833970597, -0.0635055351201879, -0.07362508304555958, 0.18644883565689985, 0.13356822113386255, -0.07987747205847799, -0.13831466615233143, 0.06733419578427277, 0.0281344744125598, -0.024205555130876456, 0.05854070186496531, 0.03251509574005375, -0.004328384187772712, 0.07507465102704754, 0.04923603732337271, 0.019611570721065657, 0.02285332122241759, 0.0949249693772881, -0.09333774837039562, 0.049593346824961033, -0.02942221691956474, 0.0015688657979363095, -0.0002172898897525198, 0.00010292542148941239, 0.04874367279052883, -0.031549412782498995, -0.017078212890332838, 0.020042143326192526, -0.0009671019290147535, -1.5044902543799441e-5, -0.04436886958546202, 0.02648547101755135, 0.02941676679574963, -0.01297299256072136, 0.004306885653579079, 0.017307429388111455, 0.03265948517925202, 0.0017599205908957352, 0.018503792475803995, 0.025554877135436367, 0.009676778906947094, 0.023992318476501576, 0.006657543163339229, 0.013244119695740825, 0.013143290885530814, -0.010700140892356482, 0.010426418469448894, 0.007794118635659902, -0.009614329328205305, 0.006271316871323537, 0.0057476331918551345, -0.00693057853684846, 0.0020827570225129917, 0.003152620501383322, -0.00568622079728944, 3.793408396655995e-5, 3.1968124600093247e-5, -0.0013950125119740308, -0.00016577199981979648, -0.000774043601288252, -0.001141682159177897, 0.0013908361868153985, -0.0005829179613295567, -0.0005480317459885597, 0.003249560644924453, -0.003577781133228905, -0.001129904795062882, 0.005942084183575605, -0.005121860190974941, -0.0037399250200069126, 0.009890570507693616, -0.0013615486967218724, -0.009991840332088267, 0.009693630195685459, 0.011005998712106708, -0.014898025411737334, -0.0002031958324457114, 0.027099039700559595, -0.009308682337618774, -0.013792508150780269, 0.02443438290642255, 0.013921951562656082, -0.010329993310310464, 0.011828254696005833, 0.030375389913634157, 0.009135825545007178, 0.012263758934889723, 0.033100716521094316, 0.011152649517996566, 0.012116402487902599, -0.038901281606839484, -0.011199081200510894, -0.030717028906239546, -0.055817152392892005, 0.23889684166170155, 0.0420902631862199, -0.021516583340589413, 0.12587925339849565, -0.05298218627138894, -0.028774726081739692, 0.05317455109805693, 0.013484835739829299, -0.049118643152715774, 0.026892392226891482, 0.025691149205222565, -0.022819582622851463, 0.026949585888493322, 0.03281549836575953, -0.0015383772637846476, -0.0011068395703149958, 0.04573789251943889, 0.05136910735656424, -0.021323316535072606, 0.031931703416599976, -0.09850023842491637, 0.06676325212200762, 0.04761632987685239, -0.03266934367621187, 0.01899127404855724, 0.025974701788997287, 0.04841378133652266, -0.0037452043250742087, -0.051496677359918405, 0.008140045757764485, 0.010572917537868423, -0.02187527301741419, -0.04452451869725369, 0.03173859860947256, 0.036641256898545915, 0.008948274871763157, 0.0026214832704169783, 0.025880085053274025, 0.032018904981365115, 0.000458417123264325, 0.025295454135525055, 0.024823531922330992, 0.008094348191670585, 0.028273022901988774, 0.011407510962348983, 0.017326814723876656, 0.020264865645266892, -0.002089532066862335, 0.015016928644888532, 0.012657391204656856, -0.0013817989390349922, 0.008176431794355982, 0.009353565635491789, 0.00015459604672350336, 0.001724090819255239, 0.006418552796423872, -0.003207790105058788, -0.0006544625633635658, 0.0008214354269168078, -0.0031194309861007747, -7.196297998752647e-5, -0.0003201002426279456, -0.0009201122969433921, 4.559997361571902e-5, 0.0009460239493684939, -0.0001918655811412108, -0.0008838233552244888, 0.0037511796774119875, -0.002356792837392117, 0.0013365356343635225, -0.008145589242913951, -0.001158630716953495, 0.004775278918251406, -0.013059826350621799, -0.0038334097353409135, 0.009717735777539024, -0.01722466028277801, -0.010693544360692855, 0.012271894400735854, -0.015758842219833844, -0.022759638763769813, 0.008794810467063043, 0.009853754974261445, -0.03420913187476817, 0.012482566606487186, 0.029599627595422392, 0.019576644642191547, 0.013487436322450542, 0.029597137034496155, 0.022946352272886876, 0.003575912636683814, 0.05189453364034519, 0.002190837884719667, -0.01692203309837103, -0.038083371315341195, 0.08446489505561824, -0.15000661205673224, 0.15316439469615611, -0.07708099977712858, 0.09030828584864847, -0.05654278235346333, -0.014256502870316611, 0.008435369075699497, 0.018232511252097603, -0.0393357874259459, 0.0050549482122879685, 0.02429817045177974, -0.02644506331039199, 0.006128737826471433, 0.03328801279425826, -0.00963824693511863, -0.02935067608677157, 0.01424200366070085, 0.06404556175939742, -0.07704332342444829, 0.01202689506680191, 0.03332673142091044, 0.007109078042347602, -0.1147499754013812, -0.06290376265473221, 0.036210625419602106, 0.10359986041978952, 0.05694223659076025, -0.04151611500398422, 0.03949048280298588, -0.0007931909168907645, -0.0097564180013958, -0.04180575795592522, -0.05519748354689348, 0.05323611976986926, -0.006463342392524223, -0.025435430776291082, 0.005860744046220143, 0.038658802459611744, 0.030024104531610484, -0.00025437420824237297, 0.032372379869998344, 0.02303559100980541, 0.0027333188436041503, 0.03216028763885723, 0.015157781480462611, 0.015060033848106672, 0.0243270648202772, 0.013100351425389853, 0.01606608829187258, 0.009132289042776907, 0.01564936855916001, 0.008160651120604056, 0.00433908376336259, 0.01180073574658606, 0.003202604029838918, 0.004596709252845464, 0.006241769798125607, 9.264248153928547e-5, 0.003957442924789281, -0.0022467984286287574, 7.440254684395914e-5, 0.00019856057326517608, -0.0009220087917128987, -0.000398046510331517, 0.0012458986426158727, -0.0003019793566390924, -0.0021346885285183437, 0.0038302274962930187, -0.0005122954534302833, 0.00017385080049037407, -0.006643066361938999, 0.003992263546741654, 0.005174047250191239, -0.012179340512750172, 0.0028664963921130843, 0.010117155015278545, -0.019728500579302123, 0.001829913178922681, 0.017266527002323343, -0.02845620738017083, -0.004371171837655444, 0.028693730387408186, -0.02057486488269924, -0.022969951703795434, 0.035214420999648575, 0.02472976352416679, -0.01981263504363046, 0.019417887354576772, 0.04580072675811436, 0.00821300873585562, -0.009543039916341077, 0.04918933011371704, 0.02186835341371804, 0.08196451748802094, -0.016267228710451564, 0.06263414635578177, 0.22360371891721922, -0.07587980708337373, 0.09500033943509052, 0.05292452197599547, -0.02404345590729415, -0.075586321086068, -0.01366683031399447, 0.020848208202624684, -0.03584203932572129, -0.011686577968155082, 0.018863941151856984, -0.02878251759260903, -0.015218644190015824, 0.01821317721399498, -0.03086583270704618, -0.060097501730074575, -0.015595243498911695, 0.061754762632654614, 0.10871783278641951, 0.034341867264015925, 0.015515514672206894, 0.15968990313436224, 0.0011145146964201575, 0.11891370369387654, -0.020957605396545564, 0.07084509485904157, 0.03378447180620677, -0.05685394056234026, 0.015048336574619663, 0.0011832632526731124, -0.024980747555364235, -0.029410689476727217, -0.039668222121984, 0.006318149727668168, -0.0490037369673493, -0.08695813503330384, 0.014371509893344387, 0.06272791651500526, -0.00018390071909238278, -0.001499008654444314, 0.04319256715601628, 0.02076310714020805, -0.009190843237220253, 0.031916384261106996, 0.019999362882358075, -0.002244404672091462, 0.011602051460565758, 0.033649444681859056, 0.011692974140489963, -0.004986435786520627, 0.024212019018045147, 0.009634285219648986, -0.0017933844133903379, 0.014371363414969458, 0.005614852077609692, 0.0015632597831639033, 0.007852850186543846, 0.002558783102291477, 0.003760567598283203, 0.002357003734606562, 0.00041234569894791164, 0.0015501892167203895, -0.0009479234034563422, -0.0010277934455467266, 0.0018455080022838335, -0.0007258915177062518, -0.0016399525977987424, 0.004023392915822458, -0.0008917020779433742, 0.005817319079077996, 0.0021643504809789778, 0.0044185440371908545, 0.008552242307669423, -0.005603796796875637, 0.00609294509305084, 0.012758357572374623, -0.012090229720816267, 0.009666474947341963, 0.01828676914698418, -0.022051907828309462, 0.013096404741128187, 0.03281558831525541, -0.02845843071877027, -0.008656383878858493, 0.029349740809616373, 0.020615662193860865, -0.0369175385107872, 0.004292434482740171, 0.05606750185345945, -0.011034990094499476, -0.048685841274594764, -0.008794201733392537, 0.02231413639377872, 0.026453212577554463, -0.0729431300226173, -0.005818700293160393, 0.10703381168447589, -0.03319524439521298, 0.018077389819095888, 0.003228207608049263, -0.08247023709446695, 0.030512885301924156, -0.03845899504783736, 0.027637430319895205, -0.036822403046282697, -0.025676502878683675, 0.01391748212708567, -0.03518191869086414, -0.02288465730325887, -0.0016357156019096814, -0.04730466177326519, 0.026021694178905794, -0.035243749433933956, -0.07578042931646609, 0.022678757005763803, 0.10510843806201957, -0.027118220637333133, -0.04200987014642946, 0.04057741863887201, -0.010016784442008595, -0.035117336831477663, 0.02249507798437442, 0.011139510124664572, -0.040105632633102406, -0.010178529369940199, 0.010083289241092782, -0.028059360900869537, -0.033263049356858164, -0.018373795790409958, -0.024366187504765317, -0.052177329067151425, -0.06917883206886742, -0.014846052330832705, -0.019612128442265907, -0.0685339980825677, -0.01874560825356012, 0.026056566397396605, 0.038560533334151915, -0.0271127400798754, 0.005216129958531528, 0.02962474763923373, -0.023572749290034625, -0.020292794193059363, 0.015171861317186102, 0.009355369548066199, -0.020903225247492885, 0.014682698268834083, 0.014479741632802886, -0.005718556812590735, 0.010267798771077958, 0.008418116333909155, 0.00017950187895942072, 0.006040534965829553, 0.0038504276702971624, 0.0024820476759886937, 0.0030731970685705873, 0.00044855345055003145, 0.0013813798093026794, 0.00010019135843366475, -0.0011563662316125321, 0.0011862168153539679, -0.000842924574113118, 9.494779602855776e-5, 0.003451467638135609, -0.0014974274550170414, 0.005482657059257205, 0.0034375328798308324, 0.0011258817260830787, 0.009290634085355881, 0.002540258123382716, 0.004967471544997867, 0.010960460029451558, 0.0023923487884341646, 0.01216893965116675, 0.002429624677966498, 0.0025673064871075857, 0.024523668204311726, -0.025010222660448927, -0.0067238289958795145, 0.0233594481279786, -0.01876361088009421, -0.04060518693883862, 0.008246951724474016, -0.010837030290035065, -0.040147929216155405, 0.019897730639704053, -0.03551380221864836, -0.02932616644886882, 0.017468061620972343, -0.025736694530289456, -0.0324159993594371, -0.042077782452288666, -0.06261073209663988, 0.009621737479713151, -0.13970829232561457, -0.1571146977745238, 0.040576706470529834, -0.05782660247793282, -0.08556393280787841, 0.0372069078625893, -0.026164259116447187, -0.05058022383883294, 0.004165166376858139, -0.05334142386779033, 0.008768109560548841, -0.06611386373698855, -0.11591822991480119, 0.09627814147071673, -0.06148293199100672, -0.09219567558822173, -0.04081148952447074, 0.0027265457859167626, -0.05294245684984299, -0.05119995228559313, -0.015465785362875248, -0.03468040740340058, -0.036145480480189486, -0.020946505348570937, 0.007007052270829431, -0.016869093419498472, -0.021071256756788413, 0.022982654072028895, -0.02066468067678143, -0.03336453702331658, 0.015000284860263615, -0.04202463649916963, -0.04252484145842457, -0.027111215595205542, -0.04212545114593056, -0.03257180289456636, -0.040708513846379295, -0.010740153518052702, -0.04111272174542081, 0.026872480805136517, 0.0008508308925605676, -0.01721316587489875, 0.04182903032024974, -0.023560831626772968, -0.0294733924270776, 0.006643460683242208, -0.0012036721456003333, -0.02370297043169114, -0.0203912591961626, 0.017715773456465096, -0.008148954038297808, -0.005298614244328101, 0.008800654683590418, -0.0012879912741350754, 0.0013820405227476938, 0.003921430446235211, 0.0005088283102665595, 0.0018197126049293562, 0.0013347845534602794, 0.0015614204521150325, 0.0013364133517874287, -0.0005047735848838037, 8.586623219972389e-5, -0.00034769078340120193, 0.0021267119903967124, 0.0022157921891778724, -0.0018355819667163623, 0.004210170619959748, 0.003234201794484961, -0.00030959563331067286, 0.006304248788980199, 0.006649222815042651, 0.0018884400171928115, 0.003256739035934683, 0.011910791290175596, 0.007389028545651007, -0.011424586116179884, 0.010635202390349806, 0.013215266978280812, -0.022180183364788116, -0.009419275426647144, 0.013476951549574168, -0.004993381651655737, -0.030583251697772065, 0.014334625602509131, 0.004692559563037118, -0.02790822512182493, 0.0244789100236237, -0.018730911234173787, -0.001395012109040774, 0.03530717161279946, -0.017426346976599758, 0.034177722921392505, -0.040055202957597555, -0.040360420157576016, 0.06583542101008391, -0.07288009600868128, 0.03465806043114441, 0.09004432675341029, 0.07815407591481452, -0.10568831419955417, -0.06948664986735269, 0.11239307344505287, -0.08157725204846072, -0.060046054262971264, -0.06647974081178958, 0.06039082406558826, -0.10563882451397766, -0.12700954556752767, -0.020602468883062122, -0.07303945702959594, 0.09056458760811573, -0.05408318927337633, 0.005059148167626593, -0.0712467370100446, -0.03720280125105176, -0.050525727662621214, -0.045023604611032414, -0.007835938190742216, -0.040713910461149666, -0.00040630059087629, 0.002725604174742504, -0.0177185658636092, 0.03095602208310824, -0.0033422175326565952, -0.011540497089504706, 0.03512485396533785, -0.03229553720697993, -0.020895673086816068, 0.019413928568906978, -0.04803759669752438, -0.0222174308149669, -0.00429597245252105, 0.006818148083796216, -0.014148796866609479, 0.044865284467992185, 0.026595606557451596, 0.004641808711239622, 0.03585314126958714, 0.007025741582262561, -0.0024823313391612346, 0.05093656553281324, -0.03382762014590046, -0.01243175945455478, -0.012050248134756225, -0.003078491485884406, -0.00837042992390579, -0.019750770641661246, 0.006340726777282842, -0.005067853481665393, -0.00756092998179398, 0.004535591391470855, -0.002437109281905163, -0.001024832213827257, 0.0010217839293052765, -0.0004343973239160733, 0.00028598288614331975, -0.0006008874090588727, -0.0003548846349219642, -0.0002002895646895316, 0.0022637538941480363, 0.0015401768749312252, -0.001698819113799547, 0.0029646073694477937, 0.0035237908722371364, -0.0013237867662593851, 0.0025870557697947587, 0.007494741234418067, -0.0004812697289477169, -0.0030514185570371627, 0.01139493246738201, 0.002417471706990435, -0.014461001877005334, 0.0054874444348641405, 0.006853190297510921, -0.009037303728331439, -0.01877390349581877, 0.009267876431362307, 0.007847709614319508, -0.023676743828402468, 0.013156457651320223, 0.01377595148637038, -0.013016598130050606, 0.02593219668448799, 0.0003342858334580095, 0.033243192191163694, 0.01960939312605482, -0.009099747772319566, 0.03517926351183182, -0.03193990996762544, -0.006081468639689144, 0.031102758003182244, -0.05263900598524606, -0.07050329508020986, 0.02801303350053924, 0.017690674062125714, -0.03664032860070755, -0.06297351552441004, 0.06692301042062172, -0.021359880560946592, -0.06591184643462464, -0.009341978229676483, -0.04814970593305722, 0.016723599776792875, -0.03271673334603568, -0.022816718037876306, 0.07746322686345646, 0.045523952200331064, -0.039019371023646096, 0.05910183692875165, 0.021667167225967402, -0.010514359112826256, -0.05603185681664497, -0.038704199039200846, 0.003968898802304441, -0.04502812179642536, -0.0041389254709119664, 0.010332472814051431, -0.0038511685701783944, 0.04134982036737622, -4.627825378316351e-5, -3.514209366089688e-5, 0.03821440791044388, -0.021905803085406312, -0.015780897256799598, 0.035041516070108074, -0.0345858460620957, -0.018616097542359593, 0.012060390020315545, -0.0072274005030643455, 0.039955544361575335, -0.011927603280532145, 0.030932204492857912, 0.015961065509275344, 0.02525193267671785, 0.016973677667286736, 0.0017860219884267806, 0.054445454053924466, -0.0212047570641385, -0.012586721519521686, 0.037411015032044026, -0.02052379951418791, -0.010402676306136, 0.003711729906876879, -0.006271829291377683, -0.006032405603347315, -0.0061224626433271844, 0.0006480044137898337, -0.0027300165740033805, -0.003521670275671606, 0.0013413006850506524, -0.0010371045591504712, -0.0011685207832934574, -0.0005818287138437605, 0.0001540638245061455, 0.00032966266812250154, 0.0004762714870334838, 0.0015326434223369135, -0.0008727059011881991, 0.000736136074074085, 0.00340244241295437, -0.0016973505353373205, -0.0014004613192696205, 0.006046407561625292, -0.0013066551742024273, -0.006830238147894119, 0.007324388878194028, 0.0010610325767627337, -0.010898441048655368, -0.006466126579466014, 0.006039832500065395, 0.008497771378564115, -0.017409628198449496, 0.004557638491734993, 0.017592722872177512, -0.015011823848279702, 0.010482342219023125, 0.016346734440877, 0.0033041798391685684, 0.02652906105069304, -0.005771464837290008, 0.034823215236812706, 0.012454775027444463, -0.009394721338805844, 0.028777546032475287, -0.027747812110013266, -0.002510783909271308, 0.01528241291870854, -0.039404842534007604, -0.005642359703847492, 0.015134420257787513, -0.039845372550484606, -0.017051274376931092, -0.008045943626154555, 0.036639301664539374, 0.008092452884450206, -0.04611029325784805, -0.015247582867547344, -0.04051769821476042, -0.011813411775268717, -0.03341450621456305, -0.011070470610261987, 0.046747470802267266, 0.03626608046291159, 0.010636405815875391, 0.05112226067888032, 0.044941415975697285, 0.0233034871892981, -0.047632655005460045, -0.026093226014132463, 0.038425617724931554, 0.02354495284475373, -0.0478909116886408, -0.003439629656448655, 0.035712735096726296, 0.03824007459427131, -0.008815953241856892, 0.009141015906395811, 0.05057847572793462, -0.017247945391324418, -0.025182597826542752, 0.04053750217654579, -0.02310110087550491, -0.02992675857381329, 0.018794048331033517, 0.001796956188993815, 0.017855119580901083, -0.0353720668370085, 0.032082664593372924, 0.020595413131910156, 0.005301174086354205, 0.01236621708818964, -0.00839225275987274, 0.04215663869840408, -0.00726873634499479, -0.01478757170384876, 0.03318791362978447, -0.01073208364919073, -0.009162061832271234, 0.013884838226443805, -0.0075891975548241074, -0.00440367215768992, 0.0015825052824080758, -0.0016949023994551422, -0.0013037482123007989, -0.0033486516155240807, 0.00027988663760111413, -2.8084636242035027e-5, -0.0006207132597585527, -0.0004117239318189784, 0.000356307274239362, 0.00021147608898907524, -0.0004342981383941182, 0.0007574674595169095, -0.00019639562196882917, -0.0015192334450606026, 0.0025490691996732442, -0.0007978404741292814, -0.0037843914615232144, 0.0033668323180441055, 0.0005806778603110819, -0.006326800857098207, 0.002186460050387052, 0.004673620649520779, 0.0068247983131570515, -0.008035099644392566, 0.006124787865146191, 0.015252340243716942, -0.00811968573284329, 0.0019330912823756824, 0.021812489319461385, -0.003215917390490833, 0.005553886851914391, 0.006276981520435507, 0.023235833961552054, 0.019492577860447967, -0.01946286511737253, 0.029990291698206734, 0.007120919986749135, -0.01758238969021735, 0.02165278372672216, -0.02725257415427822, 0.00026773616244007655, 0.006006993795986871, -0.037050173610501676, -0.004138130468694519, 0.01348252994253895, -0.032971590839999405, -0.00887687319279002, 0.009215764960890839, -0.032562149562420366, 0.007740456125574417, -0.023835205391189856, -0.03230755054711029, 0.012203798673833104, -0.03369594001799104, -0.02214011486869944, -0.0011081943090513813, 0.03201378757673491, 0.02801006377617967, 0.02741920694018536, 0.04464188719595245, 0.020390333141329924, 0.05646190008409855, 0.004277823163491892, -0.013269356853106705, -0.019214248589912983, 0.07561095518034511, 0.016922081407473876, -0.03407781114564468, 0.07172623773305145, 0.0258566167599183, -0.06334096451668733, 0.045626627054338634, 0.06718262542355752, -0.009257946249610084, -0.03836748201199237, 0.037842265317758715, 0.0015027885000802456, -0.03324462612167984, 0.026357835604063597, 0.01856740890262477, 0.017279551960928563, -0.028537779992998964, 0.015114149111902243, 0.01742692348877506, -0.02553308280328106, 0.005509532668346811, -0.01686854193852668, 0.024795981538957068, -0.0017047964649279897, -0.012705360648221736, 0.020036027771165442, -0.0033706955075012953, -0.007194397830517398, 0.011558767975978091, -0.0039963159356515565, -0.0032230041889223103, 0.004828217968886982, -0.002583946047692396, 0.00045004778218248347, -0.002053636385322519, 0.00010851558060596443, 0.0002563789265986258, -0.0006397135963074843, -0.0003898907459822549, 0.00012744495562407916, 7.089094880251815e-5, -0.0004955966342634487, 0.0003961318887865625, 0.00013315074212995196, -0.0014818670097432492, 0.0008824165990204924, 0.0007240034095456705, -0.0025178022856977476, 0.0011308901700887992, 0.0023033646049233484, -0.0018918046151123386, 0.0008521581488983831, 0.005390629693385878, 0.007330914213315938, -0.0015742164929060938, 0.0055676182033849875, 0.012879785643738489, -0.0013879651362602625, 0.0011900837114123717, 0.01861692065948111, 0.007757390136154478, -0.0008545510344392451, -0.011775494885042462, 0.025093862213448642, 0.0008279802791739716, -0.03229612684286613, 0.022359021088171983, -0.0013270950151111714, -0.03989270796364068, 0.004926508166224109, -0.022778464412590255, 0.017011393735211208, -0.016495202129860727, -0.035827747488087876, -0.005544234705856369, 0.024876561473738085, -0.022892780143875042, -0.01305569644303826, 0.01675847582145694, -0.027184776600941957, 0.012292051634747966, -0.014161042956831271, -0.03873688416706071, 0.0356552700334643, -0.02979169816741063, -0.013637176227943054, 0.04159152603388993, -0.019590079434945614, -0.015765220698913153, -0.005300119850183482, -0.0048650078324548535, -0.04851218766394396, 0.003659814972698621, -0.033326795500079054, -0.027528693896093005, -0.025955373721784362, -0.006190248001121006, 0.025736466774065568, -0.02401781815361183, 0.039427762978401476, 0.005556768706495873, -0.006575990919466529, -0.00022347447193332216, 0.05441533490802497, 0.004147238630989771, -0.04408796264512674, 0.028714842362387923, 0.02155970113816647, -0.013671611542099452, 0.03641746127109792, 0.025410510237136124, 0.026312257408399754, -0.0016570025061729617, 0.0013354712700229246, 0.014364455845103334, -0.027694396802075416, -0.005614902653287922, -0.02259813491242636, 0.002942530236812737, -0.000551529515926084, -0.01064757049684033, 0.01113106586979331, -0.00018351289378206584, -0.005377476355338856, 0.007301056031339821, -0.0007698795845235675, -0.002560667060090921, 0.0044864799071693785, -0.0013729971914150075, 0.001046658514373476, 0.0006127924367031886, -6.26478510952355e-5, 0.00040477067432731815, -0.00043255916365393063, -0.0002909660273552501, -0.00033057373542092687, -1.9478040563682024e-5, 2.3491085151309373e-5, -0.0005366513171480784, 0.00017153952914547048, -0.0006974851993424953, 0.00012162008162696589, 0.0009149959243680764, -0.0015929291350234042, 0.0008415173942980971, 0.0021017509701067457, -0.0011795894752118729, 0.0013888430657314696, 0.00406957303665019, 0.005077630389995815, 0.0008697537062137597, 0.005841917270484234, 0.011063296816606775, 0.0008103689310282272, 0.0019281513627212711, 0.010536097500695396, 0.011601436111128877, -0.005121072713888252, -0.016582018369631333, 0.017220585735374373, -0.007470957390063882, -0.03386296267958959, 0.017860449205612677, -0.009953701686798, -0.05419418575549998, 0.0027825820459899827, -0.01696807105762828, 0.04244704716560282, -0.03255879588024314, 0.030541643604298233, -0.001878953447149807, 0.0430992418711049, 0.011649361213789011, -0.017886942555326035, 0.02463005016325882, -0.027972286980479523, 0.03174950115691026, 0.001217289583690057, -0.026187402326915354, 0.04625287827904852, -0.006197627214977337, 0.021706134123437394, 0.030245210027366812, -0.001050649695353009, 0.036127063991737846, -0.022397849746316763, -0.016208906062385446, -0.03529600258440715, -0.008547190877023244, -0.030171588229540698, -0.021892320071150873, 0.017183453847811, -0.026750968125415487, 0.0052814860050102936, 0.03053883224761518, -0.017118868731755884, -0.00323292833135026, 0.010698227845979937, -0.012638663519573124, -0.04028504688168472, 0.03708618490904683, 0.014244455131773397, -0.022743166000882133, 0.01837144377499139, 0.01699900417274325, 0.03373288656595882, 0.016681543743988145, 0.02474718581480719, 0.013802457457975982, -0.003093851073016125, 0.016254215569053015, -0.018264569528922123, -0.011738380246209273, -0.010930241462084603, -0.007177913891353254, -0.0018431649256995162, -0.00910895096426598, 0.005297715284930961, 0.0006588825616572104, -0.004222768716544372, 0.0043059252734794825, 0.0005360476717487142, -0.0014037370500683869, 0.0021167966570083906, 5.676673888883353e-5, 0.00011878771223330235, 0.0006295282934915617, -0.00010641298449956023, 0.00037117631621447504, -0.00025198848552887516, 0.0001603546646262036, -0.0006081946481880239, -0.000250308732545088, 0.00014535550907286487, -0.00036289532775802077, -3.758115981269852e-5, -0.0005182664556121047, 5.060976041895974e-5, 0.0004262736767579805, -0.0014337890306591935, 0.0007721562163955563, 0.0014169281666843963, -0.001687704236217181, 0.0012685774353498006, 0.0032608776533074786, 0.0026821648312672186, 2.6532393028154668e-5, 0.005555000429970042, 0.00790079776881836, -0.0013691240449443863, 0.0036025798886182027, 0.007075449688058509, 0.010095708720134823, -0.004033363020699178, -0.013589413338523324, 0.011817039371322455, -0.007196991986663788, -0.023755520220526256, 0.01700024750616296, -0.012198778385050265, -0.027652109947646563, 0.029038115814960155, -0.0222679271594798, 0.04859838742315427, -0.007083710687608014, 0.02613893162235373, -0.011621935021780496, -0.02558725886603954, -0.03791829990105136, -0.018525455679062313, 0.01958472645715456, -0.03424594300518222, 0.017806557708156742, 0.04228493109898333, 0.0019193133681850835, 0.022471664738328716, 0.018117555362271852, 0.043570695565041284, -0.005077850005426983, 0.013296918675409554, 0.05476393703367409, -0.03581307931691425, -0.015621683988659669, -0.013250076957870177, -0.011800409363464093, -0.025346702007654986, -0.015226551815852182, 0.019923459794640254, -0.01953506322951551, 0.0015281867070760955, 0.026846170025330997, -0.01095434424123924, -0.000590666553712819, 0.023743270717044226, -0.006654657158158407, -0.020138338975051833, -0.007107026097897438, 0.02264245466374955, -0.025720370674171118, -0.0014972176954894478, 0.029613130062426336, 0.014881761429868695, 0.008287335228896102, 0.017293764561001252, 0.014591819872509381, -0.0005607397557893308, 0.01582951297753481, 0.007505109319143381, -0.009529278735169462, -0.006113193868477172, -0.0017716115956683787, -0.004024226355165789, -0.005778291411717425, 0.0017899751853927435, 0.00011105507641301203, -0.0034067293507301834, 0.0024395490402163615, 0.0007564072148234628, -0.001206146338451314, 0.001276441343844368, 0.0003604770953634206, -0.00016958958902858816, 0.000377835023105357, -9.481737053919549e-5, 0.0005324582705314383, -0.00011558829400686123, 0.00022602617302528507, -0.0003971455005100516, -1.3623035878862606e-5, 0.00010285162547997181, -0.0002338227533792405, -0.00012017155946709247, -0.0005422912598098744, 5.133198555220685e-5, 1.3179080445716649e-5, -0.0005631029319894128, 0.00017474026390998376, 0.00024605660782987685, -0.001989471513362871, 0.00019983389202543606, 0.002318311552283548, 0.0013445163953104938, -0.0022763894918287524, 0.003837988989015094, 0.004124367431818309, -0.003574081580682112, 0.003552938813749744, 0.004873106916507931, -0.002076648199669112, 0.007986668028209519, -0.009593261693739892, 0.009263611700149376, -0.0033221109435000065, -0.012370652440187887, 0.014483834827586136, -0.008205446445261767, -0.00577252885755931, 0.024469770896209865, -0.015937622316310355, 0.03242982848910892, 0.010419475062207592, -0.014880131648230406, 0.0009618985484456252, -0.0030128787936884198, -0.04019295611698762, -0.014587838088790031, 0.011265278241256229, -0.03386469940257583, -0.008899089543256624, 0.03805014637371472, -0.0031232819109877673, 0.0006058035479601524, 0.02354913339649855, 0.03627147634557239, -0.013312780830559801, 0.009434136606363745, 0.039532410825701886, -0.031030699719646417, -0.011407487526854516, 0.007661744264354894, -0.012544568626668981, -0.020350507482227935, -0.008352084161287934, 0.020749694609592678, -0.010792160540095535, 0.00045903627399835543, 0.021517313187296206, -0.004376641061732031, 0.0005508438468984266, 0.02092908186426071, -0.0012525027500810556, -0.008030662103714538, -0.008547373789200964, 0.013947224015545679, -0.014510385571570049, -0.0103486274370817, 0.015594932186272092, -0.0013100378916220056, 0.003271157101622739, 0.011358453532757844, 0.009573383565893667, 0.003257796245827501, -0.0035459149248359936, 0.008915853406834776, -0.0045196447688957715, -0.0047334049255472995, 0.0032808689922436338, -0.0032182592997218864, -0.0025840501169304623, 0.0014670090127216122, -0.0012484027338052848, -0.0020875333797286504, 0.0012332475892650747, 0.0002852054803024162, -0.0005307737202510195, 0.0003080105681222343, 0.00038580209890934597, -0.0001846217083998349, 0.0001626823295300012, 0.0002181878539538727, 7.959807493746561e-5, 4.9023153182478496e-5, 0.000183861783046511, -0.00022509652720386828, -0.00017334390127424942, -6.598513470813474e-5, -8.108597113991339e-5, -0.00023767985984865717, -0.0003658123996678742, 2.724057827086294e-5, -0.00013000696481273922, -0.0004992782368401496, -2.150542187889271e-6, 5.6812906741017256e-5, -0.0007415715681252212, -0.0006876831061791407, 0.0007094010668363607, 0.00092371290333841, -0.0021951403279948925, 0.0014753357104566691, 0.0022535052588281176, -0.003070260748582595, 0.00235265151790553, 0.0013337266502467687, -0.0026246558551567857, 0.005716163537444821, -0.006257746270202252, 0.006672570615290516, 0.0015810355639087888, -0.006071578632532945, 0.01064463667731089, -0.003517089599991776, 0.0007754428449993696, 0.01370822328497213, -0.008948597430330324, 0.011414055323398868, 0.005152853909630926, -0.01592804558011954, -0.0010579341307730792, 0.0002081384667777078, -0.022156730289958054, -0.00965155670992963, 0.007700226899675713, -0.022624104174541953, -0.01280325766207592, 0.021228439344696242, -0.008532751042653122, -0.009753941018478695, 0.01731382980093657, 0.018830990140673423, -0.013669895890307593, 0.003039726634058833, 0.023171762004559924, -0.019242985654532686, -0.009192827009491695, 0.009595083753003886, -0.011857988573235594, -0.014250465578274214, -0.0034152146316139284, 0.015692789376740703, -0.0010177759206763052, -4.0967216516143626e-5, 0.01269532500426871, 0.0005046623688488081, 0.0010324418211899446, 0.01224151623693522, 0.001664940176850047, -0.0006287425049992159, -0.006803678918559661, 0.008586179537472467, -0.007147416532807233, -0.008197014510430905, 0.0061550584532368375, -0.004491588647493185, -0.0009356319602898192, 0.007135235678185086, -0.0050920437292903435, 0.0028561309030071657, -0.004380146717369061, 0.0038138775660105195, -0.0008501966884223555, -0.0027437630274743455, 0.002761725346085257, -0.0020412825863677527, -0.0015417459588136467, 0.001808787127411422, -0.0006441682733822795, -0.00036704345093537536, 0.00038808467521300527, -9.032592533602945e-5, -0.0005091057307980515, 0.0002299731251953899, 0.00012839645324019664, -7.397850013099033e-5, 1.458050048138198e-5, 0.0018745908843685421, 0.0018950533044386926, 3.6449522586161776e-6, -2.2447704154108774e-5, -7.744412981712215e-6, -0.0002482680018240463, -0.00011260710349180222, 5.031256738005646e-5, -0.00015753837015707826, -0.00042578205115776556, 2.9314401999513533e-5, -0.00017658481695960882, -0.0003593528291535074, -0.0001308684005404692, -5.272620224152802e-5, -2.547805984210556e-5, -0.000501012493502725, 5.367892918495376e-5, 0.00038663184842211134, -0.0006925476355976378, 0.00020966255806290616, 0.0011001013056551692, -0.0017268816563033823, 0.0011142202551355689, -0.00010956151855180835, -0.001789593658073324, 0.003873037380274646, -0.003636165591492266, 0.0026400098726582473, 0.003770119241383808, -0.0032570959264201275, 0.007505952148792369, 0.0007712292076570783, 0.005497392510044405, 0.0066319482217369686, -0.004203102605982369, 0.007012646799910915, 0.0016869547109370224, -0.008404360582415145, -0.0008579054785054787, 0.0018913570114556136, -0.011184026574363076, -0.005645581394279564, 0.005589248925858211, -0.012085749099675039, -0.008779929014882993, 0.010492705632250465, -0.007228155533593177, -0.011469786943184294, 0.009422829272933109, 0.005565149326573211, -0.011836668775876752, -0.0018536230810622801, 0.009821131905044753, -0.011436665115667167, -0.007693720210862676, 0.003952827463175647, -0.010082477106174647, -0.007119577979944302, -0.0033695001026358713, 0.009772121603629308, 0.00459572124035451, -0.0011011566220341883, 0.008807962139782249, 0.0030592530997922526, 0.0011231560768384396, 0.0068908487020897715, 0.00248559786649411, 0.0021857458573600634, -0.004200415092286976, 0.00626565306968673, -0.00045063704053147763, -0.004652894013499732, 0.0026400270594955765, -0.0033417250150674805, -0.00036333049937900026, 0.0003935878091620716, -0.004981388918822288, 0.002484371999727785, -0.003403207126753454, 0.00046969471889762843, 9.482891946080504e-5, -0.0013422525579450666, 0.0012616611003588604, -0.000317798846404462, -0.0003514715393765018, 0.0005169048238381369, -0.0003707109455595202, -0.00018311117293725977, 0.00027979366058630443, -0.00038275915832923816, -0.00019522221488328125, 0.00011972974785826134, 0.00043018318507238195, -0.00013016788141034463, -0.00015388682226381812, 0.00015711786201440272, 0.00016004722439221772, -4.175872274360506e-5, -3.6145055898609364e-5, 0.00010025219259197605, -0.000129513138579262, -0.0001506154536336704, 0.00034581332433396945, -9.570455454883404e-5, -0.0001893390328418688, 0.00020882353106761945, -2.0455912283550413e-5, -9.727231988310453e-5, -0.0001266481311842896, -7.981790339010579e-5, 0.00015022935826864542, -0.00030585062589241264, -4.423080468806636e-5, 0.00033291492233677387, -0.0003927090303645737, -1.006283801397458e-5, 0.0002483123572787814, -0.00046272299348522534, 0.00019458202716653, -0.0007813089466962214, -0.0006979426022124255, 0.0016211151887000478, -0.002538130346320412, -0.00021088842311364146, 0.0030828721362758326, 0.00017378894448001004, -0.000448459966448183, 0.0021308877353064747, 0.004242019609042722, -0.0009027303266204393, 0.0008519426586317019, 0.005046008576837411, 0.00016840947694643204, -0.002351112893680993, -0.00027813275110406637, 0.003143779587012627, -0.006275727571837549, -0.0030810207262825145, 0.004201528288754682, -0.005656266305685438, -0.004729706280104868, 0.005194240863192305, -0.004156030164185464, -0.007337934485607148, 0.003108412885046327, -0.000857702786572242, -0.007148605660607496, -0.0033106924723853098, 0.0006630302202770111, -0.006129832769052643, -0.004888460788939824, -0.0008584270281381624, -0.005988239407285321, -0.0020390491644980977, -0.004649062084974307, 0.004025396967364964, 0.004813362093180974, -0.002100741272815698, 0.0047525743500802355, 0.003465276583577399, 0.00047164783847185467, 0.003665333072318558, 0.0023969466597087174, 0.002562409150320193, -0.0005097179091094734, 0.0025678342284848345, 0.0029236491811544247, -0.0020848333896310582, 0.0018482523487292801, -0.0015233158140467876, -2.939201197730243e-5, 0.0001951309763774647, -0.0012598989299916496, 0.0009736260087986042, -0.0012167831154185804, -0.0010105274126533067, 0.00014664816135885738, -0.0005969064519414634, 0.0004322069848683274, -7.431596633031287e-5, -0.00025521787311840973, 0.0002957482378745248, -0.00018157853034628263, -0.00012994355235974628, 0.0002129617965634536, -0.0002437824679142667, -6.949883112735508e-5, 0.0001770009792974557, -1.8129505977114064e-5, 7.637287538752701e-5, -5.32679615549839e-6, 0.00013131644701661052, 0.0001122305240244681, -7.853561750877604e-5, -2.030882496860289e-5, 5.865965016508781e-5, 5.007633836846473e-5, -0.00016822721501331037, 5.363934497696047e-5, -5.507729320257978e-6, -0.00037516826985661974, 6.294397563246282e-5, -5.297590947534284e-5, 0.00010139543499235029, -8.742030798419197e-5, -0.00011523612900152042, 0.0003038381556995253, -5.654482695611481e-5, -0.00011128767864702944, 0.0002539188815915203, -0.00016794740131150833, -0.0001546194317903806, -3.2898620246941124e-5, -0.0004071064421219838, -0.00018013017337301115, -0.0006706406809060748, -0.00028042121561540367, 0.00032092393892488546, -0.0006419702263203702, -0.0005665725134401996, 0.0007233965489985105, 0.0007241746741655014, -0.00143926390091808, 0.001251038705535464, 0.0019048387172041997, -0.001187954574474851, 0.0008190717048087995, 0.001362551137079368, -8.736576881058254e-5, 0.0001870432077034885, 8.584602505826703e-5, 0.0034387775522771126, -0.0019683074893855805, -0.001807206550316296, 0.003597453910006099, -0.0020781543645870143, -0.002613997227813178, 0.003363212321840898, -0.0017723593750687927, -0.003933966446979702, 0.00035973096674527015, -0.001798136071345332, -0.0030942025048110895, -0.0021912519129974745, -0.001565109863476684, -0.0025903978514787225, -0.002088963747544749, -0.0017982755572087709, -0.0025268727278721778, -0.00048421632640454064, -0.003214702558111581, 0.001314460950196039, 0.0029263328632728523, -0.0024731883085538746, 0.0018571588361092626, 0.0022216578997745905, -0.0003086701484153692, 0.0015922873823953707, 0.0018152974603461562, 0.0016807766977360084, 7.287410154293031e-5, 0.0005966547967029805, 0.0010527785904253884, -0.0002133052294689366, 0.0007101177772736924, 4.999005124153246e-5, 3.4327984684881293e-5, 0.00022747938329226362, -0.0005217294602385744, 0.00015182193092800746, -8.357943064291755e-5, -0.0005689138509193611, 5.819527282360966e-5, -0.0003726971516618936, 8.648768388372485e-5, -5.213632126867089e-5, -0.0007702476645743788, 0.0007696537949544467, -8.03141699565383e-5, -0.00019814994271603883, 0.00021177559829501969, -6.936258154218607e-5, -0.00011273408757753127, 0.00028521864968233783, -0.00020217910596844051, 2.3309981318292634e-5, 0.00030626861646478525, 3.961846428992466e-5, -8.138076694959144e-5, 0.00032196387495522755, 2.1271870685230088e-5, -3.498864153802752e-5, -3.6660874484705695e-5, -5.281386658047864e-5, -2.7712784784287097e-5, -2.656876867499942e-5, -9.321692656083207e-5, 0.0002018468503734196, 0.00012947246814739942, 4.2393571919196327e-5, 0.00013707668485569077, 7.780933167818585e-5, 0.0006138704436833618, 0.00011932448211506472, -3.5609903010783435e-5, 0.0020290787788933983, -1.8317565168310996e-5, -0.0009555362781010127, -0.00038192484767426407, -2.102882663769626e-5, -0.000473883750400609, -0.0002431851134725653, -6.780289087732338e-5, -2.336095417480935e-5, -0.00019513516184762822, -0.00034817501919983963, 0.0001163539950560355, 0.00028955318876942637, -0.0005224617535035403, 0.00022821324849250422, 0.0003797972790542074, -0.0002840906654407515, 0.00011433760372625269, 0.0004459725201548273, -5.1086055600575e-5, 0.00013591430053842417, 1.4986456841909656e-5, 0.0008087919387184529, 0.00026328410798394554, -0.0002067806054809723, 0.0010341381913431013, 0.00034829794878191676, -0.00015765462910515438, 0.001398604543426676, 0.0013095701577930388, -0.0011857049580783338, -0.0008053669651720647, -0.00011668253198188962, -0.001433015359351795, -0.0011463567781490255, -0.0011595455397191243, -0.000981520367514635, -0.0005229279767572501, -0.0009247886328132345, -0.0005216678913943576, -5.108227643624179e-5, -0.0007972704234647958, 0.00014768513931757526, 0.0004425602896520643, -0.0010703050947555937, 0.00038424003552569794, 0.000620434562001627, -0.000518364912237406, 0.00017571596095744522, 0.000588119759335271, 0.0002449618233377631, -2.653923487720514e-5, 0.00032382402401388193, 0.0004416035766749552, 5.304403050871278e-5, 0.0003633687427534527, 0.0002650351703397279, 7.88351833413287e-5, 0.0002962668257582354, -0.00017879425730839277, 0.0001366017435880615, 0.00016648452736708937, -7.002647805028504e-5, -9.099191259135593e-5, -0.00020726287917027038, -0.00017900143271950194, -3.152318666577384e-5, -0.0003307222671208115, 0.00021163081764484238, 7.666689593116343e-5, -0.00013660926795132448, 0.00014540147830725743, 8.00230307973623e-5, -0.00011817345530995981, 8.48775828751343e-5, 0.00011517355691265381, -6.434797902563454e-5, -7.309232183430996e-5, -2.2732465333940185e-5, -1.9672635324982775e-5, -7.24513776713005e-6, 0.05763283456076993, 0.057632834561718034, -0.010180253007758402, 0.11463515739913034, 0.10450727425786423, 0.04122744866139321, 0.02509195484067119, 0.06637789973719979, 0.05658086447043257, -0.010059313152844253, 0.04655601932999022, 0.039293933481102446, 0.01724233759547907, 0.05656166562509766, 0.02814043973015111, 0.01555127353750953, 0.04371303869216045, 0.037896927546217346, -0.03346762029788786, 0.006694765132123161, 0.0157978214467784, 0.08810527110654279, 0.03473340582280654, -0.05239404197139825, -0.10920632812818144, -0.03114496491848285, 0.08362140740520602, 0.12608780426290034, -0.0464104487103549, -0.06329072603814623, 0.014747005435204338, 0.013866496381123066, 0.0020937089561196723, -0.19623849151861503, 0.02435237675803537, 0.015087516703008905, -0.0044160292123909956, -0.008667540247815865, -0.12730187716043775, 0.015102003724045585, -0.004024859482259876, 0.02335280712588217, -0.011232861899476759, 0.07766960531114002, 0.01570046602205708, 0.0033609277320502126, -0.004611816807071707, 0.0022874537896698396, 0.11648301702788376, 0.030772616538494148, 0.007062114646766232, 0.012467972429219525, -0.2997466808417115, 0.22274049840782179, 0.14253805057545255, 0.017894108987089635, -0.009648464940467814, 0.04611056324296626, -0.18875012198732202, 0.2076940575979857, 0.15636261387317144, 0.03673065974485745, 0.07048768208321018, 0.05925298308048566, 0.15963502019654588, -0.016844034216053176, 0.1938056188707374, 0.0293914022062783, 0.04122595933783676, 0.02752391539330037, 0.07429083028104617, 0.27012860838602865, -0.08342249076426397, 0.18553772555392706, -0.007217275780996469, 0.04152265263460864, 0.010612634873859895, 0.1388559615013306, 0.18308323838603344, 0.07843686348084075, 0.03670072177867947, 0.0408299695966403, 0.012838704496837607, 0.17568647861900472, 0.11367738558973535, -0.693103819731707, 0.05770436672126441, 0.056711480142349495, 0.015238007145526823, 0.14792165184091038, 0.08079996036838498, 0.11699796536902009, -0.042891623687407954, 0.06644340009049492, -0.019775655489770092, 0.10601706538402302, 0.10217309515297425, 0.20164649307496396, -0.04270803752030987, 0.0390691826173883, 0.11474007667311346, 0.13857709506416535, 0.003563840188361138, -0.05477054741128916, 0.006754651029731023, 0.023523822271245293, -0.00124288127695392, 0.018758079800865312, 0.015269521441937483, 0.0204683850717686, -0.00665225076014907, -0.027459754271291676, -0.007320541663707196, -0.0038465622698550775, 0.019392496149271063, -0.023494732404499633, -0.006964916798429746, 0.027257379468710072, 0.012443488658675724, -0.06507664135593556, 0.006472150966433478, 0.006540184294621533, 0.024572813159845903, -0.0152659832297747, -0.006161456747118473, 0.012137332023562495, 0.015805623180420895, -0.037052836931387854, -0.010256713927171516, 0.0132319896113885, -0.001434342558317324, -0.03355329399759189, 0.0041018082901661925, -0.001889227130196806, 0.023112754217860684, 0.010890894180367131, -0.0010619600101372233, 0.0002912480941589185, 0.02427924691261365, -0.0030432353183861946, -0.017023793347299546, 0.020188410143022858, 0.00014964355176753274, 0.010164778051756458, 0.06315182233234956, 0.016622393556580194, -0.005493619977577376, 0.0329185666332904, 0.03028485636903451, -0.0272240641715442, 0.03393040720833614, 0.011809188388802815, -0.008007310890415242, 0.018119153896443495, -0.033143089782155355, 0.021925703072777553, -0.07491098775992325, -0.010870752933058522, 0.011434684163888783, 0.029922715791815598, 0.01313817156094561, 0.021907973626658753, -0.047159527492404575, -0.006681479725361559, 0.008765056554968726, 0.03249793808962712, -0.06984877059256778, 0.022979126491375974, 0.039931483163817276, -0.004180525590744754, -0.007392019575232849, -0.023608282518278546, 0.02298470036403784, 0.01664698794650805, 0.010949429836409806, 0.06754842550073568, 0.04082760664745894, -0.0027731180976579947, 0.03939085400047403, 0.042662689662793046, 0.007344465816487439, -0.017765607084953214, 0.045775868769312576, -2.191831906364601e-5, 0.025838621385830072, 0.016371513360283366, -0.05078058987686791, -0.022083329967330784, 0.02842173928775507, 0.017787966443517482, -0.07267441607037649, 0.007772273769695994, 0.03730508514482977, 0.0020643928622332943, 0.02019114188532079, 0.003269508841270183, -0.045085447937476444, -0.0013239470098230326, -0.023790138145055748, 0.014541892577305277, 0.025516064147190615, 0.008733217671847478, 0.015644936966797855, 0.020138079742302976, 9.846630974610416e-5, 0.034626038626490205, -0.025929630697819294, 0.00838736833056518, 0.9343628638336428, 0.09951153924306719, 0.5788539206606658, 0.7398818341548163, 0.9224105522539917, 0.17981800665179043, 0.45816088308419173, 0.8201131620973069, 0.9042487869244867, 0.2562742209276607, 0.372307957704207, 0.8624873031600423, 0.8294676888053586, 0.44176325908822467, 0.38704066881634613, 0.8559770065183868, 0.7702518082352272, 0.5381527347729461, 0.3979833793484975, 0.8509444845181373, 0.6406309924697089, 0.6870274787472516, 0.3347528283158398, 0.8777456632806958, 0.8813898076490215, 0.32505451408847763, 0.5564929691609765, 0.7566359948915464, 0.31162985781861885, 0.886219016208106, 0.7747860413990064, 0.5311666270232901, 0.9388733153758329, -0.032081769581504854, 0.34785650826852094, 0.8723058565480499, 0.24555174403384053, 0.9067542961300625, 0.7648296688122657, 0.5453966614508244, 0.938459110461786, -0.042289322080025074, 0.23849443817475138, 0.9086351701022671, 0.5992811568672425, 0.7234801936757176, 0.9379906618805346, -0.0518172242970521, -0.01689470462185124, 0.9392927104199614, 0.1459264793455176, 0.928008674869116, 0.5560831412939415, 0.7571997504083045, 0.9394018320874501, -0.0057086878895960536, 0.2367710960375684, 0.9090853639272163, 0.4171411471649564, 0.8417773578450614, 0.9353653713429115, 0.08729478016373045, -0.4333821605617607, 0.8338398820767019, 0.18957136921172574, 0.9200872923721157, 0.32007111811604116, 0.8832559044535777, 0.9292149106258745, 0.13821955881858236, -0.5116144876831106, 0.7881871763794456, 0.2307853225738488, 0.9106242108687477, 0.03644462996348106, 0.9387079796546428, 0.7069495044765212, 0.618616314237664, 0.8945704931021387, 0.2870086815553103, -0.7755214244013131, 0.5297986292853667, 0.19464703187219315, 0.9190262849338282, -0.01120190409148773, 0.939340380340274, 0.6257237099759558, 0.7007064304642655, 0.8598413122039711, 0.3785952215109265, -0.8481038310113767, 0.40341508146287486, 0.20711667238617534, 0.9162971022165737, -0.2562849397115189, 0.9037967661372497, 0.2653665428716673, 0.9013068450379487, 0.7319503297640084, 0.5889310735393597, -0.9353494826966203, 0.08667766361461407, -0.8100616313631752, -0.4753739254997248, 0.2378540756609321, 0.9088020409091776, -0.3769315769731878, 0.8605037170337271, 0.12862979162946428, 0.9306845516063144, 0.6657949436360884, 0.6627577440690133, -0.9385087377605339, -0.041542559529606095, -0.7710508348897066, -0.536449904700446, 0.27367447559046937, 0.8986654120438164, -0.7686717468426183, 0.5400411308746097, -0.24587568819179428, 0.9065676632219555, -0.2871362539875093, 0.8946239369577108, -0.9331032709005933, 0.10897184170434276, 0.3638082334543057, 0.8661075353795126, -0.9392988369793894, 0.014830118384445395, -0.37869482949514843, 0.8596710023350909, -0.9389401999505925, 0.029472170609484975, -0.6608899133681869, 0.667627528633488, 0.4845630008941233, 0.8047957015419724, -0.7610068733443467, -0.5507743135692283, -0.43216150898610234, 0.8341266068892975, -0.6999571914135368, -0.6265835991914069, 0.03394214178108849, 0.9388022178839351, 0.5785704758498614, 0.7401032481297745, -0.46831753202541354, -0.8144152613332895, -0.48806673835113124, 0.8027003857169256, -0.38489672634147504, -0.8569554131705316, 0.27806319183566, 0.8972974192605426, -0.33422575982930863, -0.8779785819866361, -0.44327074983466946, 0.8282636631915159, -0.2828873284170291, -0.8958175889850772, 0.46787263509880833, 0.8145856477582981, -0.0032613356656926566, 0.9394083925377422, -0.08552326586403701, 0.9355129962148914, -0.000689501463160363, 0.939411008455689, 0.04603650533379231, 0.9382818868843507, 0.0045606309135020305, 0.9394032551236763, 0.053013889091621316, 0.9379185593471672, -0.010038346864694259, 0.9393597170251363, 0.03623275258520711, 0.9387132739434448, 0.01570119721591378, 0.9392823534749817, -0.06256659908322003, 0.9373229458960419, -0.011773130397149301, 0.9393413608389551, -0.0439605763568928, 0.9383796116179262, -0.01904470199273265, 0.9392124791719901, 0.010241345076423665, 0.9393562386745101, 0.023365786298473547, 0.9391242378472499, 0.048652603112213595, 0.9381567233036969, 0.0032624857294125823, 0.939412345697917, 0.005503242346975849, 0.9393970652917873, -0.010487821523871269, 0.9393547657461664, -0.0071857928349135, 0.9393901032541789, -0.006746889048380666, 0.9393835487925899, -0.04756615521876037, 0.9382101584472894, 0.03661826022795695, 0.938702559708136, -0.035953678458796746, 0.9387220633505696, 0.011693163649459729, 0.9393403433980324, 0.016294610380710565, 0.939270069878653, 0.005490750668422876, 0.9394000525778472, -0.007092520056296851, 0.9393800201060473, -0.059662326558478376, 0.9375158957449028, -0.03566404366730932, 0.9387325556731138, 0.006108547149787787, 0.9393846622766544, 0.02020368462020305, 0.9391972051225984, 0.031042841052599374, 0.9388984996870956, -0.020672603837036622, 0.9391874095850276, 0.006620654377118045, 0.9393872413183799, -0.004464907692588367, 0.9394008859368166, -0.04065536554846746, 0.9385348939677389, -0.011792036981054051, 0.9393409864583031, 0.000678897242627136, 0.9394141372102687, 0.0007699789562867311, 0.9394293822537201, -0.00630968436364825, 0.9393935301840609, -0.01141615935431384, 0.9393448827486065, -0.04473334627579181, 0.9383402377480334, 0.0005864234442565286, 0.9394144203254186, 0.03927571017372157, 0.9386050374980307, 0.012654730609211521, 0.9393284723251889, -0.008341732569071099, 0.9393724531609091, -0.08320730052560843, 0.9357071589745372, 0.0001452430377385167, 0.9394153134989253, 0.041590182737203385, 0.9384969100117053, -0.013376002279744725, 0.9393177966948801, -0.21376238866038794, 0.9147801631642128, 0.032525793605799554, 0.9388481858025572, -0.04998894841522046, 0.938068152046076, -3.2168945048766403e-5, 0.9394086926005096, 0.027858531762430094, 0.9389976647313096, -0.024102443999870594, 0.9391064738076355, 0.05137824393314935, 0.9380026110233086, -0.019270584987980535, 0.939216015980535, -0.07094016261541446, 0.9367136282111437, -0.0003320080649623143, 0.939410097044336, -0.041080132339509356, 0.9385422784096284, 0.17495733386251278, 0.9230379072932909, 0.02725061955052821, 0.9390250473254166, 0.038589772371527366, 0.9386267053116535, -0.00041191701256350816, 0.939410475735829, -0.020036366682326997, 0.939202106312052, 0.07702492195538865, 0.9362417140337636, 0.039875126962737414, 0.9385710817533327, 0.12702838121361373, 0.9308204103486625, -0.00043077260277420615, 0.9394104427028707, -0.02632601679342612, 0.9390549945251624, -0.13872752643769237, 0.9291441251980574, 0.04634303708081499, 0.9382637393551843, 0.12530055239836832, 0.931065589103403, -0.000482244785196359, 0.9394104443123579, -0.048036043603939295, 0.9382126464948487, 0.04216561923589168, 0.938460387130186, 0.0959306043025816, 0.9345281794832371, -0.00044462612259935444, 0.9394109298330355, -0.041838246013178204, 0.9384884598342513, -0.020822351576258464, 0.9391774535414453, 0.00914187984618979, -0.09292689330876898, 0.035102928598770115, 4.2722494033183155e-9, 0.019307534548149242, -0.1934441855611287, -0.0033016776587323766, -0.07810756821126588, 0.02275619846858615, 0.06531324275037954, -1.4182394660340997e-16, 0.04670387251884041, -0.022579548689397388, 0.10746483048485644, 0.01325259913142778, 0.047747175985821476, -0.04433937547869218, 0.05744472043607049, 0.002835254584775533, 0.1166086910149789, 0.07223761486277346, -0.06352118254356899, 0.045547135071024654, 0.08760070603876528, 0.027172734321977136, 0.016190109621464575, -0.058239910264999126, 0.051543881231571456]
Final objective value:     -2477.4308364343237
)

Now let's evaluate our fits by plotting the residuals

julia
using CairoMakie
res = residuals(post, xopt)
fig = Figure(; size = (800, 600))
baselineplot(fig[1, 1], res[1], :uvdist, x -> Comrade.measurement(x)[1, 1] / noise(x)[1, 1], axis = (ylabel = "RR Residual", xlabel = "uv distance (λ)"))
baselineplot(fig[2, 1], res[1], :uvdist, x -> Comrade.measurement(x)[2, 1] / noise(x)[1, 1], axis = (ylabel = "LR Residual", xlabel = "uv distance (λ)"))
baselineplot(fig[1, 2], res[1], :uvdist, x -> Comrade.measurement(x)[1, 2] / noise(x)[1, 1], axis = (ylabel = "RL Residual", xlabel = "uv distance (λ)"))
baselineplot(fig[2, 2], res[1], :uvdist, x -> Comrade.measurement(x)[2, 2] / noise(x)[1, 1], axis = (ylabel = "LL Residual", xlabel = "uv distance (λ)"))
fig |> DisplayAs.PNG |> DisplayAs.Text

These look reasonable, although there may be some minor overfitting. Let's compare our results to the ground truth values we know in this example. First, we will load the polarized truth

julia
imgtrue = load_fits(joinpath(__DIR, "..", "..", "Data", "polarized_gaussian.fits"), IntensityMap{StokesParams});

Select a reasonable zoom in of the image.

julia
imgtruesub = regrid(imgtrue, imagepixels(fovx, fovy, nx * 4, ny * 4))
img = intensitymap(Comrade.skymodel(post, xopt), axisdims(imgtruesub))

#Plotting the results gives
fig = imageviz(img, adjust_length = true, colormap = :bone, pcolormap = :RdBu)
fig |> DisplayAs.PNG |> DisplayAs.Text

Note

The image looks a little noisy. This is an artifact of the MAP image. To get a publication quality image we recommend sampling from the posterior and averaging the samples. The results will be essentially identical to the results from EHTC VII.

We can also analyze the instrument model. For example, we can look at the gain ratios and products. To grab the ratios and products we can use the caltable function which will return analyze the gprat array and convert it to a uniform table. We can then plot the gain phases and amplitudes.

julia
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.007  missing  missing  missing  missing    1.024  missing
 0.73 hr │ 227.070703125 GHz │ 0.999    1.019  missing  missing  missing    1.015  missing
 0.88 hr │ 227.070703125 GHz │ 1.021    0.993  missing  missing  missing    0.973  missing
  1.3 hr │ 227.070703125 GHz │ 0.993    0.996  missing  missing  missing     1.02  missing
 1.45 hr │ 227.070703125 GHz │ 0.977    0.993  missing  missing  missing    1.028  missing
 1.89 hr │ 227.070703125 GHz │ 1.013    0.937  missing  missing  missing    1.006  missing
 2.04 hr │ 227.070703125 GHz │ 1.007    1.025    0.985  missing  missing    0.994  missing
 2.46 hr │ 227.070703125 GHz │ 1.012    1.016    0.964  missing     0.99    1.013  missing
 2.61 hr │ 227.070703125 GHz │ 0.999    0.967    1.004  missing    0.998  missing  missing
 3.06 hr │ 227.070703125 GHz │ 1.023    1.011    0.999  missing      1.0    1.025  missing
 3.21 hr │ 227.070703125 GHz │ 0.997    0.983     1.02  missing      1.0  missing  missing
 3.62 hr │ 227.070703125 GHz │  1.01    1.065    1.017  missing    0.995    1.033  missing
 3.78 hr │ 227.070703125 GHz │ 1.031    0.973    1.035  missing    1.012    0.992  missing
 4.23 hr │ 227.070703125 GHz │ 1.018    0.967    1.022    0.928    0.989    1.012  missing
 4.37 hr │ 227.070703125 GHz │  1.03    1.013    1.022    0.954    0.993    1.009  missing
 4.79 hr │ 227.070703125 GHz │ 1.033    0.933    1.023    1.041    0.996    0.993    0.977
 4.95 hr │ 227.070703125 GHz │ 1.023    1.017    1.011     1.07    1.042    0.997     1.04
 5.63 hr │ 227.070703125 GHz │ 1.044    1.007    0.982    1.047      1.0  missing    1.026
 6.15 hr │ 227.070703125 GHz │ 1.017     0.95    0.978    1.029    1.018  missing     0.93
 6.72 hr │ 227.070703125 GHz │ 1.008    1.038    1.002     1.02    1.003  missing    0.956
 7.23 hr │ 227.070703125 GHz │ 0.999    0.976    1.015    1.026    1.009  missing    1.016
 7.44 hr │ 227.070703125 GHz │  1.02  missing      1.0    1.035    0.974  missing    1.008
─────────┴───────────────────┴─────────────────────────────────────────────────────────────

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.

julia
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.

julia
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

julia
using AdvancedHMC
chain = sample(rng, post, NUTS(0.8), 10_000, n_adapts=5000, progress=true, initial_params=xopt)

This page was generated using Literate.jl.


  1. Hamaker J.P, Bregman J.D., Sault R.J. (1996) [https://articles.adsabs.harvard.edu/pdf/1996A%26AS..117..137H] ↩︎

  2. Pesce D. (2021) [https://ui.adsabs.harvard.edu/abs/2021AJ....161..178P/abstract] ↩︎