diff --git a/CNN1/ConvolutionLayer.cs b/CNN1/ConvolutionLayer.cs
index da1eef5..e79fc9f 100644
--- a/CNN1/ConvolutionLayer.cs
+++ b/CNN1/ConvolutionLayer.cs
@@ -17,9 +17,7 @@ class ConvolutionLayer : iLayer
public int InputLength { get; set; }
double[,] RMSGrad { get; set; }
public double[] Errors { get; set; }
- public double[] IntermediaryErrors { get; set; }
public double[] ZVals { get; set; }
- double[,] Input { get; set; }
public double[] Values { get; set; }
public double AvgUpdate { get; set; }
public static int StepSize = 1;
@@ -73,66 +71,44 @@ public void Descend(int batchsize)
}
Gradients = new double[KernelSize, KernelSize];
}
- public void Backprop(double[] input, bool useless)
- {
- Gradients = new double[KernelSize, KernelSize];
- for (int k = 0; k < KernelSize; k++)
- {
- for (int j = 0; j < KernelSize; j++)
- {
- Gradients[k, j] += input[j] * Maths.TanhDerriv(ZVals[k]) * Errors[k];
- if (NN.UseMomentum)
- {
- Momentums[k, j] = (Momentums[k, j] * NN.Momentum) - (NN.LearningRate * Gradients[k, j]);
- Gradients[k, j] += Momentums[k, j];
- }
- }
- }
- }
- ///
- /// Calculates the errors of the convolution
- ///
- /// The layer which comes after the convolutional layer
- public void CalcError(iLayer outputlayer)
+ public void Backprop(double[] input, iLayer outputlayer, bool uselessbool, int uselessint)
{
+ //Calc errors
+ double[,] Input = Maths.Convert(input);
if (outputlayer is FullyConnectedLayer)
{
//Errors with respect to the output of the convolution
//dl/do
- IntermediaryErrors = new double[outputlayer.InputLength];
+ Errors = new double[outputlayer.InputLength];
for (int k = 0; k < outputlayer.Length; k++)
{
for (int j = 0; j < outputlayer.InputLength; j++)
{
- IntermediaryErrors[j] += outputlayer.Weights[k, j] * Maths.TanhDerriv(outputlayer.ZVals[k]) * outputlayer.Errors[k];
+ Errors[j] += outputlayer.Weights[k, j] * Maths.TanhDerriv(outputlayer.ZVals[k]) * outputlayer.Errors[k];
}
}
- //Errors with respect to the filter
- Errors = Maths.Convert(Convolve(Maths.Convert(IntermediaryErrors), Input));
}
if (outputlayer is ConvolutionLayer)
{
var CLOutput = outputlayer as ConvolutionLayer;
//Flipped?
- IntermediaryErrors = Maths.Convert(CLOutput.FullConvolve(CLOutput.Weights, Maths.Convert(CLOutput.IntermediaryErrors)));
- Errors = Maths.Convert(Convolve(Maths.Convert(IntermediaryErrors), Input));
+ Errors = Maths.Convert(CLOutput.FullConvolve(CLOutput.Weights, Maths.Convert(CLOutput.Errors)));
}
if (outputlayer is PoolingLayer)
{
var PLOutput = outputlayer as PoolingLayer;
int iterator = 0;
- IntermediaryErrors = new double[ZVals.Length];
+ Errors = new double[ZVals.Length];
for (int i = 0; i < ZVals.Length; i++)
{
if (PLOutput.Mask[i] == 0) { continue; }
- IntermediaryErrors[i] = PLOutput.Errors[iterator];
+ Errors[i] = PLOutput.Errors[iterator];
iterator++;
}
- //Errors with respect to the filter
- Errors = Maths.Convert(Convolve(Maths.Convert(IntermediaryErrors), Input));
}
+ //Calc gradients (errors with respect to the filter)
+ Gradients = Convolve(Maths.Convert(Errors), Input);
}
- public void CalcError(double useless) { throw new Exception("The convolution layer is never an output layer"); }
///
/// Calculates the dot product of the kernel and input matrix.
/// Matrices should be size [x, y] and [y], respectively, where x is the output size and y is the latent space's size
@@ -151,7 +127,6 @@ public void Calculate(double[] input, bool isoutput)
///
public void Calculate(double[,] input, bool isoutput)
{
- Input = input;
var output = Convolve(Weights, input);
ZVals = Maths.Convert(output);
if (!isoutput) { output = Maths.Tanh(output); }
diff --git a/CNN1/FullyConnectedLayer.cs b/CNN1/FullyConnectedLayer.cs
index 404754a..78153ca 100644
--- a/CNN1/FullyConnectedLayer.cs
+++ b/CNN1/FullyConnectedLayer.cs
@@ -112,12 +112,54 @@ public void Descend(int batchsize)
BiasGradient = new double[Length];
}
///
- /// Descent for other layers
+ /// Backpropegation of error and calcluation of gradients
///
/// Previous layer's values
/// Whether the layer is the output layer
- public void Backprop(double[] input, bool isoutput)
+ public void Backprop(double[] input, iLayer outputlayer, bool isoutput, int correct)
{
+ //Calculate error
+ if (isoutput)
+ {
+ Errors = new double[Length];
+ for (int i = 0; i < Length; i++)
+ {
+ Errors[i] = 2d * ((i == correct ? 1d : 0d) - Values[i]);
+ }
+ }
+ else
+ {
+ if (outputlayer is FullyConnectedLayer)
+ {
+ var FCLOutput = outputlayer as FullyConnectedLayer;
+ Errors = new double[Length];
+ for (int k = 0; k < FCLOutput.Length; k++)
+ {
+ for (int j = 0; j < Length; j++)
+ {
+ Errors[j] += FCLOutput.Weights[k, j] * Maths.TanhDerriv(outputlayer.ZVals[k]) * FCLOutput.Errors[k];
+ }
+ }
+ }
+ if (outputlayer is ConvolutionLayer)
+ {
+ var CLOutput = outputlayer as ConvolutionLayer;
+ Errors = Maths.Convert(CLOutput.FullConvolve(CLOutput.Weights, Maths.Convert(CLOutput.Errors)));
+ }
+ if (outputlayer is PoolingLayer)
+ {
+ var PLOutput = outputlayer as PoolingLayer;
+ int iterator = 0;
+ Errors = new double[Length];
+ for (int i = 0; i < Length; i++)
+ {
+ if (PLOutput.Mask[i] == 0) { continue; }
+ Errors[i] = PLOutput.Errors[iterator];
+ iterator++;
+ }
+ }
+ }
+ //Calculate gradients
for (int i = 0; i < Length; i++)
{
for (int ii = 0; ii < InputLength; ii++)
@@ -140,58 +182,6 @@ public void Backprop(double[] input, bool isoutput)
}
}
}
- ///
- /// I used the following intuition to work out this method of backpropegation,
- /// because I could not find an explanation anywhere online:
- /// "Error is how much you're wrong, adjusted for how much your superior cares and how much he's wrong"
- /// I then realized that this applies to convolution as much as it does normally.
- /// So that means the error, with respect to any given input value, is defined the same as normally.
- /// In other words, you can use the same formula as normal, but calculate it with convolution
- /// This is done like so: "Error += output.weight * output.error * tanhderriv(output.zval)"
- /// With respect to the given indices: i, ii, j, jj.
- /// All adjusted for convolution, demonstraighted below.
- ///
- ///
- public void CalcError(iLayer outputlayer)
- {
- if (outputlayer is FullyConnectedLayer)
- {
- var FCLOutput = outputlayer as FullyConnectedLayer;
- Errors = new double[Length];
- for (int k = 0; k < FCLOutput.Length; k++)
- {
- for (int j = 0; j < Length; j++)
- {
- Errors[j] += FCLOutput.Weights[k, j] * Maths.TanhDerriv(outputlayer.ZVals[k]) * FCLOutput.Errors[k];
- }
- }
- }
- if (outputlayer is ConvolutionLayer)
- {
- var CLOutput = outputlayer as ConvolutionLayer;
- Errors = Maths.Convert(CLOutput.FullConvolve(CLOutput.Weights, Maths.Convert(CLOutput.IntermediaryErrors)));
- }
- if (outputlayer is PoolingLayer)
- {
- var PLOutput = outputlayer as PoolingLayer;
- int iterator = 0;
- Errors = new double[Length];
- for (int i = 0; i < Length; i++)
- {
- if (PLOutput.Mask[i] == 0) { continue; }
- Errors[i] = PLOutput.Errors[iterator];
- iterator++;
- }
- }
- }
- public void CalcError(double correct)
- {
- Errors = new double[Length];
- for (int i = 0; i < Length; i++)
- {
- Errors[i] = 2d * ((i == correct ? 1d : 0d) - Values[i]);
- }
- }
public void Calculate(double[] input, bool output)
{
var vals = new double[Length];
diff --git a/CNN1/NN.cs b/CNN1/NN.cs
index 824988d..f305c67 100644
--- a/CNN1/NN.cs
+++ b/CNN1/NN.cs
@@ -69,17 +69,13 @@ public void Run(double[] input, int correct, bool testing)
}
if (!testing)
{
- //Errors
- Layers[NumLayers - 1].CalcError(correct);
- for (int i = NumLayers - 2; i >= 0; i--)
- {
- Layers[i].CalcError(Layers[i + 1]);
- }
//Backprop
- Layers[0].Backprop(input, NumLayers == 1);
- for (int i = 1; i < NumLayers; i++)
+ for (int i = NumLayers - 1; i >= 0; i--)
{
- Layers[i].Backprop(Layers[i - 1].Values, i == Layers.Count - 1); continue;
+ bool isoutput = i == Layers.Count - 1;
+ iLayer outputlayer = isoutput ? null : Layers[i + 1];
+ double[] inputvals = i == 0 ? input : Layers[i - 1].Values;
+ Layers[i].Backprop(inputvals, outputlayer, isoutput, correct);
}
}
//Report values
diff --git a/CNN1/PoolingLayer.cs b/CNN1/PoolingLayer.cs
index 4c81deb..cda6976 100644
--- a/CNN1/PoolingLayer.cs
+++ b/CNN1/PoolingLayer.cs
@@ -16,9 +16,7 @@ class PoolingLayer : iLayer
public int Length { get; set; }
public int InputLength { get; set; }
public void Descend(int anint) { }
- public void Backprop(double[] anarray, bool abool) { }
public iLayer Init(Random arandom, bool abool) { return this; }
- public void CalcError(double adouble) { }
//Pooling stuff
public int PoolSize { get; set; }
public double[] Values { get; set; }
@@ -30,8 +28,9 @@ public PoolingLayer(int poolsize, int priorsize)
Values = new double[Length];
ZVals = new double[Length];
}
- public void CalcError(iLayer outputlayer)
+ public void Backprop(double[] input, iLayer outputlayer, bool uselessbool, int uselessint)
{
+ //Calc errors
if (outputlayer is FullyConnectedLayer)
{
var FCLOutput = outputlayer as FullyConnectedLayer;
@@ -47,7 +46,7 @@ public void CalcError(iLayer outputlayer)
if (outputlayer is ConvolutionLayer)
{
var CLOutput = outputlayer as ConvolutionLayer;
- Errors = Maths.Convert(CLOutput.FullConvolve(CLOutput.Weights, Maths.Convert(CLOutput.IntermediaryErrors)));
+ Errors = Maths.Convert(CLOutput.FullConvolve(CLOutput.Weights, Maths.Convert(CLOutput.Errors)));
}
if (outputlayer is PoolingLayer)
{
@@ -61,6 +60,7 @@ public void CalcError(iLayer outputlayer)
iterator++;
}
}
+ //There are no gradient with respect to a pooling layer
}
public void Calculate(double[] input, bool useless)
{
@@ -70,7 +70,7 @@ public void Calculate(double[,] input, bool useless)
{
if (input.GetLength(0) % PoolSize != 0 || input.GetLength(1) % PoolSize != 0)
- { throw new Exception("Unclean divide in PoolSizeing"); }
+ { throw new Exception("Unclean divide in PoolSizing"); }
double[,] output = new double[input.GetLength(0) / PoolSize, input.GetLength(1) / PoolSize];
var mask = new double[input.GetLength(0), input.GetLength(1)];
int currentx = 0, currenty = 0;
diff --git a/CNN1/WBs.txt b/CNN1/WBs.txt
index 9963e52..0dd2c64 100644
--- a/CNN1/WBs.txt
+++ b/CNN1/WBs.txt
@@ -1 +1 @@
-5,f,100,784,0.0587671494832893,0.0560472400534123,0.0583327190892294,0.0574426299054707,0.0597136335696061,0.0590004098412179,0.0595966170526377,0.0591687736033949,0.0556170318724305,0.0573836027057412,0.05892578793101,0.0588248999879507,0.0558186469641569,0.0579486357599386,0.0554257102091475,0.0584377882409914,0.0590670467639788,0.0577395084995467,0.0596938417807503,0.0566424747241277,0.055683016013105,0.0562924465656951,0.0554877313373165,0.0595305293825506,0.0559973702331565,0.057252213556415,0.0589410694998644,0.0565102417229007,0.0583524615973234,0.056592779178126,0.0593038188825874,0.0583066254593149,0.0553794352549824,0.0559234000330657,0.0574835348419305,0.0593140322000338,0.0585583198196757,0.057801968424838,0.060604948928858,0.0575082338674308,0.0552805597044576,0.0572271191700566,0.0573327390566734,0.058150492029241,0.054647856576641,0.054115957035435,0.0544662974799872,0.0555761497187185,0.0552745099187773,0.0556203175911934,0.0585493355586856,0.0592802042911724,0.0578696162482497,0.0593034931283475,0.0585858934425913,0.0585315892621776,0.0591238959501226,0.0559066798955802,0.0589231143815316,0.0582232744029204,0.0573834011188982,0.0559795935024622,0.0583564303793401,0.0570166768123941,0.0577888480183623,0.0612279405018358,0.062492246854614,0.0639574864576011,0.0589069153894993,0.0516738815139516,0.042205201295943,0.0332029066047824,0.0213180567371741,0.0209213982162027,0.026730616463965,0.0380038395655868,0.0418818125694892,0.0456056835137903,0.0472138666184503,0.0540531752016879,0.0561226688049852,0.0561385761529781,0.0584163910492533,0.0568747655741407,0.059228880722867,0.0557632927423206,0.0586266064275882,0.05695614039101,0.0556040257972836,0.0581563265078447,0.0564527548204518,0.0541920506920348,0.0507482814109917,0.053167627093449,0.0543030356105212,0.0481912435173817,0.0432306714561288,0.0299784553020879,0.00326023387647653,-0.00329471670840946,-0.0189214184022371,-0.0136296310494447,-0.0047806553800937,0.0139786225101485,0.0276564875941195,0.041621531241115,0.0462249695131599,0.0568604791005115,0.059568071207888,0.0568467872884339,0.0581998391223333,0.0592155683567923,0.0582551223351364,0.0573590575501344,0.0578702260682277,0.0561346837243672,0.0538380812469964,0.0554429081347967,0.0478886031815127,0.0351574238648606,0.0324463254908366,0.0284371676161262,0.0338037741415177,0.0346314036731937,0.0306509932965905,0.0181852720786106,0.00443554907140463,-0.0206680684786166,-0.0259782272770861,-0.0262580038192541,-0.00813466547069661,0.00695560450518482,0.0363232186524212,0.0443770056120999,0.0576713702610735,0.0663381291188805,0.0565653882875688,0.0559334016747224,0.0550542293040999,0.0561369262148396,0.0591036314762244,0.0562627805584161,0.0578824698649801,0.054949364192656,0.0583028374250258,0.0544658513269809,0.0375204943594093,0.0286430855493216,0.0249934137394963,0.0324811017098574,0.0394868497278728,0.0546691212638086,0.0564825283067544,0.0354096679285586,0.0123917009964826,-0.000275797166378216,-0.000512886488500056,0.0103621624768858,0.0288020606044625,0.033799954953524,0.0272930445467764,0.0301239574550349,0.0422588914772352,0.0576149808600229,0.0616600771795263,0.0539920821073553,0.0580249487721865,0.0579373822639411,0.0553564508540091,0.0574722065936195,0.0558424790279597,0.0571383269355593,0.0590501247494264,0.0481415140455935,0.0255953579383033,0.0201308004387442,0.0239546824677162,0.033858003923066,0.0330314243027827,0.0408613548676948,0.0459160265704554,0.0267394299888778,0.0199046074058047,0.0182895203009367,0.023800674234506,0.0488380664175759,0.0608312372528348,0.0512378611978733,0.0495433645440045,0.0228658451058573,0.0246122203367092,0.0446004916807979,0.0663963979741391,0.0565702472884916,0.0595831208417839,0.058929846569657,0.0569180663057926,0.0593162723209767,0.0575753482372871,0.0582972971310857,0.0433205928291693,0.026727947037397,0.00412036410190239,-0.00776766216206905,0.00484557810295673,0.000164279748681119,0.00380140350046604,0.00934311786694738,-0.00279278787413716,-0.0157887913907745,-0.0128622737440589,-0.000498585170729206,0.02138162860439,0.0316479863701032,0.0292247139045977,0.021516896875541,0.0174975814925713,0.0217684902194595,0.0173773878026985,0.038623300987261,0.0563326531693306,0.0553123966804185,0.0591784775661943,0.0594792754265539,0.0574187698823842,0.0569642290527905,0.0542984901438841,0.0504622372822104,0.0335072967131265,0.0120596593092897,-0.00944645303644997,-0.0173917177278457,-0.0241695316916613,-0.0249479447034577,-0.0229112123549659,-0.0334825617691925,-0.0604750460828933,-0.0702393565369473,-0.0717567814737481,-0.0484499885192626,-0.0170971989833019,-0.0109526036324219,-0.0037506619404093,-0.00792811946165284,0.00914541371290201,0.0400513410493159,0.0298350248072764,0.0343823673887944,0.057325859780525,0.0595661519843476,0.0585392539161254,0.0564759605517408,0.0553657618851841,0.0544871070073926,0.0524088501605125,0.042922235651267,0.0199611029523556,0.00494936109522007,-0.0113109442161099,-0.0185123254296896,-0.0321182869421491,-0.0245883559992614,-0.0281630222620215,-0.0566979370931377,-0.0863853948042562,-0.0973308122907171,-0.0827411333582076,-0.0491995670688686,-0.0259240990088577,-0.0149280453401204,-0.0123279951976459,-0.0174407924062754,0.0125644585348172,0.0567125009697188,0.0463648276890823,0.0382111673817462,0.0512516972111558,0.0597337683702044,0.0570265202628058,0.0592126156107941,0.0568093733355053,0.0561492887033594,0.0523986326101145,0.0389339038929391,0.0247158259334146,0.0201605405328587,0.00789106849970457,0.00856288820200035,0.00725669166126065,0.0114511856450095,-0.00650310928755354,-0.0485945383148315,-0.0724931030543305,-0.0757758979605895,-0.0367896008449595,0.01081713833143,0.0194154147136142,-0.00830848022034929,-0.0223687432230698,-0.0195659433519625,0.0218022415891761,0.0718024006060069,0.0638824932815065,0.0550510475305629,0.0520632861423526,0.0593727938646225,0.0574909721231727,0.0597634954255122,0.058707134087163,0.0559656300371283,0.0534121461608068,0.044158571468173,0.0384693198930341,0.0491181690877568,0.0537042511948805,0.0577535022982035,0.0575245255964724,0.0385766216897848,0.00336974238396471,-0.031765026289873,-0.0441108511653319,-0.0149968641510321,0.053827117311678,0.0943884012424309,0.0506454905813527,-0.001599919509521,-0.0221043998388251,-0.00714400511208507,0.0193134126165166,0.0687629162980644,0.0606823741891114,0.0624808868170248,0.0572299894926713,0.0614018949431686,0.0567387396547069,0.0584230108537184,0.0593066757340663,0.0581702980563195,0.0534009303955525,0.0463460468185943,0.0552381414259988,0.077626416395428,0.0803726570232466,0.0841130959564246,0.0632370991719302,0.0344660179126328,0.0113522930777825,-0.0109484566322931,0.0118324612538362,0.0689754586275023,0.139013626085524,0.135485242463095,0.0625618542254553,-0.00836003044232708,-0.0310231818721735,-0.0139114136449519,0.0188771669682397,0.0461881853544792,0.0493606443310154,0.0635795012489905,0.0596019787820377,0.0585700179100805,0.057803905055363,0.0580626437133065,0.0559133557583104,0.0582892263749493,0.0589758689438383,0.0567412324765619,0.0654985143129772,0.0837827603786163,0.102036703889689,0.0862822628034226,0.0614047928427083,0.0199185030608803,0.00971628330029743,0.0170121577500735,0.0569440406837996,0.141083903491617,0.176851495092317,0.125699374643935,0.0247826864495375,-0.0343099472251675,-0.0436726073386893,-0.035684320829337,0.000248782805738625,0.0220987622558361,0.045707691496039,0.0593387403986653,0.0620854449065542,0.0639789239327006,0.0573901997599681,0.0585154943017113,0.0570318495527249,0.0573201708954132,0.056130141234184,0.0578131833198537,0.0722107917516423,0.094651061065029,0.100532606081214,0.0770936600374751,0.0346867438700143,0.0138651034409917,0.00157803079669816,0.0307483045476463,0.0809383733541303,0.147208620610831,0.135180487187736,0.0497861292002755,-0.0369248330718999,-0.0779056218092401,-0.0735482752049378,-0.057752310487116,-0.0172572465831169,0.0106640506220454,0.0343647926410179,0.0492105002262541,0.0575152896511145,0.0610158212737387,0.0593233525614843,0.059051850012182,0.059924400608965,0.0571600117696571,0.0588042083478398,0.0587672303469525,0.067511822371087,0.085316500925602,0.0750091872035809,0.0525941960735824,0.0125524158595608,-0.0126903205109255,-0.0162449967279925,0.0221674895763074,0.0693772666656876,0.0970368430028836,0.0597946347198431,-0.0240970990636995,-0.0890264212347163,-0.103078684871206,-0.0890365986131605,-0.0628182338489357,-0.0165309678610002,0.00927495833165746,0.0323303353132757,0.0467887630286327,0.0605158616061227,0.0624219931582631,0.0595111026300364,0.0581135907411884,0.0585642320546147,0.0569978556510217,0.0574059325996158,0.0587738841136331,0.0633359141326604,0.0674327012541391,0.0513864571931308,0.0232010529798547,-0.0139947066914194,-0.0262259943858269,-0.0216666004473563,0.0107337634903621,0.0419893009773517,0.0318185864611583,-0.00827336561672041,-0.0756051145554542,-0.107197349519004,-0.103284733241248,-0.0906627319632689,-0.0536888787491489,-0.0177023335031585,0.0192562300213218,0.0244792527790772,0.0438501948838653,0.0601298802477899,0.0578145919999034,0.0584909233816499,0.0591066113168041,0.0583762382979304,0.0562719236761692,0.0576336599563912,0.0551597121860969,0.060631521347622,0.0485951526810465,0.0195148675791173,-0.0110071004329065,-0.0299836073869558,-0.0367395552056916,-0.0249307892503607,0.0040829612200493,0.00551146079229996,-0.0244246529603945,-0.0650099417420913,-0.101986220738382,-0.114714562480749,-0.105862956102445,-0.084869280112017,-0.0408651219190684,-0.017072307425211,0.00392558330968536,0.0308029812910875,0.0453971501311411,0.0589598049046903,0.054984828537312,0.0598439542199436,0.0568152080429256,0.0567677242217881,0.0560389291265485,0.0605402967924369,0.0615587598257536,0.0494828398914186,0.0328275689893515,0.00601013395005352,-0.0101628594194827,-0.0101633311766128,-0.0287899686197806,-0.0182185590049042,-0.0164035145626635,-0.0351243721308926,-0.0803424792038283,-0.113622031524562,-0.124068965885931,-0.114493119420921,-0.107406421387035,-0.0608021041324503,-0.0357131095358892,-0.00776458386896597,-0.00338211115661051,0.0219478864404849,0.0331499664065837,0.0502826682695905,0.0518182123480819,0.0576353157458149,0.0584968799146174,0.0596049699910346,0.0581695918080549,0.0611477819264649,0.0638325349413152,0.041231366819912,0.0128215932471359,0.00556161641356924,0.0110949385243847,0.00782568547018562,-0.00490864264633157,-0.0239316690904747,-0.0495513819135449,-0.0830592495379246,-0.122473573749982,-0.133827073682519,-0.11671941135473,-0.102867035785533,-0.073411823839973,-0.0303606852984543,-0.00784155154191345,0.00799041218322791,0.0187124120371467,0.0266771516128459,0.0348766711271643,0.04519792076173,0.0503554539810756,0.0549561828334711,0.0568506087369038,0.0553268910859005,0.0580631427882771,0.0603247984807467,0.059709500497194,0.0363335286109962,0.0127911864440942,0.0191017372764157,0.027440884301573,0.023359483326554,0.00238254946091934,-0.0243911232345847,-0.0683091474224998,-0.106762979687174,-0.130841576439658,-0.127524058071998,-0.0903462043638982,-0.0444826246884946,-0.0107025333215416,0.0178933658736173,0.0305239156254175,0.0352108006721107,0.0316234919281391,0.0284174386435885,0.0259494526477384,0.0395979547321605,0.0524546620403433,0.0587438029771933,0.0592757030297066,0.056565166913071,0.0560096782448316,0.0574706951057708,0.0543982647430099,0.0416376433410709,0.0188681557676683,0.0363203208932434,0.0559828072676111,0.0451924742647037,0.0357386460127583,-0.00203877554336372,-0.0497500637782679,-0.0677274730133354,-0.0853922817832545,-0.056617204984684,-0.0200645636128817,0.0318503340999612,0.0601777656456842,0.0767709945112258,0.0702548428317714,0.0508405134867196,0.0417572294094035,0.038542985942637,0.0256122801818993,0.0395455511043477,0.052851594064063,0.0597216609881456,0.0558927161979726,0.0565212052210472,0.0587720114137065,0.0565915483510442,0.0552381250344684,0.0465763035200326,0.0384732533516854,0.0468437676989951,0.0671935513461482,0.0688040129751065,0.0618849598666268,0.0377807533054464,0.023168493739557,0.0145564406954989,0.0166239918042474,0.0427300276817354,0.0758645065011196,0.0992460267192212,0.104838082442404,0.0852700382369407,0.0680496378872237,0.0527248776929765,0.0510989826016092,0.0445489382020526,0.0346938391358639,0.0420112559000645,0.0587137567173318,0.0570638927146737,0.0554006123267392,0.0569277518493584,0.0561376804328092,0.0551935033947305,0.0542469839999964,0.0503716605310516,0.0513700287416081,0.0569390850185689,0.0655368848169182,0.082467375173008,0.0856243127982526,0.0745727030349331,0.0787875075869429,0.0803103887843452,0.0873585323861168,0.0958259218303254,0.0972490758734879,0.105443465348919,0.0898024897576994,0.080524600351059,0.0735830663424001,0.0735430123386035,0.064090114986895,0.0504326855545162,0.0509716507247503,0.0526025019198672,0.0565219692335668,0.0562098411815331,0.056191531788421,0.05918795264236,0.0562981938878499,0.058916846201568,0.059175181330848,0.0522280376894775,0.0537830910455369,0.0489100050937442,0.0440816349130061,0.0425501824611788,0.0339137573570562,0.03500206737226,0.0463279668139472,0.057303444816664,0.0547891815706126,0.0618179532982481,0.0659649249547578,0.0867651239159504,0.0859970356574684,0.0909942005885353,0.0861686629052942,0.0840651668672511,0.0730290084256536,0.0634514476107021,0.0568108714029039,0.0572492625426716,0.0584984267924993,0.0564561860803059,0.0555303011946259,0.0589145908816808,0.0564877936163215,0.0593305123135929,0.057213205765802,0.0552086536017796,0.0522894878553636,0.0471620340138771,0.0255552778910746,0.010241065295824,-0.00744222330398199,-0.0160076184934093,-0.00790650995493807,0.0157147477235812,0.0266524527036114,0.0286560830044887,0.036976554285864,0.0515341821751274,0.0655715678266156,0.0723630893883533,0.0764199762351239,0.0741413921606522,0.0681129746411976,0.0595914089653748,0.0593502290432358,0.0571001461719196,0.0589531840202954,0.0557501534489067,0.0583553792379546,0.0583700390408526,0.0560230554941396,0.0591122896779898,0.05950562030771,0.0582359717029182,0.057072721055812,0.0537482435902983,0.0413737065783415,0.0282808381184945,0.014549282676195,0.00978343861945135,0.0101337702413491,0.0178356728589734,0.0193872132937593,0.0212608248393383,0.0237366313153429,0.0304914817679474,0.0379999741714171,0.0537164164966299,0.0611931550508958,0.0657278658607921,0.0598576408003775,0.0570424325253761,0.0594892540380613,0.0589911745392338,0.056215810256129,0.0583830112397389,0.0592709301873486,0.0574988987950338,0.0594695212634768,0.0576880961790012,0.0579421106848376,0.0557279511684413,0.0574520203282493,0.0576191185057657,0.0565459919909227,0.0535212133380107,0.0558512299084128,0.0544938294129006,0.0549141719943511,0.055209828227907,0.0518255111540978,0.0495120740760618,0.0490601992530891,0.0510068753911029,0.0535058989816739,0.05788521246117,0.0571477075234031,0.0573034388685272,0.055793223361547,0.0577504351708095,0.0553224216089692,0.0556760316083433,0.0582588501038379,0.0597005798619468,0.0561624354927957,-0.0529261169733513,0.249326118118144,0.249577143764248,0.252110655491967,0.250581951806428,0.250395935511421,0.249822229709799,0.251220453375916,0.247901053980362,0.250244041825674,0.251462658388075,0.250667682790397,0.249775526072778,0.251659526222865,0.24992314880067,0.24996643130987,0.249448421982573,0.250727574427545,0.24779367523642,0.248754971932723,0.248152287419828,0.250921562079938,0.247934575534693,0.251038247604213,0.249679285605021,0.249576765339478,0.251881645188489,0.249886627125785,0.250879313275429,0.251353278998286,0.248826573405365,0.24916469101385,0.250603114010524,0.251646184331335,0.24815321863004,0.247813828036201,0.251353746276465,0.251397540748808,0.250817394775586,0.249712196698772,0.247553044830118,0.24900778061146,0.24928259353191,0.249187405429369,0.249288061036153,0.249407520926406,0.250025492602398,0.250218580438104,0.252977914946478,0.251459076146424,0.249713127450903,0.249891889965036,0.252057760926259,0.251004955237368,0.247977967012367,0.250234386897021,0.249160086144705,0.247885554698829,0.249351548764773,0.250062777395426,0.250166690933232,0.250428498016225,0.248094646163376,0.250838730436206,0.247061823216295,0.252334040464616,0.251016409521108,0.25308855864297,0.245783546748705,0.247322471054034,0.251908425771187,0.256235164808006,0.262028150843193,0.262920650209325,0.261203848050924,0.263191242335837,0.263009580580262,0.258676808371578,0.256305435890193,0.253326655042423,0.250020115272326,0.248354407449817,0.25076525278598,0.250235138620244,0.250033086338833,0.248544169626411,0.250277635747202,0.250036554470767,0.249701909954851,0.251342313873557,0.250564178330788,0.249564552944223,0.247535199430836,0.249417668439997,0.246387736622729,0.243073238284868,0.235753131784077,0.22773545342224,0.228413017792604,0.246599906139156,0.255134975531645,0.264675695580625,0.277154299034873,0.282261213272179,0.283315443669164,0.275446747998448,0.268252910140584,0.258497165006011,0.255494544234313,0.250849889193546,0.248659357482314,0.250162088181224,0.248607226438607,0.250228699359283,0.248460382949193,0.25006948975347,0.249309454690099,0.247811715483823,0.246616974942476,0.241934100528936,0.235320220011739,0.22109881321684,0.189401438591006,0.163761865355788,0.125138569507415,0.0974088099780612,0.0794838372271469,0.0820402989161639,0.0865635717886591,0.100173746664146,0.146008847901535,0.189980202947558,0.231586106434624,0.251744426230093,0.263432924734122,0.253976898023885,0.255506947097571,0.248289114130878,0.245563914253242,0.249498618153152,0.248545451939545,0.251593728221151,0.251998220413072,0.250987758590369,0.248207892560508,0.246048399216743,0.230468019781039,0.208109909247874,0.179125284897079,0.126172654279125,0.0629309526695483,-0.00543386121631304,-0.0841615125434279,-0.130296898930857,-0.148926115522279,-0.16434946372531,-0.172416255771154,-0.161761990391577,-0.129553927310937,-0.0476050666018554,0.044678377128181,0.119566907794073,0.173522248141079,0.226444979247693,0.247551697815109,0.247525145238636,0.244951165862666,0.246411296644605,0.250330937718908,0.248761486957853,0.249887392296978,0.249784031477932,0.243818251295251,0.229610683682205,0.209774901167064,0.176276898732083,0.105426972558224,0.0281875149025961,-0.0597059560415266,-0.12796806933636,-0.181853389279261,-0.224142018695392,-0.248807551177139,-0.250960227603192,-0.252744191734786,-0.248666643554498,-0.22963038861254,-0.177190954474727,-0.0911663583915109,0.0089671309359041,0.0958091264347853,0.18605342964427,0.236417546556802,0.246020476115459,0.24014722330869,0.246881673196786,0.250253331990566,0.25057998946343,0.251043261713569,0.249334864201471,0.240939497684379,0.21558457618252,0.183446642784832,0.137225911656394,0.0536528502467004,-0.038212310094149,-0.104107541763364,-0.179267339056504,-0.229505213915946,-0.24984794146024,-0.233872049021487,-0.217489217174404,-0.21605140127246,-0.229824387737478,-0.227072906866704,-0.196581382591089,-0.148915411807131,-0.0631200771981955,0.0257212853792922,0.136325054286082,0.216288288257171,0.239013671661507,0.241570907573561,0.246255462620823,0.248031244681189,0.249153177900185,0.250150596766378,0.246468462374147,0.234169134995705,0.213846386729896,0.175115132983249,0.116719018773517,0.0412349630657421,-0.0437912374159219,-0.123111491209928,-0.186421409359188,-0.199906629989888,-0.180836123037342,-0.119055607859215,-0.0716284073827049,-0.0698825700174294,-0.11423108272518,-0.154623805310333,-0.168411143395906,-0.160637072714584,-0.111572156934774,-0.0329933722567202,0.071550135610264,0.177294928614474,0.21789013595823,0.236985505238997,0.245455512989751,0.251693608426278,0.252093640379757,0.249357226774166,0.248057844465577,0.236396830825628,0.219211157341916,0.177878758759434,0.119195590204869,0.0508551702455497,-0.0460640680856512,-0.111007064034717,-0.157311566911199,-0.139249581691754,-0.0842192454893638,0.0163527601805225,0.0692760673253514,0.0406151795926203,-0.0431928812789071,-0.120829330665861,-0.162207687197428,-0.162145037462842,-0.141951686180931,-0.0704585665944237,0.0311588463095531,0.132029749235224,0.19935135130368,0.239348465629515,0.246213077220482,0.251810048702504,0.250116137002016,0.249918509687436,0.250835786749254,0.242104073275799,0.228969650511857,0.18891652327884,0.127531116952961,0.0458840803855798,-0.0268077119776225,-0.0957752828497587,-0.108506760216673,-0.0695924728271781,-0.00601037035399391,0.0819097061548797,0.107494614394572,0.0401760294984022,-0.0625753787887876,-0.143727639136974,-0.169332466770015,-0.170980898164997,-0.144261280483636,-0.0808439376318024,0.0145940738156916,0.11777641158373,0.199806891193082,0.234416266748796,0.24598244656443,0.250969486532971,0.248128469742622,0.24975565240848,0.249002443473857,0.244092860029977,0.237509800032616,0.184139248548703,0.118180680306579,0.047340669987344,-0.0257150415174754,-0.0772158845621792,-0.0810460610275017,-0.0725761666822582,-0.0315823461645016,0.0276529985180133,0.0266742684037973,-0.0336534208712495,-0.113843539708865,-0.166901069752071,-0.174385132926454,-0.152224320933767,-0.108452337334896,-0.0390255052447919,0.0439774703619952,0.126082868225932,0.201962837822622,0.239650372436939,0.244639256923974,0.250015419452306,0.25015535847652,0.250969880199745,0.249356603042186,0.24747674142321,0.231846840742105,0.187421984089972,0.122542443972133,0.0482389508905821,-0.0196807148891517,-0.0612019597721065,-0.087207126389437,-0.110457751811372,-0.12209038391677,-0.0923689453130933,-0.08918838494797,-0.125920820648177,-0.164166448629666,-0.179645720402068,-0.143764299648223,-0.107669434979987,-0.049493241847295,0.0212370171462664,0.0824270011396913,0.144575743929585,0.211649616450143,0.242700782964204,0.247682924964445,0.250663246554807,0.248772764078775,0.251493011275145,0.250013320918607,0.249351148714947,0.231894321599537,0.177449483931667,0.134201106876203,0.0526806366482731,-0.0130193460907617,-0.0488118648090641,-0.0854906625286087,-0.151041718649374,-0.200559517728176,-0.177720915320399,-0.163408731564863,-0.168443614269312,-0.180508764848115,-0.164020878709666,-0.123843173059176,-0.0591558786212736,0.00685156512596621,0.0585541385066958,0.107575987215107,0.158470233773473,0.219124937172858,0.244774538811163,0.250368375804336,0.249781480276676,0.249679583928682,0.247540792402707,0.246883055289745,0.248992448477454,0.231884364027829,0.17603710035096,0.141373933604349,0.0788266667073349,0.0271751439328238,-0.0154728731098689,-0.0632060646545024,-0.136826133287418,-0.189413840349971,-0.168152230258551,-0.145280690901882,-0.136342116573501,-0.142264656021423,-0.124765702485963,-0.0658485419638931,-0.0197246010434192,0.0166495611441524,0.0716483169974464,0.123480367698855,0.176058097195186,0.223311967209485,0.250767113492931,0.251169544224606,0.252006454813671,0.248532010496488,0.249718913269278,0.247151933732306,0.24489055888212,0.227583745426434,0.182305949371891,0.153996429732305,0.106613583868683,0.0740967902193123,0.0392237686428472,-0.0162715150168844,-0.087805946960547,-0.124970795323113,-0.0860789348866445,-0.0565108150517513,-0.0402810015586293,-0.0696997411759874,-0.0542414360908253,-0.0273802724603626,-0.00953073969621606,0.00737065938945179,0.0555278248071568,0.122919593716691,0.179908106257782,0.220032811450994,0.247387774383079,0.247066790683556,0.246766706117987,0.247883891733655,0.248035881746455,0.248176805828649,0.243350601479097,0.223254335865639,0.171441933157995,0.138194741101215,0.114745302029474,0.101538690162699,0.0688907188118419,0.0191622279642394,-0.0378277366013289,-0.0431711432751156,0.0210016007645706,0.0761216740737585,0.0584827513802418,-0.000465469848982075,-0.0302332429574098,-0.0182316019324249,-0.0202870103642651,-0.0246861972030196,0.0235911418694469,0.107706161024272,0.165208389080864,0.217404783341229,0.247203552046864,0.250331345735275,0.250504338803047,0.250405182474416,0.249394043684009,0.249914012040279,0.242159729818931,0.206499469422699,0.155146085215972,0.119224311454891,0.0889890659099279,0.0786861575725348,0.0408080068867298,-0.00345041161716007,-0.0193040336429886,0.0269459913642192,0.113592504058795,0.153862147104832,0.0965439888473569,0.0140377129649963,-0.027213662045862,-0.0438660681570924,-0.0563517453409489,-0.0519336846930017,0.00670657080108746,0.0911838458821597,0.166536452302052,0.223154288564729,0.241756591724879,0.245716158051987,0.248359419310954,0.250133893101294,0.249757037509721,0.249208483751698,0.236919750512527,0.194161090148701,0.1369757130405,0.0907947797243849,0.0465739061314725,0.0170902504663533,-0.0110224533735857,-0.0268458439186144,-0.00572926453018042,0.0800994415093441,0.19316669884964,0.184972830439395,0.0929468787616975,0.000824849064810368,-0.0505670488370806,-0.0788881418759912,-0.101597320202517,-0.0619099297893007,0.010395474336181,0.0962408131207651,0.177966507625751,0.227647398009607,0.242949595497477,0.24820016678836,0.251447937264574,0.252014828805455,0.252043500518606,0.243199911769758,0.230747607928651,0.190661204314279,0.128965047797845,0.0653870388687662,-0.0079312196107589,-0.0568505207857901,-0.0732542130296415,-0.048418124908436,0.0240646625460759,0.14294326727051,0.21234275802587,0.174870400020474,0.0626139589772486,-0.0390449936697853,-0.0976727836946041,-0.125676295848842,-0.127560371334295,-0.0686774852335892,0.0224995243969693,0.112472722658361,0.188947264057033,0.230381677108049,0.244440134608714,0.249579978019058,0.249345239795425,0.250822664186482,0.250764366507505,0.243781562262977,0.220730841576151,0.189007365236097,0.120654677550283,0.0335482867259179,-0.0529079732263761,-0.0921044891980102,-0.106667712154523,-0.0744364197829361,0.0276875388182282,0.107196360344743,0.142106110048021,0.0862576796670022,-0.0146771176317834,-0.102909976559638,-0.166948718181704,-0.172938123160742,-0.140522361721296,-0.0539960253794372,0.0527826290623555,0.137876154993,0.211853548845821,0.241129572130506,0.245161070241628,0.249427315426778,0.250135377789251,0.249852526863799,0.248607790242201,0.241205625390212,0.228134863668424,0.194834152592984,0.129180531600958,0.0230438909849771,-0.0830592379519721,-0.13453326812887,-0.155881098967242,-0.136679699550782,-0.0672950164407689,-0.0244700777188215,-0.0224207842309358,-0.0671366360415389,-0.129788228012647,-0.190828175356665,-0.214277977869553,-0.170241761156825,-0.103908674010456,0.0105106156291535,0.119320706851468,0.187693815483706,0.231762199923211,0.245072993299658,0.249963990013362,0.250350706512882,0.248235871677935,0.249661668196241,0.248697613893295,0.242095569933435,0.235911046532917,0.205108988251826,0.144166025174011,0.047472173264141,-0.0609435444403916,-0.150399725270631,-0.192983699676562,-0.223338854846296,-0.219968739644011,-0.209459995155195,-0.198048089346992,-0.198777387455255,-0.214163839897355,-0.218567481521448,-0.178242509763043,-0.112648693282992,-9.92804387332865E-05,0.107740355400838,0.177586866210583,0.21903082133909,0.243066610960329,0.250761421370424,0.251913365385955,0.248137556678503,0.249590509171208,0.251199341757051,0.250138843938814,0.247580933950283,0.239962876611739,0.220445193367242,0.180880515670564,0.103253394689201,0.00813667222076613,-0.0881244814034508,-0.167775739736833,-0.211984552252607,-0.264156486085726,-0.281431505291171,-0.269561754478036,-0.237224864046042,-0.20446662155965,-0.1531892569125,-0.0782838800174877,0.0185058734908774,0.124353319013667,0.182581335566346,0.216738265172795,0.23737204993126,0.24614491669228,0.249044931537396,0.24846522734332,0.250432259113799,0.248555237722545,0.250659278006536,0.251622412008108,0.248604433024496,0.248356329573047,0.238439025920212,0.222706395478496,0.185398869249894,0.136575852062791,0.0660249277879198,-0.00440799170771285,-0.0725836102184635,-0.127480055522234,-0.154213506266058,-0.14453844572122,-0.10814572395833,-0.0661535810021868,0.00452564951473326,0.0729349233987131,0.147286797264475,0.19447662323875,0.21762514723642,0.22835101129684,0.243711331185713,0.248560694901393,0.248461481245565,0.248127128678163,0.251860682733076,0.250762174748376,0.250076304180085,0.248421741403235,0.248373177818847,0.249721227457336,0.246909056614801,0.245898338108067,0.24211234153738,0.238046509503539,0.219738235473904,0.210345274142952,0.182819492841304,0.151272655986869,0.137881518721956,0.139733663771896,0.141760070446243,0.140465388055769,0.154707663633873,0.167262227191765,0.192374002468837,0.216202190897725,0.231058581696893,0.241545814759862,0.247349679256152,0.249800617606219,0.249137507180472,0.250380505980945,0.250404400075583,0.251684715084824,0.251295361966973,0.252015562092244,0.250388051052489,0.248876240904242,0.251008423493857,0.249868330588702,0.249062428571294,0.247441539283464,0.246917025758713,0.247555591909441,0.233280061589762,0.223568789426564,0.217854572678449,0.212761320174552,0.214348073443174,0.217524459468334,0.215253493466262,0.22156553514306,0.232719756052256,0.243227195720197,0.245733821526927,0.245395116348929,0.249757747525147,0.251456729800121,0.249835957229487,0.250530109229022,0.250704125651865,0.248363296997919,0.25160038024542,0.249292254313383,0.247895959670737,0.251541118241167,0.251405557773469,0.251672424848126,0.251613853292681,0.249510552485849,0.250039883980725,0.251055991539297,0.245399959581781,0.250829619888308,0.248697637193922,0.248477275163152,0.246752028324806,0.251915040794461,0.247816851336758,0.245547147733551,0.25137799487161,0.251062598220356,0.250503900071458,0.248914714762489,0.248584796242765,0.251803217125155,0.247765886416407,0.250029561222772,0.250184116347417,0.250490338201708,-0.219633834915735,-0.247159802053362,-0.247272376529439,-0.250780263464559,-0.248889399732605,-0.248588827593636,-0.249901863028743,-0.250443417961838,-0.251232534825577,-0.250108570277926,-0.250391965737692,-0.247156062749158,-0.249717065996136,-0.250411659735566,-0.250508745836011,-0.249665201908355,-0.250407901659551,-0.247595886972636,-0.249878066393824,-0.248359830020053,-0.248436952271282,-0.25032923355427,-0.247673176342054,-0.251349270626455,-0.249040611998632,-0.248026048210202,-0.247371638961444,-0.248141338901583,-0.24830858532179,-0.249733220588452,-0.247048426771634,-0.250539853636059,-0.249462985570349,-0.250169103309799,-0.249208367675323,-0.248034421060278,-0.248236405811862,-0.248408470785627,-0.250720036500035,-0.24890231188705,-0.249454071911836,-0.247299252640752,-0.24731281281352,-0.249707194224221,-0.247774148973909,-0.24781245724694,-0.248839529079712,-0.249495036976696,-0.24971894067952,-0.250122036116827,-0.24902334529543,-0.249373308216494,-0.247874047905682,-0.247498725672813,-0.249330040983029,-0.250379136120004,-0.250821691541669,-0.250924099500407,-0.24994731357357,-0.248004343166732,-0.247261722357549,-0.247979115041061,-0.247117830717637,-0.248135652772842,-0.245884299802239,-0.249148008445629,-0.250235451405025,-0.245738561286071,-0.242373287007552,-0.242078037020082,-0.244330169626255,-0.241156138202609,-0.248921877348565,-0.248153676602746,-0.251202302452149,-0.255189203630709,-0.254277936322464,-0.253756999720615,-0.251488812338693,-0.250719843907596,-0.247844691963822,-0.248137326284329,-0.247579050231301,-0.251298967364293,-0.249810342844825,-0.24974289685979,-0.249909868030744,-0.251273224583197,-0.250140538794506,-0.250258897714375,-0.250937128557919,-0.248764160367393,-0.245390416349711,-0.247954811957082,-0.241980351854507,-0.231986773218004,-0.223833705686134,-0.212855058405219,-0.213567716508539,-0.219321302844957,-0.230750957804906,-0.239327724705885,-0.252606524793397,-0.260360958279219,-0.267137561986622,-0.265393292012203,-0.259015117630063,-0.257882145363964,-0.252141313439843,-0.24929064346736,-0.249287504429823,-0.248019543575724,-0.250052699990232,-0.24956589524475,-0.250430554685132,-0.24874113760167,-0.24761717820828,-0.249227190451728,-0.247742900469689,-0.240978242176502,-0.233878168483577,-0.216629188435806,-0.18414632412625,-0.152936382663029,-0.114011493972356,-0.0847525606658123,-0.0658954069898559,-0.0698433185015134,-0.078068797400105,-0.0972660144992412,-0.136360484895833,-0.183000419324386,-0.228183856622773,-0.24757377398689,-0.254584286586923,-0.247746319854059,-0.249140469971202,-0.245688085985185,-0.24652765836247,-0.24848402643808,-0.24847786653758,-0.248884918306609,-0.250462495877664,-0.249659058848515,-0.249174919177807,-0.245099292287203,-0.233412353965228,-0.208149630619976,-0.178049200725467,-0.121976943959622,-0.0552444453413469,0.0157195292009578,0.0996024161921083,0.143035879603717,0.154807620780533,0.163814231411456,0.169462011831606,0.15467567816489,0.121496652080129,0.0415898630535114,-0.0497824783097737,-0.122855483882926,-0.17128469760339,-0.217942927112419,-0.240350619545427,-0.242593289818108,-0.242751068232083,-0.247760717970736,-0.247829729798458,-0.250987932072838,-0.248965000824173,-0.248608684489297,-0.246128211620821,-0.229660398080563,-0.209285740004413,-0.174232828481201,-0.108888571724811,-0.0240976408515397,0.0619219495494293,0.136343146015917,0.192457494821999,0.233712762138718,0.254893001193132,0.258934335120997,0.255901628405161,0.249398931842716,0.225571713226016,0.163059802714657,0.077484548493663,-0.0193728856642584,-0.100929280759466,-0.180109266534004,-0.232240216246347,-0.242264217372297,-0.23700311957913,-0.24522463635477,-0.250346299818453,-0.247178694950548,-0.247291895768,-0.249890253740936,-0.238623612618394,-0.220858946996756,-0.186331016819626,-0.140682630784813,-0.0577308778484378,0.0357668014684178,0.103011619092266,0.178894293797507,0.235183223396344,0.257056381207194,0.23879986197082,0.219576035232974,0.214359808796787,0.225396334567599,0.214123233196113,0.178213911394714,0.124168500181202,0.0343823635502273,-0.0472305800187203,-0.145884489292635,-0.216692172875893,-0.231763352013867,-0.239421191272988,-0.244722545327758,-0.249270367250232,-0.250216759060436,-0.250004305813845,-0.249737934218003,-0.236889494453639,-0.217804753268247,-0.183503263921594,-0.127820994024115,-0.0585171433271653,0.0289072865820203,0.108951055733372,0.18124726890184,0.194441896092601,0.178796040208667,0.115013265000984,0.0569111531766563,0.0564430516756072,0.0963714238844008,0.131379785236623,0.144391056039893,0.1273951610135,0.0732351899680155,-0.00520493807274564,-0.0988175459634122,-0.187023682974423,-0.214924077667125,-0.238266287687223,-0.243547271231522,-0.247598017249912,-0.251414228059046,-0.248644041499804,-0.249662632421688,-0.242307063071368,-0.225312848362919,-0.186096597930605,-0.138260707338387,-0.0710406190465072,0.0283084090053617,0.0983989756065391,0.149429273694047,0.132263440661813,0.0703482532807649,-0.0379614422009737,-0.0956877344135696,-0.0651898813848779,0.0241519245110974,0.09694635556614,0.136679248816761,0.128074820353712,0.0939601623326867,0.0170185422888763,-0.0712075453860444,-0.156626000149154,-0.208261308421388,-0.235587096566257,-0.24594049047366,-0.249162899847834,-0.249478658669367,-0.252274747811573,-0.248529876572896,-0.246533590742401,-0.236831882881862,-0.201325692876033,-0.151895265728067,-0.0665575780383492,0.0138971133660798,0.0876492997803148,0.103814680598815,0.0642101602611407,-0.00574922980358782,-0.0955326759748105,-0.12039947973616,-0.0582971948148834,0.048205441133188,0.125954094571274,0.147813193284781,0.132978923265753,0.0979925466203007,0.0272115648717918,-0.0590128431723098,-0.145815067107773,-0.205845338266661,-0.230612121748229,-0.242076955017348,-0.247716510953007,-0.248967269620817,-0.251929329708894,-0.248900563978434,-0.24889554612803,-0.242274024756994,-0.193528822633404,-0.140222993976403,-0.0640967485634252,0.016555972777118,0.0746838341323734,0.0865230410855879,0.075171083442513,0.0326002987230852,-0.028640654213917,-0.028895473548885,0.0326292826629534,0.112763833284056,0.160906005595514,0.160901319341495,0.122029412217163,0.0659998332316828,-0.00976672170619543,-0.0889586349484179,-0.153523255635235,-0.208596787262167,-0.238016222541125,-0.244759751349626,-0.250075757171007,-0.247960144045211,-0.248106692912045,-0.251936696226036,-0.249943718492548,-0.239127294383603,-0.196702462534265,-0.141379700669844,-0.0692920951700946,0.0111624509800374,0.066171179156998,0.0979402633399545,0.128567597765773,0.135258408678356,0.0998823725395613,0.0954152769697627,0.132252567728316,0.176054770486971,0.185565911433219,0.142299924039696,0.0918315315737817,0.0190824832261277,-0.0577358431542815,-0.125090702122139,-0.17044633101037,-0.22113881537662,-0.239951266118905,-0.247942752012905,-0.249109239230244,-0.250001267310497,-0.249680005494198,-0.248761350710977,-0.246864966399869,-0.232188763037466,-0.192794191593265,-0.154697837567016,-0.0735493142776279,0.00511259368387884,0.0573519990319701,0.103049068486379,0.171478733105981,0.222338477683,0.194378075724961,0.181675191772731,0.184720714454554,0.19717214324823,0.18382663834524,0.13527653819053,0.062727753175256,-0.0206525651189767,-0.0848269415888796,-0.1402970193926,-0.186885484188599,-0.229144559421113,-0.24488045783463,-0.248748710278067,-0.246977475829713,-0.249192824666397,-0.250883754821427,-0.24721811564197,-0.249762033394131,-0.234328545936501,-0.196984507469622,-0.164746361577929,-0.102816505961885,-0.0305781041562868,0.0288051118146351,0.0907698501460336,0.163195573265451,0.213009468369055,0.189102601961539,0.164676578330621,0.150365889748844,0.161428720238864,0.148774130013059,0.0854564473544877,0.028837308009457,-0.0215446703322546,-0.0935144780459733,-0.146807975175748,-0.198557136378216,-0.230440727538985,-0.250569076991944,-0.250390873454179,-0.250898389148003,-0.247494237448901,-0.248070172306999,-0.247197474260276,-0.245900784967465,-0.234404545901125,-0.206540779621705,-0.190254957850311,-0.134791749504572,-0.0791608754805766,-0.021085160440824,0.0430604335672696,0.11418676041848,0.144610317476934,0.102148392262766,0.069956990662006,0.050011390239865,0.0851601920151929,0.0749702356007967,0.0423312830831306,0.0201494362891604,-0.00158074727092452,-0.0694953984154334,-0.140802979892692,-0.196860594283281,-0.229739339939964,-0.243928151505782,-0.247665281997699,-0.249270123774822,-0.247801823576586,-0.248595686987417,-0.245370937591013,-0.243679395578429,-0.227729825185072,-0.195813021714604,-0.176656004608322,-0.145397002097296,-0.110682774688161,-0.0555074115342828,0.00111190205678251,0.0601680599692461,0.0537198679167766,-0.0121385645496676,-0.0672711862729637,-0.0553979944651057,0.00969976861520734,0.0439779248483497,0.0319020036972203,0.0367449153226754,0.0288109752974678,-0.0270052724663049,-0.118075803784049,-0.180986882212681,-0.229863894893927,-0.246557044423478,-0.246370774122049,-0.250582672106957,-0.24949706880685,-0.247644065644797,-0.249157904761053,-0.240164573192411,-0.215301333937186,-0.177616146517426,-0.152194719179398,-0.11454554549793,-0.0940678688638938,-0.0295369108078887,0.0210632304992976,0.0311287270681261,-0.0162747347803981,-0.110530861576045,-0.155825200202287,-0.0974330168386733,-0.0137400041870878,0.0428677468412267,0.0629374051350659,0.0726660553926359,0.0637248131467053,-0.00501137240301179,-0.0982403050887475,-0.175904683312668,-0.227569209913291,-0.243062111654427,-0.245859508966295,-0.247347665739837,-0.248125489748554,-0.250179943471479,-0.247349033282072,-0.235423245813445,-0.199370055880418,-0.16047211451222,-0.118633089176709,-0.0689686313205696,-0.0228004534761676,0.0181621161283717,0.0407615146159241,0.0211816662054688,-0.0718838573818201,-0.194804961510955,-0.193819953149111,-0.0992681701961598,0.00341256121968222,0.0673617601254422,0.0987513743832876,0.123895757026101,0.0802048043773184,-0.00349729412988954,-0.10035384963486,-0.177152344725113,-0.226855349236612,-0.243700985579573,-0.249181017744818,-0.247878831353737,-0.248904808017099,-0.250721949305236,-0.24549708593496,-0.229501488194016,-0.195587680876267,-0.148028044561979,-0.0852302110789518,-0.010207919649774,0.0466225220076372,0.0740291425857396,0.0600598302534103,-0.0130576015697813,-0.136877587218652,-0.215733754064068,-0.182304697533068,-0.0692373798489483,0.0529780703342139,0.117058214667866,0.1519482517896,0.149485776143675,0.0767312553041947,-0.0171305182955335,-0.11025602468297,-0.190675038114852,-0.226857637121911,-0.244405728936399,-0.24615092954054,-0.247553324315629,-0.248498370128569,-0.251430113029802,-0.242911997399834,-0.221717692080123,-0.19176961560832,-0.135070022766293,-0.0502956925920094,0.0371381273272147,0.0810401122224961,0.106306396468177,0.0788962014932514,-0.0211282681574241,-0.1005465182607,-0.138397110163116,-0.0877779963729506,0.0174961446849521,0.115266626156339,0.1916370023903,0.194126023537042,0.153702069888909,0.0552066105277852,-0.0536008155351233,-0.134997018923391,-0.208736692280458,-0.236260372531718,-0.246865255162141,-0.249808639083278,-0.249913488147621,-0.249700487425056,-0.250524808515335,-0.242467656107767,-0.230029317929516,-0.195684492138804,-0.137962995897312,-0.0345333293814948,0.0726620119233849,0.12295714741636,0.14904468808809,0.13632083042128,0.0691989778387766,0.0256346037244301,0.0237150438372309,0.0663504142672818,0.131220798594296,0.197707599488081,0.228749026944576,0.18014038922546,0.110364146367603,-0.0110980045773433,-0.112062069565812,-0.184054725033068,-0.227740306084171,-0.243788350902925,-0.24661332570176,-0.249604746817509,-0.251245882590306,-0.249884235982695,-0.247264903508929,-0.243845056781102,-0.232085057307479,-0.206075697360523,-0.145548589587458,-0.0518624816359596,0.052730413314235,0.143355999786953,0.184381118723641,0.211357696749482,0.206966707963781,0.196749930440114,0.186944417841396,0.188609509911012,0.204118023173071,0.215944394816492,0.177435648341073,0.113339548630194,0.000781203597628506,-0.101628751026233,-0.167856484149715,-0.216272904710553,-0.240253166189101,-0.247744215716816,-0.249809290460357,-0.249801461655531,-0.248040895854661,-0.249281694514725,-0.248301436420123,-0.245457147590384,-0.239720784014787,-0.221341179562682,-0.183456099298562,-0.105614165382741,-0.0120062983556328,0.0791813413131784,0.15492240454704,0.201576444485265,0.254041142678023,0.268807222566304,0.258616787681465,0.222613957105706,0.1931303863613,0.147860161595202,0.0765832686989385,-0.0154677480505823,-0.11944987518442,-0.177336353673426,-0.21317381457143,-0.23531708121275,-0.246122568952186,-0.249702377137154,-0.248900567729668,-0.248293931262156,-0.248850272348889,-0.249541001074606,-0.247487147701909,-0.249212480870213,-0.244504810006723,-0.236381064873581,-0.219418132521397,-0.188318140054004,-0.135461860638314,-0.0695519762434666,-0.0061496087197372,0.0642967862038337,0.120717730451789,0.147580143876079,0.142235407255574,0.102448545183328,0.0601700808872949,-0.000359212443640636,-0.0662270489763378,-0.13712049129618,-0.186112681544627,-0.208709198891577,-0.227089890578029,-0.243120587986081,-0.249841258744861,-0.247523962084392,-0.250070884387252,-0.250434083418832,-0.248515414542993,-0.248561656783571,-0.248536507474405,-0.248519837698316,-0.247394060025791,-0.24503909812845,-0.245092165851399,-0.244602756043423,-0.23950082630457,-0.225980365933412,-0.214606326143274,-0.185853157722292,-0.157813128212709,-0.141069920611524,-0.141616123670555,-0.143965626575333,-0.142364091630081,-0.148175697543814,-0.164468172870178,-0.185754546529698,-0.208914841311129,-0.224292024913043,-0.240091616487206,-0.245212458866474,-0.247867009247389,-0.247941657257114,-0.250910228617661,-0.24777688766856,-0.248376621075212,-0.249026050402335,-0.24928006123755,-0.248813179450071,-0.250733574402003,-0.249775108332249,-0.24871988083214,-0.250642709947644,-0.252640730491904,-0.251199724120705,-0.250435216591756,-0.244790638225304,-0.234329064345173,-0.228186633444994,-0.225245152989649,-0.219748399948741,-0.218455297059028,-0.217068831402881,-0.223620841148734,-0.231359057430846,-0.239526532614983,-0.244778217734508,-0.247873876031597,-0.247152840003312,-0.247284689374902,-0.251031636447291,-0.247233801274814,-0.248403607999304,-0.249764859135813,-0.248123732669193,-0.247477457642081,-0.24745443938148,-0.250452783943279,-0.250699313950795,-0.250306355904492,-0.25146320565929,-0.25160357929583,-0.249741799638069,-0.25033554549616,-0.247304367142056,-0.248769215074537,-0.253229911633895,-0.248914689628754,-0.250004664118063,-0.250375727497825,-0.24938817268925,-0.248771008657117,-0.248486473555429,-0.248847228740168,-0.249356569152156,-0.250384208522954,-0.249546528876547,-0.250952918606536,-0.248510810375463,-0.24984561686555,-0.247117567225606,-0.249366950444414,0.217579754434501,0.279901996479094,0.278761323363408,0.278108419856263,0.27900129454344,0.280481662079154,0.278482646252381,0.27789127263362,0.279399618912091,0.281724058017971,0.280364784905872,0.281274215197623,0.281201986039531,0.280563976570901,0.278641251051371,0.277697537639905,0.281609493316373,0.281650587412236,0.280277216009664,0.280248520440301,0.281375271480012,0.281045451531483,0.281095158455586,0.278979732542054,0.278836391583271,0.278891084558372,0.278532110503994,0.278280151281526,0.278395144008601,0.279012280130845,0.280405811082902,0.279276528833153,0.280667410153408,0.281284008964841,0.279940312598987,0.280758705288548,0.279175092529721,0.278864585789964,0.278644151595931,0.275344966961513,0.277809439024986,0.277160247584977,0.271861451029938,0.275179143563682,0.274724101551416,0.274230486570967,0.280188170976275,0.278749580460133,0.280493389668155,0.281882033140108,0.281660786230203,0.281159140182972,0.279300658139993,0.280969514964908,0.280857171904613,0.279222572965661,0.280370105887661,0.281506857627905,0.278471160362831,0.281653015563006,0.281640614031493,0.278718800277711,0.28133066744125,0.279357250592655,0.279195306190257,0.277092682451424,0.275788598724537,0.262496859830072,0.253205643173333,0.241327570021434,0.230943210782997,0.218942134552444,0.225728392469901,0.233215084518933,0.232538915546858,0.243473564504325,0.248526069867314,0.260665432510692,0.271364000347387,0.274849981020937,0.279700151590039,0.281476691972899,0.278008582384719,0.279017281064934,0.279286755830352,0.279831784291235,0.281239433680002,0.278227603154799,0.280713081373114,0.280914096331897,0.27793067276682,0.277366153190336,0.277471491420383,0.273876507192416,0.258874456670863,0.232523154393707,0.209609126074241,0.181231898402148,0.160056698640008,0.152101999393123,0.157033692661664,0.1669310113804,0.182337403605521,0.198521675670443,0.220955590299943,0.248635198215209,0.26840938663337,0.274740551581879,0.277612900989206,0.277455828129692,0.276965845088077,0.279759081356573,0.280866242186052,0.279535815184043,0.28169584122186,0.281266148832056,0.279687425671647,0.281593504903836,0.276961995048596,0.267815297543447,0.261961193373374,0.237652058893281,0.192574714652363,0.148624572658726,0.101080408773598,0.0577460807580524,0.0288379513993051,0.0263328083583395,0.0349559082398515,0.0426756812222126,0.0838807302661377,0.124242828002437,0.181939485368532,0.229570491032844,0.250670582990598,0.26077116448149,0.267679950731865,0.272238445211313,0.277053042914241,0.279981170264746,0.27926083465687,0.281121626651387,0.279272344857082,0.280398799750873,0.27872998365256,0.276056892780446,0.266527686161016,0.243207693928585,0.205666392552773,0.144129149751457,0.0690069952838067,-0.0152524105501123,-0.106329923791531,-0.151710931890683,-0.166440743141003,-0.171835853960034,-0.17654326455877,-0.16351323474946,-0.132691254015893,-0.0546494194260484,0.0335151522711322,0.115597514873397,0.161933669611252,0.216704063137885,0.245951823092482,0.259491672891842,0.267722731840723,0.275022656196215,0.280486721365971,0.281867117708217,0.281939254407399,0.278443014357143,0.278299898697731,0.267029048963089,0.252234241119629,0.212007231897335,0.143385383540164,0.0563303158522621,-0.0451188281094459,-0.140270634385227,-0.21223634118562,-0.255975890827092,-0.280918529646969,-0.277184492269431,-0.275129472320789,-0.260343285622537,-0.232677021470886,-0.15991035549821,-0.0655977074265572,0.0230206246439393,0.100224543302362,0.171727533494703,0.224737734523927,0.243615613450182,0.260153579692439,0.275040883908329,0.278581190227929,0.281913715840604,0.279278332745735,0.281542323270709,0.27684532605692,0.26670666765533,0.238796637887499,0.192613610506358,0.115944380456868,0.00642151835906072,-0.0757140907956876,-0.177240319748108,-0.254067137519334,-0.284040720487714,-0.265764479886471,-0.242352815042439,-0.226258430530093,-0.217623025013562,-0.196113505622223,-0.147661459757021,-0.0867216778856617,-0.00422191277709184,0.0704101215323089,0.155462730326519,0.211284549661342,0.235181095154398,0.254970426678738,0.275271718608556,0.277410243365551,0.27893042524961,0.28085726059625,0.283870736433345,0.279216819810069,0.266120218082495,0.243847579540926,0.19344121219802,0.123843401248328,0.0215869326635378,-0.0822498331124149,-0.185816058238708,-0.226878755687795,-0.216399758145546,-0.144652193733587,-0.0730221302611975,-0.0393607552577964,-0.0608197139173943,-0.0759471152168684,-0.081446375765657,-0.0566408043261291,-0.00442859776915515,0.055071204674209,0.131331187119627,0.207182774416669,0.228976651173686,0.257348973973224,0.268642694981277,0.277833305609958,0.281258012524082,0.282886154875222,0.281682142866488,0.281651186355956,0.274665428496425,0.249653290550938,0.211741191652701,0.137320115847691,0.020201123997889,-0.092177531129693,-0.18671629274077,-0.190400359915951,-0.121517320919305,0.0067695475152864,0.103587325464907,0.113902512736363,0.0492584526632912,-0.0188043179043186,-0.0629803163826105,-0.0486056812434195,-0.0119600671875864,0.0553545131369314,0.128342963018211,0.193429182279898,0.229617614295182,0.26144515278247,0.275356605592995,0.28059846335758,0.279667485267557,0.282728342989429,0.284559377249345,0.282427562512309,0.279263692047737,0.255956193451532,0.221160411491219,0.115607023372324,-0.00493226818943486,-0.120828182185351,-0.186447189673428,-0.151992652553565,-0.0623098966831456,0.0735365955515941,0.153102152510242,0.124268957265785,0.0277975553019314,-0.0557954042215022,-0.0840586351953404,-0.0702882195952243,-0.0268829295338287,0.0511095211778849,0.123996661678043,0.198500069231321,0.236222529940992,0.25813532788394,0.272500809934394,0.28034550164048,0.278392105885597,0.282770731521144,0.283806896404205,0.280572454860627,0.278674278607071,0.24362872890863,0.197978756969535,0.0926665512815039,-0.03985332858491,-0.147368429487615,-0.182418789575845,-0.163483171594403,-0.085277536362759,0.0226651633569553,0.0628732119597577,0.0208467783248764,-0.0691116540825471,-0.126088744636117,-0.129879600245261,-0.0898043597194653,-0.0172804186557965,0.067516451612133,0.147308955504286,0.205246315243257,0.24603252586474,0.263090557751956,0.276913944143048,0.278516505483405,0.281200390939957,0.281883868588114,0.282504356330265,0.281115730772487,0.27220878036058,0.234966658128287,0.18853254432345,0.0866447310175539,-0.0496915947817547,-0.144734221067308,-0.193180735881177,-0.217026963205247,-0.182032702483223,-0.107725749009103,-0.0851547558728619,-0.11870392534653,-0.174815994749815,-0.194995648235599,-0.15561469416992,-0.0955668779486664,-0.0096506918621888,0.0871794493321045,0.17072727299452,0.226732984249711,0.255586067826534,0.272953610678955,0.275397187619485,0.278165689598046,0.279626633416219,0.278573121316282,0.278184955057744,0.281271709459713,0.26883318962105,0.239133722452847,0.197456916751966,0.0823323792897438,-0.0466635831874129,-0.144440928995537,-0.200173998486259,-0.252449882212742,-0.265617316311011,-0.21040376708507,-0.195208764184886,-0.207559572004271,-0.237479997509357,-0.229706598033461,-0.180223968923722,-0.0932053351979178,0.00175695058515326,0.0868880658257911,0.163674465069933,0.231439741443321,0.265357518772227,0.274383268642792,0.277813601098049,0.278899431043064,0.277854407091109,0.27778939731068,0.280105153075975,0.278179975564773,0.273855464369338,0.249650914788551,0.211364464680073,0.10978946530043,-0.0256592829619497,-0.122272404286132,-0.193621395232753,-0.245960658816179,-0.263308599110311,-0.225663209257585,-0.206834932168716,-0.196222803431582,-0.215930416327926,-0.209036150910529,-0.141254203250718,-0.0748622326942786,-0.0175774438411931,0.0749927740175991,0.154630211095224,0.235953145510568,0.2657132817852,0.275988537707921,0.280027687354346,0.278847008870111,0.277856327449007,0.278554145814881,0.280925283769333,0.278770509483332,0.272479170505711,0.261005062276594,0.240542216439728,0.141765352538367,0.0170453649701691,-0.0898229345407576,-0.156970462043318,-0.200550876367364,-0.203490722289008,-0.152575130990675,-0.116690834383789,-0.0949357290372637,-0.131606056373635,-0.121765972511463,-0.0894402148487287,-0.0645586158157923,-0.041393730599676,0.0401332912640532,0.138468047134648,0.221256654321139,0.260724213901088,0.271480124771054,0.279123759297766,0.280688502157478,0.280635621616736,0.281725167546498,0.280673446745348,0.272136452473807,0.264704615295177,0.252515750715031,0.231702321487974,0.152905436687095,0.0458811864082948,-0.0507641541691573,-0.117831761129269,-0.152301244798478,-0.11932413309142,-0.0400051724011261,0.0187911706730653,0.0148040532929791,-0.0445336975709165,-0.0760111559776419,-0.0708553487714278,-0.0863207744000481,-0.0775866220685247,0.000574739104072543,0.115923598426148,0.206327057349053,0.259446457650148,0.271600647918163,0.278321453308903,0.28127025832991,0.280302890595189,0.280062595716383,0.279071253736842,0.269088327468868,0.253157874942891,0.231825888938147,0.202944572668431,0.125205003406243,0.0332723366983202,-0.0742045418426273,-0.132871064245617,-0.129502500442054,-0.0500970853449062,0.0657748775374705,0.113942104786642,0.07356480177434,-0.0110626160567233,-0.0771286373805221,-0.115960036843961,-0.139588776897397,-0.119476373599092,-0.0288314681705833,0.0987391997423147,0.199781271449408,0.253912384110897,0.266377470344504,0.277331980718353,0.27738713068597,0.281616717835095,0.281793614777768,0.278208251442092,0.265478444840524,0.233334462714734,0.205073323468466,0.157402551242061,0.0692217541332784,-0.0277649942798313,-0.111452682411825,-0.149290586898318,-0.1137579823435,0.00160460389173183,0.141638420077056,0.159074041327075,0.0774892969246729,-0.0427674378830097,-0.12453430352431,-0.174346489025157,-0.199340614865936,-0.136661235975404,-0.0200493072737482,0.103181488626232,0.199460180694317,0.248463280693681,0.267702573099921,0.276116278799275,0.281386326240977,0.2785412106833,0.277592755863582,0.276842381282725,0.257459902816776,0.2294978212003,0.185001650033184,0.118533223421752,0.00807894003952442,-0.0811924072726985,-0.143050979409264,-0.150077226093035,-0.0840024151144238,0.0552343653719042,0.151968181954106,0.134652210135243,0.0282968779817891,-0.108035973914084,-0.198690023648905,-0.236251289424497,-0.210334059417104,-0.119240772968971,0.0105336610734516,0.125004264883711,0.213265656632776,0.252926728706112,0.273792476387886,0.277884969179671,0.28185959276542,0.278896627770131,0.279075390038587,0.274958069293985,0.252310109826349,0.225351157858373,0.170199655223436,0.0808195151568435,-0.0299399946573196,-0.091720492292355,-0.138718870264926,-0.132971849277639,-0.055014196257406,0.0226038062003317,0.0666249445414031,0.032336548495948,-0.0718437905692058,-0.176527932719183,-0.260257554131048,-0.255796516314828,-0.190623474957326,-0.0551796696282383,0.0613693044734607,0.15672001866797,0.230008498309585,0.261576266627678,0.277238147309059,0.277068143247138,0.277857743784108,0.281266951893634,0.281016676476659,0.274730141369535,0.260352705943687,0.225213955692732,0.173739128539474,0.0663366552073989,-0.0507485817411535,-0.119477080833942,-0.150212584830013,-0.145466777173985,-0.0985307971292993,-0.0664193616573582,-0.0650700981217504,-0.103883084058362,-0.163241351568911,-0.232648621396353,-0.26189449721619,-0.203934811676334,-0.110149015138751,0.0259488125027268,0.13081770455336,0.202581048569477,0.254249093901253,0.272447129167263,0.279516310318764,0.280478912859289,0.279130270911693,0.278081821429999,0.280525817280166,0.272635321726259,0.265378645950145,0.239883385071747,0.175745019522304,0.0844149332451565,-0.0218762120043911,-0.115719410816598,-0.158307865249492,-0.17775108573238,-0.176599037132844,-0.170239144970323,-0.161083324690205,-0.167390957388745,-0.185389146363555,-0.201985546500483,-0.17250889549861,-0.105867378014616,0.01871270017935,0.117178294554093,0.186171046075659,0.234592622257782,0.267380193955855,0.276178155943695,0.276839216100213,0.277862160768467,0.278709987416058,0.281011803620551,0.280847806955019,0.277701962981737,0.271833299847267,0.255576303325855,0.219765787578078,0.138399479825396,0.046757614532836,-0.0449812767682336,-0.115441351204305,-0.150243111574415,-0.201263941988504,-0.219497907472478,-0.207790754377261,-0.169229806539599,-0.147888846948218,-0.114925142053429,-0.056129442822579,0.0337853054392977,0.12921692526931,0.189880685706789,0.235254885538976,0.257784230414519,0.271920681047237,0.278805264738296,0.278938606544328,0.278703702327624,0.280987638441087,0.279451912853458,0.279652746139947,0.278537046904715,0.278623062661221,0.269277740481883,0.255395120853175,0.221664854130378,0.172611816149929,0.108539373105356,0.0412563576780393,-0.0181433542129915,-0.0752284111474277,-0.108967176206265,-0.10138104619099,-0.0675024748564064,-0.0287676181250457,0.0225722411205108,0.0798785476488496,0.149768365143066,0.202143072337898,0.232030290955082,0.250862468178982,0.269733549744009,0.275246107865978,0.281319858864421,0.281420364353315,0.278515882424759,0.280107422867754,0.277655931612776,0.281968145226434,0.280694325421426,0.280418242259917,0.27753025927899,0.275190181868038,0.274693396417799,0.272840341823118,0.260600038811185,0.249101417897537,0.223308535611686,0.194616115322354,0.171611713173636,0.170290465677329,0.176954507025752,0.172845725477571,0.172919409585865,0.187270863327749,0.210246619163373,0.23320757483873,0.249717522760375,0.265543425840874,0.273784300500578,0.279642539143672,0.281320333127798,0.277621649428206,0.278684087069853,0.281179247812953,0.280148067531671,0.281487198568828,0.277968387503485,0.281901634249799,0.279779047550073,0.278744965916518,0.28361117086132,0.288363088865348,0.286833071620014,0.288970988235609,0.287919316302646,0.280058609879513,0.276082047993234,0.270237381209176,0.264910977297679,0.262208322992104,0.255857743758751,0.259478202457979,0.263928862082638,0.268279597735524,0.270123846071663,0.277790412190699,0.279870977570954,0.280486269417793,0.28163006022866,0.281078505358372,0.280629710771914,0.280653177733011,0.27857733145189,0.279314841596197,0.278461469066431,0.278325301879625,0.281140574118966,0.279138521765053,0.280375256828226,0.27956733252088,0.278954344887449,0.28089632413335,0.281904364781795,0.280088134068637,0.285879567959575,0.284296817398715,0.281542488470448,0.281575104518253,0.281531369931416,0.281135615486941,0.279640744688295,0.27922546702153,0.28169947149965,0.278344155627881,0.28177855119833,0.27938237453421,0.278260491610336,0.278384328650361,0.277666242239025,0.280255960937211,-0.245723960299832,-0.28452942078775,-0.284481175694633,-0.280951868157277,-0.28098964264659,-0.283176290923867,-0.28255699878193,-0.284293103442418,-0.281393905325938,-0.28188318339305,-0.284200747655208,-0.282844117435496,-0.281897046510704,-0.282829478171821,-0.284877959714134,-0.28506966977706,-0.284043347796201,-0.283458784848047,-0.281088575638302,-0.28096596897336,-0.284168902354564,-0.284452546658361,-0.283638793641975,-0.284016701690503,-0.283553959985957,-0.282933356107278,-0.281910785655397,-0.281933949600969,-0.281116417847951,-0.282102451842673,-0.283664164220249,-0.282486535148303,-0.280850297052804,-0.281780721612597,-0.283711799555115,-0.282528374793792,-0.282062911550488,-0.283595938469945,-0.283828879462168,-0.279351488201628,-0.280773381020389,-0.279967115872971,-0.274494817235607,-0.277491738860368,-0.278746653152919,-0.277694398168778,-0.281614589520728,-0.281135695135336,-0.282323222603076,-0.281442330993789,-0.281835673447203,-0.283063275040339,-0.281753194921764,-0.285089462291192,-0.284458649127501,-0.284757877012634,-0.28332453186746,-0.284702534558801,-0.284613635887547,-0.284439220577867,-0.280773045019198,-0.281729201028279,-0.281922389968035,-0.282758562547028,-0.280070336751496,-0.282663932181312,-0.27654087744085,-0.261567475143732,-0.251343778155083,-0.235662257128357,-0.22576195037214,-0.213744903139848,-0.219030905873023,-0.228829961555604,-0.229116429931967,-0.237827951799114,-0.24816594285286,-0.258906418982779,-0.27019339460514,-0.278822877510173,-0.282844905371856,-0.283305766949363,-0.283448000466212,-0.283041888764634,-0.281596623598733,-0.284237594729411,-0.282307280217422,-0.284449347762569,-0.282707289751584,-0.283187556873328,-0.282677904034528,-0.280765000285727,-0.279126152718441,-0.276118700915507,-0.257606480118683,-0.233365624486235,-0.206248365594929,-0.180993064055349,-0.155268590265105,-0.14000125966951,-0.142982375193929,-0.149489334676785,-0.169125042405601,-0.183279001750451,-0.211343928746772,-0.243545494735688,-0.263233699456529,-0.272973924903371,-0.279697327664679,-0.282290072291616,-0.280056034076416,-0.282590692291454,-0.283982369465945,-0.281129997413219,-0.282209535988418,-0.281682557991482,-0.28171663613563,-0.284311310984944,-0.280006040476087,-0.2745428527263,-0.264150422770193,-0.241512187699903,-0.197099430417157,-0.152514219989722,-0.10554563495073,-0.0568966692325284,-0.0284532885874016,-0.0247742481822803,-0.0275851419769949,-0.0347826475767358,-0.0745142822929362,-0.116763010094656,-0.172811293034978,-0.220444610429327,-0.246291244906103,-0.260360896710849,-0.270752130833154,-0.271989773922807,-0.277008451754035,-0.284153040842621,-0.281301477471929,-0.282597343683267,-0.280859749457412,-0.283533209366407,-0.282432567779279,-0.27577582845104,-0.271060000882794,-0.249618404906545,-0.210493739985783,-0.151583925451666,-0.0765046530354081,0.013811159293008,0.105074911233733,0.151043127541216,0.162913565710086,0.171519523425664,0.173244195404288,0.157606024882567,0.12614774251736,0.0550540474904606,-0.0341130934815879,-0.112583069268726,-0.158115204311574,-0.209257822819639,-0.240239155101767,-0.255883232107842,-0.269203395041966,-0.279632442499553,-0.281262028295835,-0.280982520147058,-0.281474835990482,-0.281272574489636,-0.281495929179347,-0.269001504831505,-0.259617122032177,-0.221600227574553,-0.151649050491007,-0.0673004278463012,0.0384017587904784,0.13639394977273,0.21026307795968,0.255079815102031,0.279475891709342,0.278748297857354,0.272795716373754,0.257350194120175,0.229634066426284,0.155065568526665,0.0628333697630768,-0.0261252675162091,-0.0976373787210568,-0.171204178634171,-0.219657652358385,-0.240666559973488,-0.259922343413117,-0.278296878581759,-0.283632438223908,-0.285106263416897,-0.280741044349041,-0.285150197160567,-0.28275419653488,-0.275221426566223,-0.248139958883202,-0.205279502977003,-0.124795560584786,-0.0202022719098483,0.07357590274635,0.172538357315215,0.2525556616264,0.281851696487299,0.268547793437961,0.243919084133602,0.225456831616035,0.214920557228781,0.186556073192861,0.136581880449922,0.072556443704733,-0.00756511978473636,-0.0773087675759832,-0.156823924290095,-0.206449500084918,-0.232952561317566,-0.254379687938903,-0.276305382823155,-0.283963016475415,-0.282703931736559,-0.283068914080812,-0.287994068254394,-0.28193958672233,-0.27763720277238,-0.251039038913649,-0.209526848110307,-0.137048170958556,-0.0287299749368294,0.0764939485846537,0.186729035782173,0.230644898745849,0.221079304033046,0.14771544036855,0.0744241134272944,0.0373943605636936,0.0497989717848611,0.0597781015220969,0.0608408941769478,0.0334002486776385,-0.0192935612241128,-0.0767574195026786,-0.143164328424038,-0.212429107823939,-0.228873145266747,-0.258433780847873,-0.268765696837528,-0.282171534488545,-0.282698635960455,-0.285875820085058,-0.287065479414738,-0.286966084867683,-0.284302781950841,-0.261388607212367,-0.222113308012838,-0.148151963672679,-0.0285297346223202,0.0899963043509183,0.190339558010934,0.195285504013517,0.129979565542121,-0.00231647022402761,-0.104293919805535,-0.128507943571365,-0.0710132118766347,-0.00494471107919503,0.0417349525673162,0.0262633255704024,-0.0146535446085918,-0.0767166801359334,-0.148840080135387,-0.203379086083,-0.233421245429563,-0.265097611947838,-0.274608623049647,-0.281000813723777,-0.281146162033902,-0.286237321225973,-0.285492571309969,-0.287080676049551,-0.283530035942802,-0.263367301043017,-0.232673793558242,-0.120952560278588,-0.0013040444487444,0.125510000347595,0.196303525001123,0.163436980347718,0.0717738339401191,-0.0699879796087616,-0.162729776096295,-0.145183049568216,-0.0510856141670535,0.0375045287427754,0.0671003909911276,0.0479599287480458,-0.000884144014833634,-0.0795334528939485,-0.14989898794203,-0.213959523557599,-0.245940506582248,-0.260710946640888,-0.276442019130377,-0.281421258260024,-0.284420496304977,-0.285498564289568,-0.285808329193899,-0.286840564753525,-0.28192468810842,-0.252174541899696,-0.20873651773888,-0.10305301097706,0.0352181500310464,0.156763283037526,0.197373295432445,0.182045399288523,0.096831147351395,-0.0209016676192978,-0.0688263488413922,-0.0363636840107733,0.0551589728651337,0.113073507571667,0.119273796521011,0.0766630785366507,-0.00487663335544469,-0.095042171762304,-0.172603904253027,-0.224469591900404,-0.255494990073346,-0.265439833279278,-0.279086435097191,-0.283995798259951,-0.281279303009517,-0.282685864229126,-0.286830410518881,-0.286905222689221,-0.276644625763224,-0.244006453121705,-0.198325161765356,-0.0969169749770115,0.0457427095302471,0.15421518558009,0.204390819877674,0.231932773748598,0.192937061532144,0.112331341366728,0.0822499236464721,0.112894339778513,0.171864927918871,0.198683621065288,0.157059847997128,0.0896765781555392,-0.00659769468297546,-0.108475521583376,-0.191428060437204,-0.244107868761114,-0.265399429561661,-0.275859219244375,-0.281300209308301,-0.284506218048611,-0.281948829841736,-0.283358918504389,-0.284344232494553,-0.283057981037231,-0.274873146327414,-0.246322398782875,-0.206980792468324,-0.0930832042818717,0.0428966745262521,0.149588539097472,0.215208153223825,0.269483735192876,0.276803689238208,0.215069050829204,0.198741219024675,0.210952472464369,0.247214202412292,0.236593476437853,0.184159707254932,0.0902164910001465,-0.00665323719965893,-0.0980238010695427,-0.180516321341205,-0.248700047506672,-0.27322068182792,-0.276548683900154,-0.282670540268192,-0.284832555023173,-0.282050846607686,-0.283536005134925,-0.28344945187447,-0.281311385955265,-0.280134951066903,-0.261103127715151,-0.229597034067723,-0.125886053268987,0.0173408475573901,0.128293462255144,0.205163189318201,0.259355825214633,0.274604901491264,0.229004137711258,0.208458117114795,0.204370121829282,0.225773362242416,0.224463107311323,0.148813101196734,0.0799516207769681,0.0123323794856048,-0.0828338984917936,-0.164904442609757,-0.247514332571838,-0.268393338218302,-0.277578471961758,-0.283891054505987,-0.283775221602825,-0.28093918170034,-0.283905629734987,-0.28326128717885,-0.281349767437031,-0.276191925441106,-0.277782975400659,-0.262680136643252,-0.158510838366851,-0.0233141667230051,0.0911607745954242,0.164897212026023,0.210484675386985,0.21058453181025,0.155978952839608,0.122328140254266,0.104329363231887,0.143468217016091,0.13563535749844,0.0979058002729942,0.0664250501185021,0.0371286119766089,-0.0463602243300218,-0.144747502750089,-0.233248061690104,-0.262949131601492,-0.271326413616519,-0.282490131534628,-0.282208510374962,-0.281928670994895,-0.283591083624169,-0.283413335585836,-0.276833662152639,-0.270417626846367,-0.271494083372659,-0.253111780417773,-0.172570632371734,-0.053659954032461,0.0547487266039857,0.124983220639976,0.161833163181268,0.121807700746622,0.0412427460971106,-0.0141954288910206,-0.00733293455713919,0.0542205948290811,0.0878125286890823,0.0801122412978031,0.0890737412712805,0.0778964226954692,-0.00227120555179762,-0.118170822429505,-0.212065557603639,-0.261677968799317,-0.271021142535814,-0.282013602987062,-0.283065649669637,-0.281896089149375,-0.284088905933021,-0.281123088007013,-0.276862145108028,-0.260258527822959,-0.249134548940235,-0.22524671155201,-0.141065187767479,-0.036794490014586,0.0782035627678996,0.140077038627517,0.140118321253175,0.0578178680592594,-0.0613798338454736,-0.11219930071528,-0.0724394567371128,0.015932192735415,0.0875822161390382,0.124281437953816,0.146907674412524,0.12132435716845,0.0247051535613411,-0.100029536890579,-0.202828950231595,-0.255393831221188,-0.269890998187626,-0.278458086053735,-0.281202754404258,-0.280926337810286,-0.284470935528258,-0.281703117451627,-0.26685821638194,-0.242568591038573,-0.221311674773085,-0.174477549922476,-0.0814680445347685,0.0216835151155418,0.114103845216979,0.158077528984022,0.124780667885644,0.00549317915523535,-0.139483477138224,-0.152882256454377,-0.0737168433090906,0.0477964621526194,0.139537138714954,0.188070815673532,0.206213772325538,0.144358681438598,0.0163036890923629,-0.107031217657891,-0.201511588486294,-0.252397158121989,-0.270944006331929,-0.277782877855686,-0.284308508364815,-0.281065141400051,-0.28379954929085,-0.278458117302702,-0.261350064920076,-0.232495927448107,-0.195028702799764,-0.131050329231267,-0.0195357039568733,0.0747819554570301,0.144110596838068,0.158569182280777,0.095864544057041,-0.0433378231720376,-0.147267760653742,-0.127477509711166,-0.0174934367270181,0.119028516034463,0.21144484925169,0.24718846992747,0.220644368164752,0.11970893393247,-0.0106751848741785,-0.126598501337398,-0.217671025788803,-0.257255575213361,-0.273912697012182,-0.279340839364756,-0.28243864521863,-0.283800110137948,-0.282652418844135,-0.279363538504925,-0.25914150491313,-0.231457977563695,-0.179757604201011,-0.0897383468890474,0.0186093466338655,0.0881372509229571,0.14232706234817,0.143270015016124,0.0677096638546262,-0.0123553979041235,-0.0522818488757457,-0.0226953553681105,0.0805423571151459,0.189898965105485,0.269457865110701,0.260034598008959,0.192073929533067,0.0542539367568243,-0.0631185948884628,-0.162190976265426,-0.23270259171999,-0.264856226605888,-0.276760246029007,-0.283904140660409,-0.282866227276812,-0.281530862811917,-0.284180536987291,-0.279231359036008,-0.264020082600723,-0.231320581537628,-0.179078649852968,-0.0733332926094047,0.0419732766785354,0.10742015814273,0.147568328826878,0.146440453359826,0.100357872511535,0.0756569568943393,0.0724033465760134,0.11200804890963,0.166656754255185,0.236231289665907,0.266567457376147,0.206745750750647,0.106977186068636,-0.0292233817801272,-0.13418615549242,-0.205818381264167,-0.257185826628709,-0.276119131988555,-0.279070695183807,-0.283617450284708,-0.284158050892968,-0.282334009771968,-0.282620860173666,-0.279290602902023,-0.271148598588806,-0.241542990931077,-0.187117009634858,-0.0934215118409411,0.0127317412238655,0.104239521800043,0.143375416547464,0.167094562339566,0.166212582118078,0.164050949254002,0.155885991244253,0.159298683515799,0.179336652388736,0.193427231605956,0.163193443264199,0.101491010080908,-0.0215670478500788,-0.117367389157669,-0.189961433689362,-0.236932290615125,-0.271462350195473,-0.278883391064262,-0.28170618610824,-0.28385669418249,-0.284454499383468,-0.283511160062601,-0.282652562533465,-0.280587848417396,-0.276659997318255,-0.26207228640924,-0.225964017961484,-0.151507615974514,-0.0569748960194195,0.0335343953851124,0.101853483694183,0.135264062747135,0.185694133869251,0.205078843581638,0.19758236802967,0.157164085811415,0.135251200671295,0.104799134457291,0.0523985206595606,-0.0365665182072419,-0.132870198220019,-0.193951098224792,-0.237790136947273,-0.261128835329395,-0.274478623795017,-0.279895088521192,-0.284448144237639,-0.284733498450674,-0.281663534218345,-0.283780674079385,-0.282174913192234,-0.2808580796227,-0.280869537990264,-0.274615190532793,-0.259336091471942,-0.227529955923842,-0.183083498726478,-0.120047732821952,-0.0538521549954971,0.0101688887670472,0.0703656576799277,0.100979480119499,0.0978782330357166,0.066928477628112,0.0204616677928819,-0.0291898185715803,-0.0835987396693273,-0.149095653763587,-0.204469787303255,-0.234341856252818,-0.256661405743475,-0.27119563441346,-0.280641098266309,-0.28221604561702,-0.281035227690842,-0.283531637797793,-0.283056741815234,-0.281377993943126,-0.28081958370563,-0.282516013507774,-0.282108041203976,-0.279487122015676,-0.278131217076599,-0.282284638500526,-0.279067311632252,-0.266056740505406,-0.257419519427039,-0.22643085873633,-0.196664105482704,-0.173671439438966,-0.170431073354589,-0.181418445549786,-0.178089170100606,-0.178908051316556,-0.189398896368772,-0.212394622026154,-0.237505134176812,-0.253745477907214,-0.270219972584307,-0.279111108384303,-0.280918530538754,-0.283230804695978,-0.282556072083867,-0.283960060393395,-0.280888487296527,-0.281963822863567,-0.283737902619801,-0.280763911883518,-0.284147436107211,-0.281798338270034,-0.282856666426599,-0.284653971282897,-0.290901902611401,-0.293445520771009,-0.292599957597946,-0.293668001692585,-0.285891425566519,-0.27945392281916,-0.273290916088109,-0.270105081828716,-0.266916574598603,-0.259212874187623,-0.263441706735598,-0.269611795835477,-0.269353140310874,-0.274815540936121,-0.280699505746204,-0.28031598454268,-0.284187837184785,-0.280708288710507,-0.281137629112653,-0.282790521936982,-0.282508471175476,-0.281840752111971,-0.285059541823873,-0.283187675811671,-0.282038843778919,-0.28241287085758,-0.281463838003976,-0.283819386102131,-0.285012984820016,-0.285297373754246,-0.284549580589703,-0.283304135423183,-0.283913999764172,-0.286116621248253,-0.287999238929534,-0.286560315985374,-0.287605448598236,-0.283928688102847,-0.284013128735445,-0.283518804588292,-0.282627743534887,-0.282161212575288,-0.281361478511299,-0.28487993623861,-0.283160798515489,-0.280923689942809,-0.281520874451927,-0.2808699449241,-0.283089278773833,0.249541735363605,0.275116921494667,0.273599819317066,0.273467831124038,0.274652088294348,0.274389873372236,0.272881023224903,0.272914804056963,0.273235867567292,0.273257807189987,0.274742193474446,0.275432888632704,0.273755168202186,0.273812174517244,0.276258863991956,0.274834602386898,0.274068325018961,0.275228265645043,0.273671315475394,0.275623285702769,0.275748941752568,0.274286388050228,0.275785198858803,0.276528364372506,0.275433459630309,0.275696043173095,0.276138059936272,0.273053051965324,0.274475070784943,0.275223693457593,0.274166016223541,0.274812106171317,0.273415001206164,0.275479469046731,0.275743773955423,0.275309550977168,0.275023181801991,0.276689679628527,0.274829307742302,0.271823674640657,0.272492481908905,0.272402341443518,0.265647823823191,0.268563173855531,0.269015325809961,0.272413219293299,0.274044477759848,0.273182412917691,0.27669293334839,0.276203050860408,0.276371512796056,0.276399047743384,0.276534886245267,0.276615142032819,0.27341542149947,0.276432959133571,0.273052013125056,0.276395999086954,0.275024778999549,0.274553895427601,0.274594620310225,0.273072909477636,0.276263093080148,0.274090264730344,0.275129260114883,0.271838482532833,0.264647369701523,0.252906437195027,0.243120230721495,0.2281689257582,0.215291327608368,0.201991403944137,0.210591722311225,0.221110784180749,0.225477593976873,0.230990667890168,0.237657490554803,0.249093254141148,0.263359812659929,0.267531149247268,0.273880754389671,0.276333976425522,0.273730681394715,0.274758042592497,0.272903397879969,0.274889967341803,0.276491131641339,0.275525609597322,0.275979681376004,0.276243308387701,0.274123090869008,0.274847124326661,0.271923512797571,0.268389612087708,0.250177036096075,0.226800168031698,0.209105074746125,0.183299796840886,0.157239117769287,0.147514280102824,0.148879341023008,0.154153536270003,0.164341778410193,0.178494134109139,0.201048121517533,0.232309186141614,0.256576567825889,0.263823041517329,0.269396811762257,0.271761387008825,0.271715778883519,0.275545548270882,0.273581710010018,0.274661497648374,0.272539056476494,0.274136976364742,0.276172281315166,0.275030853057981,0.271596894199202,0.266113840652387,0.261460975634394,0.24349398534274,0.20878289924493,0.171277533533989,0.128522298231918,0.0859856742323679,0.0642217824582909,0.0615458355334655,0.0625955646187945,0.0667672335527573,0.100300934366944,0.134760959236206,0.181726482886876,0.220978134925941,0.246038501192735,0.250535369133191,0.262176258157162,0.265702933910459,0.273275806127156,0.275578392657393,0.2764751199728,0.275522221456738,0.276577569819619,0.273187816394071,0.274748050962642,0.269724627328627,0.264271815852881,0.24445959560314,0.216788968551365,0.165327501046318,0.0997454771113661,0.0209595442056815,-0.0645186027467045,-0.105115007436793,-0.117306707860807,-0.127716184209496,-0.127067342636355,-0.116730251125731,-0.0890424709085349,-0.0246286114038128,0.0551522915111114,0.125743284613024,0.16260851989997,0.206925600711307,0.232465042252353,0.246906406355272,0.261601460072797,0.270931369595244,0.274937518389574,0.272815172134981,0.275701239914445,0.276725725898997,0.27306786879079,0.262818340422177,0.253169066142956,0.226904742167393,0.166425802395309,0.0854817439223881,-0.0127100535379461,-0.104799424140229,-0.180698099324388,-0.222125966508449,-0.253023237683633,-0.253944112322337,-0.246181288167187,-0.234083028545519,-0.204530457491121,-0.132902326355644,-0.0355456198707393,0.0481231468292897,0.107744660007102,0.16991437224048,0.213657965971064,0.229927033235227,0.254225000356202,0.266593348626584,0.275376286666326,0.272983267235066,0.275489438327359,0.277446067751674,0.275314508416128,0.269099196606932,0.25215928894078,0.212742392056358,0.141807035809147,0.0358289835618966,-0.049151714995003,-0.151268129084008,-0.240816215305281,-0.271237288051521,-0.264437195258244,-0.23484870398328,-0.22132405882455,-0.209529346138269,-0.179831195654915,-0.118684798951345,-0.0524407720807112,0.0273918006476437,0.0940743059639247,0.161905649169692,0.205321285566165,0.222308400599673,0.248262610606691,0.268719308644199,0.276556840925695,0.275734339908035,0.277082983366821,0.279740885137434,0.277448507185166,0.272487956214953,0.252716809190625,0.212459258808572,0.147704955367141,0.0442017377799785,-0.0646322744254697,-0.186280179398595,-0.234254174209721,-0.221318024883182,-0.152522452316225,-0.0759478678397127,-0.0363935455916996,-0.0470069424383953,-0.0562034624220322,-0.0545271118267401,-0.017092720778175,0.040155944811706,0.091174267749892,0.15495657001109,0.209507924552175,0.225574481774131,0.248188191055446,0.263059839746023,0.274984729083283,0.275711416791412,0.275148687079009,0.280486430767091,0.28031390323384,0.275883604694549,0.258165965386488,0.223171998677907,0.150940427512399,0.0307394767850849,-0.0926478193387892,-0.201966964473072,-0.211076057947274,-0.138382380851458,-0.00398422245554705,0.104111107654055,0.132862789996352,0.0783954011063514,0.00739282370737693,-0.0420512519752718,-0.0183646676698023,0.0347384700669062,0.094946253932509,0.16666440264454,0.20756397328339,0.23251766900683,0.253317103303878,0.266752396071814,0.27611872457394,0.274537975554421,0.274307727017298,0.281034438341648,0.279823135524749,0.276647550957929,0.257953050743506,0.228007435692125,0.117666310969981,-0.00869380074589014,-0.140727633470393,-0.212782624140272,-0.179925415198482,-0.0730006683267435,0.0773434357398184,0.172699639015343,0.153883051904681,0.0610522434664445,-0.0409259215499691,-0.0751689193958407,-0.0463240361335513,0.0136662366264429,0.0945718109692017,0.172863610708628,0.228560390855928,0.241681178047309,0.253218054299165,0.267181859060041,0.275474595372108,0.276097491859532,0.278128944447082,0.280078921576755,0.279086875992646,0.275012461946143,0.247236938934683,0.199581872691378,0.0919105330749657,-0.0560076943630212,-0.171215759409304,-0.213463080961806,-0.185547071715452,-0.0928423044812566,0.0311087360825052,0.0783241222557597,0.040774446333114,-0.0541440588883498,-0.130780304485644,-0.144095350856535,-0.0840120642133308,0.0112074489363016,0.117573200366047,0.204143051528076,0.248403577251114,0.254732214472248,0.259498381733928,0.270467276014429,0.275509382297158,0.274285814148684,0.273728899388935,0.278363354083161,0.27855052540688,0.266794417353283,0.237170115960459,0.192758109405023,0.0807348060575323,-0.0631567534364475,-0.168068492098519,-0.214519718035387,-0.233660238293874,-0.18308744160027,-0.105504478203123,-0.0784188128852256,-0.117615840472195,-0.191405081360914,-0.226073391834995,-0.182923118134034,-0.0995040287971574,0.0180267013264123,0.140333495211384,0.225543455984259,0.266404243907054,0.2670884860222,0.266135323151559,0.274642320457295,0.276138230024495,0.276730818219648,0.273472866582864,0.273905106833685,0.277166948908303,0.267611006098041,0.247265389167486,0.201869824406966,0.0825038468206394,-0.0556360663356182,-0.158383114288203,-0.225430646026415,-0.271076042031694,-0.278389598075652,-0.22327807919486,-0.209041432940127,-0.231139542543262,-0.271593803328112,-0.271852543707078,-0.208825473857583,-0.0935533060447068,0.0300012405169383,0.135057762984655,0.211067736306469,0.26858946745571,0.275499834421375,0.271004866826118,0.271634701876519,0.273372528933429,0.272505752511008,0.272780681958175,0.273756701979582,0.272984854143386,0.270017038506499,0.26553311381058,0.23385499422776,0.116685439447499,-0.0258602598389631,-0.136929231246214,-0.213166545207097,-0.273308281735709,-0.286473694472058,-0.247923073838955,-0.230351224482051,-0.228395844030122,-0.261969258657148,-0.257306385190031,-0.163220011116616,-0.0668512798035719,0.0240876626513483,0.125458804795657,0.193633317289337,0.26339016893738,0.272299272618636,0.270350824965837,0.275738051727735,0.273839755316192,0.274640433469259,0.274434049827848,0.273557322219576,0.271962330237464,0.276286982729611,0.287058029315182,0.271558856414896,0.164371568266685,0.024872803566047,-0.09582671023259,-0.173982708896768,-0.223223845726219,-0.233155709018352,-0.183917252046365,-0.149528788403052,-0.138973352130175,-0.18540132611882,-0.167163383553746,-0.102012843560619,-0.0410739919543978,0.00330244211216103,0.0841483714279682,0.173519712018408,0.249528017597078,0.267746596570052,0.264753675886069,0.275160265009557,0.27252841849647,0.276368044763907,0.274458815010848,0.273244524447741,0.26901046084399,0.276032863361294,0.293035500205109,0.27661183868907,0.192637401028246,0.0678843506424112,-0.0491737142651744,-0.132886188806195,-0.17685489845289,-0.14934606522442,-0.0710540462248087,-0.019497849427095,-0.036453279426028,-0.0969296286798887,-0.111631404495284,-0.0750006691064354,-0.0560200903237907,-0.0317931664934778,0.0447275336364308,0.149298338905916,0.228813366393668,0.262782567307914,0.267364801431645,0.271983744471148,0.272607857993675,0.272816985361059,0.276485108131702,0.273157143498735,0.269346305870938,0.2657219119804,0.276890954645945,0.260436059758907,0.180293827530602,0.0671509159811472,-0.0601363307008081,-0.139822127240413,-0.147561834556651,-0.074330172044033,0.0377489830945597,0.0811580778001179,0.0321965432922108,-0.0560321532479389,-0.104382860729886,-0.109049646529192,-0.100156085588904,-0.0675571476762947,0.0226176543790617,0.131546299829885,0.217040181297259,0.257206280692205,0.268870514024464,0.272297861871986,0.276681233102823,0.273818645718164,0.276050018894093,0.271432892130289,0.263881700954283,0.254469659993699,0.257388797092912,0.230382143411959,0.137929601695166,0.0250702525493472,-0.0768187598155062,-0.143378812285528,-0.122068348455264,-0.0125520581531927,0.119134328135352,0.127903821354911,0.0430605856024093,-0.0686956076030677,-0.133401945977398,-0.15822916836652,-0.154805701443845,-0.0875972120122225,0.0333388897566774,0.143758867069439,0.216296923942303,0.257683901609135,0.268621321143959,0.271828483836258,0.273255694672976,0.27481080460594,0.275768146468394,0.272884997114919,0.258717041964487,0.247176519780023,0.237167437413322,0.195874635921141,0.0933404861038904,-0.0144823907993879,-0.0990569711516576,-0.131068376941223,-0.0802123078848905,0.0462022810710283,0.135377483114722,0.106450370397615,0.00275338338317012,-0.118260921214152,-0.19032390932252,-0.205503760024155,-0.16727646340051,-0.0710187565621971,0.0544455744446371,0.155150283120748,0.227543662408233,0.260076406241977,0.273087964892495,0.274611766397782,0.272744499768733,0.276503564279514,0.275920958748079,0.270224791045666,0.254584790321202,0.238051473439558,0.220661730922226,0.153644943488699,0.0550488549237418,-0.014482362626284,-0.085476231362722,-0.101484549916191,-0.0422765724931074,0.0278148955768269,0.0561377304808782,0.018181601052188,-0.0790465206912456,-0.177290731525652,-0.242303413656391,-0.217839017108131,-0.146085708132634,-0.0153007303794364,0.0970305039664525,0.179337061144928,0.239886352883252,0.265239450908384,0.270157482423017,0.275178284618669,0.273658606841875,0.274282455355922,0.275662456934879,0.270392503821454,0.259289486610363,0.236809540269177,0.208458075895183,0.124994665300827,0.0267759612635188,-0.0370372192705153,-0.0830939370179908,-0.0974844870684998,-0.0661458161066097,-0.0531096743141303,-0.0621179658075019,-0.09909255591381,-0.156243507433056,-0.220216878612713,-0.242345083888135,-0.176474374877075,-0.0748216624796018,0.0528642543433219,0.150621121895771,0.209532427815263,0.25453553535979,0.270575844243649,0.271922730665134,0.2759941903476,0.2763064754719,0.273086110781789,0.276229127768116,0.269537409492769,0.266002634055061,0.242513860314107,0.197606501644343,0.126368599965277,0.0356103199138372,-0.0467181342530606,-0.089525121863561,-0.121740326500431,-0.132935227543197,-0.14028621225434,-0.142746778263137,-0.146760938463534,-0.169851802306241,-0.185956062250626,-0.153875172561109,-0.0871640907785103,0.0326836035386955,0.12286344380145,0.189766324879713,0.238216209103781,0.263889564338214,0.273475985977196,0.272829231520719,0.276960565018273,0.27623684450342,0.273679855349013,0.274555276172635,0.274882035188345,0.271429326395889,0.256244511561421,0.227326240158762,0.159822021039078,0.0817070604288608,-4.2034002504283E-06,-0.0741484772049998,-0.113826689154274,-0.168616718829001,-0.193920243324977,-0.18572925368393,-0.150725029621355,-0.136841712885217,-0.113589456552276,-0.0614054226461486,0.0257037186326007,0.123055019121359,0.182257868963961,0.231344290514412,0.25575983234584,0.266247863644297,0.273358137868483,0.272029186270225,0.275271860059664,0.275135823045795,0.275607986749903,0.276792580682201,0.273189371214079,0.272379042989033,0.268242910708349,0.256580084886184,0.225698059928076,0.181170007225157,0.119641517857332,0.0505965365369244,-0.0162831064312734,-0.0786953925562951,-0.112838279343697,-0.111923184211161,-0.0819352812605545,-0.0404966579968643,0.00467101951178997,0.063091104889881,0.127442693306185,0.188414254923209,0.224242241435206,0.245015771720507,0.260172951102648,0.27058727057818,0.275594330184276,0.2729542847653,0.274266707446487,0.274165153624519,0.27256510688608,0.27548853316486,0.276127937136862,0.2744176484387,0.271779601925826,0.271590425104169,0.27440440540196,0.268549337360493,0.254076957355426,0.241003043374787,0.208169708965379,0.174161207953725,0.14561701537186,0.139770484128042,0.152591153730914,0.155610834689896,0.156261948517356,0.167020668460859,0.195222930050964,0.222268069685172,0.240482471435268,0.260707045868092,0.271317013141876,0.273780998685438,0.272894331805702,0.273587127797234,0.273805389232356,0.276414346446324,0.274948019143958,0.272535313316492,0.274696590710981,0.275665933003186,0.274105024055409,0.276489993987869,0.275013396057237,0.278202971970524,0.281053875087242,0.282674761788579,0.281760018544317,0.271452461048554,0.26339726828887,0.260470347829693,0.254597616096992,0.256821485840367,0.248312075635493,0.253000616851834,0.259362183052944,0.262013415598765,0.266411325715825,0.270810792819272,0.275712225297828,0.276665409182022,0.276469650591137,0.27388520378327,0.274069112581148,0.274416026369919,0.275351136405405,0.272680721257718,0.274174995372143,0.272854854404869,0.276841457436591,0.273746574866791,0.276780721110148,0.274168848314302,0.273850187874561,0.272959823169234,0.274486717280865,0.277826118148271,0.277568093596945,0.27530950952714,0.277407845025486,0.27684640045745,0.277129829577998,0.274125883970339,0.27395347778794,0.272326161315561,0.276067899959262,0.273464156147312,0.276469830690239,0.273278913266913,0.273946468482661,0.272504818530725,0.274632312483187,0.275204532804653,-0.249364173422661,-0.237255440748308,-0.23414328286247,-0.234154369399154,-0.237887219383055,-0.233748308976589,-0.234509571326692,-0.236008252076153,-0.236559323594171,-0.237906825426966,-0.238002992941131,-0.23408257554194,-0.233802085933198,-0.235335620648751,-0.234216619581069,-0.237437717418138,-0.235222472176229,-0.234412093414204,-0.236494075093063,-0.235359466352507,-0.234860339163608,-0.237468725398488,-0.235275555113876,-0.235273642502238,-0.237696980113686,-0.236280598746553,-0.23455865554558,-0.234868609193088,-0.236252361325832,-0.236403094551128,-0.235475641371381,-0.235914085371407,-0.234969688983705,-0.236040840643601,-0.235617396693904,-0.235010161604752,-0.234487103489294,-0.236680111481371,-0.235467745106478,-0.231036043446486,-0.232003574308293,-0.23332703223557,-0.228155225026138,-0.231617967892713,-0.230925315759378,-0.234442329286573,-0.235835427690931,-0.236835516902131,-0.239817503324363,-0.237318980815714,-0.235177202557614,-0.237606088593944,-0.23638369424126,-0.234561464316498,-0.233729003663323,-0.234718943624697,-0.237265977704143,-0.236769441804954,-0.237125396671712,-0.236705104041704,-0.236627950393703,-0.234179931869223,-0.234547172032404,-0.237112655294878,-0.234480186987644,-0.235428711770576,-0.230355466374148,-0.218292259495971,-0.212398392289182,-0.209002428218707,-0.19632071575014,-0.186176152579829,-0.194495720968948,-0.205977798115531,-0.206038443269286,-0.211958946684095,-0.214093463473979,-0.219864534124453,-0.225726706423429,-0.230130834446633,-0.236310786009819,-0.238015756091605,-0.235338454472259,-0.236920790252255,-0.234356479154383,-0.235079680472178,-0.235379505042063,-0.237662174117714,-0.236411250235549,-0.235659448184772,-0.237891003867624,-0.237233730101238,-0.237955633325368,-0.234800381769456,-0.221159672058651,-0.213826129863009,-0.205632573578301,-0.195431561194197,-0.178187943609005,-0.172753842214593,-0.175568275644737,-0.183250987544045,-0.189578214452233,-0.191727569546584,-0.203186899498244,-0.215885927753717,-0.225488761945641,-0.228297104019071,-0.232710608572587,-0.232149682654073,-0.234616394846219,-0.234199413992696,-0.238007358121194,-0.23506992717438,-0.234472098209972,-0.236569910139396,-0.235718724323573,-0.238048893627982,-0.236476898436951,-0.233344792146786,-0.235765652384546,-0.227159201369402,-0.213714593592014,-0.196066444351489,-0.18177952817248,-0.159597889868474,-0.151603375977948,-0.153813061048975,-0.150412373853392,-0.152778572223228,-0.169160256940685,-0.182028494305481,-0.211292562768522,-0.224288926258826,-0.225220421940078,-0.221342298187719,-0.22646264567013,-0.229091827650493,-0.235435284781434,-0.235397678423713,-0.235593965851594,-0.236446104088754,-0.236729673035772,-0.235859658777575,-0.234728024975244,-0.234095813834865,-0.231403103633366,-0.229272680549484,-0.219225206850916,-0.194959609042965,-0.165990841285974,-0.121445212720655,-0.0607462738307912,-0.0274270824915013,-0.00836839726682571,0.0119018954697309,0.019910282371831,0.0160736895340092,0.00510815863580502,-0.0378480046977347,-0.100141618961463,-0.138941489686954,-0.167535669684291,-0.190354209234171,-0.204203083952317,-0.217033848645272,-0.23047710944988,-0.2308257934311,-0.234710361593277,-0.235491624038105,-0.237327797183743,-0.237170566613925,-0.235919019081834,-0.232288501117589,-0.232851350399153,-0.223433630289678,-0.190282745934054,-0.150968597249674,-0.0833412877591942,-0.00789475508181837,0.0675854341903441,0.125716688489677,0.170970907967022,0.188453373715385,0.190096059298198,0.181170139289268,0.156931314075089,0.0877327049122706,-0.00256581083486316,-0.0666143829580392,-0.113801065775554,-0.162004620727815,-0.187792581921131,-0.193918987742426,-0.219386358666458,-0.228978062258853,-0.234318691131603,-0.233630924389334,-0.234372455442676,-0.237135111579966,-0.238193250924563,-0.236373070461787,-0.231137885420487,-0.212003172135088,-0.169023695696312,-0.0948461914466813,-0.0232576739113505,0.0787372442311465,0.181380048438998,0.235100240188047,0.244820551999598,0.235605970740303,0.226479415206823,0.214909123876338,0.178455217635011,0.105870601690357,0.0263402258046064,-0.0409327801072935,-0.0966176463827938,-0.149137526300205,-0.172921740552915,-0.184967423543968,-0.216030701518939,-0.229143643856117,-0.235601344389482,-0.236722953317968,-0.238308718904718,-0.239254234018984,-0.237880800873996,-0.240189355184269,-0.231926336319859,-0.201027411553438,-0.157841197735656,-0.0682345736788326,0.0333044222345279,0.164457558455348,0.230343672131768,0.235408888380746,0.176055482906898,0.117119556243469,0.0875324522630015,0.0841966699351334,0.0795636469334784,0.0680382963253189,0.0239402256854401,-0.0437798812632832,-0.0924839327344002,-0.145518443870565,-0.177092014829851,-0.183269548351709,-0.21508748889725,-0.226558026247109,-0.2361940585315,-0.23670561582997,-0.239010358298431,-0.238682536251632,-0.241208187354101,-0.239135708304647,-0.227245962275476,-0.195379895100245,-0.138203276868916,-0.0267611578991112,0.103724535784273,0.214880859168666,0.226889169810209,0.159477459813754,0.032050480138833,-0.0670791629167908,-0.0937992830113519,-0.0454795043337842,0.023948600317838,0.0698752210037588,0.034672060006207,-0.0219131472973905,-0.0916191773143071,-0.157849967109133,-0.176541015588387,-0.191404595198775,-0.217838978535287,-0.228758433421654,-0.235282649436027,-0.235482242241513,-0.237960802235668,-0.238896940796146,-0.240967545819291,-0.239637583491855,-0.217013347993423,-0.194849953964162,-0.0948890870562819,0.0322784208602068,0.1648620447359,0.228020504976873,0.189142246583512,0.0748921035263784,-0.0813552073267209,-0.167835761651271,-0.143987662417244,-0.0431206244585181,0.0635353567269474,0.107350397984805,0.0717350523728553,-0.00609004009192509,-0.0996124854411412,-0.170288539235264,-0.20428229743996,-0.207297575138967,-0.21140404709012,-0.229590918087136,-0.237660268487734,-0.233629807275748,-0.235431610542116,-0.239868107902003,-0.241828364859959,-0.23747909268938,-0.211953317801924,-0.16558974527215,-0.0630060982876056,0.0753571646246225,0.181958829487183,0.21213538501887,0.16477679722901,0.0588426604852476,-0.0634978369285719,-0.0975460448060279,-0.041317094367251,0.0702528480148726,0.161216816038235,0.177004198001487,0.10304159261337,-0.0121015924810164,-0.144144898988902,-0.224902080144293,-0.250503486840217,-0.228919393071003,-0.222948583473081,-0.232963986910896,-0.237785912770648,-0.233706677064963,-0.23491413151874,-0.23856174324961,-0.239352192562082,-0.229875539024086,-0.209858291949966,-0.163009858515792,-0.05985084070844,0.0710913019428552,0.154382573340421,0.186011001444029,0.180777927150664,0.130669857591892,0.0779179814924565,0.0778869732164318,0.12458155814748,0.207425307151588,0.252446605736811,0.209390363057672,0.105819028677415,-0.0460919928198399,-0.187528165832635,-0.264895504059905,-0.276528155816534,-0.25184945755023,-0.229600472674492,-0.236207025913739,-0.234030523699015,-0.235774419162046,-0.234141493974299,-0.235905203469004,-0.234407197864105,-0.23179698144508,-0.226752185600954,-0.18295995529881,-0.0790124260718662,0.0386919205826666,0.12476078206181,0.174236311354143,0.210785584607327,0.232748023344918,0.218523103750093,0.227814057035583,0.248436390142917,0.294350810925787,0.288884755645275,0.210619566854199,0.0564651173098847,-0.103964594284326,-0.219194744779148,-0.266614086349491,-0.289442990519963,-0.260958112112557,-0.234137269085356,-0.235305539865094,-0.238229633275177,-0.235240186915519,-0.238135690387531,-0.238563539352609,-0.233254622552933,-0.23570425337991,-0.253333380809441,-0.23271108046609,-0.133153819773672,-0.0100242535340825,0.08816113878454,0.160378929773864,0.225945754176093,0.268544681974755,0.266457563146274,0.265184787135268,0.262680298463582,0.285842610595066,0.264066054069012,0.141009074207292,-0.0175712497094173,-0.147616664148123,-0.236212356224909,-0.26480287404788,-0.284763751591455,-0.257110841627738,-0.238159774757304,-0.238073059161084,-0.236895627882931,-0.234605542961047,-0.235725597689871,-0.233942279580541,-0.235835832329465,-0.248878246576019,-0.28608640569109,-0.28693347951024,-0.199603666336498,-0.0777718480225366,0.0393017732677056,0.133053520672453,0.202264536192532,0.243152863312859,0.224776502265369,0.199854001880828,0.193296158409023,0.223762943512166,0.183638600950989,0.0664843136147299,-0.0667723595885288,-0.152665855503986,-0.209669211323755,-0.257889866684326,-0.268401999117833,-0.253851427927809,-0.232835592752716,-0.233414580239887,-0.234500648617267,-0.237565795561359,-0.234859594832037,-0.23447552812334,-0.233693167355222,-0.255169215970345,-0.306165391061017,-0.319230215107064,-0.252693103558948,-0.133349206867835,-0.00316443841888104,0.101506293785318,0.180438110145338,0.179850684547695,0.127915334793182,0.0914993384178675,0.116749066977745,0.155357075479816,0.135280119433894,0.0155463599398233,-0.0739147337413655,-0.134469964697994,-0.178750667707924,-0.22909995917873,-0.250274761231243,-0.249334112486827,-0.236318850040494,-0.233504617347258,-0.236607100495877,-0.234629086432701,-0.236180185506966,-0.234400934300999,-0.233771143793342,-0.256695276166025,-0.304604703066605,-0.316387512030998,-0.26721605321584,-0.156681499993079,-0.0177086514947162,0.0990862592967321,0.146729939648138,0.102047992708141,0.0185725968197101,0.00663888514228821,0.061996947682415,0.121470574558492,0.108225734972744,0.0270404834280146,-0.0502539540767931,-0.101205739020354,-0.157446374231636,-0.209329986025245,-0.234375979793267,-0.238857314378329,-0.234424485417055,-0.234360078747814,-0.234759572709973,-0.235580761779126,-0.233839951914386,-0.236806948553024,-0.233548731539271,-0.250349350798793,-0.298251555178967,-0.302745163509199,-0.234988475609148,-0.132730088918499,-0.0101036556415461,0.0892204049619468,0.0986032443979938,0.0253250259185436,-0.0699555531306579,-0.0477334910489256,0.0384478884278304,0.10573959722759,0.0910571011080696,0.0413763530918341,-0.0212752751397637,-0.0809154523637641,-0.156152550025068,-0.208960040310305,-0.229932625785481,-0.24013124795835,-0.238190062238112,-0.233315725921579,-0.234593664337029,-0.237617515302586,-0.237140995045765,-0.233919179224795,-0.235136910567668,-0.251111991162522,-0.292290680832133,-0.285435080530055,-0.21004421739132,-0.101540583768343,-0.00217133614488054,0.0549539407727494,0.030132418822219,-0.0587153055084397,-0.108053893214402,-0.0540076018241033,0.0350365884763531,0.108959544706458,0.110059547319631,0.0648011781734111,0.000604803566026957,-0.076131588747419,-0.149157406263929,-0.20152078829499,-0.22621475959175,-0.237466299248259,-0.244802784973623,-0.237058323931872,-0.233877830483499,-0.235312405691012,-0.235102556680905,-0.233554627573788,-0.233326384958481,-0.240001057070066,-0.267671575329879,-0.253415958984778,-0.179558770338099,-0.111145076654991,-0.0287441768390356,0.0127189628113586,-0.0297740845481191,-0.0684231774930841,-0.0664762891267112,-0.00786114153762211,0.0670691979933134,0.127381616575294,0.136569059382958,0.0792085486268281,0.00453038235080268,-0.0937154139598064,-0.157499146874679,-0.1991504994929,-0.227599147215068,-0.236089239144066,-0.238128120110257,-0.237548026255695,-0.237065476675121,-0.23552193149104,-0.23515560289176,-0.237216661048627,-0.233060734220583,-0.231279050189559,-0.241256342505731,-0.212695822397301,-0.141586162796074,-0.0885514964338547,-0.0316195607667271,0.00239092630099955,-0.00544244340391945,0.0102637059200202,0.0319541908066712,0.0803517426467153,0.118969220901886,0.156335642982532,0.149326392828856,0.0697223609046895,-0.0172223739787428,-0.109012211926029,-0.175271684231509,-0.203639116371696,-0.228104616680682,-0.236536175740028,-0.239617226703842,-0.237105032734171,-0.237022223823661,-0.237925199190551,-0.236367323028278,-0.234760159477002,-0.234595553295765,-0.228303727056531,-0.216367811582331,-0.185928927043024,-0.130311303205677,-0.0645822882829756,-0.0114869467714362,0.0358730196368192,0.0687316291036663,0.106832945033396,0.119252811158325,0.127093615961223,0.142230089706578,0.139598079071182,0.107653377081398,0.0375727348380262,-0.0594669937485473,-0.132015134383864,-0.183703191008033,-0.210852600419155,-0.231042182954309,-0.237339178734735,-0.236585611047242,-0.235475627394048,-0.235221640453426,-0.237609563153206,-0.23726152407734,-0.237828153783348,-0.232929905998969,-0.230912815380176,-0.212833704583044,-0.1755617190035,-0.130069028412639,-0.061581986293438,0.00920555555621276,0.0641321864022107,0.136003951777916,0.178183530987957,0.179321761224407,0.150913917820251,0.132288211904377,0.108039436177738,0.0608137981912725,-0.0186886757820599,-0.104739073877363,-0.157849986401374,-0.198629697904442,-0.2228356192494,-0.229774559101699,-0.237472146024807,-0.235860909374741,-0.234988868644841,-0.235983416189463,-0.235003608993821,-0.235852472013431,-0.235542621339689,-0.236670568979952,-0.234865013810386,-0.22833260810702,-0.208484520751263,-0.171684153820331,-0.111247629597503,-0.0391612158393376,0.0336977683560064,0.112506348518064,0.14859918309895,0.141896192407529,0.114218437934277,0.0800046876630708,0.0340614656877593,-0.0204484532002185,-0.0834128289020147,-0.144069676741832,-0.181496770036447,-0.205801110738019,-0.221389396986493,-0.230578760186644,-0.236726179904483,-0.236783727190508,-0.237913723688751,-0.234671268669141,-0.237843471756383,-0.237684929770483,-0.234889764374786,-0.236277303773789,-0.235379333853746,-0.234359287098284,-0.233121034827614,-0.226585239703654,-0.203787351909658,-0.18271816616588,-0.134656366566544,-0.0940293595454741,-0.0554987601300806,-0.0613919388220808,-0.0785072585664594,-0.0882209591761662,-0.0982479138685437,-0.110850996886704,-0.14187990547744,-0.172167220979391,-0.198748055613769,-0.217432370799172,-0.228731071353266,-0.232645899666043,-0.234956658478346,-0.235731675847319,-0.23374600300462,-0.234629412681775,-0.234003780960721,-0.237262717661854,-0.235827696643635,-0.235568374051535,-0.23631290002603,-0.234651687535239,-0.236057867128034,-0.236981608095169,-0.238752599501837,-0.237039376110449,-0.225829324311401,-0.212286792932973,-0.194635532110313,-0.19687442094735,-0.195572982200851,-0.207406775989055,-0.204402477745131,-0.206895094576942,-0.21077968666431,-0.215829558241768,-0.222642184364603,-0.230337099505401,-0.234293883733515,-0.235332924063817,-0.23540054540582,-0.235070266977387,-0.235734885308492,-0.23489642316632,-0.234588719654751,-0.234649700530163,-0.235389393081897,-0.236020441294956,-0.236409190796002,-0.238794804792693,-0.237370314954404,-0.23679701020682,-0.238417984963088,-0.235462967622626,-0.237490123582009,-0.234917923987674,-0.235319663796469,-0.236858180544028,-0.235696634642132,-0.236011088667582,-0.236602247651303,-0.238073602958247,-0.237141333314561,-0.233548302716702,-0.23485643250869,-0.236046788670299,-0.23603546518169,-0.237361097861953,-0.235482202340999,-0.235061566843303,-0.236033196304803,-0.237764938540251,0.230848858393177,0.250265173467657,0.249068489671255,0.249978998208954,0.248081140216703,0.250892921402538,0.248378055426458,0.249987347639274,0.249990345138545,0.248456276542072,0.247933381018455,0.246910991076151,0.251097478095779,0.248109202808667,0.251097202709702,0.247503819390409,0.248888330454908,0.249053477272701,0.249905776817605,0.249351214680985,0.246951617765548,0.249610408836327,0.250981169557038,0.249499429942575,0.25065985854624,0.246882321854399,0.247370462204919,0.249711621533671,0.250150354966484,0.247819646676551,0.250524498753056,0.249092539200438,0.249855990985437,0.247235764250008,0.248005096438778,0.25093726281594,0.250363598503405,0.247251340813845,0.25056503309261,0.245385874774216,0.243781416101536,0.247781463300706,0.243724190261493,0.245118504569093,0.246827528736749,0.244792094113762,0.248186914449387,0.249496382976763,0.250582624904443,0.248858095402397,0.24818289163523,0.250599516669674,0.25111156410092,0.246893198244944,0.249833164799751,0.248770678562498,0.248191966641829,0.248200385761482,0.248772462524426,0.248128370266864,0.250830635010276,0.250464442619003,0.24742327255959,0.246157794994383,0.24749694184165,0.250516595687088,0.244676810866524,0.234073890185401,0.23063128145251,0.226819327909646,0.218158610941335,0.208368498352325,0.221193366714982,0.226990023800703,0.22476129845895,0.231534067524407,0.232940320241902,0.236854247841322,0.242861606903814,0.244803997238798,0.250433936308107,0.250878694184942,0.250668736728486,0.247941337188235,0.250280197673307,0.24922026612963,0.25092744360025,0.248726725953041,0.248168269469062,0.250020116030075,0.249092350155225,0.250866261186121,0.249071593302966,0.253975395550506,0.239140441135961,0.231849567465646,0.233052874900476,0.229386221876066,0.214865374748679,0.21196337885252,0.21508679297708,0.222246815530047,0.224753773972796,0.225408612315835,0.230086964289034,0.239524363771809,0.244272467625517,0.241828642191972,0.246704658156122,0.246392997072561,0.246875478690086,0.246764784786315,0.247898372225816,0.2470827209521,0.247026048380643,0.25041660589173,0.249777104560257,0.25104648268677,0.250021738613964,0.249923511596788,0.251294415434156,0.249403389158236,0.240255965353323,0.234659310936778,0.228559278649981,0.219670041209514,0.211971050666188,0.219221602935935,0.211652756897784,0.210782492272934,0.21855750465221,0.226135946443191,0.243726090941669,0.254464186165688,0.250786196380084,0.244295982021418,0.242819920912768,0.246847597051469,0.249015908065699,0.250879320412886,0.249065362175625,0.249527304396695,0.249504457058644,0.250455927758566,0.249895397395328,0.246244972560508,0.245717246074925,0.245423741739877,0.243094607680816,0.226934108553047,0.215265926064784,0.185364052428127,0.139957900229098,0.109272228079487,0.0865499105915857,0.0638486789369489,0.0510032745790123,0.0473097953007949,0.0562662147674937,0.0849014214878778,0.139885513520039,0.173413288737793,0.202921567878783,0.217692923713308,0.22591533789638,0.239470567009048,0.244318335127834,0.246074768030928,0.247040122328757,0.249437143589406,0.250469901130772,0.248263910343928,0.249128514712466,0.248354987068656,0.246365950493006,0.238821699800123,0.218520022464574,0.186823768112479,0.135323088617769,0.068726281058804,-0.00923138949352626,-0.0689079816008218,-0.119291104804391,-0.142392924951362,-0.144100983821694,-0.143225914401625,-0.117114477993219,-0.0572111325842997,0.0261152760455336,0.093459177934311,0.145160352485547,0.19083800422227,0.212485638642433,0.217787123910879,0.236963624506057,0.245317694174573,0.246557597327606,0.24928145811513,0.249037173015597,0.247892694873416,0.245748205935097,0.245927077901636,0.243200311301498,0.225218136844954,0.176599044814812,0.106554200419023,0.0431118128204455,-0.0566449818527108,-0.158897408193902,-0.219647849531277,-0.234484823884586,-0.234375243424661,-0.232067209471803,-0.21989297617484,-0.185494694829895,-0.116849700437926,-0.0430473227038167,0.0371822906386443,0.102119208816581,0.159861979948609,0.192391365127218,0.212362994944522,0.233814005681191,0.244775177171588,0.247510948485735,0.250147516096063,0.248764363548319,0.250447790205438,0.246258568500866,0.239608238328372,0.229080750435589,0.191480131846658,0.132862301214159,0.0417495105152001,-0.0542491311207578,-0.177452769016891,-0.251517731965551,-0.261952167093284,-0.212567832445356,-0.15729920035525,-0.136303701278205,-0.135606282848858,-0.140085414120061,-0.129544367630391,-0.0680321315552526,0.0122512553068366,0.0802339751657404,0.145121295270855,0.191105332362827,0.207505633870528,0.236670151811096,0.241956238001718,0.248574314833854,0.25041784165958,0.25082945309519,0.247288445808712,0.246382721616794,0.237188852477661,0.214378401435823,0.169816739089217,0.0961687096248639,-0.0164692691697663,-0.145838988023325,-0.247664073176372,-0.26563330873919,-0.199421814276064,-0.0826220887854855,0.0105831877211232,0.0289085337763678,-0.0265141218375565,-0.0997608771425879,-0.144022275280788,-0.0993443155278676,-0.0213774374098611,0.0732014098887211,0.158169003326604,0.190307561797669,0.209183045983984,0.233174268417859,0.244354332274005,0.248396878466183,0.246898975512288,0.249989172331226,0.249511926265895,0.244953618210424,0.23593538296275,0.207468367576402,0.161018814446755,0.0463423621382327,-0.0797872944837395,-0.205365904838822,-0.256222119365352,-0.209869936929028,-0.096656176310223,0.057730126863119,0.144835984400214,0.109204449802215,-0.0138464514039153,-0.140365387569422,-0.184347014342227,-0.143588966543049,-0.0423260427959173,0.0839246715453073,0.176564564348901,0.224536069007412,0.223771445484981,0.2284975174973,0.243819790344959,0.250856917386401,0.248394935561045,0.250788746222831,0.250142821616808,0.247845533375121,0.241180376908394,0.205833333661581,0.138727746906189,0.0209204510729442,-0.120812394843332,-0.210902275274786,-0.227840429461402,-0.168583677114863,-0.052380758334282,0.0778466364026593,0.107264908837474,0.035052997711546,-0.114266196799749,-0.228691878851517,-0.255058882851561,-0.168057415321133,-0.0243662973204458,0.140536391639138,0.244846659513485,0.267278483131067,0.247545616172051,0.237799293706213,0.247994226501427,0.24996936594847,0.250367122518651,0.250591331245783,0.246212719128434,0.246877535270811,0.238232420962159,0.208737029955613,0.131545212401019,0.0124296622226583,-0.113193403970733,-0.179379266116046,-0.187167905589149,-0.158125591457457,-0.0964832147553286,-0.042187628243022,-0.0495866955730662,-0.12523229457875,-0.242369914279858,-0.305526984886385,-0.274563760487588,-0.153659901246438,0.0266560184075122,0.206799783624283,0.291962740700031,0.295176192664773,0.265953939486805,0.246024904299275,0.246899297961434,0.248186307766415,0.251115885976159,0.250770022054715,0.248427322845967,0.249430444966129,0.240510290821245,0.227029221763252,0.15145193074033,0.0327624167793135,-0.0798004487605041,-0.141608772124906,-0.166016138358037,-0.180089409712517,-0.196296911769995,-0.192343259354603,-0.215926861001316,-0.257243994881433,-0.323925046510442,-0.339206799581753,-0.266629305670049,-0.087593624069179,0.111331310227541,0.257117150161752,0.303998060194419,0.311874269904222,0.279474337525582,0.246915289933785,0.250287457042082,0.24950480808975,0.246942278385671,0.247993379189904,0.248570208482326,0.246846861048256,0.24327666570103,0.24849654065552,0.196977201375217,0.0826680731615504,-0.0217804346563909,-0.100517641702253,-0.158520921229197,-0.215448428813119,-0.260378028724757,-0.272928900340375,-0.274050655350951,-0.287561768676806,-0.331066034025117,-0.314508132446519,-0.189563091349484,0.00283879530380011,0.177359164299064,0.28237046085808,0.302310256894545,0.304132672804433,0.279046715719963,0.250296760418754,0.2476868960505,0.248528127106581,0.246916235483182,0.247302658253065,0.248326932740627,0.245160779977775,0.252660341884475,0.285149591880009,0.264213292670887,0.162191406098036,0.0453028483861489,-0.0552019657635746,-0.14264566166635,-0.205562742046698,-0.254889291227589,-0.254600333968139,-0.240101983639696,-0.248824262896147,-0.28722614725196,-0.2431071815138,-0.101361663341364,0.0743619871568293,0.199821932646895,0.267747101684197,0.300621887506095,0.295082820065575,0.270867111679121,0.246277846036743,0.249549419102814,0.246218153554093,0.248517152988934,0.249247747877712,0.249436468735202,0.247290058513244,0.265211473292132,0.315598421892548,0.312257899162648,0.247437020133279,0.12296960125791,-0.00231543999523241,-0.108939029763319,-0.196161195775363,-0.204652951354186,-0.169518754571025,-0.148060197352825,-0.195146456368555,-0.239587583884971,-0.19436958927807,-0.0353794496897163,0.110798829563873,0.208988832917798,0.253620272457487,0.284833647680753,0.28286094377044,0.269790033686299,0.251029394618635,0.251017942101627,0.246951484326953,0.249787060628224,0.249115521670426,0.247792257712633,0.248551915084706,0.27276762207999,0.331004280376274,0.340714635594898,0.296107245919556,0.185760711584482,0.0399702405604273,-0.0872568931430971,-0.136910135879382,-0.113664019298471,-0.0548183692829605,-0.0727315612437477,-0.15618601564257,-0.203889792091104,-0.150870834050332,-0.00735945413939097,0.123570088898427,0.198676416733776,0.243251644838124,0.269822322371478,0.275008223570203,0.264833686084425,0.251313098431484,0.251398052006208,0.250596116865697,0.249537866600394,0.249602425148206,0.247675361051377,0.250056671685835,0.279265960727047,0.334665048745018,0.353959064721034,0.29329529802517,0.194926248033892,0.0685805073557697,-0.0429777714734758,-0.0665264211103662,-0.0175631365142879,0.0389148198768237,-0.0242190519823808,-0.127856907757628,-0.165387127128075,-0.0993989045483121,0.0106937985180169,0.120150881646731,0.188867054992776,0.242176470426894,0.270276218902928,0.266908189632285,0.269980307481217,0.256888384181061,0.250271398195662,0.250702866882477,0.251060992307181,0.249297280239074,0.250585616948504,0.250089406506318,0.280714102424141,0.343292040124026,0.360183270260756,0.291400031403016,0.18841819964031,0.0826010242146794,0.0120694939037965,0.0194263003409666,0.0717400085468116,0.0747319782000643,-0.0108759902692796,-0.103335593765345,-0.136791726618945,-0.0835424689590161,0.0111476484042031,0.103630326215393,0.173984333742533,0.229584735675709,0.248814470851744,0.259792366958848,0.263500701569372,0.258917593751173,0.249672487544924,0.249699256003666,0.24795930578643,0.247551791364414,0.250085516719394,0.254529794724413,0.270356819102196,0.322799493354112,0.329868229341794,0.272687746500268,0.209735321033377,0.120338746543122,0.0626734260845157,0.086182860119457,0.086298576027307,0.0431516598068547,-0.0325597623585489,-0.0992618383724737,-0.130859650404938,-0.0886545254644325,-0.000915360902822742,0.0877075018498458,0.167320893454623,0.215475467197157,0.238409457251912,0.254361067796259,0.258041441614195,0.253548053299112,0.249466136358516,0.248438452076024,0.250108092223095,0.248581864785404,0.248893118759767,0.25035552716656,0.25965224039236,0.284893086320373,0.283538173761003,0.236746098598681,0.199884616325228,0.131175466869724,0.072021401433459,0.0586868143849218,0.00881385298589418,-0.043747227651603,-0.0972426208056938,-0.128266413889426,-0.142791456053038,-0.0989012933402112,-0.00171271977248339,0.0824151097714119,0.161599018904786,0.212651321972889,0.231560141821953,0.251541721490017,0.252424829119537,0.251711884705147,0.248789973652145,0.250649435431094,0.24879494639605,0.25091181408665,0.249718774486252,0.248534185143052,0.249945579524128,0.249319130587638,0.241827743439807,0.209703967721392,0.161259212738322,0.101013207292041,0.0334632824568165,-0.0287148879482183,-0.0969458725120168,-0.125966302703226,-0.140022114370978,-0.150441278918609,-0.133501075690097,-0.0850236968671039,-0.00923570372135434,0.0862422432740144,0.150774551147226,0.20597272514579,0.234156435539268,0.249030869144095,0.253411482143231,0.251042185531782,0.248454850238322,0.250335180427886,0.2492681068629,0.248600590324468,0.249000639451486,0.247632176529163,0.250347019711798,0.23754091943399,0.215810184812491,0.17814673782458,0.118440734601853,0.0448821324451786,-0.0253115359114656,-0.118310180098871,-0.177985987602515,-0.188339025896717,-0.172269486300895,-0.15053824202059,-0.120464059166197,-0.0715121750931591,0.0150154044400347,0.106952558247412,0.160376957881854,0.208689809750921,0.240607615648674,0.248393234256305,0.251137074994527,0.250648383562197,0.247639852802533,0.250074125656568,0.250568842204435,0.248223367127609,0.248082725869024,0.250930211768699,0.250561920160241,0.245028430875702,0.225949213185093,0.190528803971591,0.123739732787776,0.0431347066276653,-0.042731075858307,-0.136819118391919,-0.184242093479005,-0.174487911468872,-0.145673217290723,-0.118455719050701,-0.0691999334052952,-0.00363478425610447,0.0613588350957708,0.129103238546115,0.177509905429177,0.213196781382527,0.235671971411387,0.244122295714807,0.248572577331116,0.248399043111922,0.249564734688214,0.250121238655275,0.25080446608325,0.250419742185329,0.249261630413635,0.249890959628218,0.248238931414042,0.247081348116579,0.240249388930607,0.227918491777562,0.194468380844027,0.152034693294825,0.0838960660567916,0.023337606862952,-0.0171143202235207,-0.000926183265861072,0.0179777572273538,0.0403736344634068,0.068790694668801,0.086782156274917,0.130790303160331,0.172313150385549,0.200074185026327,0.225978216112154,0.243829109763458,0.248397781403978,0.249228673256089,0.249920993156808,0.247530915452722,0.24682195921732,0.249284457171946,0.247679141530711,0.249569844672997,0.250212014308042,0.248548284436873,0.250132748461598,0.244506445009627,0.240920614147563,0.234347318085925,0.226208689187704,0.199933368857996,0.17452983899134,0.159088505926513,0.158831730680403,0.165870946031078,0.185477667696942,0.19564989788681,0.201330718663226,0.215505333787339,0.226838804924608,0.233521127102112,0.243379553047571,0.249732471228546,0.249544375095444,0.250423689550372,0.247915035702205,0.248086616589829,0.249257865298438,0.251182324197753,0.250257533071073,0.250771967543749,0.247361237854101,0.249548175158822,0.247785638826081,0.250639614381178,0.245985225775204,0.246619978728079,0.248457354025045,0.250078742003067,0.245965090650734,0.246827248014053,0.245741905276915,0.242034311987598,0.247388638046009,0.24913251368239,0.248725064223706,0.250427996090752,0.249261745438541,0.250106967303223,0.249811335227834,0.248575888705555,0.25006405851656,0.2491240586738,0.2485636724509,0.250791273700599,0.247977552507207,-0.258216298250371,-0.24608200775403,-0.246604309280021,-0.245378735831199,-0.246518664038178,-0.248955777529335,-0.248423177195507,-0.247824489802676,-0.246826279109178,-0.245188720194003,-0.245965432305177,-0.247176598282633,-0.247382352363719,-0.246753078262196,-0.245665913502754,-0.246368280985804,-0.2457171424157,-0.24836476548526,-0.247063704827739,-0.248951337852538,-0.245733331429347,-0.248816869480157,-0.249102370505039,-0.248139810141903,-0.24842727102018,-0.24828433542223,-0.248045368941987,-0.247762731777172,-0.24773345773728,-0.244784542483153,-0.246610083856125,-0.248118286968033,-0.246181729369611,-0.244801197897138,-0.248846158475155,-0.24772694119267,-0.245857817757284,-0.248905344280917,-0.250104267519016,-0.242604395838301,-0.245135633679407,-0.244677735389496,-0.243713251050532,-0.241290106236236,-0.244797765903297,-0.245440679009865,-0.24921125513407,-0.250242474071689,-0.249719830143346,-0.249614578545342,-0.248853872983456,-0.247177930586452,-0.247509299015651,-0.246268462564795,-0.248594069649314,-0.248678809739474,-0.24580690993673,-0.245896505246173,-0.246217530213952,-0.247974021753467,-0.247932589352473,-0.248101901481516,-0.247882734894349,-0.249467780815194,-0.249755301985871,-0.250395093893511,-0.244004857480697,-0.235819333332026,-0.23758712890159,-0.233602119528827,-0.224039233318772,-0.215138682487386,-0.228356723271397,-0.235885687191793,-0.235243319750463,-0.242274476060109,-0.237807550920261,-0.239088453504829,-0.241439858089028,-0.243541095265486,-0.248045491300159,-0.247368965695392,-0.247444661601628,-0.24746797559521,-0.245575531054974,-0.247030157008099,-0.249052235136752,-0.245344525642444,-0.246101380883324,-0.249121499399008,-0.246629927563973,-0.248317986502292,-0.251183548751762,-0.252937550118294,-0.242420074416275,-0.238882929259548,-0.244333606263683,-0.240288245004375,-0.231241722729094,-0.228599604667485,-0.235404046140537,-0.242172332885797,-0.245874486524806,-0.243566110324639,-0.24141369619033,-0.244591968085203,-0.243603031735791,-0.24392471265654,-0.244563769406232,-0.243832956480008,-0.244704389908814,-0.248760422492684,-0.248491184852424,-0.24647001839986,-0.246964434309668,-0.24666557394752,-0.246895590948628,-0.247935931435944,-0.247312875462782,-0.243471242033199,-0.250999897378395,-0.247761714784449,-0.24339054065268,-0.244453281785077,-0.249030429726076,-0.244915304556476,-0.24396101464514,-0.244738886414401,-0.238559760805149,-0.236602042198209,-0.242042262148863,-0.246034432967347,-0.261009922699457,-0.265437333667662,-0.252036507242134,-0.241625830499295,-0.241105850445306,-0.244779560847091,-0.248511956325699,-0.245832385355893,-0.24503675550931,-0.245696762107373,-0.247428426983044,-0.245951180275864,-0.245589185614142,-0.247535611796133,-0.244348192698652,-0.246613042614572,-0.248102927038178,-0.241432570937714,-0.239313596601748,-0.213107273869976,-0.172579434197019,-0.148114668236083,-0.113235643720579,-0.0919360935596001,-0.0755138175969816,-0.0708205368909879,-0.074910066469794,-0.103185365477078,-0.149281984059966,-0.180945751532735,-0.208915088381847,-0.223365142996883,-0.226705902441969,-0.239935768797458,-0.24712805797353,-0.245501661220418,-0.247868555548851,-0.24491497798395,-0.246026897964895,-0.246230522238329,-0.249237005901555,-0.249838097501962,-0.246750136887364,-0.242242606891421,-0.231676899625097,-0.208255667697994,-0.169140920293715,-0.103263909150161,-0.0185376071268152,0.0459641940992131,0.102144800202717,0.127487360702011,0.131966390663935,0.135515668993616,0.107088730669465,0.0482838407646405,-0.0336086504276108,-0.0945729895792405,-0.150653672780223,-0.193628645929329,-0.210400292097902,-0.220900054642533,-0.238995034877277,-0.244220593697194,-0.244769799751445,-0.247417210426339,-0.246651882302857,-0.246974867340631,-0.244457426389034,-0.244683061865188,-0.24217358994542,-0.226631952521511,-0.187690863126746,-0.124858720339861,-0.0615354072379183,0.0346200104992142,0.145915331171434,0.210886438667607,0.233696482451718,0.234196827787942,0.233458109963622,0.224464753985707,0.187399406694836,0.120350098312749,0.0447853300049981,-0.0309086217996076,-0.102179407607133,-0.159996854113338,-0.185323189523487,-0.210544970301447,-0.235747641931811,-0.242976626284529,-0.246387502538283,-0.248730850063357,-0.248491773121971,-0.244769349571076,-0.244213173414906,-0.238780024048544,-0.229135627215634,-0.194733982423005,-0.136247331003655,-0.0492394185055003,0.0497223773135349,0.177135932103768,0.248908290653635,0.268150158925963,0.222274013046289,0.173353515054814,0.150058147054609,0.148213709095579,0.151188715186356,0.139045978329071,0.0826391247152021,-0.00231297764085111,-0.0764204053750644,-0.141692271310784,-0.181826069243251,-0.207613605392478,-0.233867166881255,-0.241134169726462,-0.246278227000649,-0.246948584960146,-0.246622934252957,-0.247008464021981,-0.243212615692829,-0.234319674713242,-0.21274562964604,-0.16434311946022,-0.0945975745364284,0.0170462798368796,0.152605483580876,0.252713035029369,0.272140773868255,0.205462134361333,0.0966244485646854,0.00277383249393284,-0.0174727551383118,0.0393562632192069,0.113569562366611,0.159056617555322,0.116685018521299,0.0409664257728715,-0.0637732252052664,-0.151294516072069,-0.187607152006889,-0.210419466744889,-0.232393886395162,-0.246825557986199,-0.248960801551052,-0.247959551014298,-0.247760557074125,-0.246947883247904,-0.24200658465962,-0.229291047973884,-0.201337516805353,-0.15555158938789,-0.0384351738061505,0.0887940000102919,0.215241330178454,0.267248215987002,0.22046922719246,0.102632242553857,-0.0536647920076525,-0.143134818850844,-0.103736850916434,0.0201772988627064,0.155641610116257,0.203162596909831,0.161802481354002,0.0564604036382911,-0.0760096565197564,-0.168676556156703,-0.216983261654183,-0.222903842226842,-0.231526372425625,-0.242575673223408,-0.247817542980213,-0.24520710531715,-0.245723120746323,-0.247771652978753,-0.243893997472204,-0.23520711233512,-0.202050963228246,-0.135124525954036,-0.0131823914356816,0.125132447015282,0.218872672864725,0.229590057917852,0.163135568760643,0.046998406403862,-0.0906243814087045,-0.12066716505241,-0.043530160472442,0.119019711268336,0.239717318520039,0.27063137098182,0.187109960530221,0.0356049614487747,-0.141759345127913,-0.245322683783216,-0.268418352516244,-0.245527065761179,-0.2325347511958,-0.242489711241567,-0.24687909517755,-0.246217738981455,-0.245260110838288,-0.246230126459976,-0.247872499952523,-0.237631456721906,-0.206188859046045,-0.130097254246066,-0.00874776287906744,0.114183519461263,0.177504140324264,0.181087686290401,0.144478861173343,0.0765485753649682,0.0257753237975193,0.0328821654893989,0.118288378967589,0.250180798164414,0.31612155383022,0.285854300383056,0.165982947347975,-0.0282371168421937,-0.216615546541509,-0.299984726039201,-0.296980434759172,-0.268877894283321,-0.244559862781755,-0.247448118038839,-0.247778677113228,-0.245369960122238,-0.245279433037183,-0.247222457749543,-0.243969045880722,-0.236262054613123,-0.227155151228983,-0.151806752968416,-0.0328147644021468,0.0703112268569946,0.134013640870025,0.149365134833521,0.15920926004731,0.175498418149694,0.182869126290144,0.209598623262292,0.260723601967413,0.332447133179337,0.342543396903922,0.269557083322148,0.0825314297206501,-0.124014878540436,-0.278330915672874,-0.316490100663951,-0.316163122290729,-0.277939444789806,-0.246352357777171,-0.247897109358089,-0.246766944239116,-0.248708170613352,-0.24772733262746,-0.247119352720073,-0.244574001487912,-0.239781430755529,-0.248030178184636,-0.199464366307977,-0.0891118902003394,0.0175750117795196,0.0890115147986412,0.141219160752945,0.197762239297232,0.245752036338611,0.270717993243858,0.280028712124462,0.298198810788634,0.337048791725804,0.320179817648826,0.182792998053419,-0.0222386098508899,-0.207059954295214,-0.309439344093739,-0.319007817421862,-0.314961643482164,-0.27930355047444,-0.248068976220004,-0.245765450499069,-0.248134225039644,-0.246174594556356,-0.246200978842732,-0.245367468381856,-0.245346047379021,-0.253960602793422,-0.286658934334412,-0.267033501612132,-0.17221326500745,-0.0547122474219062,0.0420638187069308,0.129746998893656,0.206641730708371,0.262691639188019,0.267333193901656,0.250986308770115,0.266283095828883,0.300622546382683,0.24751959540516,0.090317485974053,-0.103361236562668,-0.242155894041402,-0.296546018922812,-0.320808312048919,-0.305668645722836,-0.276136353197151,-0.245303954994063,-0.247254640233735,-0.246302668714733,-0.245342944054362,-0.248138607027972,-0.248666068916166,-0.245499131028402,-0.26461925466052,-0.32199476202418,-0.322730764239496,-0.260864984733554,-0.133219107846808,-0.00543084835045944,0.104192669956047,0.196989512610303,0.219788457240642,0.187175128988426,0.175925262361354,0.224596137175779,0.258095821645287,0.197695082939353,0.0163433417019931,-0.148636611274486,-0.255706113549694,-0.290538898458628,-0.308408393888578,-0.299280429746887,-0.272367240076659,-0.251209517011183,-0.245145829965434,-0.245842712500132,-0.24625677258234,-0.246563471241863,-0.24778103734863,-0.248006679177194,-0.277410088281475,-0.336814182214246,-0.353217253407433,-0.313788242525671,-0.20041041751072,-0.0586190797153412,0.0791106670349171,0.146417056837367,0.125101726197485,0.073099595157316,0.109710705677533,0.189864083647576,0.222171763617808,0.148239585073661,-0.0174428219823925,-0.168449933574017,-0.255562774989565,-0.283935997113209,-0.296281491478187,-0.291151165837413,-0.270040541491481,-0.254027255247284,-0.246034032031588,-0.248127723280378,-0.248961121460735,-0.246782332709326,-0.247859227240663,-0.251829438570928,-0.286679783053806,-0.345516748057281,-0.369785384776261,-0.315493028440827,-0.216171269751192,-0.0871924936460478,0.0337553919671012,0.064490395818419,0.020595699415898,-0.0210163204650295,0.0600556255415372,0.15991965291796,0.179708079981695,0.0860256692332504,-0.0426895468826061,-0.169975248435804,-0.241023613395347,-0.280616593434658,-0.290337655257981,-0.280304697701971,-0.267772026938591,-0.257564499817707,-0.244780562197888,-0.244910070698551,-0.247690627206212,-0.245187997152837,-0.249070651616544,-0.254559657617753,-0.287102938661288,-0.35315080926742,-0.373804012123146,-0.316586468721699,-0.207942345794003,-0.099600037527323,-0.0267694941146671,-0.029069798775081,-0.0769303680739727,-0.0623977426356813,0.0367508024226168,0.122985255800635,0.13879970686326,0.0596693068386197,-0.0490750174069667,-0.151701094395558,-0.221295867422365,-0.25527039050244,-0.264914150073727,-0.264056726360877,-0.261246153359195,-0.255827580568566,-0.249411553435636,-0.246519487826143,-0.24591897259985,-0.247416645747905,-0.247652588530979,-0.255827668792735,-0.279748643759458,-0.332848352225589,-0.353229719000947,-0.297279514946129,-0.232472749336456,-0.143620810950887,-0.0766804909377685,-0.0985765932468342,-0.0981414682056534,-0.0366071933094292,0.0479321955030145,0.109851065359352,0.120406721515667,0.0581018786547227,-0.0430144807856089,-0.129220066625249,-0.196783980264942,-0.234078129825089,-0.24537527599288,-0.255179392177317,-0.254931243128107,-0.250243223031604,-0.245955294056067,-0.245577484535445,-0.246484989704643,-0.246307765102458,-0.246444088590563,-0.25367106826659,-0.265157758612486,-0.297445634119271,-0.302599585231781,-0.265597139250643,-0.22452058221724,-0.156203196901813,-0.0911978941383431,-0.0686364585145653,-0.0159606846369223,0.047148016809999,0.104924890784331,0.125055329074032,0.121379691438631,0.0695878992579801,-0.0290782966241704,-0.107057764482679,-0.178589590627298,-0.224181570704452,-0.234858439891552,-0.250149790503061,-0.250824472579428,-0.250144226805857,-0.246086631397062,-0.246623631165605,-0.24578547588244,-0.245198917873698,-0.247064458133768,-0.251639123750815,-0.254181697674886,-0.261325419922109,-0.255725611558217,-0.231222678843391,-0.189072744424971,-0.126991042664339,-0.0556024146994342,0.0176109032387175,0.0946783961860188,0.128049840048594,0.145008280126083,0.148664708908611,0.118044954302963,0.0697357446000277,-0.00861075154060822,-0.0954479579742883,-0.163112781785827,-0.213436052679613,-0.233122411344582,-0.251046301758369,-0.251449786392315,-0.248571744710387,-0.245103488132953,-0.247199227619951,-0.248491237966351,-0.248619261008078,-0.247865563012513,-0.246064520981317,-0.252044336092615,-0.243267669523668,-0.226178863626735,-0.194300673404611,-0.141761493330295,-0.0665470248182326,0.00755931348527015,0.105762505652326,0.175428882741846,0.190526020587489,0.177565537993791,0.149626753251333,0.114774765616375,0.0659239822004745,-0.0222097450860793,-0.110184982733031,-0.162861857415413,-0.208821443466007,-0.236439324328475,-0.242464274232668,-0.246418132718588,-0.247495288625654,-0.248901735561712,-0.248217728400422,-0.245110610114674,-0.246690105010123,-0.24891093195695,-0.246526279569123,-0.250345562708301,-0.243904530780804,-0.230167950245554,-0.197099511069686,-0.12701693601771,-0.0493233269999249,0.0417145806368083,0.13527331234582,0.188963326458863,0.178490348646276,0.152223864914223,0.122323847594686,0.0698529804138788,0.00118473527740803,-0.0652121059714112,-0.133840977890952,-0.180715065958112,-0.212118492968037,-0.229818659088822,-0.244338487045083,-0.248144902493672,-0.247271710585442,-0.245116996588243,-0.245607509504103,-0.246308746209558,-0.248611355318596,-0.247461088269811,-0.248229654546652,-0.245620426707068,-0.24080805203565,-0.235933758913952,-0.222576860499752,-0.188517187240816,-0.145176529839971,-0.0738874293214498,-0.0125522998169547,0.0302688157744307,0.0150655792962014,-0.0127033656075653,-0.042656829322436,-0.070431004697447,-0.0888109176796563,-0.130966035510945,-0.170259957684499,-0.199221809127507,-0.227113004178669,-0.240297595550041,-0.246908030314619,-0.246862592845516,-0.245830227212002,-0.245328356878939,-0.24538756811484,-0.247156625965682,-0.248809814069248,-0.246843224551603,-0.248640105855714,-0.246705545155923,-0.247762843573073,-0.243075862095139,-0.23861081566575,-0.228801907178749,-0.217990107429989,-0.194390799449026,-0.168725982914555,-0.145878709261213,-0.151373453777945,-0.159997223181125,-0.181762501045725,-0.192843104195965,-0.201843571359466,-0.209846503273957,-0.224491147758448,-0.233618078201005,-0.241724883637612,-0.244441503172908,-0.248490401719426,-0.24704190724923,-0.245154062166853,-0.24671017295457,-0.24805085714587,-0.24484683689461,-0.247578162082337,-0.246470305115687,-0.245199642428218,-0.24924263297185,-0.249642881200536,-0.248075846949055,-0.245610815850733,-0.247164689088748,-0.242954711520486,-0.243844506237154,-0.244004558600167,-0.241372029298813,-0.245161249617278,-0.240331897735978,-0.243094586058989,-0.246111566381566,-0.246839877528735,-0.247619168037916,-0.245112564943372,-0.247995163545462,-0.245487555592469,-0.246894867628495,-0.245833592163273,-0.246754266869562,-0.248279560037926,-0.249130013403464,-0.246462393736125,0.258285795073408,0.2611522735319,0.263184394920949,0.259844913298652,0.261641017452671,0.260972801511769,0.260225492878229,0.259747569325766,0.262670106926421,0.260669251337697,0.263120346870308,0.259919671148375,0.261543136086674,0.261413622329425,0.26391666937191,0.26038446306038,0.262353853369869,0.262551572555202,0.260596890536198,0.262558591882301,0.263461942273883,0.262117377172446,0.259539816591546,0.262821325450404,0.261482523846339,0.260488086444238,0.260603229320082,0.260834172420528,0.260205443078049,0.261937492916269,0.26266073748937,0.263356910743929,0.261804279013593,0.262522309832715,0.260712141352783,0.26331822176898,0.262757595800553,0.2630067870728,0.261861544534656,0.258360609097058,0.258166870771264,0.260933224105141,0.258214127577533,0.256781492010955,0.259581174703581,0.257145064114062,0.262912856196743,0.264637343739849,0.264608673885742,0.261085541373684,0.261844728185926,0.261083882347965,0.261371153803618,0.262435954730012,0.262313275122793,0.261715682097632,0.261158031187963,0.26179940338574,0.261424224654822,0.259613385651812,0.262713255061881,0.261655969959817,0.26113305332268,0.261339317073475,0.263148427742932,0.263343395424726,0.256116847949726,0.250361228805253,0.24767664971548,0.250705158324625,0.241146912096886,0.235473461184024,0.245815181101971,0.253778284858577,0.248991692750116,0.255818439485034,0.252650585379502,0.254033312676145,0.258792633329115,0.258598124924534,0.26146224155922,0.26274357139062,0.2635505583213,0.263749813457221,0.263335471089032,0.260271513710817,0.260402761097838,0.263216820004822,0.261096444542756,0.264054186962852,0.263962922025681,0.263881849184975,0.266174454684567,0.26652696480424,0.256355788238617,0.251883847867901,0.252353712963568,0.2539789528353,0.247207825896404,0.249958255152666,0.252884177723388,0.257045856150001,0.25765968965047,0.256869063884919,0.260991929812515,0.260807449570975,0.262976998013845,0.259097416847536,0.25867008177516,0.2598933365951,0.263293719849077,0.260858230867124,0.262518217474028,0.260333050386969,0.262791343500184,0.26289959895364,0.2633211233939,0.263145080759307,0.261096203941043,0.261178334137625,0.265232046217556,0.259096788100643,0.253955847442268,0.245660022639413,0.247881350317895,0.246462344768843,0.248261036198494,0.256475345614908,0.249138375530519,0.24594091098903,0.255730226126787,0.258340749906389,0.275048202913854,0.279596271829758,0.270711973909636,0.257521978422963,0.257137099598508,0.257909460824671,0.262751159261457,0.263260650727971,0.2618630052975,0.261386162010444,0.261562691699668,0.262172292514036,0.260097923819937,0.260303011615994,0.255963541400173,0.254863170279945,0.249802851827861,0.229954603098417,0.222737833383518,0.193428181541778,0.154808975770673,0.136935902419085,0.112103713250299,0.0936864120751797,0.0759535832269176,0.0734711813376337,0.0806130663565157,0.107131833975828,0.156631486258069,0.191753114362302,0.223650314285787,0.237844174373319,0.244262922744381,0.258940211250135,0.261249400887083,0.261366311548546,0.259582805886921,0.259759779469578,0.260605232627333,0.263550023074926,0.260196525270025,0.257889878467108,0.252378824168736,0.24395978303698,0.214325289885503,0.181516313065997,0.128557601931136,0.0730779278404889,0.00178706992704834,-0.0601574354983553,-0.103142091445671,-0.125417465085792,-0.131659317720956,-0.13257836883716,-0.109519060595272,-0.0557376217931149,0.0287761944516525,0.100385758128785,0.160037841175283,0.211552843953771,0.233762025352051,0.24461413902942,0.255179033087788,0.257384103670698,0.262434787881666,0.26272537912819,0.261307167228916,0.260975235312372,0.259734102504282,0.252384299830735,0.242270734758177,0.214592685880498,0.156445089802932,0.0797932884130963,0.0224806941931163,-0.0646757447889379,-0.161769996535344,-0.219523220906841,-0.235890811341069,-0.231582582637118,-0.235112447100428,-0.232573287511165,-0.202842727983467,-0.137632097232544,-0.0627338739933608,0.0278096082124535,0.0998160429803275,0.172183094262016,0.212805445403005,0.236067921911895,0.251065498213066,0.259307690946849,0.263910984880454,0.261128220416454,0.263738388937271,0.262010846628332,0.255648979466464,0.239752290809396,0.221594470545137,0.173503869126243,0.103763659429564,0.00760945031067383,-0.084163497020414,-0.19499965507493,-0.263024302089601,-0.26901065635452,-0.225980386463484,-0.174443811051475,-0.157926745342824,-0.169625935923871,-0.177868005584968,-0.16816075128976,-0.110075619045678,-0.0167615705013054,0.0637804249682883,0.147684088506872,0.20721939538145,0.231468570106899,0.255214187419805,0.258699101172065,0.263847503618565,0.260110308328286,0.260630375317486,0.260839935455294,0.25284541561321,0.233157527026703,0.204339579808249,0.148260721501618,0.0629522577812548,-0.0449757993425751,-0.171225422297997,-0.262820700662436,-0.276228474123236,-0.210025325896803,-0.0984194341005132,-0.0057874174327679,-0.00155912908696334,-0.0678398426914467,-0.155319112967686,-0.200186506694489,-0.15526648842951,-0.0638001089923063,0.0496965284346688,0.153879163130293,0.205174947158102,0.227210825581405,0.249290883463167,0.257659088974893,0.262275930493065,0.261534443610691,0.263588954423253,0.260429844929126,0.252557474757089,0.238275326478609,0.199058495171316,0.141557435620934,0.0235392767740735,-0.103842475386425,-0.217884104084735,-0.262199679464759,-0.211317463091502,-0.094061541698612,0.0540628946658417,0.136383764766001,0.0795266793304746,-0.0553342582708709,-0.19692404469144,-0.242028208677996,-0.197422506804286,-0.0843177470054555,0.0603937831039156,0.1725066353624,0.229684584763218,0.240755004232043,0.242614515196658,0.259255044798372,0.263568105030595,0.260398169397869,0.262419770817463,0.261531442766659,0.258880447811009,0.24553526284124,0.20558480032232,0.12766962493457,0.00203847277162258,-0.138689056244226,-0.214340759129752,-0.223167795339306,-0.155656613218024,-0.0327756072995777,0.0933182916606895,0.111801187237218,0.0203409850340928,-0.147997757896854,-0.273507600945774,-0.30487786792608,-0.214411904192444,-0.05760307031994,0.130228393590842,0.247467608325804,0.277975627675411,0.261429281672872,0.251188235572909,0.258290833251003,0.263212319126224,0.263064075784555,0.262378574715912,0.261607459323215,0.256702472334011,0.244019096271557,0.21260915514573,0.122830087116118,-0.00642846762705312,-0.124870805922844,-0.177777790264357,-0.173566110772123,-0.1361488805887,-0.0723830630300532,-0.021234693985955,-0.0392766564367868,-0.128656681567184,-0.267227072754984,-0.340326954703631,-0.313440615405285,-0.19095074145027,0.0127314339807424,0.212239889076099,0.306040454632866,0.305876097750097,0.278443733346477,0.25848480256207,0.260364833429426,0.261760388000202,0.25975929227797,0.262421685506478,0.260019176801233,0.261898250157977,0.247146033590089,0.23010047779656,0.138891287878015,0.0163212166788133,-0.0906681667672985,-0.141038951580734,-0.151800972933545,-0.158235610698589,-0.178091860843645,-0.182271083415065,-0.206889963927636,-0.262458802204468,-0.342478726467268,-0.363972407067496,-0.295678265261369,-0.110044178578867,0.109332845751297,0.272043575311263,0.322999700739241,0.326424018309926,0.292795779251121,0.261710466406282,0.260333602554769,0.262695475975157,0.260433460047458,0.260500993618878,0.261817698455033,0.259007949162713,0.251749766470432,0.248322598086017,0.184714930233308,0.0676062204758729,-0.0338857655022914,-0.0973552604427908,-0.150665202855518,-0.206142916197781,-0.25843039348487,-0.272818588158778,-0.275638918071891,-0.298556268900575,-0.347199295143338,-0.337615956335703,-0.20830136591362,-0.00645276780358725,0.193862087144215,0.307404552836002,0.33204304006896,0.326119101380024,0.29444122007155,0.263888188626401,0.260772136131655,0.260345687051639,0.260631701822907,0.261290893492882,0.263546186098342,0.25877230888948,0.262724142187251,0.287444771564345,0.247927400705014,0.145642269464557,0.0366557443691971,-0.0521977614687686,-0.139107929322789,-0.210439964038647,-0.263475799867978,-0.260460682585881,-0.246905910509975,-0.270851673855343,-0.317031568739347,-0.268430891808435,-0.119468395494979,0.0731251129947371,0.223756045060429,0.298862658845709,0.334346208709102,0.317693360032137,0.28703178014458,0.2599851121595,0.261089352805211,0.262881023965383,0.262441393901065,0.259607649248932,0.260186898515263,0.256260762097947,0.275248612114408,0.318800355279761,0.303627738188411,0.236354892244708,0.120450685347342,-0.0046299032930406,-0.111565590395165,-0.197906788936102,-0.213855106968868,-0.17827438184147,-0.166367704088615,-0.224612070374507,-0.273999779381794,-0.224758360888556,-0.0455375621156074,0.118601665816533,0.238744458773904,0.288745529825591,0.316168972039447,0.310288097823936,0.286144794860824,0.26528308344871,0.260770037658547,0.261642944934029,0.259767041123504,0.260152943766054,0.262235562203052,0.262525670372526,0.286919515084409,0.336714463370358,0.344732429788453,0.302619144137209,0.198309669381949,0.0542039049658494,-0.0762583894157522,-0.131130684950395,-0.111496326579568,-0.0644828652117967,-0.0966618543652392,-0.196773966403505,-0.239466692375953,-0.168453747643946,-0.00555538565477633,0.151580410125663,0.239525144281472,0.284147806084812,0.300271742254525,0.302090874281848,0.285198647152191,0.266613530278504,0.260995102786367,0.261180874208067,0.263946147274265,0.260267049985691,0.260723800176766,0.262505101391915,0.290843289170233,0.346729031676927,0.365035075799324,0.311903518949552,0.2238566274427,0.103831904443975,-0.0137157148812053,-0.0429923099829658,-0.000953151214154333,0.0306899933643024,-0.0544211684696323,-0.16565642221998,-0.193297299664171,-0.102200368884064,0.030426134307845,0.1615210488445,0.234551258051029,0.283253459150296,0.296828818028979,0.288264420762807,0.285925956260703,0.267810459813725,0.263358367057429,0.261591659908374,0.26092771251488,0.263842386492266,0.261247094930173,0.26514241498982,0.292750826431434,0.355417325134283,0.378433857742158,0.319403796874266,0.224012492911744,0.124731948959401,0.055035786395249,0.0524667230353425,0.093389987303934,0.0694823965981907,-0.0354499977148592,-0.128708980574985,-0.146471822074067,-0.071216969838326,0.0414264917606136,0.14228285140334,0.212442592909179,0.26039372819189,0.272614163367486,0.276941474637118,0.27589349421972,0.271784163526989,0.263862682760554,0.262729446271934,0.262457622329651,0.263852611893606,0.259218772523618,0.262942923712343,0.28211555752497,0.335374938641415,0.348935899483379,0.297155738098457,0.242125819882474,0.163331444273144,0.105649571318966,0.123778262665399,0.110598130582211,0.0423624011538652,-0.0488543611451711,-0.113251292149398,-0.12931212838212,-0.0703986397524982,0.0321694373212712,0.120832452441867,0.195996729168684,0.235229379220508,0.253412608957959,0.264562068664504,0.268493299357028,0.264222949764215,0.264052122763102,0.263810497678725,0.260104344812279,0.261235563177094,0.261852574936514,0.262352334262068,0.267820484792086,0.295920123397561,0.300954148861322,0.256580495022166,0.227750124334208,0.165731698673453,0.102232954434793,0.0879743317957459,0.0258076263013775,-0.0418444694076141,-0.100697431746481,-0.131198385048261,-0.135559313298764,-0.0847776223188567,0.0120419671369809,0.0956932439459853,0.174601674850923,0.228411709626288,0.244299393972335,0.261730528284198,0.265934167448673,0.262264649735873,0.261164396161999,0.263040318562302,0.263162468296513,0.259771447043456,0.262186540463176,0.261295693096145,0.262840877022264,0.262382345787356,0.25627483384413,0.226858288192477,0.178466777486053,0.11677157952149,0.0407758105752831,-0.0292532832226109,-0.106867836226384,-0.136681815816179,-0.15259053133101,-0.161401832704964,-0.137429300814485,-0.0841881417799081,-0.00404556871785449,0.0913899557417579,0.159771511718665,0.217381784389868,0.244084500517612,0.259582727163022,0.26564431634018,0.26152351133006,0.259954969514314,0.259989057358035,0.26105573535497,0.260909212480103,0.262474776309496,0.262756605220628,0.257711612037861,0.247082006766481,0.22390391724944,0.193267133273543,0.128632688240414,0.0469794220693221,-0.0311571308412257,-0.132542700280424,-0.196677798684643,-0.205804284196333,-0.193494834238141,-0.167475871971944,-0.131725488163813,-0.0803248070734222,0.015647562579778,0.106830708720594,0.162946906178916,0.215900981851397,0.248703908085764,0.25770172082095,0.261198544897916,0.2597494864796,0.261895018794613,0.262036169812211,0.262666324042852,0.26121239038757,0.260420623750821,0.263008392104048,0.263159875848708,0.252067181595827,0.234503938792882,0.198534635951088,0.125608246095892,0.0413127376356777,-0.0533079198081995,-0.153495683957841,-0.20223811760671,-0.192388710075009,-0.167193737896139,-0.139124837496099,-0.0825408531554729,-0.0110094058636566,0.0582422254271623,0.129475306892233,0.180621026480838,0.221426128279378,0.243496336380659,0.25614027036218,0.259878218524708,0.26005967804138,0.261669994259687,0.261144408411627,0.262132015770512,0.260948341642547,0.261999658420219,0.264345099655812,0.26108693229346,0.254633402940696,0.25172573943304,0.233472246592333,0.19478050207796,0.147336780655676,0.069103640423911,0.00232481430921958,-0.0402023452739413,-0.0216480006343012,-0.00241057991376248,0.0250810624859928,0.0618444590778932,0.0809860284910649,0.132404720209806,0.177517358745361,0.208652115490288,0.236489222172147,0.254062786628512,0.257471829136684,0.263148486552075,0.26019632539128,0.263614993392436,0.26351447196932,0.263542707115449,0.260870317274481,0.259678581815708,0.263181409178364,0.260515193549921,0.26072597356622,0.257935891601495,0.251500493386814,0.238294908592853,0.226005870862267,0.197353297530426,0.166825576644986,0.145290159532157,0.147142869161741,0.158132294024907,0.180659598413011,0.194021916904391,0.205428612809502,0.222590445660737,0.237431296978422,0.244182048850072,0.254230200881959,0.25920149880094,0.261192683893354,0.261947691333445,0.260936908445133,0.263297015946426,0.262359069053804,0.262112910096644,0.262922313355131,0.261227530207494,0.262139203372128,0.263741776113015,0.263697990146682,0.261421037218095,0.260353588573795,0.261464322438155,0.258161660176496,0.257681649834587,0.258436594879335,0.256725203985338,0.256162958102528,0.254438409994123,0.258276304368295,0.259759016159265,0.259656136410922,0.262894548122939,0.259658361183641,0.260121368304576,0.2616768027756,0.261761572345408,0.262391119093417,0.260428264094177,0.260597251080065,0.263421180184043,0.260600325084213,-0.272449045803279,-0.0547385513840854,-0.0562943929624087,-0.0551633686244106,-0.055053917367402,-0.0538589132391455,-0.0563871705490307,-0.0548108174201907,-0.0561294935123742,-0.0569636090374562,-0.0553279121805798,-0.056605686918451,-0.0566048819547633,-0.0556048166429695,-0.053262830090189,-0.0532120444325046,-0.0567595698071299,-0.0543798403685895,-0.0555467338041097,-0.0543083480948645,-0.0532608038394983,-0.0546178704063401,-0.0548777878694847,-0.0538374510708317,-0.0565997955552848,-0.0557446098447073,-0.0549800149009678,-0.0536860570349944,-0.0560795916163638,-0.0527796875113452,-0.0554115665755301,-0.0551827007821786,-0.0564384774307822,-0.0546940074785298,-0.0544501396143609,-0.0536425640864592,-0.0564029382760385,-0.0572322696382602,-0.0566628374427338,-0.0563677145464523,-0.0572777650651985,-0.0534614597303313,-0.0560636798625184,-0.0528809122922815,-0.0573557088575331,-0.0544415324988381,-0.0543072114188233,-0.057815441285159,-0.054790758637733,-0.0520016714784365,-0.0540566645754056,-0.0526981700898973,-0.0552455415110135,-0.0568555277142272,-0.0540281336787927,-0.055488558177136,-0.0537028734810158,-0.0544834484496201,-0.0551505974105418,-0.0528764027196103,-0.0561856048172808,-0.0540607241422478,-0.0563977592621564,-0.0550113748166587,-0.0525377441829041,-0.0560589360479966,-0.0599845524744001,-0.0641180553803464,-0.0635139909451592,-0.0639191260353825,-0.0657944123126471,-0.0688420966106488,-0.0646927936934924,-0.0623606786103774,-0.0623493664157118,-0.0568516454982848,-0.0564647028196705,-0.0537781331252216,-0.056392378864433,-0.0573196812751574,-0.0570068668252938,-0.0555792434215082,-0.0555206298525487,-0.0527722382730488,-0.0537367096336963,-0.0550532983719004,-0.0540556950128927,-0.0555603208042371,-0.0550250339357918,-0.0530625671069441,-0.0563270490975126,-0.0523545262483551,-0.052560708002823,-0.0519193140385483,-0.0532463727187428,-0.0583768934437324,-0.0596747786228271,-0.0517482325338037,-0.0598158393008623,-0.0666709073731486,-0.0666907910617781,-0.0603877658043677,-0.0643693878114493,-0.0675889250262449,-0.0685825752104365,-0.0634670676624204,-0.059326071737892,-0.0582681320828776,-0.0595895386807011,-0.0554393925228261,-0.0553512351347372,-0.0566312461409223,-0.0540386753679591,-0.0543026324688512,-0.0539477132038202,-0.0561963175884544,-0.0539164952061386,-0.0555381804785011,-0.0547517762286353,-0.0497302152664814,-0.0460444393614949,-0.0458120758987811,-0.0402128110868546,-0.054932169364213,-0.0506118494744188,-0.0559659536729208,-0.0643150957758532,-0.0676415178853744,-0.0580855392659376,-0.0591504668077888,-0.065662833515902,-0.0772087593031033,-0.0855403870947639,-0.0847046784382661,-0.0681378311060769,-0.0659105633724065,-0.0639761096449828,-0.0541759246413954,-0.0553645443384537,-0.0559770345316538,-0.0562019246204621,-0.0565732501015534,-0.0559212479777374,-0.0550221075025109,-0.056704237122971,-0.0539998479767094,-0.0567158889881242,-0.0460229097453083,-0.0385311577266753,-0.0427687565577232,-0.0497038932407441,-0.0565558555118876,-0.0761750973693864,-0.0961141191596729,-0.107461471430663,-0.111446532476609,-0.111577828342344,-0.116065019869081,-0.118022483897784,-0.115251195247464,-0.108160366962925,-0.0841619737113085,-0.0582734000347169,-0.0488567686698262,-0.0533642488253386,-0.0549176074111923,-0.0579087409487042,-0.0565643840338124,-0.0538976717527786,-0.0536369414491684,-0.0539901220548124,-0.0551090458546013,-0.0509362743052374,-0.0540413349654334,-0.0488216103303416,-0.0360704743997703,-0.0295906903078587,-0.0289534008742095,-0.0432988803506371,-0.0497933521396872,-0.0737735924614055,-0.100262032993609,-0.115073870052001,-0.139758730265637,-0.149321565077113,-0.151690223071251,-0.148362224937775,-0.138128797870195,-0.112905044568873,-0.0809392477670224,-0.0428133931793417,-0.0234819724033044,-0.0368219299855013,-0.0503601631617076,-0.0503801737757574,-0.0553982236871577,-0.0554461915340049,-0.0538528789830657,-0.0532165645755414,-0.0503524392506738,-0.0488152500087037,-0.0269435643926034,-0.00964835752158117,0.0125343140313855,0.0293809071650755,0.0268248033341945,0.0324394101009533,0.0241939495163877,0.0163197913895119,0.00488181529337459,-0.0122679832657557,-0.0238481624487721,-0.0331363355305409,-0.0305030763805879,-0.0203805644294638,-0.015383553716073,0.0074195966378217,0.00362670688383497,0.000504716983467413,0.0123008524176001,-0.0247411157248463,-0.0315639684204073,-0.0389555640915594,-0.0549948794914509,-0.0566912746785736,-0.0567484160192789,-0.0558564947009042,-0.0491339533703619,-0.0316018661647929,-0.00790554737450682,0.0153838728174367,0.0512459670282246,0.0727038233228869,0.0791244536715848,0.0875113060617266,0.092395299071154,0.0840065457220705,0.0814454188699605,0.0786519337086401,0.0822692335383463,0.0841291532172712,0.0883604850198765,0.0864000184528552,0.0848749303049132,0.0836657794464358,0.0535059364705376,0.0220177273806631,0.0145555019393469,-0.00800440081589547,-0.0249038988200864,-0.0402365422293127,-0.0534500447165233,-0.0535367709983957,-0.0532033554584254,-0.0525396914252589,-0.0474294297368226,-0.0198092494867312,0.0113113785169736,0.0352625962760308,0.0716526481267477,0.0851053984730641,0.0972057907118151,0.0887830500028091,0.0888914532379129,0.0875731285293751,0.0986377214316377,0.107459367396127,0.117614819656022,0.119018729128427,0.123147030115731,0.110637027415755,0.101246179833453,0.0865686279067686,0.0552278252623066,-0.000135600956698361,-0.00228625146192213,-0.0169630270412997,-0.03354807410036,-0.0467457199375343,-0.0526734301714844,-0.0545019228685336,-0.054788483968051,-0.0499324241101811,-0.0452952432427499,-0.0200187083303472,0.00765175082800837,0.0234393214250473,0.0414041471781972,0.0339416715591333,0.0305529717635859,0.0236668327368993,0.0261410947208589,0.0411811818028187,0.0562124793589103,0.0629663531830222,0.0630700495784426,0.0532006178469398,0.0612067178234368,0.0904884909061413,0.097626270947952,0.0790702433962446,0.036266746636777,-0.0256118809156792,-0.0390447866548655,-0.0473630584847321,-0.0460185655601656,-0.0472471723717048,-0.0528545447779578,-0.0531571509412094,-0.0535742137171979,-0.0535591546895323,-0.0478060166078587,-0.032472914885047,-0.0174151212702558,-0.0222789320683652,-0.0316478932921304,-0.0482383232626701,-0.0413211773573085,-0.0354066699359314,-0.041508625862262,-0.0242060240027481,-0.0199700036348386,-0.0242643057995358,-0.0596112489410914,-0.0716025858942562,-0.0063327526529311,0.0544584576633056,0.0767173558879266,0.0558223634156502,0.0164305590739242,-0.0393772253928015,-0.0528907123501178,-0.0620314635547753,-0.0549281113636559,-0.0576032974900561,-0.0560986633120396,-0.0566487251708847,-0.0567469593981194,-0.0520348126383751,-0.0530285628190872,-0.0398908267662373,-0.0488117195795574,-0.0671145642181322,-0.0887360995525469,-0.108185836780479,-0.0951145386886678,-0.0897250610834008,-0.094416088160088,-0.0836564554436042,-0.0922189383239904,-0.125294444465061,-0.152505931696723,-0.136220386686157,-0.0359083909684368,0.0488629042109037,0.0671550500008093,0.0347278576480259,-0.0181723858184684,-0.0592840989197569,-0.0679703908745074,-0.0744270783404633,-0.06285086495199,-0.0561201619452211,-0.0538913312772118,-0.0529827110454513,-0.0566449584666297,-0.0557772637223825,-0.0549959511022939,-0.0525275889369501,-0.0605943481266395,-0.079365315378717,-0.123290069215857,-0.145277207223628,-0.131815384521957,-0.113944418661433,-0.11646197581806,-0.131704341285364,-0.139632042025604,-0.177778399382564,-0.203491250708105,-0.143917039094976,-0.0108754403286947,0.0535105581223935,0.0552986054909752,0.0146035844391068,-0.0393560357200028,-0.0714058419842096,-0.0808165723515159,-0.0796630389378845,-0.0700786856889333,-0.059289342394405,-0.0524905646272047,-0.0548329335340431,-0.0547744349265793,-0.0553183332171674,-0.0528238749011975,-0.0535907200498531,-0.0622336452632209,-0.0933691421193659,-0.124132579327475,-0.153668918065015,-0.147014563917936,-0.141482908785921,-0.139549816787478,-0.157978081023456,-0.176053193233318,-0.209471732492436,-0.192731168543226,-0.0880837846834503,0.0356653207829941,0.0679034821392363,0.0536562171395341,0.0129982102410505,-0.0563419977815265,-0.0835088559976672,-0.092088142104046,-0.083455583886629,-0.0711823829701892,-0.0573087927023644,-0.0545362612086481,-0.0564580273164127,-0.053114918785565,-0.055986477120641,-0.0526854690505393,-0.0504360256207804,-0.0661975219927674,-0.0933797188620736,-0.115648324134345,-0.140238526674488,-0.144260378547699,-0.147467998023564,-0.150829337012002,-0.163031247511165,-0.17906580139756,-0.194630190416766,-0.142270725535111,-0.0133859856620361,0.0690333192999025,0.0763036056819929,0.0447335607726688,-0.00436324471470379,-0.0666352656354132,-0.0847605341913713,-0.0955566148313044,-0.0801421822970599,-0.0689941103778286,-0.0553122998162373,-0.0563145488483975,-0.0528752587629941,-0.0555397282716733,-0.0547559746265546,-0.0550324340119041,-0.0503219896612503,-0.0586380548348041,-0.082151091678079,-0.087485226915436,-0.106970895312621,-0.126532015359576,-0.1389572502066,-0.139680443277887,-0.159531975909391,-0.160895256516086,-0.142037153201859,-0.0606739410300241,0.0393996896863903,0.0950793151681941,0.0839000096336209,0.0379858970465645,-0.0359089719745731,-0.0655173229094448,-0.0864396120677135,-0.0827685396371449,-0.0709629231024433,-0.064231449504691,-0.0511151513761958,-0.0548395811169043,-0.0568633737756648,-0.0541786518096074,-0.054370491826713,-0.0561841709572485,-0.0523609679368635,-0.0599911282708108,-0.0740579992748141,-0.069152967658618,-0.0682972815408903,-0.0886934782009217,-0.106054683671148,-0.123395230255824,-0.13384641170457,-0.116980651822813,-0.0653607921005712,0.0090547425785718,0.0787811592414389,0.0955963870558999,0.0689043415295112,0.0120962729139058,-0.0576119589812409,-0.086049268157191,-0.0804621981693204,-0.0796848541371505,-0.0663568072091413,-0.0650640164016397,-0.0499118106967399,-0.0520615428228037,-0.056047481335316,-0.0551286964332728,-0.0566899191543282,-0.05509196909966,-0.0563072177001169,-0.0519840373269936,-0.0645074184724203,-0.0514386516055735,-0.0515798342978333,-0.06559312492028,-0.0922911091469128,-0.117601935491011,-0.106675812232262,-0.0683806561295141,-0.00237008161488011,0.0671695624357609,0.0922901447701771,0.0753646993775776,0.0383299631685275,-0.0375320613751682,-0.0794595981288817,-0.0839257796026099,-0.068111735966474,-0.0730396115854692,-0.0605124017883764,-0.0580288542096081,-0.0483107986308216,-0.0523518303145822,-0.0532206356619902,-0.0565569184151481,-0.0538713222650346,-0.0582338156481559,-0.0573732925065846,-0.0572568614848981,-0.0497159074622667,-0.0427711618194924,-0.0480888134897202,-0.0734899647492314,-0.0951830380176567,-0.106456234397273,-0.0716317449610894,-0.00708340143354654,0.0487636508769673,0.08234329706201,0.0790122723785841,0.0364048768019457,-0.0220993418097494,-0.074388051064513,-0.0850067646819087,-0.0829361585242374,-0.0767125267702638,-0.057040320864554,-0.0470739427820987,-0.0473488445598344,-0.0498741858090175,-0.0559684035159232,-0.0553364903879092,-0.0569388052172613,-0.0559380735916979,-0.0568592529200502,-0.0558479849118887,-0.0530262136457153,-0.0428988069262575,-0.0448622002871936,-0.0549347409670942,-0.0750925018471783,-0.0867676111184897,-0.0743380043447042,-0.0217178684587529,0.0400508177660162,0.0738422826839671,0.0781015134690793,0.0450938802957558,-0.0154778208561398,-0.0847396856014967,-0.0938745781319296,-0.0935392367737668,-0.0756870683311736,-0.0654690998386909,-0.0538359871854409,-0.0450570733786661,-0.0503974394855897,-0.0538688062739933,-0.0550225520538758,-0.0558824023954232,-0.057001700293751,-0.0550747777603135,-0.0557070458394335,-0.0544974900043309,-0.0510519608037905,-0.0399898945334746,-0.0521519608467628,-0.0782492231947976,-0.0760452712435989,-0.0722990006880259,-0.0453240132973138,0.0196125671500858,0.0478235804845592,0.0583160154688717,0.0413051743818591,-0.00762287967977748,-0.0701056881966654,-0.0980793098755846,-0.105601341995975,-0.0945538998503279,-0.0752650681359453,-0.0662061246149887,-0.0558063025870377,-0.0455091455295704,-0.051185860434396,-0.0509616352543574,-0.0569809003178685,-0.0565188548726616,-0.0548409453939352,-0.0550653259601058,-0.0541260916454927,-0.0521163310362039,-0.0468924229236193,-0.0449270380274949,-0.0539089001439834,-0.0740740687189085,-0.082462188563201,-0.0642898387536271,-0.0164966321476387,0.0268547344536936,0.0430463988102692,0.0476555456445918,0.00900887803595087,-0.0389252273826791,-0.082567423706645,-0.0941282865843862,-0.0957499337430102,-0.0837773284684579,-0.0742397755658195,-0.0632266033255478,-0.0522805596231487,-0.0499680694133193,-0.0528850819884362,-0.0558296414793731,-0.0533915980169388,-0.0530495680923085,-0.054955626801234,-0.0545996660592198,-0.0523161929955761,-0.0549179517194224,-0.0468105436232155,-0.0471173285688428,-0.0515760941425962,-0.0635408879951535,-0.0739909582746004,-0.0481452992453407,-0.0140007791937491,0.012227388753869,0.0310315862874528,0.0231746367297072,-0.0109044346693165,-0.0429847763937449,-0.0754273967273309,-0.0891988213832587,-0.0866948182948476,-0.085504570814101,-0.0668150439830727,-0.0620355389018679,-0.0551566585833371,-0.0533451415122663,-0.0521922016666284,-0.0524950256926229,-0.0547517697524062,-0.0542107252977804,-0.0569778694154751,-0.0527585654484941,-0.0539114946891162,-0.0556588774693963,-0.0487060715475374,-0.0462955395972441,-0.0339956521265125,-0.0290533366342394,-0.0167578981292871,0.00049419618133184,0.0255364833827827,0.0418114416954276,0.0408134487142323,0.0283931969192311,-0.00153572837494431,-0.0320750117253213,-0.0558802987839361,-0.0638864944655548,-0.0791269065955667,-0.0756223391937829,-0.0704781637265739,-0.063713395220146,-0.0602723747929103,-0.0575327011279558,-0.054745325692436,-0.0565673372074855,-0.0536300706953428,-0.0542141163744498,-0.0556089973033423,-0.0553875328573822,-0.0535201958430801,-0.0544570919601605,-0.0544525442745392,-0.0488194259760348,-0.0383467013032072,-0.0134876054651492,0.00780025087516567,0.0440090832441769,0.0686255137181496,0.0692265168272827,0.0442835426085046,0.0290688743539616,0.0113378610417271,-0.00380871783863156,-0.0235816103876025,-0.0503394811030047,-0.062859144076874,-0.0679278654080577,-0.0662723808399084,-0.0613178884637806,-0.0578776809209027,-0.0560159922552693,-0.055630290361539,-0.0538269001721925,-0.0565056521756481,-0.054964188611134,-0.0552735360804791,-0.0544540298954864,-0.0558072342005507,-0.0543785560483412,-0.052739577785953,-0.0510202061496847,-0.042588002487076,-0.0301698800236411,-0.012454388946915,0.01344051722893,0.037712894600597,0.0318178177665809,0.0253293364897406,0.0186517741074759,0.0103382962794986,0.00257807434826478,-0.00806163168106756,-0.0287416222647555,-0.0488594673166719,-0.0583705629134731,-0.0596563101166262,-0.0586178534714163,-0.0551852526665826,-0.057230205028775,-0.0554376500999204,-0.0551248861311519,-0.0537742596359354,-0.0563247630180456,-0.05454766023794,-0.0532296974550254,-0.0569705587575242,-0.0532479565096243,-0.0529895288836527,-0.0528794271869178,-0.0521360582770488,-0.0529292246581319,-0.0494777335164458,-0.0506193357187842,-0.0447580221126399,-0.0441237871717797,-0.0410708376884881,-0.0416423600222444,-0.0403761855733687,-0.0337870247659979,-0.0443947065670451,-0.0475646571677923,-0.0537857452487508,-0.0535502835081654,-0.0553801821569884,-0.0528985962494632,-0.0536623330512125,-0.0552440342954257,-0.0547378266524777,-0.0548043924476979,-0.0550723518752158,-0.0570054020584458,0.0588803910630185,0.0758374715767783,0.0754062720832811,0.0778602698559637,0.0786321910331031,0.0768746729223309,0.07880887040198,0.0766997993096943,0.0760283053951896,0.0778075946267829,0.076381924977477,0.0777583249366005,0.0778942482770996,0.0780852561681279,0.0779444926436954,0.0768707769027738,0.0784059099206974,0.0763497037128596,0.0776067458090821,0.0776708471475107,0.0777115252461767,0.075666935143374,0.0761335454787596,0.0781589436439856,0.0757426613673169,0.0783554408818508,0.0763675372573031,0.0775492216298912,0.0763182215835396,0.0764938295713942,0.0777236093276127,0.0777684820572325,0.0760355354970008,0.0752250327280657,0.076873279801296,0.0754861217427389,0.0779052247991155,0.0775935508523121,0.0777680633366327,0.0781835451049028,0.0790973996262309,0.0740117435279346,0.0780536896961109,0.0780183774336153,0.0761723559770881,0.0759771259170854,0.0752451204107281,0.0770400599990265,0.07543307077857,0.0747271203728063,0.0776960753083995,0.0785512938864603,0.0754102433885137,0.075690938857693,0.0745469426057755,0.0773886204791059,0.0784932616031749,0.0755990308214337,0.0757173792563583,0.0774551270238368,0.0781279782852242,0.0769556601955045,0.0746669151788112,0.0760479618747997,0.0780839298198852,0.0783080881092123,0.0776049771992914,0.0837333112649339,0.0878078696127467,0.085449109525306,0.0806661146950566,0.0821828084600257,0.078960433313515,0.072868770290911,0.0737867894173777,0.0684477559809458,0.0726465262430054,0.0771559593822895,0.0746478878187591,0.0728097832893893,0.077274173876343,0.07678977402607,0.0756786724036978,0.0781813778509683,0.077970182280001,0.0786655222007168,0.0768325584709859,0.0755194536448883,0.0774566703973756,0.0764165560282147,0.0767379000473536,0.0741735082846397,0.0734368771290563,0.0760048264075258,0.0750823756028229,0.0783694091098071,0.0764834620170522,0.0721617448045417,0.0708563406189717,0.0667928214436789,0.0656717126885692,0.0544232981605387,0.0541041048282417,0.0644878812048979,0.0705695709068533,0.0741198822275018,0.0734718442557688,0.0755732430779545,0.0786028196402107,0.0781108842886731,0.0782572952636899,0.0766600552589942,0.0746230614709442,0.0755310880279287,0.075589666476752,0.0768167278685839,0.0749447350380895,0.0755674767703137,0.073108480245635,0.0705827613027331,0.0688871891380787,0.0661860213271671,0.0641422459176056,0.0735091894664398,0.0672149445692644,0.0677922891574081,0.0560605715628355,0.0381410252697664,0.031273803949078,0.0357378729945523,0.0478747876747082,0.0650119213215651,0.0723145045459924,0.0756327365180925,0.0806062961503848,0.0801761887625879,0.0813227574144536,0.0765371094483823,0.0776222133109355,0.0745355895190374,0.0766515792525162,0.0771087112811372,0.0770215661194428,0.0779220688115267,0.0765988348743576,0.0774451071405943,0.0754486119243971,0.0646022826011968,0.0615594389289376,0.0657914529817552,0.0747782246287472,0.0799564280939343,0.103020842666359,0.100114547612858,0.0862353133945031,0.0675816530530276,0.0646925053471134,0.0853686506056666,0.100374148413,0.108300279791016,0.0928475076790456,0.0724059131270852,0.0627714775074904,0.0568522464704675,0.0703082773045487,0.0760777166560277,0.0799523160040259,0.080246724163905,0.0767110330775018,0.0753917783811272,0.0769120344019692,0.0777971155338822,0.0719518008480922,0.0721615486691496,0.069568509852655,0.0545002968089746,0.049464384071723,0.0574769326758866,0.0728404253710564,0.0842626737225781,0.0969357144578207,0.103673955230438,0.0953333336959184,0.10292430068986,0.119819211321866,0.131834793839437,0.145330757102406,0.136738467498006,0.103406040284872,0.0719596929558245,0.0426195303978092,0.0340360566438959,0.0569566315878691,0.0724170065546991,0.0755358114920041,0.0804935733387399,0.0768731240485999,0.0771159979401401,0.0750150385132896,0.0732491926111334,0.0684934363176316,0.0473852731968985,0.0309929260907814,0.00731578156912917,-0.00674646063929581,-0.00343232733399685,-0.00503096802588482,-0.000657954591896332,0.0134423392638107,0.00922778678225016,0.0110104057409811,0.0133748855939555,0.0200050272763371,0.0335684653196374,0.0437543516243973,0.0289738832781102,0.00798414772748345,0.00216910792795187,0.0115337334653589,0.0108093949511585,0.0496764497327674,0.0628870559881522,0.0675285837641756,0.0788222395273348,0.0769774512859023,0.0768092990275416,0.0745785776560664,0.0697570286905175,0.0515025071562578,0.0251858899041388,0.0022499411361443,-0.0362013879964092,-0.0580712005619854,-0.0613604919655194,-0.0680248525777111,-0.0614709676124786,-0.0603684261985501,-0.0689852000607181,-0.0904932985559415,-0.106537714626045,-0.103537982597033,-0.0930143368331267,-0.0788999151500818,-0.0714590931308083,-0.0624035154245803,-0.0383742976772777,0.00158411563504458,0.0120837233942691,0.0430495258311882,0.0625513531857851,0.0721350356058692,0.0807443282557354,0.0751593374622866,0.0788145967878097,0.0728192703972646,0.0643247917255491,0.0390588519613702,0.00824927063887269,-0.0172022351712768,-0.0579111036273112,-0.0780954711510553,-0.0810414615032783,-0.063934486214155,-0.0629181389817038,-0.0728718279178572,-0.104013513810535,-0.142739298550265,-0.17031044345645,-0.160295681336916,-0.14098258453543,-0.107740765706258,-0.0929054566279932,-0.0754514515553185,-0.0346996246070997,0.020992245218006,0.0424617692589653,0.0550855721490412,0.0725409685391788,0.079405472570957,0.0771150203398904,0.0751156069896038,0.0760769907725065,0.0744266940682388,0.0632992847825647,0.0363326609616889,0.00643024621210865,-0.00763303246100284,-0.0323464660601253,-0.0341963209368319,-0.0218346772779791,-0.0142676118861852,-0.0111797051213598,-0.03875280838879,-0.0767772161847236,-0.128283155512887,-0.138877802831841,-0.113823962565392,-0.0990875901183602,-0.0941742874460124,-0.0852245942764431,-0.056827546348523,-0.0166135669166768,0.0524193066341707,0.073913999587149,0.0809671952695481,0.0787660364633751,0.0779583423256391,0.0770001421301012,0.0750383793545278,0.0745578505834133,0.0721312914567407,0.0670370413076392,0.0509800022775142,0.0368667664307821,0.0369397110802529,0.0390668570434902,0.0478124655241197,0.0394045204678243,0.0359897231360985,0.0394807188035669,0.00869088669754136,-0.0293828659977462,-0.060785197141717,-0.032579343309926,-0.00632755100891484,-0.0312617204067661,-0.0559824072914928,-0.0647627011585065,-0.0375438446079929,0.00700362669790056,0.06294349401064,0.0875689214273032,0.0898096739665779,0.0851341543920429,0.0831078710914003,0.0800312833737061,0.0750274594920836,0.075103586835138,0.0758113815832561,0.0731707214660838,0.0616936222030413,0.0663433961318149,0.082057386850895,0.0869344830909455,0.0974767264669808,0.076542880910939,0.0686899147031241,0.0619592930557363,0.0498345026844065,0.0407658881195282,0.0515871650865309,0.0765860069156813,0.0706276434351794,0.0127973349069836,-0.0464511931981623,-0.0605254843399222,-0.0308487550476641,0.0302141969418544,0.077877549176848,0.0845767042768343,0.0938890434936457,0.083594281316742,0.0780433360699514,0.0758422850502538,0.0774044166025666,0.0784896389049708,0.0771544926636321,0.0774677411146558,0.0705601700357065,0.0722565872202009,0.0889950634324378,0.114791453754508,0.121195456542686,0.0972000067912012,0.0797048521719027,0.0714344370056808,0.0860292393337311,0.107196797362108,0.127414865464844,0.137624960051944,0.0861225847533952,-0.013472238219965,-0.0599635629165254,-0.0655822659390331,-0.0248104219325865,0.0349412959231342,0.0795126478257953,0.0928701083050043,0.0936947429024631,0.0849972523384085,0.0794048601390761,0.0758469874820354,0.0765375628666641,0.0789836165063736,0.0777963293088486,0.0764167961709508,0.0746803198932927,0.0735274801127432,0.0930484695179034,0.103752081415304,0.106258480012104,0.0963029274282211,0.0928647415089816,0.0854773584214865,0.107916697878414,0.13393483335061,0.137963449418841,0.114186148359379,0.0301633537705482,-0.0636615814137211,-0.0827005348717504,-0.0801702410860935,-0.0457291717746326,0.0259450278571454,0.072612655406458,0.0956606769355622,0.0927238765795872,0.0892332058399032,0.0762087608938011,0.0775200702201006,0.0777724614731829,0.0768905916640792,0.0745163047254582,0.075294778017037,0.0695056424138144,0.0744446524613293,0.0889679339873781,0.0783690277435128,0.0913241150156512,0.0839488050988989,0.090479275249639,0.0956556222040004,0.112989414280701,0.122364406594057,0.109149658998018,0.0586556632552565,-0.0475338034624084,-0.105354493158678,-0.110020510674185,-0.0904119799884869,-0.0474047139465252,0.0259347267903976,0.0676530509846476,0.0918246131758989,0.0892812896005205,0.0884802312687378,0.07868953959906,0.0771467889303436,0.0746635264033632,0.0758205851009048,0.0773117942570823,0.0769481798467821,0.0688643640747049,0.0693377999728867,0.0757507005067705,0.0610280968709133,0.0655104798003268,0.0765065416195238,0.0881400124028027,0.100760563506707,0.12557572577482,0.106738133019156,0.0539573220662,-0.0267827137192867,-0.103648931853258,-0.127304858991036,-0.110762280608966,-0.0831858429020431,-0.0154887380407133,0.0347531202973562,0.0791864682623601,0.0891330902631632,0.0857468600485331,0.0870661991240671,0.075216771153852,0.0778977636594823,0.0761894999962999,0.0782580180945184,0.0754867016813106,0.0782003844029103,0.0709743672958523,0.0739680758645526,0.0742417711213023,0.0627674588983203,0.0583905265857117,0.0705625515904994,0.0944402354363374,0.117645423276067,0.128857565335693,0.0801339547490475,-0.00964224370740585,-0.0914111799499926,-0.132543313471377,-0.122104112197291,-0.0894773118209824,-0.0354914560827868,0.0367152702327831,0.0800959485354734,0.0907537737447566,0.0935207743708696,0.0880719139108072,0.0851254086035678,0.0750776502753229,0.0768289457104234,0.0766287396710793,0.0748289694804686,0.0755341454741603,0.0753107510882003,0.0738363763444818,0.0719814375342,0.0752852426631788,0.0666405112499213,0.0718561973964687,0.0878227924106681,0.111290584720681,0.136346040672773,0.120357135051192,0.0373238922737558,-0.080106630842994,-0.147103157716029,-0.146944176652194,-0.104982544060562,-0.0522860751445882,0.044025062169217,0.101455361156227,0.108572771363376,0.0903268705206324,0.0956285310911043,0.0913693877827518,0.0847384323434119,0.0744033411591792,0.0753232893537334,0.0779246584815476,0.0766944230566655,0.0769468911983469,0.0759514074206188,0.077361236095662,0.0700105355406492,0.0711772946159435,0.0696943791453775,0.0877807928837751,0.124667387084041,0.141103923683952,0.140456281436457,0.0810729404183447,-0.0395187443902827,-0.135776208640853,-0.166748111744901,-0.138941075088814,-0.0697886325418198,0.0252243794853254,0.112733250905156,0.128732820978217,0.112496896956473,0.0979050215824678,0.0819436537637961,0.0811032522081974,0.0777882173913221,0.0760368882511596,0.0761663127058011,0.0779302001035059,0.0749160021604678,0.0782234664684934,0.0787838028838197,0.0775052418974673,0.0722941462751379,0.0634584256746934,0.074853647122518,0.107096953921502,0.131267009918504,0.139628087489365,0.116071622147487,0.0202981918940783,-0.0861012875063845,-0.147080278363294,-0.154699102910879,-0.111711088330411,-0.0163643442456008,0.0976188883698865,0.145413312267289,0.140165960201196,0.116681398435728,0.0978463352570062,0.083292634239006,0.0800343244971437,0.0754402244978026,0.0760406587368105,0.0745930659016678,0.0780965687066231,0.075943070934781,0.0757854831190584,0.0759318787271612,0.074218272297076,0.0740911518722918,0.0679907273408426,0.090213915887271,0.132410556121592,0.13741566454186,0.137060656889533,0.0865686122151185,-0.0132506983692512,-0.0923704492459869,-0.121904355286414,-0.105956743390897,-0.0503806308609005,0.0494845492155597,0.130630475940402,0.153056395334716,0.135492815849563,0.110942636805698,0.0967708713005198,0.0880456137398227,0.0738013617375971,0.0736362366775009,0.0747397772480088,0.0788754705120962,0.074789197424393,0.0772856023617397,0.0779036579722643,0.0741733228329348,0.0751160871911481,0.0768248464095778,0.0760651205854048,0.0992611580856808,0.130604457978947,0.137351508228471,0.124317096208159,0.06386611972843,-0.00932362534678493,-0.062199594841027,-0.0852406052302518,-0.0640203902798879,-0.0100529089818483,0.0726155453183717,0.124616213793457,0.143307160591759,0.119499531375838,0.110576272614236,0.0948008163174635,0.0822750245830404,0.076403307067431,0.0733019308462698,0.0765261999771911,0.0789717673725464,0.0757301432462639,0.0761285871004186,0.0784783756589547,0.0744181643285091,0.0766002355169819,0.0722989943304161,0.077947650443398,0.0884236612102308,0.111621861528756,0.121113014273252,0.092631610370642,0.0467561190430667,0.00496896836903888,-0.0352094650800349,-0.0452064091361857,-0.0264421853937735,0.0125333518291317,0.0764695633714556,0.116503975631769,0.125172689130767,0.114876989168226,0.100195115858753,0.0906654100528503,0.0831950305453495,0.0802282156156992,0.0762920704535093,0.0776611508697171,0.0786767745540759,0.0748954104766323,0.0780814032382458,0.0752836931619785,0.0752734959636051,0.0751707593852256,0.0726248615990208,0.0751959305945008,0.0643151057596396,0.0637897781508792,0.0519950680732759,0.0280733951737212,-0.00742014600311671,-0.0244752581901061,-0.0275056344305802,-0.0301085023250333,-0.00800982428047478,0.0301795263201826,0.08135545710128,0.102888829893852,0.119657280611966,0.107893637403083,0.095819595347478,0.0868400163036019,0.08418312136601,0.0802728450504746,0.0767719910731705,0.0752740933899718,0.0757948765912606,0.0749796865315765,0.0747380749080171,0.0752882470323299,0.0750274864533799,0.0770153632453055,0.0755537038731696,0.072245952330547,0.0571237434911853,0.0374155499399577,0.0148037466102486,-0.024176334537123,-0.0550327698974472,-0.0597315235947834,-0.0406640789302722,-0.0190773560751063,-0.000750462805963552,0.0245547529889915,0.0555211244373385,0.0902916375709359,0.101778805253034,0.095618239393842,0.0948500460160955,0.08705319048968,0.0787591040177572,0.0772856892695723,0.0752624250174955,0.0771676078487326,0.0746889272855295,0.0773934786087547,0.0777521419596733,0.0761362848658872,0.0782283746407775,0.0782024590256939,0.074244385888129,0.0728501604464162,0.0635637902468713,0.0457062761443495,0.0290777486719563,0.00545929517103524,-0.021018103023416,-0.0319141085228209,-0.0192899383111197,-0.00937176715033272,0.0071265086938563,0.0193719446964098,0.0326230082003894,0.0551360143323423,0.0762484704163952,0.0792691302310303,0.0823794543563178,0.0764810420679801,0.0765533764204468,0.0774319705313642,0.0777032523762866,0.0759283908086426,0.0780687120301294,0.0768946370328515,0.0758575005887751,0.0766050792166532,0.0782148626599956,0.0750271996290016,0.0754187570214617,0.0736079239635357,0.0730948749906862,0.0724006365178766,0.068211013435922,0.0718456534039865,0.0673065966105849,0.0628059205643053,0.0599413221076115,0.0612078858352843,0.0606004811004247,0.0551029887987878,0.0636915489723339,0.0712117395541535,0.0728376007560788,0.0774060400687651,0.0766089530910516,0.0777756978618295,0.0750350686482806,0.0778794273629508,0.0777444285086782,0.0752280544968487,0.0779021238783947,0.0760911986517978,-0.0919839592683104,-0.0828155767815511,-0.0827220712288952,-0.0844933011295924,-0.0833189318993266,-0.0853573853575333,-0.0849386148377621,-0.085471306605854,-0.0847400941608115,-0.0850260477975412,-0.0868368203363864,-0.0836008454610852,-0.0851147525379948,-0.0829135899288091,-0.0832095558993074,-0.0827363724075949,-0.0840090920337107,-0.0865441895262842,-0.0867690344876483,-0.0855881960285991,-0.083747019470585,-0.0862405317540477,-0.0865529286123644,-0.0846305739222586,-0.0828716285705479,-0.0838017043380159,-0.0844676982909225,-0.0850878800975673,-0.0866808557642615,-0.084706890782864,-0.0856977357302906,-0.0864881700517146,-0.083368346512169,-0.0842133721938057,-0.0831574615695615,-0.085798469226416,-0.0853190093792889,-0.0840218196584077,-0.0833502931200381,-0.0871372580685366,-0.0854096906902668,-0.0851745683696309,-0.086859252528008,-0.0878524724150311,-0.0866652899002698,-0.0860418532090339,-0.0847356275824016,-0.0857412025995524,-0.0830640748418668,-0.0836309280801405,-0.0865250768519836,-0.0854833058819103,-0.0830953787980132,-0.086951531890601,-0.0846974654614311,-0.0851144840713673,-0.0867266231182479,-0.0833817819479521,-0.0840190740807409,-0.0833401306923535,-0.0854974761604241,-0.0841895571872646,-0.0865673124760032,-0.0842297807136834,-0.0851128869340284,-0.0848182528801417,-0.088774724587298,-0.0921922789936799,-0.0918851153182702,-0.0897400189152765,-0.0921670741281717,-0.0919152480020506,-0.0893898425436805,-0.0833182855095265,-0.0777937029765298,-0.0768031186110292,-0.0826989215251632,-0.0850200272380168,-0.0825918786805097,-0.0827922203519357,-0.0825505477499417,-0.0827761196954884,-0.0829022408506888,-0.0845521336969066,-0.0834101216378525,-0.0868074883803087,-0.0838316386514356,-0.0869606180838946,-0.0860568680155216,-0.0843480071025248,-0.0851533676565736,-0.0852809782753524,-0.081626537554696,-0.0836832535622619,-0.0830998341272722,-0.0883369342633815,-0.0855337001156299,-0.0792860588973522,-0.0837608154077966,-0.0778969343835194,-0.0745195122813561,-0.0669136548676413,-0.0598517876500739,-0.070788602596776,-0.081536713246322,-0.0846826285701924,-0.0808195684601068,-0.0862127737479433,-0.0846121876367931,-0.0874179280123203,-0.0854838046389188,-0.0845445557505408,-0.0852258198404233,-0.0861264360298356,-0.0828335380343887,-0.0831514640515832,-0.0832829486166004,-0.0845095111104038,-0.085162047563499,-0.0793185633610565,-0.0784016197620578,-0.0825605869259999,-0.082296555246546,-0.0837956081924662,-0.0750720711620294,-0.0776342541273332,-0.0645649961139818,-0.0461836588596007,-0.0370035540948339,-0.0413733707405888,-0.0537299711931276,-0.0718846572139247,-0.0794607141580176,-0.0770240248623441,-0.081689951497617,-0.0854817350981293,-0.0852420263524936,-0.0827487910383505,-0.0855137349608584,-0.0848683139888774,-0.0859999475144679,-0.0844096835756199,-0.0844052917907564,-0.0862083351944559,-0.0828050237025694,-0.0843770819079908,-0.0874109385945971,-0.0751750144517068,-0.0748314508362151,-0.0784649361503176,-0.0867611608165831,-0.094799405772281,-0.11583271946844,-0.112696870405574,-0.0960713623218259,-0.0731375240642709,-0.0678832958505944,-0.0861753322081102,-0.109164457490826,-0.112400840047675,-0.0957441869490942,-0.0741868911754116,-0.0595744278217295,-0.0638986677916257,-0.076448733363676,-0.0823219397707279,-0.0897045746272545,-0.0902188333408361,-0.0862592658414339,-0.0833615590771687,-0.0833529485533546,-0.083131276191653,-0.0824699240646391,-0.0825336527285419,-0.0747787157790505,-0.0689424508195178,-0.0648894480642921,-0.0681075213883066,-0.086443617335416,-0.100762239493454,-0.115804923978423,-0.115002465846558,-0.105816975138831,-0.107481192092593,-0.115247341376845,-0.135096687457595,-0.154742200845789,-0.143184274761746,-0.106406161318727,-0.078338384821471,-0.0504065620493793,-0.0454964143294813,-0.0686987983290094,-0.0851380817419953,-0.0860539990387235,-0.0880208248443858,-0.0847311062617839,-0.0864194074628676,-0.0856034472650736,-0.0816247060210635,-0.0770306970141644,-0.0537324273124939,-0.0375394931661507,-0.0188063998450038,-0.00200163693024577,-0.00397408584751061,-0.00724205107280966,-0.0106852281517296,-0.025674880874612,-0.0201714299755294,-0.0126199319058193,-0.0112223080713773,-0.0205722129471983,-0.0314083821490296,-0.0447245003177008,-0.029756116330646,-0.00940136448640201,-0.00560816685282282,-0.0210004377534409,-0.0236579056785794,-0.0634065469168862,-0.0782851471217894,-0.0802793327426583,-0.0838956656856702,-0.0849479302551251,-0.0862014496317224,-0.0851359554760639,-0.0742095313952993,-0.0600679081111727,-0.0316361832018632,-0.00592563232714479,0.027511378913994,0.054887751874955,0.0566427020939319,0.058245196028443,0.0522724044506773,0.0521448128408441,0.0622492190507968,0.0950701235906724,0.112654011359494,0.110162068133216,0.0943647407088512,0.0838790469534414,0.0737269527172007,0.0628561723805812,0.0340600938585798,-0.00425237036777382,-0.0261673223440646,-0.0594519183457317,-0.0779984565917679,-0.0834384798117723,-0.0887902895601647,-0.0849514896268565,-0.0838066823687877,-0.0807907199887635,-0.0722859866909901,-0.0473479132565851,-0.0149220912751474,0.0148194379469856,0.0523875153216793,0.0769912236372377,0.0782885996115579,0.063925754370452,0.0605808055468221,0.0650175054406703,0.102704334983021,0.147226152647721,0.182424977817622,0.172097120358236,0.155046023580568,0.114645327642877,0.0958655334110352,0.0728137950769528,0.0325670538357281,-0.0302922535466402,-0.0519664994840659,-0.0693822556596507,-0.0852293439580208,-0.0888329504371398,-0.0890490538522543,-0.0857715646496164,-0.0829132717020171,-0.0834527875801455,-0.0739758363933447,-0.0455378479025659,-0.015403130061241,0.000840736160569523,0.0286594383713625,0.0362172386577296,0.0214842505422119,0.0118888457293473,0.00452503702581456,0.0300642823716126,0.0729067110608973,0.129697778455883,0.15462736526708,0.131525111175231,0.112987044570233,0.0960702283296257,0.085948584682051,0.0604901358934368,0.012236648039827,-0.0592869675209839,-0.0817660954469971,-0.0932492743387423,-0.0893326502935706,-0.0881822302836297,-0.0895835012401324,-0.0843501886645165,-0.0861564612405057,-0.082292903710662,-0.0744225839750543,-0.0549371408419578,-0.0429083782342236,-0.0405873658446265,-0.0417929677157559,-0.043922028793032,-0.0397651141869291,-0.0369580944836699,-0.0488700423773731,-0.0191440546909454,0.0213709204365403,0.0615641889848713,0.0434354318657017,0.0264903837192091,0.0405214931658994,0.0587000657230416,0.0618908496799402,0.0396472291173452,-0.00988323669527734,-0.0726181101094607,-0.0967003408842025,-0.100533744430705,-0.0948853769484706,-0.0903788020038781,-0.088655388165845,-0.0859034144562201,-0.0859120479536456,-0.082440268211299,-0.0791037718693558,-0.0690550263200532,-0.0707503205948948,-0.0849785571428025,-0.0881156978277418,-0.0921574071479898,-0.0736471924231562,-0.0759024798645548,-0.0717729273398856,-0.0639417978615474,-0.0598909040416232,-0.0528482761343253,-0.0663287794879808,-0.0575562172667652,-0.00789215517318979,0.0441767923994324,0.059735941380019,0.029170334694244,-0.0362668188379928,-0.0845522341787228,-0.0940013023502663,-0.102101839915945,-0.0919108693384471,-0.0868885080262664,-0.0859502504710168,-0.0866274706299836,-0.0837549981969895,-0.0836362897889888,-0.0830782386052266,-0.0784440334031704,-0.0772155508416845,-0.0942880419134866,-0.115455976225165,-0.11843050014334,-0.0956328930026908,-0.0882033910902945,-0.0817265516714346,-0.108278627259094,-0.124606079043108,-0.12640125544772,-0.125699384558108,-0.0715272065712964,0.0136156912900323,0.0581627183988838,0.0625193423024466,0.0221487584578134,-0.0377742160287155,-0.087651338089514,-0.0994419148927735,-0.105683206060407,-0.0945004538941407,-0.0895423626526329,-0.0849656568423548,-0.0861301717172428,-0.087485800887803,-0.0822663482115118,-0.0858024323510394,-0.0821292167602452,-0.0819206750194092,-0.100087269459816,-0.102325657579777,-0.106285521623787,-0.100902288806163,-0.0990983332250636,-0.100455935144036,-0.13110238980935,-0.14887258218137,-0.139147753688441,-0.105047693105396,-0.0173793551219783,0.0622901571930002,0.0802353219624841,0.0782974297636207,0.0409310803659122,-0.0318408703507767,-0.0811789622493623,-0.102840731299198,-0.100493135950599,-0.100940470532445,-0.0846956416434783,-0.0838727706844892,-0.086295110820179,-0.0834390207546317,-0.0846456672174724,-0.0827461947344772,-0.0801213652492243,-0.0837547279784578,-0.0930254111894031,-0.0792796730354869,-0.0940762147960934,-0.0883513334998416,-0.0964514547594669,-0.107339725926477,-0.127122070784536,-0.132029641549087,-0.100131938500924,-0.0449573304259037,0.0579427116549999,0.104388812078917,0.105123962469669,0.084133424558777,0.0470186834920376,-0.0306354095260365,-0.0787128222030784,-0.0985686175017708,-0.0984519628587715,-0.0965400169261343,-0.0859519325318947,-0.08365088026925,-0.0854949118502788,-0.0867630436627923,-0.0863502734952373,-0.0855535696996778,-0.0789529244034029,-0.0801377481613516,-0.085874492750057,-0.0674445174690996,-0.0706929023878057,-0.0823798477162079,-0.0940971280513751,-0.11242740380802,-0.136985030348417,-0.109667803041713,-0.0406254079718222,0.046373152364258,0.108988206091321,0.121062006436503,0.107497359695791,0.0748018817374444,0.0152533558127443,-0.0412344274907011,-0.088325144318664,-0.0946890847853862,-0.0935785806444374,-0.0962586657602441,-0.0887041618315398,-0.0827721224461713,-0.0864827198893741,-0.0857909368312708,-0.0864786440536247,-0.0860711000436171,-0.0808298170174811,-0.0823867254303781,-0.0844768082714463,-0.0750501386736532,-0.0674790405455549,-0.0876105247632444,-0.108519967716612,-0.129062252812588,-0.135968929395003,-0.0746374463487721,0.0238721384088703,0.106188669374678,0.14030021561343,0.117315841888417,0.0817122262620747,0.0238787322817535,-0.0476925357539893,-0.0907474171581447,-0.101339257535915,-0.104420067548407,-0.0986645835621151,-0.0969649988915456,-0.0843022444222721,-0.0857548352468072,-0.0846199110979042,-0.0844648721771437,-0.082948625886924,-0.084900255928218,-0.0840263728333558,-0.0813482125099499,-0.0904419378731465,-0.0786320847278382,-0.0871776574820577,-0.105065262612634,-0.129269727113317,-0.149054024212342,-0.121939827041863,-0.0301722043309224,0.0922568040027519,0.150432321922832,0.148301690992501,0.100830207095444,0.0397114333560515,-0.0627278683519515,-0.117084849840055,-0.127740447605292,-0.10656143925569,-0.108024965595944,-0.101625092783984,-0.0983829898237032,-0.0835704218072499,-0.0858867609780837,-0.0856424319546946,-0.0847249371471972,-0.0864736666650005,-0.086817974107782,-0.086989566262774,-0.0828347261085484,-0.0876091375797974,-0.089917541353438,-0.110921588122526,-0.141243429367246,-0.154147548255002,-0.147238849891899,-0.0796731394093738,0.045893273727676,0.142104648551565,0.171388148310093,0.140985698666393,0.0609333243087886,-0.0408850509468882,-0.13677026405156,-0.153627764750009,-0.134085423570676,-0.111991221477516,-0.0988085854244769,-0.0940597685167567,-0.0875719307647828,-0.0853489631999712,-0.0856919726381689,-0.0855912851750871,-0.0866175580603607,-0.0851957371251083,-0.0861376413687582,-0.0877251669856276,-0.0836645306964735,-0.0829402199153447,-0.0949777652110697,-0.129398000338349,-0.151634395478937,-0.156974120587515,-0.12171143981193,-0.0216842958254371,0.0924220896116455,0.156139930116369,0.165126271040766,0.112362989196197,0.0111538954140425,-0.11518822471838,-0.169390012036436,-0.161046137505541,-0.135218317037457,-0.114395644234356,-0.0949426565061483,-0.0902651191176592,-0.0880632336255316,-0.0836431711240793,-0.0852561798511707,-0.0866229040739141,-0.0863931370404368,-0.0852156147874061,-0.0830840906967061,-0.0869175705913256,-0.0845834111381107,-0.0827332439042953,-0.104958959095686,-0.151083911349046,-0.153923513822824,-0.149628424813819,-0.0923322314524225,0.00996969217561553,0.0931741569242774,0.131063929312669,0.112508525218794,0.0513262104492414,-0.052158484492106,-0.141610241203257,-0.172348558417142,-0.150403306529058,-0.130040644732052,-0.115096797099671,-0.100211501644767,-0.0876522631691332,-0.0829061469831225,-0.0814885436819875,-0.0849761160182319,-0.0853207517667718,-0.0834828846088122,-0.0859049571426433,-0.0823006134059661,-0.0839002582208955,-0.0862843408835613,-0.0862467217382139,-0.102858688208608,-0.141511668089889,-0.153174902704115,-0.135824754896011,-0.0687838725808937,0.00558826483589,0.066505582144337,0.0898894366916982,0.066308008919321,0.0114516865460592,-0.0739741403039253,-0.135257383832765,-0.157493488485005,-0.133781439545433,-0.128472188059092,-0.111343204925945,-0.0943608840240763,-0.0868738787596323,-0.0839254626976917,-0.0853598367629571,-0.0862288794815557,-0.0840543120330882,-0.0851256390608117,-0.0840345954528701,-0.0865627854123022,-0.083210948789203,-0.0830338709263784,-0.084345697754065,-0.0944207641119858,-0.119336501458784,-0.128766075074523,-0.0964673405008259,-0.0537370970806601,-0.00543071830628584,0.0362308882074228,0.0504665062894516,0.032410850934192,-0.0119275592274831,-0.0824387431710607,-0.125825663790584,-0.140152361379054,-0.126405350590667,-0.113718827502119,-0.104446817084328,-0.0951311323434362,-0.0895732096440085,-0.0849127057902356,-0.0844342562137093,-0.084306492699852,-0.0833333456420224,-0.0858325582342685,-0.0855578092154662,-0.0867656087824186,-0.0825827930706823,-0.0778660122688113,-0.0803612400204087,-0.0720248287592889,-0.0705210937549421,-0.0590865867160201,-0.0384212651812059,-0.00387461158889901,0.0168638311196093,0.0298102910920038,0.0293231694362716,0.00668832916162891,-0.0369350308128168,-0.0876470476156618,-0.108892898820086,-0.124165019138433,-0.12028381421336,-0.103840459176452,-0.0995255835853054,-0.0922934696789414,-0.0858661358443199,-0.0871946645681665,-0.0828716046080755,-0.0836363650401239,-0.0840145793672614,-0.0830712739708329,-0.0857587624853788,-0.083802248709249,-0.0865040891893133,-0.0835202592862311,-0.0811786265439279,-0.0656852054336396,-0.0447275150009577,-0.0232830324605195,0.0165992868529033,0.0446826315808743,0.0536123752364775,0.036400894706119,0.0179319448509897,-0.00093198899334098,-0.032167639686359,-0.0676663919072439,-0.0976851392263725,-0.107326006362907,-0.108182925190181,-0.102416905055977,-0.0951336617662851,-0.0868405765704493,-0.0865408366614007,-0.0864132287733893,-0.0850103685352134,-0.0839696393823591,-0.0840134136436666,-0.0840978215539423,-0.0840185227962631,-0.0842205045385849,-0.0857707087528967,-0.0859797682691186,-0.0789835872120261,-0.0736887607026816,-0.0533891809192949,-0.0379869058817584,-0.0111753819109138,0.0158293968026201,0.025654683169021,0.0179577901650525,0.00980111294270747,-0.00686930625378439,-0.0265691900929621,-0.0426425842231891,-0.0671646879069646,-0.0831910788661017,-0.087769947125028,-0.0896906194136477,-0.0877793153129152,-0.0860316728664849,-0.086484495534632,-0.0863966085270159,-0.0838218561903073,-0.086764354404722,-0.0866747193614244,-0.0833663368656889,-0.0835142066403653,-0.0851435795347246,-0.0827569309817706,-0.0841075888670897,-0.0853393576379901,-0.0828398455872522,-0.0794508466008572,-0.0769839747611827,-0.0789690004210694,-0.0731677147145846,-0.071882792689523,-0.0673418548208245,-0.0677677579756133,-0.0659341811377166,-0.0622738495694496,-0.0755835067577487,-0.0789832045381459,-0.0810449092062509,-0.0843869603548538,-0.0871388268803651,-0.0834742400464302,-0.0835431085175578,-0.0857669079081802,-0.0849820424959493,-0.0837562538652015,-0.0864100169074006,-0.0846279792098596,0.104161960832565,-0.0450251112512933,-0.0416311639577198,-0.0412481863896315,-0.0438920018308213,-0.0451733844465584,-0.0431181964286589,-0.0448499755225738,-0.0418790378571996,-0.0419086506559055,-0.0416936700245093,-0.0430374500122119,-0.0449653856305312,-0.0445109250444851,-0.0441511557821649,-0.0414618952835612,-0.0436298938083445,-0.0428901220759252,-0.0445370281297465,-0.0428014965182149,-0.045341244679366,-0.0433773475344483,-0.042121183251601,-0.0426168460933792,-0.0456548877351164,-0.0443443274209433,-0.042942034721248,-0.0424177193987531,-0.0422052113349041,-0.0448663199738517,-0.041776784037796,-0.0428246348105909,-0.0418150514993278,-0.0436384463779088,-0.0448675118465061,-0.0449893015812074,-0.0433689111037049,-0.0454173578305818,-0.0447192459898861,-0.042284624891625,-0.0429767117424168,-0.0455980410847859,-0.0429969097835165,-0.0438098766833299,-0.0418197244883471,-0.0431163864215407,-0.0449361981100389,-0.0432828142428973,-0.0461980754043421,-0.0441282484020811,-0.043443678709554,-0.0449448156775135,-0.0430242114270428,-0.0432216008097705,-0.0451269041577723,-0.045515205444155,-0.0424248099305503,-0.0430180910984151,-0.0446388554380097,-0.0447356114037476,-0.0433204733607167,-0.041988846752853,-0.0416347068001506,-0.0457155986860891,-0.0428961351356426,-0.0481213404148942,-0.0426901180064161,-0.0392783975294167,-0.031506332361456,-0.0274501760262734,-0.0201220819829543,-0.0163340932294401,-0.0209363584918014,-0.0295414672997681,-0.0260485237955616,-0.0321901042585305,-0.0329840175967398,-0.0317780573709007,-0.0419372771657902,-0.0430763953437261,-0.0416521593343927,-0.0432997549705308,-0.0435721385961782,-0.045173413054358,-0.0445619625697303,-0.0449295120620116,-0.0445958757787041,-0.0442533024293114,-0.0444993611791968,-0.0433658494914754,-0.0415236015543865,-0.0438582753341734,-0.0432823584752069,-0.0474586540755138,-0.0436439843794776,-0.0333203221827703,-0.0264357085177322,-0.023018639123996,-0.0259246755192567,-0.02625657476871,-0.0218066674032525,-0.0293684919523909,-0.0250304930773341,-0.0164537104622062,-0.0222198439005909,-0.0259954022043111,-0.0352620432128608,-0.0362527585334558,-0.0383980315701833,-0.0406398936491816,-0.0422705604030056,-0.0436514917936347,-0.0443296951867958,-0.0427422357227574,-0.0418366861590521,-0.0448904909596454,-0.0426754367363326,-0.0422936815155879,-0.0420817367047798,-0.046837631462744,-0.0456261458304073,-0.0407889116067041,-0.0360488411287859,-0.0252214980856337,-0.0264807612590363,-0.024715377339855,-0.0268669974867318,-0.0314492200150477,-0.0396062661673943,-0.0423897105565696,-0.0447660543915865,-0.0312969293938433,-0.0310477275760232,-0.0272412815135126,-0.0258028803327511,-0.0324126519835931,-0.0319507619318836,-0.0402529392132184,-0.0451394624879938,-0.0425479470683874,-0.0451207066907394,-0.044909342426549,-0.0415898711123371,-0.0413045609153191,-0.0448464337029444,-0.0430305995616324,-0.0435872450308658,-0.0491390330922112,-0.0526058201731208,-0.0416125858592885,-0.0323585916692013,-0.0167351834818494,-0.0138230905424774,-0.00923783943565954,-0.0128923864041447,-0.0299597389913189,-0.0517861705761011,-0.0576813660635505,-0.0609653008714585,-0.0528632601072666,-0.0394721571423923,-0.0532858373754765,-0.0576407983256582,-0.049805285835477,-0.0388897137740849,-0.0405583782558808,-0.0446713155427437,-0.0431885276279195,-0.0419544198027963,-0.0441425491100338,-0.0432604566899549,-0.0456753481985648,-0.0460704207193294,-0.0443992919449503,-0.0515242896963477,-0.054286568774585,-0.0429662141966002,-0.0386027395562412,-0.00680212813586174,0.0136610955045681,0.027066009372257,0.0313802142429836,0.00590357494291354,-0.000989495234722911,-0.0253271134229783,-0.039918995732419,-0.0427754462602442,-0.0457330141067441,-0.0492574949808267,-0.0471669356827765,-0.0628683163945823,-0.0612515286136334,-0.0583367517672165,-0.0549100622113038,-0.0581855146120504,-0.0457153103409639,-0.0417570338635104,-0.0422210225842449,-0.0455993534496474,-0.041080469103856,-0.0423104262968867,-0.0434862522896464,-0.049995388858109,-0.0470268137801755,-0.0325420650380734,-0.00150729972352383,0.0183710818977838,0.0335933605256738,0.0420010666652343,0.0471015532838651,0.0405540930028635,0.033087406481804,0.0243843511664173,0.00824124746757949,0.00115825329643359,-0.0179084387416329,-0.0446932304669897,-0.057375872296309,-0.0597048694692288,-0.0716501826942722,-0.0736794077996961,-0.0794252062399402,-0.0663973640553246,-0.0479246365230955,-0.0450644495902379,-0.044810435579781,-0.0438086033486902,-0.0458969828198555,-0.0476135706437824,-0.0498263770035787,-0.0432015074399297,-0.0385385228504633,-0.0214309718234841,0.00671828167426481,0.0367584231217645,0.0528664592860609,0.0479252057611057,0.0294100275509937,0.0115963622539228,0.00631956735965494,0.00839374609473183,0.0120073840526868,0.000646754226723566,-0.00812401990008547,-0.0354825746098896,-0.0449390800658944,-0.0550648631184862,-0.0701920329733052,-0.0807488368053031,-0.0824165782675793,-0.0594116886464152,-0.0445812799772974,-0.042849763558686,-0.0418939957025892,-0.0459039726527747,-0.048770642707243,-0.0497756868786084,-0.0568047928313361,-0.0355659574883421,-0.0437227130413031,-0.0125972283935283,0.020937299187636,0.0447394208448289,0.0376119253457438,0.0178861843487065,-0.00183843288052705,-0.015516977482945,-0.0233958109588325,-0.0185707778134648,-0.0051456433713632,-0.00458965755086021,0.00333744227480875,-0.0181206096864858,-0.0336173065470188,-0.0300010216153867,-0.0676494837964405,-0.0859853507398837,-0.0775619328055963,-0.0515025655537339,-0.0470306569674676,-0.0441828352612642,-0.041861280183916,-0.0449255318021861,-0.0465120848204959,-0.0509443007575659,-0.0543671519580152,-0.0419818689345973,-0.0324852865569323,0.00351418158138864,0.0358830013177734,0.0323748045736368,0.0123384066871609,-0.0208837928117891,-0.0530899867837501,-0.0669260168716966,-0.0444639463088156,-0.0272959331624323,-0.00655209418421691,0.00448395927246979,0.00838809514834083,-0.00782982042918788,-0.0100892953873437,-0.0182093193625401,-0.0562699918519948,-0.0737304621701011,-0.0674905798988311,-0.0560447871470941,-0.048494534782541,-0.0431671205694772,-0.0446600323338483,-0.0451606189148838,-0.0479766052591298,-0.0525448052091657,-0.0511605108838974,-0.0304362836314654,-0.00287419375554045,0.0319216212981251,0.0443392830074325,0.0214778418831191,-0.00890600314899031,-0.0444189799638658,-0.0710474297916405,-0.0696259709100693,-0.0275184498840854,0.00370584304180852,0.00587369109363379,0.0209222134415539,0.0167083555640533,0.0142429794654489,0.0112953606156792,-0.00608458513716411,-0.0326966085281805,-0.0503258261104405,-0.0518780931307787,-0.04592074746938,-0.045355810535332,-0.0427596414392771,-0.0454834554253229,-0.0429757587784116,-0.0441381465465096,-0.0471070799186799,-0.0412843287361785,-0.0156181481600973,0.0191988402269874,0.0458703880188363,0.0359649269846281,0.0125091042021951,-0.00903386004029119,-0.0365260614652788,-0.0595605690260126,-0.0433444217632778,0.0148473017928625,0.0362971404444574,0.029359767949174,0.0375708955625457,0.03413256938158,0.034967222346819,0.0253758500760614,0.0113301420997118,-0.014136118197455,-0.0398330065797169,-0.0351983286756512,-0.0428658756747887,-0.0412678763158429,-0.043556918246755,-0.0444943862951394,-0.042729502663213,-0.0456260540262031,-0.044823592742774,-0.0351793642230467,-0.0132804214081498,0.0274663885718341,0.0576185562052155,0.0473255823935612,0.00839588665507396,-0.00552534989215536,-0.0164524096481352,-0.0176701236651724,0.0148533266092355,0.050480146543344,0.0557706867150404,0.0448322933054168,0.051313431291558,0.0531208538070164,0.0539591443830807,0.0442210783613394,0.0152144240837358,-0.000253495447992141,-0.024946946826716,-0.0282980297592585,-0.0361794823082188,-0.0403316927027331,-0.0413768860093741,-0.0431082376236379,-0.0423673554152619,-0.042622904496747,-0.0412628922951109,-0.0357274512684872,-0.0147329065170006,0.0246065181700979,0.0595069143120127,0.0539005156152698,0.0403336264332074,0.00929331395240333,0.00337775082255411,0.0181045735536621,0.0464340706263291,0.0527009297598546,0.0424559125568026,0.0395760359421703,0.050868206861756,0.050311327485466,0.0489561569274836,0.0302365976443555,0.0111170103352294,0.000825273077177514,-0.0196406444157619,-0.0322002472775518,-0.0391869543807153,-0.0409815552617755,-0.0452389734497596,-0.0448367312157143,-0.0439092418066322,-0.045171770407203,-0.0422010416067265,-0.039229773686589,-0.0375382351707624,0.0078420598018441,0.0402131393960284,0.0590192598051861,0.0549637122288243,0.0361015629665837,0.0348610528095564,0.0491306298940176,0.0526195521959611,0.0487049284592345,0.0321766535147497,0.0268101270316039,0.0414033922085307,0.0414993774528659,0.0247907330913382,0.00907448233372159,0.00387435620384467,0.0110602409811351,-0.0153755516520752,-0.0332234965386831,-0.0393378968589456,-0.0430257836139774,-0.0442224243440381,-0.0441867879980949,-0.0420609332680206,-0.0423424440932491,-0.0414627701107018,-0.0437874460720278,-0.0519267459008053,-0.0266775872418385,0.0153671533598379,0.0469864573565139,0.0640002676229421,0.0660638614299998,0.0632935265199593,0.0654765296519947,0.0430792258572502,0.0360255660068147,0.0143583171307381,0.00838214648956811,0.0197846139942157,0.0150343238765751,0.0120113542860738,-0.00119345383204768,0.0083033450319942,0.00796466880773568,-0.00432410083648505,-0.0249096608038489,-0.0400924519583203,-0.0429838204755379,-0.0422203500427364,-0.0413555138220371,-0.0432703929848753,-0.0423098990286818,-0.0452303862455617,-0.0528588645562244,-0.0558523841828831,-0.0440490411994246,-0.0100886360595427,0.0229748683768596,0.040299704695933,0.0497473429690516,0.053289499445474,0.0335989216223717,0.0199555558948631,-0.00362458884499252,-0.0173419120621982,-0.0164814599699346,0.000320973912097898,0.0122845696543428,0.0126127323852827,0.0109432262130535,0.0106485737626967,0.00583653550465099,-0.0110003221967933,-0.0320900774743132,-0.0409881532560955,-0.0424901964166356,-0.0416124586385592,-0.0454695275450952,-0.0429122248324156,-0.0450709063960041,-0.0461808508277591,-0.0595603824547471,-0.0656510354925397,-0.0579929026204656,-0.0263240047371043,0.00289933513013708,0.00966390465499267,0.0134277623824429,0.0153675623631948,0.0123745283828734,-0.00727802322749809,-0.0320474299663354,-0.0461929947732443,-0.0247736399770546,-0.000496712952824306,0.0207916512942658,0.0210985583895367,0.0202052268836568,0.0133170597293143,0.00271512290778766,-0.0186544908299079,-0.031012736236041,-0.0400750485841398,-0.0422998090153521,-0.0413411715256093,-0.0432742252788306,-0.04301281810964,-0.042807850575591,-0.0469345614280662,-0.0633612048418401,-0.0673058372017413,-0.0661164155338392,-0.0445399452918916,-0.0221583864802956,-0.0162907991234167,-0.0169389698980406,-0.00761597582187927,-0.00239639843039235,-0.0318034218750915,-0.0434625593564406,-0.0435410164194547,-0.0183279645842869,0.00496839708446512,0.0265150984185997,0.0247277104597557,0.0193338031716673,0.00261135605593955,-0.0145485879905274,-0.0354153715655969,-0.0446199881047358,-0.0447136667963955,-0.0417523846692095,-0.043906790710366,-0.0453585566571649,-0.0420906825851092,-0.0438050997785107,-0.0459403798226015,-0.0617323466495915,-0.0728094067777771,-0.0684837651029535,-0.0586047227799813,-0.0495763588496882,-0.0486507635846212,-0.0354177869694931,-0.0243675532834937,-0.0197946680921037,-0.0248678710079251,-0.0258745914398068,-0.0298301348748426,0.0117255905495819,0.0239218089192777,0.0430143532567666,0.0295968377555561,0.00444549353198972,-0.010897656629755,-0.0332796475494761,-0.0430774164957307,-0.042294903193876,-0.0433632841344149,-0.0423674948353172,-0.0436487284788363,-0.0451294211786779,-0.0434002296260051,-0.0470576731655279,-0.0473919363765036,-0.0544857797519313,-0.0695416741602973,-0.0656120964627649,-0.0590085849593239,-0.0555614665437318,-0.0484123125303085,-0.0567895232407565,-0.0509482408075394,-0.0336761775043883,-0.0269193203909797,-0.0185035941968598,-0.00132670957287398,0.0173757106368477,0.0216164022025345,0.0295472426002329,0.015035514224877,-0.00968195716343432,-0.0351489913424142,-0.0429075870265836,-0.0503927346619468,-0.0444549310401274,-0.046864560522526,-0.0430977704714394,-0.0452756879345668,-0.0443304851137842,-0.0413383047832813,-0.0471589517057309,-0.0485609808045488,-0.048297371356416,-0.0502303941761649,-0.0538347821669442,-0.0431087711126734,-0.0512679794059504,-0.0444548729861912,-0.0531494628834184,-0.0593479367125522,-0.0518470438515611,-0.0504267599764854,-0.034309782428741,-0.0164136033708913,-0.0105513740631523,-5.78827724879513E-05,-0.0035386832409743,-0.00912278133700273,-0.0261565698961215,-0.0360641562134898,-0.0467641555891486,-0.0495575205130458,-0.0435008513789673,-0.041987866174406,-0.0421606500521021,-0.043265560728578,-0.044802447853771,-0.0450635731610921,-0.0453950558415222,-0.0444005773839386,-0.0480228748980107,-0.0454977290765818,-0.0457783546715323,-0.0328538956794204,-0.0350891355717388,-0.0252000412323195,-0.0392816113114844,-0.0490131275418325,-0.0479250184625527,-0.0403340798627662,-0.0365043550451657,-0.0276052071594865,-0.0165526195815284,0.000146254502694182,0.00231041957297701,-0.0109414969060123,-0.0189716025865011,-0.0300176172396451,-0.0382675941353409,-0.0407069557471228,-0.0455215972865311,-0.0437764349151454,-0.045253642477733,-0.0446828811111367,-0.0437914394763712,-0.0418491487197832,-0.0424170230746282,-0.0417249456286535,-0.0465664884797688,-0.0447856873410414,-0.0451324578495355,-0.0479455697183181,-0.048942108815288,-0.053413390115474,-0.0434791195157629,-0.0343690489095735,-0.0282524689660556,-0.0276139771422343,-0.0306894197327491,-0.024380087313132,-0.00596568477574087,-0.00175870134781359,-0.00248673180133364,-0.00704498741076512,-0.0153853958146249,-0.0244232417515991,-0.0365413515927832,-0.0445801998006723,-0.042066715904005,-0.0460608118070089,-0.042996384647801,-0.0456250295870824,-0.0425287553146973,-0.0454941438796809,-0.0427527583821089,-0.0430702422396411,-0.0428898560289735,-0.0456319931692445,-0.0431853533913577,-0.045686426962256,-0.0409118292407876,-0.0356561840546141,-0.0295648040690156,-0.0253071402315018,-0.00685522213621358,-0.0123003995590676,-0.00956278234470719,-0.00810086434746992,-0.00507026732251071,0.00371619477892651,-0.00153521162291436,-0.0127362076615143,-0.0170603253166199,-0.0265984184524153,-0.0372163060194691,-0.0419820340088754,-0.0422937748898185,-0.0434232071570241,-0.0427613490773588,-0.0436666240337592,-0.0443237135559813,-0.0417933187420515,-0.0438983649634321,-0.0422779226086952,-0.0422278089191303,-0.0440919967910882,-0.0421060343378991,-0.0411483462646847,-0.0413409199367207,-0.0410338529460906,-0.03576216233217,-0.0311746590890845,-0.0189798782301095,-0.0230190285636987,-0.0231029478081937,-0.0275561899700425,-0.0264804346653385,-0.0233036210291102,-0.0251318410990948,-0.0321421806413151,-0.033799572571639,-0.0355411344835338,-0.0436232691426896,-0.0424877476891579,-0.0430020757921749,-0.0418343467615936,-0.0426004150954833,-0.0455565510835198,-0.0433497797932218,-0.0455591460448792,-0.0440310508367839,-0.0434677599654817,-0.0443151151422116,-0.043166448674291,-0.0442785941073478,-0.0437704942213743,-0.0460173171661094,-0.0429488091502661,-0.0434917727570408,-0.0453774835958054,-0.0472362370616371,-0.0457054410692569,-0.0444705961095664,-0.0454735856394084,-0.0434275379437487,-0.0471285927049058,-0.0460080043135997,-0.0448254035157456,-0.0444341873318796,-0.0424056706256701,-0.0452571927298251,-0.0454305072091563,-0.0414642445591875,-0.0454646770786907,-0.04356318394125,-0.0446595611991495,0.0577173830964521,-0.00611874160729707,-0.00455692651200116,-0.00392965916922504,-0.00471615738745803,-0.00526155408425825,-0.00342025734324063,-0.00511024373405326,-0.00428231643155334,-0.00549510691702126,-0.00334240225684961,-0.00720642365888031,-0.00699311967209961,-0.00599400371581257,-0.00731274782661949,-0.00494999684448883,-0.00331383247826917,-0.00491608098645421,-0.00498954362648808,-0.00587695356760225,-0.00504394425020522,-0.00527342193134524,-0.00441827275105961,-0.00704628151472464,-0.00347957825540464,-0.00605237500499184,-0.00733198314603951,-0.00409305298052292,-0.00328839775774466,-0.00699167371696087,-0.00728849594210845,-0.00629192216348614,-0.00542701670508089,-0.00597894684389934,-0.00580191358312703,-0.00724049069958864,-0.00712701252946973,-0.00785069719995064,-0.00619157921778272,-0.00567141144058153,-0.00248774857560687,-0.0071656248278781,-0.00568043298433905,-0.00437427309360983,-0.00719983654404006,-0.00216287486996811,-0.0045974388285921,-0.00348053960802448,-0.00309625075609831,-0.0048239430790465,-0.00573467101470162,-0.00578950394725097,-0.00527847273129287,-0.00589065892159534,-0.00496090384891825,-0.0065717140435519,-0.00460737923366169,-0.00715805313607535,-0.00335551361733158,-0.00401332505132609,-0.00755039939639143,-0.00476330199486208,-0.00654802024950865,-0.00378638585606715,-0.00401299875494051,-0.00587981040983276,-0.00333281731617912,-0.00326490129705203,-0.00472659826176578,-0.00243463611979488,-0.00605823825768171,-0.000734453949992329,-0.00139823566856124,0.00103953116625215,-0.0082802333227888,-0.00762294206865007,-0.00875219294113761,-0.00554358309024686,-0.00129333848187998,-0.00368127566112988,-0.0071023379658219,-0.00770516635697931,-0.00760733170258095,-0.00523415513501593,-0.00733823844695715,-0.00683112067414922,-0.00432304698676776,-0.00384961703157851,-0.00693424600567827,-0.00622604937209999,-0.00554816028112987,-0.00738391063899192,-0.00478555595127459,-0.00179132705919482,-0.000163663930082387,-0.00118620132018939,0.00558623447949457,0.00999824641576127,0.00986058086381715,0.0115452938537254,0.00643247891087656,0.0050228460249616,-0.0118387829159539,-0.0105071684468041,-0.0129910823121682,-0.0106213946767613,-0.0129193646542396,-0.0157318752671168,-0.0145280332391994,-0.00544352649515045,-0.0064883082627194,-0.00377333281832862,-0.00446702058140034,-0.00661257268265827,-0.00478490007182773,-0.00554198673664891,-0.00560450404458338,-0.00735638964914813,-0.00554243257084505,-0.00422860867995038,-0.00633804566852778,-0.0029575346691199,-0.00226509668018724,-0.00342372783696441,0.00105503017345739,0.000349336355051239,0.000290152401410976,-0.001386489550258,-0.00612652514427968,-0.00590337439701002,-0.00840721093625464,-0.00286056859703132,-0.00464374567217619,-0.016235599472233,-0.0224269853508393,-0.0259394230192287,-0.0225705678737483,-0.0123108658850546,-0.00447569129560825,-0.00332597615475115,-0.00401207773562864,-0.00552692386602742,-0.00335315144309371,-0.00555985886679254,-0.00483769292339985,-0.00222054058210519,-0.00626785832656518,0.000798689212999426,0.00845938218048782,-0.00124299587280001,0.00405615087460599,0.00565001069612321,0.0190918677878323,0.00388815785806032,-0.0149864233759566,-0.00666886305341869,0.00337338561447707,0.00785202658491644,0.00562867206098395,-0.00661546337004857,-0.0184175358810683,-0.0106011594072272,-0.0187163988556453,-0.0304586030646133,-0.0301912412369092,-0.0165990310342048,-0.00627501441683476,-0.00356557407710258,-0.00513322599470335,-0.00655328920198113,-0.00705479211905014,-0.00406217471841079,-0.00595688320726609,-0.00161552387400551,-0.00180114848877998,0.00681709406516252,0.00108249790251815,0.00238439980677662,-0.00271321193743514,0.00443448624458235,-0.00369090728492588,-0.0125865300673778,0.00828067778162882,0.0283304720469378,0.0351687314117221,0.0281917797370576,0.0202807180813986,0.0135723431751932,0.0127554204880746,-0.00283943533208075,-0.00398729441526113,-0.019682343383807,-0.0299677746759977,-0.0159857658613329,0.000300667645133693,-0.000224683484986497,-0.00514205887778046,-0.00679779435200219,-0.00495484444800666,-0.00526310396339835,-0.00647707025918405,-0.0118246462606702,-0.00735528010791357,-0.00156525065229685,-0.00451492234358393,-0.00572424721604002,0.000233419980952041,0.00708466927537503,0.0056365843936848,0.000947262908287203,0.0172559213693844,0.0325271754327954,0.0375754029431542,0.0229839222888025,0.00197120093320172,-0.00428076506632016,0.00230145948749704,-0.00419948110751097,0.00386436015150785,0.0019442575600248,-0.00771834681159998,0.0114496749025291,0.0057974750220438,0.00100957648523333,-0.00671624279205636,-0.00403723126991856,-0.00648782746964973,-0.00682323097096313,-0.00460250142175733,-0.00638157319493142,-0.00734462680328398,-0.00409784737893188,-0.013081736534588,-0.0108464606172578,-0.00177674087725776,0.00553170749451313,0.00600029528448292,0.0123714975668209,0.0148960310700798,0.017057626421952,0.00980579029403716,-0.000347700915063009,-0.00100311153452661,-0.00186221090976921,0.000436441750612007,0.000356589183196752,0.00725154392936793,0.0130767787509475,0.0199257983452258,0.0245575296424905,0.0122184439349412,0.00119357974183483,-0.00367350042518946,-0.00747968814501667,-0.00716905860130588,-0.00434033843285523,-0.00781849733331013,-0.0087699859558628,-0.00963756531648161,-0.00561364113302823,-0.0122746207716413,-0.000793520060406992,0.00103675764547439,0.00871614597456837,0.00518854011801736,-0.00190835563055102,-0.0119794322211924,-0.0237308328058516,-0.020155148703183,-0.0220460071453667,-0.0119989146956297,-0.0118790453328868,-0.00533445623990056,0.00376490111501995,0.00100452077433496,0.0165476332513565,0.0368882618447461,0.0258302253057319,0.00742150322403124,-0.000844983146007663,-0.00555593973560133,-0.00337310373314476,-0.00852188804512758,-0.00898995480821737,-0.0091183838150189,-0.00962984737373267,-0.00771692111385291,-0.00280451409725991,-0.00774957930702137,0.0123901114896111,0.0153984524639034,0.0124419391871249,0.008856432650786,-0.00396896679289974,-0.0154676610006616,-0.0362209903650406,-0.0350195577938998,-0.0185622513861347,-0.00745566970688391,-0.0100842426422347,-0.00208948945201505,-0.00292439675388642,-0.00143400188969915,0.00791297170278268,0.0305766886206671,0.0295078678545108,0.0091066647428771,0.000758260292261835,-0.00429541912546396,-0.00372239513992036,-0.00681375204277576,-0.00705815932900179,-0.0115743308898517,-0.0110357564909475,-0.00379137629828744,0.000792741910582302,0.0060488899796699,0.0118124701131712,0.0133090284440126,0.00793786783648229,0.0155025876912476,0.0161688058967099,-0.00423727521809031,-0.0261835494691376,-0.0264401051878248,-0.0177827407275668,-0.0113497815683496,-0.00843077758949252,-0.000182890688823979,-0.00194170428310584,-0.000856865029032738,0.00106253131468676,0.0179752912114605,0.0154970367464412,-0.00173244631063598,-0.00176389604857393,-0.00395233477812037,-0.0058195207447366,-0.00510294865356252,-0.00928537414776399,-0.0102710435875514,-0.0112383675421973,-0.000355567500505858,0.000528250056553115,0.0110987602215413,0.0182417815566622,0.00871438881538618,-0.00394074297958635,0.0132181084398033,0.0159926376550142,-0.00814265575837092,-0.0246123695063654,-0.0230483158655615,-0.0094937578590152,-0.0147665010439597,-0.0174869738475152,-0.00557015666997054,0.00497971151724403,-0.0101914429499027,-0.00503538429900724,0.00477919357920038,0.00578628083793442,-0.00177490312755809,-0.00314548175198349,-0.00685210837766328,-0.00503292874847389,-0.00424885094160338,-0.00652801730992533,-0.00832929363531624,-0.0106315276983577,-0.00389837839845987,-0.00226147718858531,0.0119468942574336,0.0158451897889911,0.0133658928043884,0.0071189044399272,0.0167208672118562,0.0201308510702847,-0.0114216655387578,-0.0135843363633145,-0.0101262111060443,0.00439774159175893,-0.0123356881459318,-0.0171029088992004,-0.0172900142748786,-0.0177003791707426,-0.012604647608726,-0.00647647505378438,-0.00687278032259656,-0.00525101242590795,-0.00469006095631004,-0.00624226791225975,-0.00723222883739191,-0.00765006532674281,-0.0057467511969625,-0.00675934538024273,-0.00594600741475512,-0.00832266387473285,-0.00891209426988357,-0.00645052143272814,0.00188453985752696,0.00778397257800824,0.00841996009140661,0.0128387694762788,0.0155960494551547,0.000591519275152279,-0.0147814727331429,-0.00496200537401363,-0.00126831902549011,0.00211743010842095,-0.0037614895355547,-0.0186673610889711,-0.0249645385980632,-0.0216095788437847,-0.00579315759093544,0.000851671769579226,0.00118310574506857,-0.00444502921843821,-0.00543890278731593,-0.00494169956452049,-0.00639987010458357,-0.00506518663100122,-0.00434570942757355,-0.00622336262183987,-0.00641122473166982,0.000487315571110703,-0.00708673618332985,-0.0107743373439186,-0.000645325731457244,-0.00260707795829509,0.0141652897613958,0.0234091787294976,0.0108425573113242,-0.0072631962888408,-0.013580945056683,-0.0126192893465135,-0.00885931629714645,0.00188880660020468,-0.0115750747901617,-0.0193414373102805,-0.01981793758141,-0.00949958021601986,0.00639311893242681,0.0104503054771072,0.00852224745816284,0.00344396729412855,-0.000663796825627341,-0.00408185146326447,-0.00345179580470963,-0.00572488637505712,-0.00728970567817739,-0.00605651318965093,-0.00431043766182354,0.000804677803455028,-0.00274151604911299,0.000316116168938931,-0.00628851257009452,-0.000961049429533712,0.00289249607997038,0.00700294503116365,0.0102382437464651,-0.00688867172553776,-0.0171598427257287,-0.0292673651722583,-0.0158779296612206,-0.00916483685216492,-0.00927664934192333,-0.00657108418821578,-0.0129390408264968,0.00030001195328673,0.0106609828834878,0.00833287280165347,0.00995540895031406,0.00255239094142825,0.0039591532837259,-0.00432800479183996,-0.00661526100309417,-0.00693056350256794,-0.00451176297311178,-0.00698153164015196,-0.00371894253810571,0.00853276056148691,0.00582313227641296,0.00676046543076785,-0.00255466322153134,0.00382640997372693,0.00656686025902807,0.00835437179754606,-0.00259328186684654,-0.0151480307450803,-0.0272571799821523,-0.0314573207608614,-0.0134900739544533,-0.00659167888448637,0.0118762587412507,0.0119548895182568,0.0109275750655634,0.0193964988682541,0.0105044130621366,0.0076594509446502,0.0065138878481231,0.00207244477476488,-0.000616768972338926,-0.00848458462570251,-0.00358928406216017,-0.00379176310861071,-0.00678077870380704,-0.00612799887701626,-0.0018427104048434,0.00937647320738817,0.00931448037813638,0.0179340524982391,0.00809961775819768,0.00279376160819111,0.0123612197615681,0.0201043876722044,0.00841829393920039,-0.00849389451108867,-0.0307548942621361,-0.0222111275512379,-0.00830506834458208,0.00445289507347661,0.0159707147852276,0.0214214087880086,0.0264279708247121,0.0199880212586339,0.000702776183647845,-0.0068848968776851,0.005408233103982,0.00122415480286429,-0.00466153263760941,-0.00618194888121467,-0.00564499890994789,-0.00655104279118758,-0.00518640554631613,-0.00355405496957904,-0.00118078240600098,0.0123192614953513,0.0198057320155284,0.0199281170500662,0.0186193501233578,0.00911602751104941,0.0203267545144813,0.0259794332005047,0.0150448875887972,-0.0107950767118888,-0.00956504419363324,-0.0145347533497213,-0.000389457485986242,0.0130230635247335,0.0270683768755799,0.0293938073584352,0.0274909103263935,0.00838965451097315,-0.0157996494026136,0.000431473096174435,0.00712130089187385,0.0049398860518312,-0.00633713631690488,-0.00564782061250229,-0.00597125345786837,-0.00481423831981068,-0.00517506472174059,-0.00139707139779774,0.00313887997750131,0.0166969885190371,0.0208306720927604,0.0181935477344702,0.0139134889923059,0.0107109842573491,0.0229047729052844,0.0178832298291283,0.0149564863308035,0.00177692567574073,0.000878353819347502,-0.00707710009641982,0.00864952965715099,0.00592348699183001,0.0250276482508765,0.0176372257077864,0.0100077689565179,-0.000651031432800167,-0.00762710749405791,-0.00839258159838779,0.0117949966852038,0.005825832807242,-0.00779363311963987,-0.00673304105415616,-0.00485326647281275,-0.00694032464151209,-0.00424433505419987,-0.00370992399223767,0.00159698049160344,0.00538929324374049,0.0121620399239203,0.0148078151701053,0.0144229852752946,0.00983963898510562,0.00809241027498781,0.0132860051566425,0.0070442862466033,0.00247811755208405,0.00434149274054691,0.00281189357204572,-0.00440597050205477,-0.000513697427079531,0.00808128440173727,0.00265620648995984,0.00993490706149749,0.00330361845626689,0.00568360466417158,0.000851513039679491,0.0100334660650104,0.00362412026064756,-0.00421946714532106,-0.00485879020726355,-0.00520710475279956,-0.00335586364030444,-0.00470564199399227,-0.00274811796960725,0.00212048762274238,5.29554618595476E-05,-0.00592528829618111,0.00748839738735588,0.00577897771833543,0.00379360236068255,-0.00366196774025195,0.00278741348058324,0.00467023759619827,0.0108526709496274,0.0164909049390617,0.000789048634693609,-0.0150187176901007,-0.00946102863597539,-0.00625323244667122,0.00656577633386617,0.01345230497337,0.0149896034635283,0.0117545637035823,0.0104440997307117,0.00587637311238906,-0.00196175922729079,-0.00519616863328589,-0.00380153391546022,-0.00729112407896835,-0.00598951965001453,-0.00438101965864575,-0.00385621283545254,-0.00188532053041641,-0.00198058922865548,-0.00692016434548574,-0.00884842575389118,-0.00678367960639119,-0.00592765987330149,-0.0213449962418776,-0.0139427431740288,0.00800894443592763,0.0140581198301387,0.0126719068146964,-0.00616158042141095,-0.0110795730948953,-0.0109234375870408,-0.00919517245358337,0.00788293191231842,0.013709304780301,0.0101200964124269,0.0115252914331889,0.00356981574271067,0.00179421934091587,-0.00153141970640789,-0.00670760406927707,-0.00744357247690413,-0.00610596619813892,-0.00560709922314326,-0.00597878194783496,-0.00783100050630188,-0.00325059215967481,-0.0039909623749225,-0.00830975528865882,-0.00931965977767864,-0.0123343959185471,-0.00561777057768526,-0.00516638511524434,-0.00725739106510987,-0.00238532415415214,-0.00509055389792724,-0.00473443591785432,-0.0039955721560759,-0.0023019957947327,-0.00670256370378322,0.00338159228131644,0.016699796704329,0.00565143175925247,0.00731419278775081,0.00635776795905699,-0.000855917174719625,-0.00389209982524572,-0.00298513242414425,-0.00598345010058109,-0.00729004611744913,-0.00336740802704026,-0.00657419073437515,-0.00610475493024412,-0.005577723506962,-0.00409410008763561,-0.00455759263974947,-0.0070621863427952,-0.0112432658699126,-0.0150951273186434,-0.0142137307917868,-0.0207427479518823,-0.0137435139626591,-0.00565399269346151,-0.00368404094798913,-0.0115723669008963,-0.0148420443272219,-0.00198453840935927,0.000420988761679891,0.0104260083974458,0.00980995489059259,0.0020928403348228,0.00173906626715917,-0.0058304082049503,-0.00713767798591143,-0.00310720936273327,-0.00648851877476308,-0.00511702273732437,-0.00653586393696682,-0.0074734286827588,-0.00328194495828222,-0.00621801992852327,-0.00369847886929936,-0.00468223879188907,-0.0060803594080932,-0.00352931345793776,-0.00887016375536979,-0.0143778682020257,-0.0168565806467558,-0.0188335315190665,-0.0148729410365797,-0.0121128397009156,-0.0132475748959677,-0.01809632229466,-0.0171506855235556,-0.0180018198601151,-0.018889320623549,-0.0135065884389904,-0.00692674664781531,-0.00828736135151145,-0.00295103041523498,-0.00571259774988149,-0.0037679858582031,-0.00686859050325543,-0.00599773642977054,-0.0051428603537692,-0.00510099450881115,-0.00338412555970174,-0.00430534444069749,-0.00348960899474497,-0.00365276646763671,-0.00528278741692348,-0.00395094516603137,-0.00625167021769077,-0.0054205521679367,-0.00331935072553984,-0.00402434604026347,-0.00382360793758264,-0.00195407560596967,-0.00493343215694122,-0.00327238994637541,-0.00671603407170041,-0.00819275549355548,-0.00871660713487547,-0.00849572136126827,-0.00543406032075902,-0.00573850457485061,-0.00614871592091298,-0.00280867864665954,-0.00389763018819806,-0.00666539296926688,-0.00584865679660255,-0.00334216958289191,-0.00440686408754918,-0.00395565272636547,-0.00609996840136634,-0.0168075019515436,0.0201535599505683,0.0186087983042797,0.0198743250090535,0.0205982985378564,0.0207980977132941,0.0219703505507299,0.0185323828872947,0.0189046041305629,0.0216109961920341,0.0195140115781987,0.0204976119758878,0.0222739364948391,0.0219555763176625,0.0185373037127551,0.018621547518084,0.0217310201543393,0.0202610384812891,0.021313673785107,0.0204236684639276,0.0206928002495231,0.02037207432522,0.0222021672445715,0.0206766384188413,0.0209783736179416,0.0217907657289592,0.022709603487988,0.0204829857075281,0.0188904843430894,0.0188536802968364,0.0214121486250909,0.0200154324916605,0.0215158366388318,0.0190260968978283,0.0189736780915642,0.020063165082551,0.0228266099475769,0.0231331046873173,0.0191911792045871,0.0178579452115789,0.020993233389226,0.0213273348994534,0.0183249868061101,0.0204912601216998,0.0184469013123807,0.0193499177885943,0.0178878500101032,0.0172967683376797,0.0192191671012392,0.016559180733666,0.0182585595304088,0.0215188316937097,0.0202119326225766,0.0215253044038775,0.0189348734683924,0.0210103634667765,0.0227788159501201,0.0206605692631097,0.0227296531461992,0.0186115939543732,0.0193631865904639,0.020558361027099,0.0224429242102221,0.018602930352185,0.0209474310915874,0.0203895148955565,0.0151678591631749,0.0142422967166671,0.0192847546728656,0.0161145068396631,0.0169695650439613,0.0140333101209777,0.0105452619571194,0.0102418877651939,0.0165092418744496,0.0152625580855401,0.0210343557356124,0.0161713488534338,0.0144696487894151,0.0197097915560567,0.0207187536183459,0.0209986383720498,0.0225862667393695,0.0199730593808713,0.0218626513979922,0.019842398896108,0.0212186272536997,0.0186919766131021,0.0217034985678901,0.0199610478844984,0.0196780469969344,0.020938880128517,0.0204956210714469,0.0166884750029633,0.0112476810655601,0.0204844902359378,0.0157888178039025,0.0175192662559023,0.0207437406254756,0.00865310364809019,0.00651937370680136,0.00807144699173084,0.00455919903079608,0.00493052382135928,0.0112772477933128,0.00818699976460581,0.0126036574391205,0.0166851243399474,0.0198439450957158,0.0201787912285463,0.0213560940392422,0.0223004981492741,0.0185674089168324,0.0187064263120407,0.0220286553922044,0.0205593655149629,0.0221293078689368,0.0202374219927643,0.0191372989403237,0.0216930896436379,0.0213023801933583,0.0208994384679169,0.0225631036591773,0.031157558630861,0.0263054599679868,0.0414432587825032,0.0337931981697783,0.0360469938482224,0.0187797490651236,0.00680607483094,-0.0101269516238823,-0.0115953703736351,-0.0126588838724057,-9.84483015461092E-05,0.0185862490773945,0.0289540782238324,0.0323535272121818,0.0220451714054478,0.017957689132728,0.0214771968025073,0.0189136379269762,0.0225351940134432,0.0201572883715045,0.0218038368512344,0.0186562340218226,0.0202841012508846,0.0205146743225045,0.0164026479653732,0.0176108543239615,0.0280769195519365,0.0307507093733867,0.0359889862025176,0.0260564128112238,0.0463234423233836,0.0463869344400027,0.0286365663223546,-0.0075174790439916,-0.0210418913457864,-0.0231724301390528,-0.00953740598854489,-0.00163763747068648,0.00393330660823495,0.014474178804465,0.0346002803386863,0.0381249159451862,0.0270221834146798,0.0215608192408948,0.0207368977200181,0.0189506854212406,0.0215539710568126,0.020220637724376,0.0217140293700292,0.0189942886834074,0.0188215300622962,0.0222017857297524,0.0209761813259189,0.0252573261148497,0.0305963625591124,0.0430472773525526,0.0414931276787283,0.0383811871262941,0.0387496778981993,0.00982747637741118,-0.0191080306547729,-0.0426162711365634,-0.0381113747515882,-0.0280112662331585,-0.0208189686083427,-0.0172396972910613,-0.00667041836086137,-0.00532527209791672,0.0187872312036883,0.0354024761645012,0.0197917664458834,0.00885761581310589,0.0183563045821722,0.0187507109875265,0.0192098523042817,0.0224560513976596,0.0205623066563862,0.0214114675574033,0.0223885896865917,0.0272432938150667,0.0242255779155135,0.0350390708318327,0.039446160453747,0.0402734164407492,0.0399639711175809,0.0239082611958098,0.0148698618242618,-0.0136924675800375,-0.0389413485418722,-0.0504051859154038,-0.0313026588247526,-0.00750738341951591,0.0020151793869653,-0.00481812401256346,-0.00326231385399322,-0.0129425163823924,-0.00522504033179788,0.0101248099770786,0.00151793753081615,0.00541691364689745,0.0146548263475422,0.0179450195903129,0.0209284927837653,0.0225948643780522,0.021704744812604,0.0188621564906988,0.0249626820383954,0.0263176020647069,0.0271750548754799,0.0391757381004964,0.0334153731760092,0.0401618091308897,0.0210796498522614,0.0127877582433689,-0.00699664561446769,-0.0336719060046985,-0.0424520408967351,-0.0317831315090598,-0.0105049868741008,0.00231359272616754,4.47960888190402E-05,-0.00546041623319708,-0.000502805944530539,-0.000661918785816295,-0.00617625282935171,-0.0213215523790178,-0.0139426221355438,-0.000290690347707994,0.0106335172978521,0.0195127863255461,0.0208040764532888,0.0198508820628391,0.0218950283266152,0.0254627162005188,0.0256361768440123,0.0285637273507218,0.0266480786085535,0.0303028667426696,0.0229061922378065,0.0223939385564018,0.00661759236776413,-0.00635330046871489,-0.0227633182142992,-0.029345082852262,-0.0219490907003248,-0.00709781853090718,0.0144959820979081,0.0236961587383344,0.0218915649107457,1.73266900759719E-06,-0.00408267772148362,0.00295113937181718,-0.0110685156077351,-0.0286594455373759,-0.0143371605632055,0.00820591615576896,0.0144856287194417,0.0220604414854227,0.0223689843986142,0.0195423801516938,0.0232220022116287,0.02576816090384,0.0251112201985392,0.0197705109883321,0.0197085264532457,0.0160591908332839,0.00532880754575082,0.00036582287560714,-0.00373581984155224,-0.0248690975208883,-0.0415704583280254,-0.0299755918936595,0.00153681709634678,0.0309340384612544,0.0329657915030557,0.0353044044181771,0.031806669565702,0.00787217689219785,0.00453283985119497,0.00908848190514275,-0.00204195707948891,-0.0226238010493715,-0.00837500910396412,0.0122530415690849,0.0174652753134618,0.0205513051042723,0.0190327865994582,0.0219314304501399,0.0230090773974323,0.0228026266840531,0.0237654889354956,0.0135145975164162,0.00182375907759566,-0.000249216023287864,-0.00276053442691099,-0.0137871932581599,-0.0161841868256627,-0.0366855783544637,-0.0583703054308162,-0.0264759152615749,0.0323617784302696,0.0671115592767135,0.054340970612732,0.053824238666206,0.0415528125834514,0.0187169440973804,0.0110025717757808,0.00286164785467045,-0.00945773440980134,-0.0204163413929999,0.00105580588430918,0.0183009875674281,0.0203662259887637,0.0226551177144055,0.018792320737606,0.0203314577205277,0.0210155966671014,0.0228978716559778,0.0196796771724335,0.0103933948233153,0.000311846228351697,-0.0115416064424234,-0.0151888983345929,-0.0176846878171153,-0.0267379414125103,-0.0533059425266476,-0.0526392451858033,0.00929404262221155,0.0694286090841888,0.077232465780913,0.0593897775050061,0.0690199835193706,0.0540873496954201,0.0336041030592131,0.00776791421416188,-0.00340108952413207,-0.0109379689779633,-0.00888606339086463,0.00524833246830432,0.0167236308420213,0.0212472873835565,0.0206613320887267,0.0197604102923395,0.0201541905107632,0.0191409508913613,0.0231191601024746,0.0239579523059462,0.0143318725199759,-0.00062604351410082,-0.0163612510167122,-0.0225295951841566,-0.0291064878707107,-0.0421734644475419,-0.0411987652842714,-0.0283308355279895,0.0536880214756968,0.0803351332006632,0.0719251089343884,0.0544339647817793,0.0711993681159551,0.0562466734702826,0.0401710160240137,0.0167783874926206,-0.00855673881785875,-0.0153769712851196,-0.00621676561219089,0.0126371721694256,0.0205537513091576,0.0191903088239512,0.0232062613419879,0.0222972871793824,0.0228471776909086,0.0202214276264603,0.0188878020893144,0.0234370329212461,0.00863492575486745,-0.00311369427213165,-0.0121481002878595,-0.024171888346199,-0.0327388566949465,-0.0425311282745369,-0.0336055710928314,0.0197319269354685,0.0757791040141667,0.0710428495516437,0.0611732552928492,0.0463606104791731,0.0460665072387797,0.0430835653996206,0.0334459237920834,0.0153482457020029,-0.0138831058660433,-0.0112099879050787,-0.00222558148010558,0.0112135948218236,0.0215984009201419,0.0219971541530489,0.0189838198172003,0.0207038215530545,0.020108119945402,0.0220980751263915,0.019822563637168,0.0129166458169529,0.00512184480642316,-0.00440774373772716,-0.0151226142091469,-0.0197503954687888,-0.0315810296331136,-0.0411167245105608,-0.00778862394755205,0.0455359866109552,0.0764204112073262,0.0690117560107921,0.0560144347756806,0.0377496696850671,0.0293694326303169,0.0249443711791996,0.00924458656219535,-0.0135841553784866,-0.0136970226845093,-0.0159019266294827,-0.00347457448965778,0.011666991996586,0.020462546921857,0.0214906646425857,0.0186704396120797,0.0184526948030592,0.0224900590648645,0.0198883749135453,0.0195224222560152,0.0137360412089614,0.00260094747344598,-0.00732022436165474,-0.0124268442139441,-0.0155764982093789,-0.0181108989258482,-0.0204652555775752,0.0166017923517623,0.0585904020409059,0.0721631163952081,0.0749902018431835,0.0502329893669001,0.0318136505294299,0.00872691199970918,-0.015110418378564,-0.0171139760111242,-0.0207606707193593,-0.0123805792156317,-0.0130092784732793,0.0113824320763793,0.0116248243882991,0.0158512301764784,0.0199848351181372,0.0202137388961102,0.0194880482429846,0.0187991285717177,0.0185442025246912,0.0223517779484038,0.00912166839209948,-0.000541827233521486,-0.0116343430388013,-0.0179984758019877,-0.0201193639347041,-0.0172222297623305,-0.0106738857727107,0.0186978964922038,0.0463324473438403,0.065512696027164,0.0582990307639474,0.022890174769645,0.00391383788332218,-0.0276652788513098,-0.0459861892110119,-0.041516199615991,-0.0269780255345094,-0.00735091560535233,-0.00675716055389104,0.0126677133398123,0.00779773522886117,0.0175563516180799,0.0238375131052507,0.0220456463587118,0.0188286049350459,0.0194059507088057,0.0216083138915156,0.0221488156508047,0.00800901806270612,-0.00661174512743933,-0.0256333778935053,-0.0189850982735029,-0.0204431383647151,-0.0240333291301885,-0.0243321756778903,-0.00356203389371799,0.0219728073410879,0.0371103247889695,0.027011247291132,0.00293498525504808,-0.027611003350433,-0.0544148341036643,-0.053664083993442,-0.0369914374460927,-0.0100987364153572,-0.00120803590667937,0.00603381241772466,0.00461458190533374,0.0122491605247138,0.022449857175567,0.0240814369071414,0.0223159851719372,0.0193636314310478,0.0197121145086164,0.0194008256021323,0.0217210149332396,0.00705696480956546,-0.0212596447793342,-0.0328346298959252,-0.0334693243653559,-0.0262858354279763,-0.0418571264686559,-0.0411915512600842,-0.0324527213423825,-0.0117676272506204,-0.00362388532256551,-0.00321868664435697,-0.0194284855328734,-0.0435512689782009,-0.048971409752564,-0.0347816619757625,-0.00931047012167851,0.0109915281628457,0.0222565174819303,0.0107038922502151,0.0100870933282223,0.0123669679454406,0.0196933002585951,0.0227669118690255,0.0202251463796312,0.0211643358577051,0.0192381588011884,0.0210118644903901,0.0174745865506804,0.00625073141097472,-0.00958660830504328,-0.0304518018368579,-0.028518538373087,-0.0251816403941356,-0.0443695092637348,-0.0406273455740011,-0.0476873322151917,-0.0340295308734552,-0.0302371181396934,-0.0290593286458251,-0.0377460963958309,-0.0240293892375177,-0.0230955285725169,-0.00225824284814,0.0154378034944239,0.0247822323025767,0.0251184541289433,0.0184575874674393,0.00958643472210116,0.010381376795372,0.0233850178845643,0.0204419730304899,0.0189903522756141,0.020487048800194,0.0205217487166776,0.0181033737467273,0.0178273441433594,0.0131919016461853,0.0061166853232629,-0.0136445443619707,-0.0173924465373951,-0.024530621050111,-0.0288617480946147,-0.0415472988050195,-0.047633989826466,-0.0356005545434995,-0.0329754894495968,-0.0228718119961969,-0.00971120818246832,0.00654038588591847,0.0180488025972354,0.0202600891243687,0.0208343307852466,0.019592515420667,0.011723234712067,0.00852268043999736,0.00374523290101749,0.00962217655634806,0.0191550969652784,0.0229751745300284,0.0223996881505298,0.0220090648169244,0.0203713229550066,0.020866570597632,0.0180572327652086,0.0200868227706978,0.0220738549710135,0.00889798751632751,0.00417941336291584,0.00302531257220605,0.00388173584920577,-0.0107867421869423,-0.0191775785667931,-0.0252430823847058,-0.0197703920525789,0.00767373801692319,0.0260524743621873,0.0307625708960332,0.0333837974201057,0.026004411415785,0.0140231622836765,0.00182010691393118,0.00152123321689515,0.0016919026107304,0.00778697258660943,0.0149481543341725,0.0215205570256219,0.0200673604548841,0.0215740079069431,0.0206874656417884,0.0211232574535402,0.0182253229188698,0.0173781979852819,0.0182042382909789,0.0217976012830224,0.0279255551052893,0.0219363448999624,0.0218935323824593,0.0340537727669135,0.0217726807189054,0.0135940892116336,0.0158850281302063,0.020976276891217,0.041002243083025,0.0395266905644856,0.0339944837474165,0.0240292602527035,0.00983351338534356,0.00350214697123246,0.012508853519787,0.00627426145168563,0.01032034919389,0.0152105963731356,0.0180684143244961,0.0207760651149469,0.0211635273909927,0.0188751848532099,0.0192969531294421,0.0226982447934807,0.020275193421445,0.0188769810723688,0.0180940113696183,0.0197184708578082,0.0265550875129955,0.030120743123906,0.0349180915144445,0.0370178817083114,0.0373561056821998,0.035591276489097,0.0345334568651504,0.0336441194083483,0.0300972373096444,0.0194580441174344,0.0264046569243788,0.0200028085761355,0.00647327302865624,0.00996715278253944,0.0131261149885893,0.0120552620039864,0.0179730104619943,0.0203803381375256,0.0199379578894967,0.0191177401690156,0.0223802890497004,0.0206939788748158,0.0223224110429198,0.0206339170198205,0.0207507765193671,0.0205737893268912,0.0182043154865727,0.0205859406225949,0.0290266177193059,0.030938159868958,0.0329000307070662,0.0345107320327834,0.0331291659143671,0.0336459547553955,0.0311925266722973,0.0297036765099313,0.0342015605388634,0.0232018133448883,0.0171735993566979,0.0165914460114164,0.00890661402558856,0.0150812831470751,0.0112421826935296,0.0203199343390209,0.0186387709562205,0.0223345182798727,0.0202334958887314,0.0191749401514398,0.0219877455002006,0.0225623142804565,0.0195601857116801,0.0192827229630619,0.0193633667667227,0.0187042215979792,0.020027400754254,0.0215205095318877,0.0244823900040126,0.0282281680004633,0.0354407564465419,0.0345016955652143,0.0283077094967649,0.0278015755216093,0.0304051347374846,0.033745615268862,0.033072706976534,0.0290530738717331,0.0282392624857443,0.0261759678547657,0.0217259576060515,0.0182659057483379,0.01571861366967,0.0186335416866992,0.0221071490022028,0.0205384710423618,0.0185438089553921,0.0225869865570345,0.0203892113086317,0.0224485940871091,0.0214287832560363,0.0223006237273353,0.0210687468315582,0.0196654174787422,0.021583384630007,0.0220513391227636,0.0204910417293783,0.017555152477236,0.0189459658745075,0.0206402837594062,0.0195165582099583,0.0226801400667367,0.0217025593404861,0.020881265898909,0.0207945594861427,0.0235799990764194,0.0244452232639142,0.0229251889046572,0.022450169019067,0.0194014216093176,0.0204001279056594,0.0188024742838543,0.0212293320087638,0.0194029832349679,0.0212518297232508,0.0224732851231529,0.0203807637550405,0.0193861525868942,-0.000519273700675432,0.281761202165015,0.281703700385048,0.280848408832402,0.281251850555965,0.279141800744234,0.27898403716763,0.282409219340045,0.27855628288629,0.278736487361969,0.28180636950415,0.279400055357426,0.280478434410404,0.279295504848568,0.282187730717161,0.279080155704518,0.282584625823357,0.279383060263885,0.278838038136058,0.28137690067862,0.282410915936461,0.28161160561932,0.278883007157753,0.280116383807751,0.281301569682209,0.280019931230978,0.278316037336597,0.281073871147365,0.27898923356846,0.281518687424663,0.279107806151996,0.281714831195512,0.281197094512642,0.279095371590038,0.281875062271983,0.28233341547753,0.281556447120843,0.280854572790019,0.279610198363765,0.275375548011951,0.276683395356771,0.279750030886653,0.275801596940146,0.273879326408294,0.275562337736651,0.273629205686574,0.278874550976261,0.277145519076668,0.279944547470705,0.281698311142516,0.279860729148063,0.28165507053377,0.282299366050909,0.279484565733375,0.2785156566228,0.280174391826845,0.278942924318473,0.28134640619531,0.281144103543186,0.279017343855864,0.279567430368704,0.278959550914792,0.280025887107505,0.281044775445101,0.278509594950386,0.280813179273892,0.273452425381623,0.259625012700198,0.249466414497664,0.238261220077765,0.225917517268956,0.208389882733898,0.209748948071411,0.224602351538277,0.222976275636736,0.231532239826354,0.237971841463238,0.24945653768326,0.266412019238782,0.27585996016185,0.280575382375927,0.280728896053248,0.279324453364049,0.278866712616839,0.282614586570804,0.280796186676984,0.279778277041384,0.279575818449593,0.279404499544728,0.283124532013956,0.282460597674431,0.278278213029794,0.281318849201385,0.278471613304774,0.262381955319553,0.240035902448911,0.226205523643276,0.204446240067851,0.173534977488903,0.157226755388487,0.151889268179678,0.161677905588407,0.168982925172828,0.177675104421805,0.202918530969681,0.233037918540671,0.258304778188657,0.266042730723726,0.274909140212156,0.277227861565575,0.281388347946213,0.281755338883735,0.280621056989152,0.278337359363934,0.279853647871439,0.279629769053941,0.282909178666461,0.279116958090595,0.282523594556917,0.27823531391362,0.276143177438149,0.266107949002528,0.243165081708512,0.213875379261231,0.187884107906616,0.142425219297469,0.111075671375002,0.108581653266511,0.0988797633130477,0.0925694305988209,0.116750402625221,0.140459130491455,0.184477448024893,0.227987505749406,0.249361416211713,0.251559903354559,0.261521737556981,0.268986272033765,0.275819354826972,0.281689051458478,0.279037830651293,0.278757746970232,0.279509280176829,0.278681072277695,0.282382408833379,0.279772834919827,0.274638853586845,0.271772842061231,0.257491595858574,0.228564144855559,0.176342336042889,0.109913289511825,0.026243908841585,-0.0259688847894645,-0.047029796171324,-0.0632332912035309,-0.0717318175932782,-0.0682509952230554,-0.057330885628903,-0.00832940506376347,0.0603467133883668,0.119018409420966,0.159012392740028,0.198610438674584,0.217644821576006,0.242288915343735,0.267222671612507,0.274861310267994,0.279580365349896,0.279364202451581,0.281146381837355,0.28000258093561,0.280646933359919,0.278419153851961,0.275332726630719,0.264045615447211,0.235001927463533,0.177104696641935,0.0788328293425213,-0.0291692232711777,-0.118060077606868,-0.178483651077972,-0.225317598896052,-0.241780868598117,-0.230401339215928,-0.217407847491063,-0.194645444484766,-0.120902156974188,-0.0382091271822639,0.0321004480730448,0.0932703078504496,0.150105699754075,0.190001484291427,0.210958691568872,0.247041958619723,0.271071215501392,0.281383632882395,0.278755386385431,0.280392437479536,0.281474267956075,0.280734763074874,0.281674847512745,0.274783958484679,0.246438288197483,0.200916142007101,0.108220004219819,0.0013025631709317,-0.121117932734099,-0.227518078373412,-0.279926980860938,-0.286385573984812,-0.270286072562056,-0.25284488516676,-0.22873342055454,-0.194975482896509,-0.132975061467119,-0.0610477747016632,0.00561148841252531,0.0651056692607256,0.12893978721518,0.167257886606363,0.198199007924786,0.241346229357815,0.27203743696179,0.278357174003242,0.281871692937159,0.281473518154896,0.285936691510834,0.283276299732156,0.281716460059917,0.276582909292002,0.24506970015899,0.187781792220959,0.0723993977348263,-0.0643484591255837,-0.203093333444667,-0.270676977169887,-0.27071900949162,-0.210910637189089,-0.138879058710184,-0.0947316526916198,-0.0831463335638784,-0.067987220002018,-0.0574739170945325,-0.0272715907812234,0.0143558346400386,0.053070503781259,0.11770282676029,0.171305798792799,0.201236903279003,0.238364835301941,0.262042875572043,0.279753621485591,0.279617876568016,0.281410480735734,0.282118295449157,0.283960338856881,0.283842730127749,0.268678946015164,0.235849252634075,0.162635550026267,0.0152748947516529,-0.135207700103825,-0.255022544309842,-0.267487728804323,-0.201153548479841,-0.0719419103282913,0.0513619008602421,0.107659607087161,0.072899070657414,0.019606334998702,-0.0297936516637225,-0.0285089905233904,0.00113660155683088,0.0562749065604118,0.12939119008893,0.179417037602702,0.210776009096483,0.247795295308148,0.270461975030994,0.278353101662234,0.280119308129159,0.281918193872447,0.284125590064354,0.283406685695386,0.280844391394201,0.258131114421235,0.224723258064978,0.102702284301504,-0.052248324395583,-0.203503482023423,-0.273993242552934,-0.243005751381172,-0.136324565219182,0.029893881990169,0.163738087665946,0.179288431346958,0.0943758445852023,-0.00979700165167835,-0.0606946516091598,-0.0541248899386222,-0.00963739260123379,0.0585341991343772,0.135231205953156,0.199857718697644,0.230520176993511,0.248593852691867,0.271649353952189,0.281625701085827,0.279134638958358,0.281264696001501,0.281457945229361,0.284526694777412,0.281452894747598,0.242702431007932,0.194862559190321,0.0598969805770613,-0.0976654640227742,-0.225248969555736,-0.266274976178432,-0.237823141736969,-0.129619239712496,0.0316365973290762,0.116022388562217,0.0869096878906157,-0.0205587275510492,-0.106579696752651,-0.131458243973123,-0.0879191690287544,-0.0149593248173736,0.0845311259976283,0.168056209857908,0.228042847981925,0.252704404678543,0.262900098162868,0.277496446137335,0.279601321632127,0.280019824536017,0.281955677127745,0.280742543453537,0.284316631615038,0.276792124494376,0.238560488216608,0.184459072452742,0.0527615550509253,-0.109518663006704,-0.20453024647842,-0.241133961512687,-0.244421100040014,-0.186431092654611,-0.0762858303075641,-0.0350533826263113,-0.0819488606997128,-0.163103923122872,-0.203102984406107,-0.170742635336211,-0.104473306820323,-0.0112208090434983,0.0989907177610422,0.19729704363173,0.252555018116079,0.267753351574097,0.274043965725607,0.27961626610654,0.278476635086297,0.281092689955206,0.279795815806715,0.281289396047741,0.282627894374819,0.274292469279662,0.249873308527307,0.193430629130123,0.0532501427744685,-0.0857757429634183,-0.1802903639912,-0.228951957355441,-0.2689197856488,-0.266249996779299,-0.195159603992963,-0.182680922225789,-0.199986506179825,-0.242966208617968,-0.244364372998026,-0.191700198175443,-0.0892880677983269,0.0128001747310468,0.105480500879264,0.18954257442545,0.258098165159354,0.27850807234879,0.274543705148576,0.278394038493992,0.279027975648338,0.281412251036905,0.280670125603263,0.280182773100402,0.281522970396303,0.276138167635102,0.267861227296012,0.228180629142249,0.0953576288492436,-0.0454180384788375,-0.146001019729944,-0.210096846820728,-0.260832036801557,-0.275021935617803,-0.22559435037167,-0.208846304960996,-0.213245312225412,-0.238664295400803,-0.233076713801004,-0.145237377737133,-0.0503290553097416,0.035628081736468,0.110769589371309,0.180133939253761,0.254161691138714,0.272681145622573,0.276433065511986,0.279770738452025,0.280214323183941,0.278976205633444,0.281176189330202,0.281937186861177,0.282093625933053,0.284434322236669,0.29280722522847,0.26746551649881,0.14223803030575,0.00572145974596529,-0.102393335540296,-0.171508665064038,-0.21446210541664,-0.21820442816524,-0.167084443950746,-0.138397618608499,-0.13324237218845,-0.173413164309157,-0.162094597713859,-0.0948032238397421,-0.0125849599458262,0.0291296369484999,0.0948041525628167,0.17960675637454,0.243612457608696,0.27164319481532,0.273409399855817,0.281437269567262,0.278234088873161,0.281476857076092,0.279556349669213,0.279335961305605,0.277391397901472,0.283689939854796,0.30072108277336,0.278781271076727,0.18001870469367,0.0509490788076059,-0.0618159631225582,-0.130818113541007,-0.175813124721624,-0.144543243318069,-0.0642025836933077,-0.0220105057347544,-0.0419369212257702,-0.104107505402683,-0.116492299203746,-0.065851089207773,-0.0271662454875382,-0.000802121720830062,0.0681494128822042,0.16342820222074,0.232098344619986,0.269764022999149,0.273331204816945,0.277930391735312,0.27961116903795,0.278599391277607,0.279682009305274,0.279497281324333,0.279489413402057,0.280261016844082,0.290564920286033,0.261012128547273,0.167222658793496,0.0596177927121792,-0.0601914048233856,-0.135703262963773,-0.147544180937525,-0.0708761221610471,0.0331929674139476,0.0628175463187602,0.00462721013484205,-0.0762686499183493,-0.120069419727072,-0.105111935543426,-0.0757343269004824,-0.0392909854226824,0.0515908285826731,0.153272053356271,0.224858541774316,0.264551457417208,0.274892022784975,0.277484085244815,0.279124613471764,0.281937696302299,0.282221369982381,0.279405992412885,0.274266818824813,0.271177293498832,0.271046612636165,0.224046237057411,0.122556471112455,0.0190528171342821,-0.0846119200169606,-0.14382797360618,-0.122398591781372,-0.0109788100684281,0.107509876122121,0.0968808442290551,0.00624589549240047,-0.0985492107620355,-0.154313357291303,-0.156109243102288,-0.128004909037423,-0.0550927426018133,0.0727465382359457,0.168836445506413,0.232217928572045,0.264230901008461,0.27601732992798,0.277299431193792,0.280290338659469,0.281544260551673,0.281869721997784,0.280649628069424,0.274547873109411,0.267023508730328,0.255749998202502,0.193087258958343,0.0792669271247035,-0.0208694482753534,-0.094289829159845,-0.126003378805952,-0.0718752784585574,0.0473002438866285,0.115835386523171,0.0703547749425038,-0.0367054568813362,-0.148330531305741,-0.208179441334613,-0.200513346563678,-0.132377505403674,-0.0282345267880263,0.103408441019995,0.191223746885018,0.246130698977939,0.269857954439126,0.279985529072626,0.277862744405478,0.281605162118832,0.279303695722052,0.28031639844984,0.279152173241427,0.26925809113653,0.262942484542921,0.242372630400707,0.163763444697197,0.0571067526941148,-0.0145804946715229,-0.0748487192469726,-0.0903349478854758,-0.0302555302235558,0.0270466482420089,0.0407540633456894,-0.0123211600235229,-0.106032349350038,-0.195408014804176,-0.242263238108891,-0.201046389356074,-0.0985450010448368,0.038666990299461,0.147582010543384,0.214439084946194,0.257959331911892,0.275210619455349,0.277663242850462,0.279008249359084,0.281413513704102,0.281409080050073,0.282211779895183,0.278600804880261,0.273322445840624,0.260389856513655,0.236549099687097,0.157294413956054,0.0445149531065454,-0.0188664166020292,-0.0653448904713017,-0.0817947700808502,-0.0622220755008963,-0.0560271566010978,-0.0730778721202273,-0.12193153937404,-0.171315516017398,-0.219893323512224,-0.223461497168213,-0.142046791069296,-0.0240081792775366,0.105638874157272,0.191184976465618,0.233195387717535,0.267740655914952,0.280357965430482,0.280998301480523,0.280422075941085,0.282425654010619,0.28073252764265,0.282358277884746,0.281313134891457,0.274985550598372,0.263806653735286,0.231581595501907,0.159372540578453,0.0655959278537827,-0.0204171707018061,-0.0686651917852678,-0.105601484170112,-0.119977739537353,-0.140663957923037,-0.149896888174623,-0.157664515902209,-0.170221854527908,-0.171035585192709,-0.128440194015808,-0.0487593623452929,0.0732865638885741,0.161649453843151,0.218357356803507,0.252970688068074,0.277163753771323,0.279989625003182,0.281927674645849,0.28191638481033,0.281492319409657,0.278532088470453,0.279919749109862,0.279117909463798,0.277913240180194,0.27265706942649,0.252940361710478,0.196121149813243,0.114113114368153,0.0220916698731666,-0.0523990339031306,-0.100963586138729,-0.164754421550752,-0.197143036996044,-0.193385485520858,-0.155270112935705,-0.129591443905719,-0.0959228906892899,-0.0272641438182703,0.0545101056798075,0.147313147702427,0.210680505082291,0.243703094494049,0.267767329449272,0.27434068333831,0.279715275142471,0.280368117077009,0.279929607425445,0.278869341935746,0.282310685005755,0.281981472804249,0.279174932344402,0.278244478344179,0.278980881034484,0.271212378816312,0.24992221686311,0.200205245859936,0.129288836055229,0.0528397970942143,-0.015961894526898,-0.0895564874406062,-0.130853457199834,-0.128204417757199,-0.0910834015397619,-0.0419043395365441,0.0154420964652352,0.0715819684917044,0.135769593350046,0.193977805419234,0.232363985768699,0.257317538612144,0.269173543501844,0.276011032924233,0.282316962178927,0.281870248697695,0.279088088211771,0.278306885069039,0.280729785352949,0.280333121802447,0.281575748783661,0.280143801266358,0.280801603588292,0.276287347753447,0.277223188830523,0.276474247423137,0.255473303308073,0.23583720224913,0.192106592542274,0.147449738247283,0.104787694191956,0.102383980813225,0.123088154569878,0.130784544092363,0.141851407697039,0.158994828930422,0.190794550071254,0.222121004415911,0.245846311469081,0.265545561136628,0.276200708817652,0.280028426295229,0.27962917236614,0.282146302809797,0.279261267854404,0.279889474464652,0.280406704281878,0.280841050311323,0.281446730570479,0.278495829215135,0.280857556950933,0.28081551516857,0.282642751940633,0.284909076339351,0.290022722979638,0.292298193082827,0.285119077638124,0.26634058265391,0.241723278805706,0.232009297289054,0.233980681677187,0.241340835864333,0.239958240618308,0.250042650653407,0.258392319103314,0.263723907700128,0.268681676384736,0.274707745975895,0.278460115780673,0.278984840293903,0.278514382643663,0.278306405110653,0.279084822195448,0.281997065875911,0.280820022692892,0.282505066638822,0.278624396206271,0.28020934590789,0.281308280303871,0.280690501020717,0.28165942904835,0.283184590662659,0.281326122032013,0.282497875558279,0.283606477480647,0.2822847993045,0.281119713535696,0.280769228167661,0.27872717601928,0.279198259834644,0.278810172210153,0.279308333859689,0.280985750551912,0.280469349800279,0.278153085593726,0.281845509770947,0.279851762468484,0.27926786926155,0.280561479313551,0.280830838936896,0.28266020301371,0.281276676341247,-0.25188914313115,0.00814151879250987,0.00939182888237241,0.00968964927158692,0.0080355001185818,0.00902004749842492,0.00641558207316769,0.00976387722272552,0.00957143813105588,0.00859211880909117,0.00750292269218589,0.0100731549245526,0.00983220487384683,0.0104674747989776,0.00766907195060697,0.00694745572176995,0.00954312473424171,0.00911873848531311,0.00857829055410653,0.00985855080031572,0.00633168914237677,0.0091290760075027,0.0094817065652402,0.0106216968590038,0.0103368224825805,0.00653724402540411,0.00771846207069577,0.0106838328432495,0.00832110483233413,0.00753104252752549,0.00963741837066672,0.00779765444517798,0.00711122195398649,0.00776208618323484,0.00832122492789309,0.00930199044572673,0.0101259429815332,0.01105161125626,0.00983215864097016,0.00736135018493388,0.00754047066989437,0.00820112682133471,0.00709446553062182,0.00895046418962852,0.0102397800220767,0.00777820772542135,0.0102863716953204,0.00725102341622069,0.00861784670450159,0.00705809454352385,0.00803592946347018,0.00870095264291568,0.00912893652357322,0.00871100826351146,0.00858774394529667,0.00685568785735018,0.00713310538161324,0.00998116712532868,0.00696575478901833,0.00690099357004888,0.00658108943585631,0.00755943320901791,0.00766453924173369,0.00626393925980861,0.0101381932873117,0.00774634904274794,0.00775814472080698,0.00644036477326431,0.00374403518658922,0.00771340372434227,0.00752779413387851,0.00137946867160283,0.00521725400774365,0.0082114603000596,0.00470238966898905,0.0032172011772056,-0.00175746934146481,-0.0031772962623096,0.00570171927857986,0.00894567645239315,0.0112136761646337,0.00870562066640187,0.00869626909201166,0.0107017620707418,0.00921063876882575,0.00806240773545096,0.00882058827825079,0.0106249369505217,0.00741166905177897,0.0082249814900343,0.00848651904241865,0.00668374505802544,0.0054638793534973,0.00614970508113401,0.000841867730264707,0.00398520668924048,0.0110377076565287,0.012913976449064,0.0104449440030228,0.00242180730500638,0.00683754788564486,0.0154493093308108,0.0227932158667088,0.0227324854321771,0.0135248785040424,0.00704074182634692,0.00678893790756868,-0.00139238340553354,0.00304262279510582,0.00560849283759853,0.00662789727255197,0.00974612584065957,0.00791723030366785,0.00759343682555154,0.00668015105670448,0.00893505955390276,0.00918671161699254,0.00715750134882784,0.00819455815607878,0.0113425758376656,0.0100396812598882,0.00413059845669375,0.0133176531900575,0.0160841026651794,0.0134594779670223,0.0134081708414284,0.00519210091213679,-0.00661304993500051,-0.00531151186082241,0.00777130662760315,0.00971568469820305,0.00873220936812478,0.00726870017039751,0.00572502482339328,0.00176769009056357,-0.00201067423336052,-0.00312546430043975,0.00124842904493848,0.00845974827691161,0.0103423456132269,0.00857008948250973,0.00660435087509789,0.00658170019612222,0.0094642258118741,0.00954314595868602,0.0100332122667132,0.00720694750026395,0.012109678264272,0.0104472896759003,0.00722503567210909,0.0105524685724901,0.00935979548098095,0.00635380380251465,0.010418313902847,0.00443914403196318,-0.000461882697370233,0.00370122546892272,0.0171794469074378,0.0137716194507612,0.00764770753551247,0.0093034136780324,-0.00142733263418317,0.00845969740608686,-0.0011021053255781,-0.00614789347920557,0.00265935964873048,0.00510764294834236,0.0058343295376571,0.00801383358946207,0.0086930917432811,0.00908260014239095,0.0102460858102853,0.0129186863425106,0.0122215254809608,0.0109211029451807,0.0189945712358088,0.00997252680928259,0.017548697338959,-0.00274947002808013,0.00175322741623516,-0.00485706070917073,-0.00213870975933997,-0.00946862712044702,-0.0147172615753453,-0.00290050028054017,-0.00269368646703157,-0.00548281730367498,-0.00198905035610535,0.0048258243226126,0.00432861193353266,0.0085306937082207,0.0179280444838085,0.00906327675143582,-0.00233853777377011,0.00764763818250333,0.00670524279457853,0.00843787118974143,0.00707495850337938,0.00814374128884255,0.00882913787181016,0.00592233144232305,0.0132430229154947,0.0163689015013911,0.0163492326152717,0.0170239368430452,0.00111052271762984,-0.00232618204961695,0.00979782335207124,0.000663106328495763,0.00376658335393005,-0.00616270266675438,-0.0106080764996237,-0.0199313077637728,-0.0239306620591075,-0.0141557510942238,0.00175120526199541,0.00400231841992374,0.00898871176748921,0.0073035136241616,0.0178089099950814,0.00897551037572548,0.00157266521903709,0.00723070642903216,0.0100884524805887,0.0102198610589609,0.00777972012531631,0.00940189676813942,0.00991659107439039,0.00273887376851729,0.00762757860945465,0.0102378859144694,0.00779539033759283,0.011753075155492,-0.00500054839963735,0.00359970206100549,0.00256411725016288,-0.00551281478099646,0.00861042490379947,0.00851688322156466,-0.00388872037529139,-0.0102123223089369,-0.00953571052850968,0.0034109429648068,0.00953161956305918,0.0160570413361179,0.0179384597352446,0.0152142439186249,0.00748147612929597,0.00498729928711431,0.00933027883146846,0.0102407352829086,0.00727554173897395,0.0103734322405835,0.00761148253147739,0.00757583277260559,0.00812863128113916,0.00389440919805931,0.00652639887426662,-0.000591891425369896,0.00828959766493069,-0.000937595152063545,0.0119628648941695,-0.000266090307188827,-0.00178440242741976,-0.00742177861583039,0.00116129866237194,0.00369363396328317,-0.00203693939955538,0.000468451099598834,0.0106134724505042,0.011737317056101,0.00319426265745743,0.0181905145213024,0.0209484456750142,0.00753997410056526,0.00589203600776141,-0.00143720952267548,0.000483836239640318,0.00452362204071148,0.00719795153181653,0.00928214290034031,0.0072213103579645,0.00810612480119976,0.00997712194396878,0.00497083568362014,0.00818993156680773,-9.19750771416785E-05,0.00145893147330943,-0.00234088171506073,0.00536844115928122,0.00154304969497028,-0.00138621773704113,0.00272536965789637,0.00432894968882649,0.00497327469998538,0.0161423353249048,0.0158497748736909,0.0124012726535465,0.00436036923686407,0.0144329716450412,0.0137635429262251,0.0130970562499977,0.00344954562251921,-0.00262126759405613,-0.0075976685903381,-0.00237308404328116,0.00430858410044959,0.00703705018258559,0.0076254945809502,0.00931439399669875,0.00955940055587872,0.0073044611222577,0.00709714188659191,0.00639812213187843,0.0012247408860419,-0.00404450259179932,-0.000436371038618437,0.00231125086831898,0.00427407418902839,0.00577893196648225,0.00700457435916548,0.00503868169366633,0.000827922176717427,0.00495293002116234,-0.00744546803483582,0.00161800670647478,0.00910908243684709,0.0100653876248506,0.0103003054480156,0.00705121744983978,0.00289772810416805,0.00218508775045824,0.00390107281104103,0.000257026554109014,0.000301011251296999,0.0093929647998065,0.00956794748490756,0.00871806535147316,0.00847168588174399,0.00733109443106497,0.00929477226753904,-0.00272522091495496,-0.00501940922729791,-0.00544154082239376,-0.00377015200320724,0.00252036541004394,0.00203311593973957,0.00512722962405252,0.00424902401916774,0.00610895630437439,-0.00810818090265565,-0.0197692930956984,-0.0204026453028131,-0.00414857825919976,0.0081067718707809,0.00405905054640183,0.00803780626322013,0.0120189722151715,-0.000857344372199127,0.0101159159874639,0.0151349985655116,0.0126687338463816,0.00974880776036442,0.00946863564325043,0.00730110295613742,0.00941730152921805,0.00944384860944759,0.00666845279221786,0.00589610394728354,-0.00303474657992711,0.00261539133077965,-0.00237902779737123,0.00633978641574398,0.00357613890036333,0.0129182520782083,0.0272948179546125,0.0181630516412218,0.0155029746220055,-0.00706135821623435,-0.0197317914701235,-0.0170496165255588,-0.000604071206173742,-0.00172869472867027,-0.000724964468574186,0.00278184059481655,0.00766564603272331,0.00744445803476469,0.0142998203252088,0.0301690973937893,0.0221537143659083,0.0072816234420337,0.00841029087393263,0.0110830303202224,0.00873069478240052,0.00720188143257418,0.00645157467688735,0.00414931580009681,0.00226470224514369,0.0193792811119423,0.0238647231881791,0.0241716353001644,0.0187605682442471,0.0194686339458211,0.0315631863948112,0.0232411449273048,0.0122005846753783,-0.00542894042494863,-0.0110460669902146,-0.0101603513385883,0.00762379276380832,-0.00755261460449949,-0.000825442850043798,0.0176573817127975,0.0235236448533238,0.0295194164694817,0.0206331561863034,0.0259652085487024,0.0279490766124514,0.0135306387284985,0.0112263662082355,0.00846177062878035,0.0102735200887133,0.0100851406975406,0.0080206485042353,0.00656313069725799,0.0136084754020234,0.0305626211630817,0.0379596758512119,0.0247031416809743,0.0249747779410399,0.0292335380717983,0.0288923689605761,0.0196049031334613,0.008568206775393,-0.00134636539044746,-0.00068703267081947,0.00294357275008645,0.00640375512029394,0.00521862314420682,0.0225167685246034,0.0270254429175932,0.035957140050948,0.0304611372498651,0.0235042781188718,0.0199272604587587,0.0220468299099127,0.0121782363820715,0.011986877329718,0.00920174908729009,0.00893276560815575,0.00661298980095924,0.00747967914568344,0.0103851303110499,0.0180700217379499,0.0317127858535349,0.0249264449185358,0.021819471127388,0.0200230235744042,0.0252479907052126,0.0144008038902564,0.00985735719721998,0.00374938525778672,0.00631078345719004,0.00868331225408209,0.00739222549910037,0.0102358813264101,0.0189479083385539,0.0364348534176518,0.0305773129481337,0.031255593505178,0.0209712476004869,0.0221132177741446,0.0181111214530489,0.0236144254863757,0.0110211272497485,0.0107286741337512,0.0100406865277636,0.00838831979663054,0.00989407817001833,0.00630190599721509,0.015722111043645,0.0222943594566016,0.0251827268791512,0.0134538864507592,0.0226593150285179,0.00404294159468829,0.00344629599352748,0.00871839558608774,-0.001772914439316,0.00103885396937763,0.00813435864966661,0.0109612653988139,0.00463113039079321,0.0163245773764337,0.0132350049543642,0.023499267172862,0.021819994785881,0.0194242028631134,0.0119221459740226,0.016313695400378,0.019049254887404,0.0168375457890042,0.0132687223802572,0.0100299395284139,0.00924561711202247,0.0097602285822429,0.00964715084324543,0.0097831976510369,0.0161947892419368,0.0277458001550127,0.0107572713649006,0.00766667236321749,0.002267207212789,-0.00433111088199306,0.00242615836307643,-0.00348333030497726,-0.00867916001721942,-0.00684797615460099,0.00982371691471592,0.0141030667063537,0.010388050386692,0.0130143228367033,0.0116297851386129,0.0143117339837224,0.013438154885585,0.0180608643983297,0.00417463579654601,0.0106051434444044,0.0105655729865001,0.011798130225596,0.0152942353275969,0.0102197904046686,0.0102862682582823,0.00844677432084453,0.00751311343159579,0.0116410726188834,0.0195073042742053,0.0250228201580326,0.0111007444537564,-0.00106217220294025,-0.00273936704717091,0.00796194950912036,0.00632711541318666,-0.000222282692942932,0.00465549818108768,0.015218037017716,0.0155148330714455,0.0197159746950271,0.0151973182553171,0.0156070599225431,0.0160081837769111,0.0133409575117512,0.0188093340986866,0.00242290647790363,-0.00272276879366077,-0.00119210311156292,-0.00184412983175813,0.0125942182172729,0.0150684426245876,0.00979070973695963,0.00858549954676061,0.00808941729538258,0.0073923498231183,0.0120824839295376,0.0138156705284755,0.0202811968459349,0.0118525497246958,0.00307264951720999,-0.00496634133276552,0.00875803641320718,0.0161777970604842,0.0181047146521878,0.0233490027330003,0.0238906984491328,0.02153487505115,0.0262548507392567,0.0251787008810444,0.0179305301542514,0.0157647420059266,0.0121159899501471,0.014331519298369,-0.00130868713268051,-0.00564764684335981,-0.00746181764001576,0.00384325511966681,0.0110542030263893,0.0107410506998255,0.00751639598568933,0.00966725252833714,0.00808668328354599,0.00782896864694023,0.0109176394604705,0.0182261581371841,0.00910230742632704,0.00766722142657364,0.00780154386113845,-0.00603582590807366,-0.00448380239170332,0.0068002039049679,0.00822698471005915,0.0222491174006649,0.0198319942390803,0.0191129333863191,0.0201960644434456,0.022112468213089,0.0189233449394412,0.00928395977191124,0.0116093574691371,4.19946436789704E-05,-0.000835298904054933,-0.00636792670480102,-0.00493849684779522,0.00749551128345546,0.0109080842602253,0.0143927453584211,0.00703596747912399,0.00709264274469644,0.00893197660061613,0.00992543911762987,0.00856312815056703,0.0124443377600118,0.00928293405956795,0.000378885249910024,0.00253764764056566,0.00554981643395496,-0.00967371091518922,-0.00330450546176035,0.00522214662404643,0.00603563482514003,0.00779990477021437,0.0107560499812156,0.0066636607486778,0.00961083172422638,0.00519163877191958,0.0127669603881933,-0.00138486309905418,-0.00724903718466611,-0.00249215592908653,-0.00424023379372323,0.00154368363133049,0.0102820763026854,0.0144293169580057,0.0101430483291809,0.00777013125326931,0.00718479738640151,0.00762117986156357,0.00742604640239797,0.0103035556213153,0.00889445740322664,0.0115211729470829,0.0113647418188671,0.00352226940213704,0.0178599314215872,0.00715264660965652,0.00300627998918977,0.00467078917390194,-0.00399681697081036,-0.00460625766667963,-0.00629671087732289,-0.0100919160770207,0.00280553497685344,0.00242001822621617,-0.000320304522416368,-0.00807233299888717,-0.00620147909149426,0.000757648701349973,0.00634362755487225,0.00329821173392245,0.00753576226445031,0.00994338912485259,0.0102136674315956,0.00825627253424026,0.0106215579556273,0.00955087533175674,0.0103319733072718,0.00927558973590051,0.0116043678808336,0.016001606390329,0.0162900828214706,0.0216858016168793,0.0160207859656555,0.00864068576707916,-0.000863233719013336,-0.000553591870663767,-0.00742413194233487,-0.000956635561789894,0.00290517883991778,0.00237887465567117,0.00105697072584596,-0.00737930746576971,-0.00101558734963144,-0.010513736395407,-0.0120852098825037,-0.00121295969997208,0.00453147867470862,0.00064369158310046,0.00764110159991443,0.0110207059316624,0.0107169486422153,0.0100356974686663,0.0105227684360209,0.0066027583358493,0.00750484466658299,0.00893443378270202,0.0093737137346002,0.0113441987624868,0.00966699528310502,0.00815665582641776,-0.00213932052021096,-0.00715993420725176,-0.0171901215044921,-0.0198401803588288,-0.0231130042665809,-0.0278816546805117,-0.0148981130862742,-0.0141421715085935,-0.021107326786913,-0.0169358289017919,-0.0195952438833762,-0.0126038504541238,-0.00828737933318216,-0.00253030061578858,0.000507794856205136,0.00214932591496935,0.0050008507697706,0.00740327256677424,0.00714305849164022,0.00745910868159191,0.00818491479673472,0.0081997681045254,0.00753990585507339,0.0071714850635348,0.00956795105036412,0.00982563399790815,0.00895690250215781,0.00593025350944769,-0.00181525019341885,-0.00369796540852545,-0.00692694910424701,-0.0092520740058787,-0.0136395768557811,-0.0168956996158202,-0.00429594025046467,-0.00676302303703914,-0.00768955790784845,-0.00610513217692781,-0.00101770359961645,-0.00552739599231299,0.00137958550701434,0.00319695437146486,0.0062988695414282,0.00716415391439541,0.00952041385325616,0.00782883419577666,0.00971996521436942,0.00638668062085372,0.00706664957437033,0.00816592342238331,0.007449035320663,0.00767577267438746,0.010531401069977,0.00791718578777337,0.0082146864253598,0.00798592432186997,0.00469579045286907,0.00675338329244343,0.00474000470314963,0.00728907756235183,0.0060631789289288,0.0075158967601887,0.010492840121989,0.00752607370287577,0.00775303986563234,0.00850752661156675,0.00810296758271227,0.00835333308765609,0.00665619549102674,0.00860188861198097,0.00731842564433098,0.00854551379943438,0.00682941564575719,0.00702191378422138,0.00883262469819573,0.00879021228460252,0.00760965164156519,-0.00583271093741563,-0.0096763798309438,-0.00835541800047254,-0.00608294074146337,-0.00963651084804683,-0.00757209331494649,-0.00600989550288686,-0.00747228498608764,-0.00555935080383976,-0.00680469806802522,-0.00643898546333567,-0.00815206925839891,-0.00563732393546809,-0.0085900016399046,-0.00693008701944954,-0.00967701844081204,-0.00773964255006898,-0.00833318697697067,-0.0068588832742299,-0.00910893589682454,-0.00618329286335886,-0.00947283325289161,-0.0085779305856753,-0.00981892152126208,-0.00669458354276419,-0.00727579163488337,-0.00910050554824049,-0.0078737668171626,-0.00837603458033617,-0.00899553436852163,-0.00952211658136507,-0.00890581209139344,-0.00643098628103772,-0.00748014685033051,-0.00724781840628636,-0.00970886605514074,-0.00576341279374699,-0.00687378997749103,-0.0076843015052565,-0.00658808943377052,-0.00581648720266606,-0.0053751131061827,-0.00696061728681633,-0.00648968195856878,-0.00672138641501745,-0.00655166629672074,-0.0105066136011364,-0.00939627089885402,-0.00505003991514268,-0.00758720428436912,-0.00699185500053479,-0.0085794276146108,-0.00668540396606198,-0.00596082517022131,-0.00891510474477315,-0.00765862218060942,-0.00573199771881056,-0.00807443563143658,-0.00967739416714138,-0.00785390745719458,-0.00702557266638301,-0.00645422605250476,-0.00813102486035686,-0.00684723143485951,-0.0098888273845145,-0.00953132655877337,-0.0093636719792497,-0.0105688566450613,-0.00772130471945254,-0.0103227211540992,-0.00965752339875219,-0.003535085772942,-0.00696421701045118,-0.00810198254111671,-0.00591265108453313,-0.00446615104731352,0.00396121832973156,0.00600161350411641,-0.00392821517654088,-0.0052713830220096,-0.00834049503069822,-0.0101010509398676,-0.00559998210570484,-0.00830156672098906,-0.00703348416116649,-0.00635401629679699,-0.00786958046156622,-0.00969275096623728,-0.00876613522065313,-0.00688594764059293,-0.00647524744100126,-0.00480238920395962,-0.00320440188661044,-0.00233516305234329,-0.00639576395586081,-0.00908832323697512,-0.0142255488782389,-0.00848488279416209,-0.0113996045287123,-0.00253203257642099,-0.00687782957528683,-0.017875590470868,-0.0219512596234285,-0.0228512156785642,-0.0104020263455524,-0.00566844960979184,-0.00832587423066806,-0.00070190636962234,-3.62165286804482E-05,-0.00615218064034211,-0.00637098082356652,-0.00816577409863416,-0.00968063726881541,-0.00946869316995834,-0.00771897980041839,-0.007558564269069,-0.00666399848489994,-0.0103008048771813,-0.0109015222033861,-0.00942439569805539,-0.0032432201625662,-0.0021900300487452,-0.00588588831082691,-0.00314015263101693,-0.00710232955203992,-0.00898785972358553,-0.00335760660069074,0.00293481945749198,0.00237031918293601,-0.00699052117781905,-0.00758740527890933,-0.00787163714856738,-0.00655571794686636,-0.00296102077445297,-0.000898868623623798,0.00274387990051058,0.00101566855183998,-0.00378501569118082,-0.00473002468795682,-0.00905322866185927,-0.00795738832363675,-0.00867531727993959,-0.00731271809963881,-0.00724045809336501,-0.00709005789888331,-0.01213206139659,-0.0121285036202827,-0.0116929577148406,-0.00761668101333017,-0.00652248423059222,-0.015329808740689,-0.00918845739344358,-0.0068116620921885,-0.00777259061139204,-0.000317800152854517,0.00284350297855122,-0.00803993534623751,-0.0158931876532629,-0.0167593398007608,-0.00581368039912448,-0.000355688129529676,-0.0023908067296752,-0.0127566959839327,-0.00772641008080266,-0.00351880601892435,-0.0121154493381193,-0.00649785972340466,-0.00791528827459079,-0.00957290423935127,-0.00632384155975925,-0.0098623069601064,-0.0074650265947032,-0.00752086581091787,-0.0108023521441416,-0.0134556522403952,-0.0176695246650711,-0.0107789076085746,-0.0142193575182957,0.00362729640572523,0.00305204783837281,0.00274607325217404,0.0087684639069669,0.0122796364227923,0.0107455961874819,-0.00409669582074713,0.00426043753671192,0.0039026994093619,-0.00264063047792548,-0.00688472277519331,-0.00599883060198485,-0.00777344894859216,-0.0191748263878822,-0.0121513527345202,-0.00634309753937277,-0.0136194200935392,-0.0100986292801451,-0.00920460727246954,-0.00835253014454409,-0.00673489369789307,-0.00596409248474028,-0.0044875484653159,-0.00790264150988173,-0.014265211332923,-0.0144337939566212,-0.0109874035735755,0.00339263863905041,0.00566204800167478,-0.00418504129112047,0.00934700508473029,0.00476340690631159,0.009128803006389,0.0126809922639748,0.0124087705361167,0.0219906434621447,0.0108445543145824,-0.000480192273860191,-0.00546725866212322,-0.00539749648896889,-0.000735477453750189,-0.0144892439288163,-0.00532537845608401,-0.00549157682644014,-0.0123875159641451,-0.00874507530936537,-0.00614092795960856,-0.00610291797486553,-0.0063818810144895,-0.009564341802099,-0.00319202054059675,-0.00403212453648933,-0.00818294055669393,-0.00376095716842629,0.000132072159885032,0.0176936384443822,-0.0016529767647807,0.00320589388491264,0.00955639419058429,0.0034678095187676,-0.000270314837762135,0.00683462930013278,0.00924507428488638,0.00632286816142134,0.000793097910438246,-0.00652901921929186,-0.00844743267336649,-0.0125195919539755,-0.00443893356017991,-0.00349362924360069,0.0038563284103358,-0.00783164337152505,-0.0142831553719653,-0.00961281743086802,-0.00673782450948617,-0.00914122829412645,-0.0103687394344263,-0.00751415835919529,-0.00222680155286554,-0.0058672276166609,-0.00125771823928844,-0.0105332786019874,-0.000259798854413155,-0.00275348089769778,-0.0028583236328401,0.00297476862661788,0.0105629634929889,0.00590462784260017,0.000399584550227694,0.00800767459995409,0.0051788281149762,-0.00347854300131756,-0.00753478198257856,-0.00156103127472245,-0.00873715173767978,-0.0106574897751703,-0.00212567662033754,-0.00256767051636887,0.0164100915122179,0.0032383379790439,-0.00653915760236129,-0.0100864588098051,-0.00736272475230414,-0.00691962706538365,-0.00731304527079537,-0.00765200874843521,-0.00534727093021736,-0.00294164726702496,-0.00469736395786818,-0.00221992362705414,-0.00188910829136065,-0.00496376371356926,-0.00146892543496942,0.000803536137098106,-0.00149608700963386,-0.00791872598005604,0.00143169494093184,-0.00792324981740657,-0.00652874990188543,-0.00610227390884868,-0.000820821286381066,-0.00719071569202442,-0.0102131608760444,-0.00801382668098191,-0.000415058499349263,0.00620633523945453,0.00764318253972771,0.000947664008211229,-0.00826768481209588,-0.00842952305120017,-0.00984894125064074,-0.00966383598365218,-0.0069114762075517,-0.00589625666055924,-0.00695449545566755,-0.00638888449832162,-0.00373978667940788,-0.00339494840537515,-0.00444406071363983,-0.00162238145002567,-0.00627099053693749,-0.00502978731126485,-0.00187497285143556,-0.00446012195471771,-0.00227981199987148,-0.00809652438501674,0.0111714249852673,0.00124231490625345,-0.00503468829220131,-0.0078522938525091,-0.00988179953688215,-0.00558582208887977,-0.00154515950526201,0.00268121994209919,-0.0102367387301305,-0.000302796675325435,-0.0026809716014101,-0.00841822056299928,-0.00838733554734565,-0.0095201156739867,-0.00799225720640702,-0.00621267124127628,-0.00893032348576268,-0.000110396408013953,-0.00260803825627844,1.01940783212526E-05,-0.000320383373030303,-0.00455194157663906,-0.0061215477457125,-0.0108932180235423,-0.0129972984379177,-0.00926022727705921,0.000456509743556192,0.0102178047663316,0.0194933466210741,0.00224520914764473,-0.0113905876032575,-0.00881839092773403,-0.00537060590300541,-0.0113691517817475,-0.00487966651954401,-0.00475570067015668,-0.0133820876192698,-0.0135240155323901,-0.00874782834839496,-0.00621298044185288,-0.00760000540527683,-0.00574178743373617,-0.0058516663683753,-0.00947794161820489,-0.0100004488320746,-0.000816790505266465,-0.0120268305633944,-0.00943462564777392,-0.0113509747461553,-0.011491150884561,-0.0203674908248421,-0.0314805731095502,-0.016218655211552,-0.0151487334219448,0.00399691232362235,0.0111526847661575,0.0154208606249396,-0.00434016245151971,-0.00157674749376691,-0.000923859626699817,-0.00430194572636891,-0.00661668212481405,-0.00959299286425125,-0.00894784019075305,-0.0224445918187863,-0.0216845006603517,-0.00637519534850809,-0.00672634460652794,-0.00716089242789785,-0.00830107148606019,-0.0070722077098488,-0.00788607889940864,-0.00553657469972567,-0.00109677050546179,-0.0196012964099141,-0.0250434258331169,-0.0203175716669648,-0.0211121064176885,-0.0264452182893638,-0.0359093343181134,-0.0297671175736998,-0.00989081003277626,-0.00154285700111181,0.00944163686245228,0.00621395576262931,-0.00201371727407982,0.00554952977030104,0.00115046930493023,-0.0173500594475917,-0.0238679526515875,-0.0265486079360835,-0.015574714750712,-0.0248537613958491,-0.0273289261342623,-0.010342426550284,-0.00903963029454445,-0.00915064677403529,-0.00773637982177856,-0.0070590145585672,-0.00675882287347913,-0.00750477138633567,-0.0105784054383461,-0.0307930090253833,-0.035007662356046,-0.0235516272699683,-0.0291133591307496,-0.0312754396777336,-0.0335180608375849,-0.023172335309158,-0.0137423096226708,-0.00343653315794204,0.000209229784729707,-0.00391023372451027,-0.00041856931147974,-0.00723795870925321,-0.0189812491511801,-0.0265080674521741,-0.0358263742123117,-0.03095571147887,-0.020752054407746,-0.0222401903528586,-0.0236866348783051,-0.0127408609029789,-0.0120003313651431,-0.00906783794118457,-0.00573554348005778,-0.0082793702875348,-0.00726828303161,-0.00883632191544525,-0.0177802206613962,-0.0331253698331761,-0.0255959926641176,-0.0168491465823088,-0.0214078043094935,-0.0250912367515995,-0.0197551272203026,-0.0113300181964184,-0.00413431757816562,-0.00560946420866386,-0.010026298799833,-0.00255404437882277,-0.000795394670835522,-0.00898940905004174,-0.0291716431892914,-0.026705289367364,-0.0285031314752982,-0.0183141122973115,-0.017638569219591,-0.0181988791595337,-0.0152171170316824,-0.0135397025745438,-0.00805238207657662,-0.00596596226500864,-0.00798763588978673,-0.00848853193839456,-0.00919275011640487,-0.0142966202144524,-0.0259040519711317,-0.0232389308299904,-0.0139909057010112,-0.0200215208688851,-0.00270955166135939,-0.00716904592751602,-0.0044571577167026,0.0054741084728027,-0.000503656861338055,-0.00869341230737933,-0.00942968294807382,-0.00697259243893712,-0.0169596919668389,-0.00975909149713767,-0.0224012626129822,-0.0203991895832538,-0.0205191660372557,-0.0108206583293706,-0.0153006943765457,-0.0180225118566228,-0.0136539132622805,-0.0128104704655877,-0.0115206449683114,-0.00867551183632044,-0.00647433140374799,-0.00913859693004175,-0.00701070451922017,-0.0201261615070907,-0.0318197172735098,-0.0130457061796045,-0.0067852927928206,0.000307873985431369,-0.000707383523964378,-0.00146594004583087,0.000522509114066303,0.00509201642378536,0.00118590405313168,-0.00269339085095052,-0.00244456097562771,-0.00858886852066939,-0.0160072130437486,-0.016145647774024,-0.0208892864808344,-0.0187425301147247,-0.017124115987145,-0.0102736672536697,-0.00953362337109954,-0.0140490121552781,-0.0118171540401118,-0.0136884195740475,-0.00832302741450701,-0.00770289226140533,-0.00879351493855133,-0.00714807585496293,-0.00912741793453037,-0.0165782150731113,-0.0327644612986035,-0.0164123370990195,-0.00348858809460296,0.00198831071685179,0.000814544737016779,-0.00692491008427855,-0.00591519017723763,-0.00182985259440352,-0.0103021427456098,-0.00910353794766528,-0.0116393080015909,-0.0177856921753333,-0.0173090250131598,-0.0148075470050385,-0.0180309299321066,-0.017805767273266,-0.0054123074320747,0.00156807174541827,0.00412224315515308,-0.00149389906617951,-0.0174666982016644,-0.0116656741341091,-0.00579702523799524,-0.00607490868509197,-0.00635333158401129,-0.00645962381066091,-0.00912608540298664,-0.0135437298301616,-0.0259433340578392,-0.0175176726512307,-0.00500846441722064,0.00109044783245051,-0.00984379785200854,-0.0151605534057255,-0.0182455914266771,-0.0212252827430315,-0.0249573140215033,-0.0233068083260176,-0.0276732278122195,-0.0235949929346468,-0.0174641917749752,-0.0162351305680677,-0.0145087272065019,-0.0109912241201179,-8.39356490278665E-05,-0.00309638434574071,0.00315171139210522,-0.0036828331502224,-0.0126200504970687,-0.00770287818201859,-0.00439009491262876,-0.00804536192735147,-0.00640233312025558,-0.00561226175057814,-0.00965641190930421,-0.0167600164975522,-0.0167112416759996,-0.0159527287134316,-0.00856089078378499,0.00144405523693235,0.000307266735319599,-0.0080381545552975,-0.00887261634814634,-0.0145847048759429,-0.0156904218906444,-0.0138923886598304,-0.0183835027644138,-0.01819899925506,-0.0151280212823525,-0.00753301777001925,-0.0136004139581594,0.00116720838731959,-0.0019540245437499,-0.00036208512710362,0.00733309887362666,-0.0106701597752546,-0.009658320789682,-0.0124612038274267,-0.00791663726209115,-0.00756806251734644,-0.00568434171629016,-0.0089125099144807,-0.00890459027940907,-0.0104911792602145,-0.0134873927240948,-0.00735367478095283,-0.00766955061773009,-0.00355805283550689,0.0116093388164899,0.00745182924200968,-0.000948529477439071,-0.0052378589165301,-0.0057097481026708,-0.0109150645212644,-0.00927787431161649,-0.00849071940413364,-0.00933762578403435,-0.0117208071079675,0.00140212475815108,0.00308107872727484,-0.000277160880160559,-0.00235997377419778,-0.00699752962034094,-0.0111619285602588,-0.0114241420840349,-0.0105226170332651,-0.00642528384591719,-0.00719858769176184,-0.00966669464950208,-0.00759391557653001,-0.00858471038006878,-0.00868636990850176,-0.0114206811856845,-0.0126194083234285,-0.00371364648976119,-0.00990989629431418,-0.00700052824216117,0.000891684598253239,0.000285165098967492,-0.0021794771499179,0.00162115572945816,-0.00077042702369494,0.0061929998258693,-0.00566894359609825,-0.00381037528162364,-0.00121365643522649,0.000862198974619337,0.0030441394980109,0.00561824849938512,0.00234692868846341,-0.00432449687635726,-0.00608286437351909,-0.0109967813233625,-0.00618156136129384,-0.00815341023356099,-0.00839735231053661,-0.00827985660263816,-0.0062231098835129,-0.00979350351699188,-0.00704878600436112,-0.0135106257788349,-0.0114251195950625,-0.0202834531157819,-0.0034573250311626,-0.000873583997028412,-0.000444678696490016,-0.00366262986053749,0.00245982414199797,0.000311292961104318,0.000788079538643547,-0.000232091231008419,0.00538556225387812,0.00963341205000201,-5.83425678037365E-06,0.00584193706997404,0.0110497679125558,0.00515172211882971,-0.00466480485247773,-0.00190238120660025,-0.00777084352944629,-0.00905154145104697,-0.00607488045393766,-0.00975476087486272,-0.00978296755708942,-0.00720970552336994,-0.00887943952411698,-0.00560864913798997,-0.00895015978716089,-0.00924977366219957,-0.00662359910529768,0.00302370310244585,0.0133860470116184,0.0193824495264418,0.0254840414242347,0.0272253773293763,0.0222147598479352,0.0283969590776064,0.0235764485193804,0.0180452694493248,0.0230519160381087,0.0214694946100455,0.0156489614957146,0.0119322931316894,0.0102620689926043,0.0039913693435219,0.000312597575540198,-0.00431511111656915,-0.00427865754750406,-0.0055464066776409,-0.00611939725562448,-0.00646760022348356,-0.00781319077174255,-0.00700673762365656,-0.00633247880873937,-0.00552916107568958,-0.00918662292885342,-0.00597971471757859,-0.00505854759409229,0.00297431022010363,0.00840600582497352,0.00947991746520356,0.00625476274208094,0.00983585083805969,0.00901809746296475,0.00902498113907244,0.00893090722521087,0.00795091819830232,0.00804620223276627,0.00513709847976573,-9.83589236146382E-05,-0.0018082733664515,-0.0020202518646979,-0.00575511716349683,-0.0055924971178278,-0.00942692376363929,-0.00577785564675041,-0.00889487583515977,-0.00710815952273514,-0.00774026010221825,-0.00867817963595697,-0.00670283192504444,-0.00785943798946909,-0.00916645248375559,-0.00605766643571819,-0.00867873509997499,-0.00899594533178682,-0.00616176696500644,-0.007854944525642,-0.00770668418531053,-0.00640455466579862,-0.00518295262212994,-0.00469641039870621,-0.00799616007104706,-0.00517828029832846,-0.00363825583503714,-0.00557838253495048,-0.00598477434783564,-0.00815184261821568,-0.00846709132689099,-0.00773385637644425,-0.00874746318821102,-0.00801248792191155,-0.0071875991322652,-0.00906866193785151,-0.00806864101711604,-0.00787463287179389,-0.0087947660339185,-0.00581897277067738,0.00345738881998164,0.00778234755357872,0.00940148958568232,0.00939307609232654,0.00964548869615591,0.00546695776092257,0.00800558435292215,0.00619944806044743,0.00839891807818571,0.00726142276250964,0.00604071196268596,0.00959914053120809,0.00908530326486631,0.00618227991893643,0.00803768256943507,0.00852925172542325,0.00674934770287658,0.00903599203226615,0.00617536490825237,0.00805328423639863,0.00569569471012742,0.00909865294412028,0.00860181609207346,0.00904228896098877,0.007583634857267,0.00710438427552291,0.00917111009736291,0.00654328088858475,0.00653591228152779,0.00654793208594588,0.00585053361348618,0.00720455898544171,0.00634831938381612,0.00905348777155765,0.0055184788359603,0.00622130970713588,0.00901530534486881,0.00607370889664986,0.00917627015897761,0.00639774150248727,0.00860480503721221,0.00754431275616467,0.0091414298308022,0.0106183680620919,0.0111335684230934,0.00833949753679722,0.00865385602332466,0.00941691087000378,0.00697259320699754,0.0069803240163967,0.00952813749858717,0.00784189434359614,0.00823998317526186,0.00874602479779969,0.00820616013938078,0.00641930501513944,0.00576047618541063,0.00614346477256326,0.00927366261355044,0.0074431508967122,0.00810109056274031,0.00951413263282804,0.00837478896604473,0.00612241795631133,0.00820195544827134,0.00595433290611651,0.00599539580561069,0.00251033003728347,0.00602962462941601,0.00751520591237243,0.0064589659542639,0.00293624805767565,0.00918402832501681,0.011225253155922,0.0075318251243182,0.00688802277412777,0.00350219122914681,0.00320601853431092,0.0095493219539266,0.00690455498255913,0.00810023012895011,0.00895375149826746,0.00647789389312144,0.00628405196110361,0.00760536478339165,0.00902508676335737,0.00952221398847886,0.00892796304110543,0.0076472388931258,0.0059140983143781,0.00790316002164791,0.00532348376306936,0.00564117857722664,0.00800614357349856,0.00460792324124976,0.00907685718611624,0.0141918356981247,0.0158677603659975,0.0139648920717222,0.0151629366853267,0.013823418358553,0.0214365773734059,0.0285951458210162,0.0299570227409583,0.0206107746885634,0.0143087761250928,0.0125357807553534,0.00651147494856549,0.00189103951191161,0.00623371090802201,0.0082345318337895,0.00686248815080131,0.00944168144743083,0.00814752321575439,0.00960299933223195,0.00762031435445258,0.00671987093376937,0.00819808347878318,0.0109402333103293,0.0117246183207131,0.00749695614603341,0.00851443126569828,0.0158848957459864,0.0132922623429182,0.0150086070984317,0.0138399394117558,0.0104589878682446,0.00918722611994899,0.0034351844984456,0.00913826627169674,0.014231487751684,0.00854579090361164,0.00896141328857156,0.00455953673164329,0.00375666127201857,0.00873961535572859,-0.000391517315467086,0.00265931339245918,0.00535102772953813,0.00999846800390332,0.00915721061916271,0.00744246674974532,0.00762825950516825,0.0062420992394529,0.00945802781001259,0.011051154300072,0.00714119694540628,0.00995226226315232,0.00900241745975883,0.0141185249772527,0.0190824340975738,0.0148813591086252,0.00620422282054158,0.00665812513530578,0.0016374878400057,0.00153778773652004,0.0131594802878246,0.0171455903634905,0.0231752987400519,0.014655643848679,0.00369129543144165,0.00382047282099463,0.0122091487789319,0.0109720829632515,0.00224661008196383,0.00903928289687966,0.0103598381954096,0.00811691881287366,0.00618106426347654,0.00677739748778873,0.00786510715853168,0.00681741410413172,0.0111390690864578,0.0101934443213465,0.0136244270360153,0.0131504589276123,0.00878237910246625,0.0157603560800483,0.00245178836678242,0.00503860824929551,0.0018008634327744,-0.00320080409912796,-0.00929641066985419,-0.00504902182169162,0.00469850880515667,0.0052443654628732,-0.00220347248774309,0.00456953608854408,0.0057196794094407,0.00149431130983208,0.00992788714657425,0.0167860560098465,0.015585148213012,0.00553346990764222,0.00944113036973517,0.00993463511103931,0.00486340976315215,0.0092697416382971,0.00774615015850322,0.0071805202335857,0.00877956843426516,0.0139418210770164,0.0183370491456617,0.011797270987787,0.00898162238337226,-0.00665116021502349,0.00642940421412841,0.00897220356234604,-0.00176924088714433,-0.00202005764157421,-0.00612422775413219,-0.00717213991379007,-0.00928033513228506,-0.0165580557454138,-0.0105112060152225,0.00349084642375454,0.0100284779805363,0.00810759396354367,-0.000140751333759093,0.0150604471331519,0.00610894075394115,0.00459369713633932,0.0059667258201647,0.00678493231677527,0.00727806881800772,0.00826504279914954,0.0071948530200402,0.0100673293249644,0.00940972553151531,0.0165545063746063,0.0233258839184265,0.00910875312474594,0.00446743664508183,-0.0170783812651278,-0.000942989105518696,0.00484530992922226,-0.00846689441603538,-0.0056024950099585,-0.000738395075970468,-0.0037967094597553,-0.0096922765966518,-0.00791646458860605,0.00150372082934192,0.00863133708722384,0.0126617540965553,0.0107521131748735,0.0043044760182312,-0.000521614070484797,-0.000679713859099502,0.00982606591055372,0.0146085799521581,0.010107996657377,0.00818906484230236,0.00863115784401806,0.00776342536256474,0.0112126383540082,0.011458498361034,0.0170389202541144,0.0118660010634943,0.0109365470303952,0.00247064037544552,-0.0041050629914501,0.0025988854842087,-0.0023880053134386,-0.00873703355348398,-0.00852369886129108,-0.00470603182854782,-0.00448434854831934,-0.00132054148475779,0.00249797161585436,0.00986141146905139,0.00272053490169606,0.0101583369194346,0.0169695201781702,0.00609187457758075,0.00105245444338901,-0.00541726017915747,0.00123443379541873,0.00830416745054218,0.0118526265965351,0.00936607286346515,0.00750928090342095,0.00597722039208016,0.0109262981268572,0.00921079240542232,0.0147494103976891,0.00520167001405113,0.00679694906047705,0.00175569349757076,0.00243966837615372,0.00431118282015482,-0.00067025066397893,0.00266704203277964,0.00408024442141113,-0.000186258696924494,0.00671365389787593,0.0103890916579089,0.00609108463540703,0.00354305761255254,0.0112495529854238,0.0163573664377337,0.00887874013269136,0.00208792489953599,-0.00368093060436407,-0.00206318154591436,0.00447958926723063,0.00469399976710957,0.00403116971074671,0.00886852700447199,0.00829088874238989,0.00670003145582149,0.00783750335768382,0.0108567796507197,0.00778590449437953,-0.0018651453709745,-0.000451263442191444,0.00540619653069413,0.00118130433744992,0.00357468144507187,0.00524766201387637,0.00790921403982675,0.00602259752138592,0.000321010819839698,0.00626998816618543,-0.00750294877601128,0.00217273604057737,0.00734829847787375,0.0130349545395837,0.00753910884140722,0.00599715089301398,-0.000263156516975311,-0.000995823668001682,0.00538433742908901,0.00403887076627876,0.00274462777784912,0.00506673704369487,0.00728258002426349,0.00693183136322371,0.00611246525077209,0.00556511817572934,0.011666297495643,0.00374154337908338,-0.00221277898982885,-0.000509430001260339,0.000954574347596852,-0.00270447204193644,0.00448345589261514,0.00855160503917158,0.00510201685112044,0.0122390989905043,0.0027880299728197,-0.00845464181221707,-0.0173959384739117,0.00136770479427778,0.00899794177484508,0.0124973890866902,0.00679998309330124,0.0149022430475556,0.00416173259312991,0.00656337183668854,0.0103826987779888,0.0115742648517549,0.00656244800216853,0.00538445573302736,0.00793831453403427,0.00767128040134942,0.00686227595813841,0.00603389739914949,0.0120165922730774,-0.000705103660933488,0.00818580199289381,0.00694132698507641,0.00905390636024132,0.00672393937474594,0.0179161136095711,0.0197528400445472,0.0206270205044828,0.0223436430793308,0.00194717900338005,-0.0155207873322801,-0.0131101194813801,0.00638811933496306,8.24161730304787E-05,-0.00338742656221223,0.00646931470218878,0.00895797332174352,0.0112183330808246,0.00743759179484414,0.0226836961314016,0.0207839439337594,0.00557328434995258,0.00629695913000937,0.00671645316720283,0.00694607432945058,0.00700915192030158,0.00564199436135505,0.00527100449748512,0.00218953036299943,0.0162774905858263,0.0181820784095072,0.0202957321181379,0.024001553343438,0.022710294504638,0.0389231163832287,0.030093472286075,0.0174637504957489,0.0021373177452237,-0.00913139758191853,0.00158051511564652,0.00417763561385472,-0.00351141277648175,0.00233162686122855,0.0206799405194528,0.0299087967703862,0.0297511740912685,0.0191605875725593,0.0235275173349057,0.0290382285584255,0.0144295219184733,0.0090852313451126,0.00870046200185479,0.00847069271419564,0.00803577752125078,0.00754570986911229,0.0117156898959117,0.0142304589784677,0.0288229309221055,0.0368365330274162,0.0238651535342426,0.0338892058145903,0.0369878125638067,0.0423260369779567,0.0246206530045941,0.0120595908948959,0.00696943282666221,0.00137565504174867,0.00655664749858937,0.00113479950918921,0.00594004480201428,0.0175155455011389,0.0304752355185518,0.0329320349368175,0.0339070884496112,0.0256468494691574,0.028010325738157,0.024423318593198,0.010867708081135,0.00832868676125277,0.00839717854837011,0.00608809592585362,0.00944885842811358,0.00882848155645847,0.0113083967618809,0.0224403491657986,0.0380005809468631,0.0316415217550394,0.0275279502306778,0.0258956335462919,0.0293963925294105,0.0249908265839763,0.0126786514543123,0.00659387327539414,0.011421864606809,0.0100510257468578,0.00993022734463294,0.00463107921051856,0.0115606269369849,0.0305580498586442,0.0297223696916842,0.0319814815235822,0.0235692647242917,0.0215371390475301,0.0244756073433044,0.0259585227191532,0.0104991935732277,0.00924511448441698,0.00776232537770205,0.00551652900681706,0.00772266506158465,0.00682204809433488,0.0167080672249714,0.0329753985626716,0.0348478282012026,0.0257707370881739,0.0205222706446042,0.0092019028683365,0.00834664193249628,0.00159655204843976,-0.00407661449098877,3.60153299823999E-05,0.00988335300585311,0.00959297163395838,0.0109639856950051,0.0144716655771767,0.0139793530553522,0.02766562855589,0.0241999143900777,0.0214858107741921,0.0129974963759469,0.0163775652003083,0.0164225946450912,0.0184470158705658,0.0101053917042008,0.00872551167546557,0.00999054747169502,0.00814638590140815,0.00901020382003442,0.00684079726414462,0.0201539692524855,0.0338836102243568,0.0242096889800937,0.0152635446720326,0.00390569852680604,-0.00105977719270938,0.00254508241636123,-0.00358883977108396,-0.00378201176990898,-0.00533028881806975,0.00586556767571711,0.00804136421298008,0.0138703249044069,0.015231560101187,0.0162846182298195,0.0228042657462895,0.0190789771256985,0.0194106000468215,0.0133850447886798,0.0108924147057077,0.0162934082801398,0.0178846019044553,0.0131514644039565,0.00758515306555985,0.00983756532457688,0.00676084003144405,0.00836979422543255,0.00772706805816447,0.0176941128152234,0.0292406794109029,0.0232951029839991,0.00486886688721524,0.00347244782244684,0.00462851842556532,0.00721920263103382,0.00682444956452537,0.00549319454970464,0.00788295491204785,0.0105744812457844,0.0112540351522511,0.01811989920311,0.0196706807871666,0.0223249249393982,0.0167147011671185,0.0163969123285405,0.00865581749458964,0.00488503971273629,0.00128315865653516,0.00572571948501709,0.0166733809937844,0.0138372829283725,0.00878387079859389,0.00562465001040555,0.00938292451260392,0.00949007026925187,0.00672553896009712,0.0180284176199817,0.0272162426297365,0.0272191699514261,0.00204491003586479,-0.000527145022462223,0.0105986877879989,0.0150703749991494,0.018467980012396,0.0221512080071568,0.0187496394308048,0.022204566876706,0.0239543754785481,0.0211741959736981,0.0167348136231125,0.0178900141440956,0.0188678881888746,0.0137166926027232,-0.00112451601408075,0.00113735100943072,0.00142281665021292,0.0116250653824474,0.0123158766201883,0.00587848591142866,0.00485894841043003,0.00827119363626281,0.0055812396800128,0.00830521412871446,0.00822095486296224,0.0147814278726818,0.0198517828147897,0.0199057384701672,0.0196139895157737,-0.000212916425787143,-0.000778115528812233,0.00859890914896629,0.0116510900609697,0.016146975456454,0.0117842970565824,0.0153199495628,0.0106029237364769,0.0151985219220822,0.0146760473983179,0.00895213139495499,0.0135238528984298,0.000226530814813227,0.00148585138576489,-0.00277187003944532,-0.00197014453302831,0.0129446599611289,0.0138064176209162,0.00915379530371944,0.00732737470070823,0.00677670234747655,0.00628386761461837,0.00774984184230062,0.0107549891508888,0.0131679177040119,0.0126484384926457,0.0115509258843395,0.0056705966424945,0.00743720080452102,-0.00423871020577288,-0.00393574809318459,-0.000970932194787696,0.00588602270095187,0.00556184019066152,0.0116241027922274,0.00874329603444047,0.00927145627439245,0.00375002856380887,0.00816270264898267,-0.00278118353582548,-0.00299143852469325,-0.00471005546086652,-0.00657244539414568,0.0050549319990136,0.012381138143713,0.0116166523485708,0.0102982952931587,0.00815383677194166,0.00669621701012077,0.00609584965388986,0.00566077290647393,0.0107963141683022,0.00875104766054714,0.0131130209069891,0.0130999796895435,0.00406320548577275,0.0136769238641796,0.00421173992856102,-0.0067421925040517,-0.00271449481436053,-0.00195455253626436,-0.00386151155008142,0.00186644799466664,-0.00666477657496474,0.00235404184752731,-0.00122935869368932,0.0017466890335074,-0.00222235061393652,-0.00279004613750996,-0.00595435958257817,-0.003104435309042,0.00428908337168167,0.00977770545380995,0.0103548938127861,0.00994801912411721,0.00601437356424573,0.0054189996449379,0.00722487623583309,0.00848213445838457,0.00703826105262296,0.00868304461148611,0.0154444929277556,0.0188929530576214,0.0246881893530525,0.0149904323626083,0.0197382810085463,0.0119934720326596,0.01095135138994,0.000880993567065306,-0.000742561773690061,0.00774606544666109,0.00291445240722057,-0.0012597673525021,-0.00563643253727064,-0.00640324024052481,-0.0105553633224772,-0.00726244125870096,-0.00447622102756379,0.00105229480050056,0.00485379881452255,0.0066299846879747,0.0102745127638585,0.00617027176380127,0.00741200291807907,0.00753149946244861,0.00692302077142825,0.00548832962455267,0.00863778772594459,0.00875098396307574,0.00941224472285981,0.0112758105069333,0.00930638797750733,0.00120425067536045,-0.00987064091433058,-0.016578848388896,-0.0141760762695593,-0.0111989326496095,-0.0156421755403843,-0.00847112831827768,-0.0116395437649332,-0.0137753243886336,-0.0149819513437552,-0.01353050330744,-0.0113972797570099,-0.00776246206586716,-0.00346148045101794,-0.00382550377429392,0.00267991091927594,0.00559662789004555,0.0070001113141294,0.00763399285571323,0.00811499849530246,0.00606018943507207,0.00962280944641614,0.00762348943441681,0.00915936229439681,0.00584031980912477,0.00728272666122435,0.0067290370366293,0.00685043556738244,0.00617418009046376,0.00381700801884321,-0.002598408429535,-0.00759663584507681,-0.000480228098398134,-0.00798076205666023,-0.00214560285399959,-0.00204693692106167,-0.00108499118220359,0.00177082879974766,0.00405967811693758,0.00121517496908367,-0.00118671966583808,0.0060047998510186,0.00491378451429489,0.00641140880570353,0.00806771158850919,0.00674313391762893,0.00623520669470452,0.00969780555730004,0.00780757332544301,0.00805728593136485,0.00753271388041109,0.00695624945382215,0.00968216377275336,0.00951288404463296,0.00765427809476125,0.00759666761757129,0.00607461690532952,0.00416883436549479,0.00703115245019968,0.006065705323748,0.00594165723057173,0.00352190529008918,0.00699365412639342,0.00847811053714525,0.0113261787299415,0.0105783380939024,0.00701282308930297,0.00597957732396067,0.00777073291359375,0.00592390087345207,0.00516993302665918,0.00716672515613731,0.00602972754395432,0.00670241398129061,0.00621027612286382,0.00623254658393747,0.00778908376140055,-0.0112140187948839,0.0483544029170303,0.0474546444060732,0.0457967458927205,0.0476107006696523,0.0453129845323575,0.0460796811494076,0.0492105158956052,0.0452637105409234,0.0478704442134655,0.0469971699860815,0.0472457727095822,0.0490957679561542,0.045482918133132,0.0469207026608779,0.0489259596626444,0.049531792031388,0.0461389751183082,0.0468280963651017,0.0473787016731018,0.0473395898401447,0.0490618965437023,0.0490202005009722,0.0471610155111187,0.0495518182276646,0.0456904324158708,0.0482376692590626,0.04712204812039,0.0472332619462314,0.0466922468588148,0.0492202789738383,0.047624948285885,0.0454516240284923,0.0460927102696672,0.0454772274237221,0.0479351107493423,0.0484178169513597,0.0460597221765016,0.0460573197250799,0.0483986860441381,0.049929082745975,0.0458179104593208,0.04933047655019,0.0470235999343097,0.0496753053896375,0.0479719488005768,0.0469410537305205,0.045842437988968,0.0461931578806738,0.0479279576346342,0.0474691405143316,0.0481877532081905,0.0460242418635608,0.0458694993333877,0.0473516340272389,0.0491198469994759,0.0478681080967274,0.0484722820340489,0.0486403765456821,0.045469800139196,0.0475961817546118,0.0476799589888279,0.0459970829225603,0.0466026112073441,0.0469944143172698,0.0478278823900167,0.0550877586576234,0.0581018931136735,0.0581986746242273,0.0563124493762687,0.0631098128439536,0.063104175036381,0.0577037390117006,0.0558475992024859,0.0567271340595541,0.0524895504664355,0.0546525672686601,0.0543917401530646,0.0475466554550559,0.0479666656412287,0.046448697326348,0.0491467005678766,0.0482300726099785,0.0476894822113193,0.0477187210336192,0.0491793636314561,0.0472967552629572,0.0461658955051937,0.0464667178559566,0.0459857073453684,0.0483624707742458,0.0468428659585742,0.0471743633419572,0.0465667639335562,0.050162230726977,0.0508919988738455,0.0462911327509788,0.0439185855031089,0.0413028608800666,0.044467831215497,0.0457190898111455,0.0451026890690314,0.0555205461994067,0.0581658815164952,0.0622727190577528,0.0577807806593077,0.0515692510531884,0.0535030532068464,0.054855622728523,0.0505598643064175,0.0457180258242715,0.0467107356227365,0.0453024523828965,0.0473214079498589,0.0482029276933937,0.045977624374865,0.0482504862328048,0.047708176991698,0.0454327947395356,0.0399738192699267,0.0323944088192951,0.0291000678811872,0.0265620403011234,0.0310786915994946,0.0283507789417901,0.0336407219514994,0.0385634140524667,0.0417146391232856,0.0307634449951517,0.0304777752063821,0.0312397850246186,0.051347901053275,0.0646307085430669,0.0753537612542726,0.0666425413900082,0.0632446017958543,0.0637846036744572,0.0480799537266933,0.0454068364321801,0.0464525412060116,0.0494319888154738,0.0482253387501565,0.0469866226654747,0.0471341907419528,0.0491418581347716,0.0474073882521852,0.0485210139880196,0.0328780324900563,0.024793907554283,0.0226233432599475,0.0259759114488433,0.0308587930109588,0.0476562319455859,0.0712512960622136,0.0800848595385966,0.0838614235029041,0.0792865773709345,0.0786795538481967,0.0782159657954705,0.081821406359895,0.0770623867722517,0.0635423458184405,0.0516672208570159,0.0486083977010982,0.054277660464113,0.0514786257848208,0.0503267214883042,0.0497748749656587,0.0488075572103126,0.0471550086550725,0.0459302180145309,0.0454476998491185,0.0462268548160973,0.0440319067730966,0.0391586949161433,0.0238926889240784,0.0154815936818248,0.0104486278580909,0.0208197857158228,0.0237487664630938,0.0488334112676261,0.0688230214147227,0.0851111211812251,0.101501170650477,0.112601216499499,0.102145215432946,0.10354097045775,0.102279090929787,0.0837486807441922,0.0636682012807693,0.0366241996079056,0.0200996662460607,0.0343243352693246,0.0549461376521418,0.0514446340838187,0.0499791021838825,0.0495682691789039,0.0463748925439273,0.0468878535818517,0.0445192285741254,0.040733716383168,0.0248396762918325,0.00627108128979889,-0.0203885366146294,-0.0402717491827877,-0.0403970779311137,-0.0442383322627075,-0.040475502992234,-0.0267944769500872,-0.0179956062014018,-0.000116999025355334,0.00714615719450882,0.0129394774745092,0.00877397325090639,0.00400766102798775,-0.000520785551723923,-0.00777456569994166,-0.0132245166267241,0.000204263373690084,-0.0054843603021784,0.0244025855447837,0.0440427157187557,0.0451885495026658,0.0485119790751551,0.0491324645772822,0.0488692550504106,0.0473868252658832,0.0459335313829777,0.0326599723459096,0.010973821556234,-0.0185342089334739,-0.0547691832215629,-0.071927063322874,-0.0887856043377965,-0.0933543393839008,-0.0940593730897993,-0.081630717435986,-0.0792136553230124,-0.0792929018364223,-0.0833141509807504,-0.0845873980431881,-0.0777087762074066,-0.0773491072926955,-0.0671022818401508,-0.0681622703058069,-0.0510853223246347,-0.0134021337215764,-0.00416677064176947,0.0158530321518718,0.0379543936488223,0.0449191891528852,0.0483807174176834,0.049362418285258,0.048533226172388,0.0448637588446764,0.0413773379081292,0.0163613665918662,-0.00944114527594053,-0.0370135336407002,-0.0728183496156074,-0.0829666928350216,-0.0964403829098669,-0.0916642898109803,-0.0890629712371208,-0.0846320538398633,-0.0915373402933493,-0.0978475153076208,-0.109757103651889,-0.105570298463743,-0.100239442924976,-0.086314303658117,-0.0811506752098068,-0.07568228685853,-0.0497585527600435,0.00203050099785427,0.00735832050496617,0.0193447679607129,0.0388148969306858,0.0487841376922257,0.0447181972922493,0.0462703874489732,0.0483734379458468,0.0438809471607555,0.0376378051824742,0.0160597991409903,-0.00821799203757945,-0.0248168070944304,-0.0452941697498402,-0.043581710482643,-0.0317689486588182,-0.0319020600059522,-0.0323215666298214,-0.0435999864172017,-0.0501459508958773,-0.0555622019129713,-0.048277324999718,-0.0312102680669539,-0.0388150731801343,-0.0713111276091069,-0.0901272272417303,-0.0787057590738047,-0.0425946882122826,0.0206912422645517,0.0265864858114671,0.0371924114934419,0.0386672827997541,0.0467466555581474,0.0486253079293144,0.0470276828282789,0.0485815346330985,0.0431614554655562,0.0394580317287526,0.0238384429317944,0.013574119836849,0.0138535794015159,0.0237278404475105,0.0343145555757043,0.0426419665416833,0.0372478927616915,0.0376258348479023,0.0236080683534691,0.016770295198157,0.0317838801746817,0.0689052361569786,0.0828843589155974,0.0153083301217663,-0.0498073023864672,-0.0795218896787161,-0.0609588891375476,-0.0286684310832624,0.034157303066618,0.0378326083882094,0.0511030349163262,0.0457112133637706,0.0494519562281691,0.0497477566888803,0.0492784691087218,0.0482840745228359,0.0463443523538826,0.0438614025765712,0.0373868404971338,0.0381000748618083,0.0588330256417304,0.0733331789075823,0.0913255489208286,0.0928672634400519,0.0884836461581143,0.0936946006952885,0.0878067913477699,0.0939814361080549,0.129136341684601,0.161026904379642,0.136508588782821,0.033239884261443,-0.0451324161602306,-0.0707667017552142,-0.0461124190227842,0.00391229191111084,0.0445539775054745,0.0520456369311701,0.0648349519270461,0.0511247153361916,0.048866336991621,0.0463850030415533,0.0471705412684785,0.0452720876634454,0.0476107345851563,0.0480614185444173,0.0478425662258726,0.0548121833917431,0.0736680069330476,0.111149111985245,0.126174208622257,0.12700453005546,0.114333076426924,0.126447736051893,0.131281575842285,0.14289325366674,0.180495256251953,0.206632887615679,0.137048519707919,0.0183423338363363,-0.0537845971937118,-0.0593921728201355,-0.0251673529444064,0.0195694116522468,0.0565907413573714,0.0651375965084491,0.0701833378118489,0.057024964161761,0.0540262981560191,0.0464867827731856,0.046571979710514,0.0474026395386302,0.0480411949954061,0.0452828099281673,0.0512941237791292,0.0601539472004433,0.0852763685559166,0.112113357746653,0.134216101951111,0.136662578192603,0.13979582146879,0.136412911433802,0.151150499487016,0.170986599412245,0.210996023313363,0.190669945884667,0.0847545625814009,-0.0270674689441927,-0.0704870384928794,-0.0582660823795983,-0.0213871328808191,0.0339218679166507,0.0660641098791324,0.074467903487368,0.0718354951768854,0.0631134951320737,0.0498106162434383,0.0457651792845377,0.0457229031242751,0.0456831656555881,0.0475245874966739,0.045580693754089,0.0466601814775541,0.0597003790741139,0.0823014664936316,0.0950015517594325,0.116001911511481,0.11947509740271,0.127208189735767,0.126542609248026,0.132326902196027,0.155720701352226,0.187287697382197,0.140980938391467,0.0168945623054927,-0.068787691964913,-0.0826276366081297,-0.0536979028011293,-0.00627505168724568,0.05249217725838,0.0723566296024887,0.0783748354033761,0.070139115084662,0.0594261447822377,0.051677021046803,0.0463025693010616,0.0487635768571127,0.0482075852721623,0.0494001843144816,0.0493065840892108,0.0442569480047391,0.0531174541508315,0.0659887294840472,0.075577468442182,0.0843851547473331,0.0949409699613941,0.104342895221159,0.100132754892373,0.114588348724752,0.132245983438913,0.126555703803962,0.0577110915848088,-0.0407110955196993,-0.0971513545381352,-0.0832301529703382,-0.0465141796474597,0.0236031048476041,0.062754468791777,0.07671765686754,0.0700932376192634,0.0624001668125149,0.0550184654066036,0.044664793158018,0.0461058720332286,0.0494841762285882,0.0491707621576568,0.0467347571035107,0.0474879294107532,0.0433944490843748,0.047771881368485,0.050942446727024,0.0469265513432646,0.0474967434223218,0.0561071211837217,0.0705730325233378,0.0834356960818686,0.0957679139242203,0.0946565459808289,0.0526425405831977,-0.0199993344404656,-0.0836920211333807,-0.0952572301177058,-0.076108445268597,-0.021747184808625,0.0470797866699692,0.0704348381947305,0.0657084600660562,0.0619997855635373,0.050100607287253,0.0471963028859734,0.0415694012582432,0.0481589633780899,0.0470802833493108,0.0474978042303212,0.0460327691511493,0.0503953992410205,0.0460095974310049,0.0369478286160391,0.0336540564468389,0.0274024133435186,0.0313793609277347,0.0491297622740596,0.0637618031712184,0.0881656788887939,0.0812332264789951,0.0482760328999423,-0.0197609362322851,-0.0794568526997412,-0.099542664051443,-0.0819696675194451,-0.0548376776778945,0.0206813401468871,0.0652180008861015,0.0639896853631294,0.0453789660816865,0.0466413116832626,0.0358639869468039,0.0426457441566761,0.0418125674946731,0.0482817673857588,0.0487379795020348,0.0464181853376556,0.0479075016664326,0.0489877859565499,0.0521181736711834,0.0296648648033069,0.0188255501758564,0.0200153826812335,0.0290336304062775,0.05482626020365,0.0767432020279003,0.0836693249856137,0.0488869461800987,-0.00528066165629035,-0.0609266239843546,-0.0911917028200862,-0.076746511986418,-0.0397825980134188,0.00870664592263395,0.0613777583312044,0.0704842929499915,0.0589932536663045,0.0435701081191666,0.0300787985136964,0.0212723789981546,0.0304712850819095,0.0420416876969668,0.0473619701707045,0.046859325409836,0.0466949274902873,0.0449701914863942,0.0505370828601908,0.0474434826531883,0.0272178630670155,0.0150756348765625,0.0255705095315907,0.0349919882379574,0.064236387810454,0.0717427386972316,0.0540728255562226,0.00753118602455661,-0.0393581360514911,-0.0783031401689482,-0.0811891596050976,-0.0447626562658666,0.0141214893155717,0.0673398741362757,0.0820743440378498,0.0743901160812511,0.0517838380924208,0.0355412704336853,0.0184756739996653,0.018196083588254,0.0300752944605051,0.0399506603262629,0.0446305291379771,0.045676547367911,0.0465853401778778,0.0460618933804175,0.0483077662282005,0.0447459090317898,0.0345189766965609,0.0169506830696404,0.0386747330686537,0.0636131516617335,0.0657888700289264,0.0667430590187712,0.0319396943545055,-0.0286410878319959,-0.0427579324996539,-0.0554342316727785,-0.0380248501870052,0.00393078667099304,0.0614923251230938,0.0905199352741549,0.0874512858914585,0.0729460015482602,0.0452409775897562,0.0301913497116423,0.028231732762186,0.0214605383968466,0.0315315035460393,0.0447973398878774,0.0466110307015983,0.047760615821753,0.0463186272798981,0.0458793405258795,0.0476229284314211,0.0474954965234382,0.0392994213124933,0.0326355983150388,0.0457516215343789,0.0627377568079292,0.0684319773770839,0.0507393108213616,0.00695619000429706,-0.0288764106436681,-0.0321270974508431,-0.0332559902107767,-0.00265144915679287,0.0349431578817135,0.0758648818540964,0.0816825879683402,0.070548865585952,0.0552485847154375,0.0438485268701439,0.0395946619498452,0.0360176535067394,0.0306180840869456,0.0379310786224797,0.0450453648774982,0.0463788449337069,0.0455441630741298,0.0457830123259723,0.0478937692075344,0.0478135438861105,0.0468963503323965,0.0401868535292934,0.0437332877067213,0.0432841621289894,0.05409408615735,0.058679234635285,0.041441923293702,0.00401765862313003,-0.00840488653164733,-0.0171292256804347,-0.00607995190835376,0.0164466149290765,0.0437069739260318,0.0664765975368844,0.0700773464455755,0.0651852925929331,0.0640320468764982,0.0531927935734223,0.0503945734414235,0.0441077997739519,0.0450043233738813,0.0444622488174948,0.0468554573367701,0.0462589152003115,0.0478729691213111,0.0454005879548295,0.0469711848750729,0.0468620176752802,0.0451483266036727,0.040738519580182,0.0434096153292216,0.0333850815878238,0.0228106846336443,0.0121622312893171,-0.00722942731361686,-0.0225131783641456,-0.0315006964145756,-0.0211969953016377,-0.0124800023528193,0.00391178938543953,0.0188437020913421,0.0483787957200202,0.0627991010101188,0.072376626812865,0.0720272473050758,0.068754121748992,0.0598975842889673,0.0569451273532808,0.0493486190147889,0.0479645729207104,0.0458259901428258,0.0474004467111962,0.046877275406994,0.0489053472081144,0.0471850385630675,0.0457059451090529,0.0477860598640506,0.047192866332877,0.0411265644783216,0.0296149075403733,0.0015010499558127,-0.0205104867036144,-0.0548490487359787,-0.0681098083069707,-0.0653138818887582,-0.0368911351706793,-0.0248092562779048,-0.0195355551853543,-0.00124517303944052,0.0183203694283501,0.0432011352835189,0.055699065517372,0.0616686664870015,0.0638705744621887,0.0565782861352075,0.0516436437152481,0.0485862740873226,0.0457264976074429,0.0483988996024334,0.0482504049055604,0.0457268033206156,0.0463837370183921,0.0469842664364495,0.0470824843175319,0.046145558777261,0.044704075973085,0.0445430105397228,0.0366548510356541,0.0195647546892991,0.00441289204252758,-0.0187339432390288,-0.0387615124657747,-0.0330143272800102,-0.026303624555319,-0.0207448865352146,-0.0135000812496028,-0.00631126796599816,0.00295888915308444,0.0176437600862776,0.0377249217033805,0.0466745457493938,0.0536455233132605,0.0515342239745813,0.0506235422048453,0.0491456962227543,0.0452707319296607,0.0481062557476356,0.0463036423480688,0.0495247901366522,0.0466381891645106,0.0478145123225054,0.0472144655170388,0.047512145686062,0.0478373852492878,0.0462824194946524,0.0457278798728589,0.0445742991016117,0.0429323910160728,0.0432687422754428,0.0371555897178461,0.0393605513105228,0.0365605933172799,0.0347365370988976,0.0307717244686485,0.0291543909328691,0.0354196268006881,0.0434779266323929,0.0440551440336958,0.04682808515192,0.0479694294320844,0.046306371652131,0.0482412990310308,0.0454898507685579,0.0453319922835631,0.0490443864686195,0.0483538596836399,0.047568834127194,-0.0411583736546717,0.248090347263754,0.249599788483944,0.249250350241012,0.249191029955364,0.245944346587508,0.248599058574738,0.248158921582047,0.249179070806723,0.247442097193583,0.249735444931821,0.248767268095733,0.246721782577446,0.250006561680822,0.246328637364496,0.247897593291853,0.248458828221379,0.250100519752737,0.249687419236494,0.249302427478914,0.24683630751947,0.247932739005445,0.247187827580616,0.247421525245508,0.247003683705593,0.246464428879497,0.247933752551554,0.247272896646068,0.2479514308384,0.249461064089267,0.248812641272553,0.246687037449176,0.246360003932009,0.247529217828575,0.247798980928062,0.249300498758928,0.248691514195921,0.245373544743873,0.247446413713986,0.248628747766438,0.248004669303373,0.249584421122772,0.248556627875407,0.249388937879107,0.249684002404339,0.250119641287031,0.247574720933835,0.250486176156716,0.249603468214956,0.249795399685115,0.247353613821501,0.250005701855523,0.250139176715121,0.248977349013912,0.250021334106355,0.249821493451254,0.246677017330769,0.247985308191949,0.248054573939811,0.249817742804955,0.248572310543466,0.246434400575342,0.248070997329892,0.245508238103339,0.246190228585229,0.249554431445342,0.249420782982324,0.249298376536346,0.251236526656086,0.254587392811822,0.260892209103171,0.266789930382527,0.274167031426087,0.271684047294246,0.271851403299435,0.278569358088381,0.269902499405683,0.265511065666016,0.256567000352369,0.252354676743878,0.251185844817115,0.248971381846212,0.247472619304648,0.24757889275511,0.247633237568516,0.250166629270632,0.247450847843971,0.249501599055318,0.24953096027202,0.246217131074911,0.246263329264316,0.248743964863174,0.246605316308278,0.247697838792537,0.242202674389272,0.237273941333899,0.22643998660886,0.222724247929275,0.230362832469554,0.249001523996147,0.258463590106663,0.265372019191553,0.283426080343948,0.2932329145509,0.292949848618809,0.285309554660541,0.267481207042788,0.260769493138164,0.252259150212746,0.251301946802142,0.246474028555356,0.248816857931596,0.248160619161959,0.250080603979604,0.248900984871429,0.250057085675078,0.248126012932343,0.247114181599365,0.244550378883374,0.238419468732698,0.234692831325552,0.212117104470809,0.183080211018587,0.155143357519299,0.110536519993917,0.0758211468356904,0.0565793654959853,0.0548750498619323,0.0561910820740634,0.0733802109060479,0.120816936491266,0.173636111363999,0.217581111976492,0.244437827587197,0.256945188097603,0.253734001713577,0.255297735250292,0.246707218899262,0.243190130036173,0.248134493644393,0.246557354054301,0.245776062583152,0.249977846720333,0.247428543438845,0.24851728328395,0.240962887984272,0.235021466121005,0.210617258675784,0.182333481722698,0.121460419413724,0.0574729664294016,-0.0162512483599297,-0.108892992400446,-0.155820807358144,-0.178156522388211,-0.198861674513791,-0.204697837195045,-0.194234172489305,-0.158549128429632,-0.0801815682865251,0.00902225970574573,0.084622678343747,0.15187794760743,0.213997807708005,0.245540625280313,0.244576480552149,0.241967871813587,0.247991420211501,0.24998017255915,0.248364750434547,0.247304733930602,0.246465465599779,0.245150136813175,0.229687393135972,0.215759322080008,0.17785042397675,0.10846018474718,0.0225886120883807,-0.0734692283727002,-0.151127907701961,-0.204872294468632,-0.243769345279412,-0.27025045871612,-0.273115250332536,-0.274173111473215,-0.267701705279897,-0.250570654489185,-0.204683701140546,-0.129493148137808,-0.0323013815728878,0.0633713665765011,0.159346196062178,0.225806545857003,0.242944452459584,0.236802554359803,0.243060102094714,0.24751523609854,0.24629457481536,0.247317996040595,0.248317086508862,0.240672081926504,0.222245851617975,0.196163952695918,0.148311059272348,0.0586154149419452,-0.0396769231523866,-0.118328605958649,-0.189845586208084,-0.232931600272611,-0.249534836280641,-0.233431539370779,-0.212610471940808,-0.210308438671883,-0.220789188196701,-0.231430484797042,-0.216904717138286,-0.179899292508163,-0.0978895069753504,-0.0120455791130222,0.101248439001887,0.198864492376695,0.230921019492747,0.235616581723254,0.243458789401978,0.24705256663863,0.248106440984252,0.250375363204744,0.244927749401382,0.237820868534279,0.222514260551473,0.190616463026702,0.129404905230312,0.048902128656391,-0.046423108782406,-0.122343229427976,-0.179272672224615,-0.180205511488365,-0.16067346950038,-0.101369315250654,-0.0478428606630914,-0.0494124554279248,-0.0941803213439724,-0.141646039788812,-0.170310413670888,-0.185206482521442,-0.149878029623672,-0.0779198781186053,0.0304210902423031,0.152464358603848,0.205629851617861,0.231350867574694,0.243589395725526,0.247520290990145,0.248385160440132,0.248816499694654,0.248651491701936,0.24229467961568,0.229524742040301,0.191964806767494,0.128106686510676,0.0504725865261999,-0.0458076329018947,-0.104181634872467,-0.14149059923178,-0.112079642401894,-0.0542053183543579,0.0447358643039541,0.101313015784871,0.0717249991895482,-0.0153849103640958,-0.0991633636461615,-0.155979054896478,-0.181480084844825,-0.176830095350153,-0.114101193597559,-0.0155494328317928,0.104890237660044,0.187016819430979,0.234155156514473,0.242263852962212,0.24666545359227,0.246063503416011,0.250926329249388,0.249275806039657,0.245436653745908,0.234061081903702,0.193816632613257,0.126126867251346,0.0466722968868874,-0.0303047903601047,-0.0896454345283151,-0.0918553677817142,-0.0509569578559921,0.0192992839623276,0.101549283974241,0.127521282661902,0.0713092113556231,-0.0394837361663562,-0.123722902042739,-0.165097019449483,-0.184106582292015,-0.18167941110984,-0.124464376979919,-0.0332077150698838,0.0878431833463982,0.18106788500532,0.226542935134018,0.243516124422692,0.248050530355747,0.247704151518825,0.248539324886996,0.250816159205192,0.245319037109781,0.235532800064613,0.178137946930013,0.109944242111566,0.041484169922076,-0.0271396755476014,-0.0696099781374463,-0.0666977997810793,-0.0534907143423231,-0.0118976756122013,0.0434536081416241,0.0474137336926508,-0.0120187611711078,-0.0930692569541891,-0.14667262146207,-0.168568084147339,-0.16172476400939,-0.134572796822669,-0.0850705702083396,-0.00395672761103473,0.0911928563192607,0.184569727191678,0.232674988821106,0.243186174721344,0.250057787712067,0.250116189682772,0.249108273122715,0.248529860709108,0.244964489054449,0.227226655377714,0.173744761354411,0.104707732673064,0.0368192915154327,-0.0185421568965008,-0.0461877957983655,-0.0617129394266184,-0.0857980352526185,-0.101076507116342,-0.0776477180282767,-0.0738785558435012,-0.108630300262369,-0.141715171599953,-0.155020569329692,-0.127877719061258,-0.101167119850542,-0.0619269764308129,-0.0117615884681714,0.0460882353951781,0.114894256220725,0.196525916415184,0.241025842042688,0.247093500216118,0.24857337580953,0.247153143834429,0.2493569017288,0.248338315567363,0.246992191071684,0.228122297175604,0.162772869887545,0.116252270153364,0.0393489479353513,-0.00469053646057222,-0.0232734504340259,-0.0502199146465148,-0.126623094079647,-0.187155437665516,-0.165604528784099,-0.144166526452732,-0.144817010236331,-0.149511904611766,-0.129484906910714,-0.0877571013094238,-0.0358641015189828,0.0114745500952365,0.0400385098207912,0.0775752375002158,0.130325416484279,0.204436728118366,0.241976314034245,0.248230345490703,0.246665283160405,0.248858261662018,0.249306717191273,0.248646075409233,0.245898331669347,0.224887399629837,0.149719496694672,0.109340322220318,0.063444629499698,0.0320796155982326,0.0150070254687472,-0.0295677283878996,-0.117965932240899,-0.184768731755703,-0.162340031645844,-0.134059189980933,-0.114280412393471,-0.108369005074515,-0.0710965013504745,-0.0207390150580907,0.0118161833803232,0.0286093449622877,0.0630735499328862,0.0993574379208274,0.148174800428956,0.205201137983062,0.246558898724528,0.246791532699649,0.247825968335525,0.246594565162931,0.248854357672415,0.247708420357724,0.244703205414515,0.220766256275149,0.146345495908877,0.11339230358258,0.0764239660702628,0.0715879144126297,0.0506498192259193,-0.00477340774829304,-0.0877988665328864,-0.133242139288694,-0.0927782220912363,-0.0576470831236069,-0.0327384751704773,-0.0418341310887721,-0.00714032422790728,0.00991854969520968,0.0185027821813994,0.0202340373442621,0.0530980461319731,0.10350308289598,0.148157922009529,0.202213645803925,0.244325859114341,0.245814021101331,0.24550638877951,0.245781764840409,0.246896812186332,0.247826003259051,0.241719220244441,0.208713076402207,0.129431708873687,0.0822202360922155,0.0657906863068845,0.0777924189705998,0.0602630236212462,0.0119807465980874,-0.0573528208919251,-0.0663461664109656,-0.00592327760142279,0.0573093867688933,0.0565974143854812,0.0185179146440295,0.00127752641661367,0.00851576056825655,0.00381614825238703,-0.00611757448622804,0.0234261522277833,0.0869592202721569,0.140039504147969,0.203799721420096,0.240652106001759,0.243306227194139,0.249875158432319,0.24587445157196,0.249751095146039,0.248222773204715,0.239183466920002,0.194621684181583,0.107763288281583,0.0560251646707157,0.0302389467457625,0.040568158555359,0.0160277223938692,-0.0219408117555221,-0.0494920395143763,-0.00435608859270618,0.0832304352902086,0.129994056276294,0.0851037655235422,0.0247592431876668,-0.00288581702125808,-0.0193294369861674,-0.0339284007467918,-0.0388616041136525,0.00182811336628814,0.0653984635366827,0.13668434112165,0.203222017250675,0.238106141689465,0.24215243362976,0.246205005661374,0.249300008698104,0.249034257050357,0.246826795696961,0.233109847614945,0.174384202172903,0.086458731004923,0.0226333985337919,-0.0131029144339847,-0.0334819225033356,-0.0433325139774383,-0.0565765916205728,-0.0285889758582567,0.057483533084578,0.164673341560446,0.164237915297287,0.0844473607631178,0.00828771600689565,-0.0307056919351887,-0.0630505591882468,-0.0864725551643672,-0.0681046242790622,-0.0140452884567392,0.0611413221039936,0.141471890899172,0.206861030898314,0.236938888523141,0.243622234294426,0.248579175129346,0.24633003710664,0.24917278460081,0.242278389415643,0.225639901586431,0.168399695688178,0.0847174867423921,0.00250502704721896,-0.0734953609260704,-0.10917288167996,-0.110220326087365,-0.0754157606353714,0.0106000232785778,0.13472036066049,0.198872376494824,0.165851466199217,0.067931972583977,-0.0290084597963336,-0.0845445009294083,-0.11757573615323,-0.127807909451129,-0.0866726094574843,-0.00881869985526924,0.0716426776763156,0.153849887014311,0.211886424512341,0.23673679656086,0.245862603087168,0.248821776150955,0.245934318734872,0.249848618475501,0.243942654656215,0.219446318573843,0.174213671023385,0.0835402615048645,-0.0249005977429199,-0.11433443790105,-0.153870092559811,-0.147872131493133,-0.0983273075650775,0.0187539738231388,0.111539498070746,0.148981749735899,0.0994778094671001,-0.00114770359426381,-0.0887242989315779,-0.16022491231072,-0.176114408685665,-0.155587055246035,-0.0855418875897168,0.0179584192844184,0.102079811041722,0.182996328744089,0.227920136776022,0.23844797443399,0.249162394327159,0.247610656529127,0.24785891722253,0.24936491892901,0.24145113522876,0.224724918500306,0.186319938032876,0.104886030945902,-0.0182870114255825,-0.134355894043549,-0.181166561573361,-0.19683482597316,-0.160284359989433,-0.0788730078085878,-0.0190051678853201,-0.00930261165648816,-0.0546133071539407,-0.114030567586647,-0.180636121387996,-0.213564086110615,-0.180011479378175,-0.126855768501825,-0.02303511741251,0.082002350619903,0.162303553953093,0.215198097542604,0.237700922534609,0.243537906370177,0.249097358084886,0.249343572670275,0.24829218508962,0.246966662157596,0.243248138957449,0.232570334785677,0.205311097908393,0.133561011392538,0.0281593896534487,-0.0884661515346656,-0.186154013170635,-0.22075274357694,-0.244917462635937,-0.234156824537453,-0.213342581308201,-0.196200095894184,-0.200455357849654,-0.215437340424857,-0.223061421813549,-0.18346259656887,-0.12609049451477,-0.0175307619198148,0.0786856671283385,0.159640592239532,0.203712529974201,0.233871356582199,0.246814266337682,0.245383301297981,0.248166972974263,0.246455740049445,0.247311656063402,0.248116819595176,0.244943657547098,0.241516682897578,0.224995610461073,0.182477675064184,0.10103879453593,0.0056888164951845,-0.0925593185938437,-0.169162218655165,-0.217084245166533,-0.267604974231644,-0.276897559610244,-0.272409036996908,-0.236097817473818,-0.207044375570253,-0.151361757568927,-0.0751621159275697,0.015275690022522,0.114450099821642,0.175921579280632,0.20518061579834,0.230460303188691,0.240505379862706,0.243442149360171,0.246194928123529,0.249816927124151,0.250109594639942,0.24735731721011,0.245895500691507,0.248663836864174,0.245436116149184,0.238732684419695,0.225281497714908,0.192499999556156,0.144573836406668,0.0719379685333308,0.00826585471061161,-0.0594330033393379,-0.108850108714014,-0.132682034950261,-0.126220426468067,-0.0884954636171991,-0.0439411114531847,0.0241196505450459,0.0890725722498922,0.152256120318021,0.198854977306625,0.212391861762828,0.228320634280727,0.241954066948334,0.248568429827126,0.245300979021344,0.247456393889902,0.249156052198404,0.249951799902153,0.249017376046466,0.246063986774454,0.246243049753866,0.246849387751394,0.24640869129813,0.244021068479846,0.245713434435533,0.243200425715431,0.227702580092668,0.226564322017592,0.204393814512829,0.182134673701425,0.175390734505262,0.175805862844127,0.175904671439048,0.173179742518125,0.179170553670287,0.185988790060055,0.206134355020482,0.22145940122172,0.232335718416568,0.240093990313599,0.248031604814656,0.246671883758351,0.245798542711829,0.246141407055829,0.248565894971796,0.247756105673645,0.24756167775557,0.246733609399582,0.248298046493118,0.246923639349937,0.247897599431433,0.248550384490959,0.24886397959077,0.250606823234107,0.252630290856341,0.249843623390028,0.246055131324764,0.239731644584209,0.238927892291006,0.234323645920956,0.235878097856607,0.235559077131343,0.228308361739434,0.228723212813049,0.235952874303263,0.242839327757666,0.246797775987642,0.248391776001448,0.248958429964199,0.246478145249772,0.24950582014396,0.250095871944116,0.245832620099981,0.247300376146306,0.246816032876265,0.250018816502716,0.248584556863676,0.248611999288379,0.247511598814671,0.248730586072055,0.25058220927552,0.246863108900227,0.25050658655215,0.247932754785105,0.248615409972842,0.249489783155834,0.249945208170002,0.249229469103294,0.247869454007853,0.249212163317992,0.249528475370084,0.247268115238427,0.248911059022087,0.245574054220099,0.246322753384873,0.249768783617762,0.249434262143692,0.248820787327014,0.249452753085246,0.245995738783421,0.249166183332518,0.249576194292827,-0.21412791055459,-0.245189265840168,-0.246406526961981,-0.249188540195416,-0.244930589548957,-0.246008365115013,-0.247301019364258,-0.248115489072482,-0.248597188309241,-0.248759204213858,-0.246519021218324,-0.246071393539564,-0.244840612126634,-0.247055875011803,-0.246725495087818,-0.249075141930344,-0.249076320255239,-0.245657157956818,-0.247930522296286,-0.246042763768758,-0.245178047314414,-0.246147562653559,-0.245337580765085,-0.246736811431301,-0.248391184746292,-0.246741738384065,-0.248020221472575,-0.24699134467366,-0.244986082641249,-0.246302768772304,-0.245143050560342,-0.247823803410252,-0.245827510370511,-0.24855929959654,-0.244901267158304,-0.247213275687646,-0.248137057389593,-0.247844385571379,-0.246221063383698,-0.245218158278584,-0.248929369898524,-0.245892713532035,-0.248762763004911,-0.246887769902453,-0.24820072758333,-0.244754240733904,-0.249303817454863,-0.248070347465684,-0.246533375378598,-0.246677752955347,-0.248549125757234,-0.245321936876278,-0.247100074822671,-0.246082436643995,-0.248401804205712,-0.246599451367769,-0.248783138389044,-0.245452618390398,-0.24724231855763,-0.246008383648151,-0.248196313995776,-0.249194586601169,-0.249093184618272,-0.244144412533378,-0.246812573224704,-0.244304877547934,-0.248601095448364,-0.250854111308318,-0.249287080378299,-0.251890840409819,-0.25654293982831,-0.262084835563437,-0.26921874984956,-0.266927582422093,-0.267694820075001,-0.274789477181132,-0.269512880360217,-0.263400983091381,-0.255681606745612,-0.249496518401835,-0.249689268753847,-0.247640830421906,-0.246327186714362,-0.245962476452557,-0.245473653073334,-0.246279943366419,-0.245947206400688,-0.244925138396948,-0.245620793097449,-0.246223052787917,-0.249454311445755,-0.246038802496007,-0.246412282327466,-0.245155225008332,-0.241226918614557,-0.233875265211416,-0.224569198139844,-0.220411491945521,-0.226640913376415,-0.245786222250636,-0.255235275131025,-0.260075333269305,-0.280721554388712,-0.289429556965269,-0.288390682009778,-0.280637419590351,-0.268606869382351,-0.261195163652693,-0.25111552076288,-0.246929652441156,-0.245426717616036,-0.244559964851813,-0.246098121633438,-0.246068834029326,-0.24536550615833,-0.245493406756865,-0.248498182770584,-0.248005455774607,-0.246660307303005,-0.239131747188357,-0.231761330378763,-0.209894454358767,-0.182152894471087,-0.154524892871393,-0.108886189352007,-0.0765250762477632,-0.055643097238734,-0.0601527133125837,-0.0638043397708102,-0.0793595003524348,-0.133522169921783,-0.18390824212653,-0.223075827816188,-0.248015553602589,-0.25413700464801,-0.250373956166954,-0.253587113801556,-0.247246277450899,-0.245042290177269,-0.244846981260758,-0.247196650320698,-0.245906614397014,-0.247516615149761,-0.248224655681459,-0.246482625065908,-0.239791826401152,-0.231500958496393,-0.208166470093412,-0.173247788264044,-0.116139440437436,-0.050791022942661,0.0197901081803859,0.108349763007579,0.156638749834509,0.176165520465582,0.191453965911222,0.196045433560167,0.184115852986421,0.146052928390548,0.0700414069482849,-0.0225945716762705,-0.0967597444122185,-0.157741334473701,-0.211946682769567,-0.241865483870127,-0.241461729438559,-0.240919460593253,-0.246778763842323,-0.244977419697385,-0.2490673119145,-0.248645097566256,-0.246371047844131,-0.241154655570134,-0.22732199080782,-0.212683045700978,-0.173841080509802,-0.100377513823218,-0.0190114439791553,0.0729733982155707,0.154520054953873,0.207670859099982,0.243564106276448,0.271480718026624,0.273087952016391,0.273252947151944,0.261512809541393,0.24481049642677,0.195830218134472,0.117827541181085,0.0156329497743379,-0.072081392598886,-0.164942784642538,-0.224000872242734,-0.239252750083535,-0.235647205665213,-0.243630719024423,-0.248568634949303,-0.248009354464335,-0.247265836544158,-0.24485569474791,-0.238326061019194,-0.220808344059296,-0.191151589714758,-0.145959387750589,-0.0582307437682152,0.0416313834668124,0.116434880538537,0.188255583646819,0.235358446952194,0.25043970118625,0.234588859767231,0.217798146038462,0.212286286138843,0.226230545958435,0.227841217330035,0.20571536084029,0.166037026945749,0.0818790268147636,-0.00445348029130426,-0.114577246083175,-0.198993691471743,-0.226621415272959,-0.234048274815265,-0.241893368969935,-0.246045001332297,-0.247468510841625,-0.246468236718699,-0.24522704804619,-0.238349065078107,-0.223927742561687,-0.192878762085781,-0.135058410719622,-0.0565712442761901,0.0362508724304402,0.114476162217613,0.17478506119006,0.181708093747279,0.159262259017638,0.0979952050223173,0.04538232773471,0.0480554883207152,0.0914852622047988,0.133411023352404,0.16253216406246,0.168109866501629,0.124784661534933,0.0530583711461274,-0.049191270771966,-0.161184517079772,-0.204864170751567,-0.229496736628206,-0.240468637561484,-0.248065441983889,-0.246091122373361,-0.248979475143637,-0.245904795320455,-0.241772849083744,-0.226496889218519,-0.194119036873301,-0.14090275152998,-0.0645994297663974,0.0346622485471051,0.0959232318808612,0.136148247179041,0.109610307095088,0.0511724158043083,-0.0546989349560032,-0.11109932346143,-0.0775408550945205,0.0149183928222512,0.0973332586470759,0.14862814226305,0.161154097834724,0.151087529816519,0.0879981031710703,-0.0106967754027439,-0.12097820600003,-0.18949517598424,-0.231524222004968,-0.242487960865065,-0.24730969371408,-0.245310836953793,-0.248573341034188,-0.246554863893883,-0.246148513722073,-0.23406155444063,-0.19981892252555,-0.140916913859183,-0.0585930716960386,0.0212734402648308,0.084269084655764,0.0906870799284011,0.0485271242902789,-0.0226143406197417,-0.109622455946835,-0.131305683975082,-0.0640051236117077,0.0419750446826944,0.122642294627703,0.156140860605851,0.167139578079843,0.150984929461566,0.0947573133277401,0.0119105008095773,-0.103258537475373,-0.190102490568416,-0.226524589787107,-0.241924487859238,-0.248748639696304,-0.248196245297141,-0.248129536226927,-0.250063155792281,-0.244356578098361,-0.233831324352089,-0.183310228437982,-0.120900149492917,-0.0490965607997099,0.0255543047141616,0.072546870347432,0.0664696494199092,0.055140760456311,0.0155751328945846,-0.039495712910145,-0.0359004067505754,0.023571352915302,0.103078693024117,0.148347962177355,0.159317997718987,0.139593050657054,0.108137508615789,0.0586202637391317,-0.0204950415841391,-0.110589326015772,-0.191850438875411,-0.23245533697959,-0.240816534709219,-0.248640088778176,-0.24714605343835,-0.248308655600656,-0.245029713153443,-0.244591145714477,-0.230599167753779,-0.178039686862365,-0.114569669050654,-0.044833646158304,0.0225538506239599,0.0551803412049301,0.0749451327769902,0.097380068484849,0.111095673755114,0.0868709694232806,0.0878920135948627,0.119110698648487,0.150194568608396,0.157114231539118,0.124656601071477,0.086674471978199,0.0431409991037573,-0.00981254784298987,-0.0627333089885832,-0.129654064292453,-0.203251530373007,-0.240369426851365,-0.242804098721721,-0.244825718407034,-0.246238406596543,-0.246694631533606,-0.245694123952355,-0.246172508348095,-0.227890933688421,-0.170844701034322,-0.121502735966768,-0.0481075590010589,0.0114471986643745,0.0371706575307984,0.0692505446266043,0.142955552237823,0.202675609216474,0.183925208517249,0.165283173619639,0.159599260659543,0.164735052250912,0.138816893509919,0.0961793963232259,0.0343483236743938,-0.0201341184689775,-0.0554504291105537,-0.0949464480821291,-0.14479045282908,-0.208340250022258,-0.243704239498566,-0.247501885259385,-0.246291736617114,-0.247130413038178,-0.247946826261465,-0.24753495273569,-0.246497085788703,-0.226034848013125,-0.162421228695439,-0.12220950594124,-0.0693869223274446,-0.0295680217818087,0.0010469288633897,0.0508562690875318,0.134728686507763,0.199175335586521,0.17912967095896,0.152723456650136,0.128375493876678,0.120530924178333,0.0885262033509432,0.035910605444443,-0.0048507900572849,-0.0340234668183003,-0.0751006659013752,-0.114063093740857,-0.160242162043524,-0.209961550045983,-0.244053423068626,-0.246571725814034,-0.248409321744767,-0.245301089515855,-0.247328012461949,-0.247059593695636,-0.243977776558083,-0.224541897415079,-0.160740864085433,-0.12980729767382,-0.0877668720876894,-0.0727442393768841,-0.0418486689297846,0.0156855126384451,0.0975246157505767,0.140191484605022,0.103481838841682,0.0627733436751702,0.0367783530535721,0.0549896936228429,0.0259444722672564,-0.000655653351589187,-0.0118711931161474,-0.0234925866511219,-0.0611436759948731,-0.113576329836272,-0.162382887559952,-0.20655836351253,-0.239174057731474,-0.245973084189344,-0.246185719804472,-0.247829894064065,-0.24629621399583,-0.246877701668907,-0.241268922648457,-0.215097694072654,-0.147356961209585,-0.103843265456464,-0.0883926700752836,-0.0884712262171655,-0.0648204077542747,-0.0117653877683446,0.0588628093487499,0.0643930627192306,-0.00112643026095309,-0.0618204371242412,-0.0590063969126922,-0.0115671350322409,0.0104689254620712,-0.00129586022558429,0.00346321022726658,0.00500354609112057,-0.0284445531236627,-0.0983216984864584,-0.145255118627307,-0.207414994592919,-0.236922525886537,-0.245884002833689,-0.248939613738163,-0.247763459537783,-0.246014794824952,-0.24645279788137,-0.23914844982873,-0.197206068617819,-0.126486286296426,-0.0800562975622934,-0.0525789481670217,-0.057919410294765,-0.0253769477871223,0.0152932549878239,0.0384684448626003,-0.00491440610898992,-0.0929645192828015,-0.143402276374226,-0.0933766559258965,-0.0204839285613084,0.0144096880588987,0.026554528218321,0.038753459636293,0.0405077621806704,-0.00286677199703664,-0.0720712742740772,-0.14429132318885,-0.207476424044963,-0.237261818695513,-0.244963918863274,-0.245422390013933,-0.248084864237889,-0.245484443393578,-0.24268591283534,-0.230036538831407,-0.18361523033009,-0.109056956190559,-0.0482053639384684,-0.00807522233158901,0.0170570380962602,0.0317525764238814,0.043445779074927,0.0174706941129862,-0.0654581282274369,-0.181281140306746,-0.181679988430423,-0.0935652178177368,-0.00657330526497436,0.0396450205822702,0.0669508642926904,0.0924121432429566,0.0684559323061709,0.0144584822543876,-0.0683135736970356,-0.150441730167648,-0.207650339557453,-0.236184491142183,-0.243412041200838,-0.244856658991498,-0.24494625632212,-0.247154132959485,-0.241572010838313,-0.227302461977774,-0.17852671978043,-0.101361103331396,-0.0249160904373247,0.0486956969692025,0.0930709208413613,0.0950591636432265,0.0637812985932309,-0.0193107005291494,-0.14136023997391,-0.210063395184499,-0.182273051669895,-0.0757084031654913,0.0299067125334073,0.0897408894096128,0.120743272744013,0.131838169910672,0.0846353257298119,0.0096104612318694,-0.0790021504545483,-0.159326021058764,-0.213047013473042,-0.235228647376371,-0.245974395249281,-0.244824611493619,-0.246934986566814,-0.247453352263378,-0.24056801349536,-0.221908737044707,-0.179072096136873,-0.100106483587667,0.00202287167684317,0.0938673709895111,0.133055459113972,0.131247670828262,0.0903975663522078,-0.0251975841649825,-0.117777183774293,-0.155813010086228,-0.105329014752857,0.000104978318310238,0.0903542678736308,0.16322799605358,0.178662153589907,0.15753897742771,0.0821850702051439,-0.0207191315472983,-0.107898115619284,-0.188598628175071,-0.228244907615182,-0.239769325596431,-0.247176093449162,-0.247517698709332,-0.245177994782787,-0.245195669889617,-0.239983926569035,-0.223080975856959,-0.187004006584887,-0.113751068756209,3.65065757004179E-07,0.115026524830927,0.165649030179872,0.17827082770297,0.148697010580106,0.0696383210873655,0.0154863059513727,0.00780019115919038,0.0524182185794431,0.119259601880664,0.184642439655491,0.216363841679605,0.186211975502551,0.128451616408171,0.0224185151433461,-0.0831844596337838,-0.166226647883685,-0.219141259528927,-0.235355974785137,-0.244073105559964,-0.246941388699832,-0.244889838414398,-0.245234752029944,-0.248900716240665,-0.243076471439212,-0.231263267879385,-0.203022178411053,-0.137597223181424,-0.0340209899019238,0.0785142977868885,0.175594918623341,0.209374870145437,0.230983920167649,0.223464472630914,0.206763192346035,0.195861244695188,0.199415364917099,0.213714787399724,0.221409325555028,0.189566695975914,0.13236996879898,0.0217421954348318,-0.0795334576545149,-0.158570341721412,-0.205653236613834,-0.236513586425212,-0.244651093235818,-0.24595127759975,-0.245468512829476,-0.245069427395451,-0.2481283249687,-0.248657674633285,-0.244800755491472,-0.241056987130546,-0.222063565507005,-0.182225285668087,-0.1027301669136,-0.0104782617627923,0.087360258898911,0.16489990729488,0.211353005438708,0.261770107332555,0.278369730745829,0.271425213319972,0.235585963616831,0.208832024928086,0.156191434142933,0.0800876477000268,-0.00696175868033236,-0.112659362647876,-0.171489073488027,-0.204487040849196,-0.231324285677663,-0.241177330624529,-0.243338638561991,-0.244728917334044,-0.245986926496332,-0.247601627530455,-0.246239162939934,-0.246628998376149,-0.248135974919179,-0.245416456166485,-0.236769511455728,-0.222681931749275,-0.190355036617241,-0.140442041353165,-0.0764691683112607,-0.00616464782197921,0.0563060853788563,0.109179222903302,0.135105081873822,0.130925852188399,0.0956820060125382,0.0529881946135493,-0.0138540209708135,-0.078409752834433,-0.146318314849397,-0.190252591378973,-0.211046487040876,-0.227654598765623,-0.238424042228414,-0.245077047801373,-0.247266260019197,-0.246377739953779,-0.246871254590829,-0.246803674634267,-0.247339550257659,-0.248483085031862,-0.248411216383288,-0.246128736893858,-0.245548559716781,-0.243270849500358,-0.242204599360874,-0.244547495113292,-0.230866604290443,-0.226746987945516,-0.203022947820967,-0.183797266622609,-0.174351077162311,-0.172339916899239,-0.171120712014712,-0.168140300484897,-0.175170512825334,-0.178038360219507,-0.197210832090285,-0.21664967251469,-0.229030143010705,-0.241048572572889,-0.246532421684237,-0.245513783145778,-0.24727610649661,-0.247827665585613,-0.245869332371712,-0.248560972412105,-0.245833477930954,-0.247499569155159,-0.246907842287479,-0.24694776235147,-0.248872855252555,-0.248021324986315,-0.249035423823546,-0.251928754443975,-0.252294141368648,-0.253846504881233,-0.250264139047455,-0.244823065611731,-0.242317253353537,-0.238924051361697,-0.235048121322339,-0.237603916969217,-0.228045291572265,-0.228369810233411,-0.235946242466085,-0.239071343024217,-0.242490641758563,-0.247107703956831,-0.244611652340699,-0.246407191324196,-0.245915943074534,-0.246429955667553,-0.245671103585259,-0.249057151590304,-0.245307654611802,-0.247162605111337,-0.245166349538061,-0.249167193038522,-0.249040800138809,-0.248384538356782,-0.248117953165789,-0.249467460916639,-0.249579140693451,-0.247571603289619,-0.245580897889891,-0.249975948728723,-0.251539466371873,-0.249938542561481,-0.248488282164512,-0.249386314464342,-0.249453820346382,-0.244653282812598,-0.247910185703735,-0.245651689557921,-0.24726174179734,-0.248476546987614,-0.246928473800844,-0.246717399005447,-0.247908756849085,-0.248357578462136,-0.248364092200286,-0.248521366906342,0.214692853737958,0.266437830306168,0.265750919140484,0.264223307733199,0.263847317327982,0.262732927996428,0.264151861959494,0.26302361686593,0.264121903351871,0.265732121282342,0.265518903034602,0.262820052755724,0.263359143599296,0.266734200389611,0.264787469233007,0.263399481796194,0.26482722556652,0.263173628164022,0.264545337719684,0.264706083183074,0.263303615405662,0.265861927949592,0.265367288184369,0.265132525907705,0.267067888436082,0.265404982572255,0.265719385175988,0.264133998317604,0.265464425744492,0.266377521797375,0.264868832296293,0.265974396279087,0.262907341212578,0.263195864043278,0.267000685717133,0.266622472168621,0.265107701954217,0.263870928373322,0.264866958338088,0.264067631944271,0.265116186367113,0.266698038408593,0.262959126483943,0.265776205693025,0.266491339092957,0.263269126562893,0.265614005692436,0.264337151894855,0.268249612142172,0.265439812280631,0.266484457598468,0.263990865015452,0.26335985476727,0.264189955699216,0.264594052256216,0.264926919820132,0.266478009963719,0.264945835905603,0.263304607008288,0.263068302594487,0.263981201380297,0.26686907467527,0.266660650205114,0.263578637959858,0.263773585961036,0.266119023463528,0.266445695909066,0.26692795560525,0.26010328703231,0.256679285907597,0.262003433826127,0.267666643997259,0.273695244008525,0.272896065384823,0.277497782465587,0.281648984207401,0.278773617939133,0.274657135633566,0.272288692115351,0.270046771805376,0.263636956708282,0.265764621951049,0.26348453641732,0.262991254217592,0.264049203415032,0.263713613324361,0.264723752736763,0.263279287197335,0.267206487001369,0.263351708966934,0.263829789743565,0.26442713588437,0.263005180979758,0.260228300148871,0.255318783143413,0.242237423982598,0.229041398551476,0.214427721716448,0.214873908135459,0.228812673514767,0.238469378706492,0.247239280603762,0.272724481668674,0.281401807016442,0.289883385968117,0.289011668203854,0.278084111115342,0.275214496278091,0.267889669087142,0.266422556824841,0.262136074188792,0.263859570954123,0.26285371380394,0.263370522271323,0.264874293632012,0.263452238689491,0.266258628964683,0.266559406503317,0.261678667134593,0.25606748028883,0.243029564831965,0.221140504220086,0.186170635527994,0.153285197044667,0.104636815620255,0.0603764548138712,0.0371034506724312,0.0375324046865429,0.0503124690136054,0.0657600168653158,0.121141281464428,0.175701856698787,0.222168578906598,0.252538015527907,0.266850237359601,0.264410373555508,0.266042114179357,0.263436318899442,0.259703536216784,0.263095264597824,0.266994944954362,0.263627288116438,0.263140609229636,0.264149947572953,0.263573273850776,0.258474916188855,0.250840166483703,0.219802669476698,0.184358171349569,0.120716878115404,0.0467629950102826,-0.0365962459527618,-0.135140496646562,-0.180433014130932,-0.198888866167074,-0.215224229492255,-0.218721707569344,-0.199126087556051,-0.161053987209362,-0.0761149590078422,0.0167733271754439,0.0960216018641889,0.158051974512728,0.21534451504969,0.250378553059198,0.252838141675157,0.257423043154572,0.264248355127171,0.263051171410377,0.262842001682538,0.266025784963838,0.265419971525081,0.260693808056069,0.244929427026066,0.230993526175145,0.189359887215831,0.112892082766897,0.0210438896835767,-0.0863700235611573,-0.172761354633715,-0.23531057765674,-0.273498090505201,-0.298755242261273,-0.299649313137316,-0.293869329624074,-0.282034806478172,-0.261988528184844,-0.20352819176616,-0.117433501228721,-0.0185251672679105,0.0698092851901294,0.158980949536115,0.225591234845662,0.244196302537894,0.249623894288391,0.258755080434528,0.26480252426795,0.26276749000721,0.264582885260489,0.265934586919425,0.257313029816856,0.240465352300006,0.21140195942837,0.16266970169165,0.0682956484761681,-0.0389124957949936,-0.122958931202815,-0.207187562717634,-0.260726557460398,-0.275174438508959,-0.252926389970642,-0.231633260524479,-0.225263911939115,-0.229002419756349,-0.225709313785536,-0.205250395450638,-0.158912645977139,-0.0746043584069167,0.0125071489517796,0.112623321627531,0.200191419875017,0.231898137340917,0.246941767836092,0.259350186264604,0.266673175812539,0.265174055731384,0.266839116333147,0.265443853119412,0.258021535272068,0.246444286073542,0.21278970053987,0.151679796379374,0.0690517738619004,-0.0333584029879477,-0.121568409875771,-0.191021401964472,-0.197944885611831,-0.172179745352842,-0.100714025468601,-0.0452682540762309,-0.0380466861586655,-0.0782424348750045,-0.11874750320048,-0.145027490441219,-0.146843168248399,-0.106967733927209,-0.0374488326249679,0.0619010408810908,0.168783561195725,0.211026379539789,0.244382409937671,0.258000152871222,0.266683847144247,0.26301286515922,0.266636874810496,0.265517922191497,0.262208323051505,0.250187077460904,0.214475645006939,0.157447287651924,0.0792386143705991,-0.0286085890207067,-0.101195273735883,-0.152633348982294,-0.126570156264098,-0.058560575227246,0.0571030883668892,0.124088845934,0.102634382275687,0.0113812326678052,-0.0707981793345481,-0.12274525257001,-0.139751146192572,-0.127633938441197,-0.0613537727950349,0.0310284073693116,0.133812169322829,0.20381393937121,0.243922541745736,0.257648476853324,0.264011043868458,0.2644204341225,0.268341889663562,0.268434752022392,0.265327090443584,0.259102995683323,0.22237078136155,0.166970498215521,0.0699123776457964,-0.0190037091295264,-0.0948453171534933,-0.112191242477841,-0.0704403514388313,0.00767493587895311,0.110939585600997,0.14772904101524,0.0911499945151581,-0.0164577223236184,-0.0999613798252139,-0.137719438866013,-0.145682271139412,-0.127689249821046,-0.0655409516825956,0.0183706297896306,0.130949863847363,0.204665547483585,0.242431538457779,0.257689317841796,0.263155333869207,0.266737024115634,0.267716402042872,0.265879722959576,0.266473538440846,0.255890199463325,0.205778123421443,0.145299472610842,0.0650513609898537,-0.0230056985922615,-0.0862729715311278,-0.0906035320920711,-0.0797822848433147,-0.0361989862505053,0.0375492665585742,0.045779068700016,-0.00835943140806731,-0.0949620818722061,-0.142973211448742,-0.151445871007962,-0.125468013930445,-0.0832249826293816,-0.0314019804284961,0.048369651517677,0.137409175541192,0.212950109937459,0.248408138790454,0.259955784697288,0.265488095961814,0.265120397832818,0.264780317203851,0.266926388924792,0.264697436769704,0.251068717653206,0.204385953539695,0.145527746326779,0.0648280673574229,-0.0199560649806335,-0.0681391335106416,-0.0947046950895894,-0.13158193741086,-0.13979981397852,-0.100982202348913,-0.0897124597626117,-0.125946737334448,-0.159634555684784,-0.168779098413318,-0.127510894875361,-0.0793728174860617,-0.0304544845368902,0.0262327642957586,0.087904080966293,0.156284650473035,0.226279286698254,0.255973339358385,0.261564586454128,0.262714768740952,0.266607580512717,0.263316780153105,0.264988489577896,0.266974508343801,0.244888591291601,0.194238335067475,0.156001108313589,0.0688800696936936,-0.00561294301506199,-0.0528639168231944,-0.0963579331871532,-0.174033183101438,-0.231660129047741,-0.201088640768115,-0.176608889170499,-0.173861777456235,-0.182256198173902,-0.158506847133686,-0.109172890059284,-0.0392878507972021,0.0271486953938524,0.0665869777679264,0.11329308527189,0.169965727265356,0.232773658998659,0.259112145421946,0.263421993670676,0.266585367331112,0.266248722443287,0.263672840913527,0.26371370207127,0.264211290291633,0.247466257874754,0.19144103250472,0.154447487652102,0.0950091091174299,0.035653088166698,-0.0143057461220969,-0.0798855932759321,-0.168930986736725,-0.230069460360485,-0.19878172551451,-0.170549228339005,-0.143442058535989,-0.143582083654625,-0.112092642018901,-0.0494425987257691,-0.00527430373309593,0.0266456032015396,0.0776078232413175,0.129110467112838,0.182541074699314,0.229903607996418,0.262310924119337,0.265663088642279,0.264918404670404,0.266599274253417,0.265205817853575,0.263829678399691,0.261248705211131,0.244053699361065,0.193900880044582,0.162036522247274,0.112680060473999,0.0753360249512927,0.0284373819448661,-0.0477230936165336,-0.130902931226554,-0.168827823913732,-0.122626303156416,-0.0775424039042731,-0.0519862792312382,-0.0722273382400707,-0.0435680410642979,-0.0142861378389079,0.000860445870089082,0.0159353943283456,0.0625529702139248,0.120500283008578,0.176103719535699,0.22685070630411,0.253711654216821,0.261596145495041,0.263675736177579,0.266636604126343,0.262988865169018,0.264567079581188,0.25670314035486,0.232049793186093,0.17509208313406,0.131250386701673,0.103050048962234,0.0837805970170274,0.0449636889130805,-0.0152089609564009,-0.0904526653774928,-0.0919004055832549,-0.0153655465717652,0.0549368309839712,0.049581019415049,0.00310495834281012,-0.0254686996358486,-0.0185041768836537,-0.0203035490169116,-0.0197636463519048,0.0254222112227411,0.0953332115023224,0.159007805394645,0.223261267980018,0.252717591786783,0.262501758515218,0.264590000668375,0.263749780006576,0.266307091687998,0.261632869173514,0.255574739898786,0.214427767179963,0.148669804420608,0.0932367188811152,0.0552935998464801,0.0447785898839467,-0.00432967107224306,-0.0499775857821438,-0.0664830911987329,-0.0171738940916832,0.0846589737632855,0.142302606898317,0.0955354046516144,0.0140485112764959,-0.0339965546914303,-0.051699506714941,-0.0680842159050734,-0.0670597755001481,-0.0146478020986476,0.0648328206120375,0.148006759104076,0.218654436221142,0.248198385725662,0.259615058333997,0.265616963365432,0.266608593944633,0.266626460892963,0.262916845699944,0.249799389035792,0.19611225412619,0.122686886335232,0.0555430428154707,-0.00157099773827351,-0.0379001318785105,-0.063505414507466,-0.0758128552694038,-0.0469904570708253,0.0470344086799271,0.178487830912621,0.182148135928562,0.101174771465884,-0.00307278818360315,-0.065274888515556,-0.10679674087035,-0.131173962686044,-0.103570766180057,-0.0360731354876427,0.0602360526124773,0.152296319822838,0.217227769350674,0.246089473489,0.262035513902913,0.263696045506945,0.266587949493564,0.266883580848965,0.26021842340934,0.242731553559468,0.191065038614293,0.115162977326002,0.0210153505380651,-0.0674051466548035,-0.117860432413914,-0.127174591384984,-0.0967412432359512,-0.00863044996086411,0.126643607321559,0.211826447879882,0.183871706418932,0.0768448402182798,-0.0481110914712486,-0.128157941829716,-0.165107001625135,-0.176835054674148,-0.121938116128835,-0.0258343541842713,0.0715005152052221,0.166780486705851,0.222142528735071,0.250126095799774,0.26246024688004,0.265358884136073,0.26470302678515,0.264345469570988,0.260792933602433,0.237039387043364,0.195394128582558,0.105945760306291,-0.00958251785922432,-0.113545278296474,-0.159062494510087,-0.15981209762714,-0.113870529832043,0.0069660907499928,0.103229003375101,0.148109288107673,0.101275961538363,-0.00860023724693426,-0.115034775586978,-0.203480157687873,-0.21869687125593,-0.194416917995784,-0.101849580251586,0.00788312558706113,0.102818696850852,0.191858021259295,0.239152400389231,0.255578788579515,0.263231230227827,0.266519768521621,0.263468281037387,0.26702706358572,0.261201190118442,0.240959952384101,0.203159029495998,0.123559365097445,-0.00288001867274552,-0.133184176177326,-0.188862844261024,-0.203941278201434,-0.165096400139055,-0.0811286156734654,-0.0273213347241728,-0.0155066029275149,-0.0638731597103645,-0.12766909505074,-0.206457346000727,-0.245099755183039,-0.209007787248193,-0.149962456983127,-0.0311479646249801,0.0795325638034703,0.166420838099808,0.226482940856194,0.248145581980663,0.258983536967199,0.265631933569386,0.264222168251253,0.264608269265342,0.266018257372534,0.261841623266578,0.25021567997268,0.22068770374456,0.152773641141504,0.0365053425547362,-0.0875408379872158,-0.187967405832136,-0.22440610385162,-0.237409755563771,-0.227310071640163,-0.209893542772893,-0.195513815402317,-0.201317919935173,-0.21513719347098,-0.231840096350549,-0.200407178921973,-0.141366239219153,-0.0302567023389782,0.0757336943975282,0.157220718666311,0.212814867452606,0.24610069384381,0.258744370562861,0.263592883217883,0.262903612297651,0.264637457117049,0.265313697341001,0.265632152498582,0.262258588155035,0.257147378515073,0.241039046270932,0.19964482653784,0.116902773875517,0.0103681944419805,-0.09016654154652,-0.166371030239669,-0.20959769748379,-0.261838871871276,-0.277631981288667,-0.268618681364957,-0.235579673828579,-0.205772499679085,-0.159313355855457,-0.0871963095869636,0.00156934918262553,0.108772330036726,0.176819219673277,0.214446198781909,0.242836459781801,0.253719192209456,0.261363847755809,0.26276454467956,0.262719491503573,0.263875133828881,0.266034249777989,0.264864674868441,0.264524312141473,0.264716725487604,0.253408353471468,0.239076288213725,0.206692292436649,0.155216605574557,0.0821296290840557,0.0122578369468038,-0.0522354191584373,-0.107862692212156,-0.134484495051868,-0.132608126364753,-0.0960406447549782,-0.0527426924063585,0.0125503047184109,0.0845299078747619,0.150098285906179,0.200776602845221,0.225970648484759,0.24214725493501,0.256016047171409,0.261115380483035,0.265521965040034,0.266923831099209,0.26523371003041,0.266415117220462,0.262869186801647,0.265428928826129,0.265770912006079,0.266979703924569,0.260967143157574,0.261625259163724,0.262495903829541,0.262514500501511,0.248474895831049,0.245901891308411,0.227787044811158,0.204287289774486,0.193711729718691,0.190563072604852,0.189600468988198,0.18437900039999,0.189139082729542,0.200808842420435,0.215736580906167,0.232431975453798,0.245526098705991,0.256840147876698,0.261556013760744,0.265618859283477,0.267187240665345,0.264636069218007,0.265777907326867,0.264124876529163,0.265400412230403,0.266851839584018,0.263274037103386,0.263585565030654,0.266459758104524,0.266188090911074,0.26679070748321,0.27277685040326,0.277495117674194,0.278888946885963,0.275446884237294,0.270362356259106,0.267924911161525,0.263898513964479,0.25696482134069,0.254967873919132,0.245706112267913,0.250618819330832,0.253688051132221,0.258948284183821,0.259304698740427,0.263457773926082,0.264345501328071,0.266768855964534,0.266511066997258,0.263316352539748,0.264369196663631,0.26653867327589,0.26706388766803,0.263521002152785,0.2664530926557,0.264943591501923,0.264925721553836,0.267313242740909,0.265160339893238,0.266754621578956,0.268675115245304,0.263743778634285,0.266815098890599,0.26681948692592,0.266993171414582,0.265769705124945,0.267233414532229,0.267644258097811,0.263152797645303,0.263572011708663,0.266921017037673,0.264674455864166,0.264984412070834,0.263727789728773,0.264235865122079,0.265018133232518,0.2662277943747,0.2664937427165,0.263742778653997,0.266195676622006,-0.227293046654744,-0.293610150323593,-0.293916169855477,-0.290656594173093,-0.293247120805001,-0.290494314535181,-0.290945236658014,-0.290875450953519,-0.294064123866173,-0.293598758285897,-0.291779239339277,-0.29062528582628,-0.291416068991466,-0.291199716087916,-0.291102702416395,-0.292336621299828,-0.292530640615442,-0.293202223461234,-0.290438341044192,-0.294255792336271,-0.290702746228324,-0.291955711276916,-0.290793029264824,-0.293614269253133,-0.293732265449382,-0.293682878693343,-0.292234192237077,-0.292375314154236,-0.290803749441023,-0.291731734387585,-0.291444343740798,-0.292843704311814,-0.292062174658718,-0.291816708147544,-0.29227837758016,-0.294301712524093,-0.294155164475763,-0.291203930938714,-0.290290527918594,-0.293173890306405,-0.29393284387607,-0.293639112144608,-0.29180496019183,-0.29187637627431,-0.293024236917219,-0.291755540871842,-0.29297716168643,-0.293283681761762,-0.293031886073196,-0.293163974683753,-0.293973567826021,-0.291071863187058,-0.292599098777156,-0.293416681406693,-0.294160358719979,-0.293857775619772,-0.291868582550716,-0.293324143720049,-0.294666376666509,-0.290850305986754,-0.291788867610661,-0.293747352159493,-0.291798188929827,-0.291865472726518,-0.28843971717419,-0.289109256257263,-0.291314909296231,-0.285208115746405,-0.278688089095657,-0.275161196506568,-0.274376351278416,-0.271236761681489,-0.275871961982057,-0.278175271422524,-0.282802910693729,-0.289751571147795,-0.293062946385901,-0.294888470794732,-0.291816279122893,-0.292023411366667,-0.291256616692112,-0.291015931505722,-0.292403869771075,-0.294011901554382,-0.290424832758722,-0.292861895292236,-0.290968762768782,-0.294327408151906,-0.291844168301222,-0.292432397434404,-0.291246767695866,-0.290372600481205,-0.287427736729184,-0.281419566099291,-0.273948014963929,-0.256238637838669,-0.230197431381437,-0.208540130578732,-0.19630561823928,-0.197413115843348,-0.205955406797662,-0.220382075422409,-0.248427600270033,-0.268027312400581,-0.282475600472956,-0.29436791788744,-0.297290173754423,-0.299517696584191,-0.295677089276184,-0.293745047130721,-0.291599926093136,-0.293656030703381,-0.291955658928388,-0.292026357502335,-0.291066764225194,-0.294585915649075,-0.294036292018703,-0.293447609074114,-0.290590406084409,-0.280035119770603,-0.266793356019424,-0.235953892732325,-0.193102685704857,-0.149807629082536,-0.0874830452726258,-0.0266998139144933,0.00804493143879979,0.0113247016912581,-0.00242952687856688,-0.0224586274809314,-0.0869029678347678,-0.148503956449919,-0.206151354332276,-0.252141062058122,-0.277947984000334,-0.280721560049596,-0.284976400150118,-0.284430290967036,-0.288162664320548,-0.291338018185278,-0.292004677055523,-0.293598623857633,-0.291602575508813,-0.293818240805573,-0.29160565523325,-0.286095057949991,-0.274404887242262,-0.244116286085268,-0.196858066934995,-0.126647373577001,-0.0385689907065709,0.0617805252612323,0.166585677422219,0.221562623497161,0.239552106947408,0.254070793665225,0.254838015006688,0.230728630293212,0.187917321429851,0.0987222796228184,-0.00482762120125389,-0.0909244692775666,-0.161013845336713,-0.221304698872955,-0.261757323770985,-0.269396229639407,-0.28279449793491,-0.290738684477342,-0.29028258046631,-0.293229719422685,-0.292582214785889,-0.294519201884355,-0.286678265011895,-0.276552914777545,-0.255001247492722,-0.207160725824475,-0.124165874741721,-0.0233423806225305,0.0983796983954691,0.19891858290291,0.271857522924845,0.313840232965329,0.332339680746919,0.333266229955924,0.322219864995193,0.30478688831049,0.274062261398668,0.214573884295198,0.127264608309916,0.0227740526448621,-0.0696355361165237,-0.158022995339864,-0.229154633431697,-0.258212797582473,-0.270894808205182,-0.288345317855363,-0.292167295449128,-0.293430273752265,-0.291214750900502,-0.292277341426358,-0.286495192559595,-0.273794769239102,-0.241026058860209,-0.182279975029458,-0.0802561263982866,0.0368169401561101,0.134609804949052,0.229192374649612,0.28515909538892,0.29781979538057,0.272554209585426,0.248242499047564,0.235142158817718,0.233972815863657,0.226691514718738,0.201245777574546,0.157002629296469,0.0672371463954385,-0.0195601182646594,-0.121741511988751,-0.207988141255116,-0.243481931489575,-0.268309978260318,-0.284679473875633,-0.291247478318176,-0.29324598965808,-0.294193479162416,-0.296376649212776,-0.288800215286879,-0.276379583420746,-0.239447185261147,-0.177636792259142,-0.0920261570132834,0.0283247494699194,0.124467895261713,0.201713501327521,0.211413942891318,0.179839703169301,0.105813055170413,0.0454408288241434,0.0315952399803208,0.0708007053331259,0.103070235405239,0.126935029190724,0.131440198912213,0.0909198906510501,0.0205416220204863,-0.0817070292944161,-0.185902851741297,-0.231668260424273,-0.268027852219703,-0.284468901034675,-0.292027134826045,-0.292317170886955,-0.293633506879857,-0.295402954577563,-0.294146757331371,-0.283663316590119,-0.248768874896929,-0.188166238229078,-0.0996204209799651,0.0193456762250136,0.0968605339102325,0.157673668902068,0.134508526102885,0.0604629722251848,-0.0517943901909936,-0.128284053288481,-0.11522962542333,-0.0328249470734576,0.0458390352368907,0.100230134939039,0.114073507542485,0.101748027595309,0.0403037132858213,-0.0553278180688268,-0.161330648469986,-0.229607262119976,-0.271822157100969,-0.286875092863691,-0.289815510027832,-0.291275678722278,-0.293208719049733,-0.29534882853498,-0.29788926099959,-0.289002913952016,-0.251499456307767,-0.198164791315553,-0.0927570163823393,0.00911964325564781,0.097584375136328,0.123168719397271,0.0904447071042293,0.0103004418254067,-0.102816032934091,-0.152469084908896,-0.110717436301333,-0.00686316747150207,0.0744343463849477,0.111754291428422,0.114693621025584,0.0964642394572367,0.040122865015004,-0.0441381272494761,-0.159031492099357,-0.233890324173566,-0.267288339293528,-0.286601808842368,-0.291707333590236,-0.29070072758944,-0.294724123531461,-0.297027193283145,-0.29353350984922,-0.288303179182049,-0.238072149730611,-0.177107605336195,-0.0831572858783935,0.0180712029324221,0.0965101455390398,0.116495265563967,0.108828801867023,0.0609606474690493,-0.0214033829085753,-0.0513691399991992,-0.00401307175576919,0.0769996512461289,0.122225103361502,0.125887495420319,0.100140116289742,0.0606326261515227,0.0146525272600192,-0.0701656845833275,-0.161053033638118,-0.240875000422794,-0.277733664195688,-0.28693359271574,-0.291120648174981,-0.293146360485275,-0.291331504643127,-0.293435364814876,-0.295598530685957,-0.282678706785726,-0.229424209351278,-0.169917674414919,-0.0813229636814884,0.0196835460977082,0.089665220726507,0.127793783768075,0.164922722829528,0.166019570827937,0.112347282880556,0.0907998689050705,0.120397845249843,0.158443937174083,0.161867166761724,0.120694025579065,0.0748044287331045,0.025726728961533,-0.0279973215680538,-0.0982499186122994,-0.17366663491291,-0.250912396581056,-0.284278679850633,-0.290522750962846,-0.293326963954456,-0.290674340697689,-0.294157263376712,-0.293585628759335,-0.294360837989194,-0.274931817393196,-0.2217481356048,-0.175777733348111,-0.0777865287422242,0.013396111103565,0.0767666089267052,0.13627863567139,0.211604115198769,0.257874624181133,0.215029293343416,0.182441169745917,0.179574178275326,0.187662267878798,0.166635324332885,0.119813111196857,0.0573230341299754,-0.00244514791603277,-0.0514021095666756,-0.111070129110465,-0.182685842933758,-0.256065292441278,-0.285979088032465,-0.292155788150672,-0.290955837399904,-0.292512918019458,-0.292218506397882,-0.294978895642128,-0.29301937755105,-0.278431024031618,-0.220517262129087,-0.171974074898574,-0.0989744017406529,-0.0190729013357101,0.0417687711432569,0.115303264626838,0.199243417762768,0.248531916329076,0.206124646836324,0.174315104083565,0.152225157794589,0.151429018537515,0.12990503532472,0.0781566241582087,0.037421992026945,0.00841761639513603,-0.0504087131631611,-0.114272588516501,-0.188103926059668,-0.252086780961956,-0.28801827161661,-0.2918688808099,-0.294194699889245,-0.290347959912867,-0.294199746198261,-0.290222463847531,-0.289660303128895,-0.270491209997846,-0.217601646106396,-0.17713437782625,-0.112573420739474,-0.0537718907163487,0.00862108451882369,0.0802630160720715,0.152300640007781,0.179872952657267,0.125451954823395,0.0776987806026147,0.0517572530792587,0.0738183258666577,0.0577161293320241,0.0446254831269714,0.0387177726421225,0.030936231354875,-0.0261753200899165,-0.102249648044578,-0.182503473332892,-0.247036641718208,-0.28053454848758,-0.289817910230847,-0.291101112789976,-0.291607104974885,-0.292431229754758,-0.292372719431228,-0.28350062872883,-0.25591596825328,-0.189120731154247,-0.135137200266039,-0.0903645764104356,-0.0512925264874522,-0.00540682978066156,0.0544123762400307,0.108814959018201,0.099367324307889,0.0152468863881142,-0.0558173475714512,-0.0577544941303894,-0.00588402722918922,0.0357967183014665,0.0438138370616234,0.0700270144992042,0.0712601726062492,0.0176999165185879,-0.0734790472581473,-0.157282635585909,-0.240877440415584,-0.277211811728475,-0.289946064087862,-0.291900081559954,-0.293567826319705,-0.29314610274316,-0.293284688042078,-0.280676413447977,-0.23445959842661,-0.152610775305866,-0.0882745205047618,-0.0309107884714162,-0.00189017042404915,0.049991898121058,0.0852185055442028,0.0915333832182858,0.028438406891353,-0.0852344293001095,-0.149948264959276,-0.112279734281578,-0.0207354986457701,0.0480901509070437,0.0925970250927721,0.128265884830889,0.12542971424299,0.0621925985076584,-0.0424262838820791,-0.148347188653645,-0.236341850093727,-0.271733257341059,-0.289121002227606,-0.292723416364977,-0.292098480188757,-0.292427166602609,-0.291084461255073,-0.275211359324371,-0.210127029950461,-0.12407082525213,-0.0351953615171267,0.0383277671084975,0.0869495985619804,0.113828754852469,0.118696016221363,0.0841561243381085,-0.0272910629404793,-0.169735946836666,-0.188010356736336,-0.106538416284179,0.0115413942172044,0.103254773014788,0.16071458808956,0.206493495745796,0.169857216089702,0.0776161577404134,-0.039149396484566,-0.150409339004564,-0.2263315005038,-0.273598606209464,-0.290305839423593,-0.291543911039267,-0.293252851116585,-0.293939448034381,-0.289528969096113,-0.2674688121278,-0.202861358856086,-0.10257289292957,0.00848763026170534,0.110238083644539,0.167522802852255,0.178457174360706,0.146865776107745,0.0567300238514001,-0.0899012016855538,-0.188808949558692,-0.17090990438537,-0.0619918654648548,0.0786581974145718,0.180915553266455,0.235704654700327,0.240873783428261,0.177998656553671,0.0605993312912371,-0.0596835432894268,-0.172719755878218,-0.238319314188116,-0.274983282600096,-0.288935252896261,-0.294361054302627,-0.292338478802771,-0.290859257754998,-0.288188230015163,-0.259209852850987,-0.209521214191565,-0.10034148388528,0.0352616866623747,0.153727494861066,0.202513641851312,0.205296203139458,0.161364536231803,0.0457985471058187,-0.0540408236866868,-0.108650429843718,-0.0725818704560052,0.0424226201164975,0.157426707852113,0.2609858369199,0.279161772740062,0.241221386322191,0.13412127816201,0.0105617229025277,-0.105301781243221,-0.205841946054376,-0.259775081843273,-0.280730291904289,-0.292801820510749,-0.293293418178955,-0.291812914700931,-0.292794515376294,-0.286268155451574,-0.264165936150047,-0.220489389542613,-0.123209894763756,0.0205458113212529,0.159611809550882,0.224218392154566,0.239983065758039,0.2013416183533,0.121374981337222,0.0620569079316577,0.0481314857837912,0.0959937014292292,0.161492427876617,0.240784074503102,0.277293929324015,0.246923838118948,0.174827684923137,0.0435534875463314,-0.0756669599517839,-0.175387274200287,-0.239620836702055,-0.271485062056912,-0.284772393078605,-0.292502431693426,-0.292617558149254,-0.291398833909169,-0.290505793680524,-0.287970584969376,-0.276465830608379,-0.241035845873384,-0.161305315587909,-0.0338094721560141,0.100874845091845,0.203248436829208,0.23880766341008,0.25350250576706,0.236763598227267,0.219262906649087,0.206980563816753,0.207515129087049,0.223553556327127,0.239706744222771,0.208757777966095,0.149318378182153,0.0292092072210705,-0.0817866102651711,-0.164476711290616,-0.226782588506374,-0.269325848875086,-0.28300934520132,-0.292576405789207,-0.290501053631464,-0.290453297019294,-0.29424850246136,-0.294043424109914,-0.292182295451121,-0.283391179306793,-0.264902757746451,-0.219550894579521,-0.129231758575316,-0.0181109724230243,0.0857190561151737,0.166206637426822,0.205974058030408,0.25276099732226,0.270889243875015,0.258559606992663,0.223510327239303,0.191394802504125,0.147680068564011,0.0764679582224821,-0.0145083617689853,-0.124594981307284,-0.19465118313974,-0.236749495947771,-0.26570684552088,-0.279848187669309,-0.288628739140631,-0.293564952435781,-0.293616644164543,-0.291625275138318,-0.294091112470233,-0.291331416421133,-0.290837628054292,-0.289860940682461,-0.283161326411683,-0.270708235761899,-0.231159597822396,-0.180803709160414,-0.111727805885631,-0.0383887512909362,0.0266128608057048,0.0845853388959111,0.113155128709829,0.108833930514883,0.0747694412408485,0.0262608085740031,-0.0427825031669434,-0.110184286231301,-0.175771260719017,-0.22442608132816,-0.249957456246944,-0.270854977956603,-0.283800148037215,-0.288733565523637,-0.290663542957602,-0.293199279877495,-0.294575098124915,-0.294017449055049,-0.294080638169059,-0.291144623430746,-0.293530896373298,-0.29426839871836,-0.291255157228514,-0.28821231470804,-0.290876036223448,-0.294943966005906,-0.282154579450588,-0.280307875257055,-0.262815452654404,-0.244228077643151,-0.227592743322413,-0.227013689455912,-0.22444176708869,-0.220068685791502,-0.226544020306197,-0.231501488392063,-0.244456938004121,-0.259217857286088,-0.273137157869151,-0.282850157633251,-0.287858601524572,-0.29237578193616,-0.292947530824732,-0.292822485476455,-0.290507515118089,-0.291169424264446,-0.294144772120256,-0.291917807669807,-0.294175575838983,-0.294515939206027,-0.293580397655304,-0.29221484232296,-0.294087044979063,-0.300437431708715,-0.307276094966469,-0.311105172013212,-0.311378666109613,-0.305012577142263,-0.301891768009624,-0.297956246158324,-0.293086547388739,-0.291868104792734,-0.281877323892071,-0.282756878219189,-0.283279308536655,-0.283934070105419,-0.288642575821183,-0.292644847503151,-0.294162589780832,-0.291068164834449,-0.293961778248324,-0.290758390834552,-0.292359412694858,-0.293737338572693,-0.290856548271782,-0.294135188301655,-0.291153446120158,-0.293916920320524,-0.293533614115201,-0.294892546116542,-0.294573145990546,-0.295142405107539,-0.292665824277176,-0.291633992069318,-0.292262447612315,-0.296364886445573,-0.298551674868171,-0.294897266585654,-0.297319349543979,-0.297197452948011,-0.294534378160956,-0.29511709537679,-0.294664076495505,-0.293613785163147,-0.293495616967531,-0.292945160327511,-0.291457987382475,-0.293386414594473,-0.290638520102156,-0.294229505067725,-0.290959276855355,-0.291208403029162,0.24948216567139,0.317505170684809,0.320394918144547,0.321438451318527,0.319297100194652,0.317924613725513,0.318352038380356,0.319458492368378,0.318607298559986,0.320275428153692,0.32139782259424,0.317765100997185,0.318922932264078,0.321111850285489,0.317375168691759,0.321163752238894,0.319959073479145,0.321666025876295,0.317569689441155,0.319204782052912,0.321017511127397,0.317504072626972,0.320513332064255,0.319167324541475,0.319408718013074,0.32020264554558,0.318054232801191,0.320545928095368,0.319477384104093,0.32117183192898,0.321100327534387,0.321457066480974,0.319596321042029,0.317934040791726,0.32144541269652,0.321336883550328,0.317281745252309,0.320526832816439,0.320668290996503,0.317556156794981,0.317726507725283,0.319715056051897,0.312655597793651,0.315593635022976,0.315734613208579,0.318236957869405,0.31549671885976,0.316612036388636,0.320993587518347,0.318705116635002,0.317052148003861,0.317496333252358,0.318795784387714,0.317961976745207,0.317744895284085,0.319704713403064,0.318867045713723,0.319788904627365,0.318060710476107,0.320242639878949,0.318954998832802,0.317744591306669,0.318624372236481,0.320161225363828,0.318390085946931,0.31935898014044,0.313440799139873,0.306327246365197,0.294398923265472,0.280312064218675,0.274079569021228,0.263696520472764,0.26635008464293,0.276984877921263,0.27638833335572,0.286517030921799,0.296083733391304,0.305894276338311,0.310532322894722,0.315288505065743,0.316852348196217,0.317719986037818,0.318714294847981,0.320613178558108,0.319955755166775,0.317375829285231,0.318265798755101,0.320736558237521,0.321765264527045,0.321370871417948,0.318988445702149,0.317642899361049,0.312138127212761,0.308221118500955,0.289069246290919,0.264604433894969,0.230523954179182,0.197499203760796,0.173999907664627,0.164961834557839,0.170247961148027,0.190663154061588,0.218129607147098,0.238866710744616,0.272709997094114,0.294923492230295,0.308584467488861,0.318345024100388,0.319093769368514,0.319813960199202,0.319841185484685,0.318413979373558,0.320413816557952,0.320837429104169,0.321245044987361,0.318708752465892,0.320154307351697,0.318138126676201,0.314361297572224,0.307259596812009,0.293190976312296,0.263978802877081,0.211193094974971,0.15214422062443,0.0842573503499619,0.0168638075937692,-0.0262486544711888,-0.0357990552877913,-0.0280268459481856,-0.00355320993161688,0.0550317878333464,0.118279918654748,0.190140213979139,0.248970587466425,0.282961071716708,0.292931814706521,0.30706951028239,0.307601423538669,0.31226705035328,0.317215497791495,0.31824526725587,0.318767114243143,0.320325973640834,0.318376549403641,0.32033909737103,0.31374143621161,0.30453181551524,0.272909349178776,0.228235563731916,0.150764299092371,0.0578740813353773,-0.0503428752064844,-0.163487385126417,-0.226233437021702,-0.250594937850439,-0.268658434589131,-0.269012975399573,-0.245776965592858,-0.202003998085185,-0.106212138870164,-0.000174490170135457,0.0907936486253159,0.162345295017497,0.226348533637202,0.266310810890687,0.286137657471849,0.304022081539847,0.315733870879173,0.318008573456007,0.31823646179307,0.320453022181037,0.319405968770126,0.31689927735958,0.304700767391804,0.285017064803011,0.238093126470056,0.156570241576046,0.0502014841918392,-0.0801748251110475,-0.193059201477329,-0.27780133353151,-0.326684262392206,-0.35187332839399,-0.352048487246358,-0.340350673189602,-0.315751417736407,-0.282656766076715,-0.216521436344518,-0.124281057925829,-0.0192265345248198,0.0720521397380441,0.159249291227626,0.231906469647103,0.266720859724138,0.293957220627424,0.311108031866496,0.321218201783635,0.321651281896017,0.3203182754501,0.319058899124161,0.315844688960507,0.305293033080365,0.277069177422586,0.215167674762275,0.1123716648791,-0.0104417919274227,-0.118533480840038,-0.23076926926719,-0.300219707793731,-0.317741545871979,-0.298215413932982,-0.270448583752166,-0.250241348617881,-0.238115240663714,-0.223557067511654,-0.1896045595894,-0.142207093239111,-0.0604373755058789,0.027894681564783,0.12497307201648,0.207255545922032,0.249229578900002,0.286970710539895,0.312670506955159,0.319904498476816,0.321284651568179,0.31930810522135,0.323689279194288,0.315121380022283,0.305540927032737,0.27412994306743,0.210299332778798,0.120971305619074,-0.00961651021929484,-0.114269256208948,-0.20564148214203,-0.23081961909208,-0.214207987849307,-0.139132938722663,-0.0698707871909198,-0.0373258324110965,-0.060076197671306,-0.0828165200616494,-0.101979347842385,-0.103339863953014,-0.0673924505961228,-0.000800318201636889,0.0979014018296805,0.19624178760182,0.245829237040734,0.284767563809949,0.306831320945102,0.320479788829501,0.31959878239196,0.322307857903567,0.321626499871091,0.321955923506885,0.316059728294352,0.281051527264209,0.21818984123015,0.128073557976835,-0.00488316628638143,-0.0954385717173705,-0.182268304804443,-0.173291423262781,-0.104907483620487,0.019505552608629,0.110824519674364,0.122053861987897,0.0593966483993948,-0.0152879692203417,-0.0633219014954518,-0.0782354662003989,-0.0646648057934245,-0.00542974894292301,0.0815386409506335,0.183446476068062,0.24948044715258,0.297194376751012,0.310425574199019,0.320834890224135,0.320110665407542,0.319303575747048,0.323701479687653,0.324690833945811,0.319471624368122,0.28547041237925,0.226984817583564,0.109410319074026,-0.00185150944210048,-0.109869915725475,-0.163546622115193,-0.142920124536189,-0.0554770079219772,0.0674981115630328,0.151286909332721,0.134737581696662,0.03946425103305,-0.0374494481107645,-0.0725510391975804,-0.0741395311761491,-0.0618657812265322,-0.00896394580995784,0.073102876181221,0.185638171990095,0.258767110418619,0.293698971293487,0.313279842464215,0.318548959277764,0.317855513736846,0.321944242981372,0.325483568966296,0.323235596593102,0.316579843281103,0.264644085722127,0.205134578303179,0.0992893620827288,-0.0231225457447816,-0.125151094234158,-0.166986023018378,-0.169556061113641,-0.103937509190946,0.00136786153823535,0.0575294384277274,0.0311127056161194,-0.0501328105877989,-0.0938889561546336,-0.0963566512180779,-0.0717701680713635,-0.038605845463054,0.00274554994327383,0.0839179733664113,0.182598081945123,0.264659668579055,0.301318909517969,0.315219215879252,0.318557141474498,0.320382689542386,0.319703520693663,0.322578091934253,0.320595902632078,0.309076693145698,0.259772387608543,0.196806610865052,0.0931514974942882,-0.0339845320820327,-0.128082408991666,-0.183356584953109,-0.218377794759292,-0.199074009438207,-0.118960582913276,-0.0861781406737558,-0.110215429973992,-0.148443514940151,-0.153985979768972,-0.113400812520185,-0.0737194410267253,-0.0328483947677164,0.0252997401484877,0.0987806360843708,0.190104796597138,0.275413543905169,0.311737168838484,0.315573098313715,0.320970230144283,0.317885253646236,0.321658892307604,0.322017523596909,0.320121961763606,0.302878332146193,0.25375121443754,0.199822351884687,0.0812110642334992,-0.0329255538065266,-0.122457679046881,-0.190569378470675,-0.257349367063217,-0.280419408621682,-0.220240252936848,-0.185651209610281,-0.186665761522402,-0.201083431556322,-0.182037799459437,-0.143672741666861,-0.0830438840226885,-0.0292663372903025,0.0254248658625794,0.0997872009939261,0.193441578311091,0.276153357203463,0.313538516039202,0.318323559603712,0.321331420684985,0.320869785300825,0.319397795806504,0.3205321474687,0.322371127444079,0.305582853489965,0.250468497486411,0.192452815825264,0.101256430392065,-0.0104453353953326,-0.0951354245989875,-0.166988864644349,-0.234046700075524,-0.262805238775553,-0.215628866819268,-0.18343320308139,-0.164278512464169,-0.172830583664749,-0.160268710434961,-0.11141987231604,-0.0801213634200471,-0.0556700812543108,0.0156030319546814,0.0983299865979113,0.194715543110186,0.270183646764734,0.314684599227163,0.316188796525772,0.317164148519261,0.318853721715579,0.320639408987582,0.318648150139647,0.316020260132404,0.301942471945943,0.248886668914458,0.197933360456454,0.104815673387345,0.0183573900972277,-0.0637899063208852,-0.128419856598505,-0.17680707143799,-0.187192768108172,-0.131191239269302,-0.0892130002339966,-0.0658266790646565,-0.0881042745746766,-0.0790871528420159,-0.078719178761212,-0.0851982169550223,-0.080180389928177,-0.017094480659218,0.0834848817094715,0.185838714686857,0.26755430956428,0.304042933137056,0.316365659392791,0.319197881487022,0.319121431455345,0.320040999818153,0.317032451221227,0.310466675700667,0.284031101095263,0.215956193842174,0.152036498045694,0.0787817220098755,0.0136425230368488,-0.0461213022203174,-0.0961841375017454,-0.127502010094219,-0.103467788147798,-0.0198689847977377,0.0453167071700937,0.054028273346252,0.00111587375208043,-0.0437024502258898,-0.073571983048059,-0.117116384686646,-0.124189863777075,-0.0604470013764348,0.0558751638251827,0.166583836645527,0.264778032133918,0.299812726960503,0.314814212329627,0.317832186210995,0.318589665906943,0.321295160027321,0.319614964947983,0.306459400419934,0.260410906879149,0.179177097557233,0.0956187595248926,0.014881220382128,-0.0352526990151767,-0.0999382851148472,-0.129080354464153,-0.119086337958051,-0.0453567168926327,0.0756283582620993,0.1410284952513,0.111522529407832,0.0224016269076362,-0.0650241484859573,-0.130446247726053,-0.181760722907377,-0.181944962285341,-0.0940491607855592,0.0306315167885472,0.159902378947103,0.256053616890677,0.295726856642113,0.314256771070995,0.317960040804618,0.321115823673054,0.321149223004347,0.318578658147317,0.303587019908557,0.23582033958313,0.141575721353439,0.0400724617880361,-0.0580753634119685,-0.124972178368724,-0.162425657145772,-0.170470788799009,-0.12527211082219,0.000762763623081862,0.15200524957489,0.176121114519079,0.101479457840422,-0.0269099531474322,-0.133969890887365,-0.21502478250931,-0.26269309056181,-0.216692855970044,-0.101163294015076,0.0372259310228683,0.166588522721625,0.248297578266858,0.296821496977898,0.313391036163187,0.320831531818659,0.319370932146688,0.318412490359532,0.316142345836654,0.293240762783067,0.229029466613921,0.124271265198665,-0.00490139194019607,-0.128587398697207,-0.195505856992566,-0.221031167178508,-0.199838961917018,-0.109698703239798,0.0437872239087883,0.149383346238877,0.14086329305703,0.0307862087199591,-0.117773085336078,-0.233020119813166,-0.292698660734853,-0.288751641229453,-0.206808145044369,-0.0721616690143559,0.0705878086001022,0.195924663941733,0.260759184085047,0.300412118817175,0.318578572522815,0.32071298310524,0.31828769197448,0.321336190388862,0.315746828263264,0.286367909165428,0.23702010753616,0.121990804374457,-0.0273099484623707,-0.16206388847188,-0.219877187706639,-0.239147476236888,-0.203129086784209,-0.099943692447368,-0.00611066377595398,0.0472347675924223,0.022670252653984,-0.0901029849850626,-0.206103949589176,-0.306344180308034,-0.318116111604753,-0.268047927058261,-0.137830442936845,0.00313021140820842,0.12539871259487,0.228989833619378,0.281363731240259,0.307996900967443,0.316968037147656,0.318868477155609,0.3199698166204,0.319608571187726,0.313361947175604,0.291044577439798,0.243460161508078,0.147889639303175,-0.00333136769791455,-0.154122264890323,-0.227759312653973,-0.249495379533787,-0.223063451708191,-0.155777119399397,-0.10717686649378,-0.0917723969777173,-0.136338889539925,-0.196763721452773,-0.267779469988795,-0.306320451092053,-0.261567986122545,-0.171516503596088,-0.0280191312029686,0.100353077555889,0.197632063733774,0.265835509881457,0.298347450673181,0.312471911638114,0.319872451404041,0.320711736747319,0.319571208798777,0.32170900467877,0.31314958677891,0.305246295838663,0.266774559992919,0.184795379228451,0.0528385160057186,-0.0872048849583609,-0.194624315161785,-0.23401213330588,-0.25046915436221,-0.236685456083744,-0.216183998497184,-0.204834610489646,-0.205218546075858,-0.220555653459151,-0.235024146181224,-0.202898547842774,-0.137879870077381,-0.0110194273301758,0.104112390350843,0.188509725506216,0.249882059229496,0.293974543450916,0.310095648143727,0.316361919168349,0.31906718419621,0.320180537054773,0.320897288877487,0.317493352741913,0.319052418879438,0.311111583139081,0.294010932216591,0.247314545974741,0.153601061480303,0.0403456095785731,-0.0679186714989216,-0.149710855189884,-0.189090022994523,-0.238073535319202,-0.253111334559175,-0.24156155909023,-0.200836139570458,-0.167259415642864,-0.121967321312431,-0.0524324580807513,0.0455713796233572,0.149534651094564,0.213808109896844,0.25771691648015,0.289799841736359,0.306956093621169,0.314053020549975,0.316774153975762,0.317595757932942,0.317521554936811,0.317317125660825,0.320890461713775,0.316797606494256,0.317994851554809,0.310714442591846,0.296199982937734,0.258724898624122,0.207377816662488,0.133330767897657,0.0585439736827907,-0.00381684017540696,-0.0576437332223766,-0.0888131283700486,-0.0865278148396931,-0.0470969456001205,0.00586254951646575,0.071248640888922,0.140248002459528,0.20209720008181,0.248216494280034,0.273779854205267,0.295480246635977,0.310503893197524,0.316662974850052,0.316378739818649,0.321207551741511,0.32128300367711,0.320985588776632,0.317292731581929,0.320692089578668,0.320732570789767,0.321375734770449,0.317207994917463,0.316522364319189,0.320183292857499,0.320806369136707,0.308332370865929,0.306988918071491,0.287630207083543,0.268338876681623,0.250417931641621,0.254619071140058,0.257573353788785,0.253568075765426,0.25772207802519,0.259883757719868,0.272194908014763,0.287721393253533,0.297761222880785,0.312774276468251,0.317027666897573,0.317823216363757,0.317963211545003,0.319772193591332,0.318946553092917,0.320260412926044,0.318907612992144,0.318758231329005,0.320635323097746,0.32096977118189,0.32166161330682,0.320020032885157,0.321654955318412,0.33219670281425,0.332701688688798,0.339781527590984,0.340739194192695,0.332333135567165,0.330268898224049,0.331400661566844,0.324790574150017,0.319557801345476,0.312062621817243,0.314859477487156,0.311497699988234,0.314167749893116,0.314729629781566,0.316891602553536,0.319702865529224,0.321366121265156,0.318106612911621,0.317358000554363,0.319924992382468,0.320970286848588,0.317713707803373,0.319531085329454,0.321306145912037,0.31899118922694,0.321382690381098,0.320493690535238,0.32105302812163,0.322145633717428,0.321690772863549,0.319299716921783,0.320614652090721,0.320975731787541,0.323839943948557,0.324010234936399,0.321646058651981,0.323792103526705,0.322128195994447,0.322900261071209,0.319746040668298,0.320770057967812,0.319075808270881,0.32068225613777,0.319065110282066,0.32060529821628,0.31965461931589,0.319232568915192,0.318084495841972,0.318750137863803,-0.275173183959152,-0.273034623053001,-0.274508845775752,-0.276225865912679,-0.276441840686714,-0.275648643679801,-0.276705525787183,-0.275829465046136,-0.275528575676216,-0.273166220165434,-0.276029058922959,-0.274894775425349,-0.276518847990306,-0.275829742145101,-0.276042761623776,-0.273505888416856,-0.273652550256825,-0.27507769727266,-0.276785458626122,-0.272831797505073,-0.275263766964504,-0.276139530166123,-0.276496348864358,-0.27360713148118,-0.275084991527009,-0.274370872535393,-0.273375722369268,-0.27603322430931,-0.27461535331817,-0.273981676052653,-0.273739125657485,-0.275477639161975,-0.275558602198557,-0.27567963780582,-0.276739225770935,-0.277098812837537,-0.274897971275688,-0.276793552646193,-0.275848168963739,-0.26827044427558,-0.269817370266268,-0.274355833802465,-0.265664649819138,-0.269625355120375,-0.271033733263324,-0.27124896414937,-0.274567071491023,-0.274137920540679,-0.274773177744958,-0.275904974344312,-0.27638191868173,-0.276511403800631,-0.27407173518922,-0.274926124316682,-0.27683349391465,-0.276490588195052,-0.275793586875966,-0.274426613992314,-0.276987364278158,-0.273406647164992,-0.275190047192737,-0.2736049377224,-0.275893228152851,-0.272756796893748,-0.271954134217284,-0.273235984782474,-0.266101655387643,-0.249714086136114,-0.238442192714152,-0.22831345726616,-0.212236940792968,-0.193605792535804,-0.197817575377254,-0.212456159419495,-0.214518842432915,-0.220902838401724,-0.231081598025523,-0.246552442116053,-0.259436827211846,-0.27036014152095,-0.275107818604095,-0.275326317553803,-0.274705196064654,-0.273699681886402,-0.273654419393003,-0.275305271145273,-0.274312479457046,-0.274810463877105,-0.274938239912819,-0.277536481196264,-0.276390116140324,-0.274051624253363,-0.271858294401729,-0.270451774989051,-0.250966162854778,-0.231281943331704,-0.211858550717462,-0.185463945639643,-0.151940975425576,-0.136086071603578,-0.133158930274061,-0.142994989774128,-0.155124310101387,-0.167382220660641,-0.193963371330509,-0.228633764896044,-0.251708004630135,-0.260895084166142,-0.269701878947235,-0.274212559060988,-0.272193196146878,-0.272599342756449,-0.275662278318786,-0.273245098949752,-0.276854271115045,-0.274704577324957,-0.276304226680445,-0.276950166335229,-0.274680168573326,-0.271501886945708,-0.268425042948332,-0.251184267301522,-0.223929940997269,-0.184854514720846,-0.149353649746696,-0.104505065447169,-0.0714378808231158,-0.070667729711681,-0.0726197046825361,-0.0693145069235991,-0.101177668242075,-0.127808816091091,-0.178244615994469,-0.221076256183334,-0.237388012465841,-0.245304368392362,-0.257483556014438,-0.266783873180707,-0.271551452761179,-0.273378337760102,-0.276031030522753,-0.275877114221958,-0.274057317795731,-0.2747658403141,-0.275818991431722,-0.270513312324441,-0.26809386362549,-0.254727575263739,-0.232960979629352,-0.191131294123984,-0.131492180397154,-0.0560556850308743,0.0287136320907997,0.071670475449362,0.0873832640956807,0.0996256300087383,0.0993325529251047,0.0923687583760726,0.0697302154094664,0.00965498328919212,-0.0631021474732918,-0.123887138174303,-0.15721378941254,-0.197883966020157,-0.219403648279489,-0.239559595699823,-0.26059756524241,-0.269537687388934,-0.275645624191624,-0.27662532265865,-0.274727059097756,-0.274919070262202,-0.276872053753004,-0.268500259667215,-0.258741503308721,-0.240367514784988,-0.189265005941938,-0.122270553789866,-0.0262599438419926,0.0722442745867303,0.154070653745256,0.203207843204952,0.243567071441619,0.246710678558588,0.239747138867333,0.221201739602557,0.190985253494872,0.114441278897763,0.0216404542007213,-0.0475820642917639,-0.107107076439748,-0.158283064065412,-0.200775865048138,-0.214207161207252,-0.247149663999611,-0.267852442690585,-0.273161166643792,-0.276735306977684,-0.275866708821573,-0.276898676807349,-0.273168377354145,-0.271238712249069,-0.256072064031206,-0.226549061184187,-0.167978935588512,-0.065136508679881,0.0243111506522518,0.140870641211255,0.232459735266253,0.275287680397799,0.278463645200891,0.25739628905286,0.237031957416075,0.211424932711716,0.175772777316295,0.11099762573133,0.0407415971851555,-0.0306676696149952,-0.0844855645699515,-0.151618762169456,-0.184747067511606,-0.205585582331547,-0.24408687959178,-0.26630432040841,-0.272868474558303,-0.274584612620343,-0.27576687584354,-0.276245947836491,-0.274837411798376,-0.272049737632825,-0.258673580081122,-0.221921530964503,-0.162819335131378,-0.0548697174189368,0.0623787051859572,0.188560374620012,0.254692393831313,0.251746960260596,0.185533156572408,0.112484746473217,0.0666580726962082,0.0596340542486064,0.0515857079768285,0.0382268525357419,0.00749733118538863,-0.0483262446751707,-0.0896457233261754,-0.1473965375708,-0.194010999080671,-0.20998996478986,-0.240980801547138,-0.260168334987284,-0.272915798796078,-0.274451716126593,-0.274478816962661,-0.280191826917583,-0.281321089369398,-0.277885948380965,-0.25829779586374,-0.224542558371119,-0.154565206350676,-0.0216610637457928,0.115370324881154,0.231244111605181,0.245426553994735,0.17525763008947,0.0441079176801057,-0.0745808038468059,-0.121678287604246,-0.0818849778041811,-0.0233662581654644,0.0166803807631921,-0.000797018919696489,-0.0409151143398824,-0.0973604074855104,-0.16072450492231,-0.200067160445839,-0.223683949417874,-0.249460858022934,-0.269297094105885,-0.276292373228354,-0.275368268426128,-0.277095567064502,-0.279057478239693,-0.281870274634809,-0.27791152001003,-0.256404441826418,-0.222668846522757,-0.108525530210119,0.0303084143473709,0.176031006490275,0.247121865665157,0.213375079097135,0.11021631102083,-0.0509141620458423,-0.170254623173094,-0.170116103343354,-0.0832311783299521,0.00627594972379376,0.0411829366640922,0.0239340977697621,-0.0252921323912202,-0.0980804194575855,-0.167362665660122,-0.224525920005066,-0.238540318068178,-0.250168364875858,-0.265825678253462,-0.275001062528225,-0.274706419966412,-0.274731330918568,-0.279666980101368,-0.279448158805382,-0.277206454684391,-0.241973021162616,-0.192932973277007,-0.0781836366707894,0.075205403622199,0.202047911691265,0.242257651036411,0.212804571744361,0.110296124394304,-0.0258904764885045,-0.0951424621159413,-0.06653347720949,0.0281755036358074,0.103761247478148,0.11717627439194,0.0606401233032546,-0.0145748362106395,-0.111239474713952,-0.194869968931083,-0.244975134484121,-0.256330220372476,-0.261103128789049,-0.269532442849165,-0.275546596737792,-0.276293484951586,-0.275816272884436,-0.277506973142706,-0.275163975247892,-0.266518888984408,-0.233505019717733,-0.186232482678714,-0.0694314649577016,0.0876224278346093,0.196118517403442,0.234834943408554,0.241232539186826,0.186862177996195,0.0978260862115046,0.0661072094720274,0.0982413525460795,0.166647979062208,0.20378532211197,0.165596143694617,0.0947523361879494,-0.00708355806521398,-0.118382754163324,-0.20978259334147,-0.261631445239845,-0.269481670244154,-0.270426393473707,-0.272477975460256,-0.274210680817279,-0.272877208650393,-0.275824184302396,-0.274079032810831,-0.276485448290752,-0.265493803452083,-0.246633063488946,-0.198540523161293,-0.0701952926566515,0.0773751976749163,0.178890020583751,0.232635796213388,0.273609567899663,0.272447362285137,0.213728407328429,0.200410060634314,0.21563910042774,0.255064066460677,0.258368439948536,0.202804013059416,0.0987136923180148,-0.0113783266184292,-0.10784311455567,-0.192981360660655,-0.262335661940619,-0.276460784638891,-0.271263200831859,-0.274211597602274,-0.275781411218395,-0.27273801005668,-0.27588590461449,-0.275280978728294,-0.273723947538888,-0.27075173517024,-0.266220921046027,-0.23176285529006,-0.102417823350042,0.0461887507692263,0.147467756177354,0.218470143314897,0.26439376893966,0.274899615137536,0.237541902663969,0.221204475911444,0.219510012487756,0.250324140758285,0.250639173192407,0.165855240826854,0.0768446823278156,-0.0091315431205609,-0.106598915199095,-0.176631567860145,-0.255489060869241,-0.273239508891239,-0.271987754290947,-0.275265340597164,-0.274795150137699,-0.275231698175298,-0.272869383877117,-0.275961100775643,-0.27063966758515,-0.278161370849768,-0.294161185681947,-0.270647409028868,-0.149276348981923,-0.0124181064571726,0.104200250514917,0.174646269631209,0.208662423129748,0.212239549730594,0.168505628679758,0.14065027693764,0.135306403747145,0.180913605365209,0.171302343051292,0.108507715684618,0.0444436713062076,0.002321984270204,-0.072227964803969,-0.161793563458346,-0.238413614813447,-0.263962804948349,-0.267248516921703,-0.271875276153278,-0.275825220525677,-0.276354168379401,-0.273644808133218,-0.274272660272687,-0.270933940356399,-0.277366954934101,-0.299708135067621,-0.281191722266977,-0.184674736329129,-0.0582817249801081,0.0582107295173044,0.126542831716999,0.167013838541772,0.13774308633972,0.0596797342958314,0.0141998421496221,0.0353783746430749,0.0958302970120316,0.112970979056189,0.0770505110993381,0.0535356448534734,0.0309354830082553,-0.0396933838551137,-0.143352844072498,-0.218907322253585,-0.261358462845937,-0.267031294273736,-0.27476997982294,-0.273412330534189,-0.273626416483608,-0.272984539009625,-0.27284202116309,-0.271192761286824,-0.26994683606187,-0.28764817753464,-0.264187718579955,-0.178306036453326,-0.0638168386001042,0.0591729792366971,0.134422455563914,0.144677864649644,0.0675191483343784,-0.038881205021435,-0.0741929882452529,-0.0251404060002344,0.0641358449390193,0.111676529742127,0.108796540698394,0.101037150210246,0.0719947351611449,-0.0150077981858091,-0.126609036819265,-0.216759227663386,-0.259810035999933,-0.267692552320549,-0.273460577378051,-0.274943803439602,-0.273820146538239,-0.275049775428642,-0.273199783309186,-0.266758856240852,-0.261172329330453,-0.269861222411137,-0.22805064965167,-0.133852976991616,-0.021951770617533,0.0830822462098131,0.145798583056346,0.123589942240829,0.0151134397551163,-0.113616704954398,-0.11443154752072,-0.0293180001549848,0.0800412209219324,0.142611160872253,0.161957351932916,0.156341064119989,0.0929087577771031,-0.0362696725476647,-0.145901328252138,-0.218862106199499,-0.258327853597007,-0.272219863696709,-0.273311370042985,-0.275289951351715,-0.276199131986756,-0.276988034097375,-0.274723415256583,-0.267082053203406,-0.256610857382946,-0.251323292237339,-0.200581388281704,-0.0870589189659567,0.018020582553291,0.100073168931728,0.137268901478997,0.0851875307244687,-0.037386839023795,-0.116656505427415,-0.0854625724923499,0.0170277534462041,0.136550502772182,0.201489309957296,0.211428226990763,0.167298997910878,0.0701475653118653,-0.0651223124057163,-0.167510718125144,-0.233853694468171,-0.262732136542797,-0.275797886847424,-0.276276221418408,-0.275835467098895,-0.274261662895366,-0.273262888165809,-0.270934660401974,-0.262844105367872,-0.251079002381783,-0.236604319311174,-0.166981751568558,-0.0643322242790247,0.00700179863687916,0.0809585693149829,0.10045817882111,0.0480152147909193,-0.0155853180576064,-0.0351056681979985,0.00297007375787751,0.0939994858767452,0.190035389525484,0.249468339186716,0.223136113758101,0.138923497749797,0.00336191155353133,-0.111196829822576,-0.191229690008029,-0.24965287292111,-0.270281024380137,-0.273066928282272,-0.273603860099842,-0.274023849897083,-0.273750588645299,-0.274033072166842,-0.273038126245392,-0.26430589594533,-0.246946438333927,-0.226315571089375,-0.151742270820298,-0.044918412326018,0.0224861096301739,0.072000129772499,0.0905648924587832,0.0703167293481234,0.0670623230199751,0.0763621887996945,0.112101972237427,0.165785083367865,0.225883056311808,0.241280784937066,0.169673548032219,0.0599506671109672,-0.0724953942836758,-0.168503085160998,-0.222369315792967,-0.261315599291328,-0.27635794358662,-0.275847514898777,-0.276139278848838,-0.27343785424464,-0.274032096539339,-0.27378708548431,-0.274163058620788,-0.268904210136212,-0.254293913507435,-0.217533268712529,-0.152377537175085,-0.0594207788121592,0.0259900689257769,0.0742483750287369,0.106310418412916,0.120008999555489,0.140500010548672,0.142444636069074,0.149043508144206,0.16733647127666,0.178367248372298,0.147769918741651,0.0719320012125639,-0.0502195837117945,-0.139078492069495,-0.202486699986012,-0.244565025406202,-0.269372367909376,-0.277651887036935,-0.273417805276085,-0.277094066909294,-0.277138223283949,-0.276925296820744,-0.274329543935405,-0.275799387369909,-0.269906112332871,-0.263928064773187,-0.237284046275079,-0.178400775757202,-0.10306742543907,-0.0149021253080848,0.0562254723421494,0.102468762418154,0.16148257756471,0.186844439941461,0.182503323959739,0.144120015059621,0.125623130151985,0.0978673255326095,0.0402516847854912,-0.0404541615668264,-0.133660615794884,-0.194323202683159,-0.237883637850138,-0.261534387708381,-0.272775753620122,-0.27316278651826,-0.275141465273351,-0.274400113058666,-0.275564919526591,-0.275091245534774,-0.275157725301872,-0.272917463809107,-0.272506869673195,-0.27146165440154,-0.261792065224998,-0.233570614102217,-0.191267448690551,-0.119524689274779,-0.0489915995203586,0.0180221604819504,0.0837068995485151,0.115437584704164,0.111515381304816,0.0810625465165996,0.0365193169155235,-0.0144468872024424,-0.0633168489603553,-0.128622472174724,-0.189150300582013,-0.22190713498828,-0.248270083153624,-0.261577890312043,-0.272414202656388,-0.275167646771559,-0.275934948909138,-0.273666219624097,-0.275937530033661,-0.274508967980272,-0.273861263560053,-0.276957455958889,-0.273686144519451,-0.271503440530893,-0.270594842317272,-0.272207610488789,-0.2682531997208,-0.246080896362929,-0.229967064632997,-0.18793341636291,-0.151518820020221,-0.125754940694213,-0.118578699579348,-0.138154843180999,-0.145337568686127,-0.147478123239456,-0.158689210942703,-0.191423231151146,-0.221001551000936,-0.239530183225064,-0.260506877609625,-0.268859011743945,-0.274003957271871,-0.274215231782685,-0.276000834948151,-0.27660944111095,-0.274934785235406,-0.276889329543368,-0.275221057348917,-0.276362044728606,-0.273299901425197,-0.273379140203117,-0.274780027763835,-0.276044440627287,-0.279239437823166,-0.278746490832365,-0.28164507535768,-0.274502472389871,-0.26518632827461,-0.251638011016761,-0.249634374079907,-0.246034857022392,-0.249931738309229,-0.24444557177818,-0.248509174004202,-0.254715955299411,-0.259205457073577,-0.265817771902627,-0.269564477551798,-0.274353924877884,-0.272799203136266,-0.273207915283307,-0.273707286418303,-0.273415281397644,-0.275113572530406,-0.276661163575309,-0.27659511980659,-0.273201574247465,-0.272888372152839,-0.275278775178876,-0.2773736066425,-0.276525763284958,-0.277549293394601,-0.275703043972206,-0.274509721548184,-0.276911901651568,-0.276413608030291,-0.27860257081948,-0.275599656133139,-0.278090709229816,-0.279409223982289,-0.276591451413937,-0.274760052599894,-0.277101502507137,-0.274931040660224,-0.275309323818385,-0.274842649130223,-0.273756735563583,-0.276756237696042,-0.27625362900954,-0.274417187903425,-0.274057885448833,-0.274250551268219,0.251727489558211,0.239087521900786,0.242585851913247,0.239411467474087,0.24171732828113,0.241308290266858,0.241521149710367,0.239612510050785,0.241942516765503,0.239996826633226,0.239436098797728,0.242572315212355,0.240340417770312,0.241256467143332,0.239758098989222,0.239125743461038,0.24004291098052,0.242583913966299,0.238204571941135,0.23893422812826,0.239737708661787,0.241891593954365,0.238190406236949,0.241329973344213,0.239094831013537,0.241295848233005,0.239956892280767,0.238369734710903,0.241977922850398,0.240168726309346,0.23984734206719,0.238576922093362,0.239004974555048,0.238206296051777,0.242471805008911,0.240026513300094,0.242405459249289,0.23991315126075,0.241483082219378,0.237361370892528,0.235685430501316,0.237366337880081,0.233569036420869,0.233608709691795,0.237737867262835,0.235759057559569,0.240601194289313,0.240203922725877,0.241046714111615,0.240537869617406,0.240535627429586,0.241616409545865,0.240814826270192,0.242143675746563,0.239176832526205,0.23893380128483,0.238310733208607,0.241607280054404,0.239506422776983,0.238632904919332,0.238306006478548,0.23985067632742,0.241500397648983,0.238606604033556,0.23897674910609,0.238981458436218,0.229595434830861,0.218932009845385,0.213165069903689,0.208413495676113,0.193954849992433,0.178869507372237,0.186247709538512,0.197465763045836,0.200276356911954,0.205197031553686,0.21188369056297,0.219501048632767,0.22695633815902,0.234574371866999,0.242135884063032,0.240341648900828,0.238914073476719,0.238886292159453,0.23968832441284,0.240172393265898,0.2410522261451,0.238906987297601,0.238930284855931,0.238864876599845,0.240011785615217,0.240941171483493,0.241622936413797,0.241093874727385,0.229147090661502,0.217640697568495,0.210937003055801,0.204165699617415,0.185347326633934,0.167687529172303,0.171291875891817,0.174944842137464,0.185218722865218,0.187428196835851,0.198575793808922,0.210471969984364,0.227485479467824,0.228814419401829,0.236882128719892,0.239331524484133,0.242138713920869,0.241746729420653,0.239739876184063,0.241865688086797,0.238209121723188,0.238323549885503,0.242966485455468,0.241158059314479,0.239446101263852,0.240968855367157,0.246680205041419,0.242630206605146,0.233801169043814,0.223064810325838,0.213284169740988,0.197662597177267,0.185401063099095,0.189133575011,0.18416859008615,0.17866462486957,0.189227914596846,0.194662861809109,0.220078271640442,0.233810684717852,0.231783096366169,0.224055737519513,0.22827043586821,0.236303843852619,0.237867728771964,0.241192814542436,0.241145373443912,0.239869512851563,0.24086524093783,0.241498102733986,0.241137162240563,0.237300675664477,0.236195668855538,0.242805857957513,0.238150418089429,0.230038634239705,0.211857873287164,0.179140131278582,0.135449989227933,0.106069167830461,0.086512374346225,0.0710779594147159,0.0631047274738782,0.0665799210114401,0.0706627996489889,0.0977488139013733,0.148120796521357,0.174321085970035,0.200535970332294,0.205072557034205,0.209961331005368,0.225185691206951,0.236794414772073,0.236424383244823,0.239061390390045,0.241741696090601,0.242283846803138,0.23981628793664,0.240128496585081,0.238147837121508,0.236130173498906,0.235293600059038,0.218537218975011,0.195058794614771,0.142995578950483,0.0786787939843324,0.00129139353068984,-0.0597290548024065,-0.105492203092082,-0.121162359625876,-0.11853943282547,-0.104383078140899,-0.0803774859134971,-0.0150859856634058,0.0680861069809385,0.119443828179719,0.157572219590006,0.186840091971354,0.197926536534842,0.207682825403974,0.23123164187985,0.237417607548377,0.240288720661929,0.239477181655401,0.240594202611414,0.239569931652295,0.235083555996235,0.234833041534701,0.230374380919394,0.215093695815421,0.17422676107929,0.111078629240931,0.0488864102624623,-0.0508374881929865,-0.152024513526419,-0.211797485448947,-0.227080683587631,-0.22060920577612,-0.205082478179649,-0.189054595110338,-0.150196576429176,-0.0759524797241974,0.00178087659931121,0.0698333879825217,0.117390413918737,0.167603819318341,0.185712500837915,0.201178083912744,0.227311232940607,0.234926669760062,0.240815968753647,0.240332369447163,0.242311677019927,0.236182389158739,0.232450408337102,0.228610944041108,0.213736163273256,0.184849436424071,0.128590918159225,0.0402541206823535,-0.0623787357251084,-0.179772011614764,-0.256479542495114,-0.265999933607969,-0.216967081147559,-0.15661127317651,-0.126093870214832,-0.117441253752113,-0.114839663927839,-0.0990575339055437,-0.0383586827226862,0.0424805288551703,0.097078220355803,0.151722069371372,0.191333696742489,0.202763663819213,0.225803332997986,0.233985860817547,0.239441573063107,0.240670537741698,0.243046999902385,0.237656289229736,0.230564409078741,0.224430464937426,0.198873588263094,0.159423250645499,0.0857028417006611,-0.0190928825179445,-0.151866253141741,-0.255027387442179,-0.276689176923557,-0.218007797866913,-0.10344232219079,0.00153681755494865,0.0354380717431455,-0.00759236547824611,-0.0784135959278598,-0.114675817334257,-0.0685521616374662,0.00781288858181992,0.090399139268969,0.160683857166518,0.196251339907071,0.209811510582125,0.229950135533109,0.235791629455698,0.24033228430175,0.239714997442255,0.242125877953598,0.241553020211172,0.235626035430236,0.221495724373256,0.191218122766633,0.14746962959113,0.0362710733623361,-0.0848588767599545,-0.213325916426437,-0.270173078169394,-0.233649040730156,-0.119950389405789,0.0366347420424117,0.139231434388371,0.126997073313339,0.016413220688969,-0.10477944213503,-0.147328750261328,-0.104900419765332,-0.0146244906037677,0.0928567878955861,0.179561529333237,0.222564498202301,0.222082026198512,0.225596729327196,0.23408134019027,0.24189277845161,0.239622267343264,0.2422564369676,0.242096879816743,0.241003112200869,0.230104723327176,0.191137935329696,0.125424037780575,0.00950512113643168,-0.126985732655284,-0.227964700331628,-0.249248500158395,-0.189597607085734,-0.0694361367184637,0.0773602753983147,0.123149979885136,0.0663860054749776,-0.0703700686494602,-0.186658370977833,-0.215001149461903,-0.140782318852907,-0.0177074562671341,0.128241008881508,0.228531602193078,0.254388710572815,0.238854823385715,0.228270389563229,0.23841796669746,0.238869205068899,0.241185121434554,0.241685507647227,0.239960475261332,0.239599237931718,0.231110390945059,0.195440409593548,0.114797777547503,-0.000774234929531924,-0.130907702311916,-0.210893034383078,-0.214342420121034,-0.175506148188184,-0.0902377035098314,-0.00927423514268875,-0.0102117296409753,-0.079712728454776,-0.198790691249905,-0.271347063934504,-0.248101730319148,-0.148423246922974,0.00359346977510558,0.15827916859923,0.251538585883317,0.271687807198631,0.254303426503755,0.237333132098296,0.240089107569019,0.24149477753402,0.238235125078253,0.242932515119257,0.239716455608434,0.238482307710353,0.226665664757959,0.206716819021422,0.130071484935101,0.00751675309070145,-0.112848381550209,-0.182600357012027,-0.1939677100285,-0.189058785320477,-0.169207503008334,-0.144638182809167,-0.168373457985614,-0.213573538176183,-0.293888276737647,-0.321465708842855,-0.260775471601107,-0.113656134737803,0.0535916456485715,0.185886260767133,0.243883262027068,0.276376327748624,0.26335812482243,0.238970258405587,0.23765221302499,0.238547498765016,0.241895305637436,0.240035038723645,0.238726269486234,0.236889476777549,0.230741483088264,0.231356185352278,0.168068226096802,0.049158793618278,-0.0690185579548749,-0.146466779774976,-0.175634517028084,-0.205249177903271,-0.215003331673648,-0.212985869656718,-0.226921650431825,-0.2499295128062,-0.3065307729536,-0.311140800926289,-0.203768939906153,-0.0476252226273197,0.106295983275663,0.20599963762026,0.236704317298634,0.267311928244536,0.257805038700636,0.24144460598518,0.241118397320587,0.239021412691,0.241018199732574,0.239560647007198,0.239375500584222,0.235217578451823,0.243687121380529,0.262939134506904,0.23260906983371,0.117187141052298,0.00217451988021123,-0.0911982945415249,-0.151601697856264,-0.183306332565983,-0.204659990764779,-0.200099262028317,-0.194013656103691,-0.214597770858276,-0.26530073220404,-0.241199443841183,-0.125829859095827,0.0189769797050661,0.119559890677824,0.186290178010965,0.235882037258961,0.259369777864401,0.252441299643301,0.236644342394398,0.239582572057168,0.240823577267119,0.239697054910819,0.240786561773363,0.238978387562354,0.235594482244475,0.253588060539685,0.296966364870898,0.277283432450748,0.199580665486401,0.0832078543594741,-0.0313030797388012,-0.115418558533129,-0.162864509163347,-0.159791302938093,-0.124328956713076,-0.111528103541597,-0.160031917456163,-0.219289337368644,-0.189283806864816,-0.0592178494796548,0.0529515615585225,0.124597893781182,0.173931857327453,0.23018643172714,0.24932769204584,0.251534273969406,0.238885196381041,0.241537132475361,0.242527747291391,0.239045407204596,0.238876640476543,0.238699974926445,0.241775638557668,0.262112594416618,0.312093988438124,0.308416404356365,0.2550636127191,0.137855801390855,0.0125865505843769,-0.0826101769894239,-0.11765742793378,-0.082215584501547,-0.0239812657867996,-0.0417625507728224,-0.128075674143072,-0.186977584846912,-0.152700620553393,-0.0395742600128524,0.0590371992472356,0.123593600635167,0.178920971382905,0.22738766281727,0.24989434468126,0.252696890338752,0.245247607475801,0.243142440604171,0.238699044180806,0.239106665822978,0.239272050195173,0.240750834467325,0.241285188963749,0.272983931227287,0.319982295783838,0.325428025352746,0.256242963620443,0.15173194038108,0.0429122095794357,-0.051310188854497,-0.062476603864168,-0.00187166234845676,0.052588660905511,-0.00344034401006683,-0.107393713565887,-0.164671083621456,-0.115679236155484,-0.0301280213672671,0.0543059383779825,0.120471108282429,0.192075404343905,0.242200636092051,0.256847157435628,0.261030579763575,0.249127495570823,0.23949182021626,0.24100189083123,0.24173899057236,0.240955571524668,0.240059232042118,0.243690665341705,0.273690360736838,0.330922207680079,0.334003476037777,0.271264331801626,0.16482931256846,0.0612794319501135,-0.00273379114358447,0.00609968477702215,0.056469323636243,0.0626650097644526,-0.0155859688399939,-0.10479448685475,-0.149493092680753,-0.11185960663065,-0.0326560715206373,0.0508328586834261,0.13004221704901,0.203776048595063,0.241960131476762,0.258712953468059,0.25883513037747,0.247813528769362,0.239110608907028,0.241534766848062,0.240018370521209,0.239607498859125,0.23882518357479,0.244436389088696,0.266231275244324,0.314905822360189,0.322995705004645,0.270475130176743,0.204998920649344,0.11356917928192,0.0566152850891164,0.0628182404812081,0.0596207267277111,0.0185183889723472,-0.0530116167123098,-0.119221391842744,-0.153223663465388,-0.120259083508927,-0.0346272958081751,0.060919014397253,0.153758269307836,0.215122555901549,0.240625846383248,0.255681882984362,0.25794326603671,0.247474898059183,0.242737341179646,0.238963941142417,0.238886026297583,0.241867056519362,0.242581826956789,0.241812225036212,0.251234979553495,0.285016199448907,0.289514901784172,0.251741577848381,0.213557659771833,0.143773789401019,0.077657712085157,0.0530345255358176,-0.00823952412789308,-0.0620631340916177,-0.111593424188244,-0.145161709905694,-0.154787719806692,-0.111165084395933,-0.0134504783784214,0.0777004340581879,0.165173454570152,0.218246119168334,0.236044724919939,0.24919388112332,0.250833305411055,0.243836006936993,0.238771024150493,0.238728281223321,0.238959044343991,0.238641190930668,0.238931909657248,0.242530757626085,0.24494472460033,0.249751797549933,0.251115202518231,0.225971186581285,0.182549676092397,0.128986345797593,0.0679027467718654,0.00017145958281708,-0.0724409825764387,-0.108082431575219,-0.123733902497458,-0.134236036719331,-0.121193280408324,-0.0740004504409836,0.00575568661746864,0.098478962819227,0.162004519927446,0.210667288675988,0.231446960508344,0.246857380985034,0.248697264985415,0.243205881675586,0.242325739731781,0.238441498898635,0.241841167410569,0.23887730650702,0.2416636626674,0.24272771871271,0.240011436891586,0.231777976686608,0.213915263539127,0.193312326178546,0.140723415971459,0.073732094149488,0.00631408894259135,-0.0788629215696789,-0.140723144379637,-0.148293604808355,-0.136563353656673,-0.118360788588131,-0.0961598567821453,-0.0481108532362967,0.0337746472756962,0.118813234370402,0.162508384209579,0.208651106715581,0.233230049799883,0.236305580722957,0.241095836156671,0.24079923770897,0.241478077986447,0.240454450441732,0.242221974921513,0.239824012236914,0.24094238415552,0.239542763175206,0.244572166664589,0.235040768046025,0.221039671994448,0.190679013002614,0.134049591952988,0.0636779447810074,-0.0253696554285877,-0.110254197218111,-0.155464562423668,-0.147926174876781,-0.121996478513972,-0.0931420924275811,-0.0543628968861535,0.00557692192897088,0.0692987011749839,0.130656128048596,0.173666378351853,0.209538497036409,0.224267917531632,0.236534929398007,0.240113414888919,0.239739796369003,0.241291380276098,0.241620816846855,0.239227594805284,0.241224357555918,0.241013968826815,0.239945789064103,0.240988586210112,0.238269067052221,0.233321762456721,0.219158626756689,0.193155527133808,0.154522927964002,0.079640083645148,0.0148928973610995,-0.0273353434180871,-0.00798698295691832,0.0130128132146418,0.0414242862135499,0.0678833876564633,0.0840643590619975,0.130855416394007,0.169486533944283,0.196160869781892,0.219484968422365,0.232643214439966,0.240059655022982,0.241761952576673,0.240986769229259,0.241242499245291,0.240611937309271,0.238614760106639,0.239426024193027,0.240809144751603,0.24196425811088,0.23920139995653,0.240437628106519,0.235381968380797,0.233630446167656,0.229367105848983,0.218147915749021,0.187138407770378,0.159908295781747,0.139458096108517,0.145153711286659,0.154202013648765,0.177164698106466,0.185697144120198,0.193448593772799,0.205922680650299,0.217363742576358,0.225778709559104,0.235902794067525,0.241905341747315,0.240614887806526,0.241842255043966,0.239826434140015,0.240729626202117,0.240407817984718,0.241951857248062,0.239901735992641,0.240209951610364,0.238635922629651,0.242640078229439,0.240836137228796,0.239814764529956,0.239313905726807,0.237998524301628,0.236831715539523,0.23919166061975,0.237016038226578,0.237171511640676,0.238040437606336,0.23535881943216,0.235599609732268,0.239216692188611,0.2408426489765,0.241571120347121,0.238881293122594,0.240744786241953,0.241456498987119,0.242522307377573,0.24016128408926,0.238778844897937,0.242103509718044,0.238966779822838,0.23904922774598,-0.24975046308691,-0.25201649119333,-0.249968530751632,-0.251674021462852,-0.251831326836289,-0.251703101391911,-0.25225675021877,-0.251620334654555,-0.251008843161436,-0.251538185271825,-0.249364354022252,-0.250783979667963,-0.251163228480768,-0.249139995720626,-0.252277678647104,-0.250835539918238,-0.252728709647881,-0.252605269813697,-0.253212982023911,-0.251996301629729,-0.25187522988619,-0.251577008693556,-0.251768153222628,-0.250697503946061,-0.250221283780869,-0.251786263344455,-0.250320941140008,-0.249677296558296,-0.252823304926434,-0.251075332802587,-0.251324435530921,-0.250878434410495,-0.252634029278408,-0.250834910563109,-0.252182129374359,-0.250841900222784,-0.251919469652974,-0.251761058587751,-0.250444390971631,-0.247676737670396,-0.248100840695489,-0.250561731824118,-0.247151388797872,-0.246866341966673,-0.248163023755448,-0.247969887156297,-0.253156321780139,-0.251175970239154,-0.254933477260063,-0.25239932970286,-0.253198474141921,-0.249213031553986,-0.250288733269898,-0.253402459442929,-0.251922381463453,-0.252655947497719,-0.251084676213001,-0.251106743549234,-0.251265143405561,-0.250201441200001,-0.25323000070078,-0.253449990491213,-0.249525457217114,-0.250468906402949,-0.25010233225854,-0.251001537620925,-0.246334765588036,-0.235867761256226,-0.234898341924353,-0.235871161975385,-0.222870785487677,-0.211648959317919,-0.222426989013259,-0.23172232577486,-0.230210988025228,-0.235185585893226,-0.234069118293863,-0.240337017157911,-0.246915774890389,-0.247862668153731,-0.252830424115592,-0.253461981353508,-0.250648791765268,-0.249631860851295,-0.251183589113002,-0.251221727914536,-0.251117530180339,-0.252430851953717,-0.249918358537681,-0.253896729661361,-0.254182709860057,-0.251928956560805,-0.254654745647529,-0.253071023888862,-0.242319559269066,-0.23809654820469,-0.243809478132889,-0.240341900523949,-0.228392138820884,-0.228493398590323,-0.231670567221822,-0.23881451409279,-0.240356389438941,-0.236681942346507,-0.24108612184654,-0.244618032688554,-0.249418026855662,-0.246240194952213,-0.248090220388536,-0.247301241436466,-0.250732734392772,-0.253615847786307,-0.251987503762275,-0.250202242918975,-0.253130908269554,-0.250083941301956,-0.254218939401551,-0.253048142666073,-0.25105650379613,-0.2535214956247,-0.259875311288005,-0.259879826692565,-0.25499102840064,-0.252967651514912,-0.260098722502488,-0.257944678180196,-0.257019048155758,-0.260720893133227,-0.251681474644836,-0.2450027922672,-0.248623710264583,-0.244733136558398,-0.261229245767579,-0.264168751850297,-0.253514914925869,-0.243340335851127,-0.243671071604841,-0.246802161491003,-0.251074889937928,-0.253819961559416,-0.251527050937854,-0.252384918068964,-0.250306202687265,-0.252798232485511,-0.251035366599594,-0.253009541063432,-0.248664593170386,-0.254744790946611,-0.26168140550266,-0.25720895036093,-0.256905159970103,-0.23973854237806,-0.210741219506313,-0.189072865578964,-0.16318935798999,-0.148253849435531,-0.137453322680918,-0.129048817776359,-0.130189147624701,-0.139535914665252,-0.180674724358545,-0.201642259218792,-0.224045474243348,-0.225885586175372,-0.225970048989514,-0.242803632996355,-0.248567663826974,-0.249276522445716,-0.251580643551921,-0.250484751805462,-0.251353809314383,-0.249263506774149,-0.253534225595136,-0.253753191989743,-0.251973931195272,-0.247393969228133,-0.23968661218538,-0.224775375232327,-0.189456255449541,-0.137923072593923,-0.0630055684210795,0.00221626527127021,0.0501331668768304,0.0690049431049313,0.0694000887381837,0.0702986939677707,0.0462799356194417,-0.00760660829135811,-0.0800436597200765,-0.127859882277076,-0.172147563348952,-0.205707666509531,-0.220409271562285,-0.227580994746594,-0.247034964734038,-0.24822975090326,-0.251291440781934,-0.250385838738802,-0.249579090056413,-0.251171738503578,-0.246000084862153,-0.238968660811256,-0.231489173162079,-0.216952607329928,-0.175191110728148,-0.117951142143453,-0.0642898145303042,0.0279595755205629,0.124357352451279,0.187071168934263,0.211910499668388,0.213066774107981,0.208920808269698,0.201139888676417,0.169532957909755,0.0996473121767564,0.0230132007108881,-0.0434378700114099,-0.10641300562918,-0.166375889699399,-0.199289163578734,-0.222839677689676,-0.246593269712636,-0.248069088458915,-0.252167645106478,-0.252839721754169,-0.250667309125134,-0.246873322717264,-0.238160227341,-0.225084809797976,-0.20496507436003,-0.163035308801257,-0.100431908650582,-0.016294368425346,0.0790150770206156,0.188982235450041,0.260918134636875,0.276845608221096,0.249624638366747,0.202496480658214,0.186126068118008,0.183054407181155,0.177421765278328,0.153474221196768,0.0899551694253792,0.00472310838676016,-0.0698184115487001,-0.1434795684459,-0.193872795217517,-0.220931078243089,-0.244503932745671,-0.24789159756041,-0.249364925378953,-0.250136906553404,-0.251519802399548,-0.246746670022685,-0.234353310685316,-0.212711416541988,-0.17891733799427,-0.126603478850639,-0.0411222695639927,0.0607735825864597,0.179910919716183,0.267696559630977,0.291129159991136,0.245683743912512,0.156243884140851,0.0739013429817958,0.0553279190248608,0.103406454074019,0.159278122567241,0.18712423589005,0.14150497492116,0.0512496495925237,-0.0582835480666847,-0.14880996563047,-0.201921014742488,-0.225755824691139,-0.243284136777185,-0.249946148021169,-0.249517888400257,-0.250196635328349,-0.25267819850419,-0.245256028918931,-0.237475163002609,-0.214246235835638,-0.170890405477972,-0.106518600315233,0.00775946859825317,0.119154571181053,0.229903854629104,0.277980073447735,0.237657777442813,0.140551527155045,0.000840758861226811,-0.0870568095587481,-0.052309569866217,0.0603997163802699,0.183126654053797,0.227272196580487,0.181528099465688,0.0737096427112066,-0.0648129960581563,-0.178436384304486,-0.232218576911322,-0.234803338521581,-0.23704323671108,-0.249181149516927,-0.251224698584477,-0.253433578208546,-0.248872560730968,-0.24860256128137,-0.242617423500854,-0.226758949458282,-0.185633888410959,-0.105003068785341,0.0164075974650152,0.145907072668386,0.230564364370777,0.234922464633458,0.170188993095214,0.0525824390558436,-0.0818271824878609,-0.116847211258165,-0.0341447535178156,0.131207074839264,0.250505241496786,0.279904151466828,0.203103910731142,0.0570448229225898,-0.124341411096086,-0.246528091239601,-0.274006477789935,-0.257873802046585,-0.241741779630429,-0.250220707427624,-0.249030448872629,-0.251866512635388,-0.250083650901436,-0.249162202008878,-0.245629801487575,-0.237927994860251,-0.201075362553835,-0.101673103305604,0.0198367153825696,0.13315452380377,0.195895324489093,0.181860709899498,0.123811254348661,0.0386208677971938,-0.0218037337483974,-0.00957447366767999,0.0920405713446037,0.23827895856066,0.314021263407033,0.301229102191319,0.188965030226381,-0.000739331819740992,-0.18658196113385,-0.293027766489636,-0.295398054571935,-0.273502155210265,-0.251935524813677,-0.250841307077529,-0.250384949683121,-0.252297687802976,-0.251629151173981,-0.249692126878195,-0.248147996376109,-0.239944542085767,-0.215603392807643,-0.119299360329838,0.000552754411630223,0.10170782558913,0.15237051658218,0.139277803918913,0.122358071729658,0.109637451316647,0.11389445909503,0.153831023840627,0.227684964813055,0.319166267152819,0.345783936758936,0.286193264750883,0.123939634362588,-0.0788634841412614,-0.245207424814974,-0.298996475077986,-0.311828992999438,-0.28061285156476,-0.249312075998243,-0.24935658769155,-0.251743638668664,-0.249679824257535,-0.253517328440902,-0.252320019980689,-0.246886470957122,-0.236618523321143,-0.233885930349701,-0.160325524583665,-0.04538478273293,0.0510569052188438,0.108261317488151,0.127989224944968,0.15472719434719,0.179897449169707,0.213115290025591,0.231993934306627,0.275750855282231,0.337052671142592,0.331713008366112,0.214733510347994,0.0269736664689147,-0.166391499335181,-0.274106439685175,-0.300096405278101,-0.306564465097466,-0.280985363371331,-0.253317901891187,-0.250859716161925,-0.249747433097883,-0.252340456929916,-0.249544365947729,-0.250116268297619,-0.244812680456961,-0.249428032471205,-0.267418712558456,-0.220248592611787,-0.121413417084759,-0.0123830123197377,0.0626537379835368,0.119932798961132,0.163149133499649,0.210466084495546,0.226775077912417,0.229237277053564,0.272190671893383,0.313775960599889,0.27280518285504,0.127685197497937,-0.0632126419348678,-0.208268470640446,-0.271374647670908,-0.304983647566782,-0.296926059576739,-0.279821898203665,-0.250817240038732,-0.253478540697712,-0.24974615358256,-0.250671445720974,-0.252339296260039,-0.249302056685835,-0.245983797032942,-0.263730616253383,-0.301459904090004,-0.283584817299986,-0.220177673424346,-0.105479510710436,0.0108252756555386,0.0992877108478624,0.159921000576991,0.17974753031295,0.165719816836402,0.179133038688221,0.247614085999224,0.286596495178681,0.22988936256189,0.0527274891596659,-0.115105928942373,-0.230611990255001,-0.276941284188988,-0.300811641704754,-0.293611056970276,-0.27245459183835,-0.254396566800492,-0.254088690175227,-0.251062527425607,-0.250795405484014,-0.252684204585273,-0.251142883123609,-0.253961731077059,-0.279524524878459,-0.327636711917994,-0.334733225563692,-0.294542841024281,-0.187317729460678,-0.0597046572543924,0.0561161595296837,0.108333017202409,0.0980627365657986,0.0722552846656595,0.131957793895381,0.229971415150677,0.256698175463856,0.175687722455975,0.00567772139262808,-0.154269016225204,-0.249963002942123,-0.289399514099215,-0.30412035489968,-0.290501155914732,-0.273218930799052,-0.260079825320033,-0.253339929058455,-0.253355032680517,-0.250124670913797,-0.250483675277546,-0.253312850257693,-0.257692089407485,-0.290902064950125,-0.349613023940175,-0.368794855483942,-0.320130017252817,-0.227158190848556,-0.114164525785467,-0.00707472923783384,0.0258975902943875,-0.000280279516843446,0.000489572832503758,0.103288373024186,0.20356699466036,0.214563331375122,0.10814551886387,-0.0421600634232044,-0.182180509354609,-0.261030703919109,-0.296656503654437,-0.307593603983332,-0.290367330742253,-0.279168450021818,-0.262244501028351,-0.252220095191762,-0.249385357272146,-0.252249786032258,-0.252539830748448,-0.252346146920567,-0.259651795964576,-0.296858687532809,-0.366443569773023,-0.394896835559493,-0.34817870496653,-0.253431619968253,-0.149645773987702,-0.0773156531949687,-0.0624523722034193,-0.0669634156050124,-0.0149181678244737,0.0934618845317515,0.167866908110049,0.164886393936213,0.06863010638056,-0.0623838029109346,-0.178940459645649,-0.247547125095123,-0.285389027745536,-0.284104396129307,-0.281112323317811,-0.277660804081483,-0.265125014278205,-0.250406782719131,-0.252568388711151,-0.252327504946634,-0.248960813400245,-0.253052133502746,-0.260772662008276,-0.288257266676909,-0.354230333988233,-0.387147114080658,-0.353844906759495,-0.300151697137029,-0.208346498950551,-0.139816665424301,-0.123413449453626,-0.0739648137570945,0.015515270121158,0.103678106676982,0.147604130286132,0.134030156821194,0.0545125603266323,-0.0678675371442905,-0.167648479540826,-0.233682126048043,-0.267925989756098,-0.272921178378227,-0.274586112072146,-0.269833412887969,-0.257172195064769,-0.251010828054256,-0.249614081954055,-0.249147679416072,-0.252570114259075,-0.253783135094431,-0.258136153219324,-0.275923182983992,-0.317494395677098,-0.347611816438195,-0.330265844194923,-0.304597251626191,-0.232000381961342,-0.153969898966819,-0.0979243467301825,-4.92038158575216E-05,0.0780774743799005,0.137928086487897,0.147652027658633,0.124675967338231,0.0475723732019953,-0.0652715101093466,-0.148027186922552,-0.213362900232832,-0.253661191826975,-0.2552661999772,-0.260293555412982,-0.259600504781579,-0.256502358000415,-0.24973364983734,-0.253042008254738,-0.24903612717547,-0.249798320250282,-0.252550975355773,-0.253240613681787,-0.263439351978906,-0.277944252052011,-0.291333510805537,-0.287315952487061,-0.2583918507239,-0.193408017645505,-0.11423928846515,-0.0192323581857697,0.0825358482655029,0.12856824846415,0.152789000618292,0.148413886250959,0.103837759759295,0.0434916154448967,-0.0463525486927919,-0.130455627988594,-0.18577719986032,-0.232343944725722,-0.246071588974432,-0.260802075570055,-0.25812771524966,-0.254052075395174,-0.253659754775139,-0.251273846147555,-0.250257475660539,-0.251093616168878,-0.252500495960007,-0.251760804166488,-0.256999014072608,-0.252161673470172,-0.245342210299588,-0.230833879074932,-0.183960324434805,-0.109969803298446,-0.0281659904031404,0.0796591885987835,0.160934230332311,0.177296990176885,0.168567084810454,0.144055688724881,0.0975810524834554,0.0397488427636301,-0.0452477621159589,-0.127792063151988,-0.172018592474978,-0.218176488731886,-0.244426821736424,-0.25081329033768,-0.252334877683519,-0.252705525474127,-0.252370454850599,-0.251113688084344,-0.252224659390822,-0.25018414242224,-0.252300112369691,-0.253899074270119,-0.255836041391881,-0.249724670887815,-0.235468299877509,-0.199763471091751,-0.136690007675817,-0.0626038803369968,0.0310620517041773,0.131985526294158,0.18757047989293,0.181338927273477,0.154398045201175,0.124153417813743,0.0709857145554618,-0.000771392171482197,-0.0683628389288416,-0.138189944692798,-0.180104175461251,-0.217671816214758,-0.238168815392135,-0.2492457954495,-0.253113790847089,-0.253101488640547,-0.250075484670204,-0.252087662439974,-0.252529249807364,-0.250397269535087,-0.251804346347334,-0.25208909819295,-0.25214832824118,-0.244586659193248,-0.237959927239425,-0.213555111273638,-0.174282475849927,-0.118596585647944,-0.03492219423352,0.0325267650379772,0.078904822788177,0.0629900634729946,0.0348616308570007,-0.00724562379387306,-0.0519204308907701,-0.078488844571229,-0.126537267113825,-0.174693425460635,-0.204619987136255,-0.2275476324947,-0.246088357305701,-0.248230731703222,-0.252787418524897,-0.253004705236529,-0.249177857122796,-0.249356751206325,-0.250160984265509,-0.253186780414161,-0.251780266129961,-0.24936623562599,-0.247990893658387,-0.251123180136181,-0.245057236171188,-0.23177821400403,-0.217079176654006,-0.199295125169825,-0.164101455781665,-0.125182897725477,-0.0998892989867106,-0.103922465921208,-0.119792123516675,-0.151182804388236,-0.179082873427643,-0.190075294785969,-0.205783361189232,-0.225911848716122,-0.235251591175969,-0.247338482840012,-0.251725408611167,-0.250704264043402,-0.251922933066847,-0.252763778569572,-0.253220148083262,-0.250661939148987,-0.249270765862105,-0.249313369937051,-0.251185135532873,-0.251096975599815,-0.253889653767389,-0.25324007504956,-0.252273273244411,-0.248726664445604,-0.247765857067646,-0.246477196460166,-0.245523990881242,-0.245666121261712,-0.243807146779757,-0.242005126992682,-0.235264959698749,-0.238533482843701,-0.247106724146801,-0.248690941614389,-0.250558938469073,-0.250905996352371,-0.249462978650986,-0.249054862926372,-0.252517060656459,-0.249334229030976,-0.250528075347843,-0.249704114438358,-0.249606493100058,-0.250987370909202,0.273758863666907,0.247557228356668,0.247049046581116,0.245825387769564,0.243854493858287,0.244023907395437,0.245287273749431,0.244785597601272,0.245398175864655,0.246764213595882,0.247456951355966,0.247940621868459,0.245210511172766,0.24442581486732,0.245604391672417,0.246937202592567,0.245695669858712,0.247435177141659,0.247889162255748,0.246459560744834,0.245629376867377,0.245291112582194,0.247673958811073,0.245853312613451,0.247800232381129,0.245773973164139,0.243656399171923,0.244955397478484,0.246053442029557,0.247584920503964,0.243964803329735,0.246984707572035,0.246407356406536,0.24721549986119,0.245483209258832,0.247452125324704,0.247993579669184,0.245907525804457,0.244881363434968,0.240132405724202,0.24367481523978,0.244246932616431,0.241974970514704,0.24103957187993,0.242638846108538,0.242302250096546,0.245822262096795,0.248177490396678,0.248421094165986,0.244992547838288,0.245232004871236,0.247292035583712,0.24578202391827,0.24465245637648,0.246880675789411,0.245494104868699,0.246437469549566,0.246774842015815,0.245919493384395,0.245933001507321,0.247463602754748,0.248020185532222,0.247751765208293,0.243765600989138,0.245575685385239,0.248826912262877,0.24152971910995,0.230489214017983,0.229545336263864,0.228775197806691,0.217822986463495,0.208260463640021,0.222726600292151,0.227639914483656,0.227899947918291,0.233388281889077,0.232815046723575,0.233524015723832,0.240596405824356,0.245682333376349,0.246557967767514,0.244173982202394,0.24796155772396,0.247322686242165,0.245576144979469,0.244898322189082,0.244252952388753,0.244017612578762,0.246523368197412,0.244226236979692,0.246325567087511,0.244641545523072,0.2492873897581,0.251324901447728,0.238189783191714,0.236067359998891,0.238676300711897,0.238883433767369,0.229293386487048,0.22627405080124,0.232816129630266,0.231832038529767,0.235525313655576,0.232949908711183,0.239683463884327,0.239411470212894,0.24124126234514,0.241661134785926,0.241488138402107,0.24427419768381,0.243941364744841,0.244999698729885,0.247176614769323,0.246882937456738,0.246441052503627,0.247605129053359,0.246679181754515,0.245450193889322,0.244262149082291,0.244733352606667,0.251011291033183,0.252737057652074,0.249546108293687,0.249513586516313,0.255575693762653,0.253414167564343,0.25694172335366,0.256668989542779,0.251097341631052,0.243914615529318,0.246798164401244,0.243034173071412,0.256761105190216,0.25760763466255,0.24343181758712,0.234772211817123,0.236638288133303,0.243291106449033,0.244896024120164,0.246243445762456,0.243789112339346,0.247877019227307,0.247777488233,0.247565598406933,0.246404943231253,0.243724841892221,0.243815081950627,0.247703141383099,0.251764887272243,0.250694997911103,0.252031181566885,0.236482483272018,0.205367214396698,0.186892323185576,0.15708674750755,0.14110097246954,0.128767529352999,0.125964191678685,0.124237014899956,0.135957804710519,0.179600405339111,0.195890072380025,0.21482361825427,0.21905285977481,0.21737730450247,0.2329636342558,0.245229071272096,0.242991896562878,0.244155235738166,0.245940579815063,0.244673883777799,0.247310561926126,0.248773087134148,0.244088315477156,0.242190767304637,0.240109770769091,0.231118871288202,0.217086971166186,0.186987286716558,0.136760984606555,0.0642708855010186,0.00106794683513871,-0.0493135322500192,-0.0687662922359965,-0.0723853345849029,-0.0670095972802066,-0.0497767027156812,0.00489729792870897,0.0734806471659544,0.122079788415762,0.16487574749899,0.195313345059611,0.20739864355166,0.219737524648666,0.240931169565331,0.242577184342746,0.244926743508545,0.246671252754947,0.247170340742294,0.244720683069753,0.2392346404269,0.239002763366371,0.231334888389059,0.214545361880606,0.171580045107736,0.116438359470945,0.0646744808111096,-0.022772762585718,-0.118941676289105,-0.184167611707582,-0.208812292228498,-0.207046986035435,-0.203548319700948,-0.19218352755008,-0.160849393657217,-0.0961217884564717,-0.0203849191609956,0.047076532244948,0.100318978730717,0.162104317326079,0.188438296015028,0.213738834319598,0.239180168236949,0.244492520871517,0.246665880477893,0.245619874525658,0.24514700458096,0.242560208418634,0.232887594166523,0.222310363772966,0.204766743364003,0.165164806602145,0.103797425843048,0.0223404818837717,-0.066970478852222,-0.171483399954463,-0.248664026704159,-0.268194572022296,-0.236037012261074,-0.19092222156623,-0.169351120835938,-0.167115368038294,-0.166294075690603,-0.14537813716008,-0.0849899638907577,0.00597500766057247,0.0724650018170441,0.140489134441564,0.188180923811528,0.216609145061724,0.238404036757568,0.244133498931628,0.245487935842538,0.245014051444573,0.244919598777018,0.239385349554745,0.230104112088007,0.213357843725633,0.18470893551446,0.132620054367261,0.0482718168986251,-0.0490705584274556,-0.168581714253658,-0.253595904961723,-0.280991593699633,-0.235893170385958,-0.147928063841855,-0.0633704102007155,-0.0459160567329322,-0.0859946621084923,-0.147387799878769,-0.17725583765855,-0.132356385596573,-0.03908065720536,0.0624879758491679,0.151678713249444,0.196084609319887,0.219534645554439,0.236148134881209,0.245117416553526,0.244170471624767,0.247485548792799,0.243826135655418,0.245204027385026,0.232757348211229,0.211572104881451,0.175075061182649,0.109936602924506,0.00133209921917413,-0.106326698152188,-0.219524257868055,-0.267884377358821,-0.228053761649715,-0.12916120994564,0.00410099457433263,0.091851526880297,0.0622152833628362,-0.0547032779847988,-0.170799134799034,-0.215536082328005,-0.166660495787703,-0.0596026251849528,0.0737203572312511,0.178389590392724,0.23217017019097,0.233237079422432,0.235017266717398,0.241523213430219,0.245255966917076,0.243939719809866,0.243328904522473,0.24242905273108,0.239647376811144,0.223362687659677,0.181913166741443,0.103526934091989,-0.012094989042066,-0.140389667642423,-0.222070378741081,-0.230563818903155,-0.164977303888104,-0.0481297211834907,0.0784145458428802,0.115669911666803,0.0367482204463595,-0.125401601923257,-0.242854296418684,-0.273792527929055,-0.188913062684461,-0.0456523077388116,0.13289984959015,0.24618808001824,0.271468969984811,0.250465414676121,0.238151971964679,0.247129981241526,0.243699749755974,0.246875397510589,0.243234089584987,0.242228056180677,0.240009595335388,0.227971922651763,0.191998296448382,0.100076191972104,-0.016400053961475,-0.12867850052057,-0.193344548684875,-0.182223483268203,-0.12276241405712,-0.0429025585018962,0.0177613004745425,0.00659133118303535,-0.0931156556302688,-0.232575026843045,-0.309292704306409,-0.292714616050134,-0.18319749233861,0.00880624953029835,0.193289793282022,0.289593789054999,0.292594999150214,0.264953809441085,0.245142841046703,0.246585407242992,0.243709388015958,0.247010857393931,0.248241608611069,0.247182410530638,0.244640650801629,0.230504658175335,0.206340597918655,0.115672005401011,1.63483741776855E-05,-0.0991636371761694,-0.153446698791276,-0.143955051006742,-0.129062953822138,-0.111562118960889,-0.118809571383268,-0.15705290132056,-0.230311222106424,-0.316337001589159,-0.345682836474958,-0.282407605134534,-0.118596487874942,0.0873704100269371,0.247904488522119,0.296116531460054,0.305026755948925,0.27392969338397,0.243623780953252,0.243234983716526,0.24450324056651,0.245601901279337,0.245411517939737,0.247769728838471,0.242135075511432,0.232439146687337,0.223725826744301,0.1571587947379,0.0440745462117826,-0.050663397989147,-0.108627671656573,-0.13576646548886,-0.158389216921917,-0.183516013822897,-0.222379044506242,-0.243615417684606,-0.282307300132801,-0.335593686547353,-0.32887737357084,-0.215108951244898,-0.0242661705283149,0.166562996852067,0.277330821831117,0.298378391396048,0.301475102785118,0.274585949092752,0.244769218585455,0.246476229808481,0.245469243812487,0.245676967194647,0.246990577966984,0.245705087658173,0.23731779946057,0.244943955756007,0.261261940117241,0.216850679374829,0.12105228860714,0.0144212689238674,-0.0623062013385978,-0.120612334506922,-0.163207932022718,-0.211932802060908,-0.236330578597797,-0.242835248537578,-0.27515877964531,-0.315842821832388,-0.269226488953419,-0.12895092422876,0.059182027649051,0.204624467546986,0.267860797766538,0.301858974773826,0.294789682663077,0.270607450814309,0.244551834892216,0.24402729470195,0.245409899487129,0.244385314274248,0.244159349347571,0.245851462775599,0.242072997940581,0.260337817160946,0.298533780394824,0.274876043183134,0.213812490955657,0.105235183214584,-0.00839508455474829,-0.0984262164023678,-0.159721537412867,-0.185238459146098,-0.17834480090693,-0.188654283203315,-0.251181042538801,-0.286801924129311,-0.228509625709112,-0.0521147678065998,0.119684904502716,0.231106645449058,0.272820088368257,0.295146404963506,0.286812796272308,0.26994377287091,0.249983662576698,0.245284466469843,0.246860024556746,0.246970233163274,0.243691278580315,0.246856698458638,0.247398480831571,0.27616083986259,0.324229075757718,0.329050699483534,0.290018874523242,0.187134302280711,0.0558164855970279,-0.0571580345749893,-0.11160624719322,-0.104417477902794,-0.0815349403182148,-0.138978136647327,-0.232730151940603,-0.252082124541302,-0.170241433130922,0.00300609900306104,0.160545441930096,0.249433597211716,0.284484220470709,0.295894762894861,0.286524580849125,0.271530249570458,0.251576296356847,0.249577287253411,0.243832713263853,0.243878564339226,0.24711838035686,0.247324346466652,0.249103044003684,0.288850252625662,0.349810397257344,0.367014395841406,0.317131581261889,0.22330595906785,0.108819781172288,0.00729140684097662,-0.0253023064731426,-0.0067179512096921,-0.0101783053395855,-0.107346792678418,-0.200353671827486,-0.209919940676179,-0.0977036791367005,0.0487474270735258,0.183900990097848,0.259681709061318,0.290621544825629,0.301756693593719,0.286930173804856,0.278593622523008,0.256139961908207,0.245280506379212,0.244300348173521,0.247952210421204,0.243715740469476,0.245804915269091,0.254061393830291,0.293351961568709,0.364642060277868,0.393137439984596,0.348560623305402,0.252183677481129,0.148692505471581,0.0789680871495608,0.0610311861669646,0.0674989075271605,0.0150069226402721,-0.0945163030121401,-0.168922242682792,-0.161479678365277,-0.0602284204022864,0.069442744629545,0.178737517249422,0.244871067059147,0.278412054648441,0.284077263027572,0.27747404953312,0.271522237942812,0.255773340394273,0.245983035258945,0.246035480419739,0.246183843631635,0.244788816981755,0.247417940205913,0.256786878696757,0.284332079498839,0.354572290307933,0.386467430005707,0.350500355532295,0.296725729927939,0.205399471780074,0.139521610339265,0.125798152635399,0.0740625477246843,-0.0136595535714454,-0.10243495787727,-0.144439733964506,-0.129204861562573,-0.0464765060037609,0.0701333781909577,0.165816041338988,0.22903279073267,0.259323634051587,0.26633658961023,0.272719524196971,0.268230817750506,0.251509750273541,0.247066919507211,0.246904344757277,0.244677724019135,0.24576995067972,0.247528570680343,0.25157635141987,0.268744706768456,0.31443119621868,0.345496652289116,0.327942381261697,0.301839885112716,0.230426825500084,0.153970526185847,0.097523229754707,0.00339554168296259,-0.0773237961633277,-0.134881140270817,-0.142984176382271,-0.122765049765619,-0.0443927586279983,0.0643831773896788,0.14567373209766,0.204948447617527,0.244594471617786,0.250428134864638,0.25832000248716,0.255744556663963,0.251807296821851,0.24709948421414,0.24690107092322,0.244260855805699,0.247707010636093,0.246921218425619,0.250930996342839,0.256012845727006,0.27052246247637,0.289296967083459,0.287863418519824,0.258196584144847,0.202245087845397,0.117863260893774,0.0248548948880763,-0.0801583352278544,-0.125604913046522,-0.149613386685306,-0.14073842832505,-0.104149855019551,-0.0404127898268829,0.040106223095703,0.121845692099489,0.175219394345772,0.223316839391894,0.241089249828353,0.253190344412131,0.253453912579253,0.246675357724558,0.246975502335463,0.245518018736133,0.24419474419942,0.246182083559606,0.247604215707922,0.247237051228254,0.247366500380907,0.244672467588924,0.240422406371997,0.228284622178727,0.18273945002095,0.115132045534918,0.0339401351743829,-0.0699694530825377,-0.151163724201935,-0.170855003182251,-0.166872746195228,-0.141096600776101,-0.101646041344821,-0.050116685118377,0.0373025079052599,0.118131423545886,0.16419488875575,0.211536410206348,0.241605374156266,0.243233018184998,0.246180412913347,0.247024153299292,0.246422141963787,0.247748920356599,0.247682366188442,0.24635563923104,0.24538645256706,0.248119410682561,0.250300742579035,0.242163535565277,0.233268964505062,0.198679292637177,0.135612166602295,0.0612177033446529,-0.0271817599594933,-0.123472565780618,-0.180726437431986,-0.176795420123689,-0.147345792310929,-0.121751506687136,-0.0679936491734927,-0.00807882906198826,0.0618604354608589,0.126571342670421,0.176404918655221,0.210730622274121,0.230325067940601,0.239606933486358,0.243758777726847,0.246292910933743,0.245362576100224,0.245203429428649,0.24383632497669,0.246533383321766,0.24607788433991,0.244399230686864,0.246186947603242,0.24236128725308,0.231719145553039,0.211815001046066,0.176626992460849,0.120578262872142,0.0401410003760042,-0.0275983162383952,-0.0671494511037125,-0.0462559680079688,-0.0198598156626872,0.0134869729610891,0.0540358663202848,0.0759698149790624,0.124609949234643,0.168248104204939,0.199897807730313,0.221882431070619,0.239522841397443,0.245743035408942,0.246091505685188,0.24511340802883,0.246995362336492,0.247263407612098,0.243798521275694,0.245201190973268,0.244388407099587,0.245509659946141,0.246529038127599,0.24596774958046,0.240434679035064,0.229352014105417,0.214110993050246,0.197429450503805,0.163657046297731,0.129787241174685,0.104805179943897,0.11574397561863,0.128991703582933,0.157187504449158,0.178131887593094,0.187267411532044,0.20521557346363,0.22401514049639,0.230651837306866,0.239100629387539,0.24425414585277,0.243295754123957,0.24382123356411,0.247085889321146,0.244937936485612,0.246127323949567,0.243973570115218,0.247439612892702,0.244407922323405,0.247455803212876,0.246245569847169,0.246539550391769,0.245101786162601,0.241415115693109,0.243400252672342,0.244067086130252,0.240932161841525,0.241450120706084,0.239820639504437,0.239474224863386,0.234906229145329,0.2365121181994,0.240964553844693,0.244499707572413,0.243290463184847,0.243367668344858,0.242949135458033,0.243949621701442,0.247394880725851,0.246915434437665,0.247386916997761,0.246388928456048,0.246794418133054,0.247204069536078,-0.272240090045251,-0.108582873611236,-0.106680189842856,-0.105218074508133,-0.108028481955827,-0.105098552326303,-0.105752349995901,-0.106651213608841,-0.107970144362701,-0.107344002910904,-0.108503349410764,-0.107522318566083,-0.107644530352244,-0.108694179857924,-0.105715181748534,-0.10518736933344,-0.105911868700305,-0.104736331329884,-0.108754675472713,-0.105169385065151,-0.107393373556538,-0.106514163411356,-0.108399766790552,-0.105131440801386,-0.107330626056915,-0.10789336020262,-0.108486454864257,-0.107649894473088,-0.107116985194983,-0.106810397777497,-0.105949212240401,-0.106136979644867,-0.107721399446874,-0.108729085434922,-0.104802466964947,-0.104651738502817,-0.106628755044884,-0.10802519594796,-0.107931059221341,-0.105400758541323,-0.105808227471605,-0.104256201651036,-0.104981219361911,-0.104008162430009,-0.10577722971181,-0.106991266231831,-0.103057391850026,-0.100810968196617,-0.101343356206816,-0.102819537072398,-0.104098695089556,-0.103955128935374,-0.104593232566687,-0.105353775068274,-0.104518835204839,-0.10733102810205,-0.104958106724149,-0.106438283118035,-0.106541799797722,-0.108808654468821,-0.105944200567071,-0.105237690723409,-0.107510790040411,-0.106957441517308,-0.106800106909762,-0.104353818919151,-0.0991048350658984,-0.0953465229390274,-0.0970224507328348,-0.088429945223463,-0.0672178377937214,-0.0554272383040797,-0.0516342599235204,-0.0537925453133741,-0.0443768936989527,-0.0484092619957872,-0.0580838508921329,-0.0741852405751938,-0.0874017602856985,-0.0947767001253435,-0.102505242052711,-0.104135600632751,-0.107622750378041,-0.104656363390631,-0.107614443364446,-0.106585984312652,-0.106595445001876,-0.108676566698882,-0.105133242338889,-0.106773285883769,-0.105281125415643,-0.106222862382225,-0.107286893369676,-0.10953599071684,-0.10393954362915,-0.0982519102487658,-0.0973137084941632,-0.091613628778472,-0.0644965121638571,-0.0197118181736702,0.00234959735711264,0.0207277966963516,0.0286858333840494,0.0221357282603951,-0.000319749575138553,-0.0286645146680501,-0.0676967840859862,-0.0820280739433956,-0.0988192167480769,-0.105799951894398,-0.108056779784132,-0.10533417052927,-0.105786594612159,-0.106813766314002,-0.106426455597369,-0.106530818008505,-0.107317232286589,-0.108223503688435,-0.105287393500755,-0.107325272345555,-0.108229587229823,-0.112928769960073,-0.118262779665987,-0.110664654452882,-0.107856101993333,-0.083647476143061,-0.0164164538691781,0.0398277222703569,0.0737423333965279,0.0835318939717316,0.074261061743161,0.0586624629287523,0.0377575471234022,-0.0102386175131632,-0.0448783932876465,-0.0739934112175245,-0.0908010552871139,-0.102766091001449,-0.1109848042192,-0.109238118559586,-0.105297250473869,-0.107784505110838,-0.105019076091835,-0.106707324794517,-0.107318464461103,-0.106472905251765,-0.104947384432502,-0.110252303827891,-0.116603990693119,-0.136529461514289,-0.142694823329126,-0.147801853570684,-0.148863225331812,-0.0924360862257374,-0.0166642971317089,0.0301434597661264,0.0487517262641682,0.0422280493931663,-0.00108595312411406,-0.0188577235784095,-0.0239960014682106,-0.0343611185162883,-0.0549793806802613,-0.0603938271057213,-0.0720970778708676,-0.095620587902045,-0.104695707823857,-0.107157107433199,-0.106373143117572,-0.10625014265276,-0.107046216265066,-0.105562243979646,-0.108103992090265,-0.105569281274309,-0.107146785093046,-0.114190230063862,-0.122535395696983,-0.143717520856904,-0.17122526020482,-0.177724953430551,-0.145607703540431,-0.0918519864478822,-0.0300403486575086,0.00315259101555327,0.0130120947584033,-0.0243337767469166,-0.0760476617830048,-0.0967129619937898,-0.0853761786781592,-0.064991656428753,-0.0499339015104867,-0.0529881236562971,-0.0664905800767895,-0.0928837534918803,-0.107312956968805,-0.111991920924373,-0.105251572737166,-0.10770793915004,-0.107037547754599,-0.10881151929476,-0.107579216161328,-0.106803468276578,-0.107840039168444,-0.110089639549785,-0.112110110136335,-0.137970866383856,-0.158559426668302,-0.15991385502902,-0.123621853016345,-0.0608320220067205,-0.00765497600172012,0.0256812600498164,0.0269882441238802,-0.0279378715570371,-0.090823073910959,-0.11939119520865,-0.10646629148172,-0.0632754373954003,-0.0534745439493936,-0.0504125893684756,-0.0656615264887985,-0.0976431736739276,-0.110161267903832,-0.108901974989969,-0.104889919382449,-0.106411074102854,-0.106240764821837,-0.104833658943404,-0.105797134276874,-0.104713456372468,-0.10541423724609,-0.102861615238387,-0.101960190031471,-0.118428719495273,-0.138680975297099,-0.117331918797956,-0.0642988524204751,0.000286529051292888,0.076886107288422,0.114309552773186,0.0969936607268217,0.0193020766799514,-0.05516314323203,-0.0888332857943209,-0.093244072702189,-0.0651838392649605,-0.069563512934322,-0.0757084607942222,-0.0869625099698582,-0.112367025512923,-0.116141287174995,-0.111156986323279,-0.107610607970309,-0.106212929130629,-0.105536122666999,-0.101151800573229,-0.101604433984742,-0.0986705596339178,-0.107100854555198,-0.0961434469721259,-0.0814907080091542,-0.0996459943287912,-0.0879105978087517,-0.0688822102197065,0.0069188262507877,0.0836869233543406,0.164703369091081,0.194027474572008,0.137789284484805,0.0427043073422211,-0.0516145905372022,-0.0789859423355399,-0.0852471045110676,-0.080159128694436,-0.073636637849777,-0.0913619642088145,-0.112643258305254,-0.126806419255391,-0.119663377795259,-0.11199388710941,-0.107722186234552,-0.105438087025965,-0.105068517905177,-0.101967746600595,-0.0988003595102804,-0.0961680287884556,-0.0974051257159232,-0.0885904803201198,-0.0715687337163216,-0.0681865999913946,-0.058115557824524,-0.00780700427320284,0.06235304490284,0.132461018124824,0.194516263920422,0.188706577947493,0.106873825105412,0.00430170898140465,-0.0817975014892748,-0.0975660843799701,-0.0896661932684883,-0.0745874653515635,-0.0770795991830157,-0.0976184618290479,-0.11001002000257,-0.128239947633254,-0.12040095740193,-0.108731743619149,-0.107287287459663,-0.108717866344378,-0.106049685501812,-0.102409481914445,-0.10133405797593,-0.0980824560961083,-0.101383209641706,-0.084440655306329,-0.05081513650505,-0.0345746569063394,-0.0130944776079372,0.0495174446987083,0.0930770153842573,0.127018157244518,0.157887858654071,0.103560786052051,0.0325124832423963,-0.0503395366773093,-0.104904362432615,-0.0943086140350938,-0.0656559203479749,-0.051542427280616,-0.0615113735516354,-0.065600305580926,-0.0837785660443881,-0.113224454644363,-0.114725034503296,-0.109381313309112,-0.104787921896037,-0.107122378277425,-0.104135400350519,-0.104784737243523,-0.102011198133531,-0.103796772205187,-0.0916399560165769,-0.0561600054616016,-0.0183274733935841,0.000429298209932125,0.0477622128538316,0.0854544598744468,0.0911774925692784,0.0648178311069018,0.0542370979509467,0.0177652919470816,-0.0222006920723042,-0.0740982721456731,-0.0816675292776113,-0.0401831675472615,-0.0215393401641271,-0.00782183087765598,-0.00973160679160834,-0.0197767710767963,-0.0539075514058336,-0.098929016312747,-0.111886913932861,-0.108043762755641,-0.105035036434435,-0.108362390339347,-0.106449581784259,-0.10594617917724,-0.102675896688537,-0.097456291089881,-0.0737761353838033,-0.0201499208474934,0.013220084912186,0.0532495457693422,0.0916250401827745,0.109805847249453,0.0466131144304787,-0.043493751989065,-0.0529962391596325,-0.0391238408548572,-0.0307195637310493,-0.0500616813982813,-0.0273559021869888,0.0112796161090757,0.0491625404019351,0.0561391463045239,0.0451064838425112,0.00928560157978587,-0.0339299161921094,-0.0869229637889606,-0.10736520943278,-0.109662559906913,-0.106662753020966,-0.10408529354384,-0.107273057137584,-0.105057271529754,-0.107240991745148,-0.0899135580125336,-0.044042905761938,0.0235860400208667,0.0674857913637821,0.108542601855466,0.12576759591709,0.0954157656090466,0.00148013392325815,-0.0907170525922779,-0.0597236931486806,-0.0172677724431987,0.0153560033094602,0.0062246430237988,0.036175176034731,0.0888801801876719,0.128520732130619,0.125186955827087,0.0859006981112652,0.0371851946858506,-0.0256201798852803,-0.0772012630329407,-0.106710245739154,-0.108299710115715,-0.104472946724514,-0.106755023242384,-0.105792593799817,-0.104875852907141,-0.104604823024686,-0.0845965752039128,-0.024907499679741,0.0548963472543904,0.101131572778044,0.146960686694477,0.138028595904683,0.0820016997066053,-0.0102720582352759,-0.0682620148047738,0.000457010632796492,0.0627310167717636,0.0842472975649278,0.0530818440920188,0.0770596911394748,0.124096553950906,0.179502628613277,0.156599761414925,0.100452196273903,0.0432594582613874,-0.0314081073324308,-0.088374463878728,-0.108993026170206,-0.109861703977526,-0.106846970732276,-0.108061814655266,-0.105219501601958,-0.108029027745155,-0.108482621581535,-0.0841281389514416,-0.02347513603625,0.0417572346861308,0.103085008675923,0.144064038623032,0.13416586263805,0.0726771365783314,-0.0186757654560673,-0.03764914858597,0.0598944678571077,0.134424560906228,0.119909163711985,0.0732340917940017,0.0736739910689808,0.139536183572657,0.182546624390074,0.147452885943355,0.0735263500842567,0.00552598597204059,-0.0625999611677286,-0.098903909070143,-0.113824916776688,-0.110301660090632,-0.108100015442766,-0.104848854972799,-0.107523016389405,-0.105551312886382,-0.110528086469421,-0.0898685007639975,-0.0315426117772411,0.00699752456170068,0.063565460480041,0.0992698177185577,0.083560316118815,0.0213594697731158,-0.045617090043517,-0.0187150485040014,0.0923123347011495,0.154103010372092,0.122391439808173,0.0742085509749778,0.0767414461003575,0.11996084789314,0.141628152486723,0.0884574832085224,0.012555090330411,-0.0548408115658121,-0.0970517751604229,-0.113830571283865,-0.116548106835574,-0.111269423183883,-0.105916652552422,-0.106361080202646,-0.106705495736723,-0.105519185715325,-0.115699165713023,-0.0993853278954757,-0.0550877090782649,-0.0286725486733289,0.00747166626980093,0.0367815254655365,0.0172499877243489,-0.0220626324246486,-0.0412596757144043,0.0234422218303644,0.145460677086089,0.176075342928784,0.146843075655245,0.0968684913096694,0.0897029999852908,0.0942101918625099,0.0775114030606486,0.0115557422304921,-0.0550254690806749,-0.102514107581317,-0.129924347036091,-0.128720386264469,-0.116508062620257,-0.108553218664355,-0.106587557471865,-0.108037670589075,-0.10488892023819,-0.108328802917489,-0.114736663565446,-0.103375668650331,-0.0754560965237965,-0.0589919002165217,-0.0510403805631372,-0.0458403678599493,-0.0310516501112811,-0.0188387632688991,0.0232741997438356,0.125771732976208,0.202469675316464,0.225329720932567,0.187121429183237,0.122170436248143,0.0761637441082444,0.0407306068808204,-0.00757796479497373,-0.0720140483577942,-0.112419529899795,-0.142654004912492,-0.146612282673576,-0.131837832155302,-0.112277464457146,-0.109679826779533,-0.108776828094302,-0.107860957428469,-0.105271334253267,-0.106238285435306,-0.11520275896569,-0.107869345911911,-0.0964419368619038,-0.0888730244136076,-0.103601164826855,-0.0854006792127194,-0.0544796316204473,-0.0107311944475631,0.0881209059934651,0.180585726049485,0.241629025027247,0.247644896371903,0.19198280068098,0.11733541534818,0.0234514457227427,-0.042443056964466,-0.106428430206717,-0.135152634469941,-0.144249354419536,-0.156153499751729,-0.144759986627139,-0.124845726287067,-0.110788694152683,-0.106134054892065,-0.104483401668657,-0.106687696204258,-0.105984140585907,-0.109134714589869,-0.114649122947971,-0.112588614741094,-0.108479523581706,-0.118682922089365,-0.142571060057896,-0.130703913786457,-0.0907681839569227,-0.0225021485751411,0.0701257978518251,0.158164384210492,0.203810655878703,0.186666109176674,0.137278825536477,0.0368435646782815,-0.0594961017910522,-0.13194432245971,-0.159947797429513,-0.165549317058144,-0.154670759752856,-0.146007466722089,-0.132366498610919,-0.118931047735295,-0.111965843928589,-0.105727531920411,-0.105053909010495,-0.105907361323317,-0.105440808852575,-0.109998218683982,-0.113975022112937,-0.118080870074867,-0.124452014716619,-0.135717801813346,-0.160243152269912,-0.18217730134277,-0.166181205027809,-0.113479179855537,-0.0515979747550244,0.0171573395507049,0.0639204069975841,0.0651343636696796,0.024370367564704,-0.0542809484173541,-0.12713907621258,-0.177280396925683,-0.163964517534282,-0.154055105941118,-0.1484483784018,-0.134360479461977,-0.120537464036973,-0.113075603692277,-0.105787396325723,-0.104643246198433,-0.108014966940199,-0.10765286011573,-0.105913942389246,-0.106116018383815,-0.107637973487727,-0.113436207542246,-0.127195318052889,-0.14003870060021,-0.161314801652649,-0.180327936772162,-0.186260221064132,-0.163987056241254,-0.141356898355336,-0.0991688255898468,-0.0718144347712556,-0.0440993159261945,-0.0592856004154713,-0.102456680248083,-0.135932114600789,-0.157533225469407,-0.146243143047391,-0.134267680555482,-0.132300743212403,-0.121599153556785,-0.114528461312819,-0.110191834637241,-0.108245718635508,-0.106976780730508,-0.104651858635411,-0.107751358896023,-0.105084302498233,-0.106183029772795,-0.105661617047943,-0.111086815195705,-0.116012983921236,-0.121750610754384,-0.135818608221594,-0.154376324446359,-0.165500515336606,-0.162935376777139,-0.158975707389237,-0.141848042010947,-0.132632958050596,-0.110238660026104,-0.111411005055923,-0.114060145880956,-0.13006003403701,-0.138117225510558,-0.126129907436766,-0.121021031455546,-0.118321752976729,-0.114266813951669,-0.108881597056687,-0.108276583364398,-0.105857915144991,-0.108220906619531,-0.108487015115419,-0.105096165010163,-0.105121751613947,-0.106502445135762,-0.108377548404485,-0.109475539277674,-0.107077512974019,-0.108594014624042,-0.102369790306908,-0.105220163464854,-0.101717629350188,-0.0979603546891625,-0.0977508584272724,-0.0919594610177824,-0.0977712619396887,-0.100132562758036,-0.104871845399503,-0.117010640017573,-0.128459650185298,-0.131026934744089,-0.129644018003685,-0.123249919780315,-0.115960302326589,-0.112284926753839,-0.107001716061649,-0.104475410420624,-0.105346956228271,-0.10877332684242,-0.10559127542348,-0.108475561984722,-0.10517582659556,-0.106772299598669,-0.104640093680933,-0.108611183358943,-0.107926146888173,-0.104406482179958,-0.0988951877202682,-0.0955146406223146,-0.0923066179757376,-0.0886758126426217,-0.0831346171757473,-0.0848102490543521,-0.0824581189730278,-0.0920499435824022,-0.0949969532800039,-0.102616725155724,-0.108550298796196,-0.113702080910441,-0.113155241768396,-0.113571581453763,-0.109613698196099,-0.108492425383131,-0.104681732456018,-0.106627675900845,-0.108414021075216,-0.107534769020349,-0.106206105756874,-0.106231776962918,-0.108719290995924,-0.106703897691543,-0.106427123339706,-0.105943830937341,-0.105717640831966,-0.103777203794302,-0.106263872439684,-0.106306484137743,-0.104604070889555,-0.103147847368342,-0.101787785935219,-0.100090286532944,-0.0998088711456817,-0.10099356588953,-0.102989692268367,-0.108272157521827,-0.106704182059251,-0.107083089217604,-0.108993983765523,-0.108192555742849,-0.108145604797341,-0.104750079556484,-0.10674603343105,-0.106566231169222,-0.104469158356577,-0.10613444054217,-0.108414921127328,0.140404478078651,0.110438037012353,0.112441641955875,0.110696934307251,0.113090684099352,0.112981075126005,0.110694657175582,0.113300346909314,0.11179802921536,0.111930073423422,0.111105853099383,0.110763048512183,0.112181330317621,0.111245347441792,0.112318734041791,0.112179925017079,0.111314046811188,0.110151657955999,0.11402430893965,0.114006341565682,0.114230003350512,0.111139622800243,0.114052051780198,0.114394021762005,0.110416081905769,0.112346190787883,0.112766237556239,0.11159095933701,0.112525417373298,0.1120081012615,0.112454536325868,0.114320702116732,0.111694580252869,0.111817045478538,0.111698528530424,0.112317580571774,0.110048913480173,0.11104234125823,0.112324175656754,0.110437454480696,0.109111096383944,0.108749573477185,0.107309528818962,0.107808098908203,0.108140211774973,0.108623518052075,0.107722709463017,0.105967374720643,0.10425232727404,0.106670363915669,0.110146685665149,0.112901528075179,0.112005249763856,0.112570253069562,0.114350340446212,0.111957319178762,0.110542374130358,0.113176123798764,0.110225172331419,0.113041518562011,0.112787788314292,0.112893344192661,0.110439556914851,0.113418882045228,0.113019111472464,0.112708921318556,0.106644223008487,0.0943324993112944,0.0952855607848675,0.0842284148460868,0.0657056041887965,0.0448565384312161,0.0359235120757702,0.0390444108130374,0.0301241614271767,0.0367699972393714,0.0522907729551906,0.0662835568447673,0.0875982958666237,0.102286607633262,0.110598495180927,0.109564123880073,0.11202967810159,0.112068510926353,0.110669320787167,0.110602800218359,0.11273470788888,0.113742163979598,0.112636644072028,0.11374678839648,0.110362528676746,0.111585995613329,0.112821736296964,0.113633869544292,0.105091528121557,0.0998192584992182,0.0932097867203428,0.0818396517652625,0.051728116736245,0.00188811407371827,-0.0221843189547918,-0.0403869684274666,-0.0472128217937409,-0.0402445480009106,-0.0116406529371366,0.0201075574063709,0.0639500645767764,0.0820139161375817,0.100417340838001,0.110894818616353,0.112765154000407,0.114386530788318,0.110325691772112,0.112737210277136,0.112680379778445,0.111271192888141,0.109941157596734,0.111316374186067,0.113593994250469,0.112806400803252,0.114622580802491,0.120373484567294,0.120376291582098,0.111429784415322,0.107618278021483,0.0856679007732007,0.0262272243484413,-0.0320578610304808,-0.0603930060245794,-0.069302224010055,-0.0684383672894055,-0.0572286526091386,-0.0325166993953707,0.0188109907350902,0.0469640471034709,0.0726667857776271,0.093191281324507,0.10984065920084,0.114726947313264,0.114772209554961,0.11338852633946,0.110484695059808,0.111986945662053,0.111896970850531,0.113184804550746,0.113261346549041,0.111943041324171,0.113011340293279,0.11922443380459,0.136515828023072,0.143824108458047,0.147608555954161,0.154323781173723,0.105212269651167,0.0350685708744185,-0.00597307085555182,-0.0165622395756486,-0.0136818208171129,0.0239582128426628,0.0364403546552151,0.0437287814089035,0.0467189094096528,0.061875233494984,0.0604158049480101,0.0769138235017177,0.0987389808252935,0.109656204041447,0.113308544849261,0.112805999420837,0.11076455227343,0.111828148941435,0.109892275796174,0.113432428297766,0.114318769401943,0.11425585045291,0.119356431168201,0.124044190959398,0.142751831442848,0.171630348718122,0.179355163611076,0.147690043656507,0.101773907972582,0.0449213503436334,0.019489200841317,0.0129159121071582,0.0463849752855327,0.0944083116811548,0.11439215261756,0.104255330400996,0.0838202912799776,0.0672075679978547,0.0596743886082846,0.0665696219359483,0.0969538273580536,0.112131411581512,0.115581232761403,0.111014797391881,0.111263359922837,0.111651691086189,0.112199871237729,0.111253820754914,0.112695864375075,0.112774519673593,0.109624659893289,0.117254728380451,0.139629342809473,0.160578422586082,0.154670887322917,0.114956966369086,0.0574972337454411,0.00487790471869537,-0.0203679077021574,-0.0109093083555484,0.0416191122182385,0.101958545761828,0.1256472913183,0.123759465310081,0.0918748867792049,0.0775270240861312,0.0713507282422228,0.0738460792021064,0.104488731135293,0.11524621847798,0.111977868419661,0.112718787565746,0.110938359120069,0.112706024947721,0.111196674593942,0.113021132642224,0.105360303052421,0.104075606785038,0.109058480701799,0.104046436053137,0.116755899845684,0.132078881492705,0.109551344621563,0.0457018086243764,-0.0133415199186159,-0.0831149814753765,-0.112746046879781,-0.0913941183781901,-0.00493682618726566,0.0603668740396829,0.094361572921198,0.103390425458753,0.092774356020479,0.108079052232998,0.104387013065492,0.103901294700214,0.122072773210049,0.12448594562542,0.114085295003845,0.113153533009076,0.114241485757704,0.111576043386051,0.107895774441557,0.106604364862274,0.0985521739329241,0.105269334542302,0.0960034067754917,0.0863362290268058,0.0992091150714796,0.0867815612886223,0.0522588274487546,-0.0320876950601237,-0.105529074476157,-0.174549960495997,-0.191984958522259,-0.127755855808345,-0.0270358489858559,0.0511207680362387,0.0764957380151596,0.0945402787318718,0.116114428072129,0.123279607220379,0.132591386991582,0.137264124999546,0.139794873431371,0.123877542361127,0.117447458252503,0.112376878147017,0.111963314577492,0.108963134268518,0.109464312170236,0.104247976788384,0.0963071991002039,0.101928630356669,0.0927712537874678,0.0763647462798762,0.0717688960011409,0.0554392764588261,-0.012757495079151,-0.0893160934462077,-0.154592478512889,-0.202869208196819,-0.186822499723705,-0.0936039835304544,0.00829144909059524,0.0701789225592168,0.0832566356035176,0.0968026898431005,0.113307508497933,0.132317099439583,0.144011861799803,0.142244675672937,0.141059917307509,0.126630058428633,0.11413765063508,0.111079839329499,0.111559298813246,0.110257778391,0.106612776061798,0.107261887504031,0.10466804160501,0.112896733528696,0.0952268191761081,0.0618173618866453,0.0358918506720551,-0.00350772047983254,-0.0772836567539755,-0.114488388425826,-0.137914269454262,-0.155308414493554,-0.0937487650545543,-0.017454128708732,0.0453401933851771,0.0736175600630773,0.0660482373460484,0.066054698433858,0.0876031313993059,0.115396047615565,0.113659199955414,0.116755073367993,0.12763969082767,0.124238323364716,0.117458899375695,0.114019602696591,0.113828244499379,0.111833570033801,0.109682983158673,0.10918041672914,0.107906598309131,0.105756244404946,0.072185925711279,0.0347911249023039,-0.00541265919552888,-0.0707977049171033,-0.117799476119496,-0.115042072662202,-0.0729061039533365,-0.0458263824703321,-0.000666004550603703,0.0280515777913682,0.0505396237482396,0.0371515481571771,0.00566063270372924,0.011068564268477,0.0303016395364785,0.04629888480289,0.0600708535238796,0.0884281123093975,0.11180099807844,0.117707863022067,0.112210005660394,0.111473846685367,0.112713500995385,0.113654356441384,0.111542078826251,0.109874966726859,0.105849871259347,0.0905521206385645,0.0393538787883818,-0.00117211161733748,-0.0597012580032783,-0.120887053115977,-0.14063780059331,-0.073232022420021,0.0297418927481083,0.054252230184973,0.0402458015447759,0.0206013942800862,0.00608232148485905,-0.0344245599721251,-0.0594387936408275,-0.0692485727180114,-0.0452954235348691,-0.0156202651594661,0.0192240477118384,0.0641661427791605,0.100457077782002,0.113760406444768,0.112162146863147,0.113634826497958,0.112905544246354,0.111294275861557,0.111494919114677,0.112090067067145,0.10296502946027,0.0687043242859048,0.00580498804196547,-0.057067512455756,-0.112564131221292,-0.15429898030963,-0.131799300958354,-0.033010815841354,0.0647485511165671,0.0500321928385305,0.00469780335514163,-0.0425552851852706,-0.0662439449889898,-0.1010008980526,-0.136054640763246,-0.138998682971159,-0.116730570511043,-0.0629486683831964,-0.0118012624673518,0.0495197345594376,0.0908079345117169,0.11194922570242,0.11166051802219,0.114200859535347,0.112288739288748,0.110981555474608,0.110617937182863,0.108460120094954,0.095924730225488,0.0542881887848715,-0.0188718746664252,-0.0814880002677239,-0.147529524162351,-0.164764417471215,-0.119816821822346,-0.0225320371335488,0.0425360424121288,-0.0210016320564472,-0.0879635136453583,-0.119722308005983,-0.110019022755566,-0.128068090873745,-0.151090389356606,-0.181378476057205,-0.13954400281817,-0.0783518184553712,-0.0191447004087348,0.0513803400122663,0.101840307712419,0.114647994066618,0.111313950867016,0.112373625707611,0.111781341175233,0.110946777969157,0.114075047229546,0.109778052390652,0.102568172558491,0.0616684767704817,-0.00225369432203104,-0.0762760571634912,-0.140752327870827,-0.152055299471773,-0.102789888950847,-0.0119752917194199,0.0123317459564522,-0.0829939185221823,-0.160108733427197,-0.157973309473387,-0.11989116601577,-0.116117132124048,-0.154073180749515,-0.178468049923903,-0.133116956691193,-0.0545262994215046,0.0111440293106453,0.0760680055577017,0.112546534480364,0.117135407843799,0.115630779390139,0.114113794851624,0.1133223717721,0.112746545507868,0.113600427593073,0.117684260451433,0.108364893539989,0.070863551242096,0.0324728125515718,-0.0360436332809597,-0.0837082903599858,-0.0916263383821134,-0.0431145622490046,0.014691748425669,-0.00089323703964385,-0.108702993087447,-0.177690594879474,-0.156825456153191,-0.114614456591067,-0.108154078308346,-0.129781045600735,-0.133043642232608,-0.0732820695794317,-0.000541726787356617,0.0700243007953362,0.111617977363011,0.125573317504111,0.120957983808394,0.115032343284546,0.110771439071244,0.110673386400113,0.11310952894206,0.112073093489089,0.119571710678131,0.121178144657021,0.0985431227421742,0.0743691023207454,0.0301411124053304,-0.0126297285667704,-0.0132458207640461,0.0108543822993632,0.0213240843997313,-0.0370772911766193,-0.158074594534505,-0.20116339691364,-0.173369807320735,-0.127095512741303,-0.111550293726451,-0.09685699792334,-0.0652827685921716,-0.000495926548532224,0.068333393596427,0.112188817707199,0.140645832661883,0.139884300650218,0.121904698433887,0.113733896930838,0.112223107399563,0.113930312733604,0.112793164653399,0.115149007267787,0.121609383389984,0.126561309527231,0.115632529352387,0.111693183675298,0.102539455368997,0.0770258166224858,0.0493015467071082,0.0197651451104702,-0.0307208727768719,-0.135913492158646,-0.217828303430568,-0.249932267700917,-0.210493400861057,-0.149210067379516,-0.100847667588695,-0.0470386649176287,0.0170119982438387,0.0851281771828962,0.12348785229685,0.152450141372114,0.149527178716335,0.139252623805739,0.120185738963874,0.111554904646299,0.112723124834865,0.114399963031419,0.111277645184323,0.115656263589416,0.123369450431993,0.124943630885618,0.130816625955944,0.142217517008253,0.162991140333969,0.134951558318201,0.0860776833292652,0.0261454675300747,-0.0890106234123376,-0.187052470821775,-0.259813726497886,-0.269711521233765,-0.214308785594519,-0.141106941133529,-0.0402292109861205,0.0409610938034915,0.116064576177591,0.149974002956936,0.159551788409025,0.16503110706758,0.150577581812427,0.132357234964291,0.117443694594366,0.11432771696028,0.112471950252746,0.112459937618884,0.112567678418734,0.114233392833728,0.117975475113751,0.126032056343554,0.135928935499645,0.169153039790521,0.204996545862769,0.186154825092872,0.140023670877597,0.0587346398452113,-0.05549752753597,-0.15984608972876,-0.213804172204059,-0.202215844860519,-0.145514795667801,-0.0473329833343694,0.0584315317402555,0.140268135946604,0.172720048768926,0.174494818534802,0.165852166135815,0.149856505185527,0.135812801633657,0.121904379479224,0.115008910196696,0.111544888865459,0.114008291438033,0.110984346334673,0.110649219958285,0.114646773933922,0.119946703174722,0.124394171986672,0.139256313561308,0.164243052307939,0.205652165424734,0.235136657384112,0.224286317605925,0.165184241411889,0.088461971419054,0.00743465469236102,-0.0501569115383722,-0.0526786092570201,-0.0120955476803453,0.0662918008230957,0.131174971272713,0.177099154353438,0.17056099702474,0.15968356229071,0.153258168854542,0.135147838360292,0.127397694342408,0.121200126406389,0.112741862645461,0.113812645618713,0.11093455057713,0.111898692345228,0.112734175108735,0.111334638178224,0.113023310991803,0.122422936000521,0.133360735582503,0.151224109998364,0.183023174634048,0.212773234230569,0.221379940799937,0.198087381027462,0.174623331589646,0.128837817901766,0.0948738570558982,0.0626352618420155,0.0708469363206204,0.108647592093007,0.134133740655876,0.156296159747266,0.141753241920192,0.132537197984343,0.133220785614512,0.123752223654937,0.119966533971944,0.116004602443062,0.113577651052643,0.111017764092514,0.112617292737121,0.110951074610042,0.1119600518203,0.113978410094238,0.112670926315676,0.115614869965535,0.119219655209626,0.127829577514512,0.140931779795892,0.154701324524913,0.168273246089913,0.165876912111622,0.155564581396647,0.137135748682047,0.122162086508396,0.103326756964068,0.103550709392675,0.109622826731131,0.118952862546147,0.128823991291286,0.120509192436211,0.119268115628365,0.123754248462856,0.11654050413619,0.113731529567514,0.114188033570014,0.10990295377655,0.111154894226384,0.113557043615485,0.110472073009154,0.112124203341184,0.110791678293005,0.113907508218842,0.11170350940872,0.112498606561201,0.111262137275355,0.104468418892095,0.103617839462807,0.0981373988763366,0.0859845314593166,0.0843975658077861,0.0805483480436988,0.0825123424644944,0.0918842816222348,0.0986178132001915,0.112481039074794,0.12938974284986,0.132113404004078,0.129644799219063,0.126236948358841,0.116490538095797,0.113695960119723,0.112714380147515,0.113111989642111,0.110989595833085,0.113236005870487,0.114369806720529,0.11137047828416,0.112177137124876,0.112405897140971,0.112751346011442,0.113360097494237,0.112878146272586,0.108633350139794,0.103739892032899,0.0987542221022739,0.097583060366058,0.0901969694534497,0.0817904793773487,0.0822536595235931,0.0821322356146406,0.094183005738228,0.0936088353703415,0.106065910264325,0.114651595317597,0.11745733438998,0.118184053569313,0.116148327730008,0.114715291932927,0.113319238167165,0.113564403295684,0.113056462111731,0.111084806313067,0.112537259160828,0.110065514420154,0.110833656574665,0.113833481025301,0.112961876498392,0.113963007405454,0.110974030657561,0.112067405285467,0.110396040144696,0.111037549645175,0.110139361016306,0.109158428615673,0.10988331620172,0.106917260614099,0.106518104563606,0.106068337232899,0.107261486356269,0.106124055977276,0.111398694669619,0.110932739192435,0.112704078402028,0.114709071229203,0.112850832870748,0.114219678416864,0.112054282816467,0.114115190033269,0.113578525323065,0.111787112844057,0.11169030489603,0.113691034862689,-0.148759509171417,-0.113631242144925,-0.114048909550496,-0.113484014545804,-0.113915447179287,-0.113058905319306,-0.111683592152051,-0.112955935428409,-0.113047900736849,-0.114050035691464,-0.112251917842789,-0.11475416206141,-0.112920157255913,-0.110798665614429,-0.113102929276458,-0.111801428120756,-0.113965781957558,-0.112854110452348,-0.114827535151872,-0.113748200631515,-0.112595853130427,-0.114585397254055,-0.11116570406944,-0.114048103875935,-0.110729331179248,-0.114148602756829,-0.110626613467627,-0.112403639754172,-0.114264635291208,-0.11351485062731,-0.110802180760763,-0.114261815900386,-0.111391647922966,-0.114132518446412,-0.113899844317932,-0.11423781792347,-0.111884265957865,-0.112570828057804,-0.114829397583299,-0.110724058676484,-0.109661361629811,-0.11214235797867,-0.107162289256804,-0.107151175342132,-0.111004182849966,-0.107898960096096,-0.107356200632079,-0.105649959641087,-0.104869774144101,-0.108662790667835,-0.110080810707211,-0.110435741828721,-0.112267513256453,-0.11050830746397,-0.114454449663563,-0.112756569307034,-0.113758329725597,-0.111391394108988,-0.110880018854072,-0.111229440896068,-0.114454405848612,-0.110626211330933,-0.110821209259101,-0.110485981277487,-0.110422879034926,-0.11322351857392,-0.103117674981776,-0.0938538750189171,-0.0944684780803904,-0.0833322766541308,-0.0611107123162662,-0.0410129741333837,-0.0323030646735215,-0.0375780340241155,-0.0262861303549189,-0.0350835028030985,-0.0489063710920159,-0.0677252360127045,-0.0887385399774088,-0.099131946489873,-0.110956041658641,-0.113729298147455,-0.114160592148364,-0.113317478273482,-0.110887139957574,-0.112950982274118,-0.112042628060714,-0.1117220493028,-0.112447630629505,-0.112740236418918,-0.114020615356181,-0.111883450956429,-0.114874499595373,-0.113083560269518,-0.104900077555314,-0.0971187727948498,-0.0945385001601236,-0.0811369501736589,-0.0481089205670098,0.00286657022822496,0.0303012581870195,0.0477461887319202,0.0523721365869884,0.042922534564885,0.0144316565621183,-0.0199114667985646,-0.0603545227911428,-0.0819449083250415,-0.100878056615057,-0.108875906850172,-0.110983608256803,-0.114735745149697,-0.113284554749523,-0.110657153201012,-0.114285325668248,-0.112190403736634,-0.112233085246516,-0.112891758245956,-0.111068157509747,-0.116794858492381,-0.116390046594462,-0.120912057991516,-0.119497894414612,-0.106778558475367,-0.108523664924386,-0.0795861628345846,-0.0202906775319258,0.0389539349258797,0.0639329992322609,0.0759502117647667,0.0668278164991129,0.0593487178255991,0.0309039624705181,-0.0181076645259908,-0.0493138140293248,-0.0757559078869461,-0.0955477095789436,-0.110719039681083,-0.116587254795553,-0.115375907457685,-0.111661931835016,-0.111019560605926,-0.112104997948287,-0.113557020500986,-0.112216129455992,-0.11084186254688,-0.112185522595673,-0.116051025967422,-0.122082071214708,-0.137356989297567,-0.143927581433637,-0.144612290270243,-0.150217304397794,-0.0951110456446657,-0.0242454429813388,0.0143513361346725,0.0251482628718517,0.0187278399928524,-0.0229323399210388,-0.0388378958706702,-0.0483433057310018,-0.0544053549127382,-0.0676511872963503,-0.0665385849315729,-0.0768254213418837,-0.0995510846879078,-0.110424547835756,-0.112058207351971,-0.114375538481268,-0.113700327359548,-0.112009270623676,-0.111309471816299,-0.11325327662424,-0.113179080116469,-0.115122437995743,-0.121103889364314,-0.125507063791147,-0.144553857429146,-0.173247456920896,-0.177118494638993,-0.146847468563329,-0.094725429810904,-0.0380209146538521,-0.00754589464321833,-0.000777096729807207,-0.0420847584104424,-0.0974238906138457,-0.124988560501621,-0.117994845646062,-0.0973518341781079,-0.0763984279440142,-0.0688782755893801,-0.072564881958901,-0.0977119945129721,-0.113228810424503,-0.115313073082727,-0.110855332804709,-0.11352528419673,-0.113850385394565,-0.114598601543679,-0.113618959191158,-0.112028749555653,-0.115390276919994,-0.118581576071814,-0.126488953305481,-0.149942453731519,-0.16856890413468,-0.164392966497373,-0.123092110689711,-0.0570124432243071,-0.00434114823198953,0.0278965303941612,0.016714549619371,-0.0423072139902995,-0.10971017424379,-0.141892146289044,-0.143424886234074,-0.110618036059743,-0.0960862076844065,-0.0794780841763611,-0.0754617123979082,-0.10479263607364,-0.115586893983826,-0.112584595422552,-0.111615718369675,-0.113312793217523,-0.110479949511453,-0.11318104984616,-0.114173677916118,-0.113724002667228,-0.117413085931855,-0.122789782394747,-0.117540302947569,-0.13685703446021,-0.150699053606962,-0.122535868010379,-0.0609357224556222,0.00761579296823678,0.0827487044005022,0.112530422923711,0.0877319306805017,-0.00610843151412348,-0.0791894050976304,-0.114940037429678,-0.135090657743016,-0.122237829353122,-0.128428193469747,-0.11661894023665,-0.110147780599575,-0.120825921996267,-0.119890727239384,-0.11415410701349,-0.110540904897752,-0.111805223964663,-0.109869927378632,-0.112255828190648,-0.111454784420835,-0.107419067221988,-0.119036220662069,-0.11255358909003,-0.105562786013579,-0.124120770352755,-0.105053643962593,-0.0761366140117788,0.0155509463362573,0.0939050296333495,0.166163683322714,0.184180699996094,0.115516638788167,0.00841227821883891,-0.075553020177522,-0.102913905631472,-0.122963532985162,-0.146620891223095,-0.149155254917558,-0.14873030779753,-0.146816028325994,-0.137872762095235,-0.124680951079581,-0.116243531762824,-0.111863396293587,-0.114519936216995,-0.112748067201083,-0.110358001543548,-0.108090771196052,-0.106888480325992,-0.110175441758533,-0.108492296012067,-0.0965052617850184,-0.0944056099846959,-0.0748688332015864,-0.00777195032306975,0.0792043734983899,0.147183874016065,0.192597035654917,0.17801415265469,0.0841104623086079,-0.0200748605886415,-0.092471569259219,-0.109404293078366,-0.124905860457053,-0.141812824578437,-0.159107532106256,-0.157798614583087,-0.150108816922739,-0.141589432462576,-0.127940696098957,-0.114947370630968,-0.114295151765832,-0.112738488325906,-0.112381866326877,-0.110184967248024,-0.110393790750976,-0.108677821137597,-0.119751535177985,-0.10803088394391,-0.080958184568606,-0.0555082194791496,-0.0159966811921123,0.0639778867258089,0.111769895170264,0.13870123842623,0.156090144863975,0.0984883963105894,0.0201646745967862,-0.0486020634349902,-0.0908431015195127,-0.0848982774543442,-0.0914457550572376,-0.113000606443253,-0.138029894759693,-0.127378929524624,-0.126300320117893,-0.134590180657188,-0.125728462910574,-0.114871844236111,-0.112858081082037,-0.114823393007707,-0.111615276125755,-0.108872337608832,-0.10910212926782,-0.110512353232491,-0.112974040709064,-0.0853026398398061,-0.0501362979179192,-0.0137995693935243,0.0554479274474456,0.112883716039904,0.118203860669852,0.0765507697279763,0.0550390097636982,0.0198713213606136,-0.0146843897116292,-0.0496022025756771,-0.0422222396408896,-0.0200498311432951,-0.0267353298532444,-0.0445113225233641,-0.0643756927024352,-0.073053343583957,-0.0953312517234238,-0.115828457164304,-0.117065841052037,-0.113502881782155,-0.113784501069184,-0.112074436814606,-0.111905067168397,-0.112070048009515,-0.112194764188549,-0.108410287025171,-0.0972980269729625,-0.0559567290483207,-0.0160684633771094,0.0460808127960047,0.112368347411833,0.143495965614057,0.0806041641231706,-0.0169264176592395,-0.0344190067745352,-0.0188590215220829,-0.00618943227211703,-0.00319884829221812,0.0293634484367724,0.0523840564777642,0.056317867517619,0.0333807074993461,0.00750161386169153,-0.0273274002447983,-0.0698745546816735,-0.100087294919545,-0.113792398286468,-0.115981978438513,-0.112074702148163,-0.112367781765497,-0.111341541670402,-0.114618388799239,-0.111008269814604,-0.10307235054777,-0.0786358755056174,-0.0214005017760161,0.0397762823117274,0.103404286744037,0.148180427314822,0.134069391096207,0.0421411274865326,-0.0494800121127822,-0.0294433484503599,0.0178243592159834,0.0598944645593066,0.0680315533990362,0.0976056676110083,0.122930270400094,0.131761355717764,0.103098381277221,0.0541001550294963,0.0105792713627028,-0.0540154793842721,-0.0942836666835622,-0.110675042093322,-0.113638118964745,-0.111027006866239,-0.113565566915007,-0.111637759948027,-0.114206134069539,-0.112041915491176,-0.0987128253080191,-0.0683102374677877,0.00201005965311838,0.0658930272225885,0.1355593312238,0.160423655659748,0.121564193360853,0.033403689238809,-0.0293743880998776,0.0383116096032846,0.106026844889835,0.131485149561117,0.110027314042265,0.122966861830796,0.14294822125337,0.16712187558219,0.131846384694651,0.0716693981395543,0.0134377389131021,-0.0538839930709748,-0.102694164641463,-0.114227806639328,-0.115116190237243,-0.112181157160899,-0.110979130121921,-0.113629167622687,-0.113738741422528,-0.110268987534441,-0.103041822867875,-0.0664702101197204,-0.0156392046407063,0.0614437351769863,0.13086574117414,0.148183143064547,0.10560233593333,0.0186927976171759,0.0063022439987568,0.103980003617949,0.174246703838378,0.16521640626816,0.113860228376472,0.103155923073014,0.144789818977777,0.169748772670556,0.123918224128512,0.0505913659865368,-0.0154317190260584,-0.0789534440902182,-0.113952131878127,-0.120381312984814,-0.116452739444965,-0.111323221579668,-0.110453850214134,-0.113108380699032,-0.111529083644257,-0.114388618608566,-0.113586809148303,-0.0830387726998073,-0.0474999106594379,0.0262485579962273,0.0835757771227182,0.098113659704327,0.051854596452404,-0.00502524688126887,0.0204476611696254,0.125250722031514,0.18378916944947,0.152667504878164,0.106943576126003,0.0955753540806053,0.123456726934411,0.127071923810449,0.0726478340318589,-0.00250374251334297,-0.0710970235708373,-0.111311372157775,-0.125419744994125,-0.122025872904486,-0.11522334120625,-0.111615894943451,-0.111798595269618,-0.112294748215428,-0.113087494841754,-0.118526889139839,-0.12271604400333,-0.105550009719794,-0.0847390349514491,-0.036694611735818,0.0147064542545898,0.0205482896368151,0.00218107205542246,-0.00271541067941974,0.0566990450067365,0.166853575040795,0.202661484124889,0.169474412927397,0.124546334614639,0.108012144644308,0.0971185088783203,0.0656130383647842,0.00328394050894041,-0.0678841834263028,-0.111730056425226,-0.137885713720734,-0.138953529596635,-0.122459255380872,-0.112658271886508,-0.115041728287037,-0.114534040149196,-0.111876124963956,-0.11249985216737,-0.119996102508358,-0.124593729523147,-0.122757674200249,-0.118686796230582,-0.10787334744317,-0.0765827296709654,-0.04197287620245,-0.00351063971495931,0.0456782653964718,0.147205630876402,0.223959211888541,0.249193341453345,0.20779913208876,0.145235990043923,0.102634776132991,0.0486488702538601,-0.0145434816742889,-0.0795250085784833,-0.120022895886948,-0.149229327846197,-0.153032293818091,-0.138743256547033,-0.122823829393099,-0.114818312637112,-0.114325480401995,-0.113900843414057,-0.110618850066353,-0.114561582893186,-0.120926279766944,-0.124547908432967,-0.137235103176382,-0.149235889336159,-0.166560124793622,-0.139726789825886,-0.0849716641190923,-0.0164953914606736,0.0984720489199285,0.195120996697383,0.259918466091324,0.266000019836603,0.212158610023784,0.139900034017761,0.0423554595196851,-0.0392186379840863,-0.116904502954272,-0.14714778982216,-0.157847876126985,-0.163680984186053,-0.147169837374576,-0.134743873530005,-0.117946463325365,-0.11085273517499,-0.111226976731958,-0.110494802380637,-0.110856899876274,-0.112746552928667,-0.121546852153752,-0.124940003149272,-0.138551688009162,-0.175328777070299,-0.210593110714355,-0.197437770445299,-0.143109216428127,-0.0592949618874358,0.0575529049909336,0.158116028658529,0.211801290826654,0.198226646818234,0.144037797683928,0.0430903253848589,-0.0601341258454172,-0.145042167925701,-0.172360571759386,-0.176921462398222,-0.166126426713724,-0.14919984244653,-0.13351009382614,-0.125825523122781,-0.118320329460415,-0.114323563455648,-0.110421693769721,-0.111527419955871,-0.114769484068197,-0.112710400644388,-0.118368373507173,-0.126157538965807,-0.138346288191984,-0.169278449084378,-0.21275886935089,-0.246343053359599,-0.233332711814255,-0.175245483569108,-0.102717240812965,-0.0182940534600696,0.0404387267535085,0.0438748706338117,0.00465851667530734,-0.0744342572953293,-0.13700501299543,-0.181976456360451,-0.171537723837257,-0.162917946713807,-0.149139460256374,-0.136024856079447,-0.123867710024775,-0.118681160683648,-0.113258188850548,-0.11244069715648,-0.113624570271731,-0.114600334133285,-0.111861898081319,-0.111234081745357,-0.116705330429438,-0.122935581707089,-0.130239169857214,-0.151547664699803,-0.187727198253854,-0.216121028572305,-0.230673741736154,-0.207410667232807,-0.192829003240489,-0.1431226766061,-0.108404702324642,-0.0728533316564722,-0.0842261703980259,-0.117227653042699,-0.139926170964843,-0.159019559408454,-0.146198789369879,-0.132788565627386,-0.134218940933702,-0.124915959561285,-0.11901197718277,-0.115433079366282,-0.112814758206901,-0.113356205681676,-0.110733652332434,-0.111846790285712,-0.113961175741764,-0.112158917471871,-0.114171336308182,-0.117088897800847,-0.123245460944784,-0.127261063077821,-0.138943865268469,-0.156696413215838,-0.171947192217598,-0.172693265328823,-0.173165847006422,-0.153959529623636,-0.142887489129192,-0.118340711462971,-0.116433800383909,-0.114549860499987,-0.12310674723137,-0.133450321189927,-0.123141650646241,-0.121931081208176,-0.12033736730114,-0.116827417055572,-0.113119157822938,-0.111945618119837,-0.113621894396701,-0.111681994254726,-0.113350217076114,-0.113146970636141,-0.111602544760114,-0.114608612458533,-0.112032278683628,-0.115042401950333,-0.115084377865975,-0.111787674790894,-0.110703159581329,-0.109398825814785,-0.108427316732034,-0.100682056418703,-0.10177019239255,-0.0964859206393335,-0.100853560240169,-0.106329107486839,-0.108100593437162,-0.116353586454347,-0.133148199664612,-0.130610356484478,-0.132825639933477,-0.125075509763744,-0.118708160207968,-0.117531421394665,-0.111105306553752,-0.112575998643042,-0.112397991509979,-0.114480111470842,-0.113663832010669,-0.112407675367405,-0.113069810323823,-0.110785413426787,-0.111982796249133,-0.114041634497362,-0.111418976717244,-0.112427213289785,-0.107902696609795,-0.103743651551824,-0.101349191435932,-0.0982058702923575,-0.092931289583102,-0.0960411006893093,-0.097873584888621,-0.103350993586702,-0.102665871484554,-0.107692174525756,-0.116765156603042,-0.120682324701269,-0.120144075255837,-0.116915319843307,-0.115020391925143,-0.115272760308222,-0.111747376441137,-0.112479920183247,-0.114357674060826,-0.113480111441166,-0.111072454336846,-0.113636507331834,-0.111896579762782,-0.111545710165923,-0.111468280111313,-0.112040850021403,-0.110644182792918,-0.113393036201262,-0.111282956237119,-0.110824786959479,-0.112268015767428,-0.112138639349801,-0.11104025851564,-0.108943312338923,-0.112372356664033,-0.108721687290777,-0.107215282765286,-0.114651654035585,-0.111276385399532,-0.111505226320425,-0.113506515503173,-0.109902743949085,-0.113412829315772,-0.113740166086569,-0.114210294581531,-0.113710524156424,-0.113863139966897,-0.112794014164705,-0.114529634504858,0.150439175277594,0.110522826283937,0.110583726621727,0.111817029961153,0.113847051163451,0.111158556573663,0.114527861214874,0.114409731209676,0.110949517676682,0.113852987176924,0.111996236345807,0.113552130644042,0.112698261687476,0.110603433738368,0.114484988647582,0.110461911325389,0.113395797742383,0.113228343751028,0.111483281359723,0.110250903967365,0.112815462814666,0.111669876798069,0.112007688423053,0.11374787154366,0.114074373843371,0.112346476182204,0.11448319223764,0.113117231193382,0.112323061136527,0.113711523762387,0.112689906088702,0.112052239150326,0.110507688015386,0.110688414704801,0.112404878682978,0.111502657976447,0.111682744062038,0.114348443760628,0.114289349305102,0.110147988551445,0.110952487646439,0.111595552275611,0.111012455076595,0.10935175378126,0.109798652932493,0.107852556466111,0.108737516424016,0.107631558192026,0.109049982071613,0.106661252633867,0.109689275354689,0.112723752944018,0.111950611886968,0.114313977618726,0.11140201605244,0.112778602246199,0.112915139608138,0.110329828811393,0.111640591929434,0.110412455450981,0.11328113622507,0.111478994425202,0.112513411473665,0.114060966714486,0.11333675544847,0.113044565520964,0.104573490389733,0.0956089478632099,0.0975364967610002,0.0883051135586595,0.067195325706944,0.0504410608222364,0.0439537299918704,0.0454827815660459,0.0418739829180575,0.0482696662568118,0.058314224555081,0.0721851294825202,0.0908729457800052,0.100054965693891,0.109436078065954,0.112398139312174,0.111360308629743,0.112564377573437,0.111573183742125,0.111346302256859,0.110610865599854,0.113247237263414,0.109939903585849,0.11232403163195,0.11449154864382,0.114327634325772,0.11387180942707,0.113412826741296,0.10380303224786,0.103142489695513,0.101291882146278,0.0938575013261303,0.0637894388418329,0.0149835453153431,-0.00559302165041693,-0.0199711069782043,-0.029909756509922,-0.0243719053670535,-0.000742363361976098,0.0295102812661881,0.0701369542580758,0.0836795853344305,0.0994847499835109,0.110687301262993,0.110689876710231,0.112105713870894,0.111499024197453,0.113834555915881,0.111101821678806,0.111683909598615,0.110083237779947,0.111168300280448,0.112197900453632,0.119006142454645,0.119889490988675,0.120931792153558,0.124355941298857,0.116050174370564,0.114233491856079,0.0896933448877135,0.0321079047925302,-0.0288049223252324,-0.0544387781060392,-0.0593359250076981,-0.0559590274620426,-0.0426912456225808,-0.0144408715606764,0.0302344733447942,0.0541532286402384,0.0780151986484259,0.0952700025223786,0.110173535515128,0.114311134336522,0.111405510187736,0.113784576307228,0.113286354621849,0.11165462193895,0.113356221283938,0.112267085207398,0.114587719556119,0.114247826957067,0.118451186867857,0.126617078070925,0.139963824011984,0.147884352105853,0.155513203237366,0.168769151478763,0.116287704567936,0.0397154040184567,-0.0108842228657658,-0.0234182257056897,-0.0136788175485807,0.0333253435880555,0.0522168530018803,0.0609636930438144,0.0654628255545645,0.0741520899279039,0.0652173439965993,0.0795200501003929,0.0984650574150703,0.112354325729989,0.110993417727498,0.110665452820186,0.111516748462736,0.113861582856738,0.113703953164282,0.114227562909941,0.113374535385333,0.116459470116914,0.121815748219023,0.129141892552589,0.149531972268774,0.178225235387203,0.192709658589982,0.165223221294795,0.116699481429147,0.0516794121736863,0.0121739005687036,0.00214638662634165,0.0392650723028205,0.102530822122321,0.132675131332287,0.131605778615203,0.109896278070759,0.0873241745833111,0.0737095508317988,0.0754539580631788,0.0949152239439985,0.11068691811735,0.115920282229625,0.114345185161835,0.111121454413934,0.11244284940907,0.112138873263019,0.110426536142254,0.11283428008692,0.11169348666785,0.114447232658786,0.1249296649986,0.145220696183534,0.168920466460748,0.174740135934894,0.140108992690848,0.0758289217404265,0.0129483336175114,-0.0303716161329695,-0.0325004072114641,0.0278245191497822,0.0976006137380366,0.135286594194442,0.14440407275881,0.112986677355519,0.103778467526498,0.087935822909426,0.0822813766906685,0.105409320357522,0.116905462431082,0.113526708042491,0.114455435487287,0.114015407293247,0.112540374557698,0.109961458386903,0.109803884719978,0.107594989448789,0.111237129841271,0.110396919072987,0.103915259901773,0.123020925451032,0.144254694393089,0.127267610636964,0.0668925617039075,0.0036245002953104,-0.0815022445320464,-0.132465987150711,-0.118211531108437,-0.0266525315482949,0.0505277334924833,0.0992323273550497,0.122879291729577,0.118231113046124,0.133150205570154,0.12571212211498,0.117314486089411,0.121403833658155,0.121472201546968,0.113822980077499,0.111641982504499,0.111584782200815,0.109853730231444,0.11083355188489,0.106791574314114,0.100370284151274,0.108979670621263,0.0972825106762803,0.0836778716901617,0.106371574569456,0.100372576862801,0.0764395639162117,-0.00160615587776778,-0.0813844579859047,-0.171560988443283,-0.209746794025275,-0.157188860268409,-0.0526059017593093,0.0403745343876562,0.0816212584569664,0.107920360277582,0.139934053893212,0.148563998817616,0.157652046286636,0.149366385318841,0.140137385346575,0.12220967450162,0.116520046389887,0.112126603868098,0.111597438006162,0.111226622263818,0.107175886036572,0.102389002045379,0.0996010795741726,0.104429577113974,0.0921844916392581,0.0812729101724897,0.0875853713340901,0.0761930408207395,0.0218653515075573,-0.0550270099090463,-0.128094100792166,-0.198141821322734,-0.205166655730564,-0.131903908749505,-0.0258009608649195,0.0600814511898116,0.0849325487394331,0.108214803599236,0.132224025490902,0.158909887047339,0.166492257590316,0.15973213565319,0.14639167137992,0.126764363909044,0.117889255148618,0.114349903766672,0.112376488619772,0.112324622542018,0.109479753424256,0.104763308412691,0.102349094178205,0.110211699652841,0.0982107298648472,0.0781824791025808,0.0575677496657657,0.0286038152856444,-0.0368539593949979,-0.0793688361950515,-0.118320724864917,-0.163832173638087,-0.13605833633491,-0.0709672715044797,0.00688288646885995,0.0630628948021989,0.0706682276837506,0.0843845834604389,0.113769798534495,0.147131504943554,0.142132844737864,0.140401555948222,0.135659688060397,0.124113110988968,0.115884396890151,0.112040029841139,0.113122929143293,0.110364721533711,0.108199112187786,0.106698694312241,0.106470573625562,0.108223819761926,0.0816235177008433,0.0538434332651231,0.0219605785490701,-0.0325672265333352,-0.0790851916344388,-0.0809120545218896,-0.0546432393897245,-0.0685089158846272,-0.0544743509815007,-0.0263916485365425,0.0174119569072015,0.0313234963239604,0.0129936096735986,0.0330082353388756,0.0635717908720217,0.0867912003178951,0.0895134650886263,0.109175291502788,0.12346525180867,0.118382033198768,0.114007101200042,0.112531582446113,0.11022627075389,0.11371817480124,0.111059191960846,0.111148277801553,0.106576398127202,0.0926885514234385,0.0545596982271681,0.0215061111130252,-0.0238148733782638,-0.079472581332967,-0.101606536369992,-0.0442922187974229,0.0350361014587308,0.0129523130750459,-0.016371005203467,-0.0334875602099517,-0.0180819778773878,-0.0306211141966605,-0.0440120777293371,-0.0393577606655975,-0.00252457022530131,0.0300648096601442,0.0539776297452879,0.0849416844693904,0.108180680877784,0.114661907870559,0.11321115095404,0.113151587550433,0.113040981762047,0.112410934809205,0.112525087543431,0.110277277723368,0.0999737233737636,0.0817830975016807,0.0286117552165928,-0.0251530594486961,-0.0775880398217475,-0.11583918348541,-0.0998755544439973,-0.0120412537998296,0.0562724508564611,-0.00136378805900836,-0.0520732554416626,-0.0917060385244952,-0.079339080677826,-0.0947511882979547,-0.114165232483563,-0.106397630839753,-0.0701256686280409,-0.0144947030548651,0.0228500783463991,0.0700886041822953,0.0999264732653783,0.111986425447338,0.113918862984479,0.112627723887804,0.113694824048557,0.113087752251977,0.114254790471939,0.108303503906366,0.100785729820598,0.0703408375983244,0.00523815752271891,-0.0463489038898239,-0.107994174755011,-0.12771397814699,-0.0924215620459266,-0.0124402980026899,0.0261128957416918,-0.0688276527874015,-0.136551340211755,-0.159918077653269,-0.122818882418938,-0.125844534214775,-0.133580306260161,-0.140951978334546,-0.0921248504041805,-0.0307077108711953,0.0203705811112586,0.0748156561673635,0.110437539946677,0.118016800989158,0.114457345361229,0.11361825518316,0.113257070359154,0.11333841653532,0.110777743414917,0.112785240577588,0.106249664545057,0.0768474755009218,0.029879673822047,-0.0370703889310265,-0.098339726758214,-0.117394613353333,-0.0778260018922717,-0.00454717933265969,-0.0195411955906172,-0.131378589596087,-0.205607402108794,-0.194876097303441,-0.129443765213945,-0.105486781778943,-0.131674688658767,-0.135468408547909,-0.0852133731425474,-0.00533424682961903,0.0493183015307761,0.101325595872334,0.118529712036844,0.119927988106693,0.118288524282572,0.114114147650399,0.114464816507086,0.110249853812779,0.114214397632411,0.115947403295898,0.116712176425153,0.0964642730681155,0.067882938171918,0.0065489698683229,-0.0446176998273341,-0.0591230712414455,-0.0200736597344166,0.0182935545636893,-0.0351828409121881,-0.160924640214432,-0.220354280386039,-0.186809303862202,-0.119413973744045,-0.0861430961103634,-0.0952581511508404,-0.0785362103455846,-0.0170730746349783,0.0502081180821625,0.099720603402995,0.12853358334045,0.131833541226611,0.123107993886664,0.117565934273311,0.113608233838171,0.110689257538228,0.110494374835561,0.111062210596701,0.122061745611478,0.130982173744395,0.126086566304156,0.112861427964889,0.0750283837206496,0.0303105529535412,0.0245245619829185,0.0372797797188013,0.0214203983355416,-0.0729100062882994,-0.198354471149825,-0.229495223958569,-0.19049131972658,-0.122483874642481,-0.0821946636768352,-0.0514595225749166,-0.0053410029466085,0.0564899842823627,0.107191673049112,0.138787699204713,0.147448316416141,0.140372465949923,0.123573141068694,0.112629214285697,0.110834895643533,0.112176945371388,0.112609640691662,0.112627162458348,0.121299089405507,0.133147054759642,0.14259070159629,0.152811758018263,0.148888273977364,0.123139321701858,0.091206633563784,0.0453658649704814,-0.0279361849571868,-0.152291584622541,-0.247015976903789,-0.266454350956385,-0.210535475431182,-0.129332716178236,-0.0582056598619989,0.00742512850071166,0.075930503207016,0.128467907782407,0.147173367774164,0.161823508820307,0.155870018053371,0.143715187652771,0.123757320428498,0.111238685245585,0.111028503085956,0.112298212134156,0.110615010371794,0.11615662170398,0.124023817633137,0.133054295267199,0.151429591250052,0.179727757193365,0.206611653093551,0.184829314792546,0.133512005306573,0.0565494280684697,-0.0773322422241187,-0.198176098774887,-0.269830286189547,-0.271441608174542,-0.204938802719616,-0.11514509860904,0.00294144762606155,0.090937079218438,0.156291995672326,0.179801897269794,0.175083438253208,0.169155075915475,0.14971147719506,0.135018604871073,0.119225689150279,0.112440271105189,0.110411736941947,0.111079225162279,0.113821323072455,0.113476629238035,0.117068266969617,0.131309660868631,0.149369740447457,0.194502182519829,0.241860644867711,0.235865256646659,0.184380276575471,0.0873064518595255,-0.0455871342325338,-0.162565252315856,-0.220032350818228,-0.199035357609467,-0.136796645684366,-0.0252837373853577,0.0909755820012276,0.171235566359843,0.19769962035245,0.191412795360616,0.167812178995976,0.150191736139107,0.135153897822176,0.123302735934805,0.11636621199305,0.113146237035757,0.11423992540474,0.110292067774076,0.113856474521149,0.115153683971227,0.118006107915829,0.124681848143857,0.144080161591583,0.1808482537445,0.23311531299691,0.270088247796299,0.251670622587445,0.184852655659697,0.0901324073142739,-0.00233331226199754,-0.0583496434559145,-0.0605615862114981,-0.0120078282627518,0.0704522689088247,0.141791950247678,0.195909690540089,0.18294892633141,0.168428615941065,0.152604298090906,0.138222220334729,0.125391896523014,0.117515079142392,0.112687361284889,0.11139124902786,0.113808266946792,0.114342554303382,0.110889622408006,0.113854174295921,0.114109604220248,0.11990878828076,0.130030035070132,0.153736756907475,0.192881388377574,0.21883686865592,0.227559111882822,0.194805243606503,0.163914056984992,0.112372283389241,0.0758143649584916,0.0415788433501339,0.0621616265350663,0.104167303798172,0.135643924377242,0.161812377174454,0.149052580562675,0.133356337336809,0.1335485257613,0.123103910964625,0.122123556614555,0.115852550355583,0.11273341887654,0.1137816526557,0.11143047466614,0.112513352779115,0.111897768283304,0.114329731969477,0.110469684967706,0.116982883816074,0.122425603803553,0.127458076611821,0.136159372793972,0.154429431391029,0.164478645962662,0.157170417391939,0.145673848157556,0.129495797498323,0.116443408497541,0.102379438953425,0.0996986895045491,0.106098783148431,0.12018631825318,0.130796172539874,0.123353060729844,0.122096150238008,0.122313891101997,0.114469504934756,0.115446789232947,0.113289696443572,0.109697443904567,0.114108233431406,0.113609650583707,0.113890337860739,0.112384967438453,0.112760900912603,0.112105658142707,0.111046205553273,0.113476926324387,0.111461570906396,0.103447063007901,0.101604311967662,0.0913302057998746,0.0821443988699485,0.0797033035208407,0.0724559510697554,0.0809439571034838,0.0889232105806709,0.0992005236208334,0.111510737525471,0.125630286799486,0.129421711179328,0.126316259640084,0.122714521349496,0.116726333180409,0.115366073257464,0.111853886706388,0.111225301576964,0.114612471958852,0.111305899018573,0.111287343079868,0.113174078596682,0.112810932251934,0.112499137344599,0.111579956766235,0.111642348359695,0.112275267324522,0.110294958883428,0.102876238945307,0.0996413456655748,0.0916359197746304,0.0856709035898183,0.0765284250355696,0.083172263606326,0.0841313021816691,0.0926811085590066,0.0944338972034326,0.104180299809713,0.112956538733406,0.116040157467232,0.1147946207743,0.115765238686398,0.112292851281504,0.113677350102154,0.113501211185182,0.112314538639719,0.11420106576649,0.111609935152825,0.110342607659701,0.113812269419502,0.113341586388147,0.110862018657041,0.11046973209884,0.113540936721008,0.10981973215101,0.112013877182243,0.110967348246298,0.110643371276037,0.111844259805112,0.108802862945125,0.110925069041954,0.10851540625816,0.106980001801247,0.107669505575674,0.105751011275351,0.110971998527897,0.11089167247069,0.111253634506531,0.114243839244364,0.109952115029327,0.110883984590522,0.111736259856443,0.114177132122145,0.111713584574637,0.113567864788738,0.112869448366041,0.113343988458785,-0.159348780362858,-0.0876948681916108,-0.0901024975070251,-0.0904624342568599,-0.0879675065827624,-0.0895275758152835,-0.0863123391914676,-0.0882497150564914,-0.0886270318459566,-0.0869214635445161,-0.0901612976076554,-0.0869877307643463,-0.0880775120644492,-0.088029873282204,-0.0875246968193654,-0.0891392030793577,-0.0875549674040538,-0.0894304318686093,-0.08882313893117,-0.0877896332816507,-0.0900716083866915,-0.0892666932956742,-0.0905170322752169,-0.0894597714766151,-0.0869345796907965,-0.0889151732180683,-0.0873266763015615,-0.0874465064678345,-0.0867170100411961,-0.086444875347102,-0.0869421518290557,-0.0901593295447435,-0.0875786458795424,-0.0882561964452357,-0.0865765989920546,-0.0876446900484498,-0.0901839349366854,-0.0907448233250716,-0.0863312725905554,-0.0901989970154721,-0.086316037184626,-0.0882988305784429,-0.0898046545998921,-0.0907144822205831,-0.0894640290675874,-0.0882073941404767,-0.0875830368550487,-0.0884171435078677,-0.0884201361965218,-0.0857873645595411,-0.0902562215271561,-0.0868291597081599,-0.0893949405074412,-0.0870183804404428,-0.0895261719231158,-0.0882914164436375,-0.086635534089854,-0.0891670913754635,-0.0896320322130398,-0.0864789452734863,-0.0869155797355455,-0.0871151626498863,-0.0864331461158736,-0.0866378625933266,-0.0893054031815939,-0.0878436386566323,-0.0900470572680726,-0.0935285810229356,-0.0916626657708045,-0.0932628143068781,-0.0914811393465835,-0.0909617832649407,-0.0893234361005731,-0.0859319327466282,-0.0847298447351396,-0.0806719136869748,-0.0855749250419134,-0.0870028999863507,-0.0885119567454381,-0.0849575106067039,-0.0875798011261972,-0.0883605780145084,-0.0882473267752191,-0.0882698410765817,-0.0876111796541242,-0.0884531747936999,-0.0886433147721535,-0.0885415123897525,-0.0897030649903119,-0.0861781413771635,-0.0892293540019836,-0.087822715284158,-0.084597716510734,-0.0893828758477544,-0.0867143215843305,-0.0912559444964629,-0.0870993732836167,-0.0835029161182592,-0.0833649412588686,-0.0783341357068652,-0.0763678246203308,-0.0654911078703169,-0.0623255331258434,-0.0725524065108699,-0.0810766790553809,-0.0811874637812843,-0.0836405809046118,-0.0860903361222572,-0.0885840848194807,-0.0904139332558972,-0.0873856189814464,-0.0868610981475311,-0.0890314782826823,-0.0866813959016343,-0.0867652037888278,-0.0869601995307788,-0.0883640889811759,-0.0864829932528526,-0.0862858683145659,-0.0845648127926619,-0.0831922274057123,-0.0839045335168798,-0.0844161187970799,-0.0876999868310375,-0.081801500167213,-0.0825949731230971,-0.0687321048666312,-0.0505620546660113,-0.0424474041328931,-0.0450932584878805,-0.0518151792278993,-0.0655530319269445,-0.0714839815416853,-0.072776805816249,-0.0819284502134777,-0.0859457129381355,-0.0919938183986841,-0.0881606843564226,-0.0878209038874129,-0.0883197410691389,-0.0873378117363075,-0.0887604451678752,-0.0880748442173957,-0.0871770755064932,-0.0872657464428209,-0.0895443257304009,-0.0882171049355003,-0.0802649151596229,-0.0753201661390194,-0.0809515356286936,-0.0908976092769888,-0.0957966720754105,-0.115452187933685,-0.115746112347177,-0.101575184315438,-0.080066469927913,-0.072466409645316,-0.0873933468699438,-0.107660372519501,-0.106619734865185,-0.0866463779403976,-0.0708240967253667,-0.0586056890535428,-0.0619351809451726,-0.0764324040026479,-0.0875904195374773,-0.0890617395759675,-0.0911498460093917,-0.0873594559050595,-0.0862083888394313,-0.0868894824895344,-0.0880880748022896,-0.0853275327391663,-0.0862266902502568,-0.0770325541718542,-0.0686770116896892,-0.0672726039590412,-0.0700684488759601,-0.0874696328317515,-0.0953456031954426,-0.111898342933231,-0.118834760021206,-0.112395494927597,-0.11768297387678,-0.124191157625262,-0.145106217020642,-0.161208936122786,-0.13961015798728,-0.101412752040308,-0.0716879022171534,-0.0459020050395689,-0.0481767455914731,-0.0734601682941236,-0.0916143538881045,-0.0898190341592025,-0.0928125124298124,-0.0873431803643035,-0.0904222150310845,-0.0895669508797513,-0.0876122152986304,-0.0808009311381129,-0.0551442796038197,-0.040605033799789,-0.0184741603712222,-0.000813259134168028,0.00248320325482706,-0.00526997182680711,-0.00661469998520865,-0.0229438665163273,-0.0221067562335817,-0.019231442510508,-0.0195410550165249,-0.0280005105761562,-0.0392993973929218,-0.0505628850916873,-0.0306357498371051,-0.00644232694486579,-0.00218660198852645,-0.0223263382952357,-0.0270088520125201,-0.0740466760389796,-0.0864304752297487,-0.0822387848686064,-0.0914274053240143,-0.0903157404266314,-0.0883334766977696,-0.0876130963568842,-0.0788561863430979,-0.0608435718305228,-0.0303871308235058,-0.0102070666338118,0.0280863687651311,0.0598694713785751,0.062981711947954,0.0644832955715733,0.0610808540086045,0.0561733146611755,0.0624285036600606,0.0909337498200016,0.112838806888816,0.107052229844141,0.0909142162446631,0.0772345598479967,0.0759234648049435,0.0634635187466652,0.0403908833611069,-0.00880314729667273,-0.0299205195687452,-0.0709360092394265,-0.0852318931377592,-0.0907138323657072,-0.0904147122287921,-0.0908194073113166,-0.0871092319890599,-0.0880168554289563,-0.0740213567680682,-0.0483237357027705,-0.0129892129206128,0.0132166500842759,0.0551841956763762,0.0818223704926736,0.085046877821827,0.0704525680726271,0.0674234733871135,0.072751381019134,0.107448730089134,0.150166423456593,0.181014632642856,0.175655274896052,0.157900446492434,0.117571784521274,0.0965071613254642,0.0788293343416996,0.0353884494968302,-0.0236958844089884,-0.0547792026111695,-0.0760821561078731,-0.0906524684945327,-0.0936043717528864,-0.0883930286482489,-0.0864348832690556,-0.0883849175139796,-0.0843646872665193,-0.0739377848489983,-0.0465620346002642,-0.0137355170074978,0.00495436471364525,0.0363033350628042,0.0417066013434928,0.0303900220137719,0.0173593866105856,0.0130895202447599,0.0386689970446797,0.0809867345397345,0.134153890187257,0.153640727233713,0.133114924059235,0.109430209013805,0.09541485817532,0.0939487979386245,0.0689132668845568,0.0198345897073597,-0.0476291687077657,-0.0839933890684488,-0.0939359154119351,-0.09580487579498,-0.0915768675845714,-0.0929873761676554,-0.090307836145242,-0.088316623300693,-0.0844915479373548,-0.0752853076641595,-0.0587544072025412,-0.0424376259232943,-0.037632650250667,-0.0364143692702898,-0.0364176190328995,-0.0314449137070005,-0.0341091427863555,-0.038793900023058,-0.00714532856347821,0.0208715833577766,0.0631449404108529,0.0392666247728189,0.0226388587414912,0.0407466560190887,0.0598862328582566,0.0689094618779174,0.0458808339378183,0.00196840718898397,-0.0661053270051351,-0.0939000119587084,-0.102095752689151,-0.0981191406628807,-0.0922838643798463,-0.0932286652504453,-0.0889708047403144,-0.0896571649543889,-0.0866795443224116,-0.0850613807601241,-0.0705803301854693,-0.0708581442469966,-0.083088283743851,-0.0809160723006126,-0.0832230051924754,-0.0672026539750111,-0.0647407120162463,-0.0589014913169612,-0.0629261653943083,-0.0651974578255721,-0.0608169286072745,-0.0769166000877373,-0.0622145145525155,-0.00360129376461796,0.0483084534372845,0.0683631804363794,0.0399702270168801,-0.0219065996572086,-0.0784921188468706,-0.089253383073107,-0.100595133169874,-0.0946699874670427,-0.0885146995859347,-0.0899540306669933,-0.0885489086231705,-0.089081313156939,-0.0872018384184091,-0.0856406741147055,-0.0799034159476373,-0.0827541958971509,-0.0889672592073463,-0.102397035395861,-0.105290235956632,-0.0820512803805696,-0.077898616930423,-0.0774271376738735,-0.10616080892508,-0.135268745858161,-0.144968765017067,-0.141845514738182,-0.077152688730038,0.0115416850371664,0.0640185292142315,0.0748675899048081,0.0361369766376257,-0.0241498510972652,-0.0778632866421367,-0.0973961540590849,-0.10093978276486,-0.0969123302682135,-0.0926861446694425,-0.0873370078751452,-0.086084315507177,-0.0875695811349731,-0.0893407849250819,-0.086402828402084,-0.0840078887065602,-0.083822558816885,-0.0956261438840309,-0.0904774930604888,-0.0904462189113774,-0.0868596261156029,-0.0874507884863965,-0.0958330610205638,-0.130776457631436,-0.160284195818914,-0.152604456781702,-0.113912299614123,-0.0223765404298542,0.0656857187141379,0.0902707968723082,0.0886099259762774,0.0559553173953845,-0.0175473297529316,-0.0701481568003078,-0.0939125542152237,-0.094563133497723,-0.100655104988111,-0.0894779994678524,-0.0892194969813667,-0.0866718443006122,-0.0896987477540573,-0.0863842133610045,-0.0893090056880996,-0.0846894958040839,-0.0850166458307362,-0.0923743052614303,-0.0683511096851777,-0.0791433499559648,-0.0728156823603444,-0.0864445439273338,-0.102464540999389,-0.12697718668739,-0.139906170106921,-0.108012877955408,-0.0470613619870955,0.0586584977526902,0.111290548788188,0.116107693036141,0.0950765217390719,0.0617285575976907,-0.0142809814470654,-0.0647211506365833,-0.0927811735180892,-0.0894664549965918,-0.0993804376786772,-0.091031751447417,-0.0874152591310452,-0.0863777198160835,-0.0861963957992721,-0.0890125518499287,-0.0898969908902582,-0.0819084501534971,-0.0810036569055764,-0.0801752950649609,-0.0624390504413262,-0.0575389993166474,-0.0663041466491371,-0.0806670189272933,-0.0995820207941014,-0.13169467500508,-0.109205163794333,-0.0375831622768484,0.0470405444131004,0.114887576233797,0.128482739455965,0.113338783108262,0.0882051789355366,0.0269948796276937,-0.0313876651344155,-0.0794087631930984,-0.0920350959098215,-0.0909645522214518,-0.0992424095432236,-0.0870780719382368,-0.089600296936262,-0.0896366614628033,-0.0898655948334396,-0.0867466213718594,-0.0903488173394549,-0.083695301460789,-0.0864722114918149,-0.0799878358685425,-0.0685672052558254,-0.0605915816085242,-0.0720316164338993,-0.0935340917333156,-0.121604445320423,-0.132046575663264,-0.0753074200809725,0.0298064552082615,0.11250804905632,0.150154398574401,0.128382987418164,0.0892328048640855,0.0322637930463418,-0.0411215429007081,-0.0868942168421337,-0.0985463723896696,-0.102511880163984,-0.102616538929668,-0.100220833322907,-0.0870442421128072,-0.0884594842543952,-0.0890314388922639,-0.0875391607748808,-0.0887348504615649,-0.0892612126905412,-0.0876089118498372,-0.0842033868502334,-0.0869914026653737,-0.0781904764325661,-0.0828779486880186,-0.0939972437324978,-0.120314227287676,-0.14896451434814,-0.120851436937169,-0.0304109436898182,0.0958928855584262,0.160127105972406,0.162723862821408,0.110334718302058,0.0479868282857527,-0.0531449312986036,-0.11713655582014,-0.129504398689029,-0.1057978307444,-0.10758036234685,-0.106319494150041,-0.0981341160279702,-0.0887283484100514,-0.0866257833997571,-0.0888081982302209,-0.0893755716014592,-0.0868365951854147,-0.0880633477253005,-0.0906730833743924,-0.0823801209844705,-0.086066546074736,-0.0876017996179335,-0.113323954963807,-0.140114849885227,-0.158478134335656,-0.150403128919332,-0.082860401266034,0.0478657529598819,0.153147179723012,0.18445763621947,0.152114675983451,0.0713666388383565,-0.0333278092206863,-0.138465713281587,-0.162015751982667,-0.141300963968906,-0.115683929561585,-0.104569857075013,-0.0955348520315515,-0.0914820717912721,-0.0871921032055626,-0.0878651101790188,-0.0867656090375256,-0.0891372743604002,-0.0870048435595461,-0.0897419478914768,-0.0877525490542971,-0.0835746539720915,-0.079592042711598,-0.101871793227636,-0.134681249057158,-0.155242224631126,-0.162913312516407,-0.125568557853017,-0.01789656208378,0.0947404766916363,0.163378118600629,0.174752238310017,0.12051561412913,0.0174529469097234,-0.1128740151564,-0.173914445402585,-0.170530377501799,-0.140873936619166,-0.121619647732069,-0.101060821754975,-0.0925417987223659,-0.0902774761924947,-0.0902511680980387,-0.0892058995899468,-0.0885494877462279,-0.0865463754660257,-0.0901440722198015,-0.088543103692418,-0.0880320803926456,-0.0862158956874683,-0.0834545375259831,-0.11003192005945,-0.155487782848986,-0.164664546847971,-0.156553816117895,-0.0987659498134171,0.0103412312124831,0.0968531525426208,0.133850858140641,0.121343609694943,0.060869573970087,-0.0510124379202091,-0.145050444886354,-0.18162149328343,-0.157363604185624,-0.135348139707129,-0.115871738954119,-0.104091246470362,-0.0943874708755645,-0.0889263881271461,-0.0861508561454824,-0.0887185419546798,-0.0904453209040996,-0.0877525766759818,-0.0891498951809892,-0.0884013410745724,-0.088381276039202,-0.0877508042332183,-0.0910984324598439,-0.111670200462115,-0.148284104518356,-0.160893710960527,-0.143019090927509,-0.0707087817201409,0.00594991348907285,0.0648607014195162,0.09802310281624,0.0727533120608314,0.0182763082797463,-0.0742681933821957,-0.138294480511824,-0.160601661061964,-0.139573686603634,-0.128171039598166,-0.117837694943457,-0.101213336923325,-0.0908427766360283,-0.0865522577131864,-0.0888479802337116,-0.0878487165341118,-0.0890371668697572,-0.0879721761445449,-0.0886366266609889,-0.0886154187978487,-0.08886207209403,-0.085654268244697,-0.0910886202691428,-0.104891864918006,-0.124444278919433,-0.130712795617818,-0.105799961537246,-0.0535295087051668,-0.0125350384297085,0.034951019428598,0.0519028023561995,0.0344176389283424,-0.00718958183890071,-0.0787607177294055,-0.121993472169898,-0.143448989869037,-0.133195070094182,-0.118669512867818,-0.11044954391529,-0.0996025993769733,-0.095548838308408,-0.0874026077044913,-0.087458380501363,-0.089667182998461,-0.0878587592403728,-0.0871337075808434,-0.0869568747361835,-0.0889929700137453,-0.0868988160300299,-0.0826900367742084,-0.0845084110693465,-0.0790306910279962,-0.0747586629012069,-0.0606906159270424,-0.0422512812742378,-0.00912761019523604,0.0106603412966119,0.0300773397069221,0.0338102346167787,0.00647938140519326,-0.0334728923653744,-0.0861532227883384,-0.112238689642842,-0.133331214027839,-0.121622031364105,-0.109002269094017,-0.103054755361676,-0.0957855259308233,-0.0931669730137097,-0.0865661953779684,-0.0853287778614527,-0.0893986876590437,-0.0869806947209015,-0.0886096150589657,-0.0875409780018116,-0.0868575771095873,-0.086069802991613,-0.0903374225784841,-0.0826341948478982,-0.0683996385395724,-0.0476733356184629,-0.025587292011623,0.0125036090857474,0.0388991070920313,0.0515153868343069,0.0362726684233881,0.0208725437615608,0.00111887371548006,-0.0319432944840474,-0.0680354677613955,-0.102867048436211,-0.111926396220618,-0.112423504637269,-0.105507390090289,-0.0992550287365353,-0.0922447793742071,-0.0916607014592215,-0.086519846731814,-0.0896876506362584,-0.0882375905858792,-0.0884049472193616,-0.086422320183487,-0.088655410419955,-0.0893581331734417,-0.0881990988975503,-0.0893602920775144,-0.0841094464896984,-0.0778821040374319,-0.0568035000166981,-0.0372673156007578,-0.0134033526404929,0.0119916920356467,0.026863072726594,0.0188207701454615,0.0105146959153025,-0.00701663698367673,-0.0255734089999222,-0.0428195010927671,-0.0693862736267349,-0.0860312715817698,-0.0925110725202888,-0.0936915575288203,-0.088927550839222,-0.0888930129151545,-0.0899098247792834,-0.0873072086003521,-0.0871635189047981,-0.0877349101103432,-0.0880444695940578,-0.0865004011252046,-0.0877226008700521,-0.0901236379373839,-0.0895822001030652,-0.0896050491037548,-0.0863956109976494,-0.0836058687992536,-0.0851718613548017,-0.0816011315021311,-0.0825919328932365,-0.0755314338530628,-0.0728226028088677,-0.0688893361530944,-0.0694249419552107,-0.0663101252871608,-0.0670912254517627,-0.0758843672826686,-0.0842177716606836,-0.084045312630583,-0.0897261117913937,-0.0873509366579218,-0.087614837185699,-0.0863792573683613,-0.0879563993021322,-0.0892469374928954,-0.0900271449333708,-0.0882307297929833,-0.0863373351020081,0.108573799640519,0.0272447807370258,0.024177874692791,0.0262774298307852,0.0270177361930625,0.0275121132167157,0.0253821065390018,0.0256722625944099,0.0271945543850725,0.0257723296495825,0.0256250627095934,0.0234343202105411,0.0262908715605311,0.0262780125634731,0.0236622104293705,0.0254137374519237,0.0249284193624709,0.0235458080315742,0.0264716326105802,0.024530777995775,0.0270703527509468,0.0264102840218621,0.0260162555297269,0.027618959932538,0.0267544170600915,0.0251481981909577,0.026121152963707,0.0247315994741392,0.0241656207329986,0.0240909872265913,0.027293737808195,0.0241686268872397,0.0251284912049692,0.0267571248056019,0.0260531039176577,0.0232577015272758,0.0235038492802743,0.024865533152935,0.0245704963838306,0.0252500031795691,0.0249929043714509,0.025256983316289,0.0229016173071012,0.0248052380166605,0.0254308330105968,0.0215586566930625,0.0234289351226683,0.0248079516070449,0.0248389143511463,0.0233686808302451,0.0234853760541905,0.0232968099001011,0.0232069548414501,0.0266576927102518,0.0249000560357465,0.0264053221899687,0.0264171944195797,0.0256311718060142,0.0259331662622691,0.0251968690123283,0.0251521149133111,0.0262122061259148,0.0260659289249756,0.0262276948702277,0.0245090010469436,0.0252669817113702,0.0256238092606202,0.0286010125057992,0.0265136259145011,0.022916211635407,0.023758837140078,0.0174433954495056,0.0125359354051313,0.0093517900054167,0.0105967968079388,0.0134587872962875,0.0205685853989712,0.0197459799300797,0.0183630359189157,0.021631546381226,0.0229300806224401,0.0237983665251865,0.0245042035040422,0.0239268324352745,0.0262630122281764,0.0234243853003336,0.0235082968589089,0.0267730712064261,0.026679398327198,0.0268303319127967,0.0236036628344759,0.0226094925278003,0.0250166167333075,0.0265383124220196,0.0238957963530074,0.0293189079572769,0.0267779342589869,0.0252504910139895,0.0314632821900762,0.0100690388228863,-0.000801179757214924,-0.00792302092752478,-0.00516573520592829,-0.00521495124946452,0.00655834189017905,0.0102262698720931,0.0196879244512269,0.0198493812020283,0.028578087494807,0.02562956719463,0.0249325354915855,0.0228756620436466,0.0250522555290769,0.0247268902865216,0.0250400798220274,0.0254899833783955,0.0239076373974344,0.0270270846223456,0.0248151022504299,0.0240895172812914,0.0250887151101276,0.0299563580397159,0.0346543765533955,0.0462544417357871,0.0457253730748983,0.0580885910679809,0.0521869430408121,0.0389305854127658,0.0140988390237845,-0.00734711285416448,-0.0132853514816336,-0.0102372946528231,-0.00955509103625051,0.00561764587565467,0.0232592596621319,0.0285895019763869,0.0355202102038824,0.024945233608118,0.0230889252247629,0.0239839535647135,0.0235947357778971,0.0241375610164231,0.0254212481731218,0.0253455997880731,0.0244802743604651,0.0226279932387839,0.0255087919608921,0.021803619010355,0.0226515060106813,0.0328030071873935,0.0388964764808082,0.0440962182951117,0.0458799887515065,0.0591194666342377,0.052411819092511,0.0287115523512362,-0.010286817266678,-0.0254550461237381,-0.0228957178691516,-0.00732338494697005,0.00372771773896653,0.00710680776508724,0.0133654153881017,0.0315728772950577,0.0366588197768249,0.03003902003311,0.026937646180682,0.0274320208331702,0.0267080720656598,0.0270256878712699,0.023982520204219,0.0267875859483258,0.0257141550149621,0.0243832787820797,0.0257446323215473,0.0267378185464354,0.0316339642702169,0.0431470649543288,0.0513284965866168,0.0551866522340748,0.0493005553330578,0.04481552379597,0.00708310822664463,-0.0194048473942475,-0.049647555617403,-0.0402388640821124,-0.0195806039832044,-0.0122823273839134,-0.00791198180966302,0.00188248587728452,-0.00404589590218711,0.0123101537390615,0.0289346936924474,0.0273558899566568,0.0209077820921013,0.0228367238090914,0.0267806352981454,0.025370819395885,0.0258387530834143,0.0247815308189367,0.026196406720568,0.0276148376625424,0.0312716436716066,0.0346626888987942,0.0386206786711665,0.0483751297850935,0.0446545314182483,0.0504310204182796,0.0419464617369201,0.0216736990269307,-0.0185176138186894,-0.0423739660046988,-0.0486133582892158,-0.0267176314139052,0.00636972673292362,0.0126098279138998,0.00968188555312777,0.0110753067897977,-0.000363128536474121,-0.00765879111999662,0.00308627794510847,0.0058498555759047,0.0136820672900566,0.0247356211091948,0.0250754130864621,0.0252704734198107,0.0250542072645138,0.0246504616661361,0.0271480462174972,0.0279214908291313,0.0317358353827915,0.0345889719045464,0.0459961285750205,0.037352918416719,0.0437754901477588,0.0342343827386367,0.0247695839792247,-0.00264599036293987,-0.0337357962282845,-0.0464043023728555,-0.0278598233744469,0.0101514239123632,0.021150547077792,0.0210570863408434,0.0174503389611289,0.0139766122912485,0.00757145387627922,-0.00169838911824866,-0.0123004381819047,-0.00213278038052688,0.0113858641849414,0.0199085137079494,0.0258080425437963,0.0272086224680223,0.0251795809195117,0.02525810350536,0.0290095045999365,0.0301990358810024,0.0341232932872636,0.0336185367531463,0.0386107490862467,0.0320126527617384,0.0337973082752402,0.0212488846025184,0.00523187947673799,-0.0275663055575282,-0.0397741606208248,-0.0252093682851574,0.00518081756909754,0.0322397646036755,0.046195851383176,0.0483676072298073,0.0223699790342921,0.0146236823087941,0.0252133521826191,0.00554366409648584,-0.0166298005030964,-0.00432266871771481,0.017915574330964,0.0213406978216685,0.0226293903435179,0.0270798804372343,0.024382917692562,0.0278652327577076,0.0263498609139851,0.0306594960728779,0.0289671460115633,0.0293973656121606,0.028561884921737,0.0199110182443251,0.0183539327496565,0.00987365537265421,-0.0259944813510939,-0.0532482249384911,-0.0444586530552249,-0.00490689662925568,0.0496958368990799,0.0473516907561565,0.0612613109174389,0.0547422830834293,0.0281055516906376,0.0234410788211835,0.0304422002163425,0.00949568867782563,-0.0161757027894192,0.00241563429910919,0.021947822665836,0.0238687679867903,0.0277292851545312,0.0265243990713588,0.0277275349510876,0.0262605765408132,0.0238610321638254,0.029406249266347,0.0197177368422071,0.0249106886822088,0.0180415854811534,0.0153609837864724,0.00244291132804736,-0.0192374852752548,-0.0500482550691617,-0.0670862324111282,-0.035779052402474,0.0366724754997078,0.0789547734158395,0.0669239468160288,0.067034522665123,0.0617209403589606,0.037760075035667,0.0294796102914306,0.0232825610084148,0.0125274217814097,-0.00369322965787222,0.00805140276997536,0.0260532521444324,0.0220006627027104,0.0267702680383403,0.0251707124626432,0.0275637234624268,0.0279698148579501,0.0254636904255203,0.0272701801099671,0.0224988042782275,0.0218894644393484,0.00715282418004905,0.00273118770820773,-0.00793257442959737,-0.0321757077768483,-0.0605224609063959,-0.0611669326879983,0.0064696796995726,0.0795630519668562,0.0904630965554954,0.0679050513057991,0.0786445085299838,0.0652777249022243,0.0429612718246989,0.0220274649072688,0.0169548495515629,0.00307974567845301,0.000884225582672774,0.00853946525617796,0.0234962109656218,0.0273891250248608,0.026099446775225,0.0245690001918012,0.0249889333166128,0.0268959832858079,0.0267270361755052,0.0313904121842397,0.0259667492434821,0.017292812581487,-0.000738677864370946,-0.00476456169183421,-0.0305564722918404,-0.0501156061361816,-0.0580442637776382,-0.0401400014470407,0.0495669329779855,0.0985157245834964,0.0903872464383761,0.0670208387570529,0.0759507173679133,0.056681621366663,0.0378917263203559,0.0241272817026832,0.0044846495604348,-8.17032197365873E-05,0.00563797888811555,0.0185317727849565,0.0310577126833764,0.0244765060721888,0.0256216758986494,0.0265457189868557,0.0232022677954658,0.0250818449628464,0.0288258756389883,0.032020303456132,0.017675971402178,0.0112924945306867,0.00451173312568893,-0.0106324589024969,-0.0382277580284743,-0.0514410131720271,-0.0491746578013551,0.00026263475919345,0.0758952602399486,0.0788877172747847,0.0622229791200239,0.0398758362949104,0.0366371983484706,0.0319938412324941,0.0307621401386203,0.017817331715565,-0.00220943226214014,0.000751006864580084,-0.000979979752971742,0.0118107048009266,0.0263353685408248,0.0251565862979523,0.0249734215597854,0.026751270944228,0.0275268877131461,0.0264110237891612,0.0276519544067234,0.024697869359432,0.0142237860725601,0.0151677584419828,0.0096944423082376,-0.00786102016149076,-0.0338549192660524,-0.0492124905054432,-0.0233756367099568,0.0320710499928581,0.0739107116903623,0.0675161955205802,0.0387523010864851,0.0189233922546802,0.0155878989690279,0.00545007210544811,-0.00105611364513944,-0.011886061793673,-0.00289511596690289,-0.00503811298937155,0.00140629119083181,0.014443302667,0.0222310198867606,0.026508670726038,0.0246785628133786,0.0274711799574233,0.0238778058115984,0.0232210748428421,0.0249247025145591,0.017523838016816,0.0115368567487737,0.00782992625455681,0.0103899779052723,-0.00507419729771688,-0.0163578123710127,-0.023043708370993,0.0110226189758451,0.0472256650058219,0.0611458978079124,0.0602336566888806,0.0339998017983624,0.0156628389783024,-0.00342178695331356,-0.0277574796449488,-0.0326773177399837,-0.0258762600507648,-0.00618798800894823,-0.00629134855246861,0.0124537883472877,0.0167016086710851,0.023903694057664,0.0252634445343471,0.0261356584328348,0.0240659858955064,0.0238205035949007,0.0233015763057535,0.0244366216599949,0.0186876204203728,0.00981337438977634,0.0052672292598254,-0.000126690178887142,-0.0117931116941503,-0.0232671039876828,-0.0186846021157096,0.0140259653182881,0.0344431395004876,0.0477149090990999,0.0416908809341076,0.0172459747724574,-0.00405560684765006,-0.0318583059250491,-0.0481791548425233,-0.0423663591897229,-0.0255914768184909,-0.00923181600094431,0.00125257469692169,0.0141292126221079,0.0174835920259838,0.023734475421032,0.0263866792343509,0.0272334351201859,0.026041435736716,0.0237104295668357,0.0249997331539321,0.0280344816371215,0.0237756526676014,0.00607205881925764,-0.0135856474371692,-0.00698481683739814,-0.0206774310869964,-0.0250583721110827,-0.0250083465769763,-0.00901083179730414,0.0110793274539165,0.0222019929459332,0.019721732499834,0.00525058551488668,-0.0298296231788286,-0.0628875675591041,-0.0552644516403919,-0.0420080340951956,-0.00784032932160889,0.000928862787840792,0.0139050232557571,0.00693385470168068,0.0204616638409428,0.0285225828702569,0.0261581899127747,0.0251515438759833,0.0260153316412108,0.027709443691073,0.0274360978989761,0.0298107168740951,0.0217161315273471,-0.00213810251546637,-0.0137528426220382,-0.0207539711211956,-0.0159250990341805,-0.032999072693657,-0.040754777600624,-0.0347067506082851,-0.021192536353932,-0.015280561852397,-0.00914509830852241,-0.0200333667428508,-0.0513328567735919,-0.0578427695524405,-0.0376308116535093,-0.0141541059711586,0.0129372720074657,0.0239766486147559,0.0186846529793772,0.0122634073220427,0.0197280867750161,0.0266694189311582,0.0278376976302912,0.0233660012246778,0.024546058729275,0.0255447438290241,0.0262752301437165,0.0263479431320792,0.0148205873787655,0.00297217219838922,-0.00993737331858251,-0.0115325223140214,-0.0146426614643801,-0.0370996398030758,-0.0449536694979845,-0.0554885421113475,-0.0417805211456399,-0.0378494619817745,-0.037282725113758,-0.0442795599005302,-0.0299248266417556,-0.0283934466055573,0.00214166875318034,0.0257850453701173,0.0349229742372095,0.029506105463555,0.0238468937690253,0.0194121295532043,0.0207509813850787,0.0281820869785093,0.0250511858824121,0.023714948839353,0.0253285994444773,0.0234030898474778,0.0232194939732906,0.0215712114822524,0.01993729127449,0.00968403937531995,0.00302576163504812,0.00483712054875269,-0.00732208243700712,-0.0226396703271851,-0.0408363336229825,-0.051677568358292,-0.0442505145579579,-0.0375115818788663,-0.0306324072561301,-0.0134998175739805,-0.00103527486020114,0.0210850187573014,0.0376699032133573,0.0305416689580217,0.0305365723196656,0.0195033129183271,0.0243510270825236,0.0168376322244193,0.0164941339705106,0.0236346574488789,0.0271552417298167,0.0263351751309422,0.0269308905591825,0.0260556405717687,0.0242505943717571,0.0252676964121669,0.0253054517811141,0.0239333985538309,0.0187326559062985,0.0203043156282539,0.0212830342136281,0.0130436203855012,-0.00360705083221041,-0.0104646260682391,-0.0133340161993641,-0.00812205595264091,0.0121593416425552,0.035708446794216,0.0462847737375705,0.0463447032361321,0.0349030090094574,0.0207321813590148,0.015805179633048,0.0195975299468284,0.0173443392858985,0.019494866803632,0.0236263557979996,0.0280721826441131,0.0267271107279153,0.0244216459974063,0.0242419449903991,0.0259338302167054,0.0268443131131233,0.0270030478559162,0.0252522988727932,0.0307557253765931,0.0353510297563633,0.0369824760115855,0.0369671730948525,0.0491080432937669,0.036473927475262,0.0348236455724989,0.0295875272199881,0.0405152559770229,0.0564373828428957,0.05773458947153,0.0470279246108666,0.031821473507514,0.0175690045501109,0.0098264984195309,0.0217156133876872,0.0185308357949888,0.01803077679296,0.0216012415546539,0.0245549093091329,0.024568608790596,0.0272042460219306,0.0233092865007473,0.0246234213876619,0.0242483702591753,0.0259085057946973,0.0234966328871436,0.0263645604072966,0.023373122936684,0.0295079008032623,0.0347441029422261,0.0412901243145053,0.0479750624386512,0.0520566260282796,0.0514920541998696,0.0493216542413634,0.042856719059322,0.0356581165414715,0.0277517100559657,0.0313272488395373,0.0239430474125274,0.017045126233044,0.014227646298473,0.0156252697263502,0.0167360208830292,0.0197833695652748,0.0240004052386045,0.0267859442655072,0.0249445637232511,0.0235629220129399,0.0255656184437828,0.0274837280174932,0.0237949717181409,0.0234667683715795,0.0236942861221026,0.0220783770124154,0.0254890869699022,0.0264726951310974,0.0277423986000711,0.0314777459415011,0.0381045312599343,0.037138872307312,0.039105822700709,0.0405763779022975,0.035637413520409,0.0374566999242065,0.0327830828645456,0.0306784175797259,0.0302898343153603,0.0229753653153317,0.020552495937825,0.0203081704882726,0.0278487641872516,0.0238828940297053,0.0266874802932012,0.0250660662735287,0.0254823011976347,0.0238985863040305,0.0264831054688077,0.0262291478493668,0.0264191478216116,0.0271810737794586,0.0245352964839325,0.0250735439388223,0.0270750784086223,0.0319771312835311,0.0325822900667979,0.0357616896464657,0.0413303216519547,0.0361603273493257,0.034518665148445,0.0400231730878783,0.0410800430122992,0.0364161247928579,0.0313251730344851,0.03247156847124,0.0370473530479712,0.0340515353092838,0.0263951614402961,0.0241446780666382,0.0274251441367187,0.0251577247944163,0.0235319297395372,0.0267788132963,0.0257776302228008,0.0232819513985006,0.0233946543319102,0.0254426045868119,0.0259211293773239,0.0256320137619075,0.0270176697937096,0.0243424605218756,0.0256165739453566,0.0250068263869609,0.0250490868516859,0.0262078731155765,0.0280769645061245,0.0253813652214765,0.0238943497329306,0.0263241530950617,0.0259835739548354,0.0249838580323102,0.024143383452856,0.024106834802568,0.024332903107385,0.0273072916459807,0.0235974098715449,0.0247866995737538,0.0252572928973639,0.0269487289935382,0.026804139426934,0.0264601744019163,0.0267857715242255,0.0253765835537216,0.0246615700035799,-0.00913323334311287,-0.105230031382948,-0.103327437224838,-0.106899684520984,-0.107212195589316,-0.104900857911226,-0.106268613417982,-0.103735407233454,-0.106322269397384,-0.104143688931083,-0.103635713789477,-0.107140340796501,-0.106374522339519,-0.103922313161277,-0.106229336505841,-0.106198261022277,-0.105565678933035,-0.104137134181357,-0.107460132865647,-0.103807006246328,-0.107277118831019,-0.103419775068389,-0.105760782238173,-0.106820605671361,-0.105986008765116,-0.107174439777168,-0.104968970514161,-0.105516234185711,-0.104716899538361,-0.104071926259745,-0.104767665616657,-0.104405708063423,-0.105185428864735,-0.103503379215542,-0.10422419234275,-0.106784482210503,-0.103493913633899,-0.105724664746837,-0.102954853878523,-0.102550229908244,-0.107881676311007,-0.106106940338614,-0.109810932974679,-0.104365217757544,-0.103985915513457,-0.103511182902903,-0.106714678827571,-0.103647785874443,-0.1054485327594,-0.1067656451109,-0.107789217107724,-0.105930015991554,-0.105022232682929,-0.105981824595638,-0.106619774035006,-0.105833357033378,-0.103827673895969,-0.107024394237778,-0.105212392451373,-0.105816606876632,-0.106669871531496,-0.106919995932126,-0.104426354356587,-0.10528191662592,-0.106400103019972,-0.10323990887725,-0.101375712649571,-0.107846684441455,-0.109982883435522,-0.113943734190691,-0.110942344743388,-0.117207501099867,-0.114950503048629,-0.115673458849519,-0.117537836099046,-0.115178148113176,-0.115666435815348,-0.114186723434761,-0.106274255622909,-0.106698681430128,-0.104218948450687,-0.10646215943525,-0.103743067662635,-0.106139574318939,-0.105372048981012,-0.106174941482701,-0.104626760530528,-0.103518098983919,-0.103131097116272,-0.104113180686452,-0.106341289541503,-0.105146569320136,-0.104311697000387,-0.106506122728466,-0.106543772510115,-0.110844897019907,-0.111013474660445,-0.115770962596499,-0.119036747352212,-0.125257233340234,-0.12630944560764,-0.12570312658941,-0.115918380902886,-0.113951076035134,-0.115125144760718,-0.111911030068098,-0.103750179734439,-0.102859149000778,-0.104991033000896,-0.105244428122166,-0.107688101192423,-0.106695489574503,-0.106623691696619,-0.104104203604209,-0.10474122523548,-0.105348331934169,-0.103895610585973,-0.102847686068967,-0.107666172664108,-0.109380414708791,-0.112539801387233,-0.118089324177217,-0.122643868075907,-0.123409954612873,-0.120101166565927,-0.0909562886692629,-0.0431666564859591,0.00199726139890144,0.0162591255847907,0.0140469832949576,-0.00503092915058273,-0.0173106202305179,-0.0290921922724747,-0.049458652250799,-0.0775608090820263,-0.100268994201695,-0.105907702702828,-0.10928919828405,-0.105315894381903,-0.107355952147161,-0.103679266404122,-0.105068994067125,-0.103835331993424,-0.106947229385763,-0.105939171352975,-0.106404360197769,-0.107562590361458,-0.111359136959646,-0.119527310575478,-0.132458253127359,-0.149687616535293,-0.158317746254425,-0.168148657370578,-0.117755482035245,-0.0468493441694887,0.0119968101558293,0.0496647272425416,0.0370621639031659,0.0100458336688489,-0.0175302958541517,-0.0385048086863682,-0.0535808291058806,-0.0855879851526036,-0.101046469304814,-0.110182505956334,-0.111511300838659,-0.107498255023531,-0.105087304944186,-0.103305398602887,-0.107491152959664,-0.106422142901369,-0.106730226961807,-0.105079813120755,-0.108884436964825,-0.115477986136768,-0.122807137152232,-0.128512953916733,-0.146881283711946,-0.168221721141638,-0.190007704404489,-0.18543539134312,-0.147850852066401,-0.0866829039772089,-0.00522436186837423,0.0461403830000025,0.0462019085503675,0.0153438060661705,-0.0193261420773316,-0.0596516118715826,-0.0779009121896448,-0.10619545742226,-0.127897398713979,-0.13306106299332,-0.122341762294039,-0.113923737049209,-0.109234061753672,-0.105567621461245,-0.107350702882397,-0.104078706320833,-0.107025296465496,-0.109026089276602,-0.111701445326354,-0.117315109156849,-0.122952716183508,-0.121436311692468,-0.133724191456037,-0.157933934961303,-0.191583746165793,-0.213247483663885,-0.168767952735405,-0.0765772498661778,0.0203132683434559,0.0829554170560924,0.0857570626431669,0.0400689851408528,-0.0158850310453602,-0.0712024307046764,-0.0959923170463665,-0.140025319691348,-0.154221717729956,-0.14723467485121,-0.133578845167518,-0.113500815912692,-0.110443806999175,-0.105081880218664,-0.106918690661149,-0.104897773118302,-0.105693789552081,-0.106191583446902,-0.112004488832341,-0.11444846420138,-0.116186291137405,-0.114427213561697,-0.128015887492206,-0.159680530789344,-0.202660836840796,-0.2182391290465,-0.169424890610981,-0.0401655071159819,0.0909804050359414,0.164518901314664,0.152605291276009,0.0858091805785866,0.00503639320735235,-0.0773915095690439,-0.122164660383234,-0.162224696582641,-0.167871517740172,-0.153173162260908,-0.135742345321109,-0.121337832180909,-0.114229561978298,-0.104971133019617,-0.10577597864718,-0.105790364775989,-0.104585467898515,-0.108775998550235,-0.11038748832003,-0.113187200860956,-0.104803010500945,-0.0967568981683098,-0.125216092484297,-0.167190560746399,-0.226116563160103,-0.232479500196208,-0.162251308829114,0.0119380372708715,0.163252899643642,0.231307658406169,0.195587282329087,0.0848577479001843,-0.0250700621156024,-0.0952277708971508,-0.164733598107095,-0.187993370652963,-0.168408090204945,-0.155980215963025,-0.133224509344666,-0.116222891000127,-0.110149235021063,-0.103571504165736,-0.105530758448254,-0.105595740722859,-0.103800172063664,-0.107566172220194,-0.110590050030613,-0.109987919687809,-0.098136618403425,-0.109437811672691,-0.144774117127543,-0.213329516233346,-0.268369884968496,-0.257047538688326,-0.158614675922331,0.0461406916210501,0.21288375988054,0.258232554891482,0.183500429483956,0.0371822499153258,-0.0748501956695125,-0.145835450477086,-0.190375208950832,-0.19368280679669,-0.17161935689101,-0.150754015918827,-0.132714904052639,-0.11646153067014,-0.109607808981099,-0.104114863440547,-0.106770159750843,-0.105443212633308,-0.105032600261815,-0.106542768288287,-0.108325508501438,-0.107614513987684,-0.107925871188767,-0.121715055897757,-0.172049299051595,-0.243759937969224,-0.28391394807657,-0.267150895319872,-0.154805279587294,0.0856038825539546,0.232097786229517,0.241316738005946,0.144224705850762,-0.00642664915412189,-0.12005013410469,-0.181119628496731,-0.202691558075606,-0.184592586026894,-0.155753489770684,-0.137891578168325,-0.124533851786474,-0.11521744286884,-0.105795881251485,-0.107380372080124,-0.103743375967697,-0.105811426570772,-0.103000551087203,-0.103411263796601,-0.103115814203488,-0.108138801272948,-0.101184599172625,-0.118883333272916,-0.170659628744985,-0.229293660142415,-0.27286102651007,-0.269940058109523,-0.148989802772996,0.110777681591922,0.22225089334201,0.210694586808356,0.0966651712712813,-0.0601704173832058,-0.161110106982936,-0.195338608739933,-0.1837756037824,-0.164240042168925,-0.140784413656357,-0.123764739254158,-0.114760912447732,-0.108293544125414,-0.10621114390743,-0.104487432923608,-0.10411818203471,-0.106588843568908,-0.106255321927417,-0.105140097069634,-0.105201869856163,-0.102191493068682,-0.0963166398441806,-0.126413701180918,-0.1595447958641,-0.211662066013796,-0.248998528499175,-0.265997486075643,-0.132337207693849,0.118412026694172,0.194246847831488,0.186003314121931,0.058542580984395,-0.109175271633852,-0.196365567505321,-0.181273836318041,-0.157737748997884,-0.143224164008665,-0.12876078049261,-0.114017764440856,-0.109947107961551,-0.108585082629773,-0.10720092682082,-0.103266726994935,-0.106156031022019,-0.103436115115889,-0.10567104128553,-0.103697534198819,-0.100996010224172,-0.0969643356683947,-0.095110803547156,-0.109043708799976,-0.141719808892758,-0.190762205905494,-0.230122775738651,-0.221933544197742,-0.0604139176875948,0.143987617071053,0.198325010177283,0.186343128485624,0.025002578706955,-0.147714165211017,-0.165434921809785,-0.148011563561237,-0.13657568189847,-0.122726433189442,-0.116803390248691,-0.103172729773823,-0.108817858858016,-0.105614655940329,-0.106634587039735,-0.10412929175094,-0.104617858238636,-0.104844794586727,-0.104368180723088,-0.105338787900617,-0.0983642946795082,-0.0933211497983792,-0.0834448560995509,-0.0930219600789748,-0.128920663724421,-0.16502504230053,-0.191976718360608,-0.143176105270678,0.0216362820295985,0.186780040469876,0.226919263662499,0.188586050086518,0.00504181366763288,-0.137800288645209,-0.142084870484059,-0.122824012412162,-0.134159334804391,-0.127883691006774,-0.109633082988628,-0.102381955354232,-0.104230933970515,-0.107124243978051,-0.103236135420124,-0.104712111991978,-0.104421541529897,-0.103969407414922,-0.105247550020136,-0.104097792933564,-0.102165717449314,-0.0990285125330982,-0.091642899955218,-0.0908110466358326,-0.120010649503177,-0.145004739321981,-0.141577882672958,-0.0730837528402173,0.0939168569674495,0.230999933240311,0.253685989936174,0.179578355723754,-0.0283873742301631,-0.149775467439509,-0.145084792682652,-0.143889188552731,-0.148984633328773,-0.134701533263406,-0.117805720109682,-0.109012951004609,-0.106936761452907,-0.108882684431565,-0.105969236493662,-0.106166571792981,-0.107141125091342,-0.105343077098658,-0.104682300623128,-0.105216187612346,-0.105519423361281,-0.105915597993478,-0.103584169236372,-0.110142830848372,-0.13428841286723,-0.169740521235846,-0.136314980514905,-0.0351497166043962,0.141954564584987,0.254857450810277,0.257563903613567,0.138907325150744,-0.0660717223655809,-0.180746143852632,-0.200044471624835,-0.197750997307472,-0.185745313400049,-0.155276243783585,-0.133521622854198,-0.121427678661636,-0.11052667239519,-0.110458224090116,-0.109323736663462,-0.103309432033531,-0.106791178213297,-0.104408458047823,-0.106895398988897,-0.108833863552044,-0.108299271779389,-0.108194330726932,-0.113985666385898,-0.141301343006419,-0.172277502864979,-0.186356038043802,-0.124517100795708,0.00764465258850674,0.161926373380726,0.26543407358229,0.229173929987613,0.0838046071761431,-0.0963487679592688,-0.217098288945573,-0.242398619813868,-0.234396995225484,-0.199755248780781,-0.153854269547182,-0.133812587080557,-0.122906723745695,-0.111366900426354,-0.107156331283185,-0.105005507936616,-0.105951405797807,-0.106221018597801,-0.103834916604148,-0.106284094566132,-0.109038834299653,-0.111587112384255,-0.10957379577217,-0.127848983712079,-0.166986782622594,-0.190122006657828,-0.176442839292828,-0.0822513927635803,0.040939348432667,0.184674076515038,0.246207609990601,0.180795363259687,0.04292797945479,-0.132419289116937,-0.259692419654955,-0.268988874948938,-0.232835812374659,-0.189925311973507,-0.151924380790421,-0.129878682559765,-0.108865661150954,-0.103951558639984,-0.103538153097621,-0.103041655575118,-0.104470286928246,-0.104718057535957,-0.105869083934961,-0.105074712448671,-0.109357473157059,-0.111105619680417,-0.111916195923615,-0.129790057767632,-0.162944017475245,-0.156215123201136,-0.123664348578137,-0.0468179547088965,0.0671776201176004,0.164568062715645,0.180618539648082,0.117034533252199,-0.00219417950488497,-0.149763048342086,-0.274791326151076,-0.268192704574692,-0.224990228274156,-0.173727744402212,-0.136868609710355,-0.117222158579033,-0.108307972897369,-0.106942060911228,-0.102990535936639,-0.105263690706732,-0.106335503570901,-0.102744212658989,-0.105082052565183,-0.10822967805544,-0.111007302065053,-0.114874538643549,-0.114448383304799,-0.13783818533052,-0.153085168799757,-0.137050797129318,-0.0850045004266114,-0.02235669958865,0.0642466409705062,0.114949646872112,0.112239729987069,0.0462747189583307,-0.0437105681870228,-0.15210500925113,-0.246260789876163,-0.242033524958861,-0.19412266089446,-0.150745618378344,-0.122092609360406,-0.111839684974805,-0.103764518110301,-0.100369294041892,-0.103896422242315,-0.104750104243718,-0.106625174907326,-0.103787146795598,-0.104287367473023,-0.108605148138032,-0.111297523490064,-0.110478890705592,-0.117401000487898,-0.133235579269158,-0.129502321982403,-0.111147194671606,-0.0728279738432222,-0.0190183762082886,0.028233192555126,0.0565811037992777,0.0482221017634787,0.00985143592626158,-0.039838220908729,-0.128047352421164,-0.186722752202689,-0.196304248572238,-0.154150473151602,-0.135853661353618,-0.122199657376313,-0.107674336609421,-0.10014281257891,-0.100987034652971,-0.103154086874423,-0.106427710339521,-0.104303455821111,-0.103367566571837,-0.104725683954759,-0.105556613072114,-0.10992387032752,-0.108943899735699,-0.109972968648691,-0.124801646172367,-0.125987805092813,-0.101197830557914,-0.0668550152391057,-0.0397917256419591,-0.024295524368663,-0.0112216893751711,-0.0155225859902809,-0.0138077692426165,-0.0533481451057944,-0.107353373870569,-0.15037099748421,-0.152142956308793,-0.136523213852037,-0.122014449245785,-0.115495484392363,-0.111585913119504,-0.109473518930512,-0.103190499981504,-0.102897583795671,-0.10241996629374,-0.105656186121232,-0.104606998541806,-0.106621155924023,-0.106719486306735,-0.103567072122801,-0.106590497755449,-0.104948298165284,-0.109248522015684,-0.116351576709958,-0.125835714890598,-0.129357143831308,-0.127187326134716,-0.12666730297078,-0.126491153614325,-0.132186474969519,-0.134396728513718,-0.134061771209403,-0.141292335731342,-0.137991509785435,-0.130059622681957,-0.118469003067453,-0.113458136459857,-0.107118946209314,-0.105685332463127,-0.106007858340501,-0.103482212946846,-0.104003335675617,-0.105986075253385,-0.104454335317773,-0.107451639746152,-0.106189113622818,-0.104966980840746,-0.102528344759657,-0.105990044382938,-0.105617419960434,-0.102143596019127,-0.101949618042839,-0.108667697873983,-0.104612509436163,-0.105636723432819,-0.11870574211055,-0.126091768021379,-0.136989845211495,-0.129099701627078,-0.127444430315114,-0.123448599000028,-0.115576643031566,-0.119354829890967,-0.114120106408335,-0.111560829229134,-0.105992787560687,-0.107216041497602,-0.106778756912864,-0.103446307064994,-0.10432046019408,-0.106309280856621,-0.107363879558946,-0.104496988555173,-0.106729124371541,-0.104741813782728,-0.104515631962266,-0.104971501915357,-0.106252944900705,-0.103585410734316,-0.0989568207377332,-0.0966547387718878,-0.0964227338425995,-0.0978887459386258,-0.0999613439364459,-0.102172321379737,-0.105347618161373,-0.109306301217346,-0.11329086323545,-0.114136699769808,-0.108597431118227,-0.105744752591789,-0.108524525454449,-0.108225139052113,-0.104686491061083,-0.105267071974392,-0.107337974403958,-0.104884955198816,-0.103127190801514,-0.107307317965135,-0.104318548541247,-0.106428952869333,-0.105667985726454,-0.103919154944772,-0.105499569122972,-0.105722819718695,-0.106223020345989,-0.105074647193675,-0.103621952520538,-0.105071436543634,-0.103478796806765,-0.103383001148828,-0.106749895464651,-0.106279833435278,-0.106886775388624,-0.105513736908531,-0.106949833486783,-0.108659756538422,-0.106834342345299,-0.106732875523039,-0.104541772585492,-0.10453793149222,-0.105238152046041,-0.107387895019664,-0.103372776506024,-0.104050586365907,-0.104266818333401,-0.1069380458426,-0.103313376190962,0.156265501266521,0.00242129748680049,0.00349988159149013,0.0026973529442231,0.00248976695063584,0.00453486113833914,0.00639915358744766,0.00343730385911761,0.00432746201310418,0.00288647858442166,0.00475216011461866,0.00282261760171281,0.00591659601279713,0.00282774981914191,0.0032343138400034,0.00525348930370589,0.00250733899625343,0.00310297077713446,0.00292344515338632,0.00636188365112191,0.00579440171146687,0.00486316846592741,0.00567751898493039,0.0037972591225442,0.00593157458875955,0.00446167223013409,0.00455136726360045,0.0024353020643034,0.00655208625954642,0.00452394384217976,0.00430436339800136,0.00525417745358374,0.00370557108384357,0.00479760504137988,0.00241698372629477,0.00429804159382589,0.00474346985201094,0.00645965108745489,0.00381622316815086,0.00472523839759855,0.00142376016161671,0.00225665256183829,0.00320433589045838,0.00293175463251176,0.00692993377330927,0.000464513144261342,0.00487737044246122,0.00247682710710022,0.0030349546549406,0.00148673125028693,0.0061279586331505,0.00473949453907645,0.00335537435124424,0.00339676013007627,0.00281470896482875,0.00525158570813283,0.00656300634776448,0.00551810666166553,0.00368090699312071,0.00525221045852626,0.00305589172652766,0.00458800704956371,0.00621627719687124,0.00474604062671992,0.00419114840441069,0.00402097053125836,0.00696423028923015,0.00122045128871903,0.00340658249857436,0.0058325328571403,0.00213073706014788,-0.00360595749298122,0.000916248111366097,0.00193579105512051,-0.00106645156191318,-0.0029327701723442,-0.00561051287754178,-0.00261964871212518,0.00404969452793349,0.00450253529030839,0.00642185265978712,0.00393707291534512,0.00639990816803146,0.00639530177377186,0.00575128233297691,0.00483993595648774,0.00652401187386074,0.00329524826580526,0.00401978010589634,0.00662105573285386,0.00698647603384791,0.00216597697351543,0.00101547104312504,-0.00306741964512099,-0.00369596358471978,-0.00245076564466947,-0.000541003647989595,-0.00058926574803683,-0.00549388579758449,-0.00378536003819723,0.00252815765626716,0.00559825279648493,0.0153034667215491,0.0193553541619775,0.0156741976020786,0.0107357629170211,0.0113431588379037,-2.04299503188754E-05,0.00138293435910253,0.00312083632243953,0.00437244492213065,0.00676912187663053,0.00454777412788656,0.0034375838375862,0.00360779924185217,0.00432912963856772,0.00276117542503044,0.0036437295019323,0.00448986070442627,0.0075542219599383,0.00643198974156384,-0.00748978223193107,-0.00866884671753246,-0.00552075716981297,-0.00809776852522666,-0.00781116203201058,-0.0162461776627066,-0.0056361647287436,-0.00541313963332207,0.0038636813447404,0.00933389532364652,0.00665427767332161,0.00700558327403917,0.0109312532918816,0.00722728546071392,-0.00403664294818867,-0.00543006998539246,-0.00340221582699203,0.00301181763674979,0.00560432745037798,0.00275878324540887,0.00377012248587812,0.00555993391778006,0.00275850677563369,0.00328338445996002,0.00880928891129619,0.0070720593116533,0.00874584118712132,-0.00221698312815064,-0.00767482484073945,-0.00532792648334702,-0.0120388678119607,-0.00616867900375512,-0.00208998796779676,-0.000100069622938024,-0.000842379745079032,0.00221988371063712,0.00827530554053092,0.00628561711814575,-0.000318165600197137,0.00542418465928652,0.00137290839728517,0.00561232799785041,0.00415017429973748,0.000606847103287693,0.000917021637939603,0.00261961887541966,0.00517751515099546,0.00526396016781716,0.00442147762776496,0.00392185786786446,0.00600858470769611,0.00575266108088184,0.00827123183579223,0.0118315323927177,0.0157975770531195,0.00492911810979402,0.00272619271546579,-0.0127760774295122,-0.00722407159717831,-0.00515847610505503,-0.00682162464676026,-0.0164174089954188,-0.0212642848768709,-0.0121867060227322,-0.0154476622330552,-0.0182109337713756,-0.00976957138704251,0.00647583667381828,0.0036733546900139,-0.00309165007293065,0.00778386399734853,0.00853660775878203,0.00285105718419614,0.00251701193968055,0.00320864413370778,0.00524682606259107,0.00376942742786686,0.00575245343677257,0.00321805565693045,0.00319326150607526,0.0070729321606483,0.0139369946518934,0.0110612053063502,0.00708953109606859,-8.70642715318166E-05,-0.000243131581270994,0.00304449130462735,-0.00072366565017252,-0.00202671919021991,-0.0102354476812616,-0.02641341710459,-0.0344900051314651,-0.0365361824356846,-0.0196023796930159,0.00137486184641374,0.00558471296963025,0.00967301880338455,0.00198780399656341,0.017593868989984,0.00920672778660741,0.00286474567781584,0.0122982579180693,0.00470675670491608,0.00636564314422829,0.00318999969392419,0.00502305699213573,0.00777951981926181,0.000631441786281805,0.00388354728902118,0.00645376587770613,0.00386957575919964,0.0116977555421276,0.0075438064147546,0.0041480453617339,-0.00271789580318357,-0.00537088091775137,-0.0010190350625446,0.0080569988622742,-0.0108340450789742,-0.0190506768325775,-0.0152136219329458,0.00099417742641748,0.00979174608454944,0.0134670516151101,0.017500997979687,0.00924586391845149,0.0130481088144285,0.00517581289009462,0.00386232543122776,0.0058254229003324,0.00332563558357176,0.00360843712975722,0.00547200475649964,0.00650580988802207,0.00521498137299047,0.00169347106904766,0.00883473090379083,0.00661876006309208,0.0136535517349157,0.0200164429071714,0.0179177265301909,0.00672341438795961,-0.00155040131893239,-0.00505439439017508,0.00549582032169874,0.0158217219318462,0.00220177012509778,0.00887299619939199,0.0135354269345783,0.0128506909391032,-0.00162067516783981,0.00415401792351621,0.0125067519087135,0.0110234265082226,0.00733156685288244,-0.0149892835716432,-0.0104835064041336,-0.00405705974407559,0.000777836494579054,0.00509756851900618,0.00460106968275765,0.00621066685501397,0.00586125073745961,0.0096677476798328,0.0105890109087244,0.00861415269057493,0.0110862720327861,0.0127557409253764,0.00813384038517669,0.00312071090802566,0.00161701154669433,-0.00370725023676296,0.0131129608757574,0.0132849254188164,0.0105337021206528,0.00652592775816457,0.0122761441115698,0.000768837942331861,0.00808314928314991,0.00792916919296549,0.00509551007326007,0.00516474189545124,0.00044930113860845,-0.0112309772890131,-0.0106747750135503,-0.00224890617691074,0.000119009896776254,0.00512298472442463,0.00518026562644873,0.00655460039916664,0.00848482321272946,0.0107029867880863,0.0139716373664596,0.00265519371035254,0.00114757314276942,-0.00077512126161005,-7.73732929914202E-05,0.00701275301102582,0.00689121830843399,0.00347184386319228,0.0073594000601703,0.00598741113227546,-0.00874980940617467,-0.00598428500920286,0.000728485942917599,0.00485716715961706,0.00268023499226613,0.00152891193655305,0.00267414325258492,0.00356106532436622,0.00657783373368857,-0.0112555219753609,-0.00929729562346402,-0.00142095913499965,0.00339107392788534,0.00393207085542924,0.0061634067033247,0.00485924990151534,0.00522838740615115,0.00883815624535309,0.010505341613531,-0.00642621701393862,-0.00252456118343352,-0.00686731151625659,2.06301629172489E-05,0.00347697012836852,0.00713294941396663,-0.00196941109115194,0.00498828718559908,-0.00694567053622193,-0.0233520147895142,-0.0173533354873619,-0.00565236274581379,-0.0036856391317514,-0.00540785181592276,0.00357586549366943,0.013142754501441,0.014633948964411,0.00952917964894647,-0.00254504921296646,-0.00389773817300559,0.00507864290530263,0.0037080237748806,0.00615683593104953,0.00278171103260856,0.00331365045798345,0.00533646822664344,0.00595465000530732,-0.00230567213141094,-0.00075752004847051,-0.0127681802101576,-0.0083659793733278,0.00819821465294606,0.00574613375523284,0.0146861362292569,0.0100475630465512,0.00193440542979206,-0.0173171705762078,-0.023895764255752,-0.0188461230853847,-0.00275514080295884,-0.002683259639193,-0.00816493962882127,-0.00467714150453461,0.012446096382021,0.00905829838540278,0.0103070198956688,0.00408438347628705,0.0111809158272529,0.00447412467050899,0.000794257956382175,0.00603642068949346,0.0022427029366777,0.0031515363631342,0.00360628525205678,0.00314556010792867,-0.00491695018872083,0.00569040476588098,-0.00156008851369824,0.0147611726611234,0.0153935580347984,0.00867109144771198,0.0148750211545817,0.0153556237992437,0.0100388552708073,-0.0108544041230825,-0.0137490237541352,-0.014684008571276,-0.00558292936890806,-0.0139489714342645,-0.000295498174125356,0.0159721178134679,0.0188039686111536,0.0248230638594094,0.0139161294693838,0.009755615874216,0.0174583700654699,0.00803833170717335,0.00687173176777168,0.00465259074298986,0.00508115426127298,0.00676766888307438,0.0060361534562887,0.00998316543715182,-0.00441583657357952,0.0152592827776911,0.028425739383405,0.0227453380980426,0.0219334612702937,0.0134707203757626,0.0103606634442021,0.00840388540932392,-0.0011533186353167,-0.00044117443750356,-0.00976531365479422,-0.00468953942001742,0.00149555901117098,0.0107634828433657,0.023597521524833,0.0339382795284517,0.0211524097973009,0.0256554165053074,0.0122919189128744,0.0139149571025114,0.0214868820179982,0.0103154662592405,0.00607978199482222,0.00599466115958515,0.00607134876355356,0.00333055516780528,0.00650482182678944,0.00744942380997896,0.0026605155555377,0.0164839371752123,0.0252405696459324,0.0243694151040328,0.0197547120252561,0.00742588903307494,-0.00416179101550111,-0.0037042935980664,-0.00427415996723447,-0.000135974811456289,0.00205081986489173,0.00176923188247535,0.0104720386066298,0.019487390209767,0.0292525444204962,0.0265725416662632,0.0208905138364743,0.0167687420388104,0.0192227457711187,0.00827390771257187,0.0179277641068749,0.0124537444889568,0.00778831561078009,0.00575139097739171,0.00347089592578925,0.00286579633151073,0.00556931023931515,0.0103373898166806,0.0138367731977918,0.0159900231649143,0.0120257010575787,0.0127312130893755,0.00691084321017542,-0.00472971570876999,-0.00544437047736652,-0.00669211601625963,-0.00897966845934641,0.00871700524011125,0.0154615559580303,0.00757121168560919,0.0142608996094888,0.00807148438905376,0.0200445531780173,0.0140433064121869,0.0144267472522245,0.00444530253723478,0.00447049177865343,0.0109561674854846,0.0146502920179938,0.00886579855484463,0.00395600900243805,0.00314882860077692,0.00563754299334939,0.00546621341364064,0.00463622706470946,0.0103359697824147,0.0174350303669273,0.00512190773226131,0.00202165105045625,-0.00624971227139453,-0.00102541725041234,0.00360260813845087,0.0020587572004706,-0.0121328724205293,-0.0130759482533583,0.00590151928191848,0.0129035659237738,0.013550434048809,0.0088066818330986,0.00402394294331047,0.0127715948546971,0.00668777071727208,0.0101822838691692,0.00295487020699882,-0.00145120328842523,0.00638283302496988,0.0142940257094339,0.00476149065950623,0.00295271972356032,0.00363332228683941,0.00410266944759164,0.00259891232576736,0.00587952383695033,0.0163168757711952,0.0202589259535255,0.0125809974303248,-0.000179674740269754,-0.0070833540923796,-0.001087546117535,0.00602506690120051,0.0035096598757987,-6.23207174102823E-05,0.00716105196488004,0.0165766955060092,0.0255876242616805,0.0236932597562445,0.0120654618465367,0.00811710097127131,0.00895674224175413,-0.0019445104113843,-0.00437962555333024,-0.00678146122849754,-0.00776529029048471,0.00488675551163492,0.00945005713971413,0.00416897403312141,0.00221954165029991,0.00287125008422886,0.00314722589905187,0.00246924012989184,0.00446447712059428,0.00643211209958469,0.0113699878089211,0.0145224750179954,-0.00188473199859913,-0.00904111970668734,0.00554894179388842,0.00427061660074355,0.00790424390776862,0.0231352291600422,0.0176572094645999,0.0232119951913749,0.034956572173784,0.0254164296303815,0.0161522190835185,0.0171762097255008,0.0162554872895392,0.0124084110139741,0.00172479117383797,-0.000977229306179709,-0.0026372840988485,0.00348575447833771,0.00253788850917612,0.00105721598227971,0.00453157132301677,0.00649797417811765,0.0049790678962798,0.00594287743127001,0.00506470171054393,0.00862623994145473,0.00371429665836471,0.00313377508053825,-0.00246843325665423,-0.0215682040182416,-0.00615089054939023,-0.00136280271689369,0.00165318449692319,0.017663810144368,0.0189378139066843,0.0162816980691631,0.0179233723391759,0.0201868575626435,0.0199618090710408,0.00732880183646672,0.00943744930868625,-0.00355527382986636,-0.00386338157224375,-0.00648304484989081,-0.011021785354983,-0.00244536649200428,0.000883749758977049,0.00748431170016247,0.00408428442368468,0.00508312870210057,0.00531590394604279,0.00274744265738849,0.00266843920986375,0.00702479062158772,0.0048581762989978,-0.00549459860761009,-0.00694263090678137,-0.00944156998162108,-0.0148917669006991,-0.00914358558042747,-0.00467432191248512,-0.00112322794445864,0.00256799087477335,0.00368355741895185,0.000263263588256625,0.00557006118398696,0.00919454926540263,0.00838964889255717,-0.00548938459829938,-0.00371468884242846,-0.00348918994592264,-0.00988369012821801,-0.0065143852637255,-0.00449445686566521,0.00613992924594058,0.00380901969138232,0.00613318866032869,0.00366031958790421,0.0035927401992522,0.00559059491745433,0.0062144894529137,0.00393954052389097,0.0048549741115326,0.00714818353269804,0.00116733105531505,0.00826509790986946,-0.00429762533332531,0.00606847080862515,0.00444570902450295,-0.00793538365900328,-0.0115175502876014,-0.0157308115918859,-0.00973658502943625,0.00541050300683132,0.00346848100081432,0.00214457804690493,-0.00367307890673986,-0.0029345018931586,-0.000688308086715734,0.00342171287300142,0.00121289289244824,-0.000237676337700816,0.00622106823105239,0.00221032730731787,0.00539198786953298,0.00544044866437223,0.00585049124983785,0.00446128165980519,0.0062657532536509,0.00509574956551307,0.00855038704869316,0.00773294635334698,0.00848252638295497,0.00441977551715094,0.00528856203043978,0.0100844818480288,0.00961006204281711,-0.00125027710907275,-0.00384138086233642,0.000336200367391196,0.00269708337529653,-0.00193021024413155,-0.00308581908288381,-0.00708593344507883,-0.00480455006824355,-0.0112964592962418,-0.00570989881257969,0.00370977967134654,-0.000121849864748856,8.1127723566836E-05,0.00265507762873809,0.00309480583595709,0.00479821838425753,0.00286718119261955,0.0039330905195426,0.00661754392741267,0.00520411880521396,0.00624400511660493,0.00496514286822713,0.00237697361875687,-0.000689380533402095,-0.00548660563427182,-0.00840139928509795,-0.00255005952609208,-0.00972250158086995,-0.0170316455165288,-0.0241287886176052,-0.0168913668784269,-0.00792372494079276,-0.0181884625533438,-0.0163881392754581,-0.0211195925159426,-0.0163872710822276,-0.0143727289368915,-0.010498879863363,-0.00234844146277738,0.00133044619479642,0.0014048959458259,0.00603685874140665,0.00540709022943525,0.00292249681532469,0.00576750072187922,0.00450549130532088,0.00387900572971831,0.00652708338531936,0.00379186227576795,0.00573306343030934,0.00685084465455161,0.00169389062461543,-0.00188274003230087,-0.00054310329579816,0.00523966077759414,0.00377380267373411,-0.00544720871200567,-0.0119438975446955,-0.00278076262311865,0.00127486168514123,-0.0048365615402725,-0.00396092450947586,0.00299288840151421,-0.00280314871506235,-0.000577393513008051,0.00170310073291255,0.00315577643550299,0.00212493398524349,0.00546132046597627,0.00380358180939703,0.00621253182720979,0.0038256594651358,0.00512990309733689,0.00372593541756212,0.00383710482662614,0.00537077971298992,0.0048114357437881,0.00634187566547252,0.00360677693548301,0.00361754877612043,0.00274963328968161,0.00262354913757485,0.00336731176610961,0.00492168325378162,0.00419817878926088,0.00545456558229313,0.00766255750253125,0.00395799349623705,0.00681697045600275,0.00223128604945266,0.00520742814228198,0.00839182872158817,0.00327885119029164,0.00397129318999157,0.00487785017497501,0.00592626361064745,0.00407597434918504,0.00655254265312181,0.00516621662085206,0.0046327931029416,0.00535528233980881,-0.00404323454670385,0.223972372405116,0.224144070707346,0.223425493448184,0.22478218478353,0.224241504745214,0.225809646979842,0.223698423289523,0.222331524011698,0.223829359810541,0.222103593602244,0.225042926718767,0.22220254607767,0.224708357763378,0.22437579088587,0.224163515538158,0.225796248617537,0.223289333112929,0.223856052985164,0.225749739503883,0.223960290415152,0.226317695536955,0.223883594707983,0.223694946748493,0.224802064809259,0.223858289519847,0.223501450958285,0.224600067430792,0.225222184294593,0.222132937667873,0.222774124735904,0.224340287658114,0.224657476893817,0.223525472497954,0.223387323633606,0.225934349838912,0.222241250353928,0.226110376249206,0.223945431245245,0.220529928468152,0.222476233153787,0.222354561860106,0.220250248285471,0.221827368513754,0.221113340494665,0.221754093901061,0.223950695604042,0.224029712710649,0.228419533814607,0.227234060760838,0.224655620019559,0.223884943274059,0.223796736843309,0.225888088639288,0.223794942112364,0.224786435989165,0.224618366592686,0.222117061431669,0.222062607060307,0.222259396257597,0.224195133214006,0.223527390421089,0.224574183843864,0.225206883885348,0.224191547921864,0.222036520304842,0.21392534813177,0.206206205654918,0.200977899230267,0.205862242281774,0.194982754095098,0.179791965979716,0.196159498004305,0.203591053974961,0.206428700878101,0.208698724229138,0.210227244198572,0.212511580318094,0.216786378094856,0.220272148546989,0.223394610820549,0.22287613190066,0.224840847037152,0.223356881213857,0.225351944053406,0.224625281216556,0.222128481865239,0.223682293065481,0.225124210221047,0.223775066811786,0.22442706256826,0.225780175034612,0.227298987622611,0.229101965792999,0.21521806802474,0.213663496534071,0.21665033222838,0.218719514259109,0.207686143077662,0.203771881511291,0.209445131082402,0.213094461654878,0.216338478178925,0.213082479546355,0.21613278610379,0.221586417419072,0.223614410062942,0.220134349415072,0.221249907513518,0.220461209166741,0.225589796772377,0.223666178879621,0.225757325843165,0.22481003715117,0.222204988934585,0.224269261431862,0.226743872124384,0.227537470055979,0.226247907720281,0.224616641666836,0.235627654969058,0.23427270997898,0.230330255471542,0.229565735084487,0.23289342617556,0.233842345772533,0.231196497014165,0.230292684751275,0.22818041613558,0.220035096049685,0.224921499089884,0.223267086397657,0.239386904299749,0.239723416783263,0.225407120915527,0.214970631965791,0.212259253283492,0.220393603182262,0.222807114422289,0.22444685991391,0.225939598899985,0.224052372774017,0.222189493250631,0.221958243745276,0.226293943051942,0.223030427767332,0.224927584460199,0.227916374743506,0.230738719480965,0.230686587388915,0.22926455715421,0.218650111100836,0.189255029139881,0.166019247619212,0.146988635426801,0.136588319021659,0.131112727816165,0.123381809830804,0.118371770313886,0.126339187068224,0.169479549690632,0.185502866142975,0.207220010412065,0.204877587019015,0.201418464163142,0.212200514918015,0.222880580049995,0.220959667734709,0.224670980018013,0.223811557440657,0.225741163241941,0.222568930050674,0.222560473354088,0.223536449688355,0.223042012496356,0.21598635059942,0.212078615519028,0.201643888872555,0.16946125081226,0.125271353393711,0.0636953283032118,0.00630099811829322,-0.0335501415581531,-0.0507923203177282,-0.0485351576820811,-0.0485193804647877,-0.0301608161856943,0.0156155428112063,0.0795336177150239,0.129303808315343,0.166718984890802,0.191869445970892,0.197125102587121,0.202077549990919,0.219886755097706,0.221624046104864,0.225980017311592,0.226193220182316,0.223575607384719,0.224304581034469,0.219766310471731,0.215070329122112,0.207476936681352,0.191222200414278,0.152679299972682,0.105643362941699,0.0531922824261317,-0.0239983415505433,-0.108847348150232,-0.164482970936527,-0.186958447249717,-0.189095886351585,-0.177194449568813,-0.166110138051171,-0.138700657966826,-0.0727580832248514,-0.00349479111341213,0.0587366396103428,0.102601064914151,0.159825719921487,0.184218725276177,0.201846523259875,0.219792762785507,0.221925658874979,0.226138803933302,0.22588312867974,0.226676576966212,0.218123000018072,0.210094839218545,0.202189680932451,0.181650090056784,0.141657382829828,0.0821918075407421,0.0135956435506453,-0.0725888949360326,-0.168151358533256,-0.234211723191722,-0.248881561938099,-0.224185427553213,-0.177848028430636,-0.151934341007256,-0.150005713181703,-0.151568415392471,-0.127236203778244,-0.0752238374207265,0.00755939102316723,0.068049696767817,0.133856938732725,0.183580403777212,0.200352278088022,0.223546796802234,0.222005667648389,0.222704575070301,0.223084294865692,0.226231055305299,0.221289733664471,0.20695417231411,0.187691891728639,0.16009418925246,0.10681938708163,0.0292127482993456,-0.0594866641776068,-0.162633942686311,-0.24124965941521,-0.263615578809316,-0.223221697706296,-0.142106384649021,-0.0679905370999612,-0.0532396464790535,-0.0852180498796581,-0.138210933713849,-0.159824494241085,-0.117960311307217,-0.0435152896534259,0.0538361822070059,0.137995779168841,0.186036800910869,0.204417043384834,0.220022370910365,0.221358262959567,0.223454726360458,0.223075227812506,0.221878691107653,0.220829830266463,0.207025270028683,0.189490339340217,0.144980866586138,0.0805291654048115,-0.019633695196521,-0.116041541343042,-0.208672194980692,-0.25121489795247,-0.219611959168351,-0.128686451209066,-0.0028345420854797,0.0710803388151787,0.0430242309200033,-0.0522996332057607,-0.15255866649338,-0.194557217897292,-0.157942767976786,-0.065232603459408,0.0518609023981324,0.156958369646092,0.205292916949672,0.21383436130231,0.214160541911959,0.221707714602583,0.225870775331868,0.222130047998238,0.221426682435494,0.218213262019093,0.21443264872553,0.195851463168672,0.149882621520309,0.0726275443275295,-0.032607645955812,-0.142939895468772,-0.217951419489768,-0.219796830059889,-0.157973956324861,-0.0493407643646631,0.075195342742925,0.102655299032057,0.034822905207264,-0.108069155375356,-0.210885415524039,-0.247631911146942,-0.183203142838511,-0.0597272198069834,0.101427664860349,0.204952628156385,0.239780583479276,0.227600413055657,0.216261546121505,0.221910358948096,0.22272299933935,0.22460127939112,0.222137650450094,0.218174800476775,0.217659338879728,0.201816730854191,0.15770223298162,0.0656234276748096,-0.039814954094012,-0.138026580901956,-0.190968188105376,-0.180991240022754,-0.112634298339269,-0.0226190983728008,0.039070613857525,0.0229676912383056,-0.0680039735781384,-0.201661612623442,-0.275606739148331,-0.267863964932203,-0.181203758091855,-0.0140536411663304,0.146825366283184,0.241630306175637,0.253883096361123,0.242482352115322,0.225007932546874,0.222432743767686,0.222450247386978,0.225175486520484,0.225096267793107,0.222309672833664,0.222352608381721,0.204991072613724,0.170739289987841,0.0820355231052005,-0.0240094242614331,-0.115742748136406,-0.156204897792919,-0.138622107415262,-0.103275905579637,-0.073955565175196,-0.0789043769941557,-0.120248597745164,-0.192215570184819,-0.285453266500732,-0.314032792237149,-0.262444542777809,-0.124075724408426,0.0472707597087994,0.190345050020513,0.240307537224866,0.263879227363007,0.248210194228376,0.224883320894768,0.221531436930973,0.222647266457713,0.224972506316284,0.226411110263056,0.222603572189509,0.218676870027575,0.201878870782192,0.190389253292814,0.117071041391697,0.0129304621616561,-0.070063571573709,-0.111542645539476,-0.122058175170849,-0.130562958714882,-0.134430981040973,-0.165041859862728,-0.199721033721961,-0.246519424981667,-0.302401941037097,-0.300543044422254,-0.201500810155326,-0.0430190105909102,0.121237466283979,0.21715005482529,0.242354339503871,0.258383895952329,0.244750449277687,0.223639117991328,0.223638164441264,0.223422484843675,0.226110243922801,0.222719082022019,0.226444419584699,0.217557327884884,0.216970788388995,0.22536106837957,0.178788821589952,0.0823370077706291,-0.00313794455882809,-0.06332351034634,-0.104057101933942,-0.13157908373205,-0.165985906929468,-0.192623757074987,-0.203170475678351,-0.237179741269666,-0.279075616187898,-0.246082774208286,-0.128211434876551,0.0277069833095504,0.147899287030911,0.204749475484249,0.248212349472182,0.251123318878575,0.241867117661357,0.226157463048887,0.226450978063292,0.221368127280702,0.226036508953619,0.222328779332621,0.226304313109874,0.219736264238818,0.232088391467801,0.263158916292655,0.236451883798356,0.174050965514319,0.0795447405282933,-0.0145394417617415,-0.0877243370237147,-0.130598413956751,-0.149462800392162,-0.150599335331533,-0.164303640320093,-0.223646787574264,-0.251244401904554,-0.194797975099965,-0.0533103532622226,0.084379258045533,0.17443819527361,0.216243383689354,0.251055658997674,0.250643494542466,0.241101872036544,0.229979876017323,0.225888653360152,0.225009770522908,0.226240833876155,0.225728868207818,0.222657002953255,0.228599544611388,0.248360263639867,0.293808079775756,0.292131128247369,0.248962369312502,0.153752249875967,0.0449987460034843,-0.0542537134004994,-0.0991908958125192,-0.0894682525664272,-0.0747444585201269,-0.119113954635907,-0.199910002800336,-0.212785976028727,-0.14730456282117,-0.00456547012379172,0.12394829473483,0.199108436848935,0.235841880635049,0.258381061512303,0.258143200520571,0.24709604563154,0.235436089902223,0.228630315082794,0.222981136460682,0.22557644452061,0.222796932013983,0.22257843167273,0.227986534290951,0.265593009363492,0.321958083268145,0.333460405011529,0.283159155241263,0.193851988593099,0.0957141922619617,0.00390812429329214,-0.0264886084598175,-0.00634748928377249,-0.00718611739676728,-0.0915371606733754,-0.177657485997982,-0.181667997285232,-0.0834813510453118,0.035050818437941,0.152095140284209,0.21934647346693,0.25498911758037,0.272848293038066,0.263612918248991,0.256944922889644,0.238471473026774,0.226723927846216,0.222405694095787,0.225592304002405,0.224679212750309,0.222937319829296,0.231652336435306,0.267911246412022,0.338233205935162,0.365538531164043,0.327256896771329,0.231218872746564,0.13435980812911,0.0717933163323118,0.0552940990509664,0.0551233230903672,0.00878960837761909,-0.0870002333935438,-0.154056818952235,-0.144166288841483,-0.054788358087303,0.057090192145584,0.153887420899517,0.217145354671091,0.256433714272631,0.264093053734891,0.257692092384042,0.256931496032671,0.236194338674657,0.224668479173341,0.225416384039542,0.224343556284389,0.224096000774297,0.223458752929173,0.231238416003991,0.260612243723112,0.325688182725392,0.362477280999753,0.336479652065146,0.283624924757888,0.194518151760196,0.127742863105545,0.107796101441783,0.0565741778977005,-0.0163250161629636,-0.0957259706084647,-0.137618638925086,-0.121367443720247,-0.0477647232572222,0.0573280790682352,0.146928417904247,0.212789553254348,0.249120668224265,0.256002626691692,0.260038360553325,0.246741895555397,0.231351089519863,0.227250743179248,0.226098042631474,0.223814811618701,0.22490310538562,0.225351059453937,0.232162365556501,0.245590306618468,0.291835963615984,0.324010828176988,0.315405356243817,0.296481168525293,0.221083842402409,0.145197809317452,0.0864918630784312,-0.0024716475733923,-0.0757820467273235,-0.127406563787866,-0.140324883577605,-0.116646544403405,-0.0509324483964067,0.056153393124493,0.134499551982675,0.198529831911846,0.236668315929161,0.243086142873709,0.242903691336083,0.236314702372385,0.22849146443202,0.225187328377423,0.2225989593233,0.226273572759683,0.225770211599713,0.226147488140144,0.228953190434626,0.23630741211661,0.251446136443829,0.269116287163508,0.271060668248939,0.246702099419257,0.191123388933846,0.115113282493927,0.0251629052264768,-0.0694605022126884,-0.110763412722589,-0.133684640431133,-0.130841756733625,-0.0960614941626408,-0.0368350685065605,0.0397240020806473,0.115675459505898,0.169002530776254,0.211188840672094,0.222737703989036,0.231538687865184,0.23346043689099,0.226791170883897,0.225384983375952,0.225500905867664,0.226348243536438,0.222511620502399,0.222530327578158,0.224411937159065,0.229215916090761,0.223489522740572,0.215175317804687,0.207356477974528,0.166575808892074,0.101579022331079,0.0315636606586636,-0.0655795322762005,-0.132503167219705,-0.145755932337543,-0.141838256221594,-0.126061202658783,-0.0924402091496146,-0.0416447736257658,0.0362812826584852,0.108936064026736,0.148334712360394,0.194445950574002,0.218920648007805,0.226733452099342,0.226873481799933,0.224291210718391,0.2259919011906,0.226294867321522,0.225061671305582,0.224948793333548,0.223152730235671,0.223621983941278,0.226130215314206,0.219328569000638,0.207998987402926,0.177443191870434,0.116664455021948,0.0507087721552858,-0.0260235514690377,-0.111679346915648,-0.153403478582745,-0.14574000578547,-0.119566546880227,-0.100399644390623,-0.0581054546877842,-0.00998979764077063,0.0533422663315313,0.114659881112074,0.154435722085623,0.190167885929074,0.210594453910835,0.220585984226479,0.22227961822949,0.223700279021199,0.226187525250602,0.223412308538456,0.224271619858322,0.225735676161466,0.222868832454905,0.222941549597655,0.22648976143523,0.21779926233177,0.211437751009263,0.190231659344397,0.15220107504112,0.0997898845788488,0.0269656948643713,-0.0323174781191403,-0.0642518646779752,-0.0376076198313813,-0.0150145624395322,0.0115649635452495,0.0473359979230129,0.0615019853924305,0.107107156009189,0.148493878129593,0.177605399204931,0.204629889824745,0.219733008141411,0.223574344655701,0.223368666963194,0.222905515966415,0.224729423271095,0.223572800249594,0.223430347305386,0.22504627461523,0.22525303992874,0.222379140620018,0.22419313954285,0.221366733978314,0.217933509129773,0.20500023484904,0.189544684516901,0.167229202046029,0.133917660360338,0.109144933957877,0.0927236535649831,0.103142561257264,0.119013703782908,0.148854004360299,0.157288866746364,0.165150004033771,0.182070749317627,0.199497357779944,0.211043877889647,0.220684390716634,0.224533498830337,0.224403374884185,0.224672214966947,0.225886910922392,0.223622847965345,0.222303580154242,0.223772265968455,0.222777902357359,0.224444384248596,0.225415349964498,0.226040394242202,0.224489971989743,0.223995268819577,0.222348967088247,0.219586211169959,0.218061228077887,0.21929651501455,0.217302737096236,0.217949655443397,0.216944683002951,0.214157158834131,0.216741365437365,0.222570318138296,0.218776707850102,0.223249510274383,0.225563469508249,0.225166480530546,0.222594570435351,0.224287638097561,0.226147964901563,0.222656260783859,0.224551857574812,0.223571629971672,0.225036533340568,-0.247682205837887,0.176958917876657,0.179213731540563,0.177074034859603,0.180885853094066,0.180001608247757,0.180531152503606,0.179610387018375,0.179919608941782,0.180388854147272,0.180157139101238,0.176825529221353,0.17786979615638,0.17753297444994,0.180325854750254,0.179270738227005,0.177167391266533,0.179953984179887,0.180071091613652,0.178777175087431,0.180272947469517,0.177209465193934,0.180786872137377,0.178213189650894,0.180020252662007,0.180035377368396,0.176798726595766,0.180657756408977,0.177120852533806,0.180516826241644,0.178998572536327,0.17976945763851,0.178741932695977,0.177766462476902,0.176811067943704,0.180546269564239,0.178397432036763,0.179495045482646,0.177367781407426,0.180956097232124,0.178186013763006,0.180888014950081,0.180193238265612,0.180046309347352,0.17678371528765,0.175952561688868,0.176740294334282,0.176681888602459,0.177195880018971,0.1784347527222,0.179369473780554,0.179951812407881,0.179948757512471,0.180635047482555,0.179892628655259,0.177865704883036,0.179902473177453,0.180119970486603,0.177987916794705,0.180909063957335,0.176788812181574,0.177455240627781,0.177100932596405,0.178612552480651,0.17728100379381,0.177112107343287,0.175408253517206,0.17513960433355,0.174649694212675,0.167534555353305,0.162227279661987,0.164603021900029,0.162624875084731,0.160796657859747,0.159493421603591,0.164299504116072,0.167540348074445,0.169448919159278,0.171737541210563,0.173341071278919,0.178371081596219,0.178282236759269,0.178776942822885,0.179368694520788,0.178704596745056,0.179757123426063,0.178312616854483,0.179680853380278,0.179638111863301,0.178433496811953,0.176752316195039,0.175260394205816,0.166752727240228,0.156622260690472,0.149236398963483,0.129013180277687,0.0932131032085989,0.0710196011323327,0.0599100882977015,0.0515893898216591,0.0524853205017541,0.053313610179346,0.0676038950391787,0.0894563056524948,0.107076017039737,0.131535914129034,0.15337452682943,0.173118685733349,0.180771663776591,0.179949447699895,0.178985971581861,0.177283176166179,0.179070273020062,0.178234530557033,0.179274571266813,0.178966529346209,0.175804394462889,0.177197379047686,0.171496944939403,0.162203001525269,0.135289647691419,0.103689737933914,0.0562894906223617,0.00867275781176726,-0.0483981694300426,-0.0999652498564018,-0.131928897158541,-0.151964830510291,-0.14398490700748,-0.126440340731869,-0.0892896591196358,-0.0433126024637594,-0.00588994463183883,0.0568120303557605,0.115746648186993,0.160213607792417,0.178438368513054,0.180560090402818,0.178586074290444,0.179935984293381,0.178805458003071,0.179268517280116,0.1800380520598,0.178633929979783,0.177012038052855,0.175283928291225,0.166145738680461,0.131595251796143,0.0826656942561975,0.0276753474885334,-0.0441296162032988,-0.0954985619947565,-0.142161609643368,-0.177752624523078,-0.202911143629035,-0.218029473841885,-0.207853462946079,-0.19303740044639,-0.155120974431655,-0.103076644506257,-0.0530229626593648,0.00323883239999993,0.0626243050639991,0.124471006980737,0.166074990592918,0.175100377285403,0.176173280736646,0.179398063287367,0.177044889541459,0.177962003687742,0.180341083523069,0.177772075177266,0.178033538347569,0.17171287044293,0.15570377907258,0.113070916977056,0.0455573292330547,-0.0192506808754513,-0.0699740248772076,-0.112338902737333,-0.14213186752031,-0.159307526381984,-0.167971084921145,-0.171801759036559,-0.174754759595936,-0.158721547362041,-0.128299884821509,-0.10461145339634,-0.0762107021557111,-0.0283644687904823,0.0347910618089748,0.0902267026779383,0.14206844633688,0.178154653917567,0.173001901230713,0.177777806506691,0.179534162296638,0.179525010042551,0.177841905732692,0.17962573529305,0.177398933210496,0.171718806337674,0.148352265650162,0.104194570566527,0.0531340820738103,7.30664617050307E-05,-0.044259247399397,-0.0635998614669599,-0.0660000002705372,-0.0745254568987343,-0.0789893225638682,-0.0874862626215957,-0.100413269315054,-0.0930256409447285,-0.0893407210299372,-0.0769411537931902,-0.055407027324805,-0.0363645500147543,0.025220247768146,0.0793450479210896,0.140998630926825,0.168420337386186,0.170919397179725,0.17875917750135,0.178856578494973,0.179516062593176,0.176739408357471,0.180137407426901,0.182325005371156,0.181015901127663,0.157299346038208,0.121046247759935,0.0809343515097694,0.0332232760602594,0.0179445583398672,0.0186487699526627,0.0400378522239902,0.0298762683440951,0.00129800410332931,-0.0329793017534645,-0.0536200223218043,-0.0562958590931024,-0.0628442171405115,-0.0555163193858316,-0.0431190102309026,-0.0288036812192869,0.0255516086764841,0.0761860327031096,0.129800728739373,0.164135359994132,0.170891571417858,0.177048609778504,0.17891239122198,0.178884437420838,0.180393996145163,0.183077374147816,0.183866313127335,0.182233952799536,0.168479068137532,0.137423808681151,0.0918302928750878,0.0734282035537283,0.0846883863935444,0.0996836322100238,0.114357276459599,0.0814076994862313,0.0262666571407703,-0.0158086439225469,-0.0372109430419827,-0.0432132006075354,-0.0310139434614667,-0.0153654456762627,-0.0191788373728602,-0.0132629841819445,0.0194632157489326,0.0578334813550268,0.123720455989691,0.16740243274283,0.177098360242384,0.177920089867368,0.179567879071927,0.177458592129025,0.179633329754605,0.18026925575365,0.183173952843794,0.177682453039373,0.175403196643664,0.14327644907815,0.10802292246099,0.099010715923726,0.115273138363206,0.136642268300631,0.113375976908738,0.0747937577306609,0.00247242243228229,-0.0387470397054723,-0.0453231014009465,-0.0322469819840464,0.0134135219933539,0.0302956910282685,0.0115845824377196,0.00284167358006166,0.0184364218100661,0.0388707217966641,0.102110078316601,0.164644318418166,0.183142234830107,0.178309090672481,0.180687339530933,0.176692316159175,0.177368068765218,0.18113175553271,0.177390313650064,0.177346788176849,0.165443202372044,0.136431880547301,0.0998199704820509,0.10754595862115,0.115900039011307,0.12477878002129,0.0979762270413981,0.0532563919227909,-0.0281237128620221,-0.0453300053823758,-0.0377732768909005,0.00605933695496824,0.0560796904112115,0.0732607318876134,0.0504047412748745,0.0126594368814226,-0.00250602307075291,0.00959753948466532,0.068453048831544,0.148619074846128,0.18421187555366,0.177644371061396,0.180347439468031,0.179434235212523,0.179045232986016,0.179882164238035,0.178059642570176,0.17991316144644,0.154340440819116,0.12249315565303,0.0891787742961415,0.0847268187544593,0.0908982999745594,0.0901801025689634,0.0669884772416363,0.028693010587946,-0.0220395087072016,-0.0319457328648939,-0.0184348875656799,0.0449501939317604,0.0808786213545831,0.0801822825607041,0.0525259465235183,0.0119951600729505,-0.0180822364865906,-0.0104063320137558,0.0506137833960449,0.128471915029492,0.174944711955544,0.177597408149522,0.179853940190576,0.179348329839348,0.180591900401208,0.180053298561769,0.180553743672938,0.17425004329475,0.12960176553517,0.100940840531853,0.0663860596031468,0.0540658825280101,0.0459934831755385,0.0445394731850774,0.040804019109697,0.0232760746357424,-0.0007015975553787,-0.00705279795057106,0.0157685015814391,0.0623699328953876,0.0811412692903847,0.0606083678131034,0.0297341838125918,-0.0108935503208807,-0.0294571108090607,-0.0145248982170625,0.0355964219105642,0.117332332129992,0.17800991951108,0.179511871205697,0.179417121763689,0.179968271464197,0.177794818395265,0.177510341638555,0.178193623817551,0.173739081629552,0.107753432239461,0.0613301745450458,0.0304153442717563,0.0105570317955635,0.0122027285186286,0.0113923014844278,0.0198223198503076,0.0163957218861349,0.00949396283053983,9.02285881252054E-05,0.0218807430729571,0.0495991001121438,0.0507407116031225,0.0190355131339697,-0.0279197294594348,-0.0584136236590626,-0.0494961771016031,-0.021530639453849,0.0316250535310722,0.101223618189034,0.171329839994617,0.178558470347132,0.177142581679881,0.180523294276905,0.177770960943303,0.179854814418208,0.177015073379369,0.153291380487499,0.0670048275402494,-0.00217534550947814,-0.027725972897064,-0.0450030433437294,-0.038289876309889,-0.0131018331169406,0.00613544574862817,0.0104235404046491,0.00140529409698574,-0.00569136601824837,0.0113704418829385,0.0401860524336464,0.0306931750771956,-0.0272483410362295,-0.0753555696739888,-0.0909010494040882,-0.057613107575115,-0.0385455759505745,0.0245143149503825,0.0975209223706678,0.166343867723463,0.173833545590042,0.17971784145998,0.178360697870431,0.180956650873541,0.178944862957912,0.174733325767719,0.131474152067627,0.0180481531055319,-0.0674448336321356,-0.112624317952794,-0.110724330295554,-0.0680409321194558,-0.0219146036943929,0.00862345200969108,0.00282868966896039,-0.0164380119531387,-0.00705610104175362,0.0236725996595158,0.047543059763495,0.00498138760019551,-0.081392814031035,-0.115404214988721,-0.119416376688731,-0.0860949391451411,-0.054000295759258,0.0198546458445996,0.0993291208918193,0.154467579366688,0.176764270532851,0.180410092783203,0.179068492830602,0.178914336108247,0.178069874048402,0.167877896347285,0.0995487324708356,-0.0297088840214718,-0.126486049975646,-0.183907390546664,-0.154784597144914,-0.0851855312757871,-0.0299269907536333,-0.000144708155919022,-0.0213905891029887,-0.036673259080057,-0.0116132683685242,0.0334427682367135,0.0229042873607145,-0.0504182531792173,-0.122773550928072,-0.166707390582527,-0.163988259758086,-0.135324245386518,-0.081288989852353,0.0156691806881714,0.090255712207975,0.148624910387718,0.17373587085606,0.178217544678767,0.176853536188183,0.178188227288266,0.177281318890572,0.163076869486115,0.0798286380709545,-0.0681792371916339,-0.171924005793549,-0.197982468593294,-0.18000342133963,-0.121616011538464,-0.0644605364701566,-0.05340823986662,-0.0647674128733558,-0.071362296553541,-0.0362565549616798,-0.00784138760019755,-0.0398659299950786,-0.121263866394382,-0.190848478613917,-0.224396821451295,-0.203783852058325,-0.158524811430342,-0.0911841540866042,0.00679595498365795,0.0790755431501436,0.142486066370631,0.173414977685772,0.177085059485022,0.179035018886325,0.177724553121054,0.177258569674939,0.149066082626954,0.0660931532097748,-0.0912390201134539,-0.18981246679281,-0.218190193087804,-0.201059542472515,-0.166549149362096,-0.134679992944804,-0.128859353364339,-0.122552931764315,-0.116133112421509,-0.0836472673073992,-0.0741388330790053,-0.106739212395163,-0.165262913879225,-0.218529413098726,-0.232380666044996,-0.206114546726024,-0.147030994672639,-0.0683427212991212,0.0198559945995154,0.084417000632954,0.139191312873019,0.173099399217413,0.176675608521141,0.177131509301262,0.179905554371826,0.175944121154141,0.146765155495721,0.0693065796831421,-0.0755831545318611,-0.180613137472937,-0.219804245693598,-0.233162406323937,-0.215828579863449,-0.18755558366177,-0.184293588784118,-0.166552646680832,-0.148725828608876,-0.123536225198334,-0.115555635908248,-0.124103187350077,-0.161019103516656,-0.196366172683209,-0.192686945213181,-0.152953253545601,-0.0939287157653227,-0.0137752264967311,0.0553527390565673,0.109734923090242,0.153258087231342,0.17463649638256,0.178718298078667,0.177092683977248,0.178735694026712,0.175615549920099,0.151876975456684,0.0894388304183812,-0.0178934876293038,-0.112887194802971,-0.180305125223942,-0.215896096974188,-0.217899360577824,-0.196303934469814,-0.18779959081193,-0.152790604369993,-0.131871785729848,-0.108854885773583,-0.0950326962972456,-0.0968800127629835,-0.104572446965413,-0.127229380667333,-0.103793093617871,-0.0528515433791068,-0.00975124046756062,0.0509796708117065,0.0946811648572526,0.127885884054912,0.163491875271592,0.176123807753732,0.178440648082065,0.180193778223056,0.18103988876897,0.174953289847844,0.163075461048641,0.129034206035558,0.0636198355924788,-0.0287203018708192,-0.0969622182915455,-0.140688310227363,-0.150615867714776,-0.13338040728864,-0.110520089427634,-0.0834387167382459,-0.0691016679201091,-0.0507399253854362,-0.0239644670775563,-0.0161178053115523,-0.0127635099848257,-0.00408772051849452,0.0192478055336925,0.042958131190981,0.074058716063046,0.099023402124422,0.12136190227807,0.149502053038518,0.176111130538008,0.178717282904154,0.176962578695618,0.177207268469234,0.178874052728905,0.178586998053826,0.176007610378169,0.158666124508118,0.130721745545894,0.0965954522622339,0.0410369625676023,0.00381269824613708,-0.0105335154075519,-0.00466718968325679,0.0165017023908117,0.0385834444903754,0.0515642940219977,0.0614748964491657,0.0756129752966591,0.0972233929435435,0.114504924034723,0.115851384578458,0.125692840876168,0.147089876945306,0.147857344747816,0.141921447750741,0.159384446642529,0.169466950227784,0.179828094211724,0.180435820536043,0.179654716454936,0.17950781038596,0.18058329723855,0.177706300470429,0.178800259357829,0.171607607136883,0.167625413073113,0.159296538722134,0.161780735811628,0.164483992252459,0.169744526968419,0.183548635473723,0.200354911878865,0.206458578707763,0.197497046120591,0.19568653734149,0.206893094510595,0.212778650981937,0.2181330665241,0.215780987250736,0.204940203677322,0.19012653857836,0.180809749041737,0.174728968681605,0.174551903619114,0.177820281267893,0.180700555317187,0.17759773408864,0.180629154144167,0.1767022490777,0.178359297579957,0.177719716878624,0.179654493017941,0.176913614893848,0.18100412878095,0.188054020020044,0.196277418313816,0.208903860899683,0.233868054646672,0.259828752490309,0.27713124981038,0.287344373627534,0.277381409054731,0.26071724108804,0.241185483587564,0.234353184972752,0.228355843821938,0.214674395348533,0.202453137568329,0.191666613112559,0.187805688322288,0.181704135630385,0.179419532351393,0.180648824769793,0.178500463845995,0.179176953516832,0.179719118355293,0.179653815970744,0.179215397997354,0.180669955098559,0.179058510597366,0.179380646917872,0.180638912407888,0.185756116485696,0.193104358279483,0.198416762573812,0.206088994979559,0.21563775767644,0.225034754933009,0.227682909798285,0.222114233423416,0.214487408906773,0.203124931035,0.198699214191041,0.195291219709125,0.190804791362235,0.183359353147775,0.181884892150436,0.180788444704932,0.176951169441864,0.177743932533719,0.180787710536842,0.178434819847819,0.180380705556914,0.177146723463606,0.180107716150284,0.179420513656835,0.180556105066252,0.179485731298185,0.180002097339029,0.18039528483184,0.177498419124644,0.180645806786365,0.17959015494339,0.179002488577995,0.179813256176837,0.180644060312228,0.18122866273611,0.183987353172488,0.183912953351371,0.180995263388603,0.178342634297186,0.179838713760075,0.179989370927493,0.178856668920453,0.179080406301824,0.178789462428196,0.180955677347283,0.177577892767068,0.177736932708507,0.176717520770444,0.179075500097531,0.178727892500694,-0.16235875959649,-0.227163829893835,-0.228295652219489,-0.229952327983969,-0.227509873872995,-0.229694714333423,-0.229016528756469,-0.228680207616566,-0.228459297674078,-0.227491473169255,-0.226918640809801,-0.22870977526293,-0.229498444410697,-0.227696370480282,-0.227568473741661,-0.227055280818475,-0.227296652251945,-0.227860720785663,-0.229694350258846,-0.228118430933008,-0.227679932413766,-0.229463174428889,-0.22880819407862,-0.227813022483393,-0.227694162240655,-0.228086066826915,-0.22807553110045,-0.230817296413894,-0.229792119036157,-0.230688351917701,-0.229237432778434,-0.227588384360699,-0.231118078302928,-0.228414914784099,-0.230707711945646,-0.227316694491757,-0.229154490180896,-0.226858054661709,-0.226750987503595,-0.226857126977734,-0.223049865493957,-0.225827567518512,-0.221873720521293,-0.222818480853333,-0.225685289051969,-0.227533277177662,-0.228124124118111,-0.230216137298747,-0.230439695187724,-0.231179721452152,-0.231111002937673,-0.230043121367372,-0.227420963243637,-0.228140374369321,-0.227091698285994,-0.230754044003275,-0.228642655431295,-0.23073042661873,-0.230299085143802,-0.226811505967719,-0.230204913629596,-0.22761318381483,-0.228553241509433,-0.227430117045129,-0.228179600866929,-0.229606049901703,-0.220440950095796,-0.212085264923863,-0.205089085930305,-0.20159180695002,-0.192641963918417,-0.18500798894858,-0.193053226482571,-0.201777003648809,-0.204958990118478,-0.206932106217093,-0.210710453209223,-0.21564036502015,-0.220948252511408,-0.223577316252563,-0.228469121701525,-0.231288246262368,-0.226919148058316,-0.227375311869944,-0.228776551075693,-0.22676097705804,-0.227096543361688,-0.230197124875318,-0.231542763625976,-0.228850781136733,-0.229885239564479,-0.227153561801021,-0.230112878606238,-0.222792371052896,-0.207516588810132,-0.196146330302297,-0.18652506504519,-0.171130320545961,-0.155777158968776,-0.159232497340361,-0.167063828718784,-0.176563911873644,-0.19015385201125,-0.194664817492913,-0.202507347044785,-0.21578437524301,-0.223042787180993,-0.223303846370814,-0.226959952326538,-0.226879369341374,-0.229877375574782,-0.229426209823706,-0.228724141783416,-0.228257343899666,-0.230324176264161,-0.228339681635251,-0.228399183918222,-0.231057783762202,-0.230825298331699,-0.226662380470035,-0.225818942285506,-0.211089232327284,-0.18745955537684,-0.160554110979502,-0.137340145871613,-0.118367347006704,-0.108766408612668,-0.124497653083623,-0.133720104708789,-0.13983738995158,-0.167608272748296,-0.190089283662533,-0.222245618338717,-0.231802284230289,-0.227045010701772,-0.222181232423747,-0.225135549663978,-0.222562328120182,-0.227875851314491,-0.230603739223463,-0.228968538640858,-0.230445864478621,-0.228436625381852,-0.229553134733263,-0.229688545008882,-0.228380732643992,-0.224847732099653,-0.2128885470336,-0.195586574096767,-0.15866656894017,-0.11746760708903,-0.0583836832782983,0.00203181895061533,0.0309849792827415,0.0433649299298323,0.0515272145292393,0.0563086163790006,0.0429832778534665,0.0277452731595808,-0.0230358321706323,-0.0891944926069235,-0.139917819399061,-0.160967340517797,-0.187292449051816,-0.199758103062286,-0.211511302763865,-0.222152390245065,-0.223223263001087,-0.229872359310916,-0.22786806404918,-0.229005207991369,-0.228275874253196,-0.230834246558754,-0.227149116436427,-0.223424367748113,-0.201478718569195,-0.161165285140637,-0.101813883546321,-0.0237782552061113,0.0499859690337736,0.116887732019224,0.164024628036187,0.201179679919213,0.213664267615572,0.203746793916692,0.194141044815595,0.158870180965472,0.0897881740784401,0.00404247390494146,-0.0614191349724479,-0.108289557412835,-0.149799881634101,-0.183293264733796,-0.186826669758991,-0.20907433007269,-0.220395307668526,-0.226147897039937,-0.227869030186873,-0.229363591862177,-0.23062684878483,-0.231046598974857,-0.231586120033884,-0.225212643391828,-0.199015626969162,-0.14665233069463,-0.060382655638695,0.0142676028193046,0.102433659709799,0.191683039308835,0.232722566856261,0.23667691461443,0.22544405319672,0.217489334235721,0.191767323368634,0.158235887892511,0.0951595034738919,0.0252202896761664,-0.0451388623969657,-0.0943872763124921,-0.137018476683609,-0.159561627286811,-0.171516811691021,-0.201726719234628,-0.221553318141458,-0.227360060113685,-0.230945052480697,-0.230563123535934,-0.234237677940013,-0.232293166846533,-0.235693716793859,-0.232977492699822,-0.19900300095149,-0.148614031509581,-0.0558551565188587,0.0409783273256355,0.154112788434504,0.212301843500686,0.199869008777332,0.144416913704034,0.0837498002165578,0.0484654924534993,0.0474177151139976,0.0489874960523474,0.0395662926204026,0.00205684623504704,-0.0578338905383517,-0.0920562024089061,-0.134030564947421,-0.162575439434886,-0.171476408309591,-0.202566327613893,-0.218952114953107,-0.228940757697831,-0.226743792955294,-0.23032696518631,-0.234937928931088,-0.239944493077911,-0.238428708095155,-0.228110155843523,-0.201193891424592,-0.145568220298825,-0.0319324549865529,0.0814601068534565,0.191661940720857,0.189609577626356,0.116411925235038,-0.00948371186690135,-0.107143815452659,-0.138683089586663,-0.0819229747164925,-0.011540404230598,0.0358462568886452,0.00692787809631857,-0.0439566003101974,-0.102890266144809,-0.152594604480957,-0.167306530170108,-0.17897611923328,-0.203798411035032,-0.221947818909166,-0.230169858409087,-0.226763488659884,-0.228339477134554,-0.234279408279827,-0.236852376821357,-0.237231407309383,-0.223607671719075,-0.204707568718351,-0.11563790186163,0.00425281157083412,0.132208913438869,0.197292937963044,0.15747299410202,0.044392346349098,-0.0994628739129797,-0.192533605552711,-0.163716486573912,-0.0570856617450955,0.0464739641864274,0.0872870561707831,0.050086410691391,-0.027985737942319,-0.118259950723591,-0.176375529114956,-0.205239333374669,-0.200998431540662,-0.203551125650152,-0.222712526271367,-0.226817782946237,-0.230102169013804,-0.229300002128388,-0.233867013289845,-0.231973699709177,-0.230546335639533,-0.210327599484636,-0.183743255580784,-0.098394414117403,0.036434471902343,0.145081873519032,0.178063929440907,0.144742318918038,0.0522471109279225,-0.0678277280115289,-0.0962581266966259,-0.0394254266095848,0.0675123628545075,0.151307716247597,0.162049162877125,0.0835229062674345,-0.0407862772037346,-0.165908728127089,-0.237701092307505,-0.249501883530438,-0.223776640052699,-0.214847720448586,-0.225615000872997,-0.228343993652743,-0.229709089143807,-0.228577448063166,-0.230334811355933,-0.228612417615748,-0.226796672432841,-0.21333573455273,-0.187730638868283,-0.107224195533384,0.0228232057518571,0.111541860436169,0.156798022024042,0.17075632590438,0.132700197566983,0.085466112837648,0.0832287205793587,0.130789107171004,0.203667683023233,0.238598875910539,0.188221285433272,0.0788463182854333,-0.0843534044014378,-0.214983716319194,-0.278581946210956,-0.280491836813846,-0.241327608683061,-0.225009400819563,-0.229246208143552,-0.22994270962573,-0.227675707232711,-0.230951812970894,-0.229959439403511,-0.227301113748836,-0.22515804648801,-0.231288405835678,-0.220339715537824,-0.131487998541989,-0.0179814116643387,0.079576455444992,0.14403871890344,0.211609162284294,0.24509313264022,0.228169614529731,0.232876399466187,0.250822195960674,0.28307329221072,0.263761343475713,0.182110244568932,0.020548308247153,-0.141884690997447,-0.251185836559201,-0.286423924039158,-0.289019452911012,-0.25727417535107,-0.225055653518116,-0.227900573726642,-0.230217317238286,-0.226681905533792,-0.229910442263652,-0.228960548131953,-0.227848100276527,-0.232124121292719,-0.262237322421019,-0.272792571501079,-0.19677626634673,-0.0766063494482379,0.0367067428951253,0.133701444482782,0.228217372015357,0.28738440605544,0.28945756747662,0.276488804947202,0.264142515045486,0.275572277881855,0.239562183629947,0.106283784802876,-0.0536347588465319,-0.180433350220448,-0.266593662855943,-0.284164930760473,-0.288632932621394,-0.253865788235037,-0.22740215464225,-0.229182614175851,-0.229836385965111,-0.227529531620453,-0.228629010238245,-0.227799811963393,-0.223975984946355,-0.242392380598726,-0.297375770197235,-0.3308905030088,-0.263983253999928,-0.133695383547968,-0.002594422177823,0.116973307264962,0.207412032493002,0.262124468797433,0.244703450568594,0.212200126022017,0.20020571567426,0.215210471399228,0.162500683524448,0.032703739800277,-0.106498264668065,-0.190284381511869,-0.250459580864396,-0.275100893331841,-0.273687423196521,-0.249929944715774,-0.224305024784329,-0.227920861232892,-0.229603325229263,-0.227917700318974,-0.229189187153447,-0.228559675611631,-0.223636794588248,-0.246806193824457,-0.311985385960076,-0.345433821126159,-0.301156944411757,-0.17550104151623,-0.0320795400595824,0.0937637798181756,0.188221801252741,0.200354666795381,0.142593871896904,0.101492546564875,0.111841327509013,0.140278568968747,0.11220576511202,-0.00407950711368718,-0.101641246707488,-0.163961555512636,-0.206831288169008,-0.240198805240883,-0.250826924179478,-0.23757981148114,-0.222974899450773,-0.227617772693267,-0.230584245710356,-0.230058502910307,-0.230837380503723,-0.226847936813747,-0.22566798141201,-0.244601704170153,-0.310095498573951,-0.331652762959375,-0.281744553728509,-0.172304339203583,-0.017278402846892,0.117294687243609,0.171616022056166,0.133553213312624,0.0410339974445929,0.00947458756322708,0.0531785160065991,0.0987992847459754,0.091663607734261,0.0142318781474462,-0.0610141357371544,-0.112137860274401,-0.158952647664877,-0.203034750248663,-0.219401161217392,-0.223512293186319,-0.225082644632875,-0.225994366531094,-0.226640934739412,-0.229966752679888,-0.230611372142737,-0.228207083125855,-0.221707129811557,-0.23813496790115,-0.290015806534969,-0.292461852492755,-0.227822822004078,-0.1165056403892,0.0153589594293875,0.122212547407033,0.137811158181138,0.0573612476179845,-0.0562753966612132,-0.0526425759521445,0.0214787066470887,0.0909602991495872,0.0842921750801743,0.0385523697110663,-0.00923016981766039,-0.0640856661296441,-0.126864976796189,-0.175601639336509,-0.194533455984085,-0.214227561372641,-0.225704502845364,-0.228245316501245,-0.227901403804029,-0.230563437636828,-0.226974456833107,-0.22887061590945,-0.221971458212142,-0.232779010796483,-0.265082012307358,-0.261684445896761,-0.174072617856994,-0.0622182695455356,0.0398822780832967,0.102323418707285,0.067829239997779,-0.0380924826762287,-0.108230706636215,-0.0720148000587577,0.0195659792374444,0.0967845254514665,0.109566780101659,0.0815775760795525,0.0245738097285649,-0.0371964395890617,-0.104090839362652,-0.154583899514032,-0.188227013048227,-0.21256264471113,-0.22728689231901,-0.228433395108929,-0.226961155762109,-0.22809816527089,-0.230984261609391,-0.229577036447776,-0.218455934268926,-0.223790818573286,-0.239943363848718,-0.213637106699623,-0.136917413979507,-0.0627866140407867,0.0202715969547329,0.0516522842901486,-0.00283667349707135,-0.0628520240861727,-0.0763344371845072,-0.031298432848856,0.0508320885773576,0.117673623164379,0.147670450238968,0.10405018998596,0.0459362954692566,-0.0444477980442125,-0.106856948982314,-0.149134734081967,-0.19007192887586,-0.21680877336864,-0.226514717978488,-0.225923089982748,-0.227298159509852,-0.227902396258484,-0.230735091050176,-0.226344310851894,-0.222833994449323,-0.214319520600789,-0.213994924070057,-0.180248205218177,-0.104531619767405,-0.0480716970894056,0.00607850276247433,0.030901500140723,0.0082648599059723,0.00209082454839106,0.0174723634890872,0.0615331030472857,0.101239883015881,0.150686518511724,0.154240857018998,0.0976547645337236,0.0216489817811968,-0.068572403480279,-0.132432011289833,-0.169757778095477,-0.2032675062786,-0.219960737199113,-0.227543302216908,-0.229774617744037,-0.229251894251548,-0.227236412661909,-0.229480749786806,-0.230015459440283,-0.227703480379106,-0.212596575015974,-0.19507264002902,-0.154308239603994,-0.0963336359314352,-0.0306113049033474,0.0080259568251247,0.0391311026384054,0.0663365758914051,0.0931766521926866,0.0965751385087326,0.104243706494853,0.1227844938709,0.128834984509008,0.108415610613092,0.0601732650921583,-0.0323837669296754,-0.103850959854874,-0.153299614958916,-0.187901391557523,-0.216911245784578,-0.227579372659298,-0.229908162914472,-0.22847648369196,-0.228522920310238,-0.228688147457843,-0.228087703151282,-0.230865490551549,-0.225861534286789,-0.220804729962066,-0.202030556702416,-0.156761606976106,-0.107730750350075,-0.0407737990443175,0.0116156424597225,0.0546495132297806,0.117020816810444,0.155488149038491,0.162853714058353,0.130881559874504,0.115749216737575,0.0967023602407969,0.0563178266957949,-0.0119181567209616,-0.0921696544117032,-0.146329410658776,-0.184798055383664,-0.20895660678051,-0.221345486942058,-0.228335074493864,-0.228330708532863,-0.228465993011755,-0.227508173068944,-0.229363160268518,-0.227737888129597,-0.229132732459935,-0.230544522365031,-0.225388256495279,-0.218872684393082,-0.198056078610598,-0.159624657556966,-0.101765754413146,-0.0418785565006084,0.0173590953056706,0.0849186747246396,0.117420990575837,0.123631724638645,0.0914859008459749,0.0575708661507115,0.0177148090583416,-0.0232854526140372,-0.080655119420467,-0.138707454544389,-0.178184629143832,-0.200194916394157,-0.213818182715392,-0.227229105700811,-0.226534264985399,-0.229148561740302,-0.228277104230609,-0.229542331738036,-0.230787924294968,-0.229342110694259,-0.229435204824016,-0.228469001363615,-0.225450069958508,-0.227459985601102,-0.228076541850979,-0.226431635680413,-0.209994187860218,-0.192504645062261,-0.156220480198458,-0.117595536749188,-0.0881935723612607,-0.0899209064823586,-0.108493633691583,-0.115468576922137,-0.116207764106451,-0.119913247882751,-0.14538494949092,-0.171728542946857,-0.19052921677692,-0.211803392692946,-0.221583748001082,-0.226849306220794,-0.23047426877669,-0.226946529089447,-0.229879619355124,-0.229546900803195,-0.230355494623911,-0.22781291180203,-0.228118280699881,-0.22806508550378,-0.226830117854768,-0.230609471618003,-0.232162682448591,-0.238050459493942,-0.239357825521637,-0.242423668549119,-0.235169512271995,-0.225639030050739,-0.213915369635292,-0.210076976981711,-0.211321953404636,-0.214127890299569,-0.204282453405774,-0.206613761330929,-0.206337601765437,-0.213977138393491,-0.219526479092732,-0.224014086540307,-0.226474274157778,-0.229830295703097,-0.229981077727912,-0.229888334858904,-0.229278986810928,-0.230469059145069,-0.230411080283133,-0.229498017659855,-0.227943005318847,-0.229976232183103,-0.229595323144329,-0.22823347883148,-0.229649748784922,-0.227932502882416,-0.22802838790232,-0.230869636634243,-0.232543641870771,-0.232138766009886,-0.233432200543205,-0.233347937678494,-0.232864359259545,-0.232045837313061,-0.232045016342604,-0.232351455801222,-0.228192145202269,-0.228039066590725,-0.226938078321722,-0.230955235823132,-0.229616905904452,-0.227358854863929,-0.226923947440367,-0.22901430210304,-0.227901567006589,-0.227592109470052,0.219691273355023,0.234754964693914,0.234771025833536,0.233011497954889,0.233202017876566,0.233810487623534,0.232485913578967,0.231928072896753,0.231723301453665,0.235065076726454,0.235649969353573,0.234260477805735,0.234951895745068,0.233432131918701,0.235640716616139,0.232117107805332,0.232994618325424,0.233458332619026,0.235488753427265,0.235503955965633,0.23335919878838,0.235032281697891,0.234861864372435,0.234881921713437,0.23441156226975,0.233803551640518,0.232385901587224,0.233695958422437,0.233715985398515,0.235020148938548,0.23213496985367,0.235002885229209,0.231728717441578,0.235040142031337,0.232395636708864,0.232026015164402,0.234716787667973,0.233366030908176,0.231820797876206,0.228352797956697,0.232379074676062,0.230174448762079,0.226871359235345,0.230184829576349,0.229524251781401,0.231531745731099,0.232625116063544,0.232514610285299,0.236355403050531,0.236674342199691,0.235579393107337,0.235044473753876,0.23205615104095,0.233373424471417,0.234174122675255,0.234530647274241,0.2347759807038,0.233604785636872,0.233093975413773,0.233608333378485,0.231573887088256,0.231987968466856,0.232866247324517,0.234663064176506,0.231990585473651,0.231435099362756,0.227623206474153,0.221204489746998,0.213331305639685,0.204194316907644,0.197142057485936,0.192602329949177,0.201870023986424,0.210179394587573,0.212431494666713,0.216644207782324,0.216978650789056,0.221118980704269,0.225907776474457,0.22959398144487,0.231404644974453,0.234295473951126,0.235373476268666,0.233479887998274,0.235449780172596,0.234622074220476,0.233767755344331,0.235377854879786,0.233674146755327,0.234618500735675,0.236612952590825,0.234617905499226,0.232179194253742,0.229072029710946,0.215836459820281,0.198536265501004,0.189863920535599,0.176506974486944,0.162375849393471,0.17031287863063,0.175367934841362,0.18569633209615,0.196712286203287,0.202754849309922,0.212733157213223,0.223490569443347,0.231937921102407,0.232156977027676,0.234137723521505,0.232706412168576,0.231841038165014,0.232587870198149,0.234774492844119,0.235343980115629,0.23305862979022,0.233971777780126,0.233546129619979,0.23332158725196,0.232453128931646,0.227711149126858,0.220537234579281,0.201495907696534,0.173714649090476,0.145986227710633,0.12122313467324,0.0968575359786451,0.0933846872168702,0.111034250663464,0.123796180897218,0.13399670556093,0.163637191421666,0.189361590744381,0.223349530178105,0.236091269053043,0.234959682988793,0.232259403028987,0.228382512447688,0.228546505850965,0.230604414743557,0.232287704644443,0.234886588456413,0.235745986714854,0.232505508999887,0.231604543737112,0.234689565532484,0.231337889306893,0.220218310051158,0.202022498681153,0.174087628427592,0.125907535624772,0.0783649769475903,0.0167065749818293,-0.044770908012031,-0.0684927608093915,-0.0740129693522193,-0.0779569201535043,-0.0840418702294747,-0.0741204017943139,-0.0471962356519289,0.0120257184146051,0.0856414695583956,0.137149087992924,0.16672053333901,0.198667385403862,0.212328917754595,0.21785828662613,0.224501945483995,0.229999567419968,0.232411489911718,0.232743036469131,0.233592017597761,0.233678127925312,0.233867662956144,0.224340851556763,0.209919022470092,0.18196643534175,0.121874521032363,0.0593605149443239,-0.0192047825624958,-0.0920421665154153,-0.148820245229195,-0.188171479092518,-0.21745006975026,-0.225703795557616,-0.217771618148779,-0.20978373380265,-0.178636214671625,-0.109799042847519,-0.0162602178901264,0.0582860092948126,0.109382404051791,0.158005937387719,0.193056171568694,0.200253121393133,0.212446620576315,0.224190747701828,0.233431816581266,0.235591984610207,0.234489313167437,0.235523832019939,0.231318465139806,0.226055618166627,0.207165423142934,0.166521469174714,0.10347588200602,0.0157286213930681,-0.0520949852157729,-0.132014947927392,-0.207143411586246,-0.240211376444721,-0.236592775099155,-0.221329578946494,-0.208835139293817,-0.194583280209328,-0.166180230515763,-0.110622828882554,-0.0449278165334573,0.0325444264902504,0.0869556142858987,0.142153699363848,0.174992884176454,0.186457679589974,0.206002664498386,0.224618004292172,0.231749805362614,0.2333057267289,0.234588084660612,0.236803298993388,0.233772846875085,0.225803811274103,0.209489681112291,0.167651692551536,0.111302697532522,0.019946236594701,-0.0649154173533553,-0.159154372997009,-0.205185647925149,-0.194384909940972,-0.129192444754436,-0.062407548209044,-0.034618261810939,-0.0493123121925473,-0.061204176859666,-0.0603719596923241,-0.0245870990119702,0.0347684567633286,0.0857617739898578,0.13437467661643,0.175084173039093,0.18283887008915,0.209060104296607,0.223759621706311,0.233462690125524,0.233444156880301,0.233968985695877,0.236360896561242,0.240040680851908,0.23061930811134,0.213943832433693,0.179676804988174,0.122124239667432,0.0179315914231038,-0.0775678956497613,-0.17066841182273,-0.17333799221936,-0.101261549461267,0.0278684993702854,0.123350721790291,0.134180945503409,0.0624751237321908,-0.0131546732094702,-0.0596503671754788,-0.030356231662455,0.0289761888381651,0.101013945157959,0.152847319152623,0.177534078523397,0.188108189098679,0.211226805504851,0.227349927494247,0.23152758533568,0.232478037330581,0.234626300009801,0.23628600676634,0.239214005068876,0.234350502977156,0.216157258808259,0.193523921790745,0.107971801383411,0.00598155141903021,-0.107718431351903,-0.173921630078802,-0.12891271989124,-0.0289091925228,0.110003652294333,0.180797070271517,0.135960225742636,0.0221005062242264,-0.0781449106289377,-0.10875193944815,-0.0666258965744462,0.0181313900277035,0.115584216181435,0.180124621291846,0.208858508752728,0.208580919840343,0.211759136455286,0.225133792244496,0.234639891377073,0.232570672027375,0.232877794839729,0.235927185053133,0.234327569634996,0.23438519314349,0.207519746170176,0.18691891234733,0.111308384948569,-0.0126045215442555,-0.118156660828993,-0.15327638179827,-0.130787129084217,-0.0459531505049759,0.0548716466883708,0.0703548412931229,0.0111930605329745,-0.0908211282898986,-0.166371036157932,-0.169306316370291,-0.0900670087674367,0.0377025092224665,0.163746312795344,0.237803829532987,0.251869331704533,0.228916668591189,0.217829615333396,0.228973631982478,0.235384502132049,0.231656194437141,0.233311763076083,0.234984005199926,0.232944913278608,0.225794414205697,0.213135612283377,0.19680122800739,0.127221153879639,0.00241273375751958,-0.0911683096170845,-0.146787481486304,-0.172948726932273,-0.146249493575342,-0.102461719543445,-0.100337206508979,-0.145047791997725,-0.210642976249315,-0.245135356061202,-0.192561932374787,-0.0790960384875291,0.0846349311121755,0.217804460581645,0.279879453659869,0.282557549103217,0.247291882353579,0.228637494531175,0.233044506620054,0.235491390487603,0.235538928400812,0.232081628524028,0.235861909229885,0.234613929694089,0.227443610042688,0.234897252865435,0.228285331453024,0.148339051674192,0.0333991161044785,-0.0665967151825979,-0.140402812798058,-0.21828082999581,-0.254589564397057,-0.234088561269499,-0.228350444503531,-0.245847585276049,-0.284576710332129,-0.274053302013269,-0.193264782578548,-0.0300321649764229,0.137252031913466,0.249489385332368,0.288922170084479,0.293431202979087,0.258468757601008,0.230813017494965,0.23371758312342,0.232678582196355,0.235376803204765,0.234832555884112,0.234911007011818,0.231780132741281,0.234917084742346,0.261463325028498,0.275825718766797,0.205650485754565,0.085313514196235,-0.0303956574857968,-0.130129390301441,-0.225420130356733,-0.281084355715283,-0.270480279369427,-0.25744742147249,-0.247438868853594,-0.270458133204847,-0.248069677363609,-0.123573919199268,0.0298605799140108,0.159563407994555,0.258158349631224,0.285134336471858,0.29144854935699,0.258154141606218,0.231482295606057,0.23474959299727,0.235011491785429,0.232156877640703,0.235409998965687,0.231931420163063,0.229706814676437,0.243071681457503,0.293776865785977,0.328815344899017,0.269439798905706,0.147774168356371,0.0114228817823201,-0.103024744177971,-0.195179601966155,-0.239162584845601,-0.213646669858586,-0.181784196964225,-0.171648907782779,-0.207248197708232,-0.165510387913165,-0.0519548238053744,0.0696684815637576,0.153917401538313,0.227928236577826,0.268877627579813,0.27137446597808,0.248960293824383,0.229075615260137,0.230606832372064,0.233449570219206,0.233802855839741,0.235229572277526,0.232909203307274,0.226394540252598,0.245617846273171,0.304519773539698,0.340790281482023,0.304278741939716,0.189089326369526,0.0433478078174779,-0.0746900315533107,-0.169092387298224,-0.166274935365455,-0.108106313470238,-0.0635278616904346,-0.0820973870361162,-0.125527790180266,-0.11261812784765,-0.0137982412989644,0.0669016932651482,0.123411653094507,0.181013303553711,0.228364005779725,0.252174637191763,0.242218399257354,0.227359266413354,0.232152851020643,0.234766838605549,0.234696562875208,0.234003751211986,0.234128296448819,0.228183951814698,0.24089640637701,0.297090993111016,0.323605992501433,0.282172248946839,0.178585921022473,0.0235019065173409,-0.100568928592733,-0.144673914863543,-0.101042303989324,-0.0106277532323464,0.0263170928911995,-0.0218597743874442,-0.0801185226381423,-0.0854268015415542,-0.0293610578379885,0.0284761374801246,0.073260710723033,0.132056433241288,0.185352421114951,0.222984000308703,0.227556257365527,0.228941510911514,0.231477198443498,0.231348410589959,0.234346182225025,0.231367152671539,0.232410492083542,0.224589196574378,0.232620166554504,0.280725956639912,0.282575691663439,0.224932081425793,0.118323899981957,-0.00792969642662499,-0.109068402891737,-0.11768061951663,-0.0320821927267649,0.0881173801525539,0.0846436610377798,0.00646486634909722,-0.0716315388495911,-0.0785108386820042,-0.0555394936726568,-0.0224429485087149,0.0340136199810344,0.104543982937054,0.163398420593725,0.196188693271299,0.21679333933736,0.228150715373109,0.232687032753011,0.231170563418225,0.234649520483489,0.233655694006358,0.231201257075594,0.223631044567604,0.227372640386195,0.256973098293399,0.248967345589299,0.161533561504871,0.0531725806508818,-0.0402397127956281,-0.0919299773456986,-0.0559767001199169,0.0616701784414902,0.136047681580436,0.100448694674302,0.00799556606378084,-0.085669449514562,-0.112495808628034,-0.0945656274474975,-0.0519034828490183,0.00834560523376501,0.0840539095218791,0.138453762400735,0.18948250602065,0.216434511389656,0.229818842879115,0.233287142171529,0.235134319369362,0.231341744938515,0.232610620624281,0.22969445147245,0.217337386505628,0.218848259472202,0.228777705475897,0.193090707682234,0.112140102603172,0.0445487164075348,-0.030959969316937,-0.0480186371489112,0.0124975943343409,0.0750125399118866,0.0971699321345835,0.0489184385683399,-0.0371235160599067,-0.116902153854247,-0.15861396059347,-0.121929701870827,-0.0712860228597868,0.0181496910495957,0.0871469207544569,0.137727487992771,0.19333350274914,0.218296096258467,0.229867443242371,0.231540779632765,0.235740637018804,0.23184985147703,0.23389342788159,0.232970976789031,0.222019677441037,0.20431684472303,0.197779103474405,0.148843039712647,0.0674878118437041,0.0156001281593778,-0.03255061254586,-0.0445965797926796,-0.0101965820750343,-0.00265499804462824,-0.0138702016017306,-0.0601545844949462,-0.106690351990741,-0.167511977224845,-0.176361726682483,-0.116328006440341,-0.0477974758724939,0.0496189022799102,0.119217579885604,0.168988549210736,0.209950919994346,0.225846774758967,0.232402954157174,0.235270812641356,0.234055225663552,0.232032218026896,0.232967073374688,0.231904643285367,0.224870650000619,0.205187439874676,0.178686315237728,0.129970545940013,0.0614946594325628,-0.0151894083140832,-0.0543001114165225,-0.0839313751259277,-0.103350773822022,-0.123048658259207,-0.122852256604257,-0.130861382393407,-0.146037950390698,-0.152899450225172,-0.124660486131592,-0.0759437091013215,0.0184646836891887,0.0913992426935963,0.144571269885538,0.190986334657906,0.219460243225586,0.230434738246814,0.233764955500655,0.23231557957057,0.231808102482512,0.234112960314999,0.235523325538428,0.232441928427057,0.227704610729742,0.219571263673964,0.191492616570286,0.133939569478209,0.0754413571788939,0.00206563854770607,-0.0559439696567312,-0.101961544511647,-0.16162082154367,-0.195905568369788,-0.196432701202307,-0.163811290038413,-0.140435037718629,-0.114962384884569,-0.0658678919088146,0.0112315526122572,0.0920451061988742,0.145742891966073,0.185899291052495,0.209342706338143,0.227217682655483,0.232181408217547,0.234543106568524,0.232868530085826,0.234909846384491,0.231792792328491,0.234781775262567,0.233589350036967,0.23102661580187,0.228943870064133,0.216891470562116,0.184405032450448,0.144391138035336,0.080375425708788,0.0160910146132633,-0.0417505892472471,-0.106400340436681,-0.140466434840733,-0.138302309004159,-0.103924607381575,-0.0662280304999126,-0.0149437617805536,0.0361724117871975,0.0941295721275765,0.147495249127032,0.18263196035134,0.205983019232727,0.221271160374292,0.231568151468603,0.230714983593601,0.234639353849799,0.235154019497854,0.233964803788489,0.233912941453718,0.231339353354044,0.232769954043351,0.235950815030394,0.23090882497249,0.229197846277796,0.231103506006728,0.22756384553534,0.20601105783321,0.190191079094319,0.155998556972211,0.123490835341755,0.0998766623569385,0.0999035712513551,0.120351186340442,0.122583780271969,0.127922691294782,0.134861463736181,0.160771053647268,0.183942120323718,0.201829886162107,0.217652391059674,0.22901068335032,0.230143462892908,0.233488475753344,0.234941151663539,0.23256641548967,0.23466294469857,0.234937719927129,0.235178037696907,0.2347331331457,0.23316443566792,0.234426729378798,0.233528332619967,0.237642284716747,0.238392226051067,0.241206626800186,0.241943266205969,0.237096587121686,0.226212267751329,0.217241861960125,0.216384514432098,0.216094125585581,0.217170048855651,0.209714307817472,0.215189665172439,0.218269233483053,0.218533117136566,0.224149562994844,0.22832844296586,0.232413040143342,0.235386741417424,0.233766782305706,0.23434729650643,0.231700764790268,0.235402080216078,0.231677804832668,0.234798057599284,0.232701305658378,0.233631149341368,0.23203313846389,0.232753136492274,0.234374505569546,0.236181113190903,0.233023128680482,0.235460059481922,0.233338906576617,0.235149479018891,0.236991623277449,0.234722518401273,0.234718999015512,0.234417935434611,0.234862177811988,0.234080924631775,0.23371129123958,0.233531483413527,0.234572507744017,0.235150004752603,0.231869497518783,0.233994320256026,0.232307139932546,0.232775652649566,0.231674301076781,0.233968278618688,-0.219258434536211,-0.234146186433522,-0.231397367643241,-0.231916031753566,-0.231464918260521,-0.23464287164201,-0.23177853722885,-0.230877454191588,-0.231113281768264,-0.230544753851823,-0.232014478407543,-0.232935462825564,-0.234242964367432,-0.234209277893376,-0.233506548057896,-0.23381449560815,-0.233694806941847,-0.231281080614874,-0.23074562494221,-0.23104979253675,-0.234530763044689,-0.231414532519463,-0.234132397197403,-0.230632414624662,-0.232974899140183,-0.230647061196659,-0.234423785673071,-0.230693789029121,-0.230830628872657,-0.233258103675191,-0.234128071211096,-0.231158908312579,-0.233370455978908,-0.234350315449007,-0.231038281897257,-0.231774789007341,-0.23417081508277,-0.231241145107911,-0.232999087772391,-0.230353352797586,-0.228300563387682,-0.233177409930954,-0.226163765851551,-0.230127623668932,-0.231009368757131,-0.230040160170019,-0.235482986391984,-0.234239752494114,-0.236350656596633,-0.235202768768764,-0.234560548622179,-0.233188785801952,-0.234761434687992,-0.232116989237286,-0.234349463118054,-0.232057577341455,-0.230443610728591,-0.230776612731059,-0.233928137498345,-0.234246013605176,-0.234321771365802,-0.23440015323363,-0.234308123085382,-0.233737592798014,-0.232300464961978,-0.232039139922029,-0.228392042178416,-0.22385388474201,-0.219463983749425,-0.216568818207575,-0.213519529349357,-0.209666521288995,-0.214965283897204,-0.220880580931423,-0.222859234078108,-0.22413670681141,-0.224412814599568,-0.229602141577862,-0.230796609844585,-0.231512159676337,-0.231491071908244,-0.231879756501218,-0.23468824003393,-0.233804206872916,-0.233361929825881,-0.233209309399355,-0.233753815638273,-0.231887392059326,-0.232246503873851,-0.231566695778165,-0.234820901610433,-0.233380026165106,-0.231232784629252,-0.230768581959407,-0.220665904915694,-0.21367608498441,-0.210274544783941,-0.199935634922987,-0.196185968568722,-0.204494271714279,-0.21316295616124,-0.222338995708572,-0.233048435263472,-0.231167281400098,-0.236567672869813,-0.240823524852146,-0.236200120106324,-0.236773241264602,-0.235335795937898,-0.23041977520333,-0.230437758311011,-0.231446139644831,-0.233245937202305,-0.230582315795926,-0.232694264481215,-0.232171915199087,-0.233364075370818,-0.23560432437736,-0.230261034078571,-0.225541513592643,-0.223789174435374,-0.206580277188474,-0.183417964569056,-0.165729621191625,-0.145324364327973,-0.134096610807495,-0.133964395924016,-0.152784899447335,-0.166348380060597,-0.178495627614036,-0.2053704142681,-0.22943087081675,-0.249699991623191,-0.255121332803414,-0.245799042205594,-0.236728615814751,-0.233648761127786,-0.230385405412817,-0.229385206809288,-0.233737781847989,-0.231676229989977,-0.233040606448342,-0.233004758287145,-0.233899352977414,-0.232842817355443,-0.230527891778139,-0.222480527846768,-0.2039908241352,-0.1747384150972,-0.133033084022587,-0.0934884330328882,-0.0436643565335296,0.0174005422756345,0.041026552772679,0.0404060215150346,0.0479089905753403,0.051609416332875,0.0442686485517866,0.0210599411782668,-0.0319703011668666,-0.106344517045483,-0.153746067273178,-0.176784944350928,-0.205356375864253,-0.21837458685345,-0.22259775596611,-0.229408434666992,-0.227925786642939,-0.233158264601195,-0.232730530795894,-0.232603556264793,-0.231747451391199,-0.230392505707173,-0.221160225469229,-0.205175434663517,-0.174252985493439,-0.118542261330838,-0.0608403739943313,0.00519028248670204,0.0697581802448802,0.12626858804482,0.163365417172853,0.196803810514524,0.203605072861927,0.204087488345908,0.195977547253037,0.167693208530572,0.101676570563013,0.0103307134869379,-0.0663260165204688,-0.121193398269444,-0.173674192951083,-0.20339607412613,-0.208210790484019,-0.216880323020567,-0.227181910027074,-0.231860685759919,-0.233036445088563,-0.232541099962012,-0.233167990137286,-0.224633979591762,-0.215245606460463,-0.185972337250072,-0.146442170490759,-0.0843667490672866,-0.00167796910277047,0.0533136178599345,0.125281889011985,0.203142747176567,0.23785587678196,0.234081752998412,0.220580196255065,0.215326041643346,0.209334791109869,0.183175637003572,0.127263504461185,0.0622969881690939,-0.0267318781894466,-0.0859346114838533,-0.151181695361013,-0.190632603308244,-0.195292272889963,-0.214464821274943,-0.228564375497269,-0.231955694666493,-0.230544176786583,-0.234977398013033,-0.234444295000684,-0.223927725032265,-0.211048520564296,-0.186415450980299,-0.137459565176868,-0.0777968046936469,0.0065803057566033,0.0857216365539127,0.170264685970997,0.21757960447013,0.211499590811624,0.146466641609843,0.0830099649269671,0.0642941564866249,0.086778168695153,0.104454940828063,0.104043683057444,0.0622080282031453,-0.0135955076648706,-0.0720634032310867,-0.133604448419158,-0.181813872296255,-0.191880850562633,-0.213418598454625,-0.222692728732745,-0.231339219899379,-0.231760536785343,-0.23489176603728,-0.233779280288816,-0.228396731422224,-0.213893144506685,-0.185322418933325,-0.146611129270782,-0.0924745112496398,0.0129964577468554,0.0987530015308007,0.181616571573841,0.187146157159844,0.115427000776929,-0.0117765281955428,-0.101006022786466,-0.0924244306628507,-0.00956711073796388,0.0686147853119749,0.110027236320331,0.0727130978150588,0.00312832118647797,-0.082198082980269,-0.148445676857765,-0.172162594455687,-0.189901297422425,-0.212360255783687,-0.225867683504524,-0.233991486975705,-0.233687092872567,-0.232399694129427,-0.232020363451039,-0.230029620559928,-0.218822540874537,-0.195878583534825,-0.166314578180124,-0.0773918919778632,0.0194339038793627,0.115747080746736,0.172065412428259,0.127249116285809,0.0284491008827068,-0.107262254947512,-0.159973794536698,-0.0919928477984923,0.0269684913463161,0.125059806443268,0.152848276854739,0.102817158977094,0.00977572971656744,-0.0986733731767041,-0.173666964453542,-0.204488456744829,-0.206347213788217,-0.212547805252883,-0.225434142370003,-0.231594101298819,-0.233145446219212,-0.233031174698681,-0.23369238297488,-0.231055343016785,-0.223079439283049,-0.197736708541955,-0.162958971654279,-0.0835793238881021,0.0323896053503584,0.118627337692378,0.142957609502489,0.116006048215519,0.0324838084420523,-0.0664181084390959,-0.0557759251468728,0.0174740141900933,0.12000073347935,0.19872281774385,0.202011296297307,0.115791114151178,-0.0191292270306368,-0.155630851757824,-0.235131279204028,-0.24807540016135,-0.224157986361758,-0.217235756250769,-0.228224070125317,-0.233907271417839,-0.230833131136506,-0.231485047556858,-0.235062180098018,-0.232710938345684,-0.223435523143708,-0.206116993556437,-0.181567247146967,-0.104700518784679,0.0152363485501513,0.0884919468281831,0.132827375593339,0.154283612033285,0.12615687385548,0.0940639366622745,0.101480640474322,0.154321588846711,0.224385499634821,0.265615399148341,0.212003549331515,0.100383570280687,-0.0786582678215874,-0.223869013769585,-0.290036902763798,-0.279964055751537,-0.245916499503712,-0.223732266747071,-0.229074441094749,-0.231301792639113,-0.231468717456132,-0.232695250173074,-0.234241987175316,-0.233428914910905,-0.225292948540331,-0.226807620033837,-0.210142120547613,-0.128473798729379,-0.0215266548585493,0.0665256766929024,0.129120011191826,0.193547924725566,0.235063106951199,0.22497520446498,0.225064708923699,0.242868979741599,0.288235681980788,0.288377221027017,0.207624699590049,0.0391232083271798,-0.144712718528147,-0.272319576854789,-0.30290133933713,-0.294726127827627,-0.259407769608383,-0.229600890330061,-0.233228493983362,-0.230765670762601,-0.233271842069451,-0.232673392356702,-0.231391116547498,-0.229707749565697,-0.235446899303543,-0.254237241858891,-0.255287788602787,-0.191164627454788,-0.0789660459169268,0.0270640054996308,0.117755857354633,0.209738964068712,0.268103300349723,0.258712877386497,0.244198017338132,0.238029302957514,0.276866480962473,0.264543567889664,0.141556239912325,-0.0282203105341131,-0.17748869364395,-0.278566364072559,-0.304631032571501,-0.300480125576768,-0.259149412919808,-0.232504758254519,-0.232346060688683,-0.231376105317129,-0.233383576649744,-0.231319502479103,-0.231976093912409,-0.228991193354887,-0.241809170672645,-0.285927363053198,-0.320266609839161,-0.265443860734592,-0.146288675614282,-0.0189127187723104,0.0867071193714346,0.181833034063733,0.224804389464729,0.19932923412267,0.168042723176192,0.168757400560991,0.217386588061126,0.184665626526555,0.0630648000981824,-0.0776600997622457,-0.176625963028437,-0.251867688749724,-0.288320952263177,-0.285400652570629,-0.255042736838876,-0.231172817201224,-0.232315663011933,-0.231516779593484,-0.232384639968458,-0.234697262355667,-0.230719919892689,-0.225251148005775,-0.243797082176017,-0.299489007325274,-0.343016803670735,-0.316925871467837,-0.20981764757235,-0.0688013640841987,0.0521815968412626,0.146211451345998,0.145051363576175,0.089414084203374,0.0535187409827335,0.0854017880759568,0.146576419994594,0.137602510676434,0.0164769785878335,-0.0844059402294903,-0.147742167193341,-0.210032814013547,-0.25403742875425,-0.263563510982586,-0.249773139776234,-0.233854927396112,-0.233045293047706,-0.234084427794876,-0.232593496339489,-0.234467498062605,-0.233033446812038,-0.226327575925403,-0.240284084587266,-0.303296329181056,-0.336029837925267,-0.314644314506963,-0.223516654551954,-0.0697721439948354,0.0585761049262384,0.107147478195333,0.0705680218597157,-0.0096137845309903,-0.030381982422835,0.0351366475127959,0.104371835343261,0.0963083155844378,0.0176844933207835,-0.055842803403029,-0.111590060188558,-0.16398865976611,-0.215975367123647,-0.237729646818105,-0.238508198569808,-0.2304442650678,-0.230937192314584,-0.230599633793013,-0.230984725660397,-0.231618630893288,-0.232915700008766,-0.225283974860084,-0.234485698133799,-0.286132775410051,-0.307245112597641,-0.264458266176028,-0.171016235814021,-0.0457156567572607,0.0597244022631153,0.0719564161104341,-0.00362234904882862,-0.104377900381508,-0.0798492963069048,0.00702463194866087,0.0826692779409302,0.0730453446763502,0.0269823522811922,-0.0203517888964449,-0.0757816772401223,-0.141454958621411,-0.189069466922504,-0.216733116562337,-0.227378946967001,-0.227189303284098,-0.230395950677902,-0.232612543631292,-0.232187075814395,-0.234347770209357,-0.232291794219946,-0.22022824557577,-0.230634391415185,-0.267696213955217,-0.272888457412863,-0.20361823321178,-0.104215078660782,-0.0120997719178928,0.0417854207653744,0.00806807706456935,-0.0936092873141114,-0.147321783573355,-0.100438613343101,-0.00425170832361938,0.0825037743936456,0.0902894983571993,0.0613629033598634,0.0100767248995675,-0.054445791685706,-0.120212533141951,-0.164078317809501,-0.205170760798088,-0.225891875376642,-0.231710347569663,-0.233791430184114,-0.232791333708942,-0.232836218532682,-0.231565571088117,-0.229193885991176,-0.218324635868795,-0.219792968516898,-0.234730026985635,-0.213603318894478,-0.142667740636343,-0.0818248619396081,-0.0127955730642084,0.00695557464621853,-0.0515497114337674,-0.102619774003988,-0.109720592775014,-0.0525042254579723,0.0331736138963759,0.102771157907759,0.135996021933198,0.0890406071614395,0.0335153318813117,-0.0532708676754785,-0.114906586010756,-0.160536801602473,-0.203262151740675,-0.226216007492882,-0.233383685667834,-0.232257203813723,-0.23158353194995,-0.234794994592512,-0.230883374436447,-0.230060430119234,-0.219119322959784,-0.207661695258667,-0.203062355047928,-0.165336285799104,-0.0909914418048944,-0.0427354020001645,0.00832265943264981,0.0216602952434094,-0.00982710536973555,-0.0137586521612616,0.00714951375839656,0.0532107791971448,0.104555613487055,0.156212163647646,0.158465210394041,0.0920543895865042,0.0198078845799138,-0.0718114921115583,-0.134588252697997,-0.181116097152402,-0.214552953063191,-0.230464683183496,-0.233414386888482,-0.231842699544745,-0.231886264144773,-0.232688901234717,-0.234208905289232,-0.227695295332221,-0.224581568689492,-0.204429646490212,-0.178642928475756,-0.135542081124357,-0.0687533838547572,0.00295246188589649,0.0549030257083647,0.0874521974634889,0.110189190788992,0.135111892754148,0.140615365291967,0.143686295496689,0.157029688658139,0.161909591771482,0.123531543055079,0.0677599460251849,-0.0320248606275873,-0.105137464955348,-0.155839742188326,-0.197954615224411,-0.22335414778793,-0.232099142273458,-0.233371127196587,-0.233336825783762,-0.234483166774983,-0.231107841538616,-0.23420488040403,-0.230994408736141,-0.229443347066935,-0.216408627320359,-0.189301158539072,-0.133931954613363,-0.0717690440284842,0.00138525022067723,0.0665161593636919,0.119575468251885,0.18566637195515,0.220589990566216,0.221971909932763,0.185888701191067,0.161152812825284,0.1306658549883,0.0720454519254213,-0.0084158225817192,-0.0987309427016276,-0.14676222049253,-0.190822235314992,-0.216643115778126,-0.226904148765709,-0.233486621346786,-0.233771402895751,-0.232419230070382,-0.23278313103865,-0.231626207128075,-0.231659967733656,-0.233379295873439,-0.230556974588817,-0.22366735320033,-0.210416392723956,-0.175626312262876,-0.130325989013737,-0.0644577603464546,0.000146514943798939,0.0701064946272859,0.139328791807867,0.173438249381765,0.170431547991792,0.131484175306386,0.0902286276117397,0.038380886250812,-0.0258433188143602,-0.0861222501844531,-0.146162240054646,-0.180135230975888,-0.203797744973499,-0.218588148448331,-0.229271729194813,-0.230094899925063,-0.234600001548313,-0.234328649540186,-0.231574006159999,-0.233700883546894,-0.234436575981782,-0.234665608206414,-0.233335159773401,-0.232178713042124,-0.227845370055183,-0.221936011303762,-0.216551517287657,-0.191853654202591,-0.168707409202488,-0.122891703907873,-0.0843979048780153,-0.0591821305182097,-0.0586386015087973,-0.0772475615388094,-0.0902378090294578,-0.105838132416812,-0.122965940929124,-0.154103449684649,-0.178950906755572,-0.198140041950732,-0.217396090339161,-0.226886786225353,-0.232505853323607,-0.232705458536756,-0.231311020002145,-0.232168600349529,-0.232412897093047,-0.231413090241118,-0.233589642620389,-0.233145768686559,-0.232590115096751,-0.233021522736985,-0.232644653650886,-0.233083260368851,-0.234094841312529,-0.229190582136944,-0.228705408551723,-0.214185630471216,-0.201003133761901,-0.194028299477596,-0.189732997126201,-0.192276544370659,-0.198993672713706,-0.198907454914421,-0.204847370237088,-0.210826649673576,-0.217922781668059,-0.223680523604203,-0.228271686352987,-0.233828946368434,-0.233535677852963,-0.2310418572498,-0.231614040353762,-0.231715247368226,-0.230962435438872,-0.23337917586727,-0.233775565340279,-0.231937128658055,-0.231028650689787,-0.232201921343987,-0.233128160306088,-0.234783299502339,-0.232125342066104,-0.231769732576017,-0.230832379467263,-0.233449203684562,-0.234782419179356,-0.235534954560336,-0.231040991269683,-0.233547759307621,-0.234228599897083,-0.229252948748633,-0.231735081169659,-0.23050531841968,-0.2330741677108,-0.232707367429367,-0.23334186428241,-0.234200623025827,-0.233362186276574,-0.234361558096132,-0.23426357947411,-0.230683946581939,-0.23100062942523,0.220963557678914,0.235046972455586,0.235045970218652,0.236483194121795,0.238618035586559,0.235565144576159,0.235956716265488,0.237580450143645,0.238507180902383,0.23551672048883,0.236031673385283,0.237699143402961,0.239258425250242,0.239383630560539,0.239158850641592,0.235128816824936,0.238248716011371,0.235393844146407,0.237904256569753,0.239092744869417,0.23806226330648,0.236946745026468,0.235372107222647,0.23808229950129,0.238032060915305,0.236416945566784,0.236258600838699,0.235865788676994,0.235893429400619,0.235070724818782,0.235034813925767,0.236885396418203,0.235819822079684,0.236636716702193,0.236454207116646,0.235613218539946,0.235156908309821,0.238236430353575,0.234592919169502,0.236362656420116,0.235627742364099,0.236415206427021,0.235508059905789,0.233924681297955,0.237787322989138,0.237714968509902,0.23864858972953,0.240056666526583,0.241130862307608,0.238882747221351,0.239385008340473,0.235519521528394,0.237289953115229,0.237160466387958,0.2383082131905,0.238527500712333,0.238159547557704,0.238464000532739,0.238913928387425,0.238528202770038,0.23559174238562,0.235898016727323,0.238129835429497,0.238022785118021,0.234726640737546,0.238859120563483,0.236514833664198,0.235755236782984,0.23267877029161,0.232366339694951,0.230971163833497,0.229923917663373,0.243254672923255,0.243180267273008,0.241039161014901,0.246132298248336,0.239938266301511,0.240725951409233,0.235078047894929,0.237259544401904,0.237067096343164,0.237818984385586,0.237970182070159,0.235556778199051,0.239222955137289,0.237648656670446,0.239448120600037,0.238856234766073,0.239559482425644,0.238619101123575,0.237986295399779,0.235248681305338,0.237665025732372,0.23885505447333,0.236020491352958,0.235948477593023,0.236713492202549,0.234274785542771,0.238829207020762,0.253933117109873,0.264925067653262,0.268448937670209,0.273386192873486,0.268344226443222,0.265465451643194,0.25860676274119,0.250486646985181,0.245265997817658,0.238514508385462,0.237168325280967,0.237734344235322,0.235094494886256,0.235766871536439,0.236228167244695,0.235290145868713,0.238267126863843,0.239382706345606,0.238144572514469,0.237830982914629,0.233647871656455,0.231633187141148,0.220357805945995,0.201872775518692,0.189466289629946,0.177997494914959,0.175200268644262,0.180988712119812,0.199860042145185,0.209355826410159,0.223670794682929,0.243584010317245,0.259739238740565,0.276002178101919,0.271984129577539,0.259333267355019,0.245547122344827,0.239410353285518,0.233891680570487,0.236994056455649,0.236112064732691,0.23537211086652,0.237649668595226,0.239244080455142,0.236977112840065,0.237926906633841,0.234733678870913,0.224792484640102,0.20780680617986,0.185684087004538,0.14315546410271,0.108119907717325,0.0685232990420934,0.0164211306336384,-0.00258417637224688,-0.00412643200803677,-0.0102576837260384,-0.0195203212912066,-0.00992923112538783,0.0104095282945021,0.0585638670027822,0.12879198935247,0.170659347488077,0.199235439197901,0.226843635059575,0.233666937174074,0.235235808096694,0.235125780526938,0.237139191892164,0.235406005976049,0.236461287390663,0.235465443327998,0.239003257543302,0.234947845404568,0.21935465556452,0.204864394867799,0.172589950239547,0.11939232072579,0.0628644434656439,0.00123275384088202,-0.0477233665103242,-0.0977238331358587,-0.133386677270245,-0.162251330389645,-0.169269320675178,-0.174450931999738,-0.171900857883145,-0.150656690099188,-0.0878892709858557,0.00069778587916159,0.0835361303255577,0.145129287968379,0.202732084518728,0.229138898288437,0.23059491255259,0.227218253965572,0.234196159103911,0.237916007335509,0.239023518300908,0.235085229107692,0.236778821104526,0.225151483164814,0.203537440780981,0.172417220412769,0.127884837394853,0.0568353468182894,-0.0166447354915508,-0.0659494827491899,-0.125102939205568,-0.195178050944068,-0.227833190720297,-0.225170101515868,-0.21225508794843,-0.21223251181073,-0.218596413567815,-0.204540199522307,-0.149887260327538,-0.0789644917996268,0.0202102524248903,0.0852249745107154,0.168620757163856,0.215072649083735,0.22106520629667,0.225751519338974,0.231416680353995,0.239074151463044,0.237665794164123,0.237102810484299,0.23127523917068,0.216446950806375,0.190509815716157,0.15575063872731,0.100988099121966,0.0311687849002589,-0.0448010481501087,-0.116458275734529,-0.188902265391183,-0.228638335805958,-0.217914271133557,-0.157704605795483,-0.106251665661106,-0.0998088453840801,-0.138454841921034,-0.173062521517831,-0.170297313202153,-0.113625098667242,-0.0266979155790232,0.0502017193112823,0.134844102173796,0.200809286733422,0.212873728340101,0.225318862986104,0.2325124578909,0.237550242058591,0.238429940894999,0.240260368163343,0.23079655326991,0.219603418205175,0.191296254020016,0.147309377731158,0.0985578250598806,0.0366276179238468,-0.0640471899328228,-0.13766861530378,-0.196307728756344,-0.194874238543583,-0.126535922222816,-0.00877856235715261,0.0540403245747735,0.018304279655544,-0.0756906795861627,-0.15970296662248,-0.193015674067001,-0.140963527892189,-0.0567672741152577,0.0431126699834988,0.130339479335842,0.182830700138874,0.203448892370697,0.227481425515569,0.230729190931481,0.239342187988593,0.23691926754466,0.239306100733322,0.234658688004324,0.225145990023563,0.203962529728604,0.168732146523615,0.114363178426614,0.0302018117046205,-0.062425117314673,-0.13671255314395,-0.159301254175437,-0.109621739383408,-0.0206653794351788,0.0967585109296016,0.11795893712902,0.0302874576364839,-0.10049646542717,-0.199588374724871,-0.223326785674804,-0.170158712484327,-0.0654725572720552,0.0532017986248363,0.15035700480286,0.200077968486021,0.208736929377722,0.222288742544404,0.231348593982124,0.236251638476514,0.237000054822484,0.236623337590528,0.234458183840696,0.23090679191757,0.218257561452984,0.175399242704938,0.120099135815232,0.0333039745541696,-0.0667032084412998,-0.12855588620626,-0.127620124653758,-0.0890701448765121,-0.0118123430187491,0.0665316730721171,0.0380172850943151,-0.0502689049600847,-0.159464850846616,-0.250161372398791,-0.257253208853631,-0.170539190727319,-0.0351840575981706,0.115420973526496,0.217279588060773,0.239001998128266,0.228165782223951,0.225539154536404,0.232373144404727,0.237966938648567,0.238104537628492,0.239310917249463,0.23664711822336,0.230111138756238,0.222372689735743,0.191478864665086,0.13295335454307,0.0442256934174096,-0.0532297042484158,-0.10404320380115,-0.114624705174877,-0.11942016579243,-0.0959900373224624,-0.072296278521528,-0.0951686130609413,-0.15176271178562,-0.238102464648221,-0.294288785412831,-0.25261827417157,-0.147856287880332,0.0301751582403403,0.195072022147476,0.27637949730906,0.269850575927216,0.244978056627117,0.230920669420915,0.237206589699378,0.237489753975048,0.235951130606001,0.238614619315712,0.235060939220827,0.236225336681388,0.220409957627465,0.202283414610553,0.157565176204075,0.0609442553511022,-0.0309635787794048,-0.0912487454005411,-0.116798089983299,-0.160652053054009,-0.200939395761872,-0.195415193860655,-0.201513458746592,-0.226255471772971,-0.287274245128816,-0.305009553585397,-0.241270088808278,-0.0860834831279553,0.110522248558029,0.245791551503942,0.293291248078578,0.288901012701607,0.261199886206314,0.233176081901244,0.235860933873825,0.2377526394478,0.235779349146572,0.236073459675249,0.234773801447446,0.234135322117037,0.227807626565238,0.223760503750117,0.195580956467354,0.112273449493352,0.0177436922998198,-0.0596409722058887,-0.116108729278275,-0.184323737982352,-0.237328271944233,-0.226164670434758,-0.216791882700066,-0.22567748845993,-0.28131100593974,-0.281674027209865,-0.178303473111842,-0.0174032886866361,0.148198790899043,0.263721429696389,0.29606634961598,0.294495831265583,0.263087259846776,0.237500702097369,0.239564361729622,0.236823953300858,0.236580853421539,0.236033873753856,0.23384777514407,0.230954425141951,0.23376061161594,0.260908800662553,0.256990093139424,0.189554431826696,0.0840257835449034,-0.00414591884574759,-0.0856645190437581,-0.160399661933249,-0.198625421817735,-0.172423696746005,-0.148576355010714,-0.166840556836057,-0.236526479977619,-0.215350695565142,-0.104006955980825,0.035495323886222,0.157131541806824,0.237742199211121,0.285162441628813,0.285804953215191,0.261041713275701,0.239592312381529,0.23526074685025,0.236830697278957,0.237182352493451,0.2377202137438,0.235650057587442,0.228804663690816,0.239539097685661,0.283324347247387,0.297140494821751,0.268467189541287,0.179688630446247,0.0637292424022426,-0.0379351302596637,-0.11508973400978,-0.116147997463947,-0.0676841768815276,-0.0405814436939151,-0.0931978869491249,-0.179423485975101,-0.172400553287038,-0.0477140151282012,0.0687573216197516,0.143881280894022,0.204322187290167,0.261051654240643,0.270298991451607,0.25652614213573,0.241605246958253,0.237533971624867,0.238893240167698,0.235190839090915,0.237340426589365,0.237068208060716,0.233466360846415,0.244539038754821,0.291100898834025,0.316639729207004,0.305628883707664,0.232732281396885,0.109836673590458,-0.00333159000972377,-0.0553954564238619,-0.0287511866829918,0.0368087247168338,0.0340247943475574,-0.057990743683269,-0.140373486069504,-0.11929462442474,-0.0233011109736841,0.0724172519909483,0.127848273962076,0.183934484703163,0.238493752022708,0.255173543903343,0.256707943367832,0.240121658891448,0.235983412813639,0.237793270943084,0.237600119162162,0.237577912582033,0.235341940105355,0.229371951041505,0.242243941099346,0.284366619578522,0.308622224237693,0.283503604141656,0.217784616186644,0.113204606143841,0.0152482621858959,0.000371888116389413,0.0532081581348812,0.119880324382489,0.0727765245637488,-0.0360108216566632,-0.10505144829345,-0.0751302220370311,-0.00633453380609577,0.0585511909459257,0.117859217879516,0.175510596974817,0.223270391778256,0.248390267041917,0.24850902923444,0.240808457921021,0.233889138265496,0.235859181132386,0.236308999714983,0.236406833040296,0.234043192116053,0.224556242427121,0.239133763984651,0.272649660216771,0.286687639136825,0.241102864432098,0.16075865807241,0.0863853861648969,0.039101140315102,0.0626946520252447,0.13470956296048,0.158603832664494,0.0856553679422657,-0.020939335752954,-0.0894056519248306,-0.0708236744272887,-0.0187689086646812,0.0331724657118234,0.0956826495263745,0.160302758701836,0.200708619044572,0.233841914819093,0.245004236460079,0.242550490940572,0.238285361303436,0.237409868162854,0.235493191183757,0.236323074690871,0.234300067013725,0.219717590189467,0.224929970890599,0.240240150952442,0.230376538565099,0.175650591460052,0.131432695291903,0.0775304262322014,0.0578580999489428,0.111959334671336,0.139423829797111,0.119806588182376,0.0452144804360081,-0.0453148111191041,-0.101152252881394,-0.108533430217205,-0.0562406249737813,0.00405367718874205,0.0848704434022854,0.151330696477087,0.190841998774739,0.233839798125519,0.243078156566798,0.239756958391929,0.23598758187479,0.239440044814402,0.238433071961224,0.237998995431104,0.232943385795376,0.225624586235861,0.209947916798632,0.211474730627524,0.177818070760665,0.114943948602467,0.0778998182358305,0.0336019486467241,0.0168012575796181,0.0429169690438993,0.0317218830049744,-0.00143777327838928,-0.0597341481347248,-0.11472240911169,-0.153256495462862,-0.143686078481814,-0.0700241084744647,-0.00235454389035388,0.0949800488334092,0.163306729820124,0.210055685222568,0.237866189300732,0.239894971429771,0.237234092680729,0.235543324145256,0.236079942010291,0.236884621610867,0.23553451170907,0.23154991294772,0.227462552511242,0.207263037436587,0.182781671232747,0.143902679132478,0.0846956478125607,0.0207561872712655,-0.0404618721417828,-0.0826116456597941,-0.109680464109259,-0.141076476485924,-0.155707889742677,-0.164285823234887,-0.181067313334454,-0.175581411217792,-0.130277072809921,-0.0624992012387246,0.0449084247721874,0.118058113959465,0.179617854622809,0.21503964662755,0.236819351899141,0.243370800250223,0.239585232738144,0.236342569872943,0.237816297503405,0.237410036856077,0.239140737643348,0.235401673193499,0.229453726237457,0.215147995759572,0.187267243597983,0.141349451070561,0.0789040143641765,0.00775850482235284,-0.0661533655409112,-0.127974235747669,-0.205270279495644,-0.241331522270674,-0.243447541009452,-0.214980763037663,-0.190080816411626,-0.153810560347891,-0.0885156453395191,0.00203474230795599,0.0995348108657856,0.149828673971342,0.197499649535761,0.229069728124142,0.234922086659653,0.236677881885419,0.236413988474448,0.235383805308567,0.238347594408769,0.23885572143775,0.237539780688633,0.23637725431085,0.234365329307989,0.22696392201243,0.209518804207995,0.178035010706542,0.129888302277659,0.0658517036471218,-0.00681165809847458,-0.0903016676900544,-0.170783747442743,-0.20222875282532,-0.192232845918985,-0.157582398116596,-0.117837103390836,-0.0620695436221412,0.00890593128205618,0.0761479076789151,0.139211044884873,0.1787154481513,0.204762551598073,0.22611485751109,0.232422336743742,0.238891630643451,0.236472615259869,0.237375844858029,0.236634904101602,0.239188584440138,0.236719339032299,0.236223419986465,0.235760449884882,0.23400458161075,0.230907987380063,0.22414058213894,0.211636473517938,0.185422388672076,0.152364912702164,0.0870825570660452,0.0347094120609597,0.00657585909460205,0.0168903452183654,0.0376821119935605,0.0548517607196381,0.080272882617089,0.0991616222663772,0.140974583350764,0.174683297640465,0.198121251967263,0.222323787171871,0.232213513388372,0.236527833449871,0.237993851939137,0.23775456634195,0.235201259594035,0.238972342057463,0.236073831971525,0.239117609365965,0.237258830473537,0.235159066825135,0.235837729381405,0.235041100863765,0.235250535156629,0.226460252177409,0.221582629294449,0.21464234416965,0.186441642677361,0.161496917963454,0.15095435640812,0.15037436934701,0.164624868114357,0.177106648782712,0.182576175675322,0.192622006961416,0.207724799320497,0.222095004672696,0.227766819586212,0.229652999978291,0.235943929372629,0.237996705763278,0.235521056352276,0.238236396377503,0.235490749048004,0.238478418003667,0.237166698773214,0.238764718633418,0.237655584102396,0.238098014549086,0.239780785599532,0.238372324311062,0.237476600442618,0.236926225821501,0.236999535372465,0.235216983436068,0.235132655927764,0.235586065356181,0.236508209084669,0.231985235071717,0.233715712799403,0.232633508671685,0.237264046781226,0.234552779418934,0.235107534935078,0.237443988610209,0.236068356824602,0.23854624498647,0.235078557768655,0.236194386813852,0.238768655432051,0.237979196992749,0.236298676998729,0.239438436893839,-0.230074459767429,0.0093897410056012,0.010073713690003,0.0113413335458272,0.0117250929582461,0.0110458285993598,0.00804329074399673,0.00895141470411921,0.0080816417389041,0.00774248813879229,0.0110763534187892,0.0114923773315847,0.0107622324961248,0.0104520280931478,0.0106748197144736,0.0110307576529606,0.0117526837571039,0.0104679259714075,0.00790664318729941,0.0101758982202627,0.00746333624919268,0.010738411031019,0.00903269385750313,0.0102355968339781,0.0118056708388706,0.00860233202276254,0.0114025482566686,0.0111548015748635,0.00789515711154429,0.00808710779869596,0.00746000447856572,0.0113855957271059,0.00873060187260136,0.00759593407393475,0.011054391684924,0.00761978761891011,0.0113261575627422,0.00964723103938155,0.0131784362628701,0.0109022199294195,0.0107793984967673,0.00844651173676875,0.0101998679259873,0.00835808194352864,0.00623824374997745,0.00750811597736703,0.00879114159286813,0.0123422067767856,0.00842647399756221,0.00958648186810784,0.0100333783180946,0.00784731201769967,0.00972010589451118,0.0110138379336882,0.00790378580843014,0.0111177356604592,0.00793365182443198,0.00974793237617895,0.0116729473694301,0.0113580450355437,0.0102127951636784,0.0110571942421222,0.00969398733178573,0.00896288504628525,0.0111340871030282,0.00968151405490779,0.0129905986714164,0.011754439411475,0.0116149258807252,0.0138951020682793,0.00638080338406158,0.000584103300462956,0.0100699866290944,0.0100809450597518,0.00493355381209534,0.00166407834984442,-0.00252398671734025,-0.00271603605444934,0.0022532123359103,0.0059202434365588,0.0100876573195582,0.0119409168360383,0.0112683833367752,0.00892753190425331,0.00983312571499037,0.00986730161821094,0.00778028661882309,0.010782798612151,0.00893701733134687,0.0110047036742372,0.00823824170536451,0.0093453032847441,0.00788806224157977,0.00795910613830576,0.00988055360260716,0.00948231713884473,0.00730142379031806,0.00458078273288868,-0.00320042108663965,1.23488184924982E-05,0.00846578152078442,0.0177250415292576,0.0230062924976631,0.0157829639069403,0.00879498554153055,0.00515275117387911,0.00108141176187684,0.00333168099790759,0.00623147493584913,0.00887252839165623,0.0101510449439066,0.0108869662076305,0.00907804825839693,0.0108577091918045,0.0083729572712672,0.00940675272392746,0.0107806487447717,0.0113538867391617,0.00983638139947503,0.00613547384839488,0.00462927696444094,-0.00317211721142899,-0.00605097388595868,-0.00273368345637421,-0.00337394079135284,0.000200791758980217,-0.00193173294854696,0.00138021896250059,0.00693282295094425,0.0157045995370981,0.0124323786428007,0.00975779590782636,0.0182737479633657,0.0121735236595828,0.00835313760027425,0.0058789729416582,0.00473512757552842,0.00392228291234768,0.00609251528879646,0.00791979609549464,0.0103695750159112,0.00844697708132339,0.00906350760048228,0.00828854776544575,0.00978887071619037,0.00893581209654108,0.00551806529245763,0.00769505457754398,0.000533074287496423,-0.00771255557863626,-0.0064382710499594,-0.00981574020828243,-0.0150608482437533,-0.0111847348902693,0.00872149155095541,0.00724269362570922,0.0097860301546992,0.0168575354542637,0.00233937204412249,0.00979543380065721,0.013036100976401,0.0147337753928757,0.0179454992677673,0.0142800172069742,0.0158236007420027,0.0165491557478934,0.00926277410417497,0.0129570580523255,0.00917692947845754,0.00964474938968411,0.0116162150176715,0.0107655400451411,0.00999322325628481,0.00852287842050228,0.0117722875193211,0.0135901120868906,0.0155441635095174,-0.00302989457756195,-0.0104283563575103,-0.00596396265457039,-0.00525293682886444,-0.00142632484039353,-0.0139708248922201,-0.0135955393830481,-0.0032862040592935,-0.0160590281849934,-0.0149945563214835,-0.00483580547193995,0.0111837415247935,0.0126822393537594,0.0112974040504949,0.0226989475562128,0.0254661091577971,0.0250135991396119,0.0155146666152561,0.0118856376750117,0.0112448026123389,0.00750951704493352,0.00822516962292934,0.00881290426895325,0.0132334797466316,0.0125944575852832,0.0133320783581366,0.0197875965543646,0.0152980980790041,0.00554013835529819,0.00421293170417238,-0.00172298221253659,0.000324341297166515,-0.0031953098249726,-0.0142910708324962,-0.024103075866166,-0.0276616611529275,-0.0330927632366916,-0.0211473122355749,1.71545132214514E-05,0.0017602792743051,0.0124264422911284,0.00920143705181928,0.018800002419517,0.0250553802019027,0.027185821901323,0.0134118643173669,0.00938802712803373,0.00858988409510155,0.00877959743488173,0.00824737433186482,0.0107999862555666,0.0132598455094489,0.00675195523337631,0.00888841321328061,0.0143325848284623,0.028703131434587,0.0162099005992235,0.0130095109937302,0.00295892953826605,-0.00361288561710803,-0.00209239357345117,0.00204244096785123,-0.00468188522925932,-0.0100633027458429,-0.0150869812999378,0.00388301869349956,0.0147167442155724,0.0139398416239148,0.0153648332444606,0.00557549948003569,0.0129235579130534,0.0170778200313797,0.020511178616778,0.0135772031492598,0.0107121959076153,0.0124414090409977,0.00917469752407921,0.0126124763871182,0.0145074129485023,0.0110994989669076,0.00637815056005885,0.00504934913858736,0.0171992482539992,0.025364259781093,0.016356448958106,0.0209643558560438,0.00122383519212393,-0.00192102996662167,0.0103615424373238,0.0285200418195133,0.0220204854280557,0.0167271576858823,0.0164272097160189,0.0131815672271542,0.0104113261281412,0.0165286052472404,0.0150146433097066,0.00768159315460884,0.00613846486338765,0.000568843914970095,0.00693719947629821,0.0108603854762168,0.0104518385771672,0.00899134744765641,0.00999051675854015,0.0108320932155101,0.011869003581713,0.00911061392218481,0.0125912802002902,0.010865355448893,0.0149160114680694,0.0083519174160386,0.00778819585590557,0.00542183959605438,0.0108051822793265,0.00787882145130512,0.021676014191519,0.0259407380366982,0.0227383404159836,0.013498462189135,0.010562147048987,0.00149734238704416,0.00770679637241184,0.0127592095997409,0.00980707168284868,0.00814676364865615,-0.000785650977256815,-0.00486906286691373,-0.00403301689199754,0.00474785952187677,0.0103215915912361,0.0106049800748529,0.0107785072200064,0.0110256850202676,0.0104873158788176,0.0119759671452736,0.021452356619941,0.00491403490875149,0.00388403965186713,0.00414437437265709,0.00688682838027557,0.0126525992934803,0.0061281233085371,0.00964768352090203,0.0184103153566093,0.014258846066283,0.00346301112904086,-0.00164465322948873,0.00116543550566242,0.00589196527090685,-0.00149382547696343,0.00980946736096961,0.00754380298350683,0.00740225414185815,0.00145487884965424,0.00222412471880125,0.000435116993271056,0.00392408733980891,0.00938643567990604,0.00867346730414719,0.0119220368548641,0.0109865518680526,0.0105649669536927,0.0124501958429379,0.0166656530290738,0.00659920942060306,0.00967634454924793,0.00137322164792519,0.0125159453246045,0.0142659777052238,0.0187347121276968,0.0131217166247002,0.0154972669434774,-0.000151917716669412,-0.00285264877160665,-0.0177232483093655,-0.000114144181718841,-0.00399627844883765,0.000563265287815672,0.00542207238879613,0.012702717408899,0.015460225450555,0.0149504898331174,0.0157385990191814,0.000576271162906776,0.00398570489072784,0.010313937256421,0.0087858589515763,0.00882403833363551,0.0108427234494764,0.00842135939031682,0.013068320565289,0.0100233860241914,0.00513151358264763,0.00608703208401374,-6.47882179061194E-05,0.0169601415257182,0.0183938503367513,0.0206662231960953,0.00547375136954789,-0.00185193622400899,-0.00613462909293015,-0.00701201182628434,-0.0149454036768456,-0.00231653873933273,-0.00791066103907313,-0.00219335843946257,-0.00140360384100869,0.0124285886050641,0.0238772412526376,0.0250617530774726,0.0190323839889695,0.00866608114429048,0.00302036010543297,0.00788122418672635,0.0084859265143406,0.0110942307819239,0.00972082797135931,0.0114229795688506,0.0146716372053075,0.0052436242109872,0.00401307391634867,0.00922560146311331,0.0196166869044844,0.0257941716877173,0.0218561667868023,0.0142208711684474,0.0112077036041458,0.000454893298532813,0.00363158178303077,0.00199609496558908,-0.00248024773676925,-0.00475380394753108,-0.0158760083762069,0.0110507583516223,0.0149107584785706,0.0179350919094108,0.0358170664292589,0.0287289797834438,0.0206546456006475,0.0149286333692317,0.00873427862612412,0.00977428201626719,0.00938129998213669,0.0116004178732538,0.0112611704320019,0.0075812200155634,0.0134156703628896,0.00566203662903476,0.0166760113297038,0.0266727385456867,0.0253067780106064,0.0191728664730272,0.0168334188299389,0.013767587676076,0.0102693395740562,0.000841844156391256,0.00619791808131598,-0.00229800786654954,0.00222435639367274,-0.00118744886590597,0.0144069182463896,0.0268527102914027,0.0309192635844863,0.0243676432891822,0.0283086047201865,0.0301502167413444,0.0257531483403078,0.0161983661926558,0.0113618050436212,0.00952349246024482,0.0118309822591092,0.00915580143978968,0.00910202442145443,0.00748339533251881,0.00886806429422368,0.000897577943102836,0.0107546330649288,0.0257717389109323,0.0263181542075296,0.0167677454272152,0.00353102353986317,0.000462808448676106,-0.00093639925335143,-0.00452098035223824,0.00616424420413934,0.0131018523928596,0.00962581656344829,-4.51676727678191E-05,0.0163780136211673,0.037689441341315,0.0326731656656732,0.0195629424670881,0.0158475782677705,0.0190586233617544,0.0137464094254875,0.0127840633056464,0.0111236794681801,0.00859480230183995,0.0113333861647566,0.0114943855851218,0.011613458877163,0.00769069327583255,0.00719561090168648,0.0069960830716695,0.00860393275045956,0.0160442749930243,0.00700482054198644,0.00675716688973457,-0.00387698665364356,-0.00242280293755682,-0.0117048603067408,-0.00476048075852164,0.00857966586502985,0.0238024468081037,0.0183214132730058,0.0171782548196266,0.0177462020732836,0.0228270950206295,0.0220938510904246,0.019903325905299,0.00922416444118367,0.00965882086908886,0.0165888838395016,0.0107835230118168,0.0103604426816001,0.00902021957751175,0.00880671672678573,0.0103047958419674,0.0102615107485189,0.00999589654095518,0.00683028898411272,0.00861045770820258,0.00239197462264818,0.00749132896516821,-0.000695549646295736,0.0140322775993417,0.00772759301964124,0.003917966364532,-0.013245335761218,-0.00944694075167622,0.0142113970587651,0.0298693945185796,0.0240957801870681,0.0215446333811361,0.0135530617053115,0.0246626295032673,0.0123716562487925,0.0177225211807819,0.0057767149529032,0.00251863588013324,0.0131019064966926,0.0102164304729676,0.00900412976317552,0.00716230251274938,0.0107328809846844,0.0093810488382464,0.0113849437229345,0.00926554552530532,0.00447908079602107,0.0098428886616206,0.00535371425352143,0.000962905103560245,-0.00217430090095189,0.00809888049629821,0.0112392865156225,0.0112265018137474,0.00448558250417454,0.0110234432574404,0.0276903054960017,0.0339086585743066,0.0285313812304496,0.0208374320184624,0.00913547195079125,0.0134959402405327,0.0139543696023471,0.00479826173027414,0.00551994900529946,-0.00150195019496854,0.00961576499024755,0.0147957238013521,0.00854994045610268,0.00871244902258225,0.0106245148309831,0.0111434620801319,0.0103246818310779,0.00601418942342403,0.00305687170684171,0.00460003990817276,0.00389265463359759,0.000209547734706681,-0.00254345825610844,0.0053434650530418,0.00527512792526409,0.00243053626897579,0.0226316403448408,0.0226998362771422,0.0353919535521803,0.0420972215735192,0.0329662754157391,0.0250389988601454,0.00811806996490632,0.0108002416032524,0.0113451269380286,-0.000773712575296663,0.00661335570637147,0.00218241073416975,0.0121638507201184,0.0103266248377785,0.00998227989227097,0.00689144998230788,0.00989884614958065,0.00897232096037517,0.00754710628154697,0.00448862884318086,0.0074140395631868,-0.000185093481345711,-0.00392537196256436,-0.00339555816776858,-0.0167243024916271,-0.00609671180029665,-0.00213620458762184,0.00969509995533057,0.0216640410087128,0.0229584304968918,0.0199685338967272,0.0302349182561409,0.0287902707941706,0.0219515524731739,0.0168989362320397,0.0197383029880791,0.00341555319746912,-0.00475224754866025,-1.40602382801606E-05,0.00512290178707802,0.0098926224495311,0.00614888382225024,0.00978954890785971,0.0103405029400555,0.010381475528233,0.0104421975265343,0.00926706065689592,0.00654148532274973,0.0102198281174785,0.00399393615567024,0.000723773669308539,-0.00122125053971814,-0.00848043794260484,-0.0104864554623996,-0.00834776448890854,-0.00230494997821515,0.00792662779834581,0.00725438712907911,0.0175736786157543,0.0216749561307311,0.0288813921253123,0.0226144297803613,0.0268935156080688,0.00299070826110042,0.0088634748724651,0.00601439873176985,0.00312843782963118,0.0102874939650252,0.00758859311252866,0.0114625165337855,0.0129240840332037,0.00998142584163145,0.0105727374842566,0.0107490127875114,0.00890524585641432,0.00931793909318618,0.00872622009677888,0.00375036767275812,0.00634023402341125,0.00423526206241661,0.00945932537612265,0.00692784837506038,0.00734964240758268,0.0108364550492557,-0.00353242704976784,-0.00860567602505879,-0.0086038060992943,0.00178241175175027,0.0128471194368066,0.0108561816132538,0.0161383012513016,0.00988912299041073,0.00881157684731336,0.0156944476623969,0.012926429755624,0.0146761351780245,0.00752128365605794,0.00901619284525314,0.00931130762674345,0.0106015372956482,0.00875946011899021,0.00780441444498591,0.0111180176563291,0.00827485973261491,0.0073467137978947,0.00944034350407736,0.00835565954925649,0.00945146180854553,0.0103593858530451,0.0137203399008004,0.0159735820774126,0.0217790125384846,0.00243660000655011,0.00150496790381154,0.0106903752696645,0.00768418793360592,0.00101674326304386,0.00423447757417049,-0.000399497381388813,-0.00307946116857956,0.00203994921063762,0.00280673201695613,0.00811399668302424,0.00822457723302059,0.00605295533058376,0.00838927036689159,0.0102755036888538,0.00780936168555276,0.00967190185487448,0.00963211591360509,0.0076089285887153,0.0112277232696339,0.0110232340010072,0.0085194849535644,0.00604563887310452,1.76203976882891E-05,-0.0075770849607395,-0.00771541888890158,-0.00665113732116901,-0.00327189353851453,-0.00986406024683281,-0.00966856376858246,-0.0114767101375405,-0.00777129562246114,-0.0083287956926474,-0.00763330600247403,-0.0108744530284289,-0.0150179027761516,-0.00305035432289754,0.000173567293282457,0.004598564300406,0.00601109499261995,0.00732114513932498,0.00753687873357555,0.0099283021933767,0.0103262381109477,0.00887470419821683,0.0109890897118794,0.00828639065211507,0.0114658928515182,0.0116750202405052,0.0118378598690986,0.00814248239672996,0.0060776815997121,0.00370837285292734,0.00663216749079754,0.010851382482424,0.0110433810586782,0.00359681286775668,-0.00254606272475235,-0.00107519783820086,0.00425007078841168,0.000220309283969004,0.00189895815545129,-0.00269459333186273,1.75432985014849E-05,0.00747857572187972,0.00807289782834343,0.00816847439384293,0.00916263105432995,0.00962492027091294,0.0103261610803735,0.00898783259548766,0.0108675447267382,0.0110533007368582,0.0104351715398309,0.00781713150176352,0.01143235694185,0.0104726530594751,0.00823312495695671,0.0097382952276115,0.00974727882041373,0.00926799475325166,0.00688652397213197,0.00964503952468987,0.0087837729938915,0.00942002943750866,0.0123700071225194,0.00983906653973282,0.00940881964410873,0.00981845297902926,0.00763424330047542,0.00972523169058251,0.0114901421337878,0.0101192092520621,0.0091074078098473,0.0113149288765438,0.0117495072111546,0.00978690454241853,0.00972905681670993,0.00881278601203767,0.00748054653700445,0.00937873545507978,0.0055139223683656,0.255813023867671,0.252873815913357,0.253757039190246,0.255386782314262,0.25267721998743,0.252443834750201,0.25286531036848,0.253813311297775,0.25642309714106,0.253700300478684,0.255241913774289,0.25405286980248,0.254632112916943,0.255060241513152,0.253074155398445,0.255800975537754,0.255588696837308,0.255928477024153,0.253224300382035,0.255832876375058,0.256049060602875,0.253228646021802,0.254831437500014,0.255239977669853,0.253823039796248,0.256097242056807,0.255453527737411,0.254499564589002,0.255482241623873,0.256154307969047,0.256605443099005,0.254741748119592,0.254419469934111,0.253691585582901,0.252579746516105,0.253214773775615,0.25644463683072,0.255152542021081,0.252982784284385,0.25026635460747,0.25126032882449,0.247574532280339,0.249383330072535,0.25469706261928,0.25140835493123,0.253903781669183,0.256750671457455,0.257359797964451,0.257527788180197,0.254099261947441,0.25598071526006,0.253209677218415,0.253431011814162,0.255681639904331,0.255386069922648,0.254423640909723,0.254816986554217,0.253292122226109,0.256494048696716,0.254041076872891,0.252674979650444,0.253450380783114,0.255136821304036,0.254711145441017,0.251918139592002,0.250866092496236,0.243438600653644,0.235982561946446,0.232059468018892,0.225487656273998,0.217588876988919,0.225116642207668,0.231418232170835,0.23165150144038,0.236208033922998,0.24087323163205,0.24515521488359,0.249327083945363,0.251577475155144,0.254690971358339,0.256563251390226,0.253310440081748,0.255202639231386,0.256350995501041,0.256482441072791,0.254855575963571,0.25346182357266,0.25599569335035,0.256633997153947,0.257436886291389,0.253835530211379,0.254736729761696,0.251721833543115,0.24456317401163,0.234807707467842,0.228539156067418,0.216511913229465,0.211539065114574,0.211681082735338,0.217384376137923,0.220905354361804,0.228492577365879,0.231796614989369,0.244295112224181,0.248226779134704,0.255359172486768,0.254381756264268,0.257335095206426,0.254672569666229,0.253366403568348,0.255848670761866,0.256407213748791,0.253819158790436,0.256745107274505,0.252981090340884,0.254450762755693,0.255477070196268,0.256694441558185,0.251659467659397,0.249718889310543,0.238228912438586,0.208939670200143,0.187659453817526,0.167591008877021,0.149939200823505,0.14572796092606,0.157802088865684,0.166638019057501,0.175686134246083,0.197590054641328,0.21179123381316,0.243174468801022,0.259365474894302,0.257275644505424,0.251647916174405,0.251157905449471,0.247600648128979,0.251861648265443,0.252499631918735,0.25267921238158,0.25464102222087,0.255997442595872,0.254884369601479,0.255303177731759,0.251496411606922,0.243720350601264,0.22944928752165,0.201746637442301,0.159136659993666,0.11220364128203,0.0606769075774684,0.00329822701687206,-0.0191709658767485,-0.0195572390607117,-0.0218545285160386,-0.0202918995588396,-0.0111306189396942,0.00366750662318202,0.0563453176955591,0.125595231253411,0.172452740106136,0.204783684421907,0.231732703351432,0.243882248703763,0.245869889297526,0.251343864004079,0.251441242387673,0.253951823194035,0.252413944526413,0.255628978912181,0.254203365271367,0.25016712726786,0.23670381005168,0.2216800364981,0.193575776577448,0.137087635422723,0.0702980443866443,0.000168075383388354,-0.0547045883615424,-0.107094283474105,-0.149604011397381,-0.16550302380109,-0.170594409690987,-0.170838833090268,-0.167426694691007,-0.142073596908237,-0.0740299360398761,0.0143455064313581,0.0945230357179279,0.15476427840263,0.212655383630884,0.24294025563656,0.23947253466154,0.245552058389587,0.251864044626773,0.253179405061537,0.25441654620424,0.254405076973456,0.25187789050908,0.242180198220595,0.223490127246981,0.192919048203919,0.146076953269387,0.0741000124298748,-0.00239456942450073,-0.0634162876826489,-0.133736966297212,-0.20945767188152,-0.241576080436553,-0.238982265983445,-0.220098432949302,-0.209887903199667,-0.210208882500039,-0.191744949887321,-0.128664473681963,-0.0564397420201414,0.0362310355412777,0.105627471150529,0.186679572503511,0.233869397354884,0.240097020279161,0.24261422034883,0.250798845792421,0.256580984187381,0.253125437447951,0.254046887262931,0.249425010664454,0.236699648929489,0.210460139713465,0.175557073779019,0.121135251924734,0.0556289219734215,-0.0281439966277573,-0.111204627847344,-0.203899633898007,-0.249738060037185,-0.243629157509934,-0.177918318514902,-0.113827143496621,-0.0982582532280791,-0.126650435203023,-0.151958729819273,-0.139080870848185,-0.0888912672655767,-0.00527594146933193,0.0684680361140053,0.154058943812462,0.226939021750072,0.234278534746875,0.246540558149549,0.246287939629465,0.256806439126439,0.252794853386824,0.254112715204871,0.247118077078017,0.237298661723195,0.213835277671029,0.171166399484434,0.121072340201629,0.0574234516403824,-0.0524191933313978,-0.150593703814109,-0.22748880707462,-0.229798500827214,-0.162786274484958,-0.0346143916214716,0.0436237977180941,0.0304272044397087,-0.0485039988399279,-0.126280404737526,-0.164325373356688,-0.109917353380689,-0.0427894935282419,0.0547059534537947,0.148135388885541,0.20715345102927,0.229209272874437,0.244856593350733,0.250515282311471,0.255018916152622,0.25437898434141,0.255172988352427,0.254590763190202,0.240724468273993,0.223085802058835,0.185588827797289,0.13378036505381,0.0299398455111614,-0.0720559841197803,-0.174059127286552,-0.211085988944097,-0.162910458842432,-0.0638922878921119,0.0749289343301943,0.12551871532288,0.0545870871249571,-0.0671806526158913,-0.16705964840452,-0.187316049891818,-0.14389762151275,-0.0590134753651703,0.0488491708262869,0.155808696212951,0.21645898976825,0.230739912801796,0.238313485675665,0.249735209555218,0.255021773349925,0.255745361061893,0.253325284498693,0.256174576683495,0.248791236243367,0.23773648825185,0.187858772576903,0.11747445120817,0.0137668330617312,-0.102943251675489,-0.183656576762129,-0.188842767652875,-0.134701458844961,-0.0414587949589283,0.063441644134986,0.0580824525674257,-0.020969792025572,-0.130945077105157,-0.219396731054651,-0.235132228688901,-0.163768451978167,-0.0535753788647639,0.091491478817717,0.20265790154523,0.238406259647039,0.241168388933697,0.241140382987656,0.253083935331941,0.255380033321775,0.254332254215569,0.25472779946933,0.25218973535218,0.249511556846669,0.237761880354544,0.195308413588789,0.118970039063602,0.0113388618666819,-0.104363797669147,-0.169751348755874,-0.17153013446468,-0.155897749247203,-0.106723128942009,-0.0558570810927546,-0.0718632950710096,-0.132244936973061,-0.216970794425591,-0.279092485043488,-0.245347926566871,-0.160915363462466,-0.0188019216488247,0.138237344648633,0.239227522654117,0.261185273655704,0.255379620647245,0.250114458484135,0.253902208674544,0.255697716548418,0.254182410047252,0.255721464237816,0.252652375630226,0.251717390577228,0.235021853047742,0.20118343657864,0.13083104074403,0.0105292283624806,-0.0975738379106681,-0.159467546187748,-0.174335761883814,-0.190243507304219,-0.202653705022811,-0.176488466492476,-0.181676498933049,-0.217326158987769,-0.280315468145727,-0.309203919627025,-0.252814660199012,-0.128183739378119,0.02567285756136,0.159332766921882,0.237500460252329,0.271697115543818,0.265430651476047,0.250033533329383,0.252181331825065,0.253305285919064,0.254944047602386,0.254182247898817,0.251869634055687,0.250853831216666,0.239927574883641,0.22233327896777,0.169159506092976,0.0529136417329495,-0.0638385011505384,-0.135978212834076,-0.174682910271778,-0.214623182849707,-0.233707620270498,-0.208657319940719,-0.204322607931133,-0.2163319445535,-0.275599431096015,-0.290946180664499,-0.202901675377154,-0.0784698200393446,0.0495408015355669,0.163913587469186,0.226245286377,0.270600911940402,0.266042387578387,0.255248264523075,0.257220417472353,0.254417983790546,0.256635083460843,0.252924138649974,0.255054161476386,0.248928016997582,0.24508279670712,0.250217911847137,0.22511858802832,0.118476224902156,-0.00116359094565773,-0.0889994463284914,-0.143327299931502,-0.18371916053615,-0.195931061935978,-0.159236260642244,-0.138133159071722,-0.153229614208384,-0.223458817618617,-0.219497656842565,-0.139870032892778,-0.0331752081793899,0.0542628003606704,0.140379283832426,0.216500127430406,0.258865535871523,0.260626194017701,0.251072074552143,0.253004915138275,0.255813284910171,0.252743914492029,0.256507725737136,0.254700598419074,0.24621739249331,0.252451634617859,0.272976041423538,0.26533439865088,0.192417818819452,0.087454569852083,-0.0224465570511271,-0.0961310428661452,-0.139418552677723,-0.116681553069465,-0.0605739660891525,-0.0286887333710123,-0.0751028540509871,-0.157751510512451,-0.173451173739957,-0.0831858177491515,-0.0123059796284699,0.0374055268818126,0.110121512346126,0.198838312510649,0.244149548266446,0.258228164865351,0.256705788511347,0.252628299270736,0.252896052060091,0.256638973788737,0.253459973382154,0.252761680708761,0.251372178158225,0.252677562443028,0.280296307283942,0.287277864956354,0.23845508169893,0.147248605533788,0.027879575506231,-0.0579883956373179,-0.0768972246709824,-0.0296550932933755,0.0444363605627804,0.0455960605567921,-0.0366670374605767,-0.12390617030671,-0.131980468818591,-0.072396888562653,-0.0189206349793955,0.0243180487678467,0.105447522577187,0.190047554677564,0.243870400249852,0.259941606306607,0.2587891139338,0.252203076317735,0.252311097329973,0.254538041807801,0.252878925453796,0.251640588398396,0.247109719233196,0.247692959174524,0.278548410335255,0.278326492126177,0.229545504904876,0.148281466041191,0.0482406048077278,-0.0235581386579072,-0.0237688170136908,0.041882789316415,0.124326044219475,0.0858998151014181,-0.0235780315499859,-0.10536099606181,-0.107581742043603,-0.0763542735415779,-0.0390256720217153,0.024732989132985,0.119410814819769,0.200011318064147,0.244710771121576,0.26323338381954,0.255653974512726,0.252593248618001,0.252656395604318,0.252942755273262,0.253770121316585,0.249482262463837,0.243088321927409,0.245433437990708,0.269824126728959,0.266880662500179,0.207181515700603,0.122232054174977,0.0446156410081252,0.00239181774107666,0.0327604031755564,0.10860668610847,0.147187028936631,0.0818707572143751,-0.026714847111008,-0.112046007749847,-0.128571402887482,-0.0982897111932322,-0.0530739605882136,0.0360491363378148,0.131609880576288,0.200094148494346,0.245080726035577,0.257582184394024,0.257966179587172,0.253483886569117,0.256759181984736,0.25566724209818,0.252745534624319,0.251541944973422,0.23742088497089,0.232188866583317,0.244719826168747,0.220867339962663,0.163572951442818,0.117044684703532,0.0518548463136961,0.0283172095006141,0.0749597797834681,0.0981022523786224,0.0886279077702118,0.0231457162091431,-0.068284097064799,-0.143635284680936,-0.171501510252237,-0.125968130466238,-0.0494564064484396,0.0603656522826931,0.14615028291865,0.202505632479994,0.250802329541245,0.2620430273786,0.256438896892603,0.254074779044029,0.254461958717051,0.256590880807471,0.255771320129565,0.248937874396782,0.239392818486665,0.22233147576675,0.216247166269512,0.17615223292328,0.109166878073085,0.0713602835110507,0.0264473767221123,0.00356923722280692,0.0237188817013959,0.00641784713425548,-0.0263768566859741,-0.0770891949287455,-0.136632603270433,-0.187486027824534,-0.184163424228067,-0.103653122677031,-0.0175971085634638,0.0959828447400547,0.175571127192453,0.223745840870026,0.256000730669581,0.258615389109232,0.254807624322438,0.255187197165139,0.255731689381321,0.252915412685112,0.255859265730862,0.251946959419924,0.243451307847966,0.223550156870047,0.196337642436386,0.154475750385115,0.0848371191818455,0.0189306582077593,-0.0346006580657204,-0.0752534643248348,-0.0988606790173292,-0.128952157428833,-0.13768096201589,-0.149937288369728,-0.176347090809326,-0.180428419244504,-0.136976430835161,-0.0601082428832501,0.0501090160848294,0.134914316291453,0.19749441248969,0.234702744288753,0.257182229121977,0.262663805459795,0.253883379095967,0.254461398269785,0.253593210107904,0.252982967084754,0.25262121259052,0.251707929003126,0.248456663168568,0.232028533359315,0.204532322255696,0.154956400697366,0.0914988483345195,0.0142049616785587,-0.056157954716291,-0.111536603334345,-0.182277727765505,-0.21126351233974,-0.210724518211815,-0.183027895870142,-0.170277855686746,-0.139882123348344,-0.0760368335551171,0.0126675276650512,0.112953206364439,0.165943017601311,0.216730952805887,0.244349791752026,0.252146382084009,0.256389587531268,0.254783284316171,0.253924892058089,0.255780169680178,0.252723321122054,0.253206118687214,0.254311037881496,0.252679614397192,0.245445190524914,0.230280445728948,0.196482124577348,0.150213338184895,0.0881111752965757,0.018776971123036,-0.0630676465121828,-0.140208020192026,-0.169276048424722,-0.162683237433305,-0.137139769934336,-0.105208392547609,-0.049706802597669,0.0124560359616051,0.0880996725780839,0.152322437870453,0.191964596450521,0.220166709754262,0.239560101007107,0.253124502373103,0.256193087519296,0.254813437318682,0.254275546765635,0.254298198427723,0.256763230300087,0.252824136106377,0.254653926046777,0.254123511278586,0.251507216490504,0.249414377008264,0.2403129908313,0.230081287640704,0.200914878592584,0.174238304398917,0.110856794199669,0.0572272970545515,0.0246821914187688,0.0269632456566656,0.0468999310960477,0.0590533375829551,0.0795641863758719,0.099446477476403,0.148183180845652,0.184555038510786,0.209555059104036,0.236583007641291,0.246720653285834,0.251896305079679,0.253108384660971,0.256574294534282,0.254906985128905,0.254506471411774,0.25267707436727,0.255933919592176,0.255223818597281,0.255613785392965,0.254230691552974,0.254249264182158,0.251143067149322,0.244221209145143,0.243941526017037,0.231755255761063,0.204511726059356,0.183178506746362,0.174778195482854,0.168596453865073,0.176159742076833,0.188657523659958,0.190970024585713,0.20381770963262,0.221685441024621,0.234410786247517,0.240251609809397,0.249890893645533,0.25503208136146,0.254998564915484,0.254580263170098,0.253896903868275,0.255447835707072,0.255351891771584,0.256426818027347,0.253749449143307,0.255570603129371,0.254547886161278,0.254078938571317,0.25532947007674,0.255281652909367,0.25064690127526,0.254451004836888,0.250143495613227,0.252093491482178,0.252237368699778,0.25347835337737,0.249173975074181,0.251406371248689,0.250797629898583,0.253932132870151,0.248443106474795,0.254126916183882,0.255075446738226,0.255224152769657,0.256197332413619,0.2546196460385,0.255380526757183,0.256405594727164,0.254762288952776,0.25423917996115,0.253899005910911,-0.241610523446404,-0.253408428638871,-0.252811849578524,-0.256101457514479,-0.254789080980533,-0.255861984849633,-0.255224838746452,-0.256445315046266,-0.256507232518485,-0.254235998882948,-0.254940633739865,-0.256505805564571,-0.256779831619178,-0.253955166564948,-0.25597383263637,-0.25614560933434,-0.254658719570109,-0.256077844390036,-0.256272745706084,-0.255083342453727,-0.256223204118355,-0.256744549485639,-0.252743139514124,-0.252551664803022,-0.255706207802211,-0.253949316282286,-0.256025922844897,-0.256550814338639,-0.255593823732396,-0.255602729450062,-0.253621278662011,-0.252447700907341,-0.252539872264363,-0.256658125341724,-0.252437564151043,-0.252540935626189,-0.254832939775756,-0.256527146487541,-0.256274457693471,-0.252269603133102,-0.250985679090146,-0.252768372059423,-0.247046980040399,-0.249624716437839,-0.249794948101767,-0.251240677622777,-0.253396750351123,-0.255172609261955,-0.25770439925334,-0.255759616726382,-0.254135543774586,-0.255828782687997,-0.25418309716366,-0.253089888513821,-0.253144176005665,-0.253176498902659,-0.256287514985665,-0.254729597097117,-0.256710555510658,-0.254692607442745,-0.253265304724073,-0.253610607377702,-0.254917892282606,-0.254785419249273,-0.252782721751643,-0.252523154139207,-0.24662226888473,-0.237386074545336,-0.231178162177299,-0.223063403259744,-0.213703020512072,-0.201324176139368,-0.213694786677191,-0.223085180619468,-0.223807856858884,-0.225501405710977,-0.228399497508432,-0.236199399709688,-0.24542231173997,-0.251183238803937,-0.252640256750888,-0.253550343367548,-0.253697190109824,-0.254553160597224,-0.256568563650149,-0.252501168998888,-0.254125518551705,-0.252704720857573,-0.256709669847121,-0.256102595595652,-0.254172758563151,-0.255451695043454,-0.253996914405122,-0.255164726057427,-0.239215505441017,-0.227968530969221,-0.217418291772311,-0.204580824568493,-0.192102254207866,-0.188547746076578,-0.191261804028495,-0.196561188211795,-0.203506959017935,-0.209045375667735,-0.219682393847705,-0.235399125886297,-0.246284768744802,-0.252575071010589,-0.25230551013483,-0.255115802687482,-0.254860630251287,-0.253534086521939,-0.255234922421744,-0.255842141524971,-0.252464800385195,-0.254440944776208,-0.253771176451106,-0.255811562748621,-0.253582273938177,-0.248945196727794,-0.252326344749609,-0.236150730562057,-0.213038792968046,-0.187703714588739,-0.165674700921514,-0.144092072825759,-0.132131341600115,-0.14222036808896,-0.148715793739422,-0.149293940478908,-0.169892028231456,-0.188266220059931,-0.218299928473704,-0.244058349208625,-0.250458605793183,-0.246217918675211,-0.252079904815998,-0.247315823582501,-0.252077657340691,-0.256423278544907,-0.255400506411732,-0.256245595179081,-0.252612907660778,-0.253933711719089,-0.252560590668737,-0.250252835881031,-0.24336907051657,-0.232671318889231,-0.210131623157345,-0.168814639649409,-0.123915057036662,-0.0721638119157337,-0.0164257099463413,0.00548749553100611,0.012882109489261,0.017876825778657,0.0181838344203069,0.01168576822722,-0.00272935918755197,-0.0548400688669586,-0.122857124837164,-0.171050304751242,-0.203302354707068,-0.233013960133837,-0.243175015095328,-0.246089007995742,-0.250746470182683,-0.252586322725074,-0.256335246862219,-0.255874448340365,-0.254585270932548,-0.255560422818727,-0.253185853419134,-0.241057250905289,-0.227993293656992,-0.200904529181612,-0.154125792477197,-0.0887432348847702,-0.0243267935305146,0.0342431317148962,0.0914520876354832,0.134259805135615,0.159493709749121,0.164871945864654,0.162786175246846,0.159367403432839,0.132392156219002,0.0603174448002733,-0.0294792102316716,-0.104745783663207,-0.160141727259689,-0.217557089653446,-0.244193522917561,-0.237798599829943,-0.243140082607153,-0.252264734608523,-0.25553740471911,-0.252967932069349,-0.253069448052558,-0.253029985725924,-0.2435739149511,-0.226607948355624,-0.194429888257473,-0.15585931475132,-0.0876821895684629,-0.0113991270059,0.044420609064193,0.124641054366174,0.200015646235756,0.240380092036455,0.241224393069131,0.221258445048288,0.212293460881045,0.209338899978719,0.183992389936665,0.11660639010059,0.0419640963824579,-0.0441164842366649,-0.114128181236437,-0.196241156907254,-0.235160401337455,-0.240044486023855,-0.242042606335715,-0.250187946981548,-0.253481815669042,-0.255608395583388,-0.253450425552202,-0.24774437185467,-0.238458223469465,-0.20894807691667,-0.177263441284782,-0.122621503101196,-0.057500596697516,0.0252626535242157,0.106579501549483,0.206235606803752,0.260116705327477,0.257243947103811,0.196538814636073,0.134432275646422,0.116502807683321,0.136010139735721,0.149649061429867,0.128724749393411,0.0752663643554225,-0.00575689798171413,-0.0837661961683174,-0.165075784761411,-0.227659239922981,-0.230774434924823,-0.241931915132216,-0.245456989439383,-0.256692268079135,-0.25244758239196,-0.256009475761061,-0.247700523339983,-0.233657195234761,-0.211056948423561,-0.171043396132668,-0.11897801039766,-0.0473176060912476,0.0562871756949051,0.155996531805497,0.243487498002676,0.248243848437286,0.186029223478488,0.0636629712200596,-0.0144077614988465,-0.0128540628801485,0.0565104439881114,0.123569139937013,0.153476782019219,0.102537223216441,0.0313583238522234,-0.0613482396601361,-0.154681457475268,-0.208599369793388,-0.224560153647151,-0.24279252006011,-0.248367118609208,-0.255658669482421,-0.252892765740617,-0.256554221380267,-0.250845737461628,-0.239273814416478,-0.220996623160538,-0.182926592586075,-0.128803137887983,-0.0211968958554689,0.0829830607510095,0.188351794547373,0.229952280929342,0.185531211855556,0.0879619870099755,-0.0465894402304788,-0.10758448837197,-0.0487044147415039,0.0561357001547037,0.15168108519719,0.179168352737685,0.134669314004805,0.0527247087623847,-0.0556568456833613,-0.157411897605829,-0.218152088573258,-0.23329607048984,-0.238170150977005,-0.249557900130444,-0.256608692141013,-0.254350410760998,-0.254149677017991,-0.255281814299732,-0.249004883557629,-0.233042799346585,-0.18766513202911,-0.118503059944696,-0.0128876954770964,0.10904997897312,0.192613130890072,0.202444364919612,0.152066389438741,0.058040342565036,-0.0489453600117377,-0.0542542163137233,0.010394231458798,0.121605813519622,0.211604583918021,0.230393299327469,0.161571577494259,0.0553879945215687,-0.0908782272644144,-0.20256129885353,-0.241405718361529,-0.243617310820032,-0.242440161230981,-0.250394062782289,-0.254579260017651,-0.255985769335473,-0.252836784330859,-0.255034613154006,-0.250686352758714,-0.23821366035163,-0.197444502792996,-0.121467837749996,-0.0138520978567778,0.105566985475697,0.171776204344886,0.183653650240083,0.166993019623129,0.108169032640208,0.0596816793561159,0.0690223192380429,0.124896647258923,0.216825255179276,0.279873960915174,0.24646949969595,0.160594943727531,0.0264304433742554,-0.131989091086836,-0.235266725151081,-0.262849492771212,-0.257177068183247,-0.250749884436942,-0.252903678387922,-0.25608418510079,-0.253419823060208,-0.256724062684473,-0.256066226774303,-0.25276417035945,-0.238403928570977,-0.207170363427193,-0.144009965913038,-0.0234929603574198,0.091526881033416,0.152979035239741,0.175972261908997,0.195212037975121,0.197845822413628,0.168643030966009,0.180804905263464,0.217705323442824,0.283054963058398,0.312712190202579,0.254708408800179,0.132138195807181,-0.0195461867843195,-0.150045595758469,-0.227583916765102,-0.271713742970149,-0.265402432140077,-0.253333295291505,-0.254261358946984,-0.256978046248612,-0.253995237441908,-0.252889877626323,-0.252117520941563,-0.25006109633136,-0.243488298827277,-0.230374186694786,-0.182739365241865,-0.0599648330341814,0.0519545107755193,0.126611468456288,0.165395751285683,0.204954256934187,0.221808138573572,0.200751619464673,0.203923787777385,0.219116684770741,0.281412882669754,0.299043986745503,0.203388109827738,0.0807189264224755,-0.0474094781746083,-0.156646279850489,-0.2189195976172,-0.26706135817362,-0.268188902933444,-0.256070227908182,-0.253398260218148,-0.254738423740991,-0.254858505476855,-0.253183937484015,-0.252721533995373,-0.248049521902006,-0.253466813744052,-0.265578958591379,-0.238148493338676,-0.128346641199166,-0.0141728128409504,0.074813031367468,0.129614953271004,0.165507470738209,0.181633733498962,0.151081500059339,0.138042964702735,0.156413380821564,0.226029864458584,0.218913721200158,0.136247914949694,0.0290112049560625,-0.0497228256618636,-0.129788991635584,-0.210636968244744,-0.257729971841175,-0.262134038374338,-0.251657729099829,-0.252556193874831,-0.252224791525896,-0.255684050717855,-0.255353880340241,-0.251164321997396,-0.249429030007865,-0.257412336351045,-0.288068300177321,-0.27785301452328,-0.202971047975975,-0.0925743161871889,0.0143245994837204,0.0883521565473521,0.130852372106152,0.110499405514516,0.0589513405902002,0.0375111720049021,0.0843909867971446,0.161865509894862,0.171586783572047,0.0788926521112351,0.0110702757852962,-0.0348068917864986,-0.105125448710218,-0.190535550669579,-0.240151293783918,-0.259868579988209,-0.251848663377072,-0.254536874904013,-0.256336726687649,-0.253891814593879,-0.254301521089138,-0.255112910888458,-0.251560288049269,-0.257421484684175,-0.292112777588315,-0.290891351327555,-0.238866038352134,-0.13939703295719,-0.0183360439960385,0.0656728302218896,0.0884094181048125,0.0369681559476671,-0.0317188310528621,-0.0331768298173995,0.0457021145640697,0.12760766766916,0.135605243687847,0.0731869589170169,0.0214366614640869,-0.0234970017125051,-0.10141789022647,-0.183012603599627,-0.238522960197621,-0.256246812317864,-0.255914917123174,-0.254864769830156,-0.252645235540016,-0.254063181421955,-0.254006531873151,-0.251950895412095,-0.247612705070011,-0.251282683276782,-0.281189857067918,-0.287194509285772,-0.22402896541508,-0.136647005082976,-0.0300238522826906,0.0470466932080417,0.0502443367351975,-0.0220314161221736,-0.0994362965045538,-0.0643804422655668,0.0366247291795446,0.115330383373145,0.117843146325433,0.0801271805367947,0.0448559380356888,-0.0226620473288918,-0.116153338479271,-0.197918355757263,-0.24214600848771,-0.260916042314108,-0.257461013539834,-0.251424628285408,-0.255252364757199,-0.254179304890619,-0.255454299651466,-0.252702532524297,-0.24303500962913,-0.249729112504888,-0.277197204351623,-0.276074633159245,-0.210422566970275,-0.114173065857517,-0.0252916173907219,0.0224537761912017,-0.000135169721993821,-0.0758571069743274,-0.11192503548705,-0.0551772959968606,0.0425560036406689,0.122621169563584,0.132459330316872,0.102455010989765,0.0502422359363848,-0.0339913295443028,-0.133124277333219,-0.205506281935993,-0.24736274516186,-0.262524569555159,-0.259630033902438,-0.25530322367317,-0.2543966423827,-0.256746903873181,-0.253833774152864,-0.249669747171591,-0.240702664714752,-0.23612393062114,-0.253501515614793,-0.237350263708498,-0.173689522165895,-0.122050269825677,-0.046395175217711,-0.00934159796613909,-0.0412530441194478,-0.064852311319712,-0.0560213024623946,0.000943224689801082,0.0830869743105073,0.154932846709274,0.170321764821633,0.122337455396464,0.0449338145469776,-0.0708353232701446,-0.152596653778475,-0.209367264220784,-0.24893744743052,-0.260445935662515,-0.256715310802953,-0.255550462005272,-0.256783374868534,-0.25416994133741,-0.256850336121589,-0.249678370168569,-0.241780509416915,-0.22843091541237,-0.229792526715787,-0.193394773724311,-0.129359279442185,-0.088871124950445,-0.0345466425917228,-0.00118273803499611,-0.00482359442402773,0.0238646288554552,0.048495031053286,0.0976935950962273,0.143083676168847,0.191214011113538,0.179621995116301,0.0916531417466945,1.31681731773235E-05,-0.111947090502381,-0.185126322609243,-0.227192336358027,-0.256403406412305,-0.259448416092932,-0.257505989981706,-0.252947597112848,-0.254234033900148,-0.256830468918936,-0.255400610109063,-0.249355153184622,-0.246636995849703,-0.228017204956702,-0.206447440116767,-0.166158413909106,-0.107322624779921,-0.0386738040035532,0.0181118445514768,0.0640812902662698,0.0942176573300156,0.131881971627485,0.140101906832542,0.152041445333673,0.171136589686383,0.170329274055255,0.12432003507552,0.0430960360937512,-0.0655115552523779,-0.143653100087701,-0.203076266403356,-0.237558266484198,-0.256871649597882,-0.260878668800194,-0.253143398388435,-0.25321719625935,-0.256067243514163,-0.253666290265174,-0.25416212534323,-0.253311622393703,-0.249062278618265,-0.23488467167872,-0.212364536954743,-0.164852705397627,-0.105797928349826,-0.0295125993719396,0.0462905041696401,0.103821773094033,0.175897715971841,0.20456483821907,0.203535460438471,0.171796789318999,0.15716508463223,0.13098023949893,0.0647369777313186,-0.0251242010631535,-0.123614391103776,-0.174836943245798,-0.220186952038481,-0.244758142803959,-0.252851086828905,-0.256705076550048,-0.254125701946179,-0.252579950698995,-0.256813954942398,-0.254494011399756,-0.255475337328211,-0.255720857958607,-0.251914938089192,-0.249365354788051,-0.23186108188838,-0.203577669050581,-0.15635976884354,-0.0919721257538394,-0.022796442285913,0.0650029577299349,0.142365067183911,0.173702700001248,0.167379723545779,0.141334372994715,0.106292537090338,0.0503470352840127,-0.0134070834277785,-0.0895490034924099,-0.15314985411766,-0.196100776747582,-0.222971305168713,-0.239919821158766,-0.252934888518765,-0.256364611438937,-0.256673896743875,-0.254075089210385,-0.256379697641574,-0.255623794510267,-0.256721453236688,-0.254866081250557,-0.253517660757247,-0.251085150204027,-0.246248753454626,-0.240930558261589,-0.222750765155052,-0.197012403816604,-0.164304993023805,-0.0945346606285782,-0.0383358938816678,-0.00052034289028896,-0.0093814707251365,-0.0276784297095584,-0.0434421185974194,-0.0699470557223316,-0.0959549415842217,-0.147499592968756,-0.18411550637666,-0.211559601637747,-0.23658726652144,-0.246432397965692,-0.251794772107227,-0.254712433789771,-0.253253879654903,-0.253105098887236,-0.254563568623525,-0.25516077100223,-0.254799098130963,-0.253902179134431,-0.256535141702564,-0.255802209094273,-0.252479238665511,-0.24891276308402,-0.243838627018275,-0.238435431170854,-0.226178431663139,-0.19477140621788,-0.169886177482842,-0.157206043690329,-0.15251176430785,-0.161820733077297,-0.17744912333759,-0.185745956060252,-0.198152636916631,-0.220770342939656,-0.232303828579825,-0.243092939184143,-0.24838127105481,-0.255322444922461,-0.253633685227531,-0.253426633874842,-0.254173593062794,-0.255093326705393,-0.254816416487083,-0.25526513477133,-0.254291645512749,-0.256135855084938,-0.254392245040467,-0.255418831964002,-0.255521740795469,-0.253733054940658,-0.253481637301532,-0.255607213840086,-0.250809054780556,-0.249257669158917,-0.252041659691435,-0.251780864922757,-0.248690980973868,-0.243537710539498,-0.247734379686621,-0.249183979652415,-0.250054468522094,-0.252901731894617,-0.254102138557316,-0.255845258230703,-0.255737053421728,-0.25544901126404,-0.254323574805597,-0.256054061340942,-0.252908976099007,-0.255410849739223,-0.252863982513574,0.245873351868674,0.234752154969431,0.237798332638291,0.235606923888607,0.234666513208917,0.235891709426332,0.234103018886656,0.23666256165547,0.238010370020097,0.235151878693412,0.235528800138066,0.235463584464737,0.235177561002878,0.234600202281126,0.237895031079802,0.234994326476886,0.234260558820799,0.235969945901355,0.234820677873311,0.235436273943717,0.236881048737079,0.233865380404788,0.234366681668144,0.236833094149746,0.234855159843363,0.236772154240646,0.235161420387316,0.236127563945243,0.236623374828886,0.235974127784925,0.235503340751956,0.234292954479007,0.235059593947327,0.236393329928782,0.23557731715445,0.237707488464865,0.237415892084157,0.236944891952002,0.236794071441235,0.22982259887612,0.230545623690039,0.232605855133812,0.228738704787202,0.229871445002766,0.235662469279536,0.231608667670147,0.234341808002506,0.23814479227268,0.238115996173662,0.237090616895846,0.235382558725711,0.237131599859097,0.237236226929962,0.236598361114599,0.236077978365615,0.234367848114959,0.235797186259844,0.236961056417388,0.23549043037752,0.236990566781284,0.234911810868439,0.235954403146418,0.237866413965406,0.236469752462041,0.235995474490315,0.236239183665548,0.231248869150241,0.221065153531373,0.21309472034435,0.205508782088619,0.200280634220462,0.189143846527422,0.200592023518877,0.20760755592117,0.204004767326508,0.211130237052063,0.212237173599118,0.221069743685388,0.229301868036247,0.23403937350534,0.238093520160105,0.234841217709653,0.23462474127888,0.236253460992709,0.235395183975244,0.23709623661042,0.235297562993924,0.237211592039704,0.237762126566988,0.235520159337484,0.235435111357811,0.234810730159603,0.235831958577783,0.239046737515694,0.224639677423023,0.216848255292724,0.209079212897601,0.195096891933485,0.188301202938182,0.186356365803247,0.186466778979755,0.187423213827703,0.193315761879597,0.198536040580576,0.207343928446848,0.224699547815909,0.233652673918315,0.233050326633039,0.235105396581935,0.234628692648598,0.236191008641242,0.233896921480157,0.234533678439828,0.234688380677367,0.235257374895385,0.236827447094802,0.237566331796777,0.23563903192281,0.237906844548119,0.232716183325083,0.235686588835659,0.225474492175029,0.198326296934314,0.177580017925304,0.160763674325277,0.140402247288749,0.122615963423783,0.122519761382026,0.119346156427002,0.123481252888185,0.138730070255466,0.154098937186124,0.191438661503316,0.218295251741247,0.232135738137658,0.227123248263101,0.230562474984157,0.228706362416542,0.234682524071358,0.235009114270674,0.237548525202164,0.238073868317057,0.236948462591835,0.235644513377648,0.237436556541675,0.231442666203072,0.229836682173381,0.220143315122806,0.201911869440343,0.169558232196675,0.129363668706477,0.0859375627983929,0.032046994205142,0.00069364556693032,-0.0136063753519174,-0.029566495216196,-0.0386300399347746,-0.0376536539033212,-0.0246288377558134,0.0272446935659959,0.0962879343859372,0.150612275379664,0.18632457947534,0.216648932122059,0.229423432610737,0.231202078911152,0.231073733402978,0.23478052518802,0.23605709394045,0.234153428228531,0.23661378437786,0.236279744197998,0.233711391108531,0.220434935357806,0.209565607073265,0.191225771959873,0.151992233872646,0.0954916076979148,0.0451253719102686,-0.0102105763760456,-0.0617739882551485,-0.1097807377311,-0.133779273425557,-0.135694346397125,-0.144175952074301,-0.148885146160318,-0.130044844442712,-0.0722921213147104,0.00874781828581789,0.0824102389937041,0.145468493945265,0.211203073502647,0.240062787967824,0.229577490528152,0.230605076275534,0.23277417555985,0.237124430792135,0.236749265595763,0.234444759955441,0.234881972695943,0.224402217082938,0.200589259757232,0.173760034819453,0.136540006348206,0.0785974316532695,0.0133211494206959,-0.0282431810363701,-0.0943866290054163,-0.170367887517077,-0.209449675950823,-0.206012875102441,-0.188484685495016,-0.179395080733466,-0.183789514969377,-0.175176588339587,-0.11930082492117,-0.0653953465838136,0.0170682531161263,0.0931795720408999,0.18481962274895,0.23585360325936,0.231171287572869,0.22981414099629,0.23218627040929,0.235791224411564,0.235865282408767,0.237220835510159,0.225769582706802,0.210697515907964,0.181681016723661,0.148283100567404,0.0980558052041631,0.0381563652129292,-0.0269377323524269,-0.0966043832322016,-0.189155032594353,-0.23795916610383,-0.237122709895042,-0.184179852028105,-0.130698242189584,-0.116434888378112,-0.131118522324515,-0.14910829942484,-0.140601718559649,-0.0986460419018455,-0.0237125755701057,0.0535285121457936,0.142986435745411,0.218420938414659,0.224424489383321,0.230434485386212,0.231439514310132,0.237590497152529,0.237436109688255,0.238766288176842,0.224734949913801,0.207679901666689,0.176780701542094,0.134915473503793,0.0879474471089118,0.0281802976237632,-0.060500767456152,-0.145335574649912,-0.21916204787279,-0.230519329966565,-0.181967912823934,-0.0881648130168466,-0.0307269361463189,-0.0327202492865948,-0.0842945466495963,-0.131875438263941,-0.157031817048408,-0.123958228007639,-0.0657412463678047,0.0249959919221156,0.120918699120736,0.182011385481091,0.21306053196653,0.231716965676867,0.230853727703925,0.236807011575256,0.237680119807505,0.23440122168956,0.229932980595818,0.212313730521505,0.191667761620712,0.152288096699018,0.0982325765594364,0.00421167909396054,-0.076348402302143,-0.163420518274341,-0.202768275617539,-0.170750044472642,-0.0997204259874491,0.0123534991527533,0.0506464933685627,0.00930700756897274,-0.0686554252329863,-0.148975245305959,-0.173300666162599,-0.148491883136093,-0.0863260061679265,0.00972630232818803,0.112224291381495,0.17980204016091,0.207728897758163,0.222184535892346,0.230736789173281,0.23521226732694,0.234668824975899,0.234832122690297,0.232273619232665,0.223564943667131,0.210062014278896,0.160143926374887,0.0953124300060282,0.00810747705074166,-0.0915429973618285,-0.16456012887243,-0.17827267362135,-0.139631832249248,-0.0662920123792648,0.0286841638042837,0.030616103196818,-0.0148117394902269,-0.104518816008233,-0.182975493821509,-0.205470890482897,-0.165466698841659,-0.0910029501079042,0.0400622564672767,0.146121659095794,0.191586335145846,0.210126188070076,0.225878735903871,0.234354321103013,0.234179936003296,0.23464871377655,0.235428089538691,0.231184729170294,0.230363037244491,0.21759549077057,0.170184425110871,0.0965700982531646,0.00888373467090306,-0.0871936223276047,-0.14478418759534,-0.159063567296164,-0.144918818873289,-0.0921546838440769,-0.0372898971451033,-0.0453684421092843,-0.0926316002981945,-0.172784606703915,-0.231806015895892,-0.210316414064151,-0.161019162591622,-0.0618624292209372,0.0768104869641529,0.17473771540259,0.206695546962378,0.224564523397329,0.230754717958577,0.232177526690285,0.234299501560345,0.235820603148033,0.238350022682421,0.236452834242921,0.231081124674605,0.21895214463961,0.173250645949767,0.117289183936455,0.0125596146747558,-0.077113850509305,-0.131207401138191,-0.144659907805704,-0.148460969906116,-0.13534327476019,-0.109594571952321,-0.125742863409491,-0.161499629869067,-0.227609080894794,-0.258361106537545,-0.218486076898658,-0.135503516064104,-0.0224932414165339,0.0886874986664287,0.164786139738586,0.219015181814887,0.234168590056637,0.234259973922135,0.233449260229229,0.236260298224448,0.236055930302938,0.234383654392566,0.233935534648057,0.230228846037551,0.21855834241695,0.190065538037847,0.150305891856716,0.0436453146905134,-0.0501298793127176,-0.110338044057741,-0.126417985643745,-0.13843580941151,-0.141650767374718,-0.12604643740212,-0.134740955160064,-0.16138552238074,-0.219548027392169,-0.239426824229051,-0.172891028870484,-0.0912640871202985,-0.00309703456893848,0.089567284608235,0.161643344266421,0.22531434525322,0.23557345850506,0.23811641811851,0.235412316489312,0.238150430304319,0.238020821347444,0.23801126801983,0.236196431255371,0.230854184739798,0.225301395328402,0.21917892092935,0.195615766964739,0.101971741785998,0.0037928880804749,-0.0592622285937615,-0.0874129698344142,-0.106093703158512,-0.10799816711816,-0.0848003910361886,-0.0816149130394209,-0.0981007468004435,-0.16072151748802,-0.163704705782295,-0.1124461782697,-0.0562594008001617,-0.00547204264377754,0.0694280649277606,0.155715664265895,0.217393685681841,0.234534888337991,0.234588208387399,0.237035436913533,0.236911875288483,0.236983716713226,0.23549339255015,0.235500969015316,0.229274618074396,0.230712619390728,0.236008340717255,0.226753930178787,0.160552961483403,0.0713405474324519,-0.00766122305972212,-0.0537834900509517,-0.0741601023481887,-0.0531967596039976,-0.0150026612062446,0.000998044149945106,-0.0331065755947412,-0.0986876923083249,-0.113327434030709,-0.0629757962228213,-0.0428099395448665,-0.019834627275685,0.0555373558072422,0.148696927173952,0.210868938082677,0.239591777252164,0.240827168859101,0.23906798594626,0.235958046987729,0.237228070879125,0.235936792793838,0.23402938403001,0.233995463979765,0.228129085021226,0.236383318684633,0.236266362905857,0.193858165454819,0.108639688554826,0.013436116721189,-0.0477826279114505,-0.0570658522405296,-0.00244610222561546,0.0535087579855505,0.0596323715264855,-0.00601732162893582,-0.0722416111259266,-0.0875727758324368,-0.0670539524797371,-0.0478016235246126,-0.0169615118856885,0.0658854172489287,0.154031955391093,0.215418674710105,0.242579520071549,0.241307108747885,0.234049971379395,0.235133089367535,0.234130871340712,0.235442366254865,0.23339752917158,0.227332140744391,0.220577945725724,0.229241948064984,0.232448192653916,0.179367415114886,0.0996810016693214,0.0136679607842178,-0.0395284695183993,-0.0337945511223181,0.0296904842600843,0.10147042779434,0.0814922079610335,-0.00874282463245385,-0.0793682647126038,-0.0902941497765334,-0.0814220415319475,-0.0647879856339116,0.00279673829148449,0.0969630678882345,0.183020719858854,0.230698865825786,0.251161904569785,0.243777755436685,0.237777784676399,0.236858591744564,0.235985933650161,0.236301324353065,0.232767555105749,0.222632536099939,0.217481103968487,0.226633955688464,0.219282619824145,0.161665538679532,0.0787346816648218,0.00777884133038075,-0.0256387481988964,-0.0022472798083445,0.0663320396883042,0.104536443519642,0.0573936820928235,-0.0307987511233718,-0.102715051192496,-0.122309458553955,-0.102820452602213,-0.0537979447458409,0.0352633358172655,0.126544306659816,0.19837146542163,0.2391219957896,0.248907738595332,0.244899155987976,0.236221427810835,0.236333056070733,0.23404427166951,0.236476282227365,0.230872771809986,0.22286447116104,0.21317034819381,0.21374498203394,0.190472434971525,0.12745984406284,0.081974661903573,0.0144042605678518,-0.0179550750812551,0.0188281666595747,0.0386450696820245,0.0415480817990757,-0.00594398312261299,-0.0797356851913706,-0.142938245823511,-0.158361078053126,-0.109676665153088,-0.032533561885868,0.0770773402968701,0.154738111952329,0.209273918036041,0.244713638724886,0.248969635727835,0.242119032933448,0.235406994895553,0.237838537462281,0.235386753627544,0.2368836253164,0.23229725598743,0.225928229898694,0.208133055811938,0.196941861657136,0.151934471307888,0.0894604888793074,0.0456974829457061,-0.00123187012238318,-0.0338134006888478,-0.0323285309444359,-0.047150023074505,-0.0605010210986059,-0.100930435299146,-0.146003403701491,-0.177870538143829,-0.162055780417174,-0.0777363934941401,0.013674238352695,0.118055656657826,0.188570149001998,0.225461745079066,0.247086118985247,0.244865639600096,0.237502358064002,0.238039086402157,0.235284076523341,0.233961747939017,0.235150942945315,0.23341119616568,0.22732241908933,0.208535778020942,0.179079535409988,0.133713574714491,0.0743277160400837,0.00826216264009685,-0.0503385591047554,-0.0999897529978439,-0.123380992889063,-0.141117713923428,-0.145670612345455,-0.151713162062895,-0.164398105982299,-0.15707561521324,-0.104906830740032,-0.0194415001764107,0.0847010069924214,0.155799274655773,0.20571630340272,0.234557763197291,0.245499795316744,0.24783779651376,0.235252796194918,0.235989388329174,0.236008314897531,0.238160940179495,0.237253226478139,0.232342605345395,0.230472389437954,0.214626812254027,0.190868381950293,0.140971450109264,0.0793724814285653,0.00605065827351385,-0.0682100927792186,-0.131662693391919,-0.186638993748221,-0.204805138548068,-0.191561565877443,-0.161687560246748,-0.139291644127608,-0.105545710715179,-0.042126189643229,0.051094267076272,0.137831859830749,0.180775988340736,0.220285178462382,0.234757444539116,0.238607384675393,0.239306390909454,0.235248401860146,0.234140019965031,0.236434155839899,0.234292995749832,0.234461713007831,0.236463796518371,0.232248948323332,0.227876328700216,0.21507147366654,0.182932707376047,0.140679239304313,0.0806738269270198,0.0102483532180891,-0.0646677755311674,-0.126415746227251,-0.148950115588302,-0.13821733510278,-0.108372602454279,-0.081601693377036,-0.0300446928735844,0.0384810356088988,0.105930866569045,0.159023381556097,0.191109002692499,0.213626256097518,0.225267722639487,0.234974390807674,0.236813710259469,0.235783550273502,0.236520952057371,0.236802939398458,0.235377048592179,0.237453678816305,0.233847221559743,0.234246274298313,0.237094397672697,0.228562407526109,0.217599648186095,0.202170037069488,0.174811367044984,0.142143987265691,0.0851480809538046,0.0365138735278769,0.0122775422349027,0.0150375989156703,0.0314224644341171,0.0507652642269954,0.0718045262430225,0.0943585667629156,0.144330759363993,0.177879177187076,0.201606890018946,0.222573839214447,0.229542690086047,0.235473655743771,0.235716768124213,0.234939068873242,0.23395765840837,0.237780688892113,0.235325490085655,0.238185955026448,0.237136389027396,0.236854434415996,0.234746807681066,0.233128300567888,0.230699778487374,0.217385230520447,0.21064493232699,0.19302349540915,0.164995358854447,0.143014116962371,0.132966995121856,0.132280475710389,0.139598137909042,0.155385074039135,0.162687144198728,0.178391667701943,0.203957105500207,0.217404388522652,0.225316564475642,0.229386161236355,0.234164102869601,0.237919924990688,0.237228119333791,0.236526799970436,0.23822140900122,0.23714134468672,0.235702200526183,0.235722937740677,0.238022790005533,0.236713263651183,0.235118567281374,0.23539337111228,0.23673168092973,0.231684602939836,0.232708251495548,0.233284595714538,0.229459633920226,0.232920916859466,0.229821285423471,0.226851518187405,0.226282542970765,0.229756409597495,0.229143408562189,0.228207111629464,0.233282991664684,0.234378694336847,0.234889024609187,0.235148414617655,0.234110238600034,0.235129593084854,0.234510468384137,0.234676677958844,0.234912289707533,0.237933309932809,-0.225333482475478,-0.220846517116857,-0.218417329656883,-0.219072682122528,-0.218754311312073,-0.218473980894913,-0.219151626399861,-0.217215294365626,-0.219860763630415,-0.220572561030376,-0.220219299139201,-0.216781647234559,-0.218513793380286,-0.220202050595864,-0.219929519041593,-0.220161398124676,-0.219088426018854,-0.22084100682958,-0.216743695247882,-0.220291641527926,-0.217698233731155,-0.217242831849948,-0.217601251418343,-0.217768566996011,-0.216880132533961,-0.219257083081961,-0.218875991536142,-0.220261581293071,-0.216744941819785,-0.218833650512424,-0.219272232078437,-0.217483078562142,-0.217217104725574,-0.217456270100391,-0.218217998588499,-0.216885732600224,-0.218856697717149,-0.217741079267356,-0.217510756613561,-0.216058658060154,-0.214851291356161,-0.215091585994638,-0.214156933660252,-0.216159555236304,-0.217255953638749,-0.215220767283801,-0.216814919057036,-0.218919534654855,-0.21897306005534,-0.220474002257322,-0.217628801085951,-0.21624440604795,-0.218818665418382,-0.220714756990993,-0.21891708150873,-0.217017839179009,-0.217954088633688,-0.217682719412215,-0.21977301125974,-0.220032306602005,-0.219535759282535,-0.218497626296748,-0.220837181910274,-0.219757561821994,-0.218622768963515,-0.218980572439769,-0.213569752295359,-0.204250876925662,-0.201240828540674,-0.195000493267493,-0.189234479874854,-0.177240096502791,-0.190980917566278,-0.194937880490851,-0.1958339447424,-0.197961515426938,-0.203168763850033,-0.204338185119833,-0.212862923014173,-0.215019962648917,-0.218318182497684,-0.220848881119965,-0.219036260704013,-0.220130439895231,-0.217567723047439,-0.219540937588479,-0.217920558602363,-0.219111879330344,-0.218145455936403,-0.218957318828543,-0.219334956002442,-0.219673502386454,-0.223671455021949,-0.223047204034835,-0.212176251978148,-0.209955205290436,-0.205373228111609,-0.195727154262234,-0.190780176577271,-0.189783404672539,-0.192417134059974,-0.190540256820466,-0.194709300023988,-0.192775856312043,-0.200363604840202,-0.21216087460821,-0.219884320444338,-0.217976805242169,-0.21762966920209,-0.218012131570831,-0.218630175972902,-0.21644510707229,-0.220130199285407,-0.217622933637711,-0.217688355447066,-0.217332418419033,-0.220934918779038,-0.218617783087235,-0.220958652366728,-0.217210944974836,-0.220825564574827,-0.216075616371023,-0.193677617637401,-0.181075451223303,-0.168009639214146,-0.154145658640607,-0.138165056502846,-0.135211082060965,-0.124333543025747,-0.124988306394793,-0.133245537676003,-0.143706020761499,-0.174844016598923,-0.198592846132516,-0.214835754870647,-0.211232219521991,-0.212706273119191,-0.212300884030879,-0.218122105238693,-0.220338461057827,-0.217255978206839,-0.217203169747901,-0.220594823016513,-0.216194965739089,-0.21975271596141,-0.215349469916922,-0.214312214949149,-0.206523154522568,-0.198383293985524,-0.172475649239686,-0.141203325343556,-0.111628526762991,-0.0684390372554707,-0.0382756353402636,-0.0236993090846675,-0.00819992234058613,0.00866721880693748,0.0196011762078552,0.00779422920003751,-0.0290791744173781,-0.0904923252133731,-0.136726785113231,-0.171799994029725,-0.204794713156646,-0.213739077124578,-0.217112102462826,-0.218273769723068,-0.215745806927362,-0.217225767874215,-0.218920286027733,-0.219634031281615,-0.219000653678596,-0.217309347598844,-0.201490776205317,-0.196705899935797,-0.178879529642832,-0.152226192893596,-0.102826136937989,-0.067850398623906,-0.0266074975835596,0.0187801585025066,0.0655047502617829,0.0838675328220646,0.0834176194486925,0.0968023902795436,0.110719912606638,0.0994815616553943,0.0544567444598291,-0.00999434456467393,-0.0775805627990293,-0.139514664778891,-0.198422183069463,-0.225569934653028,-0.221780222796681,-0.218677028462849,-0.217180223067272,-0.219525452934254,-0.217383417022116,-0.219900744064234,-0.218002280713238,-0.204871639781499,-0.175933843704915,-0.15074527533545,-0.121104993716282,-0.0686479675085047,-0.0203655514776949,0.011964296959711,0.0645826299751159,0.136566200133515,0.172213954170431,0.168462649464186,0.149535433754848,0.143670021759485,0.153003385512174,0.152199354454979,0.109777146329454,0.0711916572811607,0.00330138453210616,-0.0757706211785497,-0.170586381428148,-0.219320108167865,-0.225089573403893,-0.222784589445466,-0.216606754544862,-0.218129000664976,-0.217748212244177,-0.220006028131546,-0.206288757816868,-0.186549430295535,-0.151952670933111,-0.116346637340288,-0.0692510126793136,-0.0164422356664582,0.0338357231533484,0.0917764820799506,0.174167490401476,0.224283135788225,0.229976317856299,0.185467170495639,0.134883755446817,0.119454322110741,0.134126594902962,0.154336593522028,0.151508566704804,0.121318877462751,0.056852902523263,-0.03318826208883,-0.125509340809372,-0.202709512332619,-0.209861052607206,-0.220171078487641,-0.215661325794037,-0.217578426996926,-0.219337074518126,-0.220669372759022,-0.203648635378628,-0.182144782738765,-0.147381979241662,-0.100015852150756,-0.0493155358930419,0.00276548524581072,0.0746363893770362,0.146065494858053,0.213475262396436,0.238587991662152,0.197414061364991,0.121311956798953,0.0686751809055889,0.0698251719590833,0.116311110800315,0.152499975287276,0.177964222890178,0.149530633111619,0.100387337176184,0.00840269662365884,-0.0958717342167494,-0.16204034068493,-0.202844669963653,-0.219843509171134,-0.220213729417429,-0.219182623104923,-0.22086782198651,-0.217786241162742,-0.211472319001723,-0.18748690733962,-0.161429190627268,-0.114191680410058,-0.060371659278758,0.0238239648190586,0.0851851515721231,0.157959292405315,0.198478231301001,0.180462316611702,0.122182269895817,0.0257233253426154,-0.00970124832908561,0.027550657578254,0.093862913011938,0.165101362879931,0.18746504841992,0.171892668380182,0.117746661453313,0.0230905723115633,-0.0862893284141046,-0.154188800751481,-0.195351226302932,-0.211347717743919,-0.21748550483019,-0.220595414831832,-0.217080843071715,-0.215871169072018,-0.209287792022681,-0.199485728922989,-0.182152389513507,-0.130694722852554,-0.0634888981504233,0.0176790709181884,0.0944478210360385,0.156590852880487,0.174970806839918,0.138679231308296,0.0723943575148097,-0.0133886994897075,-0.0179193281365229,0.0132414117194755,0.103626581472656,0.185558011423213,0.210133841226662,0.179221753911857,0.114333979212336,-0.00660711676728455,-0.117206488724128,-0.167660111985288,-0.195324971843651,-0.209938706345832,-0.218049843735668,-0.218974935553056,-0.21783840045057,-0.215436996833914,-0.211837933295813,-0.205471252823024,-0.196012627553573,-0.146040056150948,-0.0670155355384502,0.0137221307725145,0.0904785334045753,0.147797329684133,0.152145764582818,0.127973936711266,0.0679448916584547,0.0106820278750157,0.0103934155502314,0.0624012778311933,0.160025798726535,0.217981316031217,0.207973783964091,0.168185290450151,0.0847940466809282,-0.0455373661435389,-0.143704421495053,-0.181290540045183,-0.202608725700824,-0.21494962131862,-0.218208749717174,-0.218073910624394,-0.220369707892094,-0.217245203830602,-0.217786890348048,-0.214784332149209,-0.1977291036463,-0.143874427864479,-0.0772331415735085,0.0142080866021022,0.0884888471921022,0.126572509185451,0.128949042261154,0.116488569131018,0.0860408069918745,0.0537749392581109,0.0735324011653847,0.117893785839255,0.202703220228547,0.236565134711254,0.205303228149176,0.138312656017124,0.0436046811301484,-0.0571378723957315,-0.134683261315241,-0.192676030923033,-0.212939320053337,-0.21618072238296,-0.218872819685093,-0.218215281438813,-0.217411669279483,-0.219529756595768,-0.217933570848484,-0.211736427192638,-0.194650291763998,-0.162802031190606,-0.105049456989781,-0.0112928978102412,0.0647863581678568,0.104403135272597,0.10438869098536,0.0914283843716876,0.0843620246685921,0.0648570127623336,0.0819992677333159,0.122636308983026,0.195084857571453,0.224544771599433,0.168251274516983,0.105085505031548,0.0238572464263302,-0.0581883310553624,-0.137201696297759,-0.199889450886403,-0.218829880039551,-0.224663558165936,-0.218166401253167,-0.220528926942984,-0.218749580834292,-0.216961331382223,-0.215374878342948,-0.214502600075589,-0.20234064165816,-0.178715636741467,-0.147116328270169,-0.0605890403964535,0.0186345425102181,0.0540250086584487,0.0627117298779029,0.0626548493222801,0.0535228620302348,0.0363949445773084,0.0441161491007181,0.0780981452020898,0.148515899936417,0.15799514886727,0.116124546746074,0.0788732157797744,0.0312649282356382,-0.047682688631958,-0.133504024830373,-0.196779901499153,-0.221139353742685,-0.222953943133545,-0.218008865394331,-0.215560499748062,-0.220695852729078,-0.220521046589821,-0.216857048668556,-0.215309703559947,-0.207013641269154,-0.198941738670596,-0.179574477852079,-0.125794126224439,-0.0510463855227297,0.00569689974613379,0.0329818999241871,0.0398536283661035,0.0171435900861736,-0.00973964705870272,-0.00789413291781701,0.0347469304452204,0.102475386867604,0.110427859960008,0.0718872838618131,0.0566502924771999,0.0339287591235238,-0.0419516014296859,-0.136405333954775,-0.194985891797186,-0.224106699660921,-0.225699226196487,-0.218944080036178,-0.218665514072587,-0.219065364278678,-0.219273281433676,-0.219434308432886,-0.217512747540746,-0.208891320618709,-0.203180321500321,-0.200026584380058,-0.168567688925841,-0.094186470890447,-0.0258958528582468,0.0238715681267294,0.0224574274308683,-0.0237080014715034,-0.061409799120421,-0.0462395145637029,0.0216714341239133,0.081338989014282,0.0901151369010229,0.0676422151133989,0.0500278541634202,0.0136267202025143,-0.0630896246184596,-0.150934455041271,-0.21347014613824,-0.233026086968681,-0.228308178546147,-0.220630157199578,-0.217289921048803,-0.219909236355531,-0.218327487228643,-0.218459513689689,-0.211548506524466,-0.205523038371703,-0.201411603705258,-0.203810294692897,-0.161257454211808,-0.101792907640322,-0.0335159831699358,0.00868071428606271,0.00183671343366447,-0.0478045628774136,-0.0905427395969276,-0.0548436677401205,0.0338343098186905,0.082686472807277,0.0845753435151227,0.0684429764095097,0.0415417971527235,-0.0232769547343703,-0.109031761086191,-0.185781898614872,-0.23059004031543,-0.242273610125241,-0.229767696021618,-0.22004820522127,-0.2192183458199,-0.220699839903076,-0.216515716086659,-0.215385947548871,-0.208666107119395,-0.206500073839761,-0.207202288664345,-0.201233301272369,-0.160999871198539,-0.0909397026280049,-0.0312377727355057,-0.00548455634651569,-0.0186565397291484,-0.0654071065584663,-0.0845603140785448,-0.0253190224045081,0.0520515948781184,0.098486624044262,0.103644253884743,0.0697370559489656,0.0173919210376683,-0.0693006353295253,-0.14738489351054,-0.206410227009872,-0.239284275889236,-0.241620755857273,-0.227393716315993,-0.21975949140473,-0.217462503406388,-0.220214859423311,-0.219647131123455,-0.213973202208895,-0.207230596824538,-0.199916337767709,-0.200706112899136,-0.184220859245761,-0.134011292259428,-0.0945646839508964,-0.0355147458830846,-0.00353117180123834,-0.0246633218042062,-0.0311541944492204,-0.0203669081307195,0.0368933351729272,0.0951682357505394,0.133400310344646,0.131194772927902,0.0672091080075253,-0.00378249012772515,-0.102737873121371,-0.171579560600688,-0.217682544599695,-0.246945935911047,-0.242094874611961,-0.225072356363606,-0.218601106396429,-0.217078929549515,-0.218404093087732,-0.220587072090093,-0.213141639660402,-0.208989519948599,-0.195163614698492,-0.185223831151852,-0.153380194712404,-0.0992998863595228,-0.0632354772160942,-0.0189324015297279,0.0163193088348012,0.0313293171739383,0.0508329099122222,0.0775642683176361,0.115550834101265,0.146030885717808,0.156861458360332,0.12857902525347,0.0389816803127607,-0.0456854562639944,-0.137813055802327,-0.199947204700551,-0.225397911315703,-0.238640916805923,-0.231465354193293,-0.220814239920421,-0.220709075335188,-0.218619012241536,-0.2203152052324,-0.21725182781227,-0.215100653085406,-0.209539625761682,-0.193949994023689,-0.165117395621677,-0.131779835909008,-0.0876598570624036,-0.0232022262434647,0.0287898656564647,0.0872413582485143,0.109949466340426,0.136941045231131,0.143683639274717,0.145826512839476,0.149723581236231,0.131156050551428,0.0772525009550611,-0.0060176226499963,-0.105383581149283,-0.165819421212289,-0.21198030506407,-0.229938099066464,-0.234633855367947,-0.233092886712428,-0.221817735526146,-0.220623204869779,-0.217902996143774,-0.220284095952289,-0.21684533481026,-0.21509352791398,-0.212901055912219,-0.198348447406571,-0.176282447791462,-0.136882952660276,-0.0802366892312031,-0.0195670431156249,0.0581372731167415,0.122284642107539,0.17368440461274,0.185629370870566,0.167954580499267,0.145827879388565,0.123356052741248,0.0853499764070968,0.0269495707684793,-0.0634356119804063,-0.14187804142174,-0.177375468877525,-0.214169095278875,-0.225475015412769,-0.222551925209269,-0.223945259845583,-0.220167105518086,-0.217705227615597,-0.218913206250609,-0.217886407822527,-0.219686567747331,-0.216862118082509,-0.216811915132767,-0.209198576379295,-0.197523768624785,-0.168591443737752,-0.128143624106845,-0.0723133524410169,-0.00888136260800629,0.063197950782029,0.111511477136649,0.126352166628762,0.116915238497681,0.0993488819036495,0.0690906515240737,0.01870314153706,-0.0428070600335274,-0.10246526035879,-0.149179384787739,-0.180665677298168,-0.2011788683938,-0.212218529620854,-0.218192516591208,-0.217690731395501,-0.218570484456992,-0.219846090805717,-0.220772199133656,-0.219638003167189,-0.219511387496901,-0.220885271885907,-0.218561416314406,-0.218264556652956,-0.211145943274592,-0.19583852930033,-0.177143360894341,-0.145031065644298,-0.107869681833652,-0.0531159920376192,-0.0121137230556872,0.00641741065711149,0.00589601381932623,-0.00957374236723318,-0.0323682532928004,-0.0635239110177971,-0.0882810343601252,-0.131904458483004,-0.165462489192153,-0.191145831846413,-0.203380228365771,-0.213636929139385,-0.218642779655687,-0.216583154774993,-0.220175269451846,-0.218976417322504,-0.220785579926773,-0.219204713872289,-0.220090287242669,-0.219790815144989,-0.219953087595974,-0.220016087045262,-0.216128474570843,-0.206244502295842,-0.191745413855999,-0.180012217905713,-0.157354833820179,-0.129763661470142,-0.106722261737183,-0.100251247441717,-0.0972614321211604,-0.109783829509071,-0.125918615301402,-0.139035528160507,-0.159432937994271,-0.18555809249414,-0.2012564500578,-0.209516454517313,-0.211584050784741,-0.216906597390559,-0.218975701234505,-0.220500747767635,-0.21935940895582,-0.220025278249581,-0.218396868945701,-0.217642845664094,-0.217011196627576,-0.218134253880635,-0.220671189061176,-0.219215172795484,-0.220194413040761,-0.214933644403035,-0.216345416008741,-0.213131313837734,-0.213169129492348,-0.211071208154064,-0.212852405957348,-0.209151366033197,-0.206012850682577,-0.204483850801523,-0.208513479096991,-0.21138815701449,-0.208098994879388,-0.216002131708689,-0.219290711731602,-0.219371136501416,-0.218799202658405,-0.218145234528956,-0.216792686660139,-0.218237536254749,-0.220917211603534,-0.220906988143217,-0.220231969881136,0.213568431606513,0.207642754180779,0.208876521189182,0.207436530698458,0.207197882920294,0.207195376723563,0.209821521651229,0.20871736885555,0.208152527890669,0.209377446811596,0.209835542157046,0.207269014027751,0.207670600912864,0.207321323006525,0.207646450855165,0.21043719340556,0.207842279912442,0.210509725157385,0.208961027601313,0.211005276945389,0.209114445227463,0.211046451378267,0.209422619261618,0.210881090358958,0.210989917814091,0.209864542113273,0.207295628213038,0.208527379748055,0.207259374367977,0.209564930819019,0.21080926684255,0.208528767829187,0.206912644524847,0.210346619825212,0.211071691246221,0.211026205042462,0.209479380833062,0.20997171204121,0.206462578744035,0.207392387669361,0.20661146615795,0.20817510524521,0.206289153157822,0.205449893242275,0.209652120461272,0.206889775650194,0.211177887590336,0.209205566483315,0.210881762417675,0.21046270395311,0.210568939408868,0.207632839645545,0.20807715874339,0.210845105072084,0.208976804327475,0.211327220828652,0.210414819337917,0.206984984218218,0.21061173536401,0.20706614402601,0.211264597068461,0.209766353500455,0.209858799204614,0.208096185328205,0.20877355863145,0.211034775004666,0.207167975110976,0.204055757512369,0.195124730293887,0.192254247099863,0.185347891569963,0.179370890835575,0.186742142256224,0.190982414400089,0.19281086107471,0.195337106461439,0.199635108817385,0.202691129491721,0.207154248647185,0.209621047176891,0.208959121823437,0.210783650218507,0.208396935759397,0.209977434964284,0.210908931262079,0.210064150029604,0.209157795813926,0.210174051562143,0.208206664831529,0.208417580893542,0.208605220890268,0.207748733695198,0.21382845899985,0.213598223641501,0.210251965552763,0.207223130624641,0.206749981886301,0.202888842626454,0.198843914333793,0.194468085898713,0.19929927508242,0.19332574246216,0.199887594290243,0.197471228839134,0.207036296175354,0.211730201489614,0.213628647234703,0.213923070195978,0.210273210925743,0.209372419684123,0.20626262426012,0.209036359329244,0.209573135277299,0.207298495686115,0.208406972613245,0.207469517292697,0.210241110847625,0.209291610964493,0.211339557860722,0.210957740112174,0.213188359113699,0.206114705288071,0.19116836068143,0.1766812558368,0.164087109933507,0.155275121283615,0.136316564318697,0.122525867601963,0.102501937142874,0.0994466233092566,0.106377486284904,0.123424278633438,0.150163320037799,0.184137327621905,0.195900880280356,0.200964323521076,0.206257351564416,0.203087340139292,0.206817022641582,0.211021886935197,0.208489761643863,0.210452884241455,0.20918200034866,0.209214199491366,0.208433805149493,0.205903028521306,0.20247079412142,0.197460516229518,0.185926918349414,0.164868177997966,0.136648768765655,0.107154981946585,0.0692719938883143,0.0353017129140155,0.0177012097502131,-0.00418319889301362,-0.0280393441921079,-0.0440680209890688,-0.0329870966151616,0.001517857386454,0.0602893114812835,0.102460720917206,0.147843766978881,0.187025973234922,0.203793798342769,0.21066485947017,0.210282359016078,0.209884611152843,0.20781157439512,0.210324451635376,0.209935647480089,0.211813918213097,0.202607350196309,0.191964750193771,0.182116022155249,0.166955746804634,0.138902651600592,0.104908236340251,0.0689268130466068,0.028027147195682,-0.0100901881420125,-0.0557578623130227,-0.0639654776119659,-0.0588794284359045,-0.0817956690711424,-0.0942977612147894,-0.0921628453425356,-0.0686014988306242,-0.0199131535449594,0.0337815873883097,0.100332577986821,0.173640264040533,0.212328430615063,0.219417368337952,0.213539775523052,0.210510156627198,0.210298658388013,0.210725891929177,0.206852248617487,0.207236625573124,0.193151944911538,0.16581478016236,0.136543506400906,0.113798684976891,0.0672326431869086,0.0281028056435584,0.00249915742695965,-0.0517715236858198,-0.116946411076499,-0.148047123485757,-0.132120115528499,-0.111606939930834,-0.107125063564817,-0.116257692726684,-0.130372624882465,-0.1137769782314,-0.0964826655330571,-0.0438641854429256,0.0311121855689136,0.135570981581322,0.210701997344707,0.229194911946579,0.217404465661335,0.209215883668942,0.210124727026011,0.209128057457966,0.207738890033917,0.198059182918427,0.180006938900435,0.143878535858755,0.114827638239909,0.0713907128826666,0.0243094005225922,-0.0251270398270802,-0.0735120222586999,-0.1393668742037,-0.191150321454575,-0.194977747964702,-0.153622100339311,-0.10436853504809,-0.0905851851236283,-0.111032816395127,-0.140942322539504,-0.15105111204881,-0.141978945681808,-0.0986944924238441,-0.0133716856920051,0.0881133355289917,0.185457275841687,0.216270875396463,0.221386523654048,0.209570400651784,0.210813019049597,0.207488496469024,0.207448447887163,0.196679940702814,0.174624551179116,0.138304643979707,0.100278531728559,0.0569070818299378,0.000184429908610013,-0.0621341973580273,-0.117742110694616,-0.168578001139133,-0.197303026739774,-0.178249819902056,-0.115562021513586,-0.0679936318964376,-0.0674100285019947,-0.113255942175888,-0.146620528149388,-0.170426540054346,-0.163015428017891,-0.1325857706076,-0.0573760031261775,0.0471688321484332,0.137012831762913,0.193647332693537,0.218449315397164,0.208202570168813,0.2072206355949,0.211091323792057,0.207812217428543,0.20119889198642,0.17532543398324,0.14901146599731,0.115231937255142,0.0593574636255955,-0.011235122133983,-0.0629976298195716,-0.128802096265262,-0.155785232318492,-0.154993710049199,-0.11806991474435,-0.0412830808756226,-0.00883386500748048,-0.0403026063495462,-0.0930581267539906,-0.142223760964312,-0.163347832104469,-0.170731596129907,-0.149747100732438,-0.0777427945467297,0.0243786742603256,0.104977119434391,0.176166598678465,0.205385199288539,0.207158764259082,0.208694604132064,0.20695879702759,0.204837373432612,0.200355168775227,0.188776310663057,0.169207139617721,0.123968609741585,0.052149434085697,-0.0233281677412284,-0.0864299095250013,-0.142451455810833,-0.153935688113497,-0.130691673767112,-0.0795418130048673,0.00543680795308489,0.0200914148819235,0.00353280251685741,-0.068141556579199,-0.131070452094065,-0.157283204633116,-0.162122387580043,-0.13958769313324,-0.0668518042529388,0.0307697768856868,0.103206040296449,0.167413854382179,0.202993202591456,0.206674504704545,0.208918038103799,0.206510763242218,0.205468235919039,0.200978103060762,0.197922848466374,0.180951335162921,0.131804334528969,0.0408878075347156,-0.0388129481214704,-0.0994407399822022,-0.151767880029547,-0.159888090604007,-0.120720353996906,-0.0515647215337766,0.0211612762231846,0.0395027522053461,0.000915079513751746,-0.0778938437045551,-0.127041149600419,-0.136762672261656,-0.145762079331298,-0.122981458294041,-0.0471712251715188,0.0392201262989521,0.0995920927789824,0.171703560515853,0.203928585757583,0.208623112153555,0.20895547618518,0.207778639090864,0.206312009359432,0.206629641865873,0.201362665501462,0.181929839049796,0.111159406978221,0.028071859936103,-0.0649185499826705,-0.124019261200405,-0.158299458904271,-0.142401611094902,-0.086502260520937,-0.0288615066918634,0.0268615495945685,0.0213081137388581,-0.0213319725312143,-0.0991412290605853,-0.138995187593565,-0.140238639309144,-0.142350841913199,-0.115622418049379,-0.053959932120844,0.0294708601740199,0.112889371259051,0.174323775505928,0.208302077382184,0.207188659877416,0.210065324951969,0.208599536773519,0.206268860949252,0.208115936149144,0.201310340097569,0.17575481673024,0.104946949233108,0.0248350854661005,-0.0684762953559811,-0.130119639641136,-0.14460341370854,-0.104123974524941,-0.0419332977193428,0.00162962959669984,0.0406429753254649,0.0315957943546743,-0.016313837275158,-0.0911111289789557,-0.129063857417035,-0.133066577751326,-0.13843376590765,-0.126264460172727,-0.0602286866534932,0.0277089273981946,0.119929771015337,0.180038203677954,0.212497104471166,0.208162910380254,0.209856916870733,0.210739085161095,0.20952466346058,0.208768129497303,0.204256930944079,0.170804537233895,0.102513927547916,0.03725883687005,-0.0369190297444937,-0.104042189760474,-0.0951734090596314,-0.0448228989533078,0.00115281634193069,0.0481692347706338,0.0811994756836232,0.0661629103277815,0.0259692504445444,-0.0499883004099587,-0.0883949604790303,-0.112918954280541,-0.143436755657586,-0.141693176360034,-0.0745692659304049,0.0327046089314668,0.129523945960556,0.188726001188616,0.211501862197588,0.207609189521609,0.209754607866313,0.208608619514276,0.20935866829417,0.209045187169523,0.201638264234162,0.171755104658979,0.111939159185183,0.0582147413463998,0.0118367439788069,-0.0348291084765494,-0.0388436122557204,-0.00735158401458471,0.0452557191473745,0.0911223091133909,0.117145861504989,0.10889441323558,0.0607577499074177,-0.0186954182655999,-0.0640633601790913,-0.0927437306039398,-0.132800200448175,-0.144592357511087,-0.0649785003378708,0.0532366797354799,0.146487041477249,0.198993413352297,0.216275706579319,0.210069547595609,0.208185795819285,0.207061252385485,0.209132101149034,0.209212688626564,0.203776591251708,0.171117410805691,0.118242364776567,0.0895612911198466,0.0540282727368997,0.0131843757543299,0.00682391430865267,0.0255813599518371,0.0685154831210192,0.122448257949204,0.151013954698663,0.131260934359781,0.0573216591822736,-0.014362499791722,-0.0604175357270219,-0.0945478731287672,-0.11810084543891,-0.10480323598623,-0.0121929318130384,0.0992031740161712,0.186096090682354,0.219490479930253,0.221310776804032,0.209127627079616,0.211128828702516,0.209262238172174,0.208418747453091,0.206209408601697,0.19971096433024,0.170799700338615,0.125013341870724,0.106362204669191,0.0696666118439585,0.03357714514708,0.0214186043581259,0.0397558538010969,0.0759449741122012,0.130444699191038,0.153095225841018,0.112707477907453,0.0171808046791648,-0.0449876232854669,-0.0851910153886197,-0.103998892308097,-0.106052113135907,-0.0388641330857377,0.0523870920459662,0.156368160791649,0.223331890450215,0.235477284288774,0.221927030733153,0.208669497410236,0.20921045135,0.210145948387596,0.207764455161539,0.203534907792072,0.196231205732554,0.16873849408359,0.130897133623255,0.109912121212167,0.0766005571286374,0.0331773642373318,0.0131464123007219,0.0259703464905655,0.0626513180726934,0.0987558976332916,0.111208509222999,0.0483320729051496,-0.0307154128598447,-0.0949263455340042,-0.120046162705414,-0.106156968499047,-0.0664373871518123,0.023672603000841,0.113399589531929,0.193237705639722,0.240635837098862,0.231316427534568,0.218947545329117,0.210728931950137,0.209633771615343,0.209640919854488,0.208534369812997,0.205147568118152,0.19283643640099,0.174691549861923,0.134506064391752,0.101499275559988,0.060871957466493,0.0297890934997605,0.000299474306560698,-0.00915258726604026,0.0139807378891887,0.0196487293808265,0.0134398643152578,-0.0410699676233409,-0.11017397550822,-0.14383368936289,-0.151040374633312,-0.0947534736403507,-0.0213799744450185,0.083401073455297,0.166775743290918,0.221458930795219,0.249147630943921,0.23371712065625,0.215451142416489,0.210208574068105,0.210014255614014,0.208276762298025,0.209692797899426,0.204210328342476,0.198437483101289,0.173259315193239,0.133959468633844,0.0877932443329963,0.0334005945210591,-0.000965426664645833,-0.0335952366516511,-0.057100458188581,-0.0600286250724549,-0.0703834159401666,-0.0957826671541959,-0.128316495084951,-0.157246909048097,-0.162559950306233,-0.140152086857401,-0.0486704601926536,0.0377855499198325,0.141970540888238,0.208637926247044,0.234445293862235,0.244189365099337,0.225245884791511,0.212616069964425,0.211069966537833,0.209017786830494,0.207382778675007,0.209254176919777,0.204123201679085,0.197819395768313,0.179047069642453,0.138716114906339,0.0870633009925622,0.0262673176113138,-0.0278436389032228,-0.0787041101529287,-0.121634210634296,-0.136218034576617,-0.144064566311397,-0.150514396055653,-0.14936520945151,-0.147294323424101,-0.123945108730507,-0.0679047205736104,0.0214538648506909,0.120986063104253,0.180977878973393,0.219094914547985,0.233533331917461,0.22829699617525,0.223599781283717,0.209264102635633,0.20785663709046,0.208012066088608,0.207895600954878,0.208027238914286,0.207449196598759,0.20059227520377,0.185573037045955,0.162394262714236,0.114597510368818,0.0523086296262995,-0.0165999372086602,-0.0820842532079707,-0.130202700329785,-0.162445860920226,-0.168591771532814,-0.147958083353927,-0.127050322666328,-0.0934936865834916,-0.0544824412538608,0.0101640879012257,0.0945903755968569,0.163347700769516,0.190601946880672,0.216752226563089,0.225442196632755,0.217203263777272,0.212021559486172,0.206740274995043,0.207878067285024,0.210575797549335,0.209410344091849,0.208663036214449,0.208644553298892,0.204143506447408,0.199537435218376,0.184624243369884,0.154509706951625,0.124469589373775,0.0816143211252881,0.0267735465734738,-0.0247530231994168,-0.0569642661245967,-0.0645877124941685,-0.0534534829329309,-0.0361360620198787,-0.010688116873125,0.0409211978675339,0.0909224383619092,0.137536512001225,0.168614087188345,0.187139017666074,0.194854881032865,0.208499717765974,0.21182497638653,0.208021320159493,0.210672266624456,0.21097510615973,0.210028544485344,0.208652562999648,0.208731904294557,0.209921554810728,0.206835881516563,0.208213699096265,0.203244999827949,0.189048200899367,0.170733449295543,0.148295102743508,0.120782678087822,0.0840238510118935,0.0578930967258016,0.0496705459010868,0.0487438421667811,0.0591095902790534,0.0762014917912351,0.0958475242106154,0.124625017120151,0.156568161430426,0.179080891809152,0.193632364366176,0.203679764234035,0.207653488625161,0.208566359923367,0.207855198953853,0.209861883599144,0.20717602624561,0.210651393802638,0.208382719650592,0.211144342655352,0.208443403910404,0.209015607347837,0.210311351608703,0.207216074773351,0.198084686562509,0.18627979836824,0.171793062255299,0.156900014813481,0.130769182393133,0.118351586047864,0.117471617738075,0.112908880555925,0.123061285639176,0.133982440501948,0.150256937927464,0.163351230705641,0.188281064859584,0.20324756048086,0.204877175022592,0.203524890670277,0.210441582843203,0.20926732900733,0.211108488195048,0.21096362747572,0.207666064553061,0.208415289059414,0.211244795309878,0.208405015880083,0.209057072894497,0.210198560789284,0.209977857300534,0.210583423183212,0.204483605578865,0.203530286262827,0.204882896172609,0.204365324707958,0.199850106954765,0.202708123449021,0.201289407299677,0.195755750091133,0.197797932730696,0.199769732740401,0.200620633810955,0.200245924511155,0.206579914395777,0.20984739414534,0.210056202821566,0.207760533647107,0.209829305975661,0.209806722479954,0.210325502842385,0.209878019547215,0.210404429659577,0.208477368503957,-0.197848367605017,0.237793211869044,0.241955063609441,0.239944252691651,0.240050537186232,0.241523883444315,0.241424229680697,0.240793139606304,0.241374935100659,0.239927314587382,0.240623783604697,0.241465336106268,0.241641695160995,0.239614288653759,0.238390746793871,0.238294303779436,0.24064221508178,0.23865315694508,0.238792963721326,0.23903801869807,0.239512689472327,0.241529388527087,0.241624404584522,0.240840090379612,0.241639790239349,0.241165159431446,0.240497627721869,0.240792815488823,0.237823467582985,0.238898397240861,0.240851441981837,0.241111345288195,0.241351223680113,0.238207825937257,0.240919743108401,0.23823595147605,0.238674866654041,0.242295027629266,0.242293280876182,0.238048063344722,0.235879482503258,0.237866506244095,0.234662235876908,0.237352004337817,0.236739556206665,0.236629551547962,0.239747364777771,0.24123198598691,0.242864569442228,0.242765564321918,0.241161001321175,0.241861872249136,0.24091622470387,0.238275476757963,0.240809628433969,0.240425461998239,0.239209394393041,0.239808417315403,0.237972432939268,0.240023850254134,0.241189785664775,0.238360037204763,0.238271790203048,0.240614946989422,0.240917195219366,0.238901651341634,0.236939757452443,0.225010975224834,0.218213233064638,0.212223537551954,0.203062595646867,0.193582870136771,0.205794564639355,0.215775856056955,0.21425676731178,0.218576466123792,0.21837564695197,0.227481832427791,0.230055453261954,0.236949330529595,0.240230404763572,0.240937934157293,0.238700889798983,0.23835931928047,0.24178346871523,0.241088055202061,0.23990836902378,0.241223655376684,0.239729870495182,0.239965882251845,0.239288479514137,0.240201415666722,0.238050200156358,0.237430907545442,0.221294552205128,0.20527865666288,0.193487635426939,0.181471401574265,0.170104453514313,0.167534582071624,0.171918895170823,0.185402260681196,0.19134187969911,0.199015351125315,0.205058476079827,0.222728783315459,0.232499960890848,0.231557004584936,0.23544522192262,0.240021800742279,0.238745902235471,0.241201010554357,0.240151049709533,0.23983849773353,0.242169245655471,0.240030281480468,0.240872455880246,0.240665041002197,0.239972658173711,0.233347810268332,0.231490273859953,0.210007751702933,0.18412396688704,0.155838120946002,0.132806789750842,0.10852866839542,0.0971161886983451,0.102593928331475,0.109897487551876,0.120423566933104,0.14375038390176,0.17376448848696,0.206247750081651,0.224120572499908,0.233599099055847,0.229678919296719,0.234735102162213,0.235037170381058,0.239797047386893,0.241865289391138,0.238719679444873,0.238630871542274,0.241792136895982,0.239038490905734,0.240878055694312,0.235324974185424,0.230683552868777,0.212162448844711,0.188737195565821,0.140677022160098,0.0960511475803968,0.0378812650585567,-0.0252826154141662,-0.0544452507928981,-0.0680113819032162,-0.0811481870086079,-0.0895570036335612,-0.0817836436859122,-0.0560904080236134,-0.000494791331996811,0.0772822097430121,0.128349881060718,0.159853192221447,0.191528596365944,0.210426609247664,0.221049901883484,0.231963257380534,0.234627913661414,0.239354524479426,0.241976282349124,0.238864134640824,0.239360913403682,0.241016029997255,0.232864602666137,0.222249559454045,0.191678073804412,0.140953135481599,0.0775399578544593,0.00263519610320407,-0.0680810127881274,-0.135307746490078,-0.176219282791463,-0.210138105196929,-0.224989349435227,-0.22134888487962,-0.21564304666117,-0.184143758965037,-0.117211066149474,-0.023827973503374,0.0532941481493555,0.109131373643317,0.161344337907248,0.19405426975944,0.201839495120957,0.224780948531141,0.234612665651354,0.240502073243113,0.240483975091902,0.241654418264812,0.239323462037018,0.238911319864483,0.235417370918158,0.214688592899569,0.177421194950596,0.114129620590853,0.0303482532651223,-0.0387428161890231,-0.117121513573815,-0.2011118223654,-0.238851980609673,-0.237177304370636,-0.222285281598906,-0.220343351955905,-0.212590583797266,-0.183599315803091,-0.116992746366607,-0.0506585197781493,0.0303172067056569,0.092147792590145,0.148436465623334,0.180086192457714,0.19354064362924,0.218344744811763,0.233523247405302,0.241748083922788,0.241980259060618,0.240818191170275,0.241549968744349,0.239543835126541,0.237310230459846,0.216353425580132,0.173996065476342,0.118155767845939,0.0288899707777045,-0.0582733639079264,-0.158072142730177,-0.210273326291449,-0.201238157544319,-0.144944762662356,-0.0836513353198928,-0.0610888022672143,-0.0778502104816456,-0.0844651552682298,-0.0743927765889927,-0.0313823126943726,0.0394100383433109,0.0954286222249378,0.147049042565958,0.186433408034894,0.189434512300632,0.215643019363258,0.230495874062479,0.238700689789902,0.240495392098668,0.239653841463778,0.243755309020908,0.245675583808579,0.236389761168051,0.218092823255474,0.175531735844036,0.117396233917169,0.0169236083629258,-0.0822190549990589,-0.176873754965473,-0.179461111254196,-0.11486701236478,0.00284045841472173,0.0849932156056171,0.0924892966719564,0.0287299260044668,-0.0380135594687363,-0.0805177512680313,-0.0386921430869979,0.028595424105488,0.103524251652993,0.167335735146822,0.184042624700381,0.198020245610681,0.221170484852489,0.234500143328657,0.239050766829865,0.240059143623806,0.242069008582988,0.245596683229758,0.246331586157055,0.241643114196723,0.217875399957446,0.188405729873654,0.0964205181585083,-0.00738070032110635,-0.118428216259182,-0.176264191389204,-0.138804480741869,-0.0419116026408498,0.0797352101896337,0.146045343350546,0.100547475141693,0.00622154118307307,-0.0888317484542666,-0.121386794263338,-0.074863288550452,0.0143965067719364,0.116259400522201,0.186030038997268,0.217307040432331,0.213226186221609,0.215219322086345,0.232152061128013,0.240055824085635,0.237925951450946,0.239501522625197,0.242894769645575,0.241948568895703,0.240617489153572,0.212341882635507,0.179801812032597,0.0945740173525913,-0.0292210902140482,-0.127986178501326,-0.162544565904442,-0.132891202653101,-0.0581411405141774,0.0306312167173737,0.0396570510207951,-0.0112173835218364,-0.106614415944511,-0.182692886751687,-0.187721693332832,-0.101271192933406,0.0321445427184911,0.166512513778487,0.245630379345243,0.260802357542429,0.233200939323609,0.223866300679722,0.236309721202827,0.240466573717511,0.238473191784587,0.241619853089453,0.240644440066102,0.240132225932226,0.234396056473515,0.217982301972535,0.184830171694263,0.105739369796464,-0.01464068162079,-0.103450994394727,-0.150173798521777,-0.175219073422939,-0.15434170135034,-0.123309979583457,-0.121418287646009,-0.162025302060162,-0.235345444130148,-0.264813362035008,-0.210861901039037,-0.0922098804313639,0.0737589515934679,0.220089769878203,0.290773390783059,0.290272024919761,0.254333397659309,0.235214297338589,0.237026386077289,0.239015766920333,0.237968514776649,0.239773599546354,0.242299736541432,0.238381216043229,0.234227598704587,0.241439273448047,0.219385578014808,0.129260881714203,0.015496810434652,-0.0786949979610241,-0.15040938851171,-0.219462892217883,-0.259473355600999,-0.252882171410102,-0.256761508292553,-0.271185398070665,-0.307500108495283,-0.296132589505588,-0.216661348562558,-0.0443514052509858,0.127978538905531,0.250762860600942,0.293968928219075,0.30509367705421,0.268610483214578,0.236916075704068,0.237041612059997,0.238242596128907,0.239932534906907,0.239579184580633,0.240786486705724,0.241375463243457,0.245332624408123,0.269332444408016,0.267566675745442,0.187822608882621,0.0700527356660662,-0.0402406364405923,-0.141131147313372,-0.234721357624201,-0.293310947684274,-0.28745406076646,-0.27632541132225,-0.273572365539363,-0.294922747078105,-0.275496315406585,-0.146475209641445,0.0167264395632319,0.157009833245325,0.257254761967615,0.287162973198254,0.302398487380202,0.26990930370539,0.239959746097027,0.240718908471694,0.239860799471192,0.24077844379171,0.240927757899068,0.240790945528871,0.237911285331112,0.252430110510971,0.302085087384286,0.322207277978286,0.251843826927328,0.129280015783089,0.00298807566635029,-0.11026502898113,-0.200129378095128,-0.251121202017806,-0.230396268783226,-0.204606199723192,-0.19872281918519,-0.23312034785954,-0.190045538924176,-0.0717830507536019,0.0593906298387826,0.154499885195179,0.22760051103126,0.273143304972672,0.284401510206429,0.258458370821605,0.234828975676977,0.23970071699411,0.238758196766787,0.24143090476054,0.238422099772473,0.237723341316385,0.235205389426217,0.25552504450862,0.314389208133474,0.341074374917263,0.29230123475626,0.172925950913549,0.0359896692744666,-0.0813022494019621,-0.173496615035395,-0.176688643048513,-0.127781917329069,-0.0894994105766954,-0.110750103820495,-0.149491097881991,-0.134424157729679,-0.0285660688934403,0.0586337487960159,0.123770219791155,0.181743032553576,0.238264447481775,0.259774578040285,0.250204040459425,0.237403931658355,0.239543319642599,0.239786302967857,0.2397799824198,0.241238104708355,0.236715378426334,0.235266649449236,0.254151090647742,0.307820725135126,0.32563735263514,0.274341509091925,0.169040398536917,0.02677936005822,-0.0938549833092151,-0.142852074242599,-0.106986046947332,-0.0250862151007906,-0.00232160467309907,-0.0516350697546268,-0.106137583316729,-0.101427123206878,-0.0355757816520813,0.0302151495769842,0.0830401166218425,0.142687707242512,0.199675135647188,0.234378458407158,0.240338702621919,0.236477513581132,0.239627708256529,0.239330660412585,0.238801841186114,0.239546708970881,0.24103291195891,0.23328383239032,0.24489752551221,0.288178475223242,0.292382441950569,0.222779172660022,0.128119132631557,0.00713227607911168,-0.0989416694893368,-0.113692719489984,-0.0395549313516097,0.0631176331984986,0.055012793070599,-0.0244181527255718,-0.0910591670546661,-0.0859602193526401,-0.0514395762322322,-0.00409124468439058,0.0544412959847411,0.125212707560832,0.180008214109931,0.212281095249509,0.236172024235623,0.236382632176755,0.239093647372628,0.239417442767567,0.238936265258996,0.238148919881395,0.236773573328706,0.231002485867832,0.23563263636341,0.26693693984952,0.256710807631943,0.174588364920456,0.0668770661116432,-0.0249527247923729,-0.0838514580607335,-0.0520187559346731,0.0420694342928213,0.101482268226074,0.0627067557665899,-0.0237543462446673,-0.0979836916829461,-0.110315751164367,-0.0856948696808008,-0.0341292873693278,0.032044706678852,0.106184200618687,0.160332912758099,0.204429701866255,0.230470066676856,0.240076132474636,0.239151495346553,0.241216565784146,0.240410729367258,0.239854068203701,0.238125093966978,0.224563440328827,0.222634146592284,0.234196849533583,0.20319209726925,0.125988439901204,0.0557456267367657,-0.0159621566095787,-0.046537327042087,0.00465332446796361,0.0480102398864097,0.0664212598783614,0.0166232857516358,-0.0606211840110541,-0.124349917488702,-0.152280250079961,-0.111863677546505,-0.0502194107801357,0.041600727286605,0.105868933207662,0.15712423290975,0.199776361874042,0.226601851519384,0.236425148746526,0.238416056627106,0.240700762234554,0.237984943242611,0.240392185342787,0.23772133826888,0.228116763524397,0.213552414765952,0.206753232204652,0.160839852270132,0.0753662343287576,0.0270262385152452,-0.0249332250826313,-0.045474929575335,-0.0244419924902966,-0.0228510946475851,-0.0376264613230362,-0.0790746093731864,-0.121997367737755,-0.170108529736933,-0.174064494055343,-0.107407028136098,-0.0332804061690835,0.0620765844717225,0.129095950545208,0.176179189514604,0.213044357939623,0.228903443933957,0.23732461944722,0.24158935578897,0.240573742813541,0.240167770542923,0.237885326650463,0.239213291320224,0.235085632641082,0.215446303184166,0.188884652626358,0.139689916743816,0.0728817382109006,-0.00253187264678967,-0.0472657297828659,-0.087934880879137,-0.111399518689043,-0.135940970724817,-0.1402445650845,-0.151137811907052,-0.164820579900961,-0.162178949124217,-0.131563622339137,-0.074817656578511,0.0225254352188529,0.100533424725121,0.158664251122402,0.19372169022373,0.224024339008874,0.236373669539739,0.241752480800252,0.238943515386799,0.242104325760329,0.240132865624899,0.241254456484414,0.237340027885535,0.236748078135179,0.223835431792762,0.200016936027217,0.147650257873457,0.0871842304706616,0.00751019049212425,-0.0591823959789133,-0.1090225577579,-0.17277239965437,-0.206440258480353,-0.20625346575163,-0.178809497233173,-0.153956416019794,-0.130016845090255,-0.0795179096440203,0.00134358396888064,0.08947154636187,0.148242191724204,0.190151876571928,0.22043676295115,0.234618384894419,0.239245222291555,0.239772564985506,0.241532030619373,0.238518623254574,0.241636260918739,0.241598090933387,0.238708332486368,0.239795748517838,0.238336924836608,0.223805334453207,0.195564014571487,0.157093578365949,0.0887317091804118,0.0107590261389332,-0.061172107632161,-0.124096979042399,-0.156585302657643,-0.151140742687557,-0.117009014083739,-0.0768109488360456,-0.0311257858634883,0.0260075557716354,0.0927892776536753,0.149112739965772,0.188067509921375,0.211458599458243,0.226568236572916,0.235988731217298,0.237718437591672,0.2411422618475,0.2383164822212,0.23882509399919,0.237841688943762,0.239778774914086,0.237746896625277,0.239946313129206,0.237178527483805,0.235852024156676,0.238722655517151,0.23296795682443,0.211595685676471,0.190146071004241,0.150291476985913,0.112900667753482,0.0827183820639823,0.087590475220147,0.103098368019917,0.114967055864584,0.119305788576272,0.127360718658411,0.153955015719304,0.185092027412421,0.204337680253192,0.224058174911928,0.236716294510046,0.23633624826234,0.24167698690176,0.241914374731412,0.240364876192959,0.241172500770151,0.240618537754389,0.239203942127912,0.242025726703461,0.239485513479362,0.240455991947427,0.24120236356275,0.241227067461918,0.243645315515492,0.241887566754636,0.237923019442438,0.231937168649731,0.223642097610563,0.208345496457604,0.210562494060303,0.210861399758045,0.216253825967681,0.211294099298701,0.213244314087934,0.219317974072757,0.22586273693624,0.230269160734904,0.238454495395478,0.238680983684638,0.238715910153858,0.239994924390339,0.239847572389263,0.239376610046077,0.23986472011706,0.241826480722912,0.237912791380665,0.239018481765327,0.240886300447732,0.239166076740064,0.240240511094587,0.242900951091132,0.241107919897454,0.241866127934021,0.239830872500536,0.24215149346627,0.241092070909824,0.23924121010292,0.241454390087487,0.241544087091454,0.241531958935697,0.242191986368045,0.241725434570393,0.240998640733825,0.241449725038382,0.241259644093394,0.23956712999966,0.24101371535665,0.240642524940626,0.23938307553737,0.238066813279712,0.2381836497377,0.238214239644812,-0.231886854018153,0.0892359213268855,0.0924013277665686,0.0924869386220586,0.091441362978963,0.0919200045400768,0.0914285594486094,0.0924971971189055,0.0891198529885207,0.0919858738514224,0.0895833779025637,0.0923512814838829,0.089627652581237,0.0883715237155616,0.0924075846445776,0.0898802822825464,0.0896735246250791,0.0890375329980432,0.092142256569828,0.0913607076943238,0.0892690595667417,0.0917572946792524,0.0886816308203344,0.0923745674704024,0.0885511993790295,0.0912934118858344,0.0926764722042526,0.0915261864934497,0.0904796751979504,0.089038185852143,0.0909240643705131,0.0895508230332275,0.0902825264721806,0.0919008708890399,0.0886657016975594,0.0909802340699795,0.0907013898172005,0.0909793315615541,0.0901756435957006,0.0929163939754482,0.0885326675842441,0.0912078038280266,0.0901111798853006,0.0901060737399785,0.0899704715468391,0.0897888293987371,0.0851627377557754,0.0878884173194051,0.0858671003586209,0.0852164089378954,0.08769060845949,0.0927187556826413,0.0907259876584993,0.0912494331983023,0.0905845450168857,0.0887571373656348,0.088370886858703,0.0890926697345564,0.0906162139312284,0.0889375936317182,0.0912631100401706,0.0907105181844721,0.0884658434669429,0.0914791606593546,0.0895479684124742,0.0914379325715706,0.0846708371302927,0.08015980117768,0.079632555254793,0.0743947678062059,0.0654866817524261,0.0519762935595912,0.0433629214499374,0.0374756911029475,0.0354039836618158,0.0356954533526353,0.0475020434402442,0.0549901374923392,0.0688016613556186,0.0785166811033177,0.0851143680665056,0.0915941023549502,0.0891569987510328,0.089229884753006,0.0890818881989072,0.0924508046513728,0.091357855545678,0.088988552445393,0.0892358066352908,0.090351098926818,0.0906185696720217,0.0892825765644163,0.0901718752683168,0.0884743257366626,0.0807728542104775,0.0787015590673246,0.07415570149219,0.0663101397839724,0.0546008452003531,0.0238469428610619,0.0037708557804476,-0.00659870743539065,-0.0104795249092666,-0.0201964925287076,-0.00133306966323168,0.0195093193243942,0.05036675310905,0.066356825594428,0.0856232699797519,0.0911628241423041,0.088425677197222,0.0896014267848709,0.0902006820637378,0.0915979564154985,0.0900618633666101,0.0905030102975435,0.0878986403727246,0.0884108054183236,0.0892838297721052,0.0904965056984838,0.0825800659887248,0.0735291060305976,0.0722862105125108,0.0692398652805014,0.0732929173654728,0.0739663800906984,0.0414796502429292,0.00570492264089138,-0.0191398079900649,-0.0352118115427782,-0.0467502655642821,-0.0435375026111919,-0.0236737699813316,0.00708814238110247,0.0360258375594499,0.0589959771356382,0.0822024145356919,0.0867074745253032,0.0876661942329998,0.0915913873198132,0.0909208073476386,0.0911260309416892,0.0903718742554357,0.0916078231763574,0.0918671357013941,0.089099936960335,0.0864884511051752,0.0815703542191343,0.0706091078841059,0.0675933936297627,0.0671997751309854,0.0641498008210393,0.0656450945322539,0.0699682535395508,0.03431849827858,0.0086706319131987,-0.0170078935994532,-0.0370339015266395,-0.0311551640228308,-0.0324246952901638,-0.021751816929912,0.00119529024735423,0.00993401442145879,0.0287753868936765,0.0567017162136803,0.0724823156766209,0.0836180629432407,0.0907722413882536,0.0905943453289974,0.0896575174748601,0.0896184381404784,0.088574664827836,0.0893833451971,0.0929394432789024,0.0848703950641951,0.0797701752802128,0.0676461351125478,0.0616286084748507,0.0735407317614313,0.0679672637361159,0.0533621964352149,0.049389630599728,0.0381809950110399,0.0263568496289984,0.0130503336829876,0.0107543158785127,0.0137336645964693,0.00174576598262913,-0.01512075335548,-0.0156428056947952,-0.013767577195082,0.00641662584077789,0.0336668904548144,0.0699781676748732,0.0873188416598458,0.0943003909764476,0.0892494825553833,0.0924133852493763,0.0902464135068066,0.0913365374998562,0.0934330090615809,0.0948761453721467,0.0930584965613398,0.0923227388967576,0.0834341732550912,0.0818538003871067,0.0853304547979839,0.0741604181976088,0.0567621399275088,0.03286178648468,0.0329746060185836,0.0273306136282351,0.0338553619277147,0.0445829101583107,0.0523469590066541,0.0310000478863831,0.00479593715249269,-0.0169538365534364,-0.019636668830847,0.00301277625135485,0.0389501435068292,0.0794706097548718,0.0939494497338808,0.092949962100363,0.0889414769602617,0.0926558751667423,0.0883507799148193,0.0908957482169435,0.0952646855848445,0.0956864667103878,0.0963439032763157,0.099138496783919,0.0994650767441399,0.0904728874539716,0.0879903577284056,0.0705790927148214,0.0298731806281628,-0.00123590787589868,-0.0127603210165916,-0.00541039993361158,0.0212993106704911,0.0509743770224681,0.0517090456020332,0.0191090208090798,-0.00382143189791197,-0.00945246546847768,-0.00779209054107179,0.0198207666948235,0.0477155537584499,0.0898804590679225,0.0942891292226749,0.0870378591463564,0.0912221564523574,0.0915865693703821,0.0911846297560674,0.0918475619642563,0.0943222143695098,0.0937941607846695,0.100747289086162,0.0984042180280271,0.0917236909372697,0.0692915509746567,0.0595397230048742,0.0447499773925526,-0.0305762893583862,-0.0703338733924938,-0.0643649079425965,-0.0324762081856427,0.0252026161089551,0.0601124292679433,0.0517133042573561,0.0150679431419284,0.000994437770990045,-0.00423642675180611,0.00218959440724246,0.0276293626389056,0.0569933366531938,0.092973893799982,0.0892495783146099,0.0882578301563405,0.0904949180432218,0.0926882961880359,0.089438780869624,0.0907829407084755,0.0925980081052316,0.0925170328421231,0.0980424830921486,0.0865453802792074,0.0668926830625114,0.0309674966764954,0.0309062799615155,-0.0184136029428579,-0.0902855654561472,-0.122201420418423,-0.0879472260128026,-0.0217653733538452,0.0585732648447544,0.0755962024172652,0.0514667977355859,0.0206522359343197,0.00391051292025645,0.00693170847616779,0.00551121802150974,0.0266803151579822,0.0529950483533361,0.0910854015255772,0.0995579225392923,0.0939384621301779,0.0898621380514461,0.0885573482360531,0.0915777818626362,0.091486440659474,0.0929474162945641,0.093357779050264,0.0922757373956727,0.0662179404871078,0.0296341606030685,-0.00459660566875464,-0.0191828194485854,-0.0797351006513111,-0.117075623957573,-0.128890903743206,-0.0660815238329019,0.0422811960705317,0.110374909791244,0.0914701795008968,0.061356243896643,0.0287948385015178,0.000294354107564769,-0.00652371257165986,-0.000252905105095505,0.0100078248881713,0.036995699586376,0.0841504924297182,0.0970327549560437,0.0936242687265559,0.0909500370737023,0.0888184338181147,0.0906597979931383,0.0933247133759986,0.0914322539409602,0.0894454465917867,0.074510133591989,0.0315444365284272,-0.0164622507469005,-0.0423081880848208,-0.077233694678611,-0.117975910494076,-0.134474458088874,-0.09809812801828,0.0136615285672853,0.121406599676404,0.146959791260167,0.0992966258052057,0.0508129878778483,0.00340257069455625,-0.0262730598713843,-0.0393667270111135,-0.0416816096363473,-0.0208344876318135,0.01302825664343,0.0692155727201857,0.092642698218428,0.0909215765423825,0.0898544390048271,0.0888604767393077,0.0900802292875263,0.0928324808437469,0.0915295726388657,0.0746202241383488,0.0446487191723329,-0.0113689504254036,-0.0657334962537783,-0.10477874057287,-0.117460441374688,-0.136552112553373,-0.109490029110433,-0.0178219719902865,0.109602269579648,0.165041698169937,0.135291524216231,0.0636875997609322,0.00980638775738319,-0.0290777258112376,-0.065778279075323,-0.0801359402591718,-0.0739644181806668,-0.04370150944797,0.000194557738662714,0.0597686254852087,0.089929261905074,0.0893339477843395,0.0895006844665385,0.0917250419648684,0.0912943451864344,0.0892201186195081,0.0895731519499433,0.0722247494298206,0.0187141437231069,-0.0544008026434,-0.104067026780538,-0.145760109993781,-0.152827328061929,-0.138247740143875,-0.0903494087251768,0.0179108327271639,0.111110676246337,0.121242476527695,0.0708490389463895,0.00220769750229507,-0.0431107940590424,-0.0799706115202798,-0.113159966733788,-0.118678292305957,-0.0964941510724641,-0.0616722354626913,-0.00196872410816796,0.0537335648847148,0.085960382447913,0.0912166949971176,0.0910483414388403,0.0890894054758787,0.0888762351133942,0.0925951606329716,0.0888086981588203,0.0640547995599751,-0.0129529250137681,-0.083971550480139,-0.130692557878819,-0.175116111806948,-0.1607810992837,-0.123031083423747,-0.0707913199030344,0.0148456237221339,0.0564316412697891,0.0361624917477021,-0.00336685321021627,-0.0535806575394013,-0.0724281916219061,-0.103384400915364,-0.145974783050521,-0.138358027362381,-0.108544930473842,-0.0619243688852245,0.013057018030872,0.0674080884006558,0.0894426759269863,0.0932896563165926,0.0916853080750401,0.0890916422147803,0.09029703991421,0.0896795093002318,0.0895401301301417,0.0569283139909531,-0.0168242908649524,-0.0745852199319793,-0.138652922749371,-0.179959319556169,-0.155695833841871,-0.108910549560768,-0.0436801645427446,0.00548122475193271,0.000512433983272271,-0.0279726178056918,-0.0449215388648181,-0.055268736427434,-0.0662969564395745,-0.11767162182271,-0.157061195006635,-0.130530775032975,-0.0875314910976379,-0.0397708965031716,0.0454269866686119,0.0826635803791853,0.0921495033151967,0.0916863039161572,0.0887249982002995,0.0921202531958127,0.0907527621856941,0.0899216161594785,0.0907400182896073,0.0519101752907252,-0.0119645994751033,-0.0537206958868039,-0.117220165094436,-0.144839327810595,-0.120351957406243,-0.0670084468081922,-0.00657601449729398,0.0103224081431646,-0.0136460242215461,-0.0343320880208113,-0.0374038117844219,-0.0505183488648811,-0.0866170824030596,-0.125298391961033,-0.138495512360627,-0.116086229226519,-0.0592640071511606,0.000623589565325945,0.0667239607999368,0.0843615152819501,0.0911415361888232,0.0905620303658784,0.0889794868336619,0.0916807360555815,0.0886484687646497,0.0879702104248591,0.0897795019143307,0.0513394728756882,-0.00375886335192897,-0.0385564607602789,-0.07096402234613,-0.0947931654842967,-0.0738625904289376,-0.03797181654576,-0.0134841591299364,-0.0156967612555738,-0.0437409868806428,-0.0570933209899703,-0.0635957428711825,-0.0794957506565152,-0.129800704991738,-0.133587336663328,-0.122445428494824,-0.0737474081308576,-0.0265911375727315,0.0375168994596672,0.0785002140397048,0.0873636250703125,0.0917023976726099,0.0894614297724042,0.0917008291442514,0.088291097077279,0.0905527411310891,0.0884654501523103,0.0872631412983909,0.0542044703231835,-0.000814266979088823,-0.0166826971973752,-0.0364073041481653,-0.0485499496787538,-0.0543253214084898,-0.0565585878210951,-0.0603391939328034,-0.0853041857342184,-0.0932792652953783,-0.0932913815980493,-0.104313976127277,-0.122422043397682,-0.132094536772159,-0.109416142658557,-0.0713552500919305,-0.0245691290100439,0.0299438896524668,0.0792944454159637,0.0928078489960716,0.0889557541519518,0.0865811487625493,0.0927595357973602,0.0891597448315268,0.0892996647272997,0.0920953054176025,0.0867312584759024,0.0865652891808573,0.0579789771835454,0.0154579838249588,-0.00129768822246024,-0.00337435507934777,-0.017458579694018,-0.0496581934088984,-0.0691973431875232,-0.101815433271265,-0.114306944512877,-0.126240865241805,-0.116454079344322,-0.115990495644059,-0.110391775185082,-0.0909144325444032,-0.046639483256352,0.00215348556420032,0.0383542337560789,0.0695617646088832,0.0939211347769018,0.0940865827549223,0.086663035090091,0.0904853976872856,0.0907307080834921,0.0889210557498456,0.0883344999647582,0.0902703419225304,0.0898936545992294,0.0856929715545983,0.0678117495579371,0.0373628434071511,0.0174870754063806,0.0240351945840618,0.016350696238422,-0.00972280721920416,-0.0413122463920789,-0.0869725430000716,-0.107288760079031,-0.104651545121033,-0.0841384802106905,-0.0657335870678529,-0.0383458573970334,-0.00644456649992312,0.0385214138449562,0.0611175508553738,0.0778634045093201,0.0865525180532989,0.0945618585009642,0.0892495990336198,0.0880275936979155,0.0881681336241332,0.0919137523696508,0.0883940939803665,0.089889503052285,0.091184207970127,0.08960845372257,0.0897526835800091,0.0811149669286096,0.0664909910718621,0.0500785147115641,0.062983411428944,0.0617997496135306,0.0452161596106182,0.0237326169756227,0.00785603635405093,-0.00219093485496787,-7.15096460226156E-05,0.0251027535999555,0.0409542429122962,0.0760536424749467,0.0846772634523566,0.095475439649444,0.0884280853858567,0.0807734799065127,0.0875108596206794,0.0879316424248472,0.0847531027147846,0.0868690632497712,0.0931136511961932,0.0932539540427335,0.091471707218859,0.089404413873541,0.0884883141570485,0.0893874116355675,0.0906882505166363,0.0854582398376634,0.0856467946646383,0.0795620199148906,0.0885182743801639,0.0959812015836114,0.102630640544978,0.0686810833101977,0.0738380157913808,0.0829720412029865,0.0938175896859074,0.104317201985669,0.118537708365083,0.123789448310416,0.11534904804493,0.106983313318099,0.0834390982884138,0.0809137345698817,0.0835587826245198,0.0824487065560216,0.0920190803752381,0.090248111116686,0.0923120590406596,0.0929051400695558,0.0884236220986278,0.0906437104502681,0.0883908101099034,0.0904254038745644,0.090780780003642,0.0886271153058698,0.0923015445896353,0.0897717302965043,0.0908507089585037,0.109339302443246,0.114610705222636,0.130812239957378,0.14534407937142,0.154590774377777,0.147515444039737,0.141619877507972,0.132487383995926,0.124156136678704,0.118840934131998,0.107418025912637,0.0951035805195204,0.0859297785422418,0.0875808631601153,0.0881412415338304,0.0905452161464255,0.092089717638016,0.0892223633374443,0.091780314879412,0.0921813032986429,0.0926240008334201,0.0910272305419014,0.0924127021085953,0.091035268980837,0.0910853665709652,0.0912618341188213,0.0874111563017654,0.0865936681541049,0.0912077496444382,0.102498332244537,0.129438333966868,0.154819194547579,0.15929814111073,0.146367764655474,0.135438199061268,0.121906236137924,0.121258776581247,0.130705084930763,0.118109828035753,0.111673151099898,0.100556656342988,0.0968504696223059,0.0931719802929321,0.0920463785653949,0.0910624141913346,0.0899650247573754,0.0926448166648382,0.0889297473696721,0.088323676636891,0.091642614921998,0.0890398934933423,0.092594237971333,0.0891250831785997,0.0887521114845216,0.0899741195246507,0.0850578988877763,0.0873840988521796,0.0986016477398456,0.110765899591715,0.120633925567679,0.126010380764199,0.119006487237614,0.11688660704446,0.108955893719161,0.112758742894546,0.115329441286813,0.109106677641672,0.0966155439591107,0.091695630697356,0.0896171330746259,0.0905614634263512,0.0909604153619759,0.0887358273562894,0.0894924399410676,0.0903289122342459,0.0905618810679156,0.0897426937105117,0.0911180488234581,0.09234131295375,0.0890873682652868,0.0911005875595466,0.0897677915815712,0.0876608674212575,0.0915562313670113,0.0891380903615695,0.0907452200323446,0.0915729258098483,0.0913544077912169,0.0915736852453578,0.0919685412618667,0.0935052460384553,0.0915908206724761,0.0972245810221745,0.0959219884682668,0.090582263944563,0.0891476376657247,0.0895214859954063,0.0897251988503342,0.0908316235561665,0.0924646025650948,0.0891259222903895,0.0897881880744064,0.0887115337215507,0.0916892330843704,-0.0780468632235681,0.239122108923212,0.238145499235564,0.237038011276402,0.240589034868063,0.238719118393864,0.236862923574384,0.241201400472044,0.239690264890936,0.238136249192456,0.237320958744488,0.237208819271977,0.238757842609038,0.238526578753104,0.241005204071815,0.24005698461609,0.239867579683607,0.237665909001012,0.240523841895384,0.23854661174435,0.240544838989433,0.241156760446215,0.236866568699589,0.239769676677612,0.240269051143737,0.239744448932583,0.238046696480941,0.239708672912257,0.238265120673332,0.240940849678635,0.238072411483419,0.238482847874668,0.238791175791995,0.240249568535774,0.240900106586933,0.237840591077806,0.238189933993203,0.239456170415479,0.23833820203938,0.23913999412285,0.235859233712443,0.236679500954104,0.236273716645522,0.233869885860408,0.238036079412988,0.236498148135294,0.238357320921748,0.241498905805307,0.239130152476245,0.242011685764572,0.238001310873014,0.240514166891364,0.237165468534214,0.238424225577973,0.240997792849342,0.238550493492928,0.239260483199491,0.238241978969583,0.238524653599834,0.237016942622733,0.240253006135095,0.240348488668997,0.239404582372093,0.237816571681451,0.237844651703306,0.240041042219849,0.23969069742196,0.23170430822537,0.226165372363745,0.21938581307824,0.215327206282251,0.209792886841894,0.217854831713153,0.223298897519755,0.224682177102378,0.226725414127201,0.22594929119287,0.23181764218177,0.233079923689485,0.238373027209819,0.237593131778128,0.240184852845495,0.238044674265386,0.237496772241853,0.237309973499661,0.239970469930876,0.2394679766745,0.237074516452011,0.241028789078278,0.238118879567248,0.238848179887541,0.241499084368076,0.237904218218419,0.236514578298246,0.227854717562861,0.211712803942466,0.203415776789148,0.19205886068483,0.185087406991702,0.187351375968803,0.194216849610279,0.206362854058641,0.218002181025386,0.224241987765651,0.225189074608264,0.237792597720008,0.24050955250141,0.23782093991948,0.23676686052099,0.235966375738222,0.240303090155802,0.239467430296385,0.240364020568442,0.238805610161359,0.240025161426617,0.236921277839618,0.237520498628586,0.238247803959772,0.237162936641814,0.233621298707439,0.22960432898729,0.208239271698549,0.1854884518467,0.156478346590162,0.138556665348512,0.11448064662814,0.112829668313482,0.127423027756488,0.140161378541925,0.151530598783053,0.180502438588743,0.209298708521105,0.238789810340397,0.244141678077222,0.240779770386884,0.23514005853522,0.234397475387728,0.235865291899164,0.238716365985042,0.238071781885247,0.240858336911628,0.238643275687372,0.238223839320244,0.236838270993965,0.238819187773236,0.237345179287004,0.229655621786549,0.21239100090452,0.180937336512848,0.137681766955706,0.0925936219420843,0.0301953721337646,-0.034077074209345,-0.0616473072493318,-0.0673080448235202,-0.0811072624082096,-0.0862612675748456,-0.0776571754004134,-0.0554803779022243,0.00213457399740936,0.0773261093566401,0.133681922509108,0.15750591881597,0.192970030691696,0.210188475964813,0.225419481915145,0.231345000387068,0.233807078741107,0.236804211076572,0.239571259646324,0.237945287480474,0.240157589869663,0.23766696218407,0.233687158774494,0.220425812916945,0.192092443065916,0.133053440435994,0.0719654736567904,-0.00491101183705246,-0.083717525595043,-0.146594323975572,-0.191783392053077,-0.23000969292365,-0.23940156601576,-0.238251226706802,-0.226723093761431,-0.197077031584091,-0.124005524898658,-0.0370897251281634,0.0415756214216846,0.0957705300004137,0.147785465190844,0.186681584031507,0.197587879433024,0.219028177349598,0.229651661926378,0.236833754772498,0.23826880464457,0.239125257589211,0.239658092084513,0.240411620073809,0.237150625741235,0.215321644291421,0.17884555565227,0.108866348165193,0.0217629314134032,-0.0457140844427185,-0.128259790597997,-0.211243622774604,-0.24851828614694,-0.250779407398718,-0.239632960679709,-0.229056811692739,-0.217366864267213,-0.182372666363326,-0.127431756028333,-0.0608252793990201,0.0184106500752592,0.0708226389403012,0.130728575722513,0.164132902554124,0.181743373065147,0.21239936518474,0.232657122455038,0.241014907530344,0.241175642602103,0.237450466101242,0.244228985834997,0.240738019569489,0.238585057732669,0.219888404727403,0.178719769345901,0.121453823311567,0.0275056177043376,-0.0653221996692413,-0.163851506972236,-0.208588219526646,-0.200901051433778,-0.138923532823033,-0.0740353208055389,-0.0495060649717365,-0.0638653737682789,-0.0746372646260883,-0.0737129217224369,-0.0393013054786539,0.0244377024248532,0.0766907981349941,0.124661282572126,0.163243433573073,0.178457068870335,0.208196987575262,0.227113859251635,0.239996296578821,0.240306436586317,0.240229003553961,0.242684913140006,0.247426508041378,0.240360514456831,0.222923603220834,0.186740985047883,0.126077733665251,0.0194028865176951,-0.0828666899225302,-0.17793571973635,-0.178941293615608,-0.102078990107843,0.0252202030440795,0.127307319596778,0.129737731784236,0.0563324525265415,-0.0240341690262726,-0.0769500217645581,-0.0439178390880699,0.0126090251316913,0.0894697787086919,0.153946584578562,0.17490577500315,0.186705020810747,0.21358552732467,0.23148753436207,0.237590010179632,0.239279595825729,0.238553400997567,0.243941334768012,0.245515403746505,0.242314455952377,0.219308280012616,0.196492040162456,0.108608774438277,0.000322414397085711,-0.113015727062173,-0.180655476216628,-0.137906117258299,-0.0293160557834498,0.114860451841088,0.185899487917285,0.134288928127744,0.0202541825347121,-0.0849668053954986,-0.125577152761421,-0.0823355274546062,0.00447648426926177,0.113126258701838,0.182818867249907,0.213945532348054,0.210306266335188,0.215605078184973,0.230918866071398,0.237427915185326,0.239825772978032,0.239325175770692,0.24245949098744,0.242508205689001,0.237647987945998,0.216898520895618,0.188560497747401,0.107563355666097,-0.0171212113671686,-0.118900900895952,-0.158502599514853,-0.133863259784585,-0.0495024110972245,0.0547517326207476,0.0648882017730201,-4.5173204756857E-05,-0.105339192511695,-0.183270246211879,-0.187365522560079,-0.0986724979027354,0.0363136108764012,0.174943611131898,0.246394702583723,0.260774777333311,0.235857549810895,0.223452872053587,0.236641315581928,0.238388233184593,0.238405737451488,0.24191729623719,0.240475214344901,0.241961079304503,0.235287147952504,0.220888929895283,0.202049981948305,0.124533249971105,0.00446147161581257,-0.0928699357220147,-0.144967540574111,-0.175930777485396,-0.158412685982624,-0.117608140591102,-0.121699771843485,-0.164323389681511,-0.23609730024867,-0.2643952825768,-0.206327747356091,-0.0842959227490282,0.0983317936721227,0.243911217428241,0.305793666693515,0.295759088196847,0.258449754077247,0.234541296820188,0.235195413974321,0.240767996735658,0.238909608049377,0.239432388743776,0.240023258646235,0.238225183856,0.238224812606272,0.243975067844905,0.238476001216632,0.155997326916426,0.0433482331930245,-0.0564231923405728,-0.141073075600241,-0.225442647860151,-0.275568939838041,-0.263860476878733,-0.262178773874938,-0.276138334642623,-0.306051987721446,-0.287049660364319,-0.196760711731229,-0.0150587271214334,0.170357233435708,0.289286871442212,0.321399088769877,0.315094921278098,0.269639158608864,0.234434308144603,0.238721446972864,0.238329001973067,0.236759588647438,0.240896958022267,0.240703761296204,0.237554865293046,0.246235636858851,0.276318793160512,0.290690983347532,0.230849041018656,0.107583151149495,-0.0130221083277849,-0.125429652435646,-0.237525817971044,-0.309149040490132,-0.305199674703149,-0.290994083686298,-0.274978181023191,-0.295953928471671,-0.261437707144483,-0.117819108744798,0.0573310926819454,0.204828188577525,0.302989398147573,0.317353657093803,0.317455861108386,0.272756061759838,0.236363912722166,0.238601952305506,0.24043065588178,0.240194015164322,0.237344569755856,0.239966015698246,0.235236763980287,0.254970607651772,0.310752052536592,0.350181975011286,0.297475143775424,0.173838087504665,0.0331292252377863,-0.101104487057921,-0.212228966712068,-0.267237018378218,-0.248203287298713,-0.21443674712064,-0.200631310666628,-0.23072741028912,-0.175501490153701,-0.0405107365339389,0.107383023370691,0.206403272144664,0.276410059491612,0.303366033210257,0.299791434733422,0.262160616087295,0.234833830681842,0.238293826602027,0.238431844840408,0.237774867002892,0.237815315999461,0.240040058363724,0.23294235357994,0.253858867263033,0.322903084997783,0.362123601311403,0.328615885124686,0.214248316185284,0.0607560364614956,-0.0774461756046801,-0.181709984731067,-0.196403200155226,-0.139379493983114,-0.0932915888726343,-0.112096314574053,-0.146051584139382,-0.120946209766917,0.000136087661895201,0.0993358900832969,0.172629387872815,0.225592903427357,0.259892036269482,0.271397433456518,0.253409633801286,0.234056800039425,0.23667564384551,0.241010887147815,0.240571645665254,0.238106777411232,0.238135869768158,0.231829147235153,0.252796294520978,0.314832615666309,0.337544782158568,0.299482718658383,0.198477352849774,0.0422244394614943,-0.102676089668353,-0.156187411421043,-0.120389015657991,-0.0345929282715207,-0.00432354004016949,-0.0513812197873957,-0.101814333420125,-0.0925374869912348,-0.0136897769979764,0.0616576972464879,0.120641373353997,0.167198267130504,0.21256920586499,0.240118926636312,0.236584082016308,0.235233703581946,0.23749513364997,0.239499199977217,0.238723659750361,0.239288558308396,0.240649904210135,0.229459468748456,0.239776512193903,0.29226074856019,0.297990052391187,0.235134448541098,0.13506815139145,0.00573952268726044,-0.109756522674774,-0.125344734451303,-0.0409347650191462,0.0747664460054949,0.061867621062195,-0.0173928590529266,-0.0843242212143937,-0.0717969060416812,-0.0323885601977977,0.0201412773377227,0.0728144360544822,0.133342992351938,0.176232200758515,0.205413100867448,0.226055485911262,0.23301794134168,0.236470474564559,0.238437539618552,0.237075416230472,0.238109475270709,0.235969146200746,0.227549179408549,0.234894585154405,0.265932569307035,0.255300538333001,0.172173921803437,0.0601907746692041,-0.0330279969340709,-0.0896913415974527,-0.0546820616034431,0.060683699592237,0.129706247775357,0.0906113808143672,-0.00294348237201451,-0.084893914227802,-0.0942621506074018,-0.0687276151338192,-0.0191256682578878,0.0379785662249945,0.100806449507513,0.148247295176503,0.190446316835773,0.2206105714902,0.233719324170095,0.238611817382583,0.238442712644182,0.240404925816617,0.23730859676517,0.238141330264084,0.224739844989326,0.223864158039149,0.234612696621229,0.20324699038989,0.111956977892864,0.0434544018766529,-0.028853982779738,-0.0484556374982525,0.0135666744278228,0.0803801109695302,0.099312959423623,0.0487321803060565,-0.0355270142625596,-0.105573498547213,-0.141375521845175,-0.0970588136797189,-0.0487118252461324,0.0330420314574773,0.0901068096509069,0.13974556532326,0.190821085724408,0.220414091576313,0.23411186841619,0.237937637682136,0.240048425587434,0.23807784817084,0.240031121508571,0.235888493998734,0.229448536633196,0.214101970149005,0.204034803621658,0.155582468111652,0.0698041195241971,0.0141921104097462,-0.0376964715742756,-0.0439216246644092,-0.0130358116085537,-0.00225252133511883,-0.0127632551161828,-0.0594438436992103,-0.105609554938173,-0.15930786738964,-0.163779417354871,-0.109549030425505,-0.0451331959241778,0.041562212655663,0.114043705108294,0.159869106753812,0.202901474475812,0.225627692011634,0.237672608617412,0.237390303403505,0.241240084292897,0.241036411996637,0.240946491450405,0.236480075613624,0.232167836556139,0.214074844486515,0.188351323763921,0.136758301537208,0.0648953663512056,-0.0124742400985142,-0.0600503517114169,-0.0945365619950429,-0.116000997438008,-0.136893106973752,-0.141226233421102,-0.145150369187205,-0.161570410748502,-0.162255915357375,-0.133358783631621,-0.0899963100484048,0.00784084812875702,0.0850931324339246,0.140770973419054,0.184935004962734,0.215253283632048,0.231544278337632,0.236880667216662,0.237548436277808,0.241244471300192,0.241255924236454,0.237122069495216,0.238841325931209,0.235370865081222,0.2268277312757,0.197513332805782,0.144862498265646,0.0862974547809353,0.00626668864261568,-0.0557730640139034,-0.109773665893242,-0.177927595649497,-0.219284915213005,-0.220326518333153,-0.188204613037901,-0.163748819769867,-0.130663516418682,-0.0883979683160881,-0.00801822571966245,0.0830172090747403,0.137990177375865,0.183647048919669,0.208130834601994,0.226252624404891,0.235481943283485,0.238298316371434,0.237784183895131,0.23963953816894,0.238748492457149,0.238998656681136,0.241105001143597,0.236378610032118,0.233105776999478,0.22519972124933,0.194758317862569,0.154101156406778,0.0853836376284331,0.0104021270456861,-0.0554929092610721,-0.12620993221242,-0.161137046123541,-0.161697253030122,-0.123322031248459,-0.0745075657269473,-0.0250015662153637,0.0278336318762727,0.0885820085184473,0.150009812230954,0.188609229188694,0.20986240972362,0.222361742531442,0.23357856224357,0.239707982362316,0.241297647755646,0.237705541236992,0.239077039883267,0.241088630792588,0.237737203137331,0.23787738471569,0.241563094179398,0.239096362425777,0.237229929363846,0.238198740660152,0.236395154131552,0.212716380498909,0.195590478495579,0.159395185331112,0.126686736502605,0.0960171725818734,0.102581434212685,0.12192368057104,0.128936236302087,0.12912082830219,0.133647955121414,0.159267308453625,0.187667467505508,0.207534395770622,0.223036752378308,0.232145879001574,0.239398913853124,0.240059908859004,0.237671191218039,0.237741543656952,0.240493146304634,0.239118512625085,0.237594648609099,0.238871416782037,0.239672777648186,0.240759108235618,0.240100253191503,0.241806611698664,0.246809002690889,0.244957278357938,0.247739088268965,0.243365432649311,0.23660891517178,0.222756251172197,0.222021315794775,0.222032405344787,0.226572223454438,0.21527247512873,0.216220153064966,0.219850706063816,0.224757676388494,0.228520064558472,0.237743341411378,0.236776800741835,0.238471136061841,0.240284539183994,0.236899898959835,0.240037643362013,0.237966493131225,0.240335398315824,0.238942597017999,0.239486321285019,0.239459263039979,0.237939516181402,0.240033251428921,0.241113671958519,0.239410132052005,0.241119175547787,0.240763456612388,0.241452669301858,0.239566765203385,0.240554158427698,0.240106812967872,0.241241543716194,0.242396927747215,0.241000255953567,0.241305817856465,0.237982314091273,0.237754512355282,0.239095346905248,0.236895570760561,0.237471774831379,0.240942828888177,0.238237623198573,0.237922625025266,0.239819114069291,0.238679379285933,-0.226508025565638,-0.204086423853229,-0.203860646462571,-0.205029868336154,-0.207435971435544,-0.203974352755293,-0.204198320850772,-0.207326085010367,-0.206836472794322,-0.207477569025799,-0.207143080898143,-0.204593908055449,-0.205400659261458,-0.205771149060043,-0.208043193763938,-0.204129333549552,-0.204166102256819,-0.206508764876674,-0.203849143657097,-0.207498411803567,-0.20582055724827,-0.205370751175284,-0.207429196394033,-0.20641065453203,-0.206187566206631,-0.206697893589783,-0.207122978328671,-0.20529989777479,-0.204939562746116,-0.203912018197447,-0.205365972495856,-0.207758237068078,-0.204670600308036,-0.206396343530716,-0.204355774661118,-0.207430394738626,-0.206189276025157,-0.207632051150311,-0.202863076954531,-0.20528470094665,-0.204415061946413,-0.203506000912664,-0.20012926467455,-0.202341093517978,-0.204747910040168,-0.203845157148622,-0.208989159615529,-0.206079793967082,-0.209180908571388,-0.207766517904412,-0.205451636142165,-0.205657398469477,-0.205990722339215,-0.207019625868123,-0.206712207691784,-0.20637199144072,-0.204414069326083,-0.205489819625973,-0.204199618776391,-0.206695394032678,-0.205699044357401,-0.207740474390899,-0.204032020211789,-0.206804847760362,-0.208041550998571,-0.203634040410823,-0.207257772586226,-0.203244130220594,-0.197140551505519,-0.195753256558231,-0.191535355532521,-0.188352776781027,-0.195839682915874,-0.199962603046777,-0.204133561606717,-0.210735279393315,-0.209577319805625,-0.210246448397393,-0.20649074294248,-0.20676134315819,-0.207287100160565,-0.206923088324639,-0.206152449133962,-0.204587373732811,-0.206694688645901,-0.20601233309432,-0.20691286218467,-0.207599035632689,-0.204730826243163,-0.205066151333445,-0.206580155863376,-0.20677671983335,-0.205804481412156,-0.20245782878069,-0.197128391656687,-0.190312165430561,-0.190187558962865,-0.182476170852515,-0.180298313346295,-0.193138908479698,-0.210825321962315,-0.221723476038256,-0.232393045074976,-0.235593876551599,-0.234629991202578,-0.227311768981874,-0.218966022093284,-0.209031077458529,-0.209837151724546,-0.206506110300159,-0.203714996791372,-0.205374875219371,-0.205787310572838,-0.206178696929756,-0.205677243465252,-0.206278326260288,-0.206947200344842,-0.206367145448163,-0.202493617423422,-0.203100215400297,-0.203242903858276,-0.192992762379334,-0.173675701632048,-0.16079685935105,-0.148866156788862,-0.138865043376131,-0.141138248169162,-0.158741480154194,-0.177699104520575,-0.189702418655041,-0.210134617403956,-0.233822596023357,-0.250796584568944,-0.243479540781767,-0.227270070319561,-0.21388188107873,-0.21057784218612,-0.205780492704845,-0.205221939252494,-0.207262877269837,-0.207223761322627,-0.206998197938021,-0.204092678012222,-0.204066871219787,-0.204227458995186,-0.207059024401131,-0.202151160976417,-0.194640977246901,-0.183455972453098,-0.150518682718656,-0.121981209087802,-0.0768374641999232,-0.0143618400486758,0.019444488444737,0.022461663605019,0.0334151710717955,0.047248313156509,0.0425726034151569,0.0288380733897012,-0.0193955565151176,-0.0867180715157662,-0.136184739721184,-0.162952873977973,-0.188153756388168,-0.201408332238881,-0.206056684540752,-0.205401360292511,-0.204437448811016,-0.206247486767475,-0.205326879262907,-0.205409977276895,-0.205885794344754,-0.206935260357573,-0.204077317098079,-0.197174979253639,-0.177842341238563,-0.147726183855285,-0.10271914371822,-0.0332618489547564,0.0328800945169903,0.0964724423640864,0.138456835061408,0.175874934392629,0.189032788630316,0.190795944586724,0.191604884560084,0.169393551223433,0.110423118374229,0.0294031740670091,-0.0470137865741876,-0.107517844355881,-0.157090354202399,-0.188135514109543,-0.190274365212275,-0.193310992691214,-0.198393606552981,-0.205956515205714,-0.206657609219744,-0.207108744529171,-0.205976492270424,-0.203833722592821,-0.205482014825646,-0.19343838995729,-0.161952235481318,-0.121637426592866,-0.042360186516877,0.0194187135753031,0.0933888227994254,0.180142713432024,0.214146564940556,0.219489515867803,0.207816922928968,0.205298207977912,0.19617973829061,0.179316360452982,0.128847834228571,0.0657654731140211,-0.00801757138955653,-0.0615222910236388,-0.129387258708442,-0.168452251007242,-0.180272936043153,-0.187872477978507,-0.198606319265541,-0.204667923388557,-0.205643632664833,-0.207258314441728,-0.208675975293669,-0.20416194966862,-0.201032241358142,-0.185630516178117,-0.149684234995712,-0.107387823653236,-0.0254765952327698,0.059246492845151,0.158292927091537,0.199491063489478,0.188776322927115,0.133650417622278,0.0834248447010307,0.0573139226612688,0.0751209871485077,0.0777521874614783,0.0834031316880272,0.0614869175585782,0.0111246201152834,-0.0399093852137207,-0.0988421936535143,-0.151633742103114,-0.162169493065981,-0.183679549032767,-0.199430778639916,-0.205541909221998,-0.20778866937613,-0.204742222654367,-0.205037321428511,-0.205204068125753,-0.201886917499262,-0.186939140279923,-0.149743958692356,-0.10379892476053,0.00140834851907134,0.0981067918092223,0.179863312672659,0.170702640024476,0.104574434202273,-0.0194415262946641,-0.105323899530714,-0.107852121840169,-0.0419717047317547,0.0362544008555824,0.0902767859336543,0.0783078643759776,0.0446045896598074,-0.0328980450849991,-0.0944740448058256,-0.130761649855874,-0.160716560945254,-0.186192661892484,-0.202780400201218,-0.204237057257721,-0.206129741211408,-0.20788987229969,-0.204991360337445,-0.208566941228059,-0.199959907409088,-0.184995912394287,-0.157883411480174,-0.0743906034206409,0.0235986120107552,0.129096434202905,0.171770503375298,0.124637718802362,0.0219258020516789,-0.116173817172263,-0.177547038754815,-0.124170824450657,-0.0160006954825021,0.101889178541109,0.145995070043147,0.126438541060171,0.0562376518164444,-0.040708735606406,-0.11089177528205,-0.154786650869195,-0.175580416986987,-0.183168889256433,-0.202631558553435,-0.205167020273645,-0.20696360250072,-0.206629659689334,-0.206164426550547,-0.206899521419091,-0.200951717593098,-0.17923103621401,-0.148248519059356,-0.0730285753834011,0.0372305125459366,0.118318191325558,0.135625256619323,0.098539482391732,0.00777618305101715,-0.0943047565889928,-0.090671838856967,-0.0188300343666289,0.0967618297445423,0.184290595209388,0.207396728122131,0.141575399092985,0.0231620952961329,-0.101316444909182,-0.179481005060076,-0.201315833434716,-0.18880383880593,-0.190656224752002,-0.202955390755683,-0.205039438566151,-0.204697895829323,-0.204911862044001,-0.20688453352348,-0.203103981577859,-0.197833816717344,-0.188993250192379,-0.165541335887407,-0.0966662930923737,0.00722359993805465,0.0676518956845515,0.0917156531912404,0.105055808632347,0.0817005504036871,0.04994538852361,0.0639152720977468,0.127750340140124,0.205847459696971,0.241255346851183,0.199391905397174,0.102059845597065,-0.0545983104380061,-0.18485558533874,-0.240575751275347,-0.238260789063644,-0.215819626042631,-0.197450936657497,-0.203493691672727,-0.207296885187387,-0.204862647495073,-0.205330157658023,-0.208132948220235,-0.203956706773637,-0.203147797536563,-0.211803589792789,-0.198993746017283,-0.131194419502949,-0.0497664817363234,0.0205572031703096,0.0684760066911476,0.138501899038019,0.191322161938196,0.188772301482909,0.199466342912648,0.226996492092539,0.2597812422672,0.246679983220638,0.165396971212462,0.000186536268984657,-0.150134213170701,-0.252151307080526,-0.266349956055618,-0.256242390332323,-0.227681211609234,-0.20146419343887,-0.204989736263807,-0.207688674874233,-0.205493531210307,-0.205553535856461,-0.205318358443207,-0.20469410138622,-0.211202384890707,-0.232080928659672,-0.247247539437716,-0.198984363067097,-0.108991421970743,-0.021313965018832,0.0641885021834163,0.161676669233514,0.239595786755618,0.250156381404185,0.246365160076155,0.239219417595133,0.242718378393817,0.203274151931339,0.0684119195256128,-0.105599499581172,-0.223802981688766,-0.277836236202726,-0.280327535081591,-0.267593035153115,-0.23312608284703,-0.204134753109847,-0.204185500516545,-0.2058118691991,-0.20557911328478,-0.206622378930641,-0.203729818925281,-0.202509766357879,-0.218225597846676,-0.262304657254124,-0.297366501823052,-0.258082695887371,-0.164611273345376,-0.0524114628916095,0.0626235523307293,0.172405203498686,0.241337145268945,0.229249108836031,0.196689400579115,0.180914446579801,0.182402766188122,0.118047844922826,-0.0236919015325902,-0.166851209953146,-0.251425255844503,-0.27650251548835,-0.274774755701227,-0.256876148834676,-0.226568757716052,-0.206476891990922,-0.204589761888292,-0.205374899046612,-0.205360792403982,-0.207358867595031,-0.208361567276677,-0.203068318349776,-0.21905075436623,-0.272570952208469,-0.31084857135519,-0.295596810609497,-0.207817208092428,-0.0772566830045154,0.0571578061590353,0.172492433430117,0.19456809159925,0.143386547440464,0.0982596592803793,0.105277183003766,0.122917080181301,0.0774715164615925,-0.064006716769773,-0.17115195465081,-0.21832181921177,-0.244811021625228,-0.254739867595173,-0.237575262821988,-0.221379689296648,-0.203959293372451,-0.205828204526416,-0.206169730349532,-0.204366545679738,-0.205527080987572,-0.204550966768189,-0.204543212375689,-0.219113557331839,-0.270334156366431,-0.298235881340869,-0.281321435668046,-0.200251467585611,-0.0550658905881831,0.09046407849158,0.166129584419838,0.13642426138418,0.0534446488980263,0.0240666477034093,0.0618309898261431,0.0878931987768183,0.0518747923430952,-0.044205148333365,-0.13432223458661,-0.177766515736755,-0.205037246609659,-0.214410276353148,-0.2128108069608,-0.210203192639559,-0.202120742082331,-0.204404506879803,-0.20559077821442,-0.204946226893311,-0.2060080998272,-0.205796185087116,-0.197992281840141,-0.215343856249105,-0.257033436092199,-0.266842069406451,-0.22740086786299,-0.133422468286553,-0.00564333267083048,0.105540333380584,0.129178917321188,0.0553743485857073,-0.0481493581114568,-0.0354928759068006,0.0284943203094184,0.0676839285344309,0.0296129366975329,-0.0277385221981499,-0.0854702680760864,-0.135359727701088,-0.171327300789695,-0.180643860167954,-0.189767424096987,-0.194819095700494,-0.202245234965277,-0.202065274375267,-0.205494194193904,-0.205419428423327,-0.203835158280615,-0.206241526937457,-0.196458873986792,-0.211160919959534,-0.241428372899855,-0.23781796641782,-0.167358992664301,-0.0634815552196022,0.0286775825095346,0.0786724363641024,0.0463087355287712,-0.0638263510102533,-0.116811448591186,-0.0792041558766602,0.00289091322160648,0.0633251365785557,0.0512873870231977,0.0125719558089478,-0.0436142263246135,-0.0990303216405314,-0.133128760658157,-0.15276547111653,-0.170208351613846,-0.190391039380274,-0.204316162868223,-0.206210892593547,-0.207129248955049,-0.20715948411845,-0.206728164442951,-0.205392998119545,-0.196099497521358,-0.202375759003969,-0.218886792634823,-0.196347355602913,-0.113014897362476,-0.0446675089004725,0.0199457402563898,0.0372716465254769,-0.0350400357439972,-0.101853990968159,-0.11406044566591,-0.0601029131774713,0.0180465748772905,0.0704172291711568,0.0938348160937259,0.0452470239692189,-0.0032629635953055,-0.0747321609610066,-0.122563370023059,-0.141037857969792,-0.170195571081008,-0.194690517213247,-0.20291891163602,-0.204701132652818,-0.204213462967083,-0.204339120028731,-0.204141076063928,-0.202263556000297,-0.200348243440312,-0.195293338417495,-0.197154816931425,-0.153879990211172,-0.0815543557363103,-0.0247363874028724,0.0164069670424806,0.0289628481482394,-0.00668034202436653,-0.0317582556765535,-0.0170194077289649,0.0310830490424281,0.0664158222856529,0.113848891557166,0.118547716300862,0.0589272031606996,-0.0101647599910656,-0.0783404021026958,-0.131510665081334,-0.156034200862557,-0.180684085289842,-0.19533834042941,-0.203821161264185,-0.205053704540993,-0.207070980883567,-0.208035763466661,-0.204658504491648,-0.203489666032626,-0.202125145687939,-0.193832804508348,-0.178169442379394,-0.132758164030315,-0.0727673644770432,-0.00294953715623678,0.0421411662763305,0.0748850079600716,0.0911650408032084,0.104597298464811,0.102127215521872,0.10202809642526,0.115390934095871,0.120245388104339,0.0879829481113451,0.0391143038529104,-0.0462788084131777,-0.107277153356609,-0.143377650788289,-0.174477336860881,-0.193610016148917,-0.201164981806491,-0.20283737450001,-0.207117750304941,-0.204394002284889,-0.207218442346923,-0.206237055536363,-0.203577508900618,-0.203231531736285,-0.197436281501018,-0.180400775731076,-0.131674899207088,-0.0799069623684326,-0.0126030933760505,0.0428666512717294,0.0951276473161094,0.157572692581317,0.194082232428275,0.189689789717411,0.159772862153837,0.129715236284292,0.10198450362374,0.0553539674537148,-0.0174612184102919,-0.091049059364984,-0.136086468576983,-0.166163360526936,-0.185862434955431,-0.196791968633659,-0.205790674372928,-0.205656165336833,-0.206168592902765,-0.205135405638178,-0.207017291178277,-0.204829016459945,-0.206384128595675,-0.20420025486675,-0.201683722908439,-0.191040777580936,-0.16545421334512,-0.127107045310471,-0.0697534704840994,-0.0153734299463778,0.0474277147161706,0.113017265319056,0.147450464215038,0.14661795503649,0.112705550021191,0.0767861016330899,0.0299614781072575,-0.0185210510722722,-0.0737655306659622,-0.128515938128044,-0.165495333225452,-0.18549275735314,-0.198375465037331,-0.201228051832207,-0.205427602460029,-0.206435063402022,-0.208108113024192,-0.20705166533001,-0.207247602879445,-0.206891395563876,-0.205673039935052,-0.207645570086929,-0.203013223055295,-0.199412003263766,-0.201109893955816,-0.200073333394964,-0.177548313072488,-0.165183490334787,-0.125761110289852,-0.0884472667504901,-0.062575558212526,-0.0638113049009061,-0.080367497397654,-0.0896030189736242,-0.0885531579181249,-0.101501681245956,-0.128849079040477,-0.151341330177812,-0.174538320060193,-0.193899816361795,-0.203098137200245,-0.206946891959809,-0.204226188172334,-0.206077636389324,-0.205386111391925,-0.204994328069897,-0.205275589803231,-0.204830826168687,-0.207160275547752,-0.205490132515551,-0.206338881592572,-0.20710654311431,-0.206555225122189,-0.209258236302031,-0.211070314280925,-0.207416417498206,-0.200948863142496,-0.186373434527127,-0.179232245127623,-0.175986964620065,-0.174681234868131,-0.180363574880674,-0.173994681012498,-0.177952881528131,-0.186924822134591,-0.19311236741748,-0.196194395345173,-0.202868288468411,-0.204210336931779,-0.207637059383359,-0.205962012153921,-0.206634387728339,-0.205391544507688,-0.205954119176844,-0.204942033258198,-0.205421712581437,-0.207499696243152,-0.206484954209449,-0.207954411037766,-0.206270825268375,-0.20541499304451,-0.20546209472704,-0.205786634519629,-0.206231520775834,-0.204851577302992,-0.208948566081197,-0.209905340991015,-0.208940756410096,-0.207532046370718,-0.205015593123772,-0.202925501025634,-0.204189286816892,-0.204182075043729,-0.204622845046153,-0.20704886102152,-0.205405873618507,-0.204746133851124,-0.205707814495618,-0.205751939904086,-0.204533251005349,-0.204044431960298,-0.206717521686225,0.190098088469685,0.242175014599668,0.245291033763788,0.243038203711494,0.245526252184038,0.244251593649082,0.243430757041952,0.24597711973416,0.244961787631671,0.245364041880535,0.246140811330759,0.245081718791459,0.243745933007878,0.242760693595611,0.245990504478749,0.243441234193824,0.243382144320916,0.246177661092086,0.245057147750156,0.245842338904281,0.246523648574751,0.24634292882639,0.245294774319995,0.242126105550057,0.243716545113923,0.244309962499068,0.246316482349802,0.246355637455553,0.245467492798701,0.24395249161337,0.243813888630038,0.245878401830756,0.243513350878451,0.245344783025109,0.245657008726319,0.244336791055616,0.242895131801217,0.245366828369771,0.243541098960402,0.241070737419178,0.240500765063311,0.245695499573908,0.242779048146225,0.243428972106571,0.244251907096499,0.241539624348433,0.246190190196753,0.245578051356553,0.245812368134676,0.246058228838941,0.245206584063023,0.244264613681091,0.242708410403994,0.245726242543482,0.242434848018143,0.245514089061828,0.24338878538476,0.242227404902038,0.245082624778497,0.242856665360125,0.245527294138366,0.245887863850169,0.243475119499809,0.242522514480763,0.242244524468624,0.243502798314795,0.246375034261519,0.241578269731462,0.235880484087856,0.234529843668695,0.229918570869777,0.227073122954459,0.236358240082988,0.243329861589107,0.240471266648556,0.244501577104754,0.240725129860167,0.241787626396105,0.242462455953822,0.244784650012829,0.245294069150977,0.244502312603596,0.24571462801193,0.246182809261491,0.244178226964719,0.244621603140531,0.245136556271542,0.242645010860714,0.244485722974955,0.245773202015913,0.246687977358379,0.245638194576728,0.243489659702362,0.243594023082391,0.237852591354493,0.233706897838092,0.231557263618127,0.227985779144665,0.225162380069596,0.240069443012932,0.248968162462372,0.255803412192349,0.262390165802875,0.262367723477685,0.261876810477492,0.259011154415942,0.252843030882946,0.249786356777284,0.246413647783162,0.244609363181929,0.241366550022318,0.243969240002091,0.245317740881215,0.245921989406831,0.24457993563153,0.246010961142783,0.243264936324832,0.243345144842831,0.241930955359357,0.236547702058665,0.239533813659825,0.224271087343294,0.204089830037026,0.187312610168875,0.178777790761497,0.170231217483427,0.171995079506235,0.192633453534034,0.202727078113358,0.2150326845374,0.234409494178532,0.25369872833351,0.269259143084036,0.270898546748663,0.262772817089424,0.248111551851077,0.245968204654537,0.241023295972817,0.242747639438429,0.24497364084453,0.243378063301237,0.244823986659481,0.244086500092329,0.244724971307956,0.243015770857671,0.242375396118041,0.232245615426909,0.21756168616116,0.194510224960037,0.154650525555249,0.117336787549311,0.0696077056418107,0.0182119668051495,-0.00161282550358778,-0.00294230182335526,-0.00627196716974537,-0.0110890976981554,-0.00620437485248648,0.0101163077773293,0.0611123132798387,0.127769242359077,0.173976568344466,0.201458918750853,0.226049439729002,0.240655487920385,0.241321632946055,0.24086233307523,0.240512904870008,0.242794727942319,0.243665644836777,0.2441889900413,0.244280980267038,0.239278646440008,0.230720002623684,0.215987902679719,0.185072124351644,0.13075520469729,0.0702505931107482,0.00809296752380187,-0.0445313158638617,-0.0942441767535589,-0.136835882582824,-0.164303490157553,-0.171136311092542,-0.172463775715719,-0.171425146388294,-0.148080415941354,-0.0848183588301267,0.00419071393834376,0.083308502897547,0.14324335513532,0.20341302381571,0.232055252231635,0.231381926611037,0.235439039828412,0.237512075601748,0.244410463041519,0.245856353665494,0.244584899486887,0.244440458677912,0.233937691305814,0.213341250356078,0.182778580355325,0.135651850413956,0.06944144498067,-0.00871994944692305,-0.0602043752854318,-0.125410837022818,-0.20322041388974,-0.239590646356243,-0.237806187147347,-0.220371958796136,-0.216692593050036,-0.220774793831097,-0.200397306639602,-0.14712065774628,-0.0746289947233937,0.0219766265328763,0.0916295047093086,0.173852029001124,0.221656260325343,0.229862162981104,0.232739540932925,0.238020740316752,0.244615586195988,0.242220736648027,0.245055647384977,0.239597559741166,0.224475220274154,0.199687881875985,0.163031205980384,0.105458268100635,0.0425817730383007,-0.0414032420789702,-0.115817342169371,-0.202524306514969,-0.248555100204362,-0.237987163572056,-0.171622181268648,-0.118123540418802,-0.106574015672253,-0.140696469065137,-0.161126980748404,-0.154746231232058,-0.106133776759089,-0.0176582298852901,0.0563933242821473,0.138583117937222,0.208265570462523,0.217005741164017,0.232527167936308,0.237883642382932,0.243638926813751,0.242499003302766,0.244669000901449,0.238191792291847,0.228288730803856,0.201903603123242,0.15998454675309,0.110093105360652,0.0404419591133267,-0.0629220891343169,-0.154562921424791,-0.225674477736022,-0.220685584734036,-0.143995226109179,-0.020556164295429,0.0534145309738454,0.027888155648386,-0.0596319774023391,-0.143820633218707,-0.180030317377461,-0.131275952859877,-0.0576345159695731,0.0460436152324134,0.136645483770555,0.188362073945376,0.210869316793261,0.231031039531047,0.239691829873922,0.242857361938559,0.24541928556915,0.245139347792536,0.244080484037504,0.231047141200588,0.212666895120046,0.173283918898524,0.126598727655534,0.026387448539859,-0.075536825937558,-0.170923697053125,-0.196396694134567,-0.138915263204645,-0.0361698664281578,0.0992194276798879,0.13343699856231,0.05037407086753,-0.081344642059732,-0.188725450058819,-0.215676234988701,-0.170410328158876,-0.0710656245433585,0.0492076070783802,0.153180334973005,0.20660197361847,0.213693860809906,0.224326896603704,0.238036914074349,0.244215853975682,0.243103427906055,0.246433182820716,0.245870883597026,0.23652599196448,0.224125056098183,0.183514667920007,0.12282417549643,0.0213016728152317,-0.0937510118256749,-0.159148645422617,-0.153573238252398,-0.100981133986026,-0.00875042964657776,0.0802747518726455,0.0579349654535464,-0.0326833941431626,-0.152232076973339,-0.247583104104338,-0.258976734718992,-0.179751320381383,-0.0475832242509212,0.115282162026392,0.220612590007539,0.241636412780175,0.232474953476392,0.230971430820191,0.241138492984022,0.244134077110419,0.243751205612302,0.243446696657699,0.243682701828169,0.238981605750811,0.227391378669754,0.195181957858211,0.132038743762227,0.033917241248018,-0.0742466973416964,-0.125702043981865,-0.126660365358605,-0.118956934625375,-0.0846271246162628,-0.0601297919796233,-0.0827929183343002,-0.152601425547113,-0.239545596469764,-0.297962947444201,-0.256826696783012,-0.154910381297185,0.0162767469022462,0.190495006467011,0.274783416382772,0.277390171668649,0.249993569574866,0.23707154710896,0.242592435456048,0.244939070619183,0.246526710756372,0.245531974300113,0.244658340518458,0.239911465785418,0.230294086377887,0.208803185118129,0.156574196318363,0.0491747995882438,-0.046675279595482,-0.103279667460148,-0.122363552401078,-0.163455931244595,-0.198227266891047,-0.189977938600536,-0.199102884342298,-0.234001357621072,-0.295415800655257,-0.318946229308511,-0.247808229083095,-0.0939414833749075,0.0941524714737997,0.238351672310566,0.290519787639102,0.295586164308778,0.26766028941782,0.242163323438097,0.244593644980894,0.242853812525727,0.244998500427327,0.24575806350986,0.241892506488013,0.240104990989207,0.234784796622279,0.230077084390212,0.197267469838105,0.0982653208900133,-0.00166506453943201,-0.0718192839679355,-0.123770188196155,-0.191040437848622,-0.24589012003445,-0.233786836365564,-0.224521610431987,-0.234376704857805,-0.289668279708741,-0.296907410561957,-0.18400773109051,-0.015541227517094,0.148058853200806,0.255322852550231,0.293509999812667,0.296657913607111,0.269647388389577,0.243644254823281,0.246912817587517,0.245226437410568,0.243729213810049,0.243363363348864,0.245507457077877,0.238637234826367,0.243119481501485,0.268009397297183,0.259159798114613,0.176246913550794,0.0651782537837255,-0.0302266053896675,-0.108037533597976,-0.182346098148451,-0.219710840359417,-0.186423100545869,-0.165769585826745,-0.17589389757356,-0.241229425860963,-0.220825961146422,-0.104519963856652,0.0402249703285433,0.156999816392737,0.238296831925836,0.280074222425614,0.288528812598909,0.26562771444494,0.243157338602924,0.243916673846046,0.243028546984899,0.24240276189575,0.24404402947244,0.242585099124745,0.239561432796687,0.250010837499341,0.291699199528616,0.301523294423432,0.260332377445263,0.157264166532079,0.0342748550625934,-0.0674161071877159,-0.145574393858606,-0.145369374236675,-0.0894519457346873,-0.0576348309551479,-0.10819317856309,-0.185686222794049,-0.178525728234789,-0.0427372435289466,0.0667129660026989,0.140300120409288,0.20210507322935,0.25780279650563,0.272000803852175,0.260149204421633,0.248145078703364,0.24335721473971,0.246001347549767,0.24283404327146,0.243511941957697,0.243378246472171,0.238726322048463,0.248771784397047,0.296649784611541,0.322205136080036,0.299097005874984,0.213463451564457,0.0750007530088685,-0.0401849218971345,-0.0856974623780417,-0.0588037782132697,0.011779053219552,0.0152020117752958,-0.0689089616403794,-0.147644895229098,-0.124965733389976,-0.0257615186813705,0.0646959722878775,0.120309617178204,0.179479725942941,0.231805783915275,0.255173017937519,0.25343326595888,0.244624768475294,0.243665897271166,0.24321007002292,0.246249735863942,0.245143503511266,0.243154289531772,0.23382237750762,0.244091161261549,0.28894457456418,0.308458038224068,0.280601148214861,0.202675876871471,0.0869350901996933,-0.0119615463597935,-0.0298336052725431,0.0276195924060155,0.101907971313125,0.0626955425147711,-0.0410648570059979,-0.114684044822815,-0.0857764285377536,-0.0175036427027907,0.0437503802783559,0.105996571420709,0.168204580934546,0.216725302936604,0.241788750347666,0.249607952361121,0.24449732010484,0.241544441433044,0.244610574470165,0.24236730414028,0.243301786398802,0.240164986989399,0.23171654583335,0.240623315976191,0.27787918625828,0.289399144572239,0.237716719265552,0.151339774363939,0.0714221762690318,0.01618649659813,0.0401497782256897,0.11543079580624,0.144758694370817,0.0772982117394298,-0.0247141613515392,-0.096979763286661,-0.0885156558752726,-0.0337290444188496,0.0176788226197445,0.0879182080267881,0.154716907436603,0.196017714472172,0.231624422767634,0.247677348861788,0.244873402664713,0.244855837972538,0.243413756676009,0.24568104940301,0.243852419998065,0.241377554167678,0.226612963337372,0.229931331952682,0.249121470245605,0.236373105024017,0.176065351799848,0.126302169627817,0.0685334663477694,0.0418060339586618,0.0941676571601308,0.122189774131913,0.111472379406563,0.0396804890415767,-0.0457091590870785,-0.110997841298425,-0.125629021272981,-0.0677278725274294,-0.00375519969690768,0.0810206032306233,0.149459935945114,0.18692699622314,0.230325644338989,0.245656697662787,0.244666204981764,0.243164473961745,0.243478546337638,0.244944262932756,0.24556537950528,0.238571026420453,0.229479017883134,0.219959285521986,0.220204018739451,0.182554911805979,0.115784179722226,0.0759258215582842,0.0306037098163521,0.016135205181946,0.0385754297989619,0.0272488236818624,-0.00403197518028919,-0.0572336623267074,-0.111037186855606,-0.157975005756918,-0.151218986669254,-0.075453908461473,0.00104089343654317,0.0961697566692553,0.163045163071134,0.204812008412217,0.234370607277059,0.242647084700099,0.24433862080115,0.244489978336161,0.243620378925831,0.244110765699544,0.243861865454891,0.237499460117247,0.236173287405777,0.217749902777748,0.195026853958697,0.154342397657763,0.0919081754117391,0.0241522206264458,-0.0330759919464296,-0.0754930901324009,-0.102672224610966,-0.131451777427956,-0.140260413508217,-0.149832874402327,-0.169887870429739,-0.170076634622002,-0.127027522007845,-0.0585971060159307,0.045041833665051,0.121649319355197,0.177302117701077,0.216337343249185,0.238624143420764,0.24802040988593,0.243234938250431,0.244632923088063,0.24574359010717,0.245375160625683,0.244242618088799,0.244138177682422,0.237838227564575,0.22203572751769,0.197248782147222,0.148670054004986,0.0851835863450227,0.00990394989966176,-0.0596797255214201,-0.118360276506488,-0.195022175000185,-0.231174863612501,-0.229834560674013,-0.198225049497944,-0.181885395431897,-0.147893129511253,-0.0902904163330732,0.00553207901319177,0.100928990654812,0.154593178070878,0.200180191268229,0.229412890302994,0.240464886147995,0.243561872362144,0.24469388166948,0.242295188034263,0.243645112526882,0.242152745527423,0.245411826330263,0.242205080484124,0.243759295350893,0.234421214109681,0.217078541016093,0.185367477670615,0.134486015556167,0.0715050873210745,0.0010430450271718,-0.077976951148157,-0.1601552636732,-0.19428895863304,-0.189084600991661,-0.16245947987606,-0.127302143063911,-0.0704491347550427,0.000124528201865463,0.0756287552044289,0.139985237539614,0.182111041861335,0.208958693256292,0.228270643367994,0.240007607727564,0.241349953560593,0.245521100493861,0.246423888799482,0.243031724389532,0.246404667588335,0.244482402131972,0.246108962807573,0.244293092836453,0.241365240861347,0.236276032100803,0.232476508615381,0.215287226290095,0.188213659164877,0.15626545517241,0.0955712398881748,0.0394700283981695,0.00125148081518769,0.00642527206964745,0.0278736278772135,0.0441859115230716,0.0657766928492747,0.0892301971876916,0.140048979455075,0.17489794923689,0.20329006171848,0.227829164821738,0.239106656964115,0.244659869015371,0.244532885290033,0.245471868376456,0.245660950285032,0.243079456190334,0.243560012161361,0.245657186188705,0.242787205005567,0.244135878131672,0.243775251954267,0.245709260282518,0.240315675960883,0.23759362537033,0.231398464808355,0.223469473765471,0.193674332749733,0.172894450193783,0.158373681952101,0.154218246141772,0.161321980628356,0.173842129015812,0.176921715194211,0.191058009664261,0.20983502874258,0.226536553347758,0.232902955068759,0.237177173167604,0.242703021080634,0.244437963437311,0.24306068527957,0.244787701713931,0.245929667064127,0.244390525679719,0.242198102224512,0.242670094258161,0.245965005534702,0.244139328597713,0.243946442316508,0.244301599791301,0.244020699006529,0.242516700323791,0.242277585725765,0.24116654211173,0.237926460754005,0.240886292139415,0.24235313039449,0.23823635944885,0.237291958924626,0.241032343735065,0.24164601324793,0.242099084278911,0.241651384150897,0.242830119573938,0.245800307070016,0.243937928489421,0.24243386197803,0.243009316973556,0.242415909491269,0.246311387675994,0.245467503211825,0.244480510986471,-0.234910525905573,-0.256709591592097,-0.259014590452353,-0.257784819380939,-0.25713728574027,-0.256843674137768,-0.259054632180765,-0.259972070904409,-0.257876240456033,-0.257491128119377,-0.256969969952734,-0.256516824654715,-0.258034664774251,-0.259930743832131,-0.255613891645044,-0.258467511779895,-0.255815678229253,-0.258590245095665,-0.257877493767352,-0.259944427184002,-0.257159866440832,-0.256593120376329,-0.257211737697023,-0.258330365139107,-0.259227245778266,-0.256847007111017,-0.259921104779326,-0.256298873293451,-0.259147922304591,-0.259319687166661,-0.258295314066428,-0.258326776115353,-0.255963807767235,-0.2556676339828,-0.258368058679293,-0.256524736001357,-0.257606714297016,-0.259851689875024,-0.256679997393378,-0.25554466693315,-0.253248300066046,-0.257424585905974,-0.2538538242045,-0.25311245206421,-0.255609454532587,-0.255652800443967,-0.258114249874475,-0.258929908119635,-0.259715568198238,-0.258664478220779,-0.258085200205431,-0.256052310510467,-0.256279755347913,-0.256140850394881,-0.256862075480369,-0.2588512192306,-0.256750313032484,-0.258679026183595,-0.256926894703997,-0.257548902792732,-0.257698571865084,-0.256042486737266,-0.258113785819403,-0.256352188932558,-0.259488794995419,-0.256938841237779,-0.256127699444088,-0.248682542006892,-0.244627790052255,-0.242065573817959,-0.232864485311387,-0.225937164393582,-0.233135249427787,-0.241394522362511,-0.24456198151759,-0.246790314467066,-0.248757948854599,-0.251523292217522,-0.254193119043426,-0.256280831380576,-0.257068734015047,-0.258902274177611,-0.259568533738874,-0.256093511148889,-0.256755970940863,-0.257803235648811,-0.256856849556141,-0.256322161702704,-0.258864757697462,-0.258300155052692,-0.260274473042094,-0.257438631854943,-0.26040729677906,-0.257859417293528,-0.248308939800023,-0.240895626970384,-0.238156524087983,-0.237443277540502,-0.231548813471273,-0.232713790262208,-0.240021970013583,-0.243879686063819,-0.248075121241648,-0.249115827242796,-0.253457936558028,-0.257829984631747,-0.259095263647266,-0.257563782555039,-0.257087126335267,-0.255275775455677,-0.257648437944195,-0.256077032512782,-0.255874580458123,-0.259380475931152,-0.258821050486098,-0.258249396305454,-0.256607637682984,-0.257429479903698,-0.25733133458518,-0.253439845318237,-0.254327673896415,-0.243319408415474,-0.218390528426146,-0.200791131763466,-0.193411189123071,-0.184976906814308,-0.181414352206579,-0.196519936928038,-0.206724164331323,-0.209717611662481,-0.223963662163445,-0.240987694339898,-0.257748703409138,-0.267949588636898,-0.268488078049725,-0.254566307379976,-0.256814537530987,-0.254276327790227,-0.256014325622778,-0.255700512695741,-0.257811453383258,-0.258729177263128,-0.257028569574498,-0.258008208382822,-0.259277940785627,-0.254708951975367,-0.248623619194096,-0.24075639026561,-0.218300200452682,-0.178246636720873,-0.141638620780471,-0.0965667584254381,-0.0454207052582165,-0.0232849543674858,-0.0199217167443629,-0.0210962896617637,-0.0179430263491291,-0.020404473901221,-0.0326396165371266,-0.0751759748774503,-0.135094736013583,-0.18445419773706,-0.210909446779547,-0.235199117001209,-0.245403841399673,-0.255513770454034,-0.253780937881391,-0.254046351246563,-0.257402664429353,-0.259929608920972,-0.259711408938918,-0.257651775380226,-0.254206264631047,-0.247023841319402,-0.23339247159634,-0.205919395402581,-0.16108291319891,-0.0969545363575602,-0.0295475365584593,0.0233336918145447,0.0774171033112688,0.125394049016588,0.148321284420412,0.154898334765346,0.157039879516518,0.157681195495754,0.134976066123428,0.0691999568320853,-0.0194002381183968,-0.0976330030319125,-0.158464214527753,-0.217578801013167,-0.242597451382373,-0.24734264933014,-0.249880899326899,-0.253376110668428,-0.257165245356331,-0.257399674679446,-0.255880652865788,-0.257670523075454,-0.249570744259474,-0.230795136809253,-0.203095900636327,-0.159897921052296,-0.0884388466455021,-0.0114231559231789,0.0467587723615776,0.11844950660221,0.200524854300998,0.241037328666721,0.243491528780384,0.22479706350404,0.218215586919842,0.22350333400879,0.201376865216511,0.138028731448006,0.0656836503066347,-0.0294236270292914,-0.101555401382922,-0.188760741305364,-0.236523802935792,-0.244361188035259,-0.250435269181481,-0.253244946145102,-0.257252284021535,-0.259131956683416,-0.259472772657809,-0.254941722027841,-0.242882273082937,-0.21581024946159,-0.185684616415835,-0.124161141760276,-0.0560681998556027,0.0294901680506629,0.116303189650894,0.215369324644689,0.267886464588108,0.260667189766973,0.195884023704195,0.132919437869998,0.118023806641673,0.145713664008674,0.166884617059017,0.157847844192307,0.100684493238523,0.0143375076726246,-0.0662342132384264,-0.156536883406438,-0.226716215014781,-0.235900166395042,-0.249058109597735,-0.24980809749071,-0.259807440306655,-0.25779969708478,-0.257246351983976,-0.250342071917666,-0.237237570091554,-0.215577029318396,-0.175648303524139,-0.118233690467464,-0.0455729706141217,0.0664137687991295,0.175125168410695,0.252521972434745,0.252323014335662,0.177510929640646,0.0472837972248219,-0.0324370898837051,-0.0173764108363954,0.0654582144669023,0.144455669230539,0.18626461382597,0.131985488878377,0.0587290471830616,-0.0465213342025446,-0.15017167765187,-0.20729446062754,-0.227716269138228,-0.249034588578116,-0.255650090731035,-0.2563799125324,-0.25735755010406,-0.256472347485254,-0.255502880155756,-0.243269561966597,-0.222468622493352,-0.18250788994772,-0.130620557189898,-0.0103139084703855,0.100562644332909,0.205501556088716,0.237595076202392,0.176574653506725,0.0646755432963328,-0.0783090591015707,-0.13242570945665,-0.0521853375917356,0.0738376517030722,0.187913963844621,0.219600209951092,0.175174923142919,0.0784720198094096,-0.0480627309371559,-0.161708630588759,-0.217835545317278,-0.235120227004552,-0.243654266293662,-0.25544374853405,-0.25675264987958,-0.259904291988494,-0.256095246420086,-0.254821184810124,-0.248619779303374,-0.236665202576096,-0.190007397648571,-0.114492046783591,0.00737668023990866,0.12704003647219,0.202534278626332,0.200555077597425,0.128463815166183,0.0263713887732791,-0.0815058187352014,-0.0717052841768347,0.0208373000541438,0.145945582778182,0.253653519371297,0.271250018808972,0.191784000529159,0.0663184651950784,-0.104862499295158,-0.221198855987167,-0.252643773746676,-0.250434234447929,-0.242698255621824,-0.25469825844697,-0.255651030916882,-0.25577074759369,-0.257799365836429,-0.256801696405346,-0.251987392302741,-0.239949064977303,-0.200820482375614,-0.112298009921598,0.00326685272357964,0.117640489680787,0.170406673559885,0.163402499183246,0.136037237480665,0.0859372248172112,0.0455920984574685,0.0649641129948888,0.14112441818685,0.246012437275151,0.316116555521251,0.28202066777281,0.177466565127478,0.0163917245919298,-0.171596739195017,-0.271286278085523,-0.282566020984965,-0.263395344703221,-0.249026737889193,-0.257924021299281,-0.25599846937036,-0.257942731576543,-0.258828714032146,-0.257232806413268,-0.254336546430769,-0.243326584094908,-0.208168145740004,-0.132082642544994,-0.00565926191981636,0.0947675959331028,0.149400070189192,0.158591891819595,0.175337888612614,0.190715318377142,0.177505584182054,0.194465415579893,0.236951772675402,0.308768120734542,0.337345261820201,0.275252655282035,0.125384353047586,-0.0553142386306759,-0.2053916212502,-0.27499373747325,-0.296117767293733,-0.280402960470668,-0.256399830263853,-0.257581642035094,-0.259035953153465,-0.258811333723678,-0.255699913773138,-0.25959814783506,-0.252089713317896,-0.246491583409744,-0.230698043446659,-0.171095862523741,-0.0511365252289631,0.0562033621916521,0.12325898065818,0.162929944526593,0.212497342768184,0.245915352464674,0.231263840436212,0.227637734620041,0.244938500470581,0.304443213052344,0.317300264053654,0.209988352132475,0.0489542243177985,-0.104642643920574,-0.216541773471494,-0.270299318813666,-0.297203991157154,-0.27839729358251,-0.258321713149725,-0.256351050209431,-0.260055167578363,-0.256857218075143,-0.257737658413141,-0.258093889254205,-0.253500335528101,-0.255401027573787,-0.262687171825319,-0.235164154077652,-0.12902647347413,-0.0131906269366948,0.0774570809192633,0.146330145085482,0.20291318150951,0.228946376187236,0.19497685791842,0.172006877420003,0.192130416464549,0.25718241968235,0.240958390212025,0.130452934390464,-0.0111193837958892,-0.122846060283948,-0.200590931195472,-0.264117437888733,-0.284579322840494,-0.274848038115525,-0.254722196275325,-0.255887726155493,-0.256639292084705,-0.257924765729256,-0.258822256447641,-0.256753766599979,-0.252041220901225,-0.26151449489667,-0.292895222112575,-0.290595291046916,-0.223793471786009,-0.106648432511447,0.0143191455549327,0.107424583678133,0.166315938687478,0.15945094833414,0.0991633264311657,0.0719005269745575,0.123142292328434,0.201322977317543,0.191694065115372,0.068796204855474,-0.044419672697863,-0.115358052452484,-0.181858529829512,-0.249562627879074,-0.275533869303411,-0.271382945249793,-0.261348282319965,-0.256352060962002,-0.258206779201245,-0.256331134632443,-0.257144048194884,-0.257922721062257,-0.253419943663597,-0.265414773577265,-0.306322198137854,-0.317498487153383,-0.278177820221584,-0.179814495284219,-0.0461701841464681,0.0623939443891714,0.100717432552896,0.0603970276941792,-0.00731867195308447,-0.00261199130986729,0.0843490503842033,0.16061205751796,0.145868655073132,0.044989786390409,-0.044897595229528,-0.104472191667263,-0.17156409036841,-0.233343879137379,-0.266819697651236,-0.271053813146798,-0.260387413759678,-0.257966219172668,-0.255846091346235,-0.258799117898075,-0.257109058607165,-0.254077156751875,-0.249537887381,-0.2617986803099,-0.304841853114024,-0.317204078258882,-0.272053964527658,-0.190337811683532,-0.0756738540358684,0.0180849082369886,0.0315385265649598,-0.028355585640666,-0.0960647304702664,-0.043166398181915,0.0631952743137338,0.131259072101001,0.103925280238628,0.0361210790000062,-0.0265284589781168,-0.0986879061529475,-0.177608459299812,-0.233206924735667,-0.260722696532998,-0.266922110551683,-0.261274198977455,-0.258859356694648,-0.258021581310767,-0.255827343030713,-0.259879180065037,-0.252268245616712,-0.249490424568795,-0.259690109053313,-0.298699690685805,-0.304881622530003,-0.254455923925574,-0.162256134958224,-0.0768099711959961,-0.023396045240891,-0.0417183040216595,-0.111992578728311,-0.126893703480803,-0.0550154477735746,0.0499728101533644,0.117768192695429,0.107914543756415,0.0527824754617936,-0.0130482850358586,-0.0957557758511511,-0.175336686551673,-0.220496366228179,-0.255155146337038,-0.264935499064926,-0.262755883007364,-0.259070251720186,-0.256036316859559,-0.258160048025308,-0.255678195607952,-0.255921071881828,-0.244331998039899,-0.24720204853525,-0.275019838244554,-0.268268743530972,-0.20927089043791,-0.158622722010512,-0.090151540497869,-0.0514356432910813,-0.0900302970610824,-0.109771085970861,-0.0881837436027545,-0.0166986976982853,0.0738232211851097,0.135703910843976,0.14109655372729,0.0755013794927652,-0.00013687540849928,-0.0998367148566346,-0.171025585903663,-0.213897016234839,-0.251997070255233,-0.26013294610386,-0.257362155594189,-0.255799470879868,-0.256591381065235,-0.25903032190578,-0.259735427430593,-0.253292974911873,-0.247204782126289,-0.24000077757123,-0.245863482848432,-0.216746462419408,-0.155819172260076,-0.117517163557274,-0.0670246977462342,-0.0378826694073293,-0.042492105909114,-0.0191393530085375,0.0200624031300311,0.0774137181179413,0.127949651730367,0.171266698774355,0.155835037600104,0.0693245856273349,-0.0132518682044692,-0.114220024783648,-0.187549755022476,-0.226168163605309,-0.25636162049355,-0.257856299823992,-0.258292204294579,-0.258991230109085,-0.2562676422272,-0.257466465079434,-0.259750357832598,-0.253437137360447,-0.249123681650032,-0.236918969578314,-0.217889082044717,-0.187848671570111,-0.131259469357482,-0.0613953142915353,-0.000394154408001778,0.0492841909059137,0.0840309756140839,0.123012626575834,0.134315149932424,0.151568219410004,0.173735090871242,0.169327993923487,0.126841176779927,0.0471636644744912,-0.0577734746954942,-0.13664941347381,-0.198967052371694,-0.237137793966945,-0.25826467164502,-0.263932369524687,-0.260004861300639,-0.258204321713972,-0.256344432447715,-0.259211366729427,-0.259370827213133,-0.25574983357806,-0.251983080437381,-0.238471579492874,-0.216139193839616,-0.177771129016782,-0.117988989750112,-0.0473620166834278,0.0269471911155862,0.096035001958209,0.177472108595372,0.214339045633532,0.217015933544023,0.192563433602399,0.176050405443588,0.146772792476043,0.0825440749241192,-0.0116937657791381,-0.10894519842772,-0.160780041425017,-0.213685439345832,-0.241178575695728,-0.25353991016465,-0.258370605381639,-0.256538519266274,-0.2584855419156,-0.257206543392809,-0.257011129411988,-0.259564107073505,-0.257040100993974,-0.257547253251276,-0.248814943542336,-0.234227611659877,-0.20235987074984,-0.155154927253404,-0.0930604488499756,-0.0238624401163734,0.0635826553952251,0.149926426743501,0.190499968014859,0.189059913840637,0.16137650079917,0.130008207024579,0.0746290996692695,0.00266905660974284,-0.0763529556036365,-0.143820806160361,-0.189816716643547,-0.219062546068623,-0.242388457744699,-0.252482020251673,-0.256213011656013,-0.257609310790278,-0.258584411032773,-0.25711127730621,-0.259756663138443,-0.256934425620812,-0.255766979008057,-0.257197112086119,-0.254291930415605,-0.25253096675187,-0.244636427968448,-0.225091726407875,-0.194640226321673,-0.161939795305158,-0.0946258500838644,-0.0307798788917309,0.00890666242405945,0.00730834115470727,-0.0129831263254469,-0.0313642129035363,-0.0546178554103808,-0.083360131229502,-0.140586200448901,-0.179826351551344,-0.213040150588428,-0.239404637074886,-0.250209734012706,-0.256526835159693,-0.257261679698855,-0.256592918971577,-0.25867227730246,-0.25754882991321,-0.258970515175433,-0.259603046597142,-0.255681189186996,-0.259781183600687,-0.257985408372679,-0.257785426933321,-0.253758409423125,-0.246012591511288,-0.240980577309687,-0.229380720863332,-0.199955118085803,-0.172643737046251,-0.157774253331448,-0.150722055341393,-0.155067752877342,-0.172385096215519,-0.180538195051269,-0.19896962042613,-0.220303140222026,-0.235440327553599,-0.245420025269331,-0.2484078923051,-0.255751099023476,-0.257722899881386,-0.258188810733703,-0.257159113388449,-0.255735071329325,-0.256963200287531,-0.257097542397957,-0.256165470733406,-0.256385411177237,-0.258634086079356,-0.260242742440975,-0.258791230251671,-0.256108448297737,-0.25803412026016,-0.254658874772906,-0.256709840341051,-0.251432067583572,-0.252077653522136,-0.25688264292983,-0.25196837132258,-0.249125748689232,-0.25210218829949,-0.253989142125218,-0.253266097615302,-0.255854912533267,-0.257354987865374,-0.255952606395468,-0.256807028775403,-0.259042296963217,-0.258492416981449,-0.258656801100162,-0.258796111781898,-0.256150607341695,-0.256194841944965,0.248205149499924,0.247135335327974,0.248323773115448,0.247943735736386,0.248104382670143,0.24552902440629,0.248151569521581,0.246270362280967,0.246233879283399,0.248227950247699,0.247032130460751,0.247906114421429,0.246844944134724,0.246111192010879,0.247989212233779,0.248610023779282,0.246800357937812,0.246909298632838,0.24819222837109,0.248470168775727,0.245183771141443,0.247434584318149,0.245990679695494,0.246608858593017,0.245367323647325,0.248177451891208,0.247480062093265,0.246796314069798,0.247978407067479,0.248583253752061,0.248610806610195,0.248078351697976,0.247964519021905,0.247032443703193,0.24745282729835,0.247017870545674,0.245589082361918,0.24458555816561,0.244858559636125,0.242891817705742,0.240949794852777,0.246745437433178,0.24226673208016,0.240754254581056,0.24480734407809,0.242950267657893,0.245893812876775,0.24543481805352,0.250553760651939,0.247191226704267,0.246752517168367,0.245520735292045,0.246013268573659,0.244983934621963,0.245615197565323,0.247676246544429,0.244361561313641,0.24712910155389,0.247448565114802,0.248423872606442,0.245608699850134,0.247068521370792,0.245653516528011,0.247417537468104,0.243980529521825,0.249330522890785,0.242061418147582,0.23198940829333,0.228867237326282,0.227506527125187,0.218805867015313,0.212620122376856,0.220797394840145,0.225794013380003,0.22835147812636,0.233870565358883,0.232887267193102,0.237481305627499,0.240162164029994,0.243721036211809,0.24667514695736,0.24822798035928,0.245540379257035,0.245610134455976,0.24684714143553,0.247332808160936,0.24761689084058,0.248274783912971,0.249170841737666,0.248067735481697,0.246165488540501,0.248776122600216,0.249984511455256,0.247379847695913,0.239693334346274,0.233008427351839,0.228737874254184,0.221292673554796,0.212561063577933,0.217380737401352,0.222927822052532,0.223400275104386,0.231011403686417,0.227994552582489,0.238176959077139,0.244783668123279,0.247385254912999,0.247038937949118,0.246821524330809,0.246063531507858,0.243534779849239,0.247703258470392,0.245853651881801,0.244816590441639,0.24770448788576,0.245538443469767,0.246882523594838,0.245834994546825,0.246647649850626,0.243435676079686,0.244035720688415,0.234631569553731,0.214353037495799,0.197062497986744,0.183600252462985,0.172066678926758,0.167073733851807,0.176857151422967,0.180868871141255,0.187429247261268,0.203150624886865,0.211591340681363,0.233228809758151,0.251025973863034,0.252478760878585,0.244257793562823,0.243463653021448,0.241355449116846,0.246524848694028,0.245840299143989,0.248080599923505,0.246464641300219,0.246540607016751,0.245009622237475,0.244246796059746,0.245094659545468,0.237692703069302,0.230859304930565,0.212400669643758,0.172430315917291,0.137793597951752,0.0986135645702137,0.0517047369179766,0.0337723575025064,0.0242920974939191,0.0164737487563307,0.0166629981469362,0.0147680623545427,0.0252539124440589,0.0685438170152322,0.132225849191217,0.176776126446573,0.20534653254615,0.227785259122625,0.238906749827412,0.244776850738657,0.245447681127986,0.243472867812446,0.245553378741243,0.245077643216131,0.246525175933874,0.248053338849205,0.244592206887048,0.235221979772467,0.220706070906629,0.195937088742847,0.156741168815793,0.0965640801509366,0.0410065152991781,-0.012394460744002,-0.0589826474746778,-0.105647912929852,-0.1272723832069,-0.13475357822281,-0.135323343759521,-0.140233026705474,-0.121411729232224,-0.0603069026093816,0.0272628804971269,0.10260783129565,0.158919543246096,0.214820204654461,0.242736577784075,0.237987139415485,0.240031545805408,0.242186595263573,0.244322457364503,0.248444928505527,0.246081661018724,0.246857029606265,0.23649618147076,0.213918352189174,0.187245507054655,0.144598744051972,0.0825067658579072,0.0166852871996509,-0.0380490602737048,-0.104720129335214,-0.180530561782142,-0.222113292722943,-0.220810929883583,-0.207516327512664,-0.203142057026695,-0.203544622222217,-0.188314801619096,-0.128415095461957,-0.0594690378171886,0.0268841888423451,0.101244328740668,0.188412571361688,0.236016793223751,0.239366353746903,0.240053564878334,0.241158155758773,0.24537432295227,0.24570816022408,0.248588131684532,0.242157810776783,0.228197431028845,0.197843044292129,0.163963602636859,0.106315041122584,0.0475181307456382,-0.0276138033110283,-0.10799669960371,-0.200704181386255,-0.249904899794481,-0.248991766832816,-0.189948147445318,-0.133026393568403,-0.119360056056996,-0.146434275436038,-0.168829117373705,-0.158573444484973,-0.103095671332414,-0.0178258328003413,0.0604334614087599,0.150714902219011,0.223057844501933,0.228287339206629,0.242475825682944,0.241288344983559,0.245807717367765,0.246489280639969,0.245914438087386,0.23994681156929,0.224034750735996,0.193631970470222,0.154698614758312,0.102738802791629,0.0347774043119878,-0.0660187648775324,-0.163770201740485,-0.235112723650535,-0.239475757209398,-0.177240554731904,-0.0599051150928108,0.00717895873546234,-0.00747382013806423,-0.0786758485197995,-0.146651635036077,-0.183393331557196,-0.132024843250232,-0.0653368492579196,0.0351742602430728,0.137697388753334,0.198141688446159,0.22274304826427,0.242443235166847,0.242897336862545,0.247149315120728,0.246175564938226,0.247716307869815,0.244176680573729,0.228748621824321,0.206835931082741,0.163034688710491,0.108679119450416,-0.000382414359630652,-0.0970059079761512,-0.188734748976985,-0.220562120920815,-0.172132530333528,-0.073084552113638,0.05425589395587,0.0990868292647485,0.0279036597747061,-0.0812216260157456,-0.179506728175009,-0.208036516265332,-0.167481634432326,-0.0855450500361642,0.0284760320532823,0.140317696186311,0.204817317207491,0.223968687945733,0.233291789519229,0.243472999676789,0.247283653670036,0.245113074359599,0.243955151272765,0.245032259465798,0.236033160916387,0.222125398952792,0.168236112393254,0.0919200485693563,-0.0143206475349472,-0.125063284887493,-0.192721743950347,-0.191862194537257,-0.130064031804429,-0.0297154464643356,0.0675481251474883,0.0555205887221292,-0.01982789436652,-0.133210499595824,-0.230678094377924,-0.25473373174065,-0.184716949495245,-0.0774526734441972,0.0746215220437269,0.194047695463466,0.228389944995512,0.233619529563186,0.235336452683352,0.243607821226047,0.244566410710896,0.244385261085606,0.245099300233874,0.242570607407822,0.238321548739734,0.223756368959457,0.177018339404244,0.0899790928582768,-0.0155751045228921,-0.117900615279057,-0.16846299502469,-0.160677091517279,-0.131719006381825,-0.0737163121442028,-0.0310581164101911,-0.052996887301862,-0.118612964808604,-0.219412548305147,-0.289587068466549,-0.261020033526103,-0.175395007686112,-0.0339713146962526,0.134960827714892,0.235252230102974,0.254471244208692,0.248927358530943,0.239727197478371,0.244331457482405,0.245628959792337,0.245202769831318,0.24535507929789,0.243726826327932,0.2411341055492,0.227710283689017,0.183500137062501,0.103430681939617,-0.013321806182303,-0.0998514584547298,-0.149314831226347,-0.148785250681468,-0.156241143102144,-0.153551058358909,-0.140993669058954,-0.166269113375897,-0.208177908770611,-0.282365368479237,-0.311398777753915,-0.256389719225831,-0.130253101115043,0.0231135139176805,0.159608449186289,0.232379976588941,0.264529828071927,0.259923498325215,0.24313747975087,0.246094459580464,0.247512248355802,0.247091213898975,0.247013238250619,0.24812734419796,0.241280116473881,0.227232482626635,0.203935353420389,0.145569379680779,0.0301929202433463,-0.0622572753796984,-0.126033803255885,-0.154189896305392,-0.178335165081017,-0.1997386532148,-0.189270141987315,-0.193730344232743,-0.217925287408877,-0.279270936851501,-0.289790273524051,-0.20113714698374,-0.0682016104749261,0.0618988351161824,0.169194338615428,0.229589189242091,0.268344188300749,0.260701980653405,0.248756017189195,0.248977333586081,0.246281262405907,0.246336300770658,0.248454201797615,0.24731547285356,0.242038079684759,0.240246319279283,0.235419708518913,0.206410869970767,0.0997009900968621,-0.00361149556286727,-0.0766807960962543,-0.127162903564337,-0.165718738359156,-0.181187330243758,-0.156756762843228,-0.143939013379361,-0.164718027495118,-0.227584448466325,-0.217424561867454,-0.132289524299456,-0.0187319032017951,0.0724589647981437,0.152311517450051,0.223463041668565,0.256748192946464,0.256140101489126,0.24753918772467,0.244541814478002,0.24682111036781,0.248153215691195,0.245480359104225,0.245047673895846,0.239047090895469,0.246168098461504,0.267710996524392,0.252303794347816,0.184407659138579,0.0851310062153856,-0.0189497738932945,-0.0886546224595034,-0.13353433431045,-0.124593743636874,-0.0775512492423589,-0.0547035040664954,-0.101525544392742,-0.172875434394767,-0.171063726144863,-0.0720170475219819,0.0127060130719348,0.06511781339661,0.133137701266737,0.208092719981814,0.247510072392628,0.251940858116388,0.247255255288333,0.247647728416256,0.248190857854003,0.248761434634341,0.246195608815826,0.246791609569955,0.242604905764439,0.247727041932186,0.280102590307457,0.281337817095167,0.241855162177047,0.150250954118452,0.0356480447383017,-0.0554111232033392,-0.0830356674850736,-0.0416751570376743,0.0153761312884164,0.0101421132657674,-0.0691395273818171,-0.135146973061241,-0.123771149745037,-0.048209133774801,0.0203781731532646,0.067427436815374,0.136248363331633,0.204299259465318,0.241936873263016,0.257749186042504,0.252439146823793,0.247281081638257,0.245903020764634,0.246088743872408,0.245180160780147,0.246494775380681,0.239262877143178,0.247990012275592,0.275122265823091,0.288664497698754,0.241130583782948,0.166814069079457,0.0629413028172063,-0.0127799087647178,-0.0272100230597061,0.0278078807645269,0.0856965845539427,0.0444406498315161,-0.0536486995634284,-0.115313316114549,-0.0949028654767171,-0.0408443710716574,0.00940998821999697,0.0739707948021048,0.151459455964645,0.21682999236583,0.246216376607869,0.257328677325275,0.254676612730214,0.246335641067157,0.248670878264584,0.246689415447814,0.245933206986815,0.241418453782097,0.234592218928408,0.243990479394776,0.277138291819725,0.281614612227211,0.234383422526944,0.149677133027331,0.0709015342430342,0.0194952390797179,0.0337274060577344,0.0929053137098217,0.114527308113937,0.0458955863615645,-0.0485292686470284,-0.111937436134249,-0.10258842632667,-0.0553181601870385,0.00421505694425823,0.082349478421213,0.161674251732137,0.21413639757269,0.245278562822947,0.254867946782875,0.255204340236315,0.2467975722559,0.248426057755517,0.247273173096904,0.244905396311958,0.244209883040818,0.232407729053844,0.234339399376695,0.256281873485788,0.246930340308798,0.198792297160068,0.149010233624428,0.0828711317478151,0.043600026352192,0.0718911490615396,0.0884622644620551,0.0673155177184922,0.00616895590335004,-0.0715034806580642,-0.127718994235279,-0.132273810050755,-0.0744347089284978,-0.00161871027303405,0.0990685925043499,0.168218495208127,0.211023359705775,0.248531684967621,0.25466467989551,0.252382341586975,0.246684021565354,0.248595838705205,0.247276784709083,0.247119872102068,0.240784402899674,0.234539138618873,0.223598441120669,0.232930433909698,0.200807977777881,0.151522424036951,0.109601011298399,0.0656516324427118,0.0290632953375815,0.0291382813830581,0.00181818406793865,-0.0282705258850995,-0.080506794816937,-0.126252206204776,-0.165916240889042,-0.147038321360988,-0.0624135636755817,0.0192623217944071,0.118015620254794,0.186068068202352,0.224336526111766,0.24995413349663,0.251464825483345,0.247766547391844,0.245792601541965,0.245235305514252,0.247608484265216,0.248636841676889,0.244671015914818,0.238506268351226,0.226162186144276,0.202899614353492,0.173020291451703,0.124246051340852,0.0638620584643013,0.00602642108932105,-0.0491509442007227,-0.0841824483293339,-0.119188138712747,-0.129941966229939,-0.145782196689147,-0.161454205283169,-0.16099099451464,-0.114906296754671,-0.0354946956349308,0.0704212493607671,0.139317945530984,0.198102456811258,0.232621904804103,0.249899622334963,0.253209468138067,0.24727410053782,0.246753377872673,0.246814460942071,0.248227002382868,0.248365581082285,0.246127569981578,0.241895730318584,0.226588151872492,0.206365286815286,0.165847658285761,0.112518456394274,0.0427151896016047,-0.031032808762987,-0.0975439842154985,-0.170297391521621,-0.199278134580551,-0.197017685498815,-0.175120223830781,-0.161615240153563,-0.135240021959412,-0.0743970809485642,0.0189050297863448,0.108627279660921,0.161995344133052,0.210325572717172,0.235383002115554,0.24575648008914,0.249018317723552,0.244158468777642,0.246697485155197,0.248498949156187,0.246136907973191,0.24769566489595,0.248273065329209,0.245760285668801,0.240335132604135,0.222854225145496,0.197475158588203,0.151018007460201,0.0899343715845016,0.0216621157949174,-0.0582877880643004,-0.138344322503693,-0.168710071164889,-0.16196227479761,-0.145232026125359,-0.117281834232257,-0.0674737387652813,-0.000326781686231011,0.0720857467340426,0.136360609648622,0.180359867584984,0.211160084764088,0.230210403969852,0.244787191042018,0.245071371665613,0.244317070862652,0.247168798049399,0.248285484864704,0.244716021327197,0.248278997294132,0.245161106487486,0.244773548981803,0.246852212547505,0.239992310928579,0.229926733890347,0.215217619020577,0.184364582871199,0.14585346160332,0.0824767236602361,0.027230728612012,-0.00384635927641382,0.00231393932797342,0.017218269228414,0.0335683970231407,0.0536676954042669,0.0766090263385778,0.127363754578026,0.167615255403487,0.199280826797934,0.226114597312156,0.239743500855471,0.244280318489059,0.245201006841979,0.245901722094724,0.247703556054176,0.246404869987015,0.248138166145092,0.246379240764728,0.244833668627216,0.248661761049576,0.244468645595046,0.244489150082788,0.238317315161184,0.233321378047813,0.224522762292267,0.21048879665488,0.177181624110788,0.153895641379673,0.142781065946272,0.143527406838311,0.149747638195481,0.16729023658238,0.172155444852563,0.185897785539225,0.205393137741523,0.225516961170232,0.23050284589803,0.239099837408487,0.244732665150803,0.247676781841466,0.2482231591933,0.246892196215812,0.246662698107584,0.248256885928966,0.245678037374685,0.245190552253675,0.248179232129019,0.248067894982452,0.245952463562369,0.247697557979269,0.244906206302119,0.245102647403204,0.245959724514966,0.242661108754854,0.238611985654978,0.242533384098955,0.241236909165293,0.237916345102054,0.236874221647041,0.240572989331938,0.242720664113264,0.24145505020116,0.245531988717797,0.24543008816356,0.248619183574753,0.246818801053856,0.246651722855118,0.246327263101679,0.244899850915584,0.248129284696939,0.248712807351186,0.244568685537345,-0.239646984540902,-0.205048778872165,-0.203045279038233,-0.204673971813227,-0.202426503016677,-0.203921443980474,-0.205369240673271,-0.202287621541437,-0.202732675835052,-0.205789757914833,-0.205820286595205,-0.202973216447943,-0.205079093021816,-0.202071131213869,-0.202002602060263,-0.204478987367077,-0.203107863322788,-0.203275730825853,-0.205312296834898,-0.203669997238629,-0.203678852832977,-0.205592847010944,-0.204522162733854,-0.203628317497654,-0.202179039814216,-0.202918782889455,-0.204558261569248,-0.203641882621168,-0.203227902201106,-0.205302418659858,-0.202026376716721,-0.204288683541896,-0.204613456458562,-0.205158124707868,-0.202471342164436,-0.202217997123082,-0.202337727755963,-0.202686915408292,-0.206009375157148,-0.204392730909887,-0.20103674527681,-0.204869140666514,-0.203124502824584,-0.200502214613658,-0.203308736367596,-0.203253539941124,-0.205818605688504,-0.205690970368358,-0.203389751873131,-0.205303445790282,-0.203046849141858,-0.204810139618194,-0.205176847998859,-0.203844783495013,-0.205397686890395,-0.202469737867472,-0.204347095880716,-0.202964174809281,-0.203049146773022,-0.205231380911478,-0.204058021734675,-0.203359761243416,-0.206197037847948,-0.204298726428077,-0.205047762173227,-0.203590819866149,-0.206323768417717,-0.202191418537573,-0.201317070697289,-0.201618354121275,-0.200182651308412,-0.19574368826448,-0.203775154460757,-0.207111737625306,-0.206865433255799,-0.208175059768265,-0.209722106356805,-0.208122473345028,-0.206121393597466,-0.207755510919895,-0.205668322703479,-0.202076155592808,-0.203681236463754,-0.204033004651194,-0.204952793854116,-0.202405011378462,-0.205250367679035,-0.205197833774935,-0.2022732243265,-0.202505147180432,-0.20307479631995,-0.205196839963544,-0.204121792104941,-0.210602320935565,-0.208694785798922,-0.210708161962147,-0.209591790741537,-0.202879219405325,-0.210285857726247,-0.210106538019009,-0.220836305006345,-0.217911134898494,-0.229058171389728,-0.225588937352283,-0.232906680216203,-0.225356910504108,-0.217834810926979,-0.211109132356462,-0.20613739895652,-0.203502028620912,-0.202723374205337,-0.203922694268414,-0.205665946745074,-0.204625878599254,-0.202485803170492,-0.201914835194338,-0.205840395260632,-0.202868728249259,-0.202550723892077,-0.202342088295397,-0.200222314755152,-0.193539500486166,-0.177238880794988,-0.16250273704458,-0.144909063736149,-0.130556895058616,-0.1156909927268,-0.105742555635862,-0.0928047614751926,-0.0934845315623929,-0.117044992578355,-0.135992455516351,-0.161704449227656,-0.186416574850546,-0.19774256716712,-0.198486098830701,-0.205121088617247,-0.197539149860914,-0.199520946967924,-0.202144721553857,-0.203663804625293,-0.203363181794102,-0.202826443196191,-0.202117411376511,-0.201378801572259,-0.201302417722114,-0.191914606921918,-0.182175486473617,-0.168092060603361,-0.139174599403228,-0.102628873094087,-0.0678811850074843,-0.020745389373579,0.0135456180415467,0.034997602820797,0.0548452807504222,0.0723857736407104,0.08449003172311,0.0672509677318095,0.0188030632006119,-0.0472083938216108,-0.100429081118262,-0.14734126166251,-0.186835547298403,-0.206326691785827,-0.208439218507292,-0.203217538220288,-0.202605675897186,-0.203520992240543,-0.202444236442052,-0.202926337632386,-0.202876048383651,-0.197841037214739,-0.18144331922314,-0.171166207408352,-0.153555228690963,-0.114968861579032,-0.0681188113326718,-0.0259155757341809,0.0218647455612938,0.0537904025316272,0.0945116116878799,0.10017834052299,0.0942042346340903,0.114422372797083,0.128010049006693,0.122640648054247,0.0945127957963044,0.0461034593026671,-0.0180886929773378,-0.0935274753308954,-0.173660602732633,-0.219239926408662,-0.220757070913004,-0.209261554715261,-0.205574911899199,-0.205107488430928,-0.202389516291189,-0.20328912139071,-0.204752281183114,-0.186907553838912,-0.155940490321113,-0.127950669587743,-0.0960780084183605,-0.0484321588721069,0.000702718945233941,0.0325753287289614,0.0816490790673913,0.135484584249665,0.152522852825433,0.131461549156085,0.118866158659648,0.118053686733022,0.131866762980695,0.149112914227483,0.136395892251207,0.120765705160175,0.0594755700596074,-0.0254104809913833,-0.130236908832191,-0.213063980976811,-0.230244879319004,-0.212963731651873,-0.202989743048468,-0.205672642860066,-0.204642639724655,-0.205981812073984,-0.193379029319172,-0.172220098172895,-0.142847581717526,-0.106320550663706,-0.0627143875105189,-0.0117382884093732,0.0390988655297659,0.0856412394738974,0.137840284913653,0.168732105383238,0.168848576714407,0.126946939216724,0.0878504428526097,0.0884406866207431,0.12093590699124,0.154733514611892,0.16361342351187,0.15768287147756,0.118620666406918,0.0302329150004951,-0.0781339828858428,-0.177120834830978,-0.21484868274826,-0.213682198388647,-0.20028818890487,-0.204255380752914,-0.204884934400579,-0.204858539018414,-0.192999121536048,-0.170143266456707,-0.141782758267988,-0.0956225602168492,-0.0538087517623978,-0.00338100856286212,0.0528298544196373,0.101730707792701,0.138324264501931,0.146899531179835,0.127609942377366,0.0788812073811,0.0504163181800517,0.0751266104241387,0.124417185586424,0.157128439615941,0.178504778054407,0.180707527166783,0.156386093106827,0.0783584810845798,-0.0238817546920527,-0.122742036081472,-0.191258987520733,-0.211881894678378,-0.206757862397023,-0.20453403257385,-0.204473155971447,-0.205140186868658,-0.195111934297869,-0.175499301595115,-0.153240474885132,-0.114666926086115,-0.0594616664992475,-0.00223632941201217,0.0400049990915846,0.0860843937551165,0.0941328255585215,0.0854221229436457,0.0617782773907414,0.0150536734095372,0.0102797457850899,0.0541095763215464,0.109475870081513,0.147803725304613,0.166049669399599,0.177749880515016,0.165878890939244,0.103311755569516,0.0041586581072637,-0.08389922435711,-0.168267075676745,-0.202302356892124,-0.205715543097086,-0.203767480909299,-0.205685371743423,-0.2004333376026,-0.197915552859033,-0.186321729381645,-0.170889607995296,-0.127318292792966,-0.0594395210795943,0.000167065971470811,0.0469321502120746,0.0877452769193781,0.0846294910484182,0.0720954144171145,0.0383964189950925,-0.00427488755536262,-0.00383967645645417,0.0233393189730865,0.0793559249669174,0.119673896312048,0.138699271058591,0.14936000677258,0.147692550560694,0.0872568680299533,0.000702881202610284,-0.0797368572763739,-0.158181486319279,-0.197419320258326,-0.204412308050046,-0.20364676006748,-0.20566294098369,-0.201714503788954,-0.198856685147762,-0.193892524749233,-0.180249433125322,-0.128704521988354,-0.0491918130462924,0.015232798201513,0.0545068454017693,0.091260122900208,0.0948327626097687,0.0759745742976029,0.0406464835153101,0.000241355878291761,-0.0160738856800638,0.0153224032139016,0.0682218911888736,0.0935701515614981,0.101215771352917,0.11745857195504,0.118498440267666,0.058928457820007,-0.0102291561565878,-0.077176051979852,-0.158713207677245,-0.200685244529005,-0.204024389326695,-0.204209909572942,-0.205682576174602,-0.202007158327658,-0.201718207806618,-0.196880150885425,-0.18023231234486,-0.106679481214909,-0.03285848311147,0.0411535115212637,0.0761265552599788,0.0994584155359224,0.0823109501609369,0.0580270311581985,0.034715791449342,-0.0061158550067805,-0.0139096304856901,0.0134870154194351,0.0680661712448829,0.0876260853298876,0.090283649727872,0.10578313578278,0.0959337441812505,0.0617540096517272,-0.0101587273245255,-0.0854019225572011,-0.157390737126529,-0.201286134145627,-0.203139823978792,-0.204586984935953,-0.203337321111908,-0.204189369471155,-0.203124035161522,-0.198961032945133,-0.169426373113942,-0.0965199456855906,-0.0226576300704165,0.0498430674181035,0.0845458449075541,0.0812993362298858,0.0444442096979351,0.00843469817745176,-0.00849497490623757,-0.0465159046835394,-0.0512468139938459,-0.0171567768059442,0.0443653858582064,0.0791274591889966,0.0879649785130948,0.109162327915435,0.109306433357221,0.0607831218109067,-0.0151225098853671,-0.095054222118997,-0.165365888992483,-0.20604953313657,-0.206540427471555,-0.203738499094334,-0.205650175976275,-0.205424852319009,-0.203145887137817,-0.197480158208413,-0.165469548572645,-0.0838165866643643,-0.0217455133316363,0.0283042430943787,0.0647696255058581,0.0313204149328183,-0.0229367514297091,-0.0415158811470001,-0.0723156585144038,-0.114620624914012,-0.104026270823781,-0.0760371962522086,-0.00629991662994944,0.0366612898320498,0.0773204614274657,0.121203824320367,0.13176943684068,0.0745533120682406,-0.0213903924889629,-0.113175776493522,-0.171588781776681,-0.20628437695814,-0.200754765463713,-0.204549696567815,-0.201898355576145,-0.202953702583119,-0.203429631046866,-0.198956113507427,-0.157470021800724,-0.08080652859329,-0.0328557474051276,-0.0036022961713939,0.00687077060860935,-0.017374260318318,-0.0617733995083335,-0.0971642055694166,-0.132147722636597,-0.166418280135298,-0.165542444606868,-0.123805666788111,-0.0388817674649408,0.0249239155422595,0.0741839249847951,0.118898797375746,0.140871199961265,0.0743160468762974,-0.0358701912764737,-0.123231491844156,-0.185342896581557,-0.207036803182853,-0.206185647092678,-0.202046104938404,-0.204009002809221,-0.204088697547486,-0.202133364262579,-0.197876925089351,-0.149961592780762,-0.0823148372529361,-0.0488890314356302,-0.0335133238570145,-0.0270613914549498,-0.052360148209148,-0.0868475245917056,-0.120549927092088,-0.1650850273248,-0.205073506710071,-0.189598327671392,-0.114185911100648,-0.0336128592302419,0.0333481171760197,0.0854396711457668,0.122044623974338,0.119379423813368,0.033860765191524,-0.070354924803286,-0.158777432706507,-0.204525367887768,-0.209285823927399,-0.202846180772521,-0.205902160653768,-0.202084455221409,-0.205182959980388,-0.1996839722109,-0.189918142802427,-0.145327256696501,-0.0775589874572522,-0.058005801555665,-0.0367776173581835,-0.0303161271010091,-0.0434221544216356,-0.079818053556206,-0.116947613465027,-0.166849178265885,-0.198705658228943,-0.16799235262942,-0.0665734964221989,0.0062552209929089,0.069553120792886,0.102200722759277,0.120703120146053,0.069381496324057,-0.0172161822724386,-0.117833427687884,-0.193907371913225,-0.216881216342983,-0.212289468030561,-0.203558619833038,-0.204017911857085,-0.203540294304487,-0.202009227505387,-0.198112136003545,-0.18304477008513,-0.14396998989669,-0.0826347633421687,-0.0525658693346275,-0.0241219522540194,-0.00120325780544227,-0.00248669884754212,-0.0386193006417027,-0.0901072268383854,-0.1349859960325,-0.157437897423209,-0.0965130856432589,-0.00972293394162078,0.0678025635307841,0.104151144893646,0.110348171618249,0.090607830099484,0.0094277932252663,-0.0747056330110004,-0.157397096968591,-0.21373202146861,-0.217835356831591,-0.212971009878357,-0.204594410671426,-0.204180388652925,-0.20296084695412,-0.205979114624002,-0.195680846393793,-0.182449427936052,-0.144702032975541,-0.0826921871188792,-0.0372144636224289,-0.000396512444222911,0.0288824341358612,0.0383407086455941,0.0225877761018512,-0.0243797757929422,-0.0536571490828877,-0.0551408872403566,0.00654672882942941,0.0807617462759423,0.119260833322194,0.149379077014808,0.115022218539713,0.0599984141504661,-0.0377214085988554,-0.129201294219839,-0.194881967481817,-0.229744344066427,-0.222669300740338,-0.210897903414753,-0.203310871081397,-0.203817512747438,-0.204561815176189,-0.203626043281271,-0.198565387356752,-0.185117454344866,-0.150211823602847,-0.09152193179102,-0.0272230847284483,0.03364410329253,0.0701776992140154,0.092162900652002,0.0969079394963238,0.0764462106087444,0.063217044832702,0.0769233768751236,0.110797537564127,0.147378530511313,0.160992571370377,0.146139036709405,0.0801834024381954,-8.78633362225345E-05,-0.106498274432451,-0.185505757549047,-0.220642767252941,-0.229357347503131,-0.213876765013494,-0.208519198265883,-0.202532285167811,-0.205890337389932,-0.201963501388051,-0.202401003722083,-0.195884806115244,-0.191425883177942,-0.162182585997326,-0.110542178937725,-0.0407016270498865,0.031802640098544,0.0948189720691002,0.142074864586159,0.173575942567176,0.171233405378004,0.166738887664536,0.160506058244161,0.159629737911162,0.157369068004511,0.138864033611895,0.0839137354287048,-0.00141401139287174,-0.10327164482671,-0.169396930214168,-0.207541188013199,-0.224161369014367,-0.221562012328709,-0.213517535943141,-0.207426396234649,-0.205553682116208,-0.205528559814407,-0.201962866983019,-0.205772822523409,-0.203488508571579,-0.194765314041985,-0.176713380484813,-0.14324403981221,-0.0878686073939784,-0.0145186497508431,0.0559604190042085,0.121684172950566,0.165984885819632,0.191251133544635,0.188475369978338,0.163976312357437,0.140675251494443,0.100880526524043,0.0502170066552852,-0.0141562690933323,-0.0954560944842667,-0.169904051896085,-0.190039783307681,-0.215166548008279,-0.21939098603115,-0.21247500032696,-0.206357576353197,-0.204705864276179,-0.203732112606833,-0.203579858205077,-0.203821640574239,-0.20252689810171,-0.202555449305999,-0.200798526071427,-0.18959398661242,-0.174547892107913,-0.146428635354752,-0.113763683349327,-0.0668039821383535,-0.0203040788396142,0.0257358024403032,0.0515933294151109,0.0531323554519789,0.0421691305461567,0.0265107268778888,-0.00668058401972774,-0.0600205233496749,-0.110580585271368,-0.156063688779892,-0.179595429493359,-0.190820481881098,-0.195538118240362,-0.205301143205776,-0.205387419454606,-0.202916014824229,-0.202726500832399,-0.206093896041221,-0.205169867881408,-0.202286131831015,-0.203202354602813,-0.202313040238427,-0.201724228175627,-0.204227158355933,-0.198408861665589,-0.190824926895248,-0.170426704158104,-0.155650960849782,-0.133993499592537,-0.107913275398746,-0.0859449633469807,-0.0802520551751301,-0.073556855592431,-0.0826839493543457,-0.101907860859693,-0.115434764503638,-0.141988888733893,-0.170071696826887,-0.182481397632882,-0.194133926102932,-0.199848209977976,-0.205586188096867,-0.20303288992714,-0.203161067656667,-0.205748538375908,-0.204498268732833,-0.20384730127457,-0.201943400066755,-0.205702328142157,-0.203305485860094,-0.202722939430547,-0.204508602563584,-0.200166465690363,-0.194781900829248,-0.183462376088085,-0.174890337174412,-0.162703112870037,-0.143031028410524,-0.134360612205728,-0.128760709812884,-0.12700821364024,-0.13259220993641,-0.143117313599181,-0.154707141794937,-0.165696367586211,-0.18661443897629,-0.200438589010282,-0.200501510076624,-0.200466603460694,-0.203041408830159,-0.202522811886564,-0.204274861266073,-0.201793422002803,-0.206145366576601,-0.204531078728846,-0.205238238240534,-0.203994724583219,-0.205058353055385,-0.202238392130353,-0.203961398650631,-0.202570685270666,-0.20227813148834,-0.202762676518335,-0.202942526603612,-0.201458277262562,-0.196325395819161,-0.19947540288155,-0.197542449384013,-0.191888046962985,-0.194347415206198,-0.194236602235107,-0.198800456525392,-0.195777496857309,-0.200315015620387,-0.202158831422515,-0.203460290174623,-0.204779508693215,-0.201851276171644,-0.205584469165203,-0.205143060497799,-0.203629617855265,-0.20188856489727,-0.205130997047146,0.186548842007114,0.190189399169864,0.192717657030137,0.190848879786867,0.193163736660496,0.190784403837287,0.191854004195838,0.189458740349732,0.19067767509366,0.191109739724133,0.190625144135933,0.1919924776653,0.189149150427022,0.193173560166121,0.190872515029683,0.191084978777573,0.191275400261178,0.189216535051578,0.189895463736906,0.190437978254483,0.189454773226296,0.193235163073939,0.191086897975343,0.189886788892866,0.18956855152615,0.189541558173327,0.191339763857658,0.191962697958272,0.192630045834343,0.191125961445194,0.191151886375713,0.189344865516044,0.192903799585042,0.192038886729842,0.193209480719207,0.191464936882333,0.190678275099285,0.192952126720716,0.191349083789449,0.188766599699745,0.191919450657677,0.189605542050744,0.193042491508275,0.189716286256096,0.19050550229048,0.190376298109476,0.190125286109474,0.189847552331327,0.192552075420796,0.190095774606263,0.191218316920223,0.191579922173473,0.189672178276884,0.191768837777658,0.191014978799548,0.192960669527478,0.190387463937786,0.191076231959322,0.19348111737546,0.190787604455226,0.192984248695591,0.192660271535196,0.19337590485293,0.191376399181618,0.191199932947717,0.187851310258883,0.190192486321103,0.191704661217514,0.195231861308372,0.195712921307881,0.194637009837228,0.194810981083626,0.201889031323906,0.200412249638983,0.198068300588207,0.201470812612442,0.199322865515812,0.197312043018601,0.194138454250781,0.192235779781964,0.194357378626703,0.190593602496089,0.192517117718049,0.19305796604874,0.189818138023402,0.191849537633388,0.189423916758852,0.192900961502652,0.189813292795501,0.190973179556595,0.19020930011716,0.192092146667118,0.190103922456425,0.19288389727991,0.194956126977656,0.194769913858515,0.196046436993858,0.200265856645392,0.205532845943966,0.214248938933046,0.218632804074534,0.214015011074349,0.219137416692898,0.221764978707087,0.224081664994653,0.215504534569766,0.20454811157637,0.201381950931169,0.194753197024493,0.191174454940586,0.188840927220985,0.192221477059082,0.192775042922179,0.192987361226856,0.190211339271962,0.191897024336909,0.192033173804543,0.191432184202102,0.190752572808212,0.186379370167907,0.185527547062013,0.178952643291825,0.161722114548199,0.148531625112883,0.126106777155749,0.120754171685789,0.095938977700756,0.0824467211872608,0.0607456559571188,0.0658978420368621,0.0913196204071457,0.113788303624183,0.140608544944223,0.171643171411355,0.184651856389827,0.191942467575674,0.194097255234209,0.190313780033875,0.189037807437797,0.192056208299731,0.190934025666854,0.18979306259577,0.192494130260993,0.191800795917013,0.190849665515883,0.184974832768991,0.178069028659893,0.169062493705709,0.155019855821905,0.127590972478614,0.0936121261837663,0.0590424734127161,0.0103408244074201,-0.0226738713807617,-0.0513710998544193,-0.0734083955895618,-0.0942272417578736,-0.101055697009567,-0.081330771602812,-0.0326785532169891,0.0329083250013131,0.086145601691,0.139274709631246,0.178677389487948,0.199020705287456,0.199271224915992,0.191225485188715,0.193513500768417,0.191829077465745,0.189868527487547,0.192749371748027,0.194098202005429,0.183481294425682,0.172044939192923,0.160726625533283,0.138204763263572,0.103769663174996,0.0604651811166982,0.0240663389726707,-0.0206018070649319,-0.0524593949687134,-0.0870060669577691,-0.096151726076805,-0.0989388820941587,-0.120177688883921,-0.123968498170883,-0.120800884480008,-0.100107729690743,-0.0628417390863206,0.00218565244314399,0.0797783136866935,0.163023383210911,0.211213319515583,0.216750779289399,0.199893034030853,0.190355885254451,0.191564175173108,0.189603670162739,0.191750724767431,0.191547014337186,0.177460736126895,0.147512422698014,0.125259412386957,0.0950322220278189,0.0489953574976091,0.00869208903836701,-0.025038953914696,-0.0611974888251912,-0.106399837375583,-0.122239356965284,-0.106368506049226,-0.0955461987651943,-0.103478997990848,-0.115931399746473,-0.133948830709822,-0.127359917325554,-0.122806618411131,-0.0713551921513268,0.0124109535505547,0.111117110096596,0.200649811324634,0.224920232409064,0.201336350846255,0.193510815969216,0.190115206970862,0.190835945688163,0.19084284274032,0.184252836190746,0.168304557986544,0.137299400575537,0.108695892931783,0.073964943449329,0.0291607073558167,-0.0157905820313427,-0.0507822864921553,-0.0957447671249556,-0.117899518912314,-0.120251889354937,-0.0894221362035526,-0.0660040438361723,-0.0708480177768867,-0.110812017954992,-0.147751115396871,-0.155665042514739,-0.161402245985924,-0.130466851323412,-0.0500481780747893,0.0558591217686666,0.159813345394267,0.203015269974309,0.20180411290954,0.189535755219963,0.190300677060918,0.192268449589347,0.191985662372536,0.182576886913148,0.162501463841199,0.138328876814426,0.104806785372785,0.0679606693148853,0.0241132642115167,-0.0206811191277853,-0.0538388097574144,-0.0780737014132182,-0.0886667183162971,-0.0837773456061328,-0.054749998876551,-0.0423547881877236,-0.072090356917531,-0.121503945937067,-0.148567699947356,-0.163926915453445,-0.175420025892002,-0.156119791088109,-0.100160524604008,-0.00371555840283178,0.0997424389489432,0.178616707313722,0.196487742801283,0.193456305187328,0.190812961017392,0.190893081671406,0.190394110982014,0.184010739801412,0.169156907082991,0.147897536699091,0.117417147291409,0.0669746595500788,0.0230303257472339,-0.00617905955311317,-0.0399256356399244,-0.0389583495859687,-0.0416643031237445,-0.0428048191727767,-0.0202741722834593,-0.0242072337590339,-0.0583492092772114,-0.10333201892011,-0.122279639654941,-0.140292578473339,-0.158704690902197,-0.168292689884716,-0.127308543243293,-0.0410914611215161,0.0539196772814948,0.157101276173214,0.190304900876294,0.193220274323296,0.192394308072202,0.189958224333691,0.189575903357954,0.185856778819305,0.176359468322687,0.158493300811798,0.118074798380601,0.0592322705359665,0.00925921396639217,-0.0259127957216217,-0.048792821324099,-0.0524463540982911,-0.0517543587750894,-0.0374694892687522,-0.0145398105786946,-0.0100099436919987,-0.0187482523087052,-0.0531857690066007,-0.0795442095890813,-0.0955992981677995,-0.121323742059641,-0.153278424410037,-0.118161033383148,-0.0476286468842739,0.0428611156449676,0.14050524080414,0.188536064478352,0.190622292794619,0.191797676647102,0.189994792505812,0.189253071556619,0.185763339709526,0.180225674444191,0.168974667834435,0.114150095423852,0.0327524903133219,-0.0256390939529771,-0.0547590958809645,-0.0807154400435486,-0.0839727269741796,-0.0718066234794186,-0.0333127185959428,0.00479013073486646,0.0274706778465056,0.0182490218221024,-0.0112326412324307,-0.0264881174694904,-0.043953419856291,-0.0940586731283172,-0.124999815966043,-0.0996579012151372,-0.0468000340347505,0.0289963552892212,0.133654844329722,0.190593400520125,0.192159313778962,0.189120994363847,0.192562775905378,0.192080828658817,0.1903290683304,0.185794376819225,0.163191357548105,0.0821789725311097,0.00358611351769729,-0.0626147180484332,-0.0924290973749679,-0.101832428065109,-0.0856863222176198,-0.047962061510091,-0.0104386492870067,0.0384672234718801,0.0565044218198584,0.0421233762496629,0.00950928749376641,-0.0106413345377275,-0.0353033369158746,-0.0862534845617042,-0.113031044492563,-0.103703580343205,-0.0424699868546436,0.0352444237970132,0.136343151763957,0.188652339895676,0.192313581584596,0.190575478433904,0.192455452428568,0.190453027807765,0.191838784453496,0.188488608364894,0.153596899128784,0.0562848379268037,-0.025393523089409,-0.0920781084941589,-0.107167697033287,-0.0888353493826333,-0.0413857985753667,0.0127189382631138,0.051247567666966,0.0999272479270162,0.106271155455967,0.0865731636523509,0.0355433552725585,-0.00942961525444943,-0.0516108759161965,-0.0994102547716392,-0.129747253169591,-0.107568895648809,-0.0436777392299302,0.0425702973451547,0.138982689710244,0.195129444601605,0.192005903495155,0.191067301385969,0.192966824976702,0.193267773103409,0.188720156147948,0.182747900790225,0.141013651164132,0.0363116481026452,-0.0418404481435577,-0.083615363227514,-0.0908844666478741,-0.0364890790881016,0.0388187022302657,0.0825679090054618,0.133133912347787,0.176384337750542,0.170750113876816,0.142919081655517,0.0741295927413847,0.0134215279814543,-0.0578786794342363,-0.130166261132952,-0.156443590206531,-0.113335040667328,-0.0324887260083881,0.0646826030303437,0.143297059072111,0.194809408817615,0.187989871375308,0.189530452975932,0.191012148466819,0.189585187303135,0.18676165781427,0.183728993522638,0.131669635979879,0.0269555293181647,-0.0406217291067069,-0.0592001947949806,-0.0391791183748543,0.0167845483078351,0.0866469448281435,0.154578873216294,0.202098321519508,0.237112305925975,0.233930311412973,0.184205863923781,0.0972318243722386,0.0106568815479777,-0.0732712522244721,-0.141095130717355,-0.169339470581439,-0.108405831269428,-0.00869554397431522,0.082994105237237,0.160459873878874,0.194074910733217,0.19072797109004,0.190076303254709,0.190305597589976,0.1893437824987,0.187005512002394,0.184272324697426,0.125429953396539,0.0295711188031183,-0.0162197070055535,-0.0304168775938981,-0.0115516171910714,0.0506599769935697,0.120237086908927,0.181028974544973,0.233762108369455,0.262594876507121,0.244314361269153,0.162471334062028,0.0721590159426672,-0.0147419216932452,-0.0910701761558395,-0.142345296664955,-0.143444614302538,-0.0641658692346675,0.0319610109982643,0.131206197698364,0.1819068864172,0.197889968048662,0.19159117131628,0.19089508933742,0.189518370910875,0.189997325595095,0.187106528589668,0.17748294394433,0.121557467722582,0.0288896156160384,-0.00208419756634354,-0.0165593856471352,-0.0108748520999065,0.0383105877444854,0.109846903939655,0.170716984403361,0.220304654404952,0.239436417520456,0.20227570112573,0.0972762485846151,0.011433377664,-0.069289214943323,-0.111156659230945,-0.138290026254392,-0.0893101244375487,-0.00942300361316033,0.08626075357638,0.174586772790159,0.19883351925626,0.197241944724209,0.19034430519636,0.193202644560309,0.18961209370298,0.190158929894992,0.182941946060198,0.171892646874544,0.118681153222419,0.0370409303643424,-0.00307945599547474,-0.0255618050157215,-0.0363251243722229,-0.0126312228557028,0.0465850201809347,0.121836592193615,0.15868143939063,0.16780015672833,0.101451214611468,0.00932802462398059,-0.0659555892768915,-0.111646027167171,-0.122728103902113,-0.107127252658824,-0.0315270096715837,0.0490340155094636,0.134060714869645,0.20055153531149,0.203366162493274,0.195742913766552,0.19303588619886,0.192491844110172,0.192721313987127,0.190434260322114,0.184537601446225,0.168768739039066,0.126443599844756,0.043876821746791,-0.0123138909256675,-0.0427003655531221,-0.0599560836421009,-0.0623309652321891,-0.0341053106956841,0.0224466166275584,0.0498409337160528,0.0426662770549999,-0.0186813876680684,-0.093241932739876,-0.128206246147108,-0.150610908438305,-0.120643463378492,-0.0680869879295585,0.0234391371584963,0.112331484094291,0.177268465443973,0.212876829962862,0.207663452731481,0.195187116550721,0.191036561030129,0.190640799326429,0.191311470805767,0.191831568523397,0.184317839070596,0.174040682098386,0.13694729088769,0.064672039328591,-0.00603074526336029,-0.0627528303637934,-0.0972635933127331,-0.111791207605841,-0.113192473685875,-0.0861433187539018,-0.0729819723694426,-0.0958120398482848,-0.12363812030005,-0.154786368597814,-0.162871206231531,-0.140921071158967,-0.0757480638302325,-0.00169426765328711,0.10109163037845,0.173027148671687,0.213288479933268,0.218633890129515,0.20390130861645,0.191766316498865,0.192505208116197,0.18913430556022,0.190746662665222,0.19200668880227,0.184638526848983,0.179225165815991,0.148372509534528,0.0928576918843262,0.0152939067023783,-0.0523763737410895,-0.109590641654533,-0.15103280642191,-0.17378689246761,-0.174091423816614,-0.168136501929594,-0.169389239268792,-0.166064899061509,-0.157230665640002,-0.132412215849839,-0.0709913952407743,0.0111562866264359,0.105365692577943,0.165317582690259,0.204910312470601,0.215233883197215,0.210300035907521,0.202604835620243,0.194726620115574,0.19001961892441,0.192462156272574,0.191479659403675,0.190533076831963,0.189178038747283,0.180980466914052,0.162248770364056,0.131381184760367,0.0780167606081891,0.00140491056125132,-0.0637059643344014,-0.114790591578834,-0.152418627033644,-0.171370798578651,-0.171315814892308,-0.151676891423215,-0.126127595537434,-0.0865129701233933,-0.027515027557165,0.0401110877756088,0.110879202616751,0.17864791214372,0.192491826845173,0.20921444167355,0.207378889530085,0.199409835586265,0.194541058651954,0.188661379985988,0.191170710649694,0.191027109775019,0.191233903143884,0.192563813694251,0.189426852502055,0.187857190843394,0.179182012858653,0.162117837704622,0.140924273433856,0.110967694798133,0.0723397766870713,0.0370020424301579,0.00568407016779657,-0.00427892368491526,-0.0106338033542458,-0.00194610988828426,0.0145439547470757,0.0441087851705429,0.0988755018247568,0.139884446846413,0.172499550487398,0.18527154833784,0.186044146611156,0.19043006622378,0.192518549506736,0.19497911186273,0.191040207769476,0.192693389697023,0.191312621335915,0.193395081621928,0.190645144185207,0.191821276394782,0.189778508295621,0.191508533858127,0.189922168766571,0.185206952938547,0.182423936076216,0.166968871298054,0.159546446129105,0.148969931642623,0.132632797207587,0.119603211589279,0.114600171177005,0.110196469020767,0.111760302029336,0.127356718909528,0.14195907058148,0.161830979257547,0.181565127145699,0.183708421058314,0.184964445036804,0.192132642663796,0.191360215363027,0.191753609051303,0.190946669448796,0.19031169028691,0.191227549326709,0.192671363403951,0.189181465349057,0.189839557078379,0.19119921558305,0.190962197393952,0.190141410093206,0.191106333915427,0.187982972553771,0.176656366773789,0.170538492629225,0.157806135779226,0.145709227200272,0.138924608973765,0.136238582170281,0.130610896492719,0.143496961569954,0.151591822107012,0.161232259491449,0.169843065026023,0.184915269786357,0.193752224288414,0.192174630057493,0.18957926673687,0.189281654444917,0.191438179654318,0.191392652230788,0.19324552444282,0.190255632116505,0.191342908891614,0.191933604353887,0.189980107512357,0.191476271454441,0.190887974098987,0.193038107709252,0.189429709770454,0.191322863239248,0.191263006940197,0.187830890927819,0.188871517972231,0.186418883007615,0.187191712284173,0.185407594006099,0.182243599351162,0.183795492504406,0.185879745150846,0.18707484198142,0.187019232668195,0.191443199331032,0.190635348578284,0.192297462777296,0.192820681456072,0.190643660055816,0.190399790094002,0.192435301703791,0.193157543276617,0.192826829774662,0.191185848279054,-0.178091803662236,-0.0107689714774053,-0.00974956168122331,-0.0119620129005397,-0.0125868614830809,-0.00882260765860885,-0.0128582434683986,-0.0126178626242245,-0.0112679556057021,-0.0105135801255409,-0.0127545816592703,-0.010136319938533,-0.0128689241957092,-0.0111004112705705,-0.00916963938151016,-0.00899520564053932,-0.0130414331259875,-0.0128535248696708,-0.0104680505080474,-0.0109651169786303,-0.0131391751904775,-0.0120326462180877,-0.0109957055565819,-0.0088419721760695,-0.0115551757774515,-0.0129983487974016,-0.0127979195755063,-0.0130863535520763,-0.00909596563961828,-0.00968762740418566,-0.0121832957268886,-0.0108643083222191,-0.0104041475035179,-0.00876354376089942,-0.00889354838757936,-0.0116713623009651,-0.0112013280976285,-0.0120697192596337,-0.00792514933005614,-0.00988764310987941,-0.00819996184305818,-0.0112057018499744,-0.0119717380359479,-0.00911208231994938,-0.00845347282862649,-0.0110254721470695,-0.0124975336014839,-0.0124959410707905,-0.0126903765238097,-0.0101136306396901,-0.00980465340651155,-0.0125503897538812,-0.0124247261072461,-0.00965122656042388,-0.00915170701629531,-0.0119273289053925,-0.00996058783266197,-0.00948497530441601,-0.0107986955325514,-0.00897961930623703,-0.00906759312914005,-0.0124315825774036,-0.00990668986412428,-0.0111330328600008,-0.0115495116437275,-0.00726849493608902,-0.00320025164420231,-0.00214995639628745,0.00238644606186276,-0.00328276586053468,-0.00267748703552679,-0.00538986630513685,-0.00714615828910605,-0.00451262004831638,-0.00983158634928173,-0.0163259449952944,-0.0121136002092124,-0.0095179147618397,-0.0109526726305241,-0.0123641851693815,-0.00955820057655942,-0.0128684873724685,-0.0110743610529402,-0.0119601955213522,-0.0130604813167786,-0.0102166479206461,-0.0109776869914417,-0.009864553681993,-0.0120326369040044,-0.0125784327538359,-0.00988470592780494,-0.0112551313654536,-0.00830668322245381,-0.00207452085839478,0.00237551854646597,0.00205405821181913,-0.00186083039547765,-0.00138760508020682,0.00315069156796733,0.0054771274801072,0.00535086216943918,-0.00225197611837618,-0.0074152625862825,-0.0155006015373962,-0.0132415779747795,-0.00956019039791511,-0.00630106428507771,-0.00912518933139852,-0.00585577286025689,-0.00901784208036883,-0.0123365132692561,-0.0104812627169915,-0.010659699730018,-0.0104827658023402,-0.00905509260813864,-0.0127601402222092,-0.0131006474519619,-0.010445340642659,-0.0109456872854508,-0.014980665024578,-0.0104336100974695,-0.00472713275253111,-0.00892913065059247,-0.00656159038499299,-0.0137301556075807,-0.0107255265229918,-0.0218534023518122,-0.0274580592700732,-0.0390730032774704,-0.0362449985675491,-0.0191257579874087,-0.00495786284762561,0.00770641533184675,0.019451372036848,-0.000797415757558126,-0.000765863373842294,-0.000896664493086889,-0.00860205390794531,-0.0106239186765228,-0.0129922073115479,-0.00897401175367596,-0.0123562511972647,-0.00913812620725463,-0.0125144174504175,-0.0132898482428078,-0.0135670497287903,-0.0172099384477412,-0.0171625386101438,-0.0121982760865797,-0.0164658452981259,-0.0231808219105875,-0.0267310044821795,-0.0239046161293699,-0.0229923791758995,-0.0214426146814641,-0.0240317418705281,-0.0370010856766417,-0.0230456839308938,-0.00728146663790507,0.0074981531078519,0.0255310423172679,0.0145829467886833,0.00759326944078793,0.00514687365089135,0.00251959520476288,-0.00345882025625379,-0.00928814383044648,-0.0117046894753834,-0.01063148144979,-0.0114448826273039,-0.0113935321312091,-0.0111242273989536,-0.0136712133253356,-0.015830335346535,-0.0195157185290518,-0.0166487667187921,-0.025019958702993,-0.0299118364588691,-0.030462582792276,-0.031649077794451,-0.0227661364507186,-0.0196511447422077,-0.0224032830399208,-0.0238365380696072,-0.029485283891779,-0.00835097642445895,0.00890449151512185,0.0121483672728681,0.0149164088998009,-0.00198739701054916,-0.0161447974436117,-0.00676129752481763,0.00789651051668003,0.0137725537788958,-0.00172494197436371,-0.00417187257697581,-0.0130731732946783,-0.00981152590447922,-0.00907395246915798,-0.0116058985770642,-0.0121321712212831,-0.0173524679848991,-0.0209001307779467,-0.0200485344913206,-0.0312681240156606,-0.0389735906548661,-0.0369193929281262,-0.033388934074279,-0.0241387037031266,-0.0273386188798122,-0.0206285719238525,-0.0277368840154636,-0.0197299208879903,0.00253197686874316,0.00392162203594751,-0.00394760698383635,-0.00980462316160686,-0.0224632150869992,-0.0331097276683939,-0.0224082149447757,0.0139412777267267,0.0159945385122999,-0.00385959426252499,-0.00433299026195281,-0.0105040966079012,-0.00984660580408364,-0.0102643197580819,-0.00910083471654757,-0.00961658665205656,-0.0179769656128488,-0.0256997134777662,-0.0145587807439431,-0.0289054644873649,-0.0313294415406487,-0.0288673242202997,-0.0204472159575113,-0.0273673109209762,-0.0347078237260763,-0.0363365811931198,-0.0407444747435167,-0.0286298861149902,-0.00510475119962124,-0.00698336184144455,-0.0144764582100385,-0.0253854453906826,-0.0359226634268487,-0.0317215280277775,-0.0292892905611173,0.00326361044032415,0.0103193956827385,-0.000251982248551627,-0.00250812304674578,-0.0115563545363541,-0.0129221108170835,-0.0122426167714746,-0.0091684823766156,-0.0130631607910711,-0.0231747008836724,-0.023303674299526,-0.0111842827647811,-0.020708660026774,-0.0182854755414783,-0.021283332111546,-0.013148542570379,-0.0230827400040983,-0.035550851929177,-0.0328927880852403,-0.0487460240363869,-0.0300012152248765,-0.0130961460955119,-0.00503043866028047,-0.00855893440898149,-0.0291741764437702,-0.0344308816736333,-0.0287973995311917,-0.0179186214553144,-0.00698802708237248,-0.00338032119018967,-0.000710663290906394,-0.0129619141822047,-0.00967460238844426,-0.00905665437713101,-0.0118465568355976,-0.0143117553163785,-0.0136574821958713,-0.0156454856392444,-0.0138213428861923,-0.00939882773023011,-0.0120730593664652,-0.0010301965039915,0.00378459627433334,0.0118924111145025,0.00158249412533384,-0.012429765571048,-0.0343046488729939,-0.0446089105948695,-0.0292420165932221,-0.0322040272566908,-0.0187743440238827,-0.0197174445756928,-0.0287887342192091,-0.0250892252413401,-0.0175032128840463,-0.00613186312591322,-0.00697834491140369,-0.00817739436459767,0.000563931598322672,-0.00782757659103224,-0.00850907652474623,-0.0104179784013908,-0.0118813332178285,-0.0101207950469133,-0.0177234433415649,-0.0161125667309861,-0.00529342201404487,-0.00719322773299013,0.00148742666084126,0.0191413883829745,0.0176704269140747,0.0124871202420978,0.00467491121005598,-0.0194939914173203,-0.0393056499475652,-0.010048473822472,-0.00411817374276692,-0.0107845831068409,-0.0167044074952828,-0.0176478285781488,-0.0212069302073372,-0.0152705746155508,-0.00167945601916573,-0.0022398920394761,-0.0123365046598157,-0.0150215353248103,0.000471418102888761,-0.00820333751633237,-0.00827598242845101,-0.010463006830915,-0.0130687136302041,-0.00879158376589571,-0.0144075754684381,-0.00688675703206977,-0.000736582009753356,-0.00174673155556857,0.00863490450105441,0.0138745380988784,0.015182350012168,0.00407253183642568,-0.00155069441263807,-0.023776543135693,-0.0153375144710345,0.0295548964695135,0.0289774367223729,0.016047190574897,-0.0113310584541511,-0.0137644575630775,-0.0043457143622161,0.00604067657694808,-0.00634738962741315,-0.00831004308564668,-0.0216876399468395,-0.0241728083554697,-0.011880266240093,-0.0109566760956962,-0.0094484202544505,-0.00891488673313131,-0.0138844415968016,-0.0101949684544662,-0.0077876275622725,-0.00304865136386331,0.00112612320516744,0.00197816666675412,0.00893569175126932,0.00298032104276132,0.000306431112039884,0.00112959305642635,-0.00036486985914394,-0.00647041105867544,0.0351355317237095,0.0580296782005113,0.0399893458630703,0.012107545084121,-0.0148410566436619,-0.00105770779052724,-0.00269500631610884,0.000816211277282899,-0.0227249718845708,-0.0175204171524313,-0.0206372819478525,-0.024201892303447,-0.00953843319777474,-0.0125497802292495,-0.0102732275265794,-0.0113511868504198,-0.0102042745535492,-0.0120584324129273,-0.0075132817790776,-0.00425659070690289,-0.00678035387598299,-0.00901008971582486,0.00106826749017023,-0.00327842085675288,-0.00499775702820675,-0.005217908057824,0.00235967610630913,0.0225876624289843,0.0623902547711774,0.0611659935006739,0.028783804667003,0.00222406797874229,-0.0103763131469991,-0.0103452000037361,-0.0171265827498971,-0.0263199836625212,-0.0220447233169684,-0.0229735940847763,-0.0225429510492701,-0.0165301693968206,-0.0102375765870702,-0.00910384087060457,-0.0132015558408161,-0.0124494983043846,-0.0091449857707806,-0.0112874398951822,-0.011586081011205,-0.00904877085179409,-0.00939688238311309,-0.00692961564495044,-0.00623313507741259,-0.0165199779353487,-0.0224072375458519,-0.0105024457017474,0.00185398044099665,0.0394330823726167,0.0538134722416766,0.0397124392929688,0.00973180658126686,-0.0139252720883207,-0.016121201243484,-0.0225102714882696,-0.0357445351108693,-0.0365977824901934,-0.0203954207963322,-0.0200129171048918,-0.0253286571649748,-0.0159483755815052,-0.0068755559749412,-0.00863173109493167,-0.0112553934015916,-0.00990556373627318,-0.00892768053654493,-0.0121034183719637,-0.012516244590774,-0.013685436422788,-0.0147021315328435,-0.0135119807764832,-0.0157252344830848,-0.0179925901654113,-0.0160391132444814,-0.00393800959905388,0.0300089226838235,0.0460039799700474,0.037810851390867,0.0353565343352929,0.00103339056555231,-0.025039082920589,-0.0282756326257101,-0.0295199236258084,-0.0410019694815579,-0.029491210563437,-0.0199510269127007,-0.0230097649869978,-0.0306668720955924,-0.0141785303818535,-0.000928382499820304,-0.0079998279422597,-0.0128534540137231,-0.0107208138413595,-0.0124757607489902,-0.0143923589202019,-0.0130372319888764,-0.0119897105176069,-0.0171461432238434,-0.0204957323794389,-0.027142582191209,-0.0186475284851815,-0.0132354744357696,0.0194945154261815,0.0365536336066665,0.0383234024402507,0.0251632401142184,0.0233785602606505,-0.00796296589975558,-0.024376865464527,-0.0142144677323499,-0.0378468096333986,-0.0397322299444394,-0.0194030235208541,-0.0150331744915683,-0.019971619562203,-0.0194948700827527,-0.00495259649009626,-0.00369164054564487,-0.0117314691254787,-0.00948076671173209,-0.00933962545426451,-0.0112487978384383,-0.0142495572843179,-0.0157647156923685,-0.0101420377478623,-0.0172716251915695,-0.0221386174987785,-0.0100528651985174,-0.0137733376576004,0.000572011272134808,0.0292130752754924,0.0248360174792395,0.02467687620892,0.0116667316386741,-0.0100551827823485,-0.0208096173564924,-0.018407838634208,-0.0301138990272731,-0.0301517015454956,-0.0243794390979229,-0.0162396073973742,-0.0206601718247968,-0.0108483003422513,-0.00130936358876478,0.00537396147217508,-0.00459035626534509,-0.00956787210537881,-0.0121557900213576,-0.010934393039328,-0.00985758839444447,-0.0132121010749425,-0.0177354686861505,-0.0136507196391733,-0.0208229457281997,-0.0214723489900204,-0.00782458463210202,-0.00612089008175674,-7.44430320643874E-05,0.0194987583646717,0.0136235567940715,-0.00615511958332928,-0.0144292697526388,-0.023087097257239,-0.0128848980650394,-0.0158229915554366,-0.0282782455645585,-0.0110496982357495,-0.00678800319139292,-0.0147696764176406,-0.00978339394909757,-0.00899651154866624,0.000216722036320937,-0.00198638132952264,-0.00877671352539732,-0.00772742710438592,-0.0115476999034913,-0.0114336446559001,-0.0101016070741745,-0.0149735837872464,-0.0207773376544411,-0.0235541415578012,-0.0267878651049198,-0.0100418954550392,0.00140911974726558,0.00656994636915223,0.0165899257457211,0.0166542260441417,0.00910431523862903,-0.0193460717172851,-0.0286528571312676,-0.0267018198708184,-0.0195921544444856,-0.0175282529216078,-0.0181085682506772,-0.0135394666198697,0.000683799349682045,-0.00915471453729507,-0.0177918676443524,-0.00743938337001041,-2.55235576891007E-05,-0.00811931474925601,-0.0103456177147229,-0.00817723770957086,-0.0128497290393335,-0.0111630659606755,-0.00966567978981219,-0.01859769931461,-0.0261696092341903,-0.0213909353428371,-0.0256497823848613,-0.0131229099804935,0.00595046184794773,0.0184350006351219,0.0233428440171523,0.0144318339042214,-0.00578600824450423,-0.0164695829260211,-0.0334740242011859,-0.0240380278488961,-0.0236303637762312,-0.0161106359953805,-0.00759642743665682,0.00841998997994222,0.000608195340180767,-0.0134455585350823,-0.00649318123976728,-0.00126969021301569,-0.00679844009491551,-0.0144480591360442,-0.011349468064929,-0.00964926833997545,-0.0089364673478994,-0.0125006936391549,-0.0117781090456682,-0.01448579092832,-0.0189982541860485,-0.0204676015169608,-0.0144211567355105,-0.00705781612322733,0.00952709823566161,0.0189646657458774,0.0119892198077033,-0.00697400027395366,-0.0256381032619126,-0.0315080206200047,-0.0334469620037137,-0.0259903936424469,-0.0278853494897576,-0.0166782853863219,0.00550780610063743,0.00267413408586608,-0.00905071762659068,-0.00590949294206617,0.00132000444231283,-0.00356261093009032,-0.0107516650944874,-0.0112837538825578,-0.0118419563271671,-0.00994103065172602,-0.0129897848199011,-0.0124525291962987,-0.0111094726789422,-0.0120024746278262,-0.0134734007649287,-0.021069893100658,-0.0176688209540879,-0.00841089719933045,-0.0106967817305754,0.00454602152293069,0.00202010813293461,-0.0152278093136413,-0.0262039846809249,-0.0264838716667787,-0.0209468028298738,-0.0109534736576253,-0.0286253671430595,-0.0072959645304225,-0.00366386177573263,0.00399161139863512,0.00493875345504712,0.00507990212176982,0.00546422796709557,-0.000845828178200555,8.88838502677156E-05,-0.007500752463446,-0.00994336787446496,-0.0113191866875713,-0.00948476312853101,-0.0124180084367949,-0.0130392227383064,-0.0118498022759068,-0.0136775518313314,-0.0188593457065822,-0.0175026510850053,-0.0231445534450415,-0.0181597103334064,-0.0250768663064234,-0.0272959603668361,-0.0374737917571098,-0.0312567875862798,-0.0223510844071231,-0.0166368270662797,-0.0103022523888665,-0.0210544492979082,-0.00429900965951165,0.00274378540746804,0.0204181045895708,0.00771988383321464,0.00196145336103391,-0.00276226192217789,-0.00409647259338376,-0.00708435302659248,-0.00860395923459982,-0.0118404988312134,-0.00946927101776884,-0.0113787092171479,-0.0124487993772756,-0.00913057208466672,-0.0113300756536856,-0.0130026646515559,-0.0105225939835893,-0.012194284235232,-0.0150214478670462,-0.0233107141117223,-0.0320869659780088,-0.0438343320548734,-0.0419704777926655,-0.0247931110242557,-0.013060177707686,-0.0124243755170597,-0.0200017357125611,-0.0184937591193561,-0.00749154793736773,0.00267885781822349,0.00967495898501509,0.000228158845809301,0.000368450277212056,-0.00379171017210676,-0.00664150614477758,-0.00979014210435413,-0.0133919128145909,-0.0114724063375386,-0.0128073618334396,-0.0097727109278517,-0.0117019820668501,-0.0127936821563046,-0.00930162325991197,-0.0107695040548841,-0.00927080227467935,-0.00901657527144382,-0.0126393778130373,-0.0177446449641098,-0.0201964265987833,-0.0276786909243783,-0.0267150044046369,-0.0161879000281309,-0.0116084745668346,-0.00975086769435368,-0.0115750400741319,-0.00987844521922268,-0.0186425898952734,-0.0139799248208328,-0.00302159154512578,-0.00431840429148169,-0.00556895830004831,-0.010473456265197,-0.0107148064611233,-0.00953010294349477,-0.0092239571940423,-0.0125513200121445,-0.0101460909598335,-0.0130911622589944,-0.0117035874121217,-0.0115766875166377,-0.0106632602128422,-0.0103380864279442,-0.0099243010562774,-0.00840415365194676,-0.00981094995466474,-0.0128997497851678,-0.0125672441205446,-0.0112193801378595,-0.0148147583132066,-0.0105564385889173,-0.0128090768898456,-0.0128456937621362,-0.00740898895914999,-0.0129862386152346,-0.0126946238471326,-0.0119307242200369,-0.0117161582401296,-0.0110386564498307,-0.0122915706904691,-0.010958771424462,-0.0116834892796979,-0.00894001645159271,-0.00987031052739291,-0.0126591518329353,-0.0128096635504509,-0.00938787610989557,0.0145403974126615,-0.214044917996855,-0.217238250785503,-0.217259085485435,-0.214410553019554,-0.217028732278886,-0.216553633646839,-0.215705630723274,-0.214600796041845,-0.21503093746958,-0.213989292796156,-0.215690983163666,-0.215090337121091,-0.217386452253459,-0.216985391116907,-0.213924047283599,-0.21696610132148,-0.216735306044801,-0.216223909235274,-0.216481711058642,-0.2160640930686,-0.216599149552999,-0.215569449846738,-0.217348811032996,-0.217987833880047,-0.216789920537745,-0.214679933495895,-0.216957048114395,-0.215640110617815,-0.216441895725657,-0.21765527286648,-0.21750361452124,-0.214126312570077,-0.216047259099684,-0.217836898372465,-0.216556579111353,-0.215588272495416,-0.217875636591745,-0.21393797515302,-0.213098379011367,-0.212972138300115,-0.212195696442785,-0.210540661776999,-0.21248524082238,-0.213682571795362,-0.21521355807417,-0.217416410762771,-0.218972742579507,-0.216314133874455,-0.216217403402262,-0.217746357997193,-0.214486058905011,-0.214286933101135,-0.215294142974816,-0.21788683640578,-0.214622039154946,-0.215119593854129,-0.217175558957308,-0.215887265165081,-0.215670630017729,-0.215667299460012,-0.215032924539889,-0.216193436669166,-0.218184462661971,-0.21679964643285,-0.218021429045657,-0.213835325195776,-0.20455917136377,-0.197717589536833,-0.193656444126376,-0.188362344422323,-0.180373703966099,-0.185633340447487,-0.196450178965949,-0.198914650858191,-0.202177963861955,-0.201079802164649,-0.203135351582123,-0.206293470509124,-0.213902964690864,-0.214333877470937,-0.217786471025655,-0.214544468924691,-0.217087613609495,-0.217305806107308,-0.216612094367283,-0.216708646582693,-0.215816009431399,-0.214799766463748,-0.215048764660049,-0.216128392750091,-0.215168923081467,-0.219089138315671,-0.21427366261555,-0.204592136679441,-0.197320453713153,-0.194019240736238,-0.189649936517602,-0.174502992487388,-0.169229038517128,-0.178486579041118,-0.189894714449246,-0.195989571719284,-0.197009890109767,-0.201213615391328,-0.206504720955691,-0.210883328483684,-0.209606208232498,-0.214755395794824,-0.215907271989347,-0.215954066556466,-0.214434505197814,-0.216204459103253,-0.217233686493797,-0.216877554902276,-0.214965989203254,-0.214460394592029,-0.215197775077825,-0.216280863016077,-0.215139333234432,-0.219845050701302,-0.209271744268006,-0.196723007545245,-0.183495226129241,-0.176141236829091,-0.160342547904497,-0.155049965922285,-0.163737851127178,-0.157676990891977,-0.162995576563129,-0.183452133436101,-0.193003834609092,-0.21223641560342,-0.223162336215424,-0.218235669104656,-0.213200421017514,-0.21284095024558,-0.211607856779547,-0.213279359783936,-0.217392014309976,-0.215285505447041,-0.21681276288013,-0.214201667357626,-0.213921542286345,-0.217700561849479,-0.213426304451956,-0.212937174124457,-0.211900695214439,-0.205388178990669,-0.183307573243248,-0.165341275009775,-0.12804114415563,-0.077757865353694,-0.0454907113353204,-0.0224796559563069,0.00179660499298671,0.0158102250769208,0.0118445780753922,-0.00493679490723371,-0.0496046044968425,-0.104067671794566,-0.14455727211615,-0.166324556236732,-0.183903325329847,-0.195399047989336,-0.203872244442447,-0.213384440269617,-0.213681361221814,-0.217112529798986,-0.215425188076465,-0.217039244161745,-0.213741980768705,-0.217236747083057,-0.215898556789118,-0.215640498796239,-0.208458062725177,-0.187033267585966,-0.150345881427928,-0.0950541479475038,-0.0278713651609616,0.0425307752948222,0.0986454207096745,0.150776017537065,0.174795836951949,0.177965820964843,0.172290871146673,0.137977416267014,0.0663867192409124,-0.0158351799653766,-0.0780118084581298,-0.122421016958152,-0.159034808660707,-0.181070451308553,-0.18230307661676,-0.203939799482196,-0.209623921086346,-0.216289159846513,-0.216492871476861,-0.214531762217104,-0.217128610725968,-0.216921444988828,-0.220439716757223,-0.218622599809937,-0.202507004181937,-0.166525151270706,-0.0952082157363596,-0.0334726162350313,0.0502734211947027,0.144925218551697,0.198152750657911,0.22122574855932,0.225365667350245,0.222547953259175,0.203810535995488,0.163993646512434,0.0884723080502502,0.0168586134593679,-0.0507718574541368,-0.103198227750269,-0.145727630050019,-0.157667273970618,-0.16912953940941,-0.199283030156433,-0.211003641371712,-0.217664165106168,-0.215214657823043,-0.217888959916284,-0.218514432429315,-0.218904344436368,-0.222377331369458,-0.214526260275442,-0.191783687812795,-0.151682102286151,-0.0703886810874861,0.0227057975191915,0.140785340055019,0.196790082019702,0.207423145659891,0.164531080904892,0.120470633232823,0.0908138678543919,0.0822341054323595,0.071888905103868,0.0557316074713343,0.0110589685176611,-0.0501744206711702,-0.100290490207479,-0.13826304068311,-0.151232745728269,-0.163575529450702,-0.193604403492962,-0.207417648130271,-0.215537891737598,-0.214008567920415,-0.215866118669206,-0.218893669267497,-0.224248002150197,-0.219973214741267,-0.209190567633027,-0.179574711468306,-0.135185956077168,-0.0354667871672056,0.0884183188959447,0.18623481075429,0.19783354576158,0.137008943408532,0.0340192899361456,-0.0538714883943922,-0.0780072977497255,-0.0406134549087909,0.0244026663205732,0.0631869430298829,0.0258802919151407,-0.0344925769636457,-0.0964501857635014,-0.151155276008234,-0.156953177429811,-0.171510581635855,-0.196808889778124,-0.212218009348835,-0.21608037034999,-0.217234441732298,-0.216406971241926,-0.220593591673592,-0.222497260676321,-0.220210386130488,-0.197689822491832,-0.178824545624121,-0.0970224852738557,0.0182835693317873,0.141420539859376,0.198518208935286,0.16584400863206,0.0621786190724313,-0.0704583676409836,-0.151504770889733,-0.12500676441196,-0.0337565990958364,0.0700163407446961,0.108333689015634,0.0668636427266424,-0.0190485310432421,-0.106385820879603,-0.167483272992251,-0.19371781213597,-0.188361653825605,-0.194035613392046,-0.209057564539386,-0.214029926245355,-0.215702784475604,-0.214625663304285,-0.216283031375927,-0.217195561588693,-0.216392379926163,-0.190157272331238,-0.158411508458924,-0.0760140704704401,0.0527049676228931,0.146747833681009,0.176718381010747,0.139270840731279,0.0524251500958977,-0.0523625703481062,-0.0797407842943543,-0.0263147462409364,0.0820533902536646,0.167812259886995,0.1793973995146,0.0998701319761387,-0.0251931496860525,-0.15570999184043,-0.224430219610957,-0.239652228819557,-0.213866246357748,-0.202103732787007,-0.210817135563281,-0.214087064972772,-0.213829598827642,-0.216692780823107,-0.216122809678201,-0.217022557708372,-0.211992439741709,-0.197310602691749,-0.160933011336005,-0.0811654761029819,0.0369187007355171,0.109937223826927,0.144466381028627,0.147851151185305,0.108391126110896,0.0838527316990285,0.0862672672838515,0.136122150724114,0.218948222147602,0.245022703689642,0.203148491722586,0.0922779522372894,-0.0692137984821043,-0.209143027533917,-0.26622336295199,-0.270790251069012,-0.236664814144253,-0.210509741349103,-0.216347862444427,-0.214183209697535,-0.213840267148276,-0.216135884956975,-0.214867490988693,-0.21329445894775,-0.213935585756916,-0.219748602817499,-0.194471746836874,-0.110097302042019,-0.0113860970053545,0.0699482063295669,0.123193186457469,0.174447723798678,0.211489404032169,0.228031183942007,0.241298744464127,0.263275745180453,0.292782215042385,0.275673721195319,0.189444985088489,0.0190532013988684,-0.144612476625685,-0.255270070138887,-0.277758199864115,-0.282439510015248,-0.246304179878637,-0.214812927101076,-0.215457795113605,-0.215627090111261,-0.214386540956279,-0.216837064962334,-0.214452522993067,-0.213138421840055,-0.217646169724982,-0.247143760826762,-0.243424917798479,-0.170299460044913,-0.0686605083358727,0.0258484552768955,0.10713854352372,0.191449485414341,0.262884038181376,0.28988613158096,0.289093273230027,0.287083046682243,0.288250297290452,0.247742547018384,0.103144306133018,-0.0763399965589949,-0.209533882977247,-0.285818385729897,-0.283679881295894,-0.28338158953381,-0.245865391691727,-0.214800027272842,-0.21413877216962,-0.213909549244855,-0.216529242901453,-0.215607865537369,-0.215089501152807,-0.212837362640889,-0.228421613713319,-0.277604522551665,-0.29937821964384,-0.23181029123674,-0.131285044908784,-0.0157787803867163,0.0873841442126685,0.179929993082054,0.252488800843415,0.263579606863142,0.242612681848285,0.229742156209336,0.233727665601598,0.167729488125932,0.020029908046908,-0.141364411481076,-0.230334715628197,-0.268738225947214,-0.280310378424151,-0.272972608751497,-0.239374483200556,-0.215456555822905,-0.216974263217346,-0.214497295693298,-0.214396117669781,-0.216114085922557,-0.21647439143878,-0.214320030614556,-0.23665582509664,-0.300067231286973,-0.331117149262365,-0.28553167973474,-0.178366830517624,-0.0441231852412507,0.0696736347728062,0.179908296649552,0.209371295263702,0.181564005727891,0.15391791587519,0.167200844165657,0.173536613271785,0.118741363616685,-0.0284811437189709,-0.146976847566253,-0.213192122191398,-0.238899769993759,-0.258710343005436,-0.255669579618733,-0.234921521507574,-0.2160457718253,-0.217531428727883,-0.217559133531121,-0.214834715275215,-0.216179632416777,-0.213839783265256,-0.217875787581451,-0.238687408607957,-0.299193685685149,-0.329025370964277,-0.293566858838643,-0.189309588412304,-0.0443179176541028,0.0901080808759105,0.165511283191423,0.152678140495169,0.0898527144262804,0.0773965180376559,0.112362621448143,0.134381610130433,0.0904098520821506,-0.0205686952584485,-0.122334045083568,-0.179982178879122,-0.210894692015352,-0.23103200156824,-0.23472976200389,-0.222907437118586,-0.215503022478394,-0.216647295395085,-0.2171890790523,-0.215630186573387,-0.215816607969979,-0.215029341891794,-0.214722019251831,-0.24123355565776,-0.298882423773282,-0.313408131317198,-0.254000779543544,-0.157183681423157,-0.0261349262325647,0.0910799392470136,0.125241704782102,0.0772500355735708,-0.00433761922456078,0.0145481279709328,0.0744283490001044,0.11218351299071,0.0614044259472433,-0.00986562152576739,-0.0941974057196655,-0.148866998917172,-0.195875429669789,-0.214933914365115,-0.21381756784217,-0.217556793869657,-0.219379825388276,-0.215766609811516,-0.215880010343449,-0.216502847904796,-0.215292218329965,-0.214108654542614,-0.214616782721716,-0.244036774706,-0.292158445961817,-0.302495618679838,-0.229249866559275,-0.112094399031658,-0.0108692988782869,0.0673089155818917,0.0534690231284944,-0.0225878266613546,-0.0601414898729774,-0.0154930439993051,0.060051406263498,0.100124647165097,0.0708026665923033,0.0154931414845228,-0.0605524604986964,-0.120958826107773,-0.164306832149886,-0.191396669284101,-0.205431799640941,-0.215547535301339,-0.221773804337234,-0.217409843884364,-0.217660730093326,-0.217329311802305,-0.215735108522075,-0.213992239626917,-0.215096234841612,-0.235412019776237,-0.269948590265409,-0.271038827853283,-0.199107649916581,-0.126284181226378,-0.0302964399198945,0.0209601392069398,-0.0142846658622773,-0.0519351241134766,-0.0433075298122891,0.00966576342744622,0.0684768807886342,0.101352915652104,0.0972715730284087,0.0281014016625425,-0.0417322908162705,-0.114377468691681,-0.157692262105735,-0.176111841327319,-0.199091656931965,-0.210014772991959,-0.216865993404128,-0.215991012779062,-0.214013000082472,-0.215799080594255,-0.214449074746778,-0.214671880809615,-0.219659315245794,-0.221331966722165,-0.240900292019739,-0.22765471458554,-0.171122484670943,-0.121277993887312,-0.0504046255664782,-0.00195575357173284,-0.00421937305259924,0.00487156531765867,0.0330895009599821,0.0735971085677668,0.101451197494615,0.123319303996437,0.102363913383452,0.0311526202586974,-0.0444174418927326,-0.1117704953617,-0.159475489264737,-0.181520947611771,-0.199473717748358,-0.21139306631817,-0.215202596315438,-0.217485501398533,-0.216823900729379,-0.21741810531768,-0.216722854363707,-0.217649840892036,-0.215315384374145,-0.213501719374892,-0.210143933854473,-0.194807063178093,-0.150088045802092,-0.0978250592051608,-0.0459258513827665,0.00989070212880391,0.0520210065175868,0.0926971936664429,0.102495429508766,0.113295414584154,0.121768900046723,0.111037731250271,0.0804756495485374,0.0189823903834569,-0.0604808479818029,-0.121370133201063,-0.165761434333968,-0.190217448282622,-0.209359929219008,-0.216334148545742,-0.21303880012458,-0.217163018946175,-0.215397132489338,-0.217826787877361,-0.217914618917428,-0.214877581731344,-0.217448566573609,-0.218059616521511,-0.204705724486025,-0.176771568674433,-0.14278359866488,-0.0775515846198034,-0.0195383562297551,0.0348378370084932,0.109636568026398,0.153525936592658,0.159134731111434,0.138794978678714,0.116724294512492,0.091082650253704,0.0560083640353772,-0.017237203099017,-0.0927289275103909,-0.142530951291755,-0.176320502186325,-0.200014682103332,-0.207403685018403,-0.213600036156234,-0.216235729852387,-0.214496262110265,-0.214094494386557,-0.217366759227764,-0.21531813616902,-0.214831369631646,-0.218565212269574,-0.217008978775737,-0.212606336547451,-0.198327748189573,-0.166716219373606,-0.102983767010566,-0.0376537222840554,0.0264024607622266,0.0977096693276784,0.138597370011928,0.130581595452733,0.107136480368342,0.0721922959073836,0.0335569243034593,-0.0129700321469704,-0.0670650893511723,-0.127060760074889,-0.168348883609361,-0.191356233157707,-0.204213477242644,-0.210355550120324,-0.216920316638828,-0.214560487088364,-0.215984107695414,-0.217129932653724,-0.217010362844351,-0.216697386236755,-0.216757962460423,-0.214999946392429,-0.214825387958798,-0.212579830384923,-0.213874667685512,-0.208477944322711,-0.183725462483826,-0.157663715017394,-0.113133142982023,-0.0734414095898656,-0.0405490439929394,-0.0501122183810072,-0.0666728736489041,-0.0861630358516747,-0.0978877024540144,-0.100761378304241,-0.126199682106263,-0.157324729297561,-0.180925216225416,-0.198813110954782,-0.210195938939137,-0.213300714912854,-0.216555024898404,-0.214529593103175,-0.216621787756184,-0.214665985431347,-0.218033951407985,-0.21530183250402,-0.215766922308318,-0.21577092944749,-0.214168938468916,-0.215842804402554,-0.215794966307136,-0.217979826651903,-0.216046918735758,-0.216026151380406,-0.207312078494048,-0.191770993712707,-0.174774889316387,-0.177255798552521,-0.17896699339403,-0.188456941063402,-0.187940478648509,-0.191299327483275,-0.192938724902329,-0.198086185284692,-0.205502767320367,-0.210608235629729,-0.215505043891595,-0.21344554751127,-0.214057006165561,-0.214919674911307,-0.217324724623742,-0.216299334081481,-0.214284227113314,-0.216603721436964,-0.213953625335886,-0.215544990593744,-0.215007199236455,-0.217363746349359,-0.21669472815897,-0.215683399039251,-0.21563810646611,-0.214911250639803,-0.216136852379136,-0.216975608312167,-0.219465897586652,-0.214582796727451,-0.213568320113176,-0.217546685886412,-0.21429511724227,-0.2182135760993,-0.214575698610154,-0.215231501548922,-0.21310923745274,-0.216394448748271,-0.213835654327833,-0.216177302776092,-0.213748232082605,-0.214434487227661,-0.215092319190591,-0.216733334103458,0.219804002447708,0.237863778093325,0.236453045257409,0.235956402380399,0.237660291303804,0.235047287740449,0.237545705796534,0.237091842910627,0.236228464196,0.235861896857171,0.237526570104434,0.237050897429648,0.235109630438885,0.238734218596153,0.236388098131979,0.237284197490569,0.234999597530417,0.237419315736727,0.238593485575527,0.237400668352442,0.238566758296432,0.236473782969823,0.235164804040038,0.236301842132957,0.236287132669684,0.237136967141568,0.234939314831192,0.23784371553856,0.236964247498304,0.234541991815769,0.234783110071036,0.234747988719545,0.237659758534976,0.237690441037823,0.238896426655927,0.238874217456571,0.237486076923609,0.237449470447201,0.237382766565911,0.231898705772859,0.233335955889347,0.235815958285819,0.231209849113358,0.233824216505521,0.23305900099429,0.23700491231823,0.237352321568728,0.236185360963746,0.238567407004086,0.238610468040575,0.236443566492223,0.234852483104163,0.236974619238335,0.238097735220095,0.234920095895828,0.238409548416752,0.235805603591104,0.235716137735864,0.235864475004452,0.23487283593957,0.237514031014136,0.235279639401583,0.236342982660423,0.236083733145445,0.23440667759688,0.236888135103106,0.230974542360209,0.217758830645029,0.214853558668827,0.211142741361529,0.202366861959582,0.192942167476857,0.199412398725843,0.211822567734587,0.209505092569961,0.213666642614854,0.216855652948643,0.222875980432193,0.228760000665477,0.234932240462473,0.239086645040178,0.23689302769617,0.235310900820735,0.236292884767349,0.236365800636082,0.238036908319416,0.238874009028465,0.235631652642757,0.237236100970246,0.237655012471048,0.235660532127769,0.235161094007105,0.238001198592463,0.235539466466458,0.218776330366435,0.205742599001678,0.199877706809081,0.185671960462876,0.168074819693823,0.172533728958897,0.177225686497015,0.187678488582562,0.19273170444823,0.19733373602636,0.206059918685659,0.220559594947453,0.231231838445899,0.229836328453834,0.235383165211758,0.237064992008651,0.237241521536486,0.235954641641727,0.236467523913926,0.235722705067343,0.237849751701963,0.23605964097351,0.236833216941397,0.239425464143921,0.234003006309033,0.230863946433861,0.232315774649986,0.219305859357202,0.192691065657208,0.171643972595269,0.152058446539975,0.134102168011046,0.121223578273746,0.130445483819245,0.132910261027947,0.139287252380867,0.158088719516514,0.179923804239611,0.210788465625392,0.227608975862303,0.234973461481709,0.229078939057122,0.230858152929781,0.232974636705065,0.235252606154345,0.234696156085366,0.237779003787587,0.235631507312708,0.237365322540625,0.237057906531135,0.234768280913348,0.234163207430782,0.228203402254122,0.220209739843279,0.203410288706947,0.162632462540849,0.126268264833817,0.073835057919687,0.0126117265137593,-0.0228005973092665,-0.0348796812538759,-0.0515778121416137,-0.060237292495327,-0.0559599127445479,-0.0322951379065529,0.0203047030762202,0.0898175342659085,0.144918914417276,0.170116327108788,0.199208960821785,0.211958179572389,0.224753366073632,0.232751569195708,0.232407289779074,0.238792895307789,0.237834706551759,0.235667981141953,0.238036770737837,0.236539040463727,0.232153875196659,0.226679089603895,0.2085584796942,0.162900977909938,0.106529232896529,0.0324740749641345,-0.0356300670237674,-0.105792366507644,-0.156511408619331,-0.194194443840509,-0.208852098163822,-0.208563054723032,-0.203235024898933,-0.171406231421778,-0.103415851290747,-0.00845629270820309,0.0649442568900324,0.117983011206068,0.169121740040051,0.200125334344527,0.203804276071014,0.219131150009839,0.228941479227503,0.235489220813869,0.237048655120526,0.236979906933598,0.236105495289751,0.23879429765126,0.236172779176061,0.224946368527799,0.198304813035781,0.135228707071112,0.0543974829700324,-0.00975372638748927,-0.0995930234379888,-0.189800422792794,-0.23354456029851,-0.237665089167122,-0.228625673643363,-0.226433290652503,-0.218963666356488,-0.180632700260275,-0.113312937572887,-0.0418292012697419,0.0371450901059312,0.100478133624987,0.156803976509387,0.180876290853631,0.191145376128974,0.216016254185749,0.232700343801206,0.237787935744415,0.234932493010868,0.238097524423653,0.238933265130362,0.239893189752641,0.236895206737738,0.223178992956167,0.185614740108033,0.1357171455834,0.0455332205021129,-0.0480555056723454,-0.157442723369658,-0.215246545544625,-0.208248561045935,-0.156677892632117,-0.101512703394781,-0.0802864886942225,-0.08798057313944,-0.0891091755938295,-0.0752246514755946,-0.0294705510788372,0.0395348363376224,0.0946732451550108,0.150710221696742,0.184615094701333,0.189366533141758,0.215946590642937,0.22919565410968,0.236586923595445,0.235599669948959,0.238204219236033,0.239934903805163,0.24124968440827,0.23916284259861,0.220364584361287,0.187428284429945,0.128872864398753,0.0252741529597166,-0.0879750317625735,-0.188110466623569,-0.19202711854162,-0.127892598924969,-0.0133514028587095,0.0736685908534151,0.0808824267262349,0.0279392276312249,-0.0352798004122055,-0.0772093375878277,-0.0417137464602007,0.0262573841657162,0.100551459744269,0.164129106724732,0.181843983413323,0.192538891128046,0.216923842631147,0.2299694257016,0.235210606704143,0.237351070308339,0.236863993915744,0.242451270171469,0.244902701127221,0.240362044895858,0.217347439511264,0.189405720890511,0.0956014057755306,-0.0197534072947411,-0.135536974719862,-0.19169846934711,-0.150131906914458,-0.0475926029234736,0.081966782854769,0.148394941635971,0.105193591702646,0.0105039406732869,-0.084696082006751,-0.121491718370457,-0.0787591791801545,0.00883288280232739,0.105033352587733,0.178195452677259,0.206187669914795,0.209493034591832,0.214803192184481,0.229441068294143,0.236114176911125,0.237983634135007,0.236675729892499,0.24051339811666,0.240660957129598,0.235572753348971,0.211069691250877,0.171295182950692,0.0786724863803883,-0.0498401691044446,-0.143694389102607,-0.168798176203336,-0.133167641003086,-0.0524515238968997,0.0422691182487699,0.0526870510431701,-0.000985471779210776,-0.0990726332610305,-0.177235307794927,-0.186073894772674,-0.106139485467889,0.0182850992908477,0.156648617347927,0.232958194231752,0.250868787513368,0.229873410556502,0.221032149797371,0.231183714520993,0.237693925689909,0.236585661034639,0.23950875850229,0.23774133658374,0.240132700573322,0.228241126295173,0.214854920543887,0.171870439338466,0.0809133235998197,-0.0412465709110239,-0.119157832335885,-0.154094099013476,-0.167512810564664,-0.137701291158213,-0.105699329436961,-0.106873663828255,-0.154115292968879,-0.227577217901169,-0.258072559958249,-0.207979700561144,-0.0989149565207728,0.0611017284424304,0.207876005115068,0.278097032911225,0.277591500443695,0.250277646852271,0.229361577856964,0.233425146377254,0.235891668261064,0.238659703770757,0.235746030529131,0.239117394108602,0.236165507582855,0.23089186501926,0.232046251883471,0.197787886979336,0.105055124383246,-0.00534559492615442,-0.0923856032918874,-0.152460032476318,-0.204426750502254,-0.244252317886581,-0.242912168688318,-0.247557072106243,-0.265670856438224,-0.29878630026805,-0.285783348791409,-0.207734515060793,-0.0453442535889116,0.121501851692418,0.240894272534536,0.283835761344536,0.293135597162868,0.261009453728747,0.23476881796105,0.235624206047228,0.238929150585529,0.237592480406651,0.234849934465772,0.235237294399632,0.238245697922113,0.240327321177775,0.260847352522052,0.249365215169844,0.160582025876239,0.0438959381856046,-0.0533060351278276,-0.141423159630084,-0.225492496879926,-0.284750217048489,-0.287020148812627,-0.279314166873483,-0.274187152222164,-0.28547336682894,-0.260514728449958,-0.132823324172082,0.0247424349754614,0.161451730798243,0.252255618513271,0.278035405121886,0.290451587122629,0.262960331951386,0.236575078409505,0.236013155931807,0.235288860188915,0.237673094649901,0.237939031998465,0.235381472219184,0.234126292520581,0.246047101391756,0.296442435930769,0.305921525726483,0.225681733566785,0.105885678507408,-0.0158878226630339,-0.116944033053301,-0.199056894897384,-0.253278946376204,-0.237565139205807,-0.215378712899008,-0.200697920902244,-0.22067470410799,-0.179762805050447,-0.0583552942526196,0.0731914275631626,0.163646247693995,0.227307928987568,0.270971015037389,0.279725883888441,0.257085940388332,0.232949570385218,0.235602403561387,0.235962013249011,0.238648179916823,0.235067174512796,0.238143388901916,0.232505364162137,0.254430351515676,0.310696595213825,0.331525217713215,0.274537413634349,0.155920467147919,0.0206848202453371,-0.0886452476897344,-0.177809362500416,-0.186217358961283,-0.140177267364598,-0.10353304904911,-0.116305514241992,-0.149312390097846,-0.126983854998015,-0.0126426842660733,0.0747133713300089,0.140589465890625,0.190280064802062,0.238728905720817,0.257342249467408,0.248707899923129,0.236104737327327,0.234101395165246,0.235540407377859,0.238424840271164,0.237963703790496,0.235967968072803,0.231647766395104,0.25423994528867,0.309894037148966,0.325551405842451,0.277882116649763,0.168337188885549,0.0208161227676337,-0.10266170883726,-0.150884343863384,-0.114275899677827,-0.0373844033565667,-0.0144556670055397,-0.0622795659997744,-0.108688189671009,-0.0973821535462887,-0.0226475582924377,0.0537410907523082,0.101267975503998,0.156017951547507,0.207072874699564,0.233698099789736,0.237951715775981,0.234608820193627,0.236944601801406,0.236007470241671,0.238724905360342,0.237755104070767,0.236197138217147,0.232156972629213,0.247219826893261,0.292550811374736,0.300802024826023,0.235216062231059,0.133586517265071,0.0111922068580659,-0.09805637893438,-0.112292412954676,-0.0425225834254242,0.0539927280806543,0.0421295204454588,-0.0331005318927708,-0.0965237267244336,-0.0821294027480293,-0.0384455075996874,0.0139987066732062,0.0710198107733348,0.143033521004795,0.193829703796714,0.219521119883561,0.232796779151301,0.23578344587173,0.237063280191687,0.236893787837318,0.238231369707217,0.238453562721647,0.236194110442941,0.230016517573839,0.242219934705422,0.281920225026598,0.276418218730942,0.199474446336207,0.0887078721677588,-0.00996938651978233,-0.0707710665748373,-0.0477431949503333,0.0446945239927211,0.0989032053084772,0.0590469317749277,-0.0304613873082815,-0.100098602959554,-0.106798491697665,-0.0681914274398604,-0.0149825012386272,0.0563559765755558,0.128294833108368,0.177700824026642,0.212824089550319,0.23027328597554,0.239938440813899,0.234792972092191,0.236555075542372,0.236312325732077,0.239055598149985,0.233622929644687,0.224536540935814,0.233386260141885,0.251004681426656,0.231338542154719,0.153562594261629,0.0899374671668221,0.00619855589127126,-0.0331257281306613,0.01435347757298,0.0594110106136995,0.0656696818272858,0.0146529956415317,-0.0618733992029347,-0.125209181659777,-0.141625133752636,-0.0933518643673043,-0.0254422721894018,0.0638089922316357,0.130345296082852,0.172031643624438,0.210959230710048,0.23146705483535,0.236684095870685,0.236807115641661,0.237824502403086,0.236187929472379,0.236814532787511,0.234024936284554,0.231319742627468,0.22041537849862,0.22479239438576,0.184383340451991,0.111737375143558,0.0625956396992017,0.00413695119406416,-0.0249768983102307,-0.00541569712265554,-0.0116238899301079,-0.0273244400159693,-0.0727859174171643,-0.116005384558378,-0.159881055314155,-0.156076278791052,-0.0872117449603824,-0.00818613223150873,0.0859273557374367,0.151200845096134,0.189599328247653,0.216447042229041,0.229191855181377,0.234691225398509,0.237078374595736,0.238068018103945,0.234451907702548,0.235286701513041,0.236953564189949,0.233256534634274,0.221402222438727,0.202488821497968,0.158483514774498,0.101691015377928,0.0298376683749535,-0.0190798385340522,-0.0624612019615242,-0.0915520029899085,-0.118323030499389,-0.125578358941796,-0.137175546940163,-0.155285495241076,-0.15311708499275,-0.118102166494628,-0.0565595130953608,0.0369230888227647,0.111165124398508,0.167573158845598,0.204247672444504,0.227313911225996,0.238153127944021,0.236184995617797,0.236753570600771,0.235013155826041,0.238438304168663,0.236967601220643,0.235927644556843,0.233156835945306,0.224977264918869,0.206072004044856,0.157594684382952,0.106308016387725,0.028603657615148,-0.0382325128754794,-0.0921350884930724,-0.156368506137353,-0.191718370867299,-0.195084021010818,-0.166644954460111,-0.144035772368645,-0.118311837753572,-0.0715295723850196,0.00442465439285799,0.0934301171614387,0.150623366967673,0.191061471951204,0.21910069015209,0.232002211833196,0.236392358979666,0.235113506182714,0.235108463120608,0.238015500722784,0.237962898433822,0.237458482590935,0.238216096192388,0.235569484492047,0.235532722584995,0.223269766233382,0.197942129397554,0.15879218339627,0.0942589814862469,0.0180939266371492,-0.0482757430150105,-0.116368868829676,-0.150655791394893,-0.143941955486495,-0.117472781167394,-0.0834319425963128,-0.0379598748943814,0.014946401409338,0.080850774771641,0.142143519102513,0.18181687588929,0.20552420426794,0.222889090158364,0.232535404923599,0.235693099382392,0.238816921081156,0.238512725798709,0.238153611791464,0.237464516587767,0.234784008232284,0.236704813675171,0.23610524401272,0.234715867782553,0.232595127871856,0.232878315003225,0.229276790103015,0.207615366668354,0.185326544989577,0.141311898520482,0.10380939235237,0.0694103112196205,0.069845467939132,0.0861612089426075,0.0990597080410504,0.104507593577031,0.112478060052631,0.144217809927233,0.173908712064105,0.197011167404323,0.219585225043663,0.229744876405525,0.233882622004231,0.2388538047547,0.236253665282732,0.23518396010573,0.234684741487711,0.238355708750957,0.236992856566314,0.236880742270683,0.235373249974327,0.237650622924827,0.23830233640276,0.239864178254114,0.23775730685447,0.236053163717023,0.238732339093796,0.23011235844544,0.215385117820736,0.202239076721539,0.199974353400261,0.20025462013697,0.209750156620739,0.202642460688778,0.207878188838583,0.21247135340013,0.219089128549786,0.224913501966108,0.234244695031331,0.238185208411324,0.236901874083957,0.238180073330149,0.234678667940144,0.234668365518268,0.234747466265079,0.237448145332109,0.238145965652333,0.234506367175638,0.238876489326126,0.235370877031926,0.239444231704426,0.237088861895941,0.236652653089552,0.235676869817438,0.238625410667364,0.240472517959796,0.236945427027477,0.237349173151234,0.235884957066564,0.237823848583618,0.237173427843065,0.236781127002378,0.236034408656253,0.235637413513299,0.237089751361039,0.236299078183931,0.23816485993931,0.237919600468509,0.238629319223986,0.237765968520477,0.238800726943274,0.235057034942835,0.236103867146079,-0.231104418766447,-0.245686121041188,-0.244618856822007,-0.243726624695142,-0.245155104464072,-0.24623698099852,-0.243080074734608,-0.245817259263241,-0.244082874020186,-0.246171807027067,-0.243976890626604,-0.245920088322863,-0.243106489794877,-0.245926210262342,-0.246111941914476,-0.246047999506324,-0.245922895916877,-0.243597086253789,-0.243946051091546,-0.245810812331835,-0.243507280833186,-0.242503305480845,-0.245272896035545,-0.244038004670048,-0.24358931254309,-0.243342236334983,-0.242691804803846,-0.2425232196738,-0.246298285218813,-0.24364749913769,-0.24304029688249,-0.242596168601784,-0.24424175504678,-0.242986135618651,-0.245187223210549,-0.244914680188674,-0.24230836518078,-0.244494403051024,-0.246788123690767,-0.238934814792257,-0.238800781081405,-0.243989207704265,-0.239796879581836,-0.240057211160363,-0.239884262926724,-0.242733873643146,-0.24625984128388,-0.243624892096543,-0.247964036933495,-0.244176491579571,-0.242913533734551,-0.242704334138506,-0.24553379647584,-0.242878852958974,-0.244572747285489,-0.242374653635404,-0.245642121686866,-0.245443181799896,-0.245512332086769,-0.244504163408973,-0.246254259170188,-0.243670194548244,-0.245763565293982,-0.24552230733029,-0.243452477415053,-0.243319481524608,-0.242583194578052,-0.230658281467169,-0.228404230155957,-0.221857977338186,-0.210655188177565,-0.204251701821495,-0.215320051370173,-0.220302787235709,-0.225529390950874,-0.228214355531095,-0.229451478148122,-0.231017702992525,-0.238686930529477,-0.242768259157171,-0.246150944872777,-0.243105325463827,-0.243369070775593,-0.245208504450579,-0.243104885323024,-0.245803667028776,-0.245423346495457,-0.245365392713698,-0.246288106335066,-0.244952335266498,-0.246740234452363,-0.245982111984905,-0.243165017291382,-0.244426255340823,-0.227532602583924,-0.219215496680614,-0.208905487946998,-0.195453125236806,-0.1866712971912,-0.185922391271534,-0.194022970578273,-0.203156283562429,-0.210075368604228,-0.215408554856051,-0.222389285933127,-0.234935823003787,-0.23769896080544,-0.238631170726486,-0.241414858362925,-0.242238469699019,-0.243257171448924,-0.243107886963508,-0.246274303254569,-0.243636180188354,-0.242807190854216,-0.245935830435316,-0.245292571327593,-0.243095983291466,-0.242165784869141,-0.240105540373521,-0.238050311146504,-0.220134479852369,-0.193250313932611,-0.171837548151238,-0.153135449878066,-0.131608299926274,-0.124875958016767,-0.13349355822407,-0.1359252697752,-0.146091529256836,-0.170827282447276,-0.196100453073255,-0.228441056657067,-0.239917232103837,-0.24307018955636,-0.239893916332404,-0.241812482072713,-0.239129112470416,-0.243658305862613,-0.242388284936619,-0.242493716439222,-0.243777236651592,-0.243475935692718,-0.242238461576263,-0.245222018677358,-0.238887382780682,-0.236693099980248,-0.22360996930854,-0.198505604465982,-0.157384374657941,-0.114565733643149,-0.0598347981551008,0.00799213907910381,0.040335534562683,0.0524879511920727,0.0646813498075144,0.0772784083311288,0.0722671949064251,0.0503321344899452,-0.0142790732668581,-0.0851581636449851,-0.143006256638469,-0.17262347707216,-0.205193690081643,-0.21908120837767,-0.232061197538039,-0.238830856370013,-0.238699375721179,-0.242393414255276,-0.244329852029922,-0.242665179858743,-0.246044605888409,-0.244872785249971,-0.239204915515759,-0.227896529892436,-0.206970425911473,-0.156754494123114,-0.0917835772316951,-0.0169086131119013,0.0609385897971682,0.12734448486561,0.179371028722166,0.212316417803562,0.227343716181615,0.223002434388799,0.21991304479102,0.192901725892651,0.116614859148335,0.0221590194030886,-0.0530992734947333,-0.120955569468599,-0.17490008274966,-0.20843665267167,-0.213058777135952,-0.228300957494029,-0.238841406525728,-0.242759483014841,-0.24507641804375,-0.243855835307211,-0.244547196145602,-0.242133529703,-0.242518159941857,-0.223673150292004,-0.186561815333301,-0.122519978844859,-0.0377585911467317,0.0296454976877559,0.12087730722125,0.209001751849768,0.250683593510761,0.250996522871847,0.237969311563716,0.232634341268298,0.228358490812581,0.194701237504305,0.12757959018425,0.0569785923838666,-0.0236393373290208,-0.0952663686549286,-0.159093033172126,-0.192802115714804,-0.203544323180885,-0.222645498152307,-0.239143847441997,-0.24352350388921,-0.244233821072529,-0.242708918923362,-0.246827319805714,-0.245203422288523,-0.240659119571403,-0.220766280454812,-0.182774761790369,-0.126466179315323,-0.0362331684334207,0.0613323640143203,0.173605628496414,0.224292849552838,0.21889033646054,0.155942323186118,0.092552024902,0.0670540470665654,0.0806975117298196,0.0905437261108458,0.0841053912827865,0.0371959967964291,-0.0285798767366475,-0.0893196010473638,-0.147477325814307,-0.189690306254658,-0.195827429940643,-0.222450159406953,-0.235398716498751,-0.242515369651892,-0.244061136289877,-0.246933278087764,-0.247535159631887,-0.247845059377275,-0.242784550362917,-0.221036572246255,-0.185701726083409,-0.12856839637116,-0.0159328193809287,0.0963899723524923,0.194632410837759,0.19606030524903,0.122071303416172,-0.000339001517484259,-0.0966879336762156,-0.0997796949525403,-0.0345355376101544,0.0419837975743605,0.0872341606011163,0.0531317988057669,-0.0106058012573443,-0.0891121038485029,-0.158404095592962,-0.183167289449658,-0.198645441287707,-0.226294715784593,-0.241573636587944,-0.244187456695916,-0.242648067035795,-0.24495373677201,-0.250151090739423,-0.24771147134231,-0.242865947220938,-0.221894182018356,-0.192542173749795,-0.0978532607247395,0.0183294078683541,0.138597553281649,0.198903709682948,0.148922409303132,0.0400160201098996,-0.0940111675829587,-0.162532852653942,-0.114889056183856,-0.00613791444580503,0.100885019008627,0.13350700665448,0.0951283977799273,0.00723939935037122,-0.0989572774798422,-0.172220255906133,-0.211205719493337,-0.216949261927531,-0.22357597887712,-0.241581687193638,-0.245472836818411,-0.244534005478493,-0.24486267112249,-0.245019697826104,-0.247843676776374,-0.24175012332756,-0.213617896455775,-0.17569611142246,-0.0843670744489374,0.0456052206589435,0.147074338835406,0.173904711634141,0.138036184032932,0.0517049768931135,-0.0504666020797434,-0.0594212365667066,0.00306859270002685,0.105298193250266,0.193222091416356,0.200080204719726,0.119787811548049,-0.0148291124977777,-0.1546908004639,-0.233599296091758,-0.256214999918183,-0.238998694767241,-0.229929157027562,-0.240283380487931,-0.244510623965962,-0.244532351505975,-0.246507419304719,-0.245930838825131,-0.245452885353525,-0.239345392534115,-0.219135306377113,-0.185581473873278,-0.092927960585703,0.0334926623495734,0.121313170929563,0.157684860490078,0.174388767405461,0.145339593822118,0.105927247616689,0.107360080434247,0.156432063312545,0.236549330875542,0.269077349205116,0.218316948002018,0.1067142791642,-0.0620534054908883,-0.21267754537704,-0.28389305719926,-0.2873865013684,-0.254793764068658,-0.23822820461208,-0.241324524233939,-0.242407703407945,-0.245295907319085,-0.243162384511322,-0.244874544673032,-0.2432621374161,-0.237804222323467,-0.239909489150352,-0.214224470417106,-0.111436984938512,0.00155761298912939,0.0916373800004351,0.156927699762142,0.218382349558499,0.25627620799492,0.246584460226299,0.246210720313905,0.268342696880716,0.307750021360609,0.297129692196366,0.216139249091237,0.0469716699536124,-0.124451826922844,-0.246713832865761,-0.293451986254284,-0.303185754640825,-0.271338004535642,-0.242979726074899,-0.243839743187157,-0.242401784281591,-0.244093399615548,-0.245555251800458,-0.245319364249355,-0.243691905455033,-0.245603601319762,-0.265437368949436,-0.261053700013475,-0.172934970290941,-0.0525298177061403,0.055292896270492,0.150480920430331,0.241430283343147,0.29480676694907,0.287968346709783,0.272838452215944,0.269547223550813,0.29378352034536,0.26863659869009,0.134760171151243,-0.0293294622415145,-0.165639318053272,-0.256009110991038,-0.289259950809266,-0.302331633379888,-0.273011946958784,-0.244186618847729,-0.246138959911199,-0.243776141587543,-0.245595215787791,-0.242589303615656,-0.244330783948477,-0.24106792647486,-0.2560690783465,-0.302075036055309,-0.318534433058058,-0.240944856060727,-0.11454801876864,0.0105183936536838,0.123961797169287,0.218304685906729,0.261870870245767,0.23432519870103,0.203352517703869,0.196118983591533,0.225497736875897,0.181449071983231,0.0585371499368426,-0.0765473782940171,-0.162477725094224,-0.230387512246364,-0.280036153648694,-0.290082457999895,-0.264489771457915,-0.24055596638828,-0.243301553351104,-0.242533614009324,-0.242877662055413,-0.24507519667136,-0.243807238486171,-0.237624383600933,-0.257677593530856,-0.318869745512789,-0.347172323284427,-0.292812755253343,-0.167078633474811,-0.023301447400147,0.0913111058933314,0.185143754756333,0.183658173319636,0.128261651464129,0.0887887897235566,0.110800662594884,0.149912727665112,0.12447661654431,0.0138229998933365,-0.0722088338656517,-0.134699281945194,-0.188782695344935,-0.247981387717449,-0.268326613402409,-0.256479318742486,-0.242457462538783,-0.244375724707407,-0.245034290437632,-0.243179082377369,-0.24628736788356,-0.241527778771117,-0.241558394746534,-0.260602582473267,-0.318702313303407,-0.334941131256241,-0.286098340571001,-0.17523148323499,-0.0274149129804335,0.101382897243483,0.153010448528118,0.11052396540845,0.0214678410457084,-0.00307182623375184,0.0461723350125484,0.10454812298959,0.0957689578686608,0.0261391250790787,-0.0436788563183875,-0.0932506178468041,-0.15189384777309,-0.210134808427491,-0.247933753438606,-0.249478965823272,-0.244694525815004,-0.241323551668932,-0.243334646787861,-0.242445619097859,-0.246294025164801,-0.242251657440916,-0.23690011730767,-0.249150042031008,-0.301231461025088,-0.303489137763347,-0.240563054712957,-0.136723153071189,-0.00754872679588508,0.0994154889950087,0.111933486235093,0.0317446998726584,-0.0805809425086673,-0.0635125736260595,0.0210732266338699,0.0869064527913384,0.0799417129830492,0.0437119670957373,-0.00863677978868462,-0.0648454343147495,-0.13833278008829,-0.191103007600826,-0.225316212947178,-0.238901400498613,-0.244945177684578,-0.244425228254715,-0.243035610826298,-0.242206519792162,-0.246195917675066,-0.243800697258632,-0.235222745122353,-0.243307093605041,-0.280047821404567,-0.276213822922104,-0.1905385850202,-0.0740111043356073,0.0223171423589405,0.0744107308506686,0.04259168629346,-0.0653892023472538,-0.12691193373708,-0.0833323452148012,0.0145639424502633,0.0946748139395351,0.104355527648294,0.0802078845452999,0.0232993552797928,-0.0459850382116218,-0.118004540745291,-0.170541663725063,-0.212895679937565,-0.23301994025936,-0.244986886778338,-0.241480896838784,-0.242844799502033,-0.24289520437291,-0.243577810867849,-0.239526393590029,-0.232427549496084,-0.236404077264129,-0.24834020453673,-0.222368848136728,-0.141251674666546,-0.0671734011125841,0.0127420705064014,0.0426467344068637,-0.017393091210968,-0.0755094925161113,-0.0893926356597522,-0.0316842323958816,0.0509080645208345,0.12217935395028,0.146563830234401,0.102080157219418,0.0431736243816958,-0.0509473238817259,-0.119164661067668,-0.167903506769071,-0.212043386601955,-0.232519656853394,-0.240643958445512,-0.244431173989725,-0.245811237079598,-0.243019578818084,-0.24439027579041,-0.239832329727098,-0.23260208844332,-0.224254704055864,-0.219570959065541,-0.174945270970978,-0.0928073427609909,-0.0403669528345802,0.0163232464798068,0.0345200305682402,0.0114881571344492,0.00341058115660923,0.0213028768433857,0.0697982984352131,0.120417524767652,0.16876675840168,0.169032786080274,0.101054186949905,0.0246183598493288,-0.0691747712500997,-0.141377414288128,-0.185528102947772,-0.222955155911238,-0.235156263862483,-0.240720300312109,-0.24541122922724,-0.242799880654064,-0.245301432581423,-0.243368791604216,-0.241491995516149,-0.23515609415948,-0.219646920402032,-0.195060458870969,-0.148423551887718,-0.0806717047759001,-0.00553343318568533,0.0449341747061152,0.0863883654502546,0.111305970670191,0.136311131441089,0.136001390116878,0.146148784394954,0.165716218748921,0.161703934298433,0.129406100703526,0.0711529937847602,-0.0291497068724325,-0.10723466010138,-0.165152215604102,-0.203279870456732,-0.231056937845151,-0.241609181394307,-0.244421278581018,-0.245371574759097,-0.244042983950765,-0.244377388199381,-0.242098259979843,-0.242085181392194,-0.238176565904531,-0.23172473619151,-0.20460930532168,-0.152907359787896,-0.0903952504570296,-0.0150653252524284,0.0515253991546439,0.110134347363377,0.180554852163987,0.214227694812007,0.21519578953136,0.181013895965205,0.160090049586761,0.130011854264701,0.0788784936408661,-0.0010661533954808,-0.0953491900425727,-0.148650648367537,-0.193240909486629,-0.221151484801994,-0.235668648642661,-0.243145195721707,-0.245008296206857,-0.244848594683563,-0.246130365175869,-0.245228441522162,-0.242808108191579,-0.242012973990577,-0.241854183310543,-0.238654738879981,-0.22593500804513,-0.19810606841935,-0.153051660428635,-0.0865144604101446,-0.0152385368705819,0.0504451653725113,0.123719285869167,0.161962118830314,0.156479196412373,0.123728687761481,0.0845679930407336,0.0323864072315823,-0.0260197433490022,-0.0906540358431107,-0.152775513618924,-0.192458453885368,-0.213679775538485,-0.226765207267828,-0.240377973728036,-0.243819857509305,-0.242305404072897,-0.24441426249583,-0.244069394211862,-0.24365374579804,-0.242229987493967,-0.245387035189509,-0.245809896845037,-0.240432772860454,-0.24137973887004,-0.238632391269748,-0.235393409240366,-0.215842565358558,-0.195579113110901,-0.155557482395692,-0.11713474024454,-0.0852637655602552,-0.0874425399552827,-0.104557131587002,-0.115575132275841,-0.120304320695836,-0.127380685666022,-0.15865953115044,-0.18603107671978,-0.207244251619398,-0.227907050240915,-0.238733194258839,-0.242897044015363,-0.24631831464331,-0.242238545974795,-0.242778961235623,-0.244172516253497,-0.24282353743503,-0.243799257304686,-0.24406611580618,-0.244859356761784,-0.242895802406141,-0.243713337955023,-0.245789705836865,-0.245913198534139,-0.246548195025887,-0.24771297567259,-0.245202649542644,-0.234567236238244,-0.217271539668263,-0.214794504115582,-0.211123908941174,-0.222224047449421,-0.213865982867894,-0.216862839646749,-0.222706547421707,-0.226373776768948,-0.231221614055977,-0.241262573353966,-0.24226184193366,-0.241782560248841,-0.244236506341658,-0.243173358141651,-0.242263953842587,-0.246215136128874,-0.245623426062926,-0.242706917797785,-0.243794788060254,-0.24299021464459,-0.244641013792301,-0.243575164835744,-0.247063728069113,-0.24460983241442,-0.246485767216031,-0.246313124965804,-0.245534868609346,-0.245629326430106,-0.244480307028579,-0.243770896954284,-0.243349604852158,-0.247827071802008,-0.24693782511428,-0.24626914232867,-0.24375339946681,-0.243253780379622,-0.24289938324514,-0.244125335293564,-0.242656473528429,-0.242602114530459,-0.244787637919801,-0.245434930645103,-0.242271956782951,-0.245733120175545,0.229518143359022,0.24361445580054,0.244519708035714,0.244371056218156,0.243719378765294,0.241443319883441,0.242372810162169,0.243701149173395,0.242746387054863,0.242359770157612,0.241832431900748,0.244227843621031,0.242401540423427,0.242585286531934,0.243710838436962,0.245746222396997,0.245741341121243,0.245266680167542,0.243325470361516,0.242013598371298,0.245279159085581,0.244835419317681,0.242550975645947,0.242212850431828,0.245421620420368,0.244150831281651,0.242275230313819,0.24358358630486,0.243686579020888,0.245608601317128,0.242291200163204,0.243685462143918,0.242421885993564,0.241916544813666,0.245040957416465,0.245396504599446,0.245698594740972,0.245803247278029,0.242783639999811,0.240574542597496,0.241080405785669,0.242928220997142,0.237276440774526,0.241209900003359,0.240673549830018,0.243753659461942,0.244549425218128,0.243675319505567,0.246010639446628,0.244974923333285,0.243642051223371,0.242357098803064,0.242332229131439,0.241430081686954,0.243894470592645,0.244421908166144,0.245411533999312,0.245135900762066,0.243783482876234,0.245358314993555,0.244185905870788,0.242219146926413,0.245134345304127,0.242677622855476,0.245092317054779,0.245341845186504,0.245439436408137,0.236922289586912,0.231525217192758,0.228568444631487,0.226696402097063,0.222256070577344,0.227418252946645,0.235050335948258,0.233446245259626,0.237559291026714,0.233640909694669,0.237976470296877,0.242260670782223,0.244570146824775,0.242883421902694,0.243152593542957,0.243241317219194,0.244707968630496,0.245539155599788,0.24517997097645,0.244036341418336,0.242737065953142,0.243768544007616,0.243851749659336,0.246003325009698,0.241087922936499,0.242554354982522,0.243169769916106,0.235005828323457,0.22565642358528,0.217726712718566,0.205036026135615,0.202706604959504,0.213706288405782,0.219674374861572,0.226170055700746,0.237946237091667,0.23941406201114,0.246096183768867,0.251534249596075,0.249957950776117,0.244096249571749,0.243691829214394,0.241529570731004,0.242325195273278,0.244908563877867,0.242190333226426,0.244851384442993,0.243504336736383,0.245525327041318,0.245973959282005,0.244937437605123,0.239607160117921,0.235146146834774,0.235636607671764,0.218178280186786,0.189124969596803,0.169815216312774,0.148092673869335,0.129094781301133,0.126537909300298,0.139229423384723,0.144872338788305,0.158766919593367,0.183020175781008,0.212757875758292,0.242962621795029,0.255895066247805,0.257186044612422,0.242773509620467,0.244705847832373,0.240875838307546,0.242147429119228,0.241380131681657,0.244819291009192,0.245601685315746,0.243942703707893,0.24198143195147,0.24221594083201,0.237923269250186,0.229005547820238,0.214789691784487,0.185116671319829,0.14272012447911,0.095614014073654,0.0408627789527822,-0.0254129179782691,-0.0604691174332972,-0.0655206583551851,-0.0785500218477421,-0.0893171342524988,-0.0824945745971036,-0.0592407848280224,0.00645330673190603,0.0838227969630326,0.143559500743664,0.180539414914297,0.216086682103302,0.23103814772685,0.234734584506313,0.239660277725146,0.242330733293462,0.242450412002993,0.244397925458106,0.245237737517446,0.24466742011432,0.239627221736869,0.231193453737184,0.219314980255314,0.184019156286476,0.128320603485068,0.0641459665110885,-0.00518286898187284,-0.0719028057878487,-0.13886017178354,-0.181758325162659,-0.213003576316009,-0.224214706187513,-0.223983663200236,-0.223498365176816,-0.198308893981692,-0.127931279586784,-0.0336862717744966,0.0519769325773497,0.119667975913818,0.179553164424442,0.217289165033292,0.221646039309987,0.227866895632769,0.237240371469919,0.244111362117641,0.242081795189677,0.245454346820968,0.243977520654662,0.239343960916403,0.223252399189205,0.199685237327052,0.155577751785905,0.0840238298532736,-0.000139208795433402,-0.0581744362179526,-0.138633895903041,-0.214986990950787,-0.252784276847323,-0.247067438551341,-0.227071723598658,-0.221791932792763,-0.222362509251342,-0.20228695820136,-0.150185027857808,-0.0797492646590563,0.00620374599165215,0.0754560843786597,0.159453654492463,0.206370415887606,0.215057304906638,0.227803599001901,0.237168011681287,0.242117577476205,0.244252484062585,0.245625979926124,0.244665256690755,0.234901980869651,0.21984793029418,0.191841280867466,0.143852811014108,0.0797476477667484,-0.0070013489918714,-0.0919070614632955,-0.185063865924999,-0.226572528560448,-0.213696252711858,-0.14519020300104,-0.0828030284515949,-0.0617527518279277,-0.0925287476682958,-0.114900005780374,-0.117839060081197,-0.0806453600349731,-0.0139271707877567,0.0567681679629624,0.129924374229761,0.193782681827439,0.205953142698009,0.227965634502787,0.234180736340775,0.243488240649406,0.241616800886337,0.245106463561351,0.24374336147568,0.240840837429628,0.223165340019234,0.191988292342925,0.152440824757194,0.0884179267262966,-0.0169369295456758,-0.10875682473407,-0.190764010940591,-0.191465836302304,-0.117217356984249,0.0148566916042405,0.0949422499306965,0.0841963261358822,0.0012995314870253,-0.0816394812498788,-0.128144299290978,-0.0989076387106112,-0.0385259108586309,0.0540876061119017,0.133750169119228,0.17331417716526,0.203424647152398,0.228389396814927,0.235668696567799,0.242210512610103,0.243642948556776,0.244497012465972,0.246518973973275,0.240409765092738,0.230227507315191,0.204786946277577,0.164309294806065,0.0696133871701149,-0.0240720383946459,-0.124699366971299,-0.176434145318194,-0.127310281020729,-0.0291272878936744,0.104925985757132,0.153840759870839,0.0857751722283975,-0.0273507281418393,-0.135571435804463,-0.171763306678509,-0.13315052895963,-0.050085544535522,0.060270727506034,0.148066781250926,0.195964689771373,0.213715688064444,0.224425784044663,0.236634814108734,0.244855265894906,0.243441689241636,0.242562032874775,0.247229906596988,0.244014537159279,0.233872297777105,0.203190121066112,0.160088800861924,0.0702837477729115,-0.0418308377816424,-0.130295329894676,-0.149013832312856,-0.120080067242339,-0.039279684090382,0.0597716429445754,0.0528864826702818,-0.0136710055344181,-0.118520932107042,-0.202760771176688,-0.221340189060729,-0.145398645267385,-0.0188171878412305,0.118724208274895,0.207158381238456,0.233163656017839,0.229842368279664,0.227489713540218,0.237314524758557,0.243743889242866,0.244062317306524,0.244504970143992,0.243803085813658,0.243807166144719,0.232626994107116,0.214228369460105,0.175060836751674,0.0805491902052845,-0.0374877698094825,-0.108684904429607,-0.139775589346951,-0.157475222154502,-0.134702162003856,-0.0931399850481113,-0.097706616665288,-0.14813689131283,-0.222795065581609,-0.267717191885164,-0.223679879400663,-0.120335590251297,0.040491097197728,0.190065845086395,0.263391076176226,0.268664682366012,0.249524994056637,0.236915216870785,0.239544911082536,0.244713905352785,0.245639147343446,0.24275460705772,0.244443322677591,0.24398414241508,0.233915852510026,0.227862307162982,0.200221586395978,0.0968802120706039,-0.0109322742547206,-0.0907102461549585,-0.139767035027662,-0.201079661458623,-0.238892421105779,-0.220726356222241,-0.218481665085612,-0.238146330100792,-0.282131524774063,-0.286888883357476,-0.218841305144363,-0.0638007061573205,0.111292153350444,0.227097924030708,0.276488097377004,0.286940798450785,0.262432192611816,0.241728871496094,0.242572359858165,0.24199937656584,0.243080149101536,0.244793001434295,0.245594101539633,0.244370998368835,0.243039322295295,0.247659174728671,0.237724538219094,0.15076788246996,0.0384924550094928,-0.0604742965991002,-0.137356012842838,-0.219151693582954,-0.267887951501925,-0.249596311138179,-0.234705425809345,-0.230902279783675,-0.266611616766088,-0.256872431073044,-0.146354348140517,0.00306451026168476,0.141271647281327,0.233220816526061,0.276942937968147,0.290144342506714,0.266168229546946,0.245572432058731,0.24595221463419,0.24244158020521,0.245221320562777,0.24447287413074,0.243403020290249,0.237046094158449,0.245156355504685,0.277004090518763,0.294052626861749,0.21922668272482,0.102147489517721,-0.0145626552538459,-0.114587754916257,-0.193361842763267,-0.223637797050537,-0.193352356257147,-0.162003311914381,-0.157827268619892,-0.204441095364192,-0.171719003304996,-0.067938523089951,0.0494491208817327,0.130060202432944,0.205813942770972,0.263221444583392,0.275653395350282,0.263317883665927,0.244050948185716,0.242560187797532,0.242188822367943,0.241359341172459,0.242735722491453,0.239959797597719,0.237762333564065,0.248918364371129,0.292449307272251,0.315170953457671,0.269296420937384,0.167089341961261,0.0312187965972738,-0.076375750849749,-0.155377844443161,-0.144787562474912,-0.0827516469338355,-0.0440339293463424,-0.0676556832435266,-0.130023396033598,-0.125094623127184,-0.0222437392619439,0.0536294854884033,0.0986739789333647,0.166303634299151,0.235015596832525,0.257618552490175,0.255908548259038,0.242829092138339,0.244484698672411,0.24512447270743,0.243168302258812,0.245445936784563,0.242397392064181,0.237167051590058,0.246229120544598,0.288787179755631,0.307791097278609,0.270296386483839,0.177920123025371,0.0348180312204987,-0.0828660871864774,-0.115191850573779,-0.0653170973355952,0.0193384562335012,0.0457681937479566,-0.0183927829917008,-0.0890259019432204,-0.0880635612058603,-0.0300338567496739,0.0302018891107084,0.0704809720205107,0.134059980911482,0.200848674437269,0.240469303384404,0.250105311124645,0.242245502982724,0.243172304810222,0.243227654735946,0.242226769795988,0.241948315949865,0.243141196143663,0.232594344796652,0.238227668840363,0.271860425201514,0.276436601513314,0.22639223200129,0.128988054962709,0.0150378071031502,-0.0771210637051967,-0.0788743184865285,0.00376074787052168,0.113683538704231,0.0961465274677867,0.00253720722165863,-0.0718941339654609,-0.0734490302719496,-0.0468103681602378,-0.00759879408809081,0.0501922034905615,0.118999752792513,0.185835843428753,0.219578636972103,0.240284330734729,0.24138754111231,0.240398390800746,0.244042077131791,0.245166020229921,0.244945156894672,0.241385148414836,0.230623879299483,0.233325225257532,0.253502583032176,0.244542052408241,0.168449036313707,0.0636227431316399,-0.0162171559899793,-0.0602323538404455,-0.0171368502392372,0.0939792610672859,0.156618616435779,0.111724458234898,0.0080510787054395,-0.0818709029807906,-0.101639470419516,-0.0775503229744042,-0.0372470139860194,0.0328506567965295,0.106906829160677,0.164535723857508,0.211474342261513,0.233853711843661,0.243490259678695,0.242016066540672,0.242678023595641,0.24283962634347,0.245872456714095,0.239010102057497,0.22316896777427,0.22010273647818,0.220933905165623,0.189702534338463,0.109569116997131,0.0487193316023412,-0.0164629007687186,-0.0332975450721826,0.0413167010320636,0.0954588881285471,0.11395742438953,0.0579918705949936,-0.0386433536676422,-0.110680646613761,-0.149232541448824,-0.111371270813074,-0.0556723385241568,0.0364747650847812,0.113504340896904,0.160671571743812,0.212991612172898,0.232247550747411,0.241303658397053,0.244166180246001,0.245302856714954,0.243040885941369,0.242567576407065,0.240588862913875,0.229635213078678,0.214677629701912,0.199221477115662,0.139144420187012,0.0535416281379161,0.00734368535985402,-0.037153314478961,-0.0518748220702165,-0.00998079882178692,0.00322098114695753,-0.0103185017226096,-0.0575938529213538,-0.115564236676657,-0.170515758607896,-0.178544265889586,-0.10982791475765,-0.0351512430205681,0.0596688536495418,0.141525403170258,0.187479053454467,0.223770888806725,0.23614824876387,0.241774350343863,0.244163197490008,0.243556970782184,0.241799039341438,0.245092527444526,0.238757871813272,0.233803320587965,0.214643980540179,0.180911286932587,0.123211087549068,0.0471925624122856,-0.0324657608020752,-0.0819219979059134,-0.121440847883307,-0.135559447706245,-0.153553272749512,-0.151858121237138,-0.161015105480994,-0.178680521521393,-0.18029606491584,-0.142033269944429,-0.0817178270803052,0.0259694057471292,0.103033458314556,0.166432864274652,0.207143533034216,0.232487694218673,0.241330934965706,0.244345892543567,0.245617032123692,0.244673200334517,0.243634314639954,0.24544516399642,0.239869208969704,0.236248527089639,0.220780811527981,0.192174800768715,0.131221366522634,0.0630802383660182,-0.0163464069660009,-0.087523257289561,-0.142599721040582,-0.207784004606955,-0.239715357133669,-0.236881119568847,-0.20412616976005,-0.179566804691474,-0.146189959218717,-0.089407659255183,0.00469026934508893,0.0978715247983277,0.155737873430966,0.198287778404654,0.225945608520485,0.237277405079957,0.243109663761632,0.244051808382976,0.24574497772011,0.242221569504382,0.245491524033275,0.242367504177665,0.242861935649304,0.243001123849931,0.233529784622239,0.216772632554376,0.186277665186001,0.131890066906606,0.0649620353248412,-0.00173321544305262,-0.071666223823028,-0.139463237337863,-0.17561280684756,-0.170762683114135,-0.13013121349822,-0.0905956241768268,-0.0387496628553019,0.0261601413556668,0.0965638561518608,0.155166189895131,0.191203071286522,0.214433507608496,0.229057266291698,0.240980281921915,0.243881978339644,0.242568549023,0.242935433443005,0.244610866113076,0.243521087144146,0.242367472859079,0.241608461277473,0.242396959312411,0.243114606531018,0.236735585789943,0.235366609651272,0.228988513970402,0.203518074017971,0.188148726475434,0.143508639837692,0.1049350153543,0.0793410398657887,0.0805038419881329,0.0949959305107082,0.106702534096979,0.11400655787457,0.128120787994241,0.162440798930379,0.186163539717601,0.207601547087502,0.226347489658222,0.23637457486152,0.242286246276931,0.243825553262393,0.241732160174505,0.245113552726203,0.241984501790706,0.243604800289608,0.242811191068253,0.24252490883893,0.245019252123005,0.242431659616559,0.243604324894073,0.244633925852032,0.244305236450663,0.244560310806559,0.238835892871434,0.225616526546153,0.218125822104819,0.209060143239913,0.201589029555522,0.203222477250597,0.207964090663519,0.206096732711279,0.212929046081689,0.220208917423269,0.229339293201643,0.234597954495787,0.239841753553331,0.245201616830444,0.241330754688312,0.242252725206652,0.242911586198551,0.245471837443512,0.243175189559805,0.242150816467802,0.243928591768841,0.242244556076042,0.24222145099003,0.242276815307265,0.243809268033951,0.24242268791368,0.245741171437129,0.244342616680867,0.241651170771752,0.240742965112678,0.243371038026433,0.2474786470007,0.2431430725975,0.242742718964971,0.243540830151266,0.243433496698256,0.242005570690838,0.243906752471337,0.241340004840773,0.242530382004229,0.242192016812525,0.24476683150821,0.243048925385427,0.245128059974059,0.241540488311552,0.243698526626825,0.2456473270703,-0.224733559065939,-0.242886126886639,-0.243461099020614,-0.244217938263152,-0.24612432607185,-0.246331067541755,-0.246182433441528,-0.242718593947098,-0.245371360630706,-0.242808022667135,-0.244220765357341,-0.244891249277021,-0.243620609706851,-0.245623252750148,-0.242918389169005,-0.242889967718285,-0.244044356762604,-0.243504585369644,-0.244295144225733,-0.244389062787034,-0.245518837360883,-0.245005086860285,-0.24582510129049,-0.245842358904416,-0.244186910804232,-0.243457959146925,-0.245354334936655,-0.244987966123075,-0.247104571131015,-0.245909589177713,-0.246502774652241,-0.244704833595199,-0.242775882592374,-0.245585228107191,-0.246056160114259,-0.245836763356473,-0.24486783745188,-0.243330247402002,-0.246625499734461,-0.241857360094415,-0.243685471351454,-0.242157021223077,-0.242697171186996,-0.239244323857212,-0.240558440960688,-0.244284186937342,-0.247770652259746,-0.248629489390261,-0.246126997676031,-0.247882839346601,-0.246522272067854,-0.246089306340282,-0.246191086596649,-0.246330077665391,-0.245222051366657,-0.243870614534532,-0.244920254383228,-0.245332107946927,-0.243737130434851,-0.243894000746082,-0.246179438353674,-0.246196034336108,-0.246040822669213,-0.2461467011788,-0.244694268334547,-0.247524617227046,-0.246227955931253,-0.242474617627231,-0.239352236477741,-0.235017141317296,-0.229264495585604,-0.223966260854501,-0.235398122839521,-0.242194507447812,-0.241001482275339,-0.244625813633556,-0.240678986077055,-0.241435659927443,-0.24332807610889,-0.244883489100293,-0.246351321344538,-0.243677285006934,-0.243032046334302,-0.244372252282111,-0.243761301086298,-0.2466588615832,-0.242917234756643,-0.244693370883646,-0.246651243144474,-0.245569793899656,-0.246381394984645,-0.244526664162517,-0.246934953771277,-0.244881640280317,-0.239386222174053,-0.234620515207441,-0.233232529173139,-0.228090715747103,-0.222601360401164,-0.234955849326016,-0.243470610096886,-0.245552838178841,-0.256337793239131,-0.252968990044019,-0.253605645412631,-0.257159084371308,-0.251766527765241,-0.249049733762794,-0.244355110440201,-0.244200798256464,-0.244172107167284,-0.246128560694939,-0.245230606101764,-0.243840442107064,-0.243488986571896,-0.24571435830615,-0.247629010292009,-0.246894893098612,-0.24154094957802,-0.235245750271055,-0.235502122538129,-0.226012161126602,-0.198463401143923,-0.179443866162155,-0.164203191263865,-0.154499596877499,-0.148931855200844,-0.159756145349933,-0.165211658248001,-0.177931662981194,-0.202106502109079,-0.225555128449296,-0.251091887639988,-0.258955672562581,-0.257321280480613,-0.24557420918334,-0.246301338158098,-0.24273492140336,-0.242121661714541,-0.245943857085866,-0.244227824896669,-0.244977704059512,-0.245252304956206,-0.242983253308906,-0.245840834547468,-0.240025739753766,-0.229709347667932,-0.216446958335141,-0.195805124107663,-0.148851966041923,-0.105213714684468,-0.0597974036983258,0.000152668806560564,0.0301867930954069,0.0361916776112347,0.0421481958433982,0.0501505851723296,0.0520351847323876,0.0290818709200524,-0.0263874630731612,-0.10150004406021,-0.16226839972047,-0.195739073016353,-0.224391066119432,-0.237931310936148,-0.240459566105363,-0.241379892316258,-0.244977517682527,-0.24716290544594,-0.243562184464275,-0.242862585540942,-0.244064257069625,-0.243113988424812,-0.228298597953214,-0.215231105417673,-0.185397335360176,-0.127968679973344,-0.0610423619077573,-0.00245710377262504,0.0588133032615603,0.113009388270808,0.155166413540078,0.177230025269009,0.182842264414723,0.190251266906453,0.191931301615467,0.170735033547798,0.109346723357472,0.0186385640657421,-0.0697354360256759,-0.142055929921805,-0.205500619140612,-0.233493805845219,-0.237136611274418,-0.238054594721169,-0.243367433483242,-0.2452980031136,-0.244037352142679,-0.24406938470569,-0.243657554077497,-0.233531302428509,-0.214875302547954,-0.18142901488065,-0.138859377642316,-0.0620536072250928,0.011194960595345,0.0640672557818009,0.133467391877519,0.206150140559309,0.237914113833536,0.229559233695038,0.212270470102432,0.207851459941812,0.219199129322904,0.207450429854876,0.153024686863877,0.0863022960568978,-0.00708495011695838,-0.0861398557841272,-0.17704756484685,-0.227089423453507,-0.235010271951875,-0.23599684238356,-0.241675535091575,-0.246409268026151,-0.243795819762559,-0.244090933330435,-0.243093425836416,-0.228775290492029,-0.203322338334129,-0.164380882515113,-0.110865660674146,-0.0412105084370267,0.0391418995974231,0.112837553206132,0.198222669994289,0.23877181981756,0.230366695188611,0.161227574782087,0.0989845182319646,0.0935221256699609,0.126206085201158,0.160819093868496,0.159851309248974,0.106701781135159,0.0288606691052196,-0.0504772386654333,-0.141357455589825,-0.210335466166697,-0.223303642816685,-0.236872164235923,-0.238774740818907,-0.245716252429352,-0.245622694873367,-0.244731329254196,-0.239691165420463,-0.225920288567415,-0.201602608594034,-0.157554211110892,-0.107852395352778,-0.0442681542464706,0.0552922783483698,0.143118021101308,0.213398953187013,0.211484390986292,0.136408557887518,0.0168568025571866,-0.0508431007918857,-0.0240414191496886,0.0592720951935334,0.141483045534074,0.180797389316948,0.135986479814925,0.0662447263210888,-0.0310699307748786,-0.128036173716757,-0.183266400725387,-0.217016320430952,-0.235742159944017,-0.244384155702533,-0.24717082398087,-0.2467868462048,-0.247359142758032,-0.244636265299904,-0.232217371910197,-0.212056698179469,-0.176289629368968,-0.123746305389425,-0.0231718468242483,0.0672232906836663,0.157069557965128,0.1861099683709,0.133418314185984,0.0409509500591,-0.0859170744891495,-0.11902020525265,-0.0413475956050321,0.0789162574358604,0.185215194218504,0.212376462380796,0.171298444945062,0.0836352415511799,-0.0314843409187433,-0.138061735469275,-0.194673062691239,-0.219308489593237,-0.231439344960954,-0.243252561241852,-0.24674869349279,-0.245291414244007,-0.247153505975976,-0.245791952893002,-0.235847467188247,-0.224755031839256,-0.182079951012422,-0.117285250343447,-0.0221896222492598,0.0815237962270935,0.15290448230971,0.154464047007405,0.104342189090233,0.0255973785887855,-0.0642077528958738,-0.0468780292679686,0.0339620108856243,0.142397204459042,0.236444806717369,0.254091512411378,0.181334176980739,0.0580453235728101,-0.0935862065620497,-0.195067199686916,-0.226013409627291,-0.229429202806388,-0.231648928392509,-0.243212176461789,-0.245550413429261,-0.243267696957462,-0.244304034713245,-0.244767145211324,-0.243241308562449,-0.231796181488002,-0.197434480374745,-0.127029617410377,-0.0282909618985432,0.0751749714456113,0.131700872893024,0.134779175572538,0.130415849449148,0.101958072035096,0.0654788900255099,0.080442563587662,0.139377486229361,0.229368079332235,0.28642456767924,0.251279024392878,0.160498332944185,0.00530745393126637,-0.159076366119768,-0.246994741965967,-0.254097325145173,-0.246218099094323,-0.237158455800907,-0.244819534622356,-0.243436666003096,-0.246176197603749,-0.24645346602407,-0.246549521947579,-0.244739169287201,-0.233041426871546,-0.206490078000538,-0.150466020788643,-0.0388449780132476,0.0567880787415153,0.116375918572255,0.138466212292171,0.170393958203917,0.194978791592308,0.181354977051665,0.186725588124876,0.219945121920247,0.282242865479212,0.303219075877216,0.243710827462431,0.10635228306471,-0.0625689220129306,-0.193423209666046,-0.255600750345659,-0.273869419372475,-0.262210841721372,-0.241253210453433,-0.243532686078039,-0.244484027240225,-0.245108064504426,-0.245597871509235,-0.243098371918562,-0.241015613765367,-0.231804036278897,-0.222136291886201,-0.187141905630249,-0.0833274942801586,0.0184402488382448,0.0931449137313961,0.139295019136111,0.196622631611453,0.234081013366863,0.215175048671853,0.202739616485339,0.21542055186844,0.269668928515236,0.278004576388141,0.180409243754291,0.0421093697533501,-0.0980502003496271,-0.201873557897536,-0.252009588630974,-0.279646834478167,-0.266796830088018,-0.246559675731168,-0.24706981093748,-0.245377975922972,-0.24516575665615,-0.243867722377352,-0.242213038166301,-0.241060749124107,-0.240043188561698,-0.250657301355203,-0.239053572371099,-0.153127917082742,-0.0395809447657361,0.0461789236505213,0.118616722834696,0.184725406890048,0.205286426387356,0.166029183713165,0.141004428236055,0.14908890052479,0.213095421162639,0.201182328110011,0.109762904849675,-0.00300533444222063,-0.0966889776147752,-0.172867319001037,-0.243949469903482,-0.272175589859064,-0.261588317147137,-0.246813699595773,-0.245329632720612,-0.24257439278193,-0.246383223450078,-0.243291799546365,-0.241689398120841,-0.237561297457216,-0.242360828350015,-0.272460753272045,-0.276838938724583,-0.225536247179811,-0.121503042266605,-0.0102692285025917,0.0804031055406216,0.141551861303004,0.121798533884826,0.064108495895195,0.0306284669467562,0.0749155102261136,0.153382418502299,0.153189670411838,0.0551801521545017,-0.023642516087477,-0.0735963299383947,-0.14560958871641,-0.225003961740337,-0.257386079337592,-0.259827217510813,-0.247442014686304,-0.243637250968703,-0.242864365359018,-0.245840842568618,-0.245768214915647,-0.242357995288672,-0.237652114714946,-0.242163614561925,-0.273919981690925,-0.288969767892473,-0.252203879944626,-0.175137043718132,-0.0534739306184391,0.0477998849906319,0.0791358127378349,0.0349663938960513,-0.0424489425639657,-0.0497409618138865,0.0298462122193127,0.113604115124773,0.108908791169671,0.0465398124881542,-0.0214962150974913,-0.0641930967444999,-0.131833566454256,-0.206334159856716,-0.248989514795072,-0.257462617985858,-0.24941439988294,-0.24483714252483,-0.245536502296555,-0.243379256909395,-0.245085166478799,-0.244405668011069,-0.237404711292014,-0.236490154381347,-0.259011383308796,-0.271743421276276,-0.233901551912131,-0.15802696296217,-0.0595605089985506,0.0225037230582301,0.0262848589033262,-0.0432384570122273,-0.127855089224012,-0.0935149026095636,0.0147795697490925,0.0906648200163814,0.0866351198846606,0.0446149582789159,-0.000877908788787642,-0.0623763883152611,-0.137235097924119,-0.202334777819499,-0.240590456234515,-0.247652278749129,-0.245053296643202,-0.241231262296755,-0.242540753466796,-0.246078451522974,-0.244777002858944,-0.239200197125535,-0.233600365649033,-0.231356405369457,-0.249552362515685,-0.246794884683246,-0.194191635918688,-0.1070867896693,-0.0365676201879405,-0.00061913723531955,-0.0303541108172489,-0.120344431861242,-0.158278300610913,-0.0993775377218944,0.0124603438535293,0.0933394759986435,0.0963105881619498,0.0642805284940977,0.0198177435011732,-0.0571751253146726,-0.135601971626398,-0.188475713217026,-0.230458790930882,-0.245902203382152,-0.248032663032837,-0.24713394160323,-0.244534474204446,-0.243866669589136,-0.244912327947492,-0.241267802819975,-0.224612696158696,-0.21988756640656,-0.22379861615311,-0.203859837910062,-0.138242821236058,-0.0858998719198043,-0.0288278408751477,-0.0100265639151254,-0.0707423095081572,-0.108683491275328,-0.111853093529929,-0.0428117441202429,0.051654674136603,0.119995280052747,0.140506360513386,0.0952759381654068,0.031580977095639,-0.0636879525442156,-0.137667287732676,-0.185991925834203,-0.228326706975638,-0.243408173255656,-0.244124406768024,-0.246131575460848,-0.243206260885202,-0.244566393557222,-0.246663486322368,-0.239837725377402,-0.232093427439914,-0.215105920718391,-0.202619623494315,-0.152163032636718,-0.0792575937569628,-0.040498653892049,0.00508502853936359,0.0235858728573047,-0.00897906283694874,-0.010167991022032,0.0145046223085493,0.0678828903784682,0.123995141665575,0.169756917054073,0.165177844034935,0.0922594565481907,0.0167214145609185,-0.0847087916919409,-0.160350380265813,-0.205491641597369,-0.234470355201804,-0.240872598695769,-0.246331393612334,-0.243606141523096,-0.245689028519298,-0.242926488739924,-0.243794781159365,-0.237572704694845,-0.23480882431452,-0.211849325052808,-0.182949479010657,-0.129415777268962,-0.060929805061515,0.00402162506388615,0.0633881788121988,0.109833818425157,0.127645261475546,0.147057244359435,0.151271726411478,0.161048926815668,0.180609292666774,0.184553444141516,0.136797027196397,0.0643388610565049,-0.0375601428403615,-0.120542530560162,-0.181877980337974,-0.217719636721068,-0.240652064778003,-0.249212832691352,-0.246033123880058,-0.244975872880092,-0.243231696583089,-0.246674745218257,-0.243125797038713,-0.242046831218545,-0.237217464498571,-0.219125162381244,-0.192183316692508,-0.136807586803811,-0.0701070553516031,0.00298509246115269,0.0738502177609731,0.134868466580951,0.205659815173073,0.23644736312363,0.233142708514718,0.208506537528013,0.184827552638635,0.153721993357767,0.0888192670338034,-0.0110975030123183,-0.103054198126038,-0.159839697537772,-0.205352661322669,-0.231640074882671,-0.240904296504811,-0.244430318385741,-0.246249426278216,-0.243774700746041,-0.245823679530793,-0.245930798306706,-0.245005017438431,-0.245504379000237,-0.241237167986326,-0.23304575989377,-0.217307567181199,-0.180991175563207,-0.130935973446753,-0.0697178600661055,-0.00552258478380407,0.0723739852288013,0.148307245240267,0.183059995887773,0.17445643734234,0.14348341726333,0.113703119350903,0.0618858613569073,-0.0129254250414672,-0.0898988268686528,-0.150550244521569,-0.186452074185385,-0.21139779768149,-0.23030170479841,-0.242955391314999,-0.244957572999439,-0.246720772240984,-0.245932871476125,-0.246588409583836,-0.243090508992882,-0.246845103186233,-0.246050533639158,-0.245364871806617,-0.243035734928987,-0.235919945727308,-0.234285174136787,-0.218637556314281,-0.194169868753016,-0.168399133660075,-0.114648415319884,-0.0702962306646271,-0.0332145226187644,-0.0372415397044378,-0.0543265522197299,-0.0653960454328744,-0.08096384258044,-0.10371930012905,-0.150430959981886,-0.182858470226386,-0.206729178605722,-0.227969145451026,-0.237589335630795,-0.243480850233208,-0.24372319939715,-0.243987803283663,-0.243005989652306,-0.246686757639254,-0.246414949376325,-0.245444227452206,-0.246925729864101,-0.242863506373007,-0.242992708975329,-0.24516701821489,-0.242107101470081,-0.234604280327103,-0.232573191738577,-0.221549689385481,-0.199025640334802,-0.182416483208956,-0.171368378289844,-0.165711333194034,-0.172955126383777,-0.183695228969486,-0.186186514756622,-0.199838021727008,-0.212529574405741,-0.22618574542605,-0.234163827685668,-0.240387489159429,-0.245227233174365,-0.244614192354334,-0.24414897688055,-0.245882803547266,-0.243300012427115,-0.244874145811688,-0.243385913355281,-0.244319946308349,-0.246902531511601,-0.243113954456979,-0.243259976841192,-0.245652258183793,-0.245642203979035,-0.243911902401894,-0.24402497863071,-0.242572384601624,-0.240947128253889,-0.241717906274758,-0.242779232562479,-0.23986959703856,-0.241057836194631,-0.243868457459419,-0.240059261399009,-0.241818602805252,-0.245289085914989,-0.244229256268549,-0.245349012423805,-0.244745877111663,-0.245351810125513,-0.245933564054818,-0.246121332730833,-0.244264329014711,-0.245551800265831,-0.242824043132614,0.227121010813232,0.255186757371285,0.255180662209439,0.253364039391018,0.256522141463627,0.256282282128487,0.256629525931598,0.253860419359799,0.255400863732361,0.25493212093592,0.256496145355158,0.254557348351808,0.254944471104458,0.253083883867427,0.254642895610292,0.255682531329592,0.256446456174103,0.252703386355241,0.2530201977752,0.253220702102857,0.255566884435718,0.254024558791707,0.254447805060768,0.256357742735472,0.254552310174496,0.255195649830273,0.256233035239774,0.255674147842123,0.255615414977229,0.252693225051664,0.256720781947054,0.254629071665818,0.256602990190404,0.255743239310588,0.256390781749224,0.253948958298878,0.25379702224204,0.252988747737444,0.254059740094601,0.253745546076498,0.251990425983058,0.252138421145659,0.251083790357069,0.253598763604456,0.253801444191479,0.252298566246466,0.257519119961781,0.257746035754774,0.255381777808108,0.256037202435156,0.253878268444141,0.254962484302467,0.252761914842559,0.253451731193361,0.25434295441486,0.253845593308015,0.255595797870017,0.25451876446176,0.254803114274756,0.255575786688514,0.253171839644825,0.252644383657524,0.254852495781744,0.255802452294956,0.254645935460323,0.257343361857141,0.254290460915902,0.249657396523401,0.24528691425001,0.248674296149317,0.246694654737283,0.241200816668808,0.249701118957616,0.256743226990041,0.253421397069685,0.255420892672161,0.252670900628752,0.253640957677217,0.253003009841401,0.255758548975548,0.253789134262628,0.25351620638008,0.253467229553123,0.254816681675948,0.253436927751697,0.256921652222662,0.253740824482596,0.252962824109988,0.256073795532564,0.255866794311474,0.254958523636727,0.253263000422657,0.255045826070303,0.25803543811663,0.252539705795926,0.250687258433847,0.247994121407517,0.247710169953799,0.251092087905545,0.257054114201999,0.266093141899886,0.267184756577963,0.271789783765771,0.27031628562064,0.269384929901329,0.267965360162054,0.265708957027304,0.259785109978779,0.254941464461033,0.254213387407724,0.255228649504642,0.255346364836861,0.255409170551381,0.254925382219977,0.255469555750228,0.254478992445806,0.254634894129496,0.255415370404311,0.2564895521337,0.248810467945747,0.252244100745691,0.242409394569154,0.217613164512362,0.2050623379546,0.187895697890323,0.185854303448911,0.18767247492782,0.199996495535995,0.203817220307925,0.214006098411769,0.234365481741874,0.246610775204333,0.264018029545757,0.271095126803614,0.267671033465522,0.253407178706319,0.254218576807673,0.252996567627706,0.254745299975558,0.254354115158627,0.256787044850201,0.255786703087562,0.253712363459536,0.253402380073254,0.253549763923855,0.25274970773068,0.242237113044244,0.231245096925979,0.206222691775392,0.164235402535601,0.125293788121551,0.0847528641854409,0.0383869851804976,0.0164845705937869,0.0158480186558373,0.00697196692384524,-0.00305324645713075,-0.000812336163207444,0.0115469616783287,0.0546897938387852,0.126183344827848,0.175941402189063,0.209532933996078,0.236919805160036,0.245094558233662,0.253480937798021,0.253351947177659,0.251717021829219,0.253888241558295,0.255501814682947,0.255496989878998,0.256927966714574,0.25016579939087,0.235649303778164,0.223333145110669,0.19128392973667,0.141848617051197,0.0785018587799597,0.0212686275633159,-0.030592227734615,-0.0813586181502777,-0.122260636997426,-0.141614379380156,-0.142828085690358,-0.152472574226172,-0.159151673980869,-0.145740546479684,-0.0891114643321332,-0.00444357167101931,0.08341284041408,0.155430586245884,0.213800451624915,0.245179150554841,0.248260643127578,0.247755666882321,0.252456580910879,0.254181201182154,0.255446299353975,0.256510976503975,0.253763007592104,0.241451939664192,0.219954005308856,0.184135898332608,0.141608589119412,0.067659710890322,-0.00494029647699384,-0.052794282143443,-0.119921785126163,-0.191274389022142,-0.226344188967006,-0.220628105903394,-0.20450437573732,-0.203520569395914,-0.214069190591247,-0.208156099173761,-0.158704516177257,-0.0917583875553059,0.00441155577240891,0.0892611218208704,0.185082795033761,0.23836756082919,0.247545670487769,0.248169140891167,0.250002990659544,0.253184926238598,0.253142047556652,0.257408193204111,0.249000318724055,0.232331265948653,0.202203261351911,0.166693923814901,0.102638112743984,0.0355928355658323,-0.0452972460250917,-0.117525037028232,-0.204831832774514,-0.250383932088919,-0.240354039848725,-0.172825331085037,-0.11516148721474,-0.112077753252034,-0.14911262417552,-0.187417123423149,-0.188170396265833,-0.132056980498035,-0.0436688270522906,0.0432578462973819,0.139268802445425,0.224271977080393,0.235650764032586,0.252249499239254,0.248344667970019,0.25408047669043,0.253111930487869,0.257229934960157,0.245624390235826,0.230394880863725,0.201940411080941,0.153715334933881,0.0995287700032666,0.0276465744354153,-0.0748838338322226,-0.16108397663072,-0.22776536754145,-0.229634138335597,-0.157434591139848,-0.0357074798486435,0.0278379235380166,-0.00352685176203219,-0.0927153922984696,-0.174879431699255,-0.215236217034054,-0.169311139848494,-0.0852374057284945,0.0173219064311555,0.129269221275146,0.195193257031811,0.229414588743281,0.250571279608131,0.250528998417596,0.255695892734323,0.252965635959989,0.255726903904264,0.252324157759987,0.239167801823487,0.211673061487174,0.169516420831155,0.109700511704689,-0.00104712280353512,-0.0964936086290365,-0.184253952172104,-0.203058543938566,-0.148648566908601,-0.050526332506808,0.0767601291606717,0.105292005799424,0.0217866022862913,-0.0996042482925704,-0.21442532001642,-0.24974570155317,-0.20049818100304,-0.102395726819567,0.0164070233024084,0.137552949612923,0.204626274034428,0.230538816135423,0.240111000070648,0.251722814302052,0.253731019586483,0.255742709416119,0.255378150288079,0.252341972689804,0.243137034490361,0.229867847290119,0.175092320318738,0.0956956601821088,-0.0108473412633335,-0.115848836037186,-0.181441178070538,-0.16857912239579,-0.105163848616869,-0.0164236181029944,0.0794361953914044,0.049212031297245,-0.034601235896887,-0.156611942204061,-0.261453492873451,-0.28461967666486,-0.210752186483426,-0.0801604714297964,0.0793147053192474,0.199276212126519,0.237291128510861,0.23876380039207,0.2423465401899,0.250234314807469,0.254516118523791,0.25637318546547,0.254375668975803,0.254355166572895,0.24824938476535,0.230815716101757,0.185713551327953,0.0950012560352091,-0.0152250089168954,-0.114375487865041,-0.156244558668993,-0.143697904568998,-0.118239738902945,-0.0737931854664477,-0.0362817331710695,-0.0612547846130032,-0.134063744063221,-0.237541380168192,-0.309467793486868,-0.282547021226195,-0.18811407087868,-0.0224867013373989,0.158053194011559,0.253709527494873,0.265811994661925,0.256369140440963,0.247135019041203,0.255065439418134,0.2548854023798,0.256271272456747,0.256330694150014,0.253505826103563,0.250562112086927,0.233998228510943,0.191796786527462,0.11045209084453,-0.00646636891552966,-0.0933035600411067,-0.139692184219073,-0.139049048823881,-0.154525916779231,-0.166740656605808,-0.152710198544531,-0.171338233335847,-0.21437123023245,-0.295133558841514,-0.32604702019327,-0.27117372289116,-0.133267024460164,0.0496659747479797,0.201525292806903,0.265364124298339,0.282983184194867,0.271146811049398,0.253464861004196,0.25239630016816,0.254040871851574,0.253362053091995,0.252425289093955,0.255650470583807,0.250209289415726,0.232422041721935,0.208199856722864,0.147006741415149,0.0350043385647923,-0.0586300141892994,-0.117235610717305,-0.15101069391127,-0.18689254650225,-0.218195075705084,-0.200286205672999,-0.202244056754212,-0.221508635010522,-0.290099700968627,-0.30225202579845,-0.209184653835181,-0.0669474382750366,0.0879764393261232,0.207913414294379,0.265757142242543,0.287169460025923,0.274982797394264,0.258565041938775,0.254255916655875,0.253480654511099,0.256549236544002,0.252851614015465,0.253000614640577,0.247578191846256,0.243097295181652,0.235586558418594,0.203527074476789,0.104332866357936,0.000191013251896634,-0.0734945202440508,-0.136216926769606,-0.186346935319072,-0.204449140605222,-0.169253195752859,-0.152318924373301,-0.173245791344193,-0.242907224779813,-0.23143917009968,-0.137863968960305,-0.0195203470273177,0.0964432132034469,0.18541019353515,0.25460568571204,0.280249821662383,0.273341354168616,0.254261425108122,0.253113059276942,0.25457808697518,0.252892316609971,0.255422952249764,0.253347097821897,0.24772046596572,0.247425383084217,0.26475511818121,0.251273799802323,0.193996274900344,0.0946980404754442,-0.0095391030436106,-0.0931079335979199,-0.148032491855967,-0.131153965268702,-0.0773879600971535,-0.0519672864070148,-0.10978081098821,-0.188211092686209,-0.189187192740297,-0.0760967232828975,0.0214014164077035,0.0920705917872952,0.165090898086734,0.242456824481935,0.269726302051455,0.26839838761701,0.257359575445749,0.255110047213935,0.254430365436301,0.255582829095878,0.253287790671459,0.254288180835331,0.251064097044488,0.254266724457479,0.278523008142801,0.283263613922514,0.253258622821532,0.176218038025296,0.058294486244552,-0.0378979181051064,-0.0668444631410441,-0.0281447840237293,0.0324162215358366,0.0221409015921897,-0.0722388024720427,-0.149923814587087,-0.135569617072809,-0.0501044600640203,0.0382527952270522,0.0989482704316061,0.164800894706463,0.229808574034219,0.265443418021834,0.269351913802576,0.258125302461424,0.254601133359629,0.256312344668607,0.256141643565655,0.254151832696517,0.252194881997821,0.246606924836636,0.250505332094058,0.275198857995151,0.286693507986078,0.254149192026152,0.191364603348213,0.0990516609235789,0.0185556437972151,0.00751462189092115,0.0580476087895562,0.11654218527673,0.0646363325755524,-0.055413296617333,-0.119635848114759,-0.0923241844519674,-0.0292881424178394,0.034339549325606,0.105480328162837,0.17624469986237,0.232893859763412,0.25971960093928,0.267838788090827,0.257717063091185,0.25598279133743,0.253728503972255,0.255138968422783,0.254827729357621,0.250601161053851,0.239993771741178,0.247036613593888,0.270769182360555,0.278525899810299,0.239175222834912,0.162411582893432,0.0959632950415105,0.0517713405630339,0.0743667696555545,0.131701665959845,0.14713873813791,0.0689376280902101,-0.0415974843929843,-0.107029121532714,-0.0919393681314073,-0.0345364587629503,0.0252901454585694,0.101864136741986,0.17487871665812,0.218725909999041,0.25162797681422,0.263682724805787,0.259445905848578,0.255487466368066,0.254100238606161,0.253240326290006,0.255263011041264,0.250526117139886,0.236745701408198,0.233697605235205,0.244892882326878,0.235173404345918,0.185731758821098,0.143318773493913,0.0933943075529758,0.0666648814411101,0.108671151970929,0.121753388698067,0.102159122743745,0.02739086947922,-0.0630687124334232,-0.120117402250336,-0.121247931773803,-0.0583048886553093,0.00811774994558394,0.0971426773705192,0.168025892931414,0.213468109208807,0.251470268607625,0.25933423460688,0.257435743192648,0.255501745016834,0.253636813329982,0.256892651960482,0.25492989940056,0.248504210693361,0.241536817809914,0.226372386372426,0.224328946038518,0.182974376379057,0.126115711096045,0.0879181164526799,0.0487238812138708,0.0275515858689264,0.0402583504904397,0.0209319943290353,-0.0131375531197813,-0.070905662209943,-0.125329522083956,-0.165139242051915,-0.147212257306275,-0.0655824802589338,0.0100565300030629,0.108348744439375,0.179877944887942,0.229290556215416,0.253075317341518,0.254546157900485,0.255886092603393,0.256329595932824,0.255542496470752,0.255783072965816,0.255639795007688,0.248538624938973,0.245025271494326,0.225337165313649,0.196938909096139,0.160010213653209,0.10071378995409,0.0328865846170986,-0.0219772798971174,-0.0737713573884451,-0.10331681664148,-0.13345920067433,-0.144449309205592,-0.160907482587323,-0.183878507228675,-0.180993650976592,-0.134085685114647,-0.052184681853155,0.0542260675754799,0.133337547959554,0.196981708940597,0.237274580803614,0.255136979831898,0.261673295967355,0.256461880971287,0.255788234044106,0.256384503868021,0.255988952086688,0.255403126644489,0.254610862258204,0.246055484515414,0.229360438747441,0.202178717204684,0.157421310507587,0.0945266224781421,0.0224504983537874,-0.0525302788314875,-0.119183491581303,-0.195007515319076,-0.227602237603632,-0.22532006634169,-0.20541352498069,-0.189073691833116,-0.156031513148291,-0.0906783397952961,0.00612146133125929,0.104147096074225,0.159157896322091,0.215021117677861,0.243739378985336,0.25407387192823,0.257144943309024,0.253886117453738,0.256177042391747,0.25689972157694,0.253090331867717,0.256890544445246,0.253251265875888,0.250605371985294,0.244669726789382,0.225990358845177,0.193577823862884,0.14350246153806,0.0781694953308362,0.0116901414027587,-0.0719673425775136,-0.151307034178962,-0.185278254761874,-0.178933965382319,-0.152766607125311,-0.13000766173324,-0.076424430012897,-0.000718741340606841,0.0772671033790448,0.139965001248028,0.182315519203794,0.218342941444854,0.242258816727149,0.249618723311674,0.25308719376034,0.255702024271013,0.253668367960849,0.25532984483192,0.253504815229726,0.253574615491196,0.256596305121087,0.255713672069328,0.255074515000625,0.24870823079533,0.241245591136156,0.219084655731327,0.192879427535252,0.154346836228559,0.0956709537811476,0.0422085632170105,0.00701293885841346,0.0127183402315885,0.0261715601918021,0.0427719439418618,0.0639690794849061,0.0882879337176734,0.140032981912239,0.174840068285485,0.211239291592537,0.234309913490952,0.248571269527761,0.254593556078232,0.253704448680337,0.256062056590157,0.254954053480735,0.254347828111728,0.256098352049648,0.25556853102198,0.256456117838057,0.253167959006281,0.254147306514655,0.251525661439116,0.248379001565361,0.240930790542351,0.233251513371771,0.217173656998052,0.188519444345946,0.168113933778588,0.15405784967799,0.153169430145553,0.166363512956126,0.177665425544135,0.179783462934296,0.197359893420754,0.215291890408753,0.233628945649585,0.241808379876884,0.248985185206062,0.253050951452048,0.253297339471223,0.256108794940676,0.254839615987553,0.254969535260978,0.253385976882119,0.254479991578966,0.253281847800262,0.254070562336986,0.256135703622314,0.255847114307942,0.257205712112535,0.25424134384381,0.250451793298966,0.252917889636228,0.252801754506407,0.2497230976151,0.250903633648426,0.250921271090959,0.246052348431579,0.245365745626445,0.24807434952304,0.251766682891585,0.25053854652908,0.251218306308734,0.251911444437797,0.253621090026602,0.25525839968089,0.256798786277932,0.255141043727908,0.254207258089102,0.255060025185529,0.254813452337045,0.256505748539165,-0.245253323312881,-0.227152032686452,-0.227346948172662,-0.224838368758476,-0.225578444151454,-0.224664838905869,-0.227798851217519,-0.224918962518034,-0.225497745869728,-0.227043192403692,-0.228005023738083,-0.226916317627477,-0.228159025986756,-0.227576087968406,-0.225314143268305,-0.227699386840662,-0.225158113248432,-0.22540692414182,-0.226235118434675,-0.226115485813241,-0.225222137102602,-0.226517238848478,-0.227404248782434,-0.224844781459902,-0.226387806751229,-0.227856134263246,-0.226389498795376,-0.225444307420915,-0.225694288263021,-0.227857722334584,-0.227683377905542,-0.224448166222097,-0.224413579585851,-0.226411511480711,-0.228050003261376,-0.226480675177491,-0.2249557376971,-0.225326516706418,-0.224998757903478,-0.22531857133948,-0.22563472989142,-0.22817635872771,-0.224421362760224,-0.223243346497144,-0.226603932448287,-0.223562935260667,-0.226976032017203,-0.226263318662605,-0.230177367165646,-0.229323746696432,-0.226181242051037,-0.225975605632464,-0.227564107281881,-0.226237362356895,-0.225786318787739,-0.227232037473884,-0.225223504954169,-0.225383902253807,-0.226811289313431,-0.225280012659396,-0.22770203093567,-0.224814794889514,-0.227985696541448,-0.226377932591209,-0.224690378690743,-0.225291323480668,-0.229437231653594,-0.22599380752169,-0.224250674130072,-0.22628636952669,-0.2282157214337,-0.228019800636145,-0.233448150148187,-0.235622165422713,-0.234848687139307,-0.238366882692418,-0.237863544330356,-0.232876907845294,-0.23160720942796,-0.227424525873299,-0.228704555663618,-0.224742902938463,-0.227049102180198,-0.227480330597787,-0.224543191597024,-0.22647774686346,-0.227549001722536,-0.226941471639113,-0.225651044669393,-0.226085343754621,-0.227474714537675,-0.223781575098911,-0.229117176667904,-0.23292494371748,-0.229092231246265,-0.231697091530017,-0.230959748370387,-0.23169710233063,-0.238701695468276,-0.249555559875533,-0.26169406831706,-0.260306421325469,-0.266563280711733,-0.264177268647483,-0.261965554387541,-0.254375736626647,-0.243581430867918,-0.235428838205481,-0.230138423126571,-0.226188258762382,-0.225117609544503,-0.225449104296911,-0.224199561929735,-0.226573820136899,-0.224828604593871,-0.225596169625531,-0.224594868452613,-0.224368583172676,-0.225272900581613,-0.221106641820427,-0.221371238550038,-0.211723721518643,-0.197278746111882,-0.181860009622459,-0.167452736687771,-0.160510320396073,-0.159586179094103,-0.156493152050043,-0.150671956355329,-0.152077108848307,-0.172489836585647,-0.194134615976826,-0.215179893839213,-0.225594991189755,-0.231356428162117,-0.227192193960113,-0.224465200545416,-0.221271775493682,-0.224289973878959,-0.225635652396775,-0.227140574916041,-0.227884114533716,-0.226727974331587,-0.225377771356952,-0.226963786030815,-0.222991236352953,-0.212256415636568,-0.204332630833756,-0.182362967751328,-0.149153647520557,-0.107667217914036,-0.0736363381689784,-0.027271644746406,0.00108042596259261,0.00617689153099635,0.0158659015140213,0.0285360780556327,0.0365735026635092,0.0226896612450791,-0.0150944582234837,-0.083337601367639,-0.13042709118653,-0.176624002000082,-0.211425734851848,-0.224708039168455,-0.228748992941358,-0.227191663108177,-0.226282313097351,-0.225178148856502,-0.228083170698512,-0.226591374975452,-0.226635170943526,-0.221597559971269,-0.205073539353092,-0.192456277065647,-0.168811525821543,-0.122102553035152,-0.0630794827015318,-0.0176164726518005,0.0233574241550973,0.0582090500188566,0.0985581179704765,0.103846825165457,0.0957279596532895,0.110783033435718,0.126118179188344,0.123641813642438,0.0929695381416764,0.0332023285561629,-0.0407771443937184,-0.121719656346929,-0.194715814660833,-0.232211031761255,-0.239930558442605,-0.229891168307353,-0.229378637514389,-0.227647357178285,-0.223891090823211,-0.224080061898337,-0.224646829333766,-0.207505920629156,-0.180680235746642,-0.146314263690603,-0.105453214497293,-0.0341941470837466,0.0226415201156728,0.0532877468717121,0.0987480378293475,0.158346491855838,0.177479647286529,0.150892708146318,0.133703127098822,0.134287063467854,0.159071647385561,0.171132949981083,0.152112977241217,0.120156168253721,0.040432170407063,-0.0506396233578393,-0.158474662905186,-0.231083671005739,-0.247215197350514,-0.231470631483621,-0.227946681746394,-0.224090562554129,-0.227366591754022,-0.226519019603378,-0.214878567274746,-0.195634662571476,-0.158938072728665,-0.118367192873445,-0.0584123322775759,0.00204775864591563,0.0672734836733216,0.112498691015347,0.175140806982452,0.207587014908225,0.193442490923891,0.140759175304848,0.0901660536250481,0.096260869080626,0.138525727286492,0.178134030875376,0.191436978235647,0.165433282373631,0.102025421377686,0.00779357345641334,-0.107764103173455,-0.202378645873736,-0.23122375352505,-0.237309303113005,-0.226691546283982,-0.226367214561997,-0.225205972646521,-0.226402139670962,-0.212189377287684,-0.190694800400175,-0.155580055552418,-0.10534013058997,-0.0507689201573944,0.0129465275079039,0.086427316795952,0.140513576354178,0.18734647069455,0.187463523944738,0.142348159176902,0.0644240483483756,0.028152771023906,0.0539732995674762,0.129541744048526,0.18463951067025,0.216468604184715,0.201290125931571,0.146226326844321,0.0466687762896023,-0.0669539708088501,-0.155989413581521,-0.21263152115103,-0.232678567666504,-0.224877923164345,-0.22712238659698,-0.227582549736611,-0.225975294974263,-0.218967282520918,-0.197938904489789,-0.167106153455289,-0.127590271567439,-0.0659293826879976,0.0177877245554165,0.0804287508546183,0.130830458480961,0.136190505126631,0.105579682984973,0.052944159216005,-0.0272687128362034,-0.0298626921403555,0.0365671886540318,0.128308462590801,0.20408106003557,0.229184521591358,0.219767292911126,0.165008994183627,0.0682495706370964,-0.0551692162667575,-0.135794863462977,-0.19316935968177,-0.219511480535596,-0.22647501054182,-0.224809244860487,-0.225224076631786,-0.225260411008826,-0.216987604279603,-0.20967756299256,-0.191683332910957,-0.138645253023263,-0.0626857090394378,0.0176959180762897,0.084878505369289,0.119176863159731,0.103602467082659,0.0644160318692525,0.0153983685818272,-0.0488616084400831,-0.021940863643395,0.032006241788677,0.130343077863206,0.204004300122316,0.230077713041078,0.205179224065134,0.141822755163942,0.0294140857451906,-0.0813498401421948,-0.139099953118583,-0.191489872172734,-0.220060479159149,-0.22261208318413,-0.225768168028474,-0.225220141301629,-0.223934956641421,-0.220811098282557,-0.217740649052193,-0.201438589589351,-0.151310489908066,-0.0569974774087411,0.0267788327024149,0.0828815299840054,0.10643836717826,0.0938766950102034,0.0625280844884168,0.0289291507523235,-0.00132379648959444,0.00618826878647948,0.0652434857652121,0.152254809380819,0.20989976961239,0.200617952433756,0.172025752323163,0.093197413554898,-0.031932906992295,-0.113865920509216,-0.151536736944131,-0.197387396180515,-0.21832656757692,-0.222685641741259,-0.228031845670436,-0.228077456329645,-0.226691388832329,-0.22384692800063,-0.221815267618323,-0.199221658534704,-0.133298134390264,-0.0499998823334501,0.041050310526484,0.0898519397736884,0.108340264309313,0.0839449836420275,0.0715500954321815,0.0634041112586665,0.0396532201022977,0.0492245770610833,0.0982799359966863,0.17032331869873,0.204580164550564,0.187013161418837,0.134811213525861,0.0490186552108062,-0.0454444606889482,-0.121731687187303,-0.168804866002374,-0.204839776139329,-0.222022613269426,-0.223340763348384,-0.224461373665944,-0.227867235078103,-0.22638735403385,-0.226246211430388,-0.223390856951158,-0.192758791240922,-0.126716552481537,-0.0551604685215168,0.0382988431659364,0.0878446240908811,0.0946594022421421,0.0811579984958234,0.0666794711722374,0.0704405904191575,0.0426382734937514,0.0464086286679556,0.0861688891556447,0.151391339094484,0.186608580705315,0.154544708288233,0.105704746169287,0.0368757315525571,-0.0501943889526409,-0.127574805862392,-0.180758154662302,-0.213291685035242,-0.230443295388008,-0.227860193041892,-0.224282919188465,-0.225737707939358,-0.227397993432136,-0.224105880315317,-0.218452414548193,-0.192796483412718,-0.133193353150488,-0.0775107526376932,-0.0030134448750991,0.0542158762807528,0.0559498409668455,0.0517277022890192,0.0584381138124469,0.0458022132178504,0.0040147438555179,0.00456035068472722,0.0335918049719685,0.106001545335993,0.132850022226104,0.11419731160775,0.0969013550333575,0.0481908362853448,-0.0376909198251571,-0.126296407786636,-0.184824276560255,-0.217570791784215,-0.227529984124266,-0.224336440960071,-0.224477162279291,-0.226904106303676,-0.22412662335315,-0.224103352434408,-0.215625630726945,-0.191088445960306,-0.142543501942899,-0.100286586360546,-0.0646200130344415,-0.0207167164635268,0.00608714289459411,0.0195643665451994,0.0188207019200322,-0.00716952088706614,-0.0541571851154179,-0.0659891761559577,-0.0138887719370558,0.0681171103531303,0.102536124208741,0.0831846887132631,0.0741881183345864,0.0486512370929739,-0.0290140093921174,-0.131042514981216,-0.185703033752245,-0.22480449123672,-0.232007036371859,-0.227011509292734,-0.225116901107331,-0.223826607333838,-0.226655276403919,-0.224396357129439,-0.219100334244517,-0.188116684584419,-0.146720001970232,-0.130525275167458,-0.110503787889124,-0.0844132708877263,-0.0569389901317529,-0.0337526038066697,-0.0478038433564407,-0.0850126165416234,-0.126637098208081,-0.10778348230907,-0.0236883164353632,0.0578190837407784,0.0801315332442135,0.0731122233512895,0.0547617853202945,0.0230438212838587,-0.0611155630426741,-0.144227938036805,-0.206355254189261,-0.232986086824657,-0.230766628005358,-0.227416900471726,-0.225406130998314,-0.227536828418673,-0.226137974710214,-0.223522484302914,-0.213127886057288,-0.183928994822188,-0.145963769614357,-0.138694485406283,-0.119976257534976,-0.10559098003829,-0.0884001999303799,-0.0802184587572835,-0.0936678453976232,-0.132429554530319,-0.165430428479186,-0.119851872326172,-0.00718330679192399,0.061763480222765,0.0789386413666881,0.0627945345881433,0.0472949375910305,-0.0206828447623871,-0.0900416328061242,-0.170984447435954,-0.223957891094302,-0.239052017968999,-0.23163285700835,-0.224802291876508,-0.225125591124524,-0.227959395166079,-0.227336447359708,-0.219154901832839,-0.210108535003776,-0.181225665818125,-0.149441113523317,-0.135894323581331,-0.106932745647003,-0.0826131410029298,-0.0666229205091618,-0.08173268994871,-0.114971724223548,-0.149123968196384,-0.16365788330392,-0.0854538419660007,0.00997390360300473,0.076893754157425,0.0974714134942356,0.0690508922756854,0.0332043803255065,-0.0489099957555172,-0.121767541632235,-0.17972132257246,-0.228024075293879,-0.238500042028095,-0.230906145719496,-0.225218788376959,-0.224374615321528,-0.227052218954538,-0.225981917942969,-0.218481873931268,-0.205216203805696,-0.181028175109265,-0.145570114677123,-0.113438821154521,-0.0688765228905135,-0.0505650603737136,-0.0320100420024779,-0.0368237918475229,-0.0853267385911841,-0.0960855229784363,-0.0902325812931748,-0.0186230344151321,0.0709544295593927,0.116842011574845,0.129251569786372,0.0839860200269904,0.0279400926228574,-0.0642030989325903,-0.142051139425059,-0.197498425413062,-0.235853705351599,-0.238236369803634,-0.227138032149104,-0.227893984976522,-0.228213048058196,-0.227951569644783,-0.225455890727516,-0.219228691308733,-0.208806630576697,-0.178256745312892,-0.142575577984583,-0.085635938677225,-0.0241219395516719,0.00482340697431553,0.0254527760050185,0.0377051880571714,0.0162319163870243,0.0154487460396049,0.0371408939026724,0.0808734070991559,0.133662899405984,0.158999850770919,0.143456724466743,0.072051139076651,-0.000303410992259941,-0.0989390509503218,-0.171674811611608,-0.219208211705998,-0.237462679414423,-0.231274500267969,-0.225787680160382,-0.227115239762361,-0.226620811058653,-0.224170450734559,-0.224596179021095,-0.218072320298864,-0.214747216866756,-0.189033834522943,-0.142491499520595,-0.0844275008219342,-0.0195386413919963,0.0429677305731216,0.0927502734920558,0.134527052759608,0.139237252027987,0.147057749043325,0.147477209944403,0.152233631677634,0.168486472584733,0.157949224501638,0.109903531485867,0.0269863473017372,-0.0722831096936573,-0.145433028851545,-0.198132978222627,-0.224998487661864,-0.23464630248235,-0.235578476801862,-0.228234955672034,-0.227456523382441,-0.228134214290363,-0.228032392412932,-0.225979697307367,-0.221871759093656,-0.216958276287089,-0.197253102901118,-0.168795223493104,-0.112505438494178,-0.0448711838655384,0.0299934340582686,0.100958177429893,0.149556850736177,0.188164426126347,0.196544291377849,0.182360788360787,0.163414463170848,0.139385474600519,0.100895243144412,0.0389153011847315,-0.0486031380793475,-0.130338319406141,-0.175448439444223,-0.210153576888119,-0.22529912923183,-0.227614978556658,-0.229142397384893,-0.223601816151305,-0.227883598331835,-0.226923734770473,-0.227876110887622,-0.224003321051003,-0.223753037649304,-0.221051028782392,-0.213397554371558,-0.197420675113421,-0.163408462897904,-0.121678453082473,-0.069584293668029,-0.0111564027907536,0.0486240617753504,0.0870118531360791,0.106689055456979,0.0997577266135725,0.0843622038882391,0.054924751777149,0.00724882341155689,-0.0533195179319299,-0.114488362376337,-0.158088044539769,-0.182528526190737,-0.201012637218838,-0.219756313602999,-0.2272025364121,-0.227272698490385,-0.226389377599243,-0.227118489695459,-0.226648422352497,-0.223832515276524,-0.226030443459581,-0.22394231904678,-0.224682204149085,-0.224649127273394,-0.218023827408158,-0.206534263668541,-0.185000568128533,-0.160305736688858,-0.131205442238846,-0.090625254267111,-0.0618129334525305,-0.0383893825055804,-0.0314547023665176,-0.038122129990299,-0.0563762129948116,-0.0781171757385792,-0.102977454718562,-0.144848561065759,-0.177736974081847,-0.200394353882101,-0.212465251270298,-0.224626229651542,-0.223858608551816,-0.225346894843614,-0.226848481559747,-0.22796406624117,-0.22564874830236,-0.225087618938165,-0.223903862539116,-0.22434838687242,-0.223821095289436,-0.225416196891523,-0.222605466366552,-0.216741092499652,-0.202485727186515,-0.195908679974753,-0.176904954710779,-0.153970500287689,-0.139827619663236,-0.125370689677661,-0.12168020125861,-0.129591355091882,-0.140110096014761,-0.155500799878639,-0.168269021804533,-0.193998042336742,-0.212712521134401,-0.218529482020032,-0.222102753291784,-0.223982834432807,-0.226245998918808,-0.224258922526373,-0.22799673392552,-0.227414117961984,-0.226140227453034,-0.22700899680689,-0.227189179013999,-0.224219946179247,-0.225368795932415,-0.227459734202525,-0.225087483945356,-0.223872345557713,-0.224608439573757,-0.225102458842191,-0.221995691866845,-0.218262874973728,-0.219719583202213,-0.216222591616388,-0.210450390040876,-0.211112341398151,-0.21822133601919,-0.216255322510545,-0.219422294819589,-0.224372792365776,-0.227921132099405,-0.225622645324876,-0.227137935733841,-0.226784912436673,-0.226173441474548,-0.223950531908091,-0.225855713721297,-0.226298385221207,-0.225431985475419,0.211376739212972,0.190956618892212,0.192073561128328,0.189752841157784,0.193124771718874,0.191720764346395,0.19180108716001,0.189737949445298,0.192617716989599,0.190340136053062,0.192758576868862,0.192323489305048,0.19175487222482,0.191821693580854,0.193997417625034,0.193574678428396,0.191112230774035,0.192464684694295,0.192910692297976,0.193610297271456,0.192428416980501,0.191372479405792,0.190315814274496,0.190697993573047,0.191616736066705,0.189969189638689,0.192522061752363,0.189647209365046,0.190672315817908,0.191646460324517,0.193369684086643,0.190931863386772,0.191600065271706,0.192584150793193,0.191346958786769,0.190675386475495,0.192074989909783,0.193412197832266,0.190013996232155,0.188935091771323,0.192267023245378,0.193997316521667,0.192361108355513,0.190730073593852,0.192929584864739,0.192001962364315,0.190985353593663,0.193405058487582,0.193228835565156,0.19137210773004,0.191623502984466,0.191286830710851,0.192685252555388,0.191722039853244,0.191638460142263,0.193036381003751,0.18999063841973,0.191406205396634,0.193930561523608,0.192495919323147,0.192822698842189,0.19025504927851,0.190816432539755,0.189059601267769,0.18921211871339,0.190406369307785,0.190790570599119,0.195377695021143,0.194027095761874,0.193600738490747,0.199132908428817,0.199561069436755,0.200239611960609,0.197233630777366,0.200316603001538,0.20436774161441,0.204085123122805,0.199924249358307,0.199246869223325,0.193504707763323,0.191369923360205,0.19208651593103,0.191077404616379,0.190039624928909,0.190176645451768,0.191490789581076,0.193339153979379,0.189777727623533,0.190245679108224,0.192780484106584,0.187969949828675,0.18930786555246,0.19140092300182,0.192586860716157,0.193066819452992,0.188722479967347,0.189311146487856,0.189800639105911,0.19790297914792,0.203405655071743,0.207345916637818,0.207655947541885,0.212506672876105,0.219878737729321,0.222324655907537,0.216198884660989,0.2051395122664,0.200847499559866,0.198782531087543,0.19222378772798,0.193230417877179,0.190965639627252,0.191966194194567,0.191732812953049,0.191689429204459,0.189720093295878,0.19337252780014,0.191232025092381,0.186963655626947,0.185030442231595,0.180867719785216,0.167307009039953,0.142898674865961,0.125070713973166,0.0985228554003635,0.0841968735696082,0.0612254019763734,0.0434955581570995,0.0266752207055244,0.0397626477000225,0.0718849785294812,0.0989215771645326,0.135260755928204,0.167495652250698,0.186677380313081,0.1933320389911,0.195392164036093,0.188556592505033,0.190746004171018,0.191165575441317,0.191960452405092,0.189715966290561,0.19277989888694,0.189897321494523,0.189448312896618,0.188245594811821,0.179325027630761,0.161298034014847,0.1392012069191,0.105567810165577,0.0616947622829411,0.0172775709596243,-0.0304423761642162,-0.0634883160721029,-0.0927621828894026,-0.112639099668093,-0.127304905501623,-0.133417372187226,-0.103093285095934,-0.0448445736319653,0.0188590225854851,0.0797837725549723,0.138763567787626,0.179945247574827,0.199073956276115,0.201832014129763,0.190986090367871,0.191455741939623,0.194638067633734,0.192051170486308,0.193985671436195,0.193640747299655,0.187449717394686,0.170926089767377,0.158121438519759,0.133208845388799,0.0866884181793519,0.0400992749025909,-0.0112522509917028,-0.0528478291627962,-0.0829621823598342,-0.111377833083986,-0.119030706118131,-0.120708630197957,-0.142276854234958,-0.149634713309741,-0.140582953693757,-0.118087635693224,-0.0725421765169563,-0.00363369471249719,0.0752436635685253,0.158945717205288,0.209124770170646,0.219375959424556,0.200740921731761,0.193455134014899,0.192510920722827,0.191960173587066,0.189674287113757,0.19319252616835,0.179376998125176,0.153348998315824,0.126837038318557,0.0959435871750499,0.04442314086109,0.0036391677248933,-0.0325400723188811,-0.066700321641277,-0.108086623773014,-0.122238416285523,-0.109746441621144,-0.101887182666281,-0.106163713782093,-0.124072198213368,-0.141598327306264,-0.129786458689949,-0.123547407704084,-0.0714479064308014,0.00809733708596318,0.109494798755845,0.203045472215682,0.229487823496787,0.205042276336029,0.190979289974906,0.191799500273419,0.19203554229273,0.192416174137837,0.183868740026604,0.173388540546854,0.147331398434616,0.115927648623182,0.0857819899064975,0.0358317478743018,-0.00543434377822368,-0.0391577928548867,-0.0735405199225577,-0.090709127010244,-0.0912815766950658,-0.06338270099956,-0.0472211191698228,-0.0585790801866978,-0.100869290777259,-0.13953761624861,-0.149763415160803,-0.157902241268943,-0.131298200197008,-0.0539779722652546,0.0541719432685844,0.160947825389341,0.206825116354603,0.207155215217693,0.193747503551903,0.190942596755309,0.1923177152639,0.192893228364068,0.182829933622137,0.171838057565527,0.148785384398385,0.121440467131913,0.0852068219238166,0.0371804852185919,-0.0035975103770267,-0.0314742789902812,-0.0427020052407932,-0.0537423777962825,-0.0476642339180733,-0.0251308822162112,-0.0189881914393202,-0.0579061539037198,-0.102301253446981,-0.13733156691511,-0.142847184169666,-0.162591516136242,-0.151642059440313,-0.106423944900634,-0.0102577074109675,0.0949237619248666,0.178150441121704,0.200690102347897,0.19129781068017,0.193379378235397,0.190175940303664,0.192241768174031,0.183762016980258,0.172714011409259,0.157741481210938,0.135350103698965,0.0776268068538691,0.0314252509746607,0.00224936778752368,-0.0157672511691063,-0.0115222434413189,-0.0146215778063426,-0.0132171011100581,-0.00455931978591093,-0.0158487170502187,-0.0517680196949194,-0.0893895662240696,-0.100806278771198,-0.115192460727137,-0.140203402075352,-0.157300704054401,-0.132062011452618,-0.0532024426208479,0.0445267145399354,0.155625309403964,0.192846950528807,0.190347437568499,0.190162102351801,0.192875424783138,0.191331532637261,0.189348848005577,0.181203754128917,0.165195618078923,0.126888178335952,0.0629839427646553,0.00521889590198811,-0.022559060157645,-0.0317868899883668,-0.0263189482835942,-0.0271476582283464,-0.0259524644341603,-0.0145761632402971,-0.00635838835050045,-0.0139550290403686,-0.0352389647113269,-0.0513569251397548,-0.0643487920965194,-0.0975045382813026,-0.140207984220457,-0.127063870935191,-0.0660440903853855,0.0225510316727779,0.134972857718873,0.192692762565702,0.192387799528502,0.191385049682348,0.192885914001338,0.192388545512498,0.190184817301522,0.183540372617822,0.17106270924511,0.114099801670791,0.0272182966464242,-0.0316832680916774,-0.0579608297394511,-0.0750403457835295,-0.0817240596242182,-0.0671244688659284,-0.035871707683814,-0.00376198324628943,0.025190003001562,0.0239744012763939,0.0140385641950183,0.00959886182146498,-0.00696804818661996,-0.0694660217780227,-0.114879847168911,-0.112059979758473,-0.0656240916577673,0.00678569425000201,0.126125029823196,0.187624026299794,0.193031807762141,0.190890312337687,0.190408285824121,0.190696393116811,0.190295928565151,0.189395563082935,0.161074584878546,0.0725707920306644,-0.00637472687835304,-0.0779438548136895,-0.105289132195447,-0.109213261343407,-0.0914986732426904,-0.0502589871200436,-0.0132044315746917,0.0362205435345699,0.064175364754417,0.0571833905365715,0.0439492074298814,0.0253005761298749,-0.00639212398955878,-0.0727144672774625,-0.113017154774187,-0.11582199567735,-0.0654090386518037,0.0138458603961082,0.126182073597534,0.190073398663423,0.1913463186743,0.192319908037846,0.19202194780014,0.189910910305634,0.190802584587005,0.188761395116555,0.150609740898874,0.0411834673867,-0.0490264266902286,-0.112807114605063,-0.128351431421992,-0.105624513165353,-0.0511612936598455,0.00459749131922937,0.0517381855185276,0.109362051977842,0.126688906401667,0.111233755438959,0.070446003695961,0.0275047674317831,-0.0302518830420209,-0.100068425743772,-0.138931687363543,-0.123775478649064,-0.0676984000286072,0.0198197715423638,0.127684079009774,0.194265736367309,0.190288754804002,0.193757768574111,0.192433776697679,0.19148963584461,0.191390271534333,0.186255872616694,0.137893359306207,0.0145920069654394,-0.0706504987376931,-0.113108991898509,-0.114322530801515,-0.0560552776360054,0.0271860042375522,0.0796065608194865,0.140724662996976,0.200057271499885,0.202542847616018,0.179548501857733,0.112926636209911,0.040629797433362,-0.0506843682261182,-0.141435914633072,-0.176584359103727,-0.136565524271655,-0.0598921374581281,0.0399889556932499,0.131855106060358,0.192474183133295,0.19105083610958,0.192227989954558,0.191484486728745,0.193451821598493,0.191277844185888,0.185770794531345,0.124533253852629,0.000734852994940121,-0.0778028095079061,-0.0963885705154345,-0.0740560669676432,0.000243906022982133,0.0838285067075785,0.164332902561634,0.226815779533557,0.270010866670775,0.270581670100529,0.226956352005679,0.136338959643703,0.0371634222551052,-0.0731559837045746,-0.155779305784828,-0.192490306115636,-0.140254539308058,-0.0440686031863099,0.0613856246923375,0.148182793480991,0.194701032743559,0.190783715325321,0.190407027442036,0.189677859935136,0.192488919652594,0.188841994920022,0.182663435916137,0.117507693692722,0.00380194830443726,-0.0554220624082838,-0.0784861125818866,-0.0426585027849902,0.0329208607776752,0.125818504107398,0.206923852277074,0.264256972193874,0.297522702400495,0.286625441466075,0.201901076011421,0.107083264632446,-9.33185320876102E-05,-0.100261053215511,-0.162961984760714,-0.177936644691139,-0.100603452114691,-0.00385978268936158,0.105994290060114,0.171514672169265,0.195747710278523,0.192815745817331,0.192445775316177,0.191395434509695,0.192914468347483,0.188482691796114,0.177030765308233,0.11022127293201,0.00138629525782935,-0.0430519603934726,-0.0611684280896086,-0.0429217007903603,0.0187131626557834,0.115495535089441,0.193193295258719,0.250693457062044,0.2697425743362,0.233578011515849,0.129488802558489,0.0374468079788216,-0.0646840694674652,-0.123210586177569,-0.167776747970593,-0.13177372232463,-0.0586505757049059,0.045476120296229,0.15104191695603,0.186369340849979,0.196179160242687,0.190845148513915,0.189810284391374,0.190523873150648,0.193792773473656,0.1820691547408,0.168055509916036,0.108596045066924,0.0106324565506007,-0.0388582826643662,-0.0673512334410965,-0.0666201097631802,-0.0318398913860664,0.0429066792377304,0.132879514115863,0.1754131680724,0.185229462391119,0.120832338702195,0.0223112757210665,-0.0632725387620703,-0.122147854001544,-0.143616480943382,-0.143912543572236,-0.0801930511628531,0.00188343168621426,0.101924081364356,0.17991858098374,0.191691373495034,0.194611933299885,0.193081256952304,0.193160677077153,0.193452357347644,0.193991631465046,0.184020681239245,0.165146127739084,0.112174337548933,0.0163560179596968,-0.049574967267763,-0.083539752518648,-0.100677147910686,-0.0933754393270544,-0.0524696216828657,0.00989208190194587,0.0404904837767583,0.0426617865056804,-0.0199992851771773,-0.0937145861793904,-0.138411220061811,-0.166902456720407,-0.152293545066331,-0.101248467340117,-0.0225937291723313,0.0710232778241465,0.152772538184715,0.202425351094277,0.200770664934371,0.191658523056633,0.193902213018078,0.189706882308061,0.190304142401147,0.194241610115616,0.181147763435551,0.170486958762363,0.125532702342737,0.0469691407396038,-0.0384735436806905,-0.0954989516843747,-0.134494273201816,-0.141626767584266,-0.135101171708678,-0.102728127882653,-0.0877709083487244,-0.101614668941776,-0.131935271097638,-0.164770154983886,-0.176810808489189,-0.15752768455698,-0.108929605210212,-0.0376189148755359,0.0654885399446762,0.145247708815777,0.195767621977864,0.208261370089179,0.198536766177004,0.193447294324724,0.193210311125407,0.193852406841296,0.190065346682646,0.193702922239887,0.183032648366786,0.175588114059319,0.144042967051678,0.0814753544046421,-0.00139109155387151,-0.0744536490283848,-0.134029180563674,-0.167276224457686,-0.189756157335453,-0.181551463188692,-0.172308035484413,-0.172423399764766,-0.170918277062902,-0.165655249736766,-0.141598606487833,-0.0872865670192202,-0.00914302272065053,0.0778760533549558,0.149307281505088,0.192433203765715,0.206854097023298,0.200422778083132,0.196849111542344,0.195310286340965,0.1932615451132,0.193956616294115,0.19309573503792,0.192092022458011,0.19065333197705,0.181765276217007,0.160319311434642,0.126703658130503,0.0699683349088182,-0.00391522750540356,-0.0648406194726961,-0.118830548238347,-0.153363367226209,-0.170181604869687,-0.162667928921258,-0.144258848464686,-0.117581061229473,-0.0802952197822471,-0.0262340581408038,0.0390168512803483,0.104815669567177,0.172955508820587,0.186503881409522,0.204100643845362,0.203557185704469,0.200391643524478,0.192016464101546,0.192715628048073,0.19367851733477,0.192155700885965,0.190155567478549,0.190977772292167,0.192285546488775,0.18720487629814,0.178813551500847,0.163836667642524,0.141095076001166,0.115204839353709,0.083800305593727,0.0547071209249834,0.0338275017838938,0.0268609255680602,0.0214933186801072,0.0325402633376187,0.0441080427049144,0.0716357170122551,0.120300989139315,0.157929885938373,0.184319259148609,0.195929237863282,0.189976026021714,0.190508616801485,0.194147516727226,0.194115549685509,0.193271438806481,0.189742283730752,0.192374222173489,0.191115787019391,0.193639820524704,0.190874702718397,0.190780923181332,0.189979326857971,0.188420567299423,0.188862104209788,0.185496002893743,0.175500415925718,0.170739045664766,0.167673056488721,0.165228565451734,0.159751562216329,0.160944732423392,0.150858241792798,0.149923071573361,0.159533741993387,0.163182760923622,0.174494064559726,0.193150842752892,0.193875484581987,0.188934883167417,0.193975734996147,0.194238113329692,0.194365987877407,0.192589459200002,0.190605576342029,0.192482496668697,0.190397611431923,0.190912143262471,0.193975121316328,0.190844834965846,0.191618869534918,0.192711088335319,0.19030741798425,0.189984151172986,0.182095265760009,0.179922507238508,0.1691335483708,0.16739141264187,0.16548330930939,0.161632792376542,0.156506349843723,0.166475721751225,0.168258636591989,0.173192826916715,0.18003945936405,0.19200305211328,0.194049167099781,0.193098839423787,0.189790182023124,0.190625267933247,0.192327111526956,0.191364163590253,0.193733005602724,0.193346340512113,0.19024321473449,0.192704778379246,0.192837190695658,0.193394054329135,0.190556269451831,0.189549150067192,0.191774022402324,0.188735553964435,0.192168445044528,0.189194669084858,0.191989076174367,0.187306277155079,0.189673759339838,0.18471687442465,0.183043251451234,0.188122111175517,0.190440133293468,0.190041836778959,0.187931048765827,0.191982333668129,0.191319613526521,0.192629219299425,0.193097485000105,0.192413398629533,0.193083983888393,0.189982935711062,0.19344197523996,0.190396738575121,0.191738832437142,-0.176601949498975,-0.0227361520491762,-0.0231062208487255,-0.0219922041757333,-0.0197234004666089,-0.0233887924690883,-0.0212073916562458,-0.0209133565486439,-0.0215461048425345,-0.0198855213799973,-0.0232220754289701,-0.019868885842713,-0.0227115050914472,-0.0221709037307518,-0.0227920580390082,-0.0227543374084457,-0.0219750026941199,-0.0228492220652612,-0.0232751022199016,-0.0238965150240291,-0.021527968749624,-0.0214142339622662,-0.0231402616683609,-0.0217998265330163,-0.0205080983604623,-0.0213421202651624,-0.0235301187805809,-0.0219386117336698,-0.0220072493917789,-0.0225033742215375,-0.0200580405886317,-0.0199745049076137,-0.0209703881547753,-0.0224608182771986,-0.019647231054273,-0.020012307258874,-0.0212129537179633,-0.0223391938026685,-0.0202725081243333,-0.0151065469737962,-0.0206163200633342,-0.0198417780961696,-0.0194820639712451,-0.0191396412034194,-0.0186049435215846,-0.0221759223641521,-0.0225938008640991,-0.023944437937248,-0.0230216143588286,-0.0229164315306041,-0.0237096655212321,-0.0227251357101556,-0.0205387480493915,-0.0224456271035589,-0.0209003610791727,-0.019997479034346,-0.0198398183472656,-0.0227120301497083,-0.0235274009717256,-0.0220072685504041,-0.0200099067447529,-0.0204125440447281,-0.0203250156721677,-0.0213703627557939,-0.0190433690636557,-0.0191340209963103,-0.0109346629996517,-0.0092526268532027,-0.011712579199048,-0.00674584160611314,-0.00436121448150579,-0.00357003960294524,-0.00753531839809324,-0.0160163781083042,-0.0181952062238959,-0.0181270441166544,-0.0186428638844444,-0.0232642828080576,-0.0255793904751503,-0.0257923506161113,-0.0237808330206672,-0.0198412140451509,-0.0220421081311937,-0.0211233551751627,-0.0232903359204838,-0.020065667845874,-0.0221980549048466,-0.0236067533391949,-0.0227886454240947,-0.0211204101599736,-0.0251408573344425,-0.0209366079366748,-0.0190269480232966,-0.0167427418227105,-0.00659800648565951,-0.000424702842544996,0.00203285418648008,0.0056344887097303,0.00244680553755687,0.000377363506965769,-0.00346367308970615,-0.00446356297535145,-0.0139451281884223,-0.0230946830521157,-0.0243122514734846,-0.0243462172858493,-0.028090763083793,-0.0252085481633501,-0.0195953244388214,-0.0213282894541308,-0.0188835270588604,-0.0218096783005658,-0.0229237521831962,-0.0232862199414323,-0.0199425075848265,-0.0196180984845175,-0.0215290582268788,-0.0220527858503021,-0.0270993626585979,-0.0294621769791058,-0.0300249759670515,-0.0258966042646509,-0.0134281318750038,-0.00569519521924397,-0.0131757442580782,-0.0162476068539766,-0.0259172384079832,-0.0346600543881839,-0.0383400735717323,-0.0334278793082825,-0.0278955834713457,-0.0130084646505484,-0.00881825523060582,0.0089185645020084,-0.00163611868977659,-0.00354211365534256,-0.00628722264739496,-0.0120455300155233,-0.0145874777944986,-0.0204290381845417,-0.0196622937880692,-0.0216673097016377,-0.019563463791842,-0.0234864344489225,-0.0211580503103563,-0.0225632251938362,-0.0298241681384342,-0.0293310100084191,-0.0264497319699707,-0.0286656716622968,-0.0260489089549901,-0.0324319739467447,-0.0239055445997079,-0.0293196323798948,-0.0295010135698936,-0.0393232866554542,-0.0557619445400146,-0.0358752553618299,-0.0155344824542885,0.00129704019859545,0.0127023897253792,0.0216700391126192,0.024112863420728,0.0245841264239704,0.00668780773247975,-0.00240996401633032,-0.0103974419496637,-0.0209058737533183,-0.020986964460252,-0.0235431900193647,-0.0210373773409023,-0.0217773134939488,-0.0240774466097918,-0.0236721570825811,-0.0360793039925987,-0.0322675816377337,-0.0373284257573247,-0.0368212806859732,-0.0192494497991705,-0.0185429043953726,-0.0135030645745949,-0.0220773904454651,-0.0480750054248627,-0.0535425280761345,-0.0560886564935068,-0.0373785932971665,-0.0160591819952346,-0.00128111584724001,0.0102858171004984,0.0162234592253,0.00686510672227867,0.010385803225691,0.00873257191329111,0.0104281542468839,-0.00756273014375941,-0.012931194009154,-0.02014517396692,-0.0220639778733368,-0.0208028775716484,-0.0192817634721674,-0.0182725063820459,-0.032482972493773,-0.0383882520702223,-0.0422916139456003,-0.0401714176123667,-0.0351154704801496,-0.0257585071679535,-0.0302921959442609,-0.0277503365652538,-0.0425585255295051,-0.0510455421324276,-0.0672682029620131,-0.0601217941416698,-0.0437982147997641,-0.0325324853240793,-0.020688623230939,-0.0201932454442615,-0.0194984709225061,-0.0193576573125375,-0.0167365117295311,-0.00284777000648873,0.00808981130711077,-0.00318774740798465,-0.0158863357491822,-0.0238799861014204,-0.0199067776221522,-0.0210907978295162,-0.0161369532955838,-0.0204605658421594,-0.0243875700273561,-0.0321588577078186,-0.0292522496607695,-0.0277271074388265,-0.0288749758606672,-0.0271244104517769,-0.0225856010976281,-0.0277790817586019,-0.0417894030358289,-0.0576836526156429,-0.0777443388083975,-0.0712658044300496,-0.0398941782460666,-0.0390004209764545,-0.0317976397895018,-0.0413330932286366,-0.0353709830996411,-0.0258245327429738,-0.0228809987448727,-0.0129131769310663,-0.00403524295037118,-0.00702123974169203,-0.0138585005741104,-0.0217000157261983,-0.0222444419446336,-0.0207605786427922,-0.0193907899636217,-0.023779443892113,-0.0314749222333747,-0.0326884982929057,-0.0195107358691457,-0.0204906924449382,-0.0102228663790283,-0.0105563486109155,-0.012237974440649,-0.0264757323796259,-0.0446461600597373,-0.0602021374121099,-0.0817189470867127,-0.0621194469077288,-0.0385626014211837,-0.0359241753794354,-0.0410565045188904,-0.0369632706947142,-0.0379429863775882,-0.0282061802367442,-0.0209663750710731,-0.0173467505881865,-0.00707457516825712,-0.00692413907866166,-0.0178155524222702,-0.0227725101926928,-0.020338530574929,-0.0215678812799728,-0.0250782270592406,-0.0280259018539255,-0.0276094495935942,-0.0282609177804387,-0.0184708890696849,-0.0218291410812179,0.00553471566181544,0.00559793611558894,0.00906512782630745,0.00180003575528389,-0.0316209618284685,-0.0553423211885382,-0.0753869859551461,-0.0437535995988545,-0.0343344671306412,-0.0470375201281873,-0.0381118900298129,-0.0299450944973934,-0.0265838308684726,-0.0217252320482573,-0.0198903574508651,-0.0243346936327232,-0.0164119185105445,-0.00264480551570459,-0.0189264245568379,-0.021915947332864,-0.0200680440740226,-0.0251185969015426,-0.023567673633276,-0.0224127546846683,-0.0274921424589983,-0.0165330602993159,-0.0174152766790356,-0.000928386088201377,0.0216064179988702,0.0211086664271564,0.0246699810223813,0.0120383839823825,-0.018286265780338,-0.0573330108823068,-0.0164262323633505,0.00114034256333841,-0.00908708032632599,-0.0302720239085003,-0.02297231896266,-0.023440627766534,-0.0206833810165274,-0.01882492085341,-0.020002519126709,-0.0268261642733259,-0.0226716531726645,-0.0107189135182679,-0.0200753899642794,-0.0211744425238703,-0.0201343307958461,-0.0222039815935252,-0.0227007837192088,-0.0212018050341725,-0.0204890938455453,-0.00721011407323687,0.00662578541149742,0.0184410764807903,0.0278371989123298,0.0301300440998537,0.0261813327212996,0.0122785297404953,-0.0246663190070482,-0.0197523363369172,0.0276219048967008,0.0342053420991797,0.0181348358769782,-0.0136961665785801,-0.0168774459471503,0.00533791922135731,-0.00485408081119802,-0.0203666092887971,-0.0283521466600173,-0.0298537138317942,-0.0295758804351652,-0.022974176494491,-0.0198269167548722,-0.0217237033779122,-0.0197407602334653,-0.0243023926057414,-0.0210820045333076,-0.0172516706373997,-0.0138938296176872,0.00650886026861659,0.0187192680021196,0.0281696648181046,0.0227856617122055,0.0305653486916058,0.0161336615969532,0.00637201300099674,-0.00516846367181384,0.0243877769432722,0.0621834454618723,0.0507996262414043,0.0253539514997107,-0.00733558803323682,0.00664198836877182,0.00960888558803096,-0.00236393079888853,-0.0227899781917376,-0.0292070840201259,-0.0162034437365296,-0.0232688750605136,-0.0235082289931172,-0.0221990763497798,-0.0228675950637515,-0.0235040136331194,-0.0217332117964972,-0.02083098415727,-0.019127555807253,-0.0108799175278351,0.0142998515818399,0.0134123934157911,0.0243863764350962,0.0225584256484564,0.0344813989543427,0.0239912138567004,0.024941838608032,0.0290678585877493,0.0602611761409406,0.0695699149867204,0.045530543554081,0.0104810533352538,-0.00445876051892733,0.0061960573520064,0.000448297141199208,-0.00986255036971227,-0.0101095177871281,-0.0173908062917132,-0.00693393086158271,-0.0128548840309599,-0.0184813268326772,-0.0203559807257999,-0.0218967563529186,-0.0194592601820968,-0.0217678179257444,-0.0214963547211404,-0.0202800332542565,-0.0140545893658864,0.00859767336741912,0.00140015446057593,0.019014940304752,0.0155824362211822,0.0291562439957647,0.0308982040736241,0.0385575433051836,0.057011142662444,0.068237570597123,0.0604607265018634,0.0275386371222597,0.00158335151572934,-0.00402644059265127,-0.0102636231924199,-0.0123480168934942,-0.010118481871149,-0.0062569202065974,-0.0048547888665227,-0.0100042692042339,-0.0184503968137355,-0.0162241690261402,-0.0202603794608116,-0.0208902005017246,-0.020722904408976,-0.0234959785290898,-0.0233145914520112,-0.020636820347619,-0.0196235719593823,-0.00757957350960081,-0.00881991012703268,-0.0023971951424547,0.00691822305300188,0.0212946928371947,0.0377804527518009,0.0539431815577392,0.0623269485164216,0.0559541559228908,0.0476200797475245,-0.00028363391385381,-0.0179463326005191,-0.0291893325795661,-0.0276632376799415,-0.0322510867416889,-0.0159745865142334,-0.0118836015482775,-0.0095808855768245,-0.0191693634275214,-0.0215781107308195,-0.0215504229047537,-0.0229451785951189,-0.0211429822922241,-0.0238428744688481,-0.0233157708004663,-0.0200601405196532,-0.026126706942614,-0.0219587125900806,-0.0289505765691758,-0.0244697399256202,-0.019318012296286,-0.00467122339453183,0.0152647893506944,0.0383571966754138,0.0537517329336737,0.0453063214639231,0.0328923938819251,0.0206144423343469,-0.0128202330262023,-0.0311192194560463,-0.0381236297456311,-0.0489873767510303,-0.0450703506764289,-0.0134924343932449,-0.0207050277053684,-0.0209184663338923,-0.0191729405378356,-0.0190897307309334,-0.0245481574018344,-0.0230170850918705,-0.0236587063219224,-0.0205392749702522,-0.0206713798474655,-0.0223771466948537,-0.0258454301750513,-0.0232033303985222,-0.0332806282319072,-0.032055467337523,-0.023750537186393,-0.0144387225008624,0.0105218861518678,0.0337222243617991,0.0335333215156643,0.0276882857330378,0.0187992505362102,-0.00296221958061129,-0.0276340297791747,-0.0279536981948878,-0.0492922766114828,-0.0397787602119526,-0.0233765694084176,-0.00859452859203696,-0.0198319493307491,-0.0208953382074419,-0.0150249585664962,-0.0198436387804987,-0.0213804886983597,-0.0228357503724511,-0.0209970287581903,-0.020335636678113,-0.0221905232904764,-0.0231804039081289,-0.026634624595557,-0.0149479716913082,-0.0284707232895107,-0.02636345806205,-0.0250129205446459,-0.0168321913590671,-0.0025686219444818,0.0193495587855036,0.020999841134627,0.00697291228479408,-0.0131060195502603,-0.0171232101274236,-0.00922315611242424,-0.0249831295967933,-0.0347234882081523,-0.02099598778983,-0.0107656875532076,-0.0014024829422178,-0.0103612078472541,-0.0214243564047952,-0.0236007700754467,-0.0178600967250221,-0.0169442367586379,-0.0200578886590446,-0.0220676822202254,-0.0207660204758827,-0.0213219721785749,-0.027004336285496,-0.0277057780209389,-0.0195811158550891,-0.0304352892221103,-0.0152281282835581,-0.0179075504307101,-0.0114633954644392,-0.00563726345769781,0.00182279634918736,0.00401641242443347,-0.0132996945705048,-0.0264872857002511,-0.0205301840816481,-0.0121651998255713,-0.0183914125372366,-0.0209895924940931,-0.0118925376870957,-0.00122533709801461,-0.0120375892157969,-0.0155301552461551,-0.0155290063969936,-0.0237432050276595,-0.0232216964343824,-0.0200831482964478,-0.0215220537200213,-0.0212697028711451,-0.0224995806901383,-0.0201214982871718,-0.0258770768021888,-0.0269712385358839,-0.0269161551532781,-0.0311461254484392,-0.01550938312215,0.0010425233956489,-0.00120814310614969,-0.00605808145559366,-0.00638570323245793,-0.0258864512388857,-0.0314762121781104,-0.0370893835503191,-0.0282015841994461,-0.0204835755125266,-0.016341879750543,-0.0109371206087479,-0.00306243644486508,-0.0028873587106811,-0.00955056927765358,-0.00757415279132664,-0.00971010969270295,-0.0263232532003501,-0.0259364753136538,-0.0234115308139179,-0.0234279409468683,-0.0220480640667629,-0.023605989147575,-0.0234408229936126,-0.0228662313386315,-0.0268270911701194,-0.0295815307965039,-0.0290081816345309,-0.0187254558519329,0.00867200558987183,0.00723225747026753,-0.0102257696039565,-0.0246389697495469,-0.0439820716382284,-0.0526479417845468,-0.0545704088469194,-0.0392270440954699,-0.023499506717344,-0.0214208093400786,-0.00308749242074881,-0.0108906989925441,-0.0105063539515807,-0.00536315996456351,-0.00464010507235505,-0.0111250941773858,-0.0204100566313925,-0.0211906717619719,-0.0187511057610049,-0.0186079314801487,-0.0206847471555764,-0.0226410293894185,-0.0231838043060762,-0.0219733020516259,-0.0251293141503039,-0.0329987586283417,-0.0333364229114992,-0.025046037103549,-0.015365741681685,0.00132551471440802,-0.00338943431616507,-0.0273505469987938,-0.0467970653319754,-0.0475034906660227,-0.0423361646924501,-0.0266420147420743,-0.0180940784232784,-0.0095529805633504,-0.0140813864170486,-0.0113488527925852,-0.00419123301448523,-0.00798762791614551,-0.0076224088749797,-0.0132213122381445,-0.014188930729579,-0.0168734637691553,-0.0231474002682905,-0.020334199045513,-0.0200731584578712,-0.0204278104609544,-0.0235341169664416,-0.0223624779996137,-0.0240425620196356,-0.0255754365308182,-0.0319289076245101,-0.0369028431509652,-0.031453693916306,-0.0395909291264925,-0.0490931807445184,-0.064169280731163,-0.0667180364357908,-0.0459247252233109,-0.0407528674759624,-0.0280830846141741,-0.0341956083763769,-0.024004209897383,-0.0173836276356936,0.000139235808936986,-0.00640363640574776,-0.00220041146325928,-0.0107995753585665,-0.0113315515340899,-0.0189629989699848,-0.0208908339199814,-0.0222151705853367,-0.0213735075680114,-0.0228943704978168,-0.0233089260078978,-0.0211484169367263,-0.022580112985998,-0.0218982309385795,-0.0250396672695395,-0.0258874498113462,-0.0315108008428553,-0.0400568374996092,-0.0448540378290562,-0.0545289565803412,-0.0581151522439624,-0.052174923305502,-0.0396810117284844,-0.0388679874797168,-0.051677019618537,-0.0431035156180965,-0.0202475769777647,-0.0182890691128599,-0.0180662606475391,-0.0200015266738123,-0.0160872648186422,-0.0164112715131571,-0.0173603094740897,-0.0226219149731655,-0.0201335633656905,-0.0210968868950034,-0.0217059059635722,-0.0234161200624048,-0.022441534590557,-0.0207031220970711,-0.0231221898781875,-0.0203811387690353,-0.0212662037605496,-0.0219299982022592,-0.0246175271257176,-0.0337766921646257,-0.0302138045412539,-0.0299933157989,-0.0368675323753451,-0.0309733687973878,-0.0306050778339096,-0.0336679613175412,-0.0378479388919709,-0.0343208372048779,-0.0354671285227511,-0.0319806871443487,-0.0269064193291247,-0.0261619939310099,-0.0196857617576674,-0.0210594275595202,-0.0221736791086126,-0.0225930831213961,-0.0211527930844151,-0.0212981963684385,-0.0219271071618118,-0.0214676597254216,-0.0224742945074898,-0.0221756465372662,-0.0203990609268786,-0.0237309976730951,-0.0232515160833118,-0.0198966436613055,-0.0211002276631428,-0.0249316855229172,-0.0226056667043483,-0.0224472424973063,-0.0258093910271163,-0.0225684886748161,-0.019991183365582,-0.0207706308587604,-0.023141653048301,-0.0282985931064207,-0.0238872272384485,-0.020828102756052,-0.023461948885271,-0.0243812538770098,-0.0211901304599111,-0.0213297705748295,-0.0226605143614759,-0.0233738052494718,-0.0216616448542629,-0.0225534632585219,-0.0235741153058085,-0.0212710286498015,0.0333668129838273,0.0297197700607635,0.0280385595496857,0.0299671495035215,0.02620433016144,0.026620445031154,0.0296752556467135,0.0278667761637367,0.0263512276124806,0.0286197652118703,0.0266538836323302,0.0301287537173359,0.028687977307357,0.0301364601130847,0.0303311999279821,0.029396884521245,0.0272982873988717,0.0288010391128965,0.028395289819698,0.0300422952035276,0.026660435351325,0.0289635897985992,0.0287846056644907,0.0301476398102939,0.0275184648662639,0.026100675670921,0.026577228831805,0.0266844240652727,0.0292576077125103,0.0289433416151393,0.0279000883465858,0.0302147592983225,0.0274574604023797,0.0260882084396127,0.0266753322240786,0.0272576577723609,0.0267244782726639,0.0278593909626601,0.0241605860330116,0.0220994565929327,0.0273186121872371,0.0269384623818735,0.0275427615336718,0.0258917500295023,0.0256657976645109,0.0276859061673359,0.0254271716611398,0.0307946993828333,0.0288120778013182,0.0261928614982945,0.0293450621768959,0.0291438460236561,0.0285183679793424,0.0287770528134521,0.0296387385240979,0.0286225334341537,0.0270800643818195,0.0285603410809795,0.0292484215740091,0.028885721307446,0.0261760179693055,0.0287767224873961,0.0304769440819933,0.0273552540307033,0.0265435537612547,0.0241032305583204,0.0186979386518605,0.0126075049120538,0.0116893221199036,0.00821057686369344,0.00182528541404165,-0.000784608093532939,0.00731748350659219,0.0123498943508612,0.0141071235889638,0.0214723086506347,0.0229603618989536,0.0297198766164751,0.0307181975838814,0.0295803075073001,0.0282807303396777,0.0281727198355887,0.0262390108416636,0.028299019252437,0.028047860244894,0.0260114260181383,0.027865029385364,0.0288537603380036,0.029352521085361,0.0298329705273874,0.027503635148894,0.0280452346911642,0.0263588040851592,0.0231403887105634,0.0115702794420923,0.00428067083340149,0.0046762735610683,0.00168344052755263,0.00506756947353749,0.00691149198477916,0.00601116623703034,0.00801849545935336,0.020486085949511,0.0199125455646458,0.0246306139384229,0.0267215174990415,0.0327688206015264,0.0322158829124521,0.0279124282725379,0.0279736027135827,0.0281752332168481,0.0288501229524905,0.0267504090104386,0.0262547105539664,0.0303831012322382,0.0262458993517057,0.0298054385154326,0.0296008873750435,0.0316525925653941,0.0367025992454421,0.0376149319807179,0.0308064088434064,0.0222591349349651,0.0142123185626906,0.0173309589906727,0.0200099191508727,0.0281416427637006,0.0322263387281767,0.045565125616893,0.0409582592171558,0.0455753464395502,0.0329708747465667,0.0257830528150321,0.0059175629495615,0.00679456500812201,0.0128060110457422,0.0121603414826615,0.0194063489391173,0.0216099856119074,0.0276655263212653,0.0290701925158573,0.0298003131754221,0.0291036148944935,0.0272878268547053,0.0269846162465073,0.0285549785524498,0.0354667542998154,0.0343197082128742,0.0316642407903133,0.0306554009808617,0.0283205293928286,0.0335694630576378,0.0203545362121589,0.0274264406557332,0.0241192908202008,0.0408441291092032,0.0680475447804213,0.0560610353540791,0.0386167681071792,0.0270500567718356,0.00900168474418074,-0.00599773282824426,-0.0214875219273549,-0.0221015022429705,-0.0150355840165257,0.00600089500692122,0.0161182672622467,0.0244953551929946,0.0285732009908833,0.0260992039195878,0.0288265580735557,0.0296160369205156,0.0325560556649278,0.0305970660332525,0.0334818394317823,0.0337511628946684,0.0335489450506843,0.0286058288468818,0.0202237366775856,0.012403503491532,0.00547509699899952,0.0164216576119299,0.0520866240533111,0.0776247512892331,0.0797945048468284,0.0767900239816783,0.0515396290686088,0.0307884526328957,-0.00599848295980774,-0.0177239180469306,-0.0138408772597574,-0.022103656524615,-0.0248440958752481,-0.0130470142097101,0.0103934409382578,0.0229696572603791,0.0292815144858504,0.0268448012104446,0.0267763635792754,0.028796486060464,0.0268634051959248,0.0323069041350334,0.0406948173814346,0.0421830739984484,0.0346698871582534,0.0250046236221851,0.0158116201073809,0.0214357378640238,0.0210509138148467,0.0400630910138984,0.0644156974708866,0.0913223052779353,0.0880199884495771,0.0839265055093171,0.0697472366335698,0.0449040576988383,0.0235338295666327,0.00663514119593991,0.00101193230992028,0.00164210446205419,-0.010812579671107,-0.00658872965309241,0.0156194686587454,0.0260244819293631,0.026875307275443,0.0286577872973262,0.0293216133344228,0.0250147425198842,0.0257060908512572,0.0296355217718021,0.0411399185984048,0.0297738072668115,0.0279892947478836,0.018043412480464,0.0242235743434456,0.0151092045173277,0.0207379099531535,0.0418230444826815,0.0706677663474316,0.0880979817598281,0.0913876343173945,0.0719020648446832,0.0684088370640702,0.0463846474409422,0.0351357306412469,0.0167270658481922,0.0100783040853906,0.0189212753642952,0.00918812155838094,0.00870127130743257,0.0159880608437446,0.0210327645456925,0.0303952676123523,0.0272404460082764,0.0281598262379775,0.028317027611742,0.0325525237852372,0.0350444616249863,0.036680525487932,0.0243758967356579,0.0210342468534916,0.00897878364560522,0.010749928087563,0.00484636299357149,0.0138359144650007,0.0373434061571605,0.0561989817946745,0.0868012298025553,0.0869080427616823,0.0610593716881794,0.0468641082336485,0.0354007032511036,0.0239162453301257,0.0192193793087412,0.0167649559391407,0.0286511842382827,0.0300875779586144,0.0221018871143511,0.0173018517956134,0.0263464905086274,0.0298218782561097,0.028202738402705,0.0282599628802796,0.027773768053535,0.0362198300734316,0.0353876953218316,0.0329775452200737,0.0178268884761628,0.0170931660947514,-0.0016060714077158,-0.00510689135738872,-0.0201329561897764,-0.00896225963794466,0.0182917865273282,0.0450387720432901,0.0770621377691743,0.0574476432444188,0.0471020373617311,0.0338975283719839,0.0288601817129988,0.0159940697761792,0.0122634487601879,0.0239701143769864,0.0339764105833373,0.0401407475016895,0.0319825262941533,0.0178316340202353,0.0244525354015897,0.0279571671829051,0.028896736422363,0.0276737437854643,0.0257051568316724,0.0312678437466664,0.0281733705036364,0.0205760072989423,0.00710403161960075,-0.00643649837440654,-0.0209360908029573,-0.0209541943881294,-0.0305571060677188,-0.0227130530275879,0.00369512410774683,0.0407204308151673,0.0345868524277919,0.0125801737457338,0.00876274578143533,0.0193944509587842,0.0146662412480814,0.00824997812782022,0.0134841756161563,0.0234699016937726,0.0227159553180743,0.0354174935094267,0.0340743783097128,0.021573952844457,0.0286853499382688,0.0267078296210619,0.0269512059918787,0.0309045214330359,0.0288335761049499,0.0306322328976231,0.0221415710741345,0.00334346669463799,-0.0149817763850455,-0.0217135685317435,-0.0304607355752461,-0.0373677048411173,-0.034632156567276,-0.0261972373311866,-0.00493124520704592,0.016126802033463,-0.0152344265342833,-0.0248456732362015,-0.0166464139302698,0.0073280055718132,0.00481517448755054,-0.00988593674098965,0.00559995860245741,0.014109112802409,0.0186912017411437,0.0271070582492241,0.0327211465974378,0.028798877291455,0.0250846924310762,0.0270425499160886,0.029416532482043,0.028275239836519,0.0281736508272882,0.023574508616973,0.0137289137313147,-0.0132146680608848,-0.0307910458988594,-0.0365617800086961,-0.0363556620854154,-0.0385976395958916,-0.0273780896212081,-0.0179002859713232,-0.00897725024411397,-0.0123042832150053,-0.0462586706046965,-0.0402456883676688,-0.0272684328426395,-0.0134365556547904,-0.0142691264191612,-0.0224634178726507,-0.00447527886059321,-0.000513016229841978,0.0105794130452769,0.00736789242339614,0.0214377981668314,0.0258936081076825,0.0278721490489509,0.0302982736820074,0.0279529459809201,0.0288625592576312,0.0283513076776728,0.0235665705446846,0.00352509018521739,-0.024773538842854,-0.0355819831231338,-0.042145935554834,-0.0404874247005544,-0.0495468658425854,-0.0370319350572708,-0.0346620806140028,-0.0335054984361762,-0.0453887463312487,-0.0531793083883817,-0.033826560631717,-0.0214720912298632,-0.0262224276150673,-0.0333738802825379,-0.0276681352743661,-0.0196223747636627,-0.0226312822291006,-0.00568825174993756,-0.00900682666016047,0.00825245400363223,0.0255948326021303,0.0314424218384961,0.0281725463020736,0.0284824079025373,0.0296326600024687,0.0306136346282445,0.0218665083747571,0.000759610448008844,-0.0231241937445091,-0.031868596461849,-0.0443832229677747,-0.0389430576723774,-0.0527311663627721,-0.0435816127634492,-0.0393222647136068,-0.0509608145268878,-0.0647329263410727,-0.0569607307485189,-0.0369721907380198,-0.0268942643043863,-0.0320756038056589,-0.0265392300311092,-0.0248789394689443,-0.0199792826435477,-0.020257075979576,-0.0157835460078946,-0.00716484122148266,0.0191713810336651,0.0228777610787106,0.0299093907870144,0.0274196919556335,0.0280657436246017,0.0294131474215708,0.028084645474165,0.0234595345854476,0.0110861728416337,-0.0182267535770247,-0.011547208511377,-0.0211332062813616,-0.0391993923801644,-0.0422626248826951,-0.0493094201884449,-0.0524648189622553,-0.0584612423271367,-0.0610786992447632,-0.0615042145145177,-0.0374484855692718,-0.0242588308905178,-0.0102199538754878,-0.00923584443174288,-0.000813964205234635,-0.000577686850991727,0.00389286452951352,0.00228741733727913,0.0109274761821461,0.0266050562893049,0.0264509014360813,0.0296159507936468,0.0282655061565838,0.0299692370704545,0.0277489500999482,0.0285218409826623,0.0288816586398588,0.0228568819418649,0.0131073172350249,0.0150686701577641,-0.00299904377920756,-0.0208545897632768,-0.026266033445891,-0.0364861046580961,-0.0430636643577526,-0.0450523633469648,-0.0474925432779114,-0.0478231912447519,-0.0243544122722045,-0.00367685935150649,0.00744181456784701,0.0145759601202329,0.0247775863749768,0.00225657944798442,0.0187948941612583,0.0201574566802457,0.023694954839659,0.0309863986409004,0.03301941714594,0.0302628279095881,0.0282053429663628,0.027809923147514,0.0271807195068945,0.0294922428621495,0.0340849160866594,0.030677318915668,0.0311508111486485,0.0335276010188623,0.0200445550286161,0.0102455329504865,-0.00882562860287901,-0.0168052384846321,-0.0179697262587553,-0.032490446247079,-0.0349038879735254,-0.0259188534511794,0.00151128459753287,0.00455275118711251,0.0221896143662538,0.0195354665024927,0.00211680499143754,0.00738324722330257,0.0187571296015699,0.0218013047221254,0.0261355196774196,0.0304963054545567,0.0312416172807729,0.0295354214681146,0.0283584660821335,0.0273889340007108,0.0281373463886158,0.0308812910290263,0.0302879813735619,0.0289744130342465,0.0355846756739161,0.033117166175567,0.0413525006491237,0.0278319333955326,0.0164202062003012,-0.00569458632563141,-0.0163183757043866,-0.0143761920764185,-0.00628670377935151,-0.01121758119243,-0.0116655005695466,0.00156032081229293,0.00983383679718937,0.0022601561042887,0.00324093022187569,0.00129598342465845,0.013964320708783,0.0289435185691881,0.0347380459414146,0.031348070031096,0.0250436718279416,0.026188690535328,0.026882582956641,0.02750222977439,0.0296128308465051,0.0324827793583937,0.0336586660998501,0.0356101773684546,0.0421903009703854,0.0364181008906163,0.0439604421290472,0.039357061854889,0.0301129077096319,0.0189332621806163,0.0029044562855405,0.00765190608623624,0.00533107144095112,-0.00566892343320593,-0.00514573021612712,0.00306593821489496,0.0111772028384228,0.0033766698246447,0.00165320788152954,0.0140030439028168,0.0206843764606567,0.0284184133234713,0.0366111696384104,0.0357885999503138,0.0277022550328096,0.0273700315388895,0.0295284031281361,0.0300375869054142,0.0288829211706177,0.0314462752038371,0.0347805324516299,0.037526616807145,0.0430624731153232,0.0361958866691484,0.032648095594426,0.0348414980410375,0.0405950351108141,0.0347837459776276,0.0401622629849082,0.0222179757538932,0.0103846306590381,0.00171505015029033,0.00444848200813704,0.00934838649704483,0.00769777809742173,0.00144165816556146,0.0102141166863591,0.0163279758070651,0.0147330678376122,0.0244623054139187,0.0345762624555941,0.03472300702775,0.0261214367106902,0.0261965838935704,0.0273190753817162,0.0289255165276701,0.0302616757567335,0.0325003381468265,0.0314579243454887,0.0391611894455109,0.0438901048971148,0.0331391635434732,0.0279316294707955,0.0246017138421308,0.0443396099436139,0.0581650818390147,0.0637151522942588,0.0502761190200882,0.0409819607521801,0.0231858611453195,0.0219727249111982,0.0263548462001977,0.0127717954695898,0.020539178934782,0.0254105403331772,0.014132495476153,0.0147806167083948,0.0215160178316333,0.0274490046948595,0.0262228074630051,0.026999456345429,0.0292728837597152,0.0283663037887868,0.0291127201846866,0.02944366383499,0.0285544396019954,0.0304395263048943,0.0387582663105437,0.0370437753997721,0.0378354081882931,0.0396314604441944,0.0305000394312124,0.0348132681943686,0.0500160284585166,0.0546109566031233,0.0525663397826986,0.0408762137225903,0.0215110689104003,0.0256076507490569,0.0299588978814698,0.0260452133189377,0.0179061520973004,0.0107960225623032,0.0146147253981007,0.0165737120475557,0.0176199412349242,0.0231681575919195,0.0240539427139258,0.0270011985362274,0.0277654157734452,0.0263271073230245,0.0297129255469894,0.0294305591038471,0.0300347930498648,0.0272572176315523,0.0327609780479786,0.0342846135026448,0.0394230634199946,0.0418989216369349,0.0457062769893221,0.0522818560654613,0.0567395940631921,0.0615717824292737,0.040038358252823,0.032022848401128,0.0335533932848468,0.0400499057102719,0.0352659404183844,0.0274151551231501,0.0145406491427739,0.0104246146320982,0.00739206780838815,0.0109391076904302,0.017239189308565,0.0270220489251516,0.0293397899156544,0.0263033906483766,0.0274445995190559,0.0279320066162537,0.0269798515634888,0.0272794358054304,0.0274585536189296,0.0282539816252538,0.0273365853662598,0.0312562651797147,0.0359826105200487,0.0441776705578628,0.0516157891172066,0.0568695866231005,0.0678009561149864,0.0705283341354301,0.059449127377723,0.0504374003050171,0.0597824959889153,0.05646671541584,0.0394367001617206,0.0349540176205348,0.0314086775934724,0.033058493323104,0.0186201239149098,0.0247134212557207,0.0255674984055457,0.0288862209769966,0.0280206872117536,0.026698680447582,0.0273479996663627,0.0261676077926768,0.0303144025356523,0.0275910750590947,0.0260346951267967,0.0286759385089156,0.0267017408431604,0.0283312248416606,0.028921484182176,0.0381739034218984,0.0351120935276771,0.0401758457859768,0.048355626396698,0.0447944972454569,0.0498873776512693,0.0481768357184049,0.0529748748014453,0.0455099252168861,0.0469030846013588,0.0433220921377359,0.0360270195532596,0.0323150268890805,0.0264359086259929,0.0290790414327098,0.029132610224291,0.0289025481129241,0.0281152091395339,0.0262554854243229,0.0281554714940773,0.026753954607084,0.0268218627107515,0.0292145015412603,0.0303639265223014,0.0291658966038332,0.0285707644433466,0.0300047141185382,0.0302873405574865,0.0279900525392903,0.0305431837277032,0.0282587006258249,0.0309440150026544,0.02814760912807,0.0260221999617152,0.0266375560107894,0.0321939953350025,0.032025182173712,0.0328559223846409,0.0284898491394172,0.0287225103615411,0.0279979557721455,0.0262496030630943,0.0299757601595059,0.029355290349564,0.0282335593398132,0.0260258373545609,0.0260923359757708,0.0273626736939458,0.0283758895702645,-0.0402196500463571,0.214755793588133,0.215175932240323,0.21651954957569,0.21328921170742,0.217192137765275,0.21478161207373,0.217154855392252,0.216739965158159,0.215610933386114,0.217234637490885,0.215556516083087,0.214506874250939,0.214085676236747,0.216488354864842,0.213745957874353,0.213742648156258,0.214025832616014,0.216039741467972,0.213929655063194,0.214742925628505,0.214513864502152,0.216307861606553,0.214902070652787,0.213785673073868,0.214844630711673,0.214244011587671,0.214627457145534,0.214159513445754,0.215718806668051,0.21714756663046,0.216327115317142,0.217030006336915,0.215189696747073,0.216714206926095,0.213252735745552,0.214501920057465,0.21567606919905,0.217524449413074,0.210630746661095,0.210937600074517,0.212089538973968,0.209298926115001,0.20990654790315,0.21186307624666,0.211518968410385,0.214242288141232,0.215897633441245,0.217372635579812,0.218150120731629,0.214096795982277,0.214994669841543,0.213546871289071,0.216509660512238,0.217311160528667,0.217439532973803,0.213363310321635,0.215615679316977,0.21676025953301,0.215356562527585,0.214581805063244,0.217321565632256,0.215016948515943,0.215029517829237,0.215309414961785,0.217412810108947,0.20774199899234,0.197443803773746,0.190584153965296,0.188350198002497,0.177964147392455,0.169916479764588,0.179027408510263,0.185405304349051,0.185431348449423,0.192922203310702,0.193181706334285,0.198863539562156,0.208302664334679,0.214096510555258,0.214376038336382,0.21604597733727,0.214847862118183,0.217276776855747,0.216338125517665,0.21439861042645,0.216750674618778,0.216759859866372,0.216816561481,0.213696843977524,0.216509098701054,0.215189657351453,0.218400918452819,0.217906971990006,0.203451503528244,0.192534017871843,0.192454807558464,0.185045833257654,0.169975562186969,0.163451642656022,0.165326532683175,0.17786944208104,0.182042796779026,0.184516164131127,0.18999759098326,0.199525292259772,0.206320854375044,0.208308463671964,0.210881917573109,0.213569139877254,0.214581448135279,0.214666015864878,0.213446672705722,0.21570819283287,0.216694495617251,0.215000744957279,0.21685295354435,0.218118555044505,0.216043929497369,0.214928300333552,0.22048283977598,0.213229063855353,0.203780314306137,0.198864324397822,0.189348362079117,0.183317179648482,0.172775940505982,0.177634392990767,0.17552267433645,0.173360159482116,0.182487328164937,0.184510256702195,0.208707295385093,0.219337483308291,0.211926974515246,0.204862306839088,0.208209547647728,0.212764479981535,0.215916757114113,0.213951363107447,0.214547782083362,0.217146752238174,0.213884433918805,0.216179679298935,0.217421858581832,0.214028328467371,0.213377851851779,0.21303984371068,0.211208480376296,0.201599587076949,0.190244709766103,0.160960442367995,0.116821121925254,0.0909693533919048,0.0656620264793387,0.0456939392132129,0.0350820247744267,0.0428512395084818,0.0527954530408358,0.0815096475410541,0.126206211985772,0.155407411807941,0.177150596157587,0.186849422692553,0.190429639859616,0.200135657764276,0.21175645439796,0.21201064770129,0.214734717613044,0.217471482153639,0.21568741143307,0.21345777370384,0.215019465039468,0.215572301691232,0.219293752625063,0.215442337572501,0.197249950551287,0.180892238016149,0.13338156022209,0.0706629389828461,-0.00623607666630004,-0.0626400139524494,-0.118235069325162,-0.138570151082326,-0.138161013178591,-0.124513800626239,-0.0948658098591265,-0.0278422108827368,0.0530758653158767,0.105149354071596,0.139506421172683,0.16555679151944,0.173989355864499,0.178248121150042,0.203921098577762,0.208866871301079,0.213545031695672,0.213386146368,0.215297418510267,0.214779236938849,0.21425839471847,0.219989795947255,0.220456399393664,0.214298003543435,0.185206286717513,0.118403635457114,0.0617731115098969,-0.0329358922174054,-0.128246427423221,-0.187623928777793,-0.210869895891973,-0.215247207342674,-0.206122683166701,-0.187415773337025,-0.139016252122818,-0.0681068185370285,0.00795607474863853,0.0757410232229734,0.118802054028167,0.14918089229599,0.14974248694065,0.164879135889564,0.198578032057135,0.211963974371482,0.213291347161916,0.215513493086175,0.217867104477652,0.216032170023379,0.217119603317816,0.221218557663172,0.216441172672127,0.196665503600937,0.152643630225017,0.0761535028266656,-0.0128768103602021,-0.134752839275692,-0.201962172693946,-0.214503150362666,-0.181427463645979,-0.14046471071749,-0.111831873477356,-0.0962094025384084,-0.0816054094678962,-0.0612094322386083,-0.00924978565165754,0.0641055928658291,0.111493868900843,0.14647450872037,0.153755164295018,0.167639446276348,0.19757743414838,0.210304127366152,0.215455967692972,0.214186869744602,0.215674263341385,0.218765890122891,0.220258491734346,0.216788645138348,0.208533636361794,0.1813320244514,0.126814833448629,0.0305412918396854,-0.09522788825474,-0.197430970856616,-0.216542719788134,-0.16709240919181,-0.070417120189549,0.019757637583614,0.0493310828735192,0.0165925078610412,-0.037331787819598,-0.0675215849346379,-0.025356492090859,0.0427575070631249,0.109625901276227,0.157794167456269,0.168718512262484,0.179063065510384,0.198235791584597,0.21340436558059,0.213915449597452,0.216879128463639,0.21645763809029,0.217158429451095,0.222113336504679,0.216660392921909,0.19656619346542,0.169723645006445,0.0798900444161757,-0.0291270817765616,-0.156425409841558,-0.214551978561337,-0.187649086322441,-0.0883333252831477,0.0456459498734813,0.127234077289813,0.108970414396015,0.0259874591006474,-0.0721201383659582,-0.106892494897657,-0.065768140336535,0.0279217637645664,0.121337567054318,0.183655555098646,0.208212342653666,0.197153829614656,0.196171070049455,0.211652033929268,0.215073503190009,0.214053222535816,0.214648981151587,0.214630992363029,0.219728736938975,0.216607559199423,0.193539640543249,0.145800127866884,0.0527375936526872,-0.0782487538516347,-0.172910769653138,-0.202362416695736,-0.156750602384272,-0.058571752711485,0.0575327301216342,0.0833587313568992,0.0309265948056445,-0.0747350819651978,-0.161861084114139,-0.178201823948487,-0.0974500196536765,0.0305801076462117,0.16596172923298,0.23516042846575,0.246653582908141,0.218172555369111,0.202271332403949,0.214329689211931,0.215390487489615,0.217327393570993,0.215586768284181,0.215754631019313,0.21531278183673,0.208018668365658,0.189413866597455,0.135284548705602,0.0468588639228049,-0.0765322473585055,-0.150666541974981,-0.173043192308527,-0.15222273510007,-0.0965515129549268,-0.0632759620191014,-0.0682666846569947,-0.121320055586672,-0.20342188854658,-0.240581314406293,-0.209843244081232,-0.0946336530068494,0.0659871818505296,0.203274900624808,0.267276631913261,0.26535747578832,0.232860129029979,0.212123293042431,0.213186062762584,0.217176742321782,0.214251982005798,0.216215960077135,0.215660747182483,0.21584435158338,0.209259446123231,0.207448318822467,0.15449135018173,0.0662832625290132,-0.0451804596938041,-0.118944277430955,-0.154916238329632,-0.170134870854447,-0.183738007825241,-0.198917307994637,-0.223062877900114,-0.249406715291557,-0.290557298373734,-0.284330985396787,-0.209600065964345,-0.0448179492258076,0.128253921512388,0.248091724155398,0.271280438277561,0.274919533218218,0.240486599561944,0.212474701153669,0.215022750128126,0.215364499875012,0.214967573335346,0.216146144012667,0.215049695033278,0.213816903096464,0.214353286071218,0.229696949895552,0.202419087511693,0.113686149497356,0.00694052471061538,-0.0844858174678239,-0.14120590271791,-0.196076748858413,-0.240734690434314,-0.275557794631178,-0.284601402851921,-0.286291350072582,-0.29935208310017,-0.27239768747649,-0.142884469007784,0.0340966939849447,0.186378486030102,0.271960877606771,0.26932729665172,0.264819791050833,0.237577054990155,0.215817589602508,0.216585721308031,0.214163995786195,0.214543086289199,0.213255119611225,0.216849185538247,0.213680996157346,0.226211108233593,0.263944954518118,0.26315151990356,0.183200892341628,0.0706600682418006,-0.038309414401013,-0.122353001807521,-0.180358408183861,-0.242760799264916,-0.26262234377676,-0.250768454627624,-0.249499850560897,-0.258521019322864,-0.203099271136789,-0.0714356404419541,0.100300894363537,0.206447102035796,0.256017709905786,0.26805171503702,0.256305076131949,0.236852583534948,0.214640099507017,0.216510408874585,0.216170096350747,0.216196944838678,0.215897521844813,0.215755113165692,0.214751011690056,0.237799092097998,0.292848650970587,0.301908800156149,0.249330398648944,0.137902974987191,0.0110196218627539,-0.0945830335178575,-0.175084458357113,-0.202583681515677,-0.18991398204531,-0.170897974185409,-0.193116104685763,-0.208817466949139,-0.160435485603336,-0.0141260121293062,0.120964739022258,0.208440037322655,0.237600909049444,0.255234782708388,0.247579211372221,0.232653386219444,0.216819947208689,0.217282312734464,0.214403641914755,0.214218899027923,0.21460895023966,0.215946417783756,0.215678875590536,0.241591950061805,0.299886967647604,0.317864002908971,0.285248534052411,0.17907513707158,0.0408601156364105,-0.0793883953571967,-0.142385303418293,-0.137897932395362,-0.093176821361081,-0.0957706739784588,-0.148600953377458,-0.175698060421212,-0.125206885205257,0.00333317788677244,0.121115020509346,0.187914086056025,0.216248505270917,0.23709747610977,0.235484249477306,0.227749772374125,0.216558183468865,0.214227264971324,0.217189605548893,0.216221386548202,0.217006450547407,0.217745445350715,0.217667376222607,0.249455903538925,0.305038673375436,0.321648843997928,0.266951687820381,0.17441726911125,0.0536450257819416,-0.0591020870938565,-0.091902300041621,-0.0582882240841203,-0.00313412999426253,-0.0433174526861993,-0.113254385956075,-0.148994059799731,-0.0845503490605653,0.00699912750628343,0.103908949826408,0.165352926150756,0.207215730530018,0.232440730656767,0.228458320512579,0.229618069594113,0.221513158769463,0.215361456780774,0.215431172195559,0.216611063938876,0.215407229823699,0.21436052214456,0.223268067327827,0.253811289326113,0.309365552173015,0.324280421915376,0.262038182819909,0.163977038308792,0.0607727869526874,-0.0195619455002052,-0.021703900291199,0.0251773348409136,0.0354817416218684,-0.0250205292342617,-0.0986132780028216,-0.13264831919394,-0.0851948757588056,-0.00452732746147893,0.0823403971125473,0.148641286930543,0.192831328137073,0.211949792369663,0.22054686196866,0.22801562847712,0.223822347548943,0.216622843638568,0.214611542999469,0.216951617424129,0.216079340281598,0.215023251800696,0.222874396604525,0.246289235049662,0.293984565658548,0.301563380522632,0.252996123414201,0.18872252975411,0.0977544399901805,0.0353942583464134,0.0418303661897212,0.0438192333166842,0.00998008310298602,-0.050992744617586,-0.100597488784418,-0.126581205521601,-0.0893688600382083,-0.0122633867359298,0.0723594636396592,0.143361811078709,0.182244013159864,0.201330844028881,0.213467780920177,0.221599327369351,0.218943686986215,0.217704003491345,0.216186268223281,0.214140557404586,0.214808016073134,0.217109021795207,0.220134923893017,0.231498727903564,0.259857846160453,0.266745639690733,0.230310099667173,0.192510618230204,0.121909747741972,0.0584058681698101,0.039894751082494,-0.00640177201504247,-0.050180780695339,-0.0964223098628745,-0.117167347149842,-0.12563202937264,-0.0911990036859996,-0.00578389944415254,0.0721629007113754,0.138524145973672,0.181158501516989,0.195914102883178,0.214200458307199,0.219371024587183,0.220449326139231,0.214616000011094,0.217288987969681,0.21600213361703,0.215715614005328,0.216779446696976,0.218466991366364,0.220680483517428,0.225138528448678,0.224592513357322,0.20509408377564,0.167245036976511,0.114351916949881,0.0611363732013419,0.00114233177311437,-0.0648856057837122,-0.0909758089292911,-0.104241434026198,-0.112290212650736,-0.102406312380788,-0.0630089641210904,-0.000966359955099877,0.0775102337663322,0.129964122753577,0.173771043126377,0.196708033827622,0.212093426400702,0.219579789961053,0.214821153908602,0.214542039408672,0.21658173556906,0.214842623067163,0.216529342435539,0.217385413786002,0.218260082636585,0.217285021412466,0.212110678103309,0.193938840478935,0.17347785163514,0.125812442727179,0.0687769338268702,0.0181030704493449,-0.0536566741701763,-0.111790440592031,-0.129040900709465,-0.117761572220334,-0.104373660548262,-0.0861829970898486,-0.0529927357936152,0.0170146658701142,0.093121943929786,0.139320237646497,0.176006372745612,0.203920885736721,0.210303761868058,0.214889051338672,0.215654593291819,0.214225211464964,0.215672777610515,0.216663373319895,0.21505270652844,0.214508586928614,0.215176656465786,0.221634001063544,0.215822289333626,0.203837139860207,0.177662540447266,0.121757452923712,0.0563914740146376,-0.0056830532669045,-0.0799362695628422,-0.121380148322359,-0.120814746696472,-0.100783226426364,-0.0827272675256487,-0.0491955982434906,-0.00107411851060818,0.0527214373356769,0.115043998131381,0.156822240371162,0.183278083838595,0.199775607516837,0.211017742515127,0.213483439433035,0.21557897731109,0.213973914524991,0.217537029559341,0.213321951279565,0.214189242938933,0.214688840101863,0.213760277008748,0.215751822369992,0.214100563413892,0.209614231365531,0.205108382079373,0.181965058364963,0.149133913751522,0.0977449561740826,0.0474437919053696,0.0139901076651903,0.0235042307994107,0.0386432856169328,0.0579799996200981,0.0793544692065332,0.084818766343635,0.112912965867997,0.149043188972694,0.173526869197136,0.195018433047852,0.210779073972642,0.210957001555779,0.216388002280416,0.214960873741969,0.217160445909551,0.215320509320849,0.215425163674949,0.21520642679256,0.216554925477752,0.217036266403056,0.214618039462703,0.217286785530109,0.216375684220919,0.215902555169787,0.210833206589915,0.205344474851662,0.194317500589451,0.171089045242224,0.159627135850075,0.163967442715839,0.163803222090781,0.178099839761239,0.181585881486848,0.180578140338132,0.186980218963981,0.196397478186094,0.200857042148369,0.211295843597872,0.213075031095702,0.213437602527446,0.217075254967754,0.215293155395353,0.215317138269022,0.214866043156858,0.217038383738232,0.215468395906517,0.216741017999871,0.215653855006812,0.214551456181961,0.214699951317,0.215105140662638,0.214434955162525,0.216798437122588,0.213730831637496,0.218907911818683,0.218978706052539,0.217659249141303,0.219233832153616,0.214713966277459,0.214461016517155,0.214492073306462,0.215326710506787,0.215521507493063,0.214811866330405,0.213214490124636,0.215382087742921,0.215038176983207,0.213822603213359,0.214452733739277,0.213204335655113,0.216343045624021,0.216388614123555,-0.231971203647905,-0.220703581927845,-0.223559265814829,-0.221180535756352,-0.223601932553694,-0.223384441380078,-0.220556236852392,-0.222954796959365,-0.221370532345,-0.220079400169984,-0.222654846868233,-0.222305032031725,-0.221970763495267,-0.223076998362236,-0.219989895266044,-0.220151885731447,-0.222263270318005,-0.221587623183283,-0.222555511411651,-0.219941153578438,-0.222780814604987,-0.222276469698292,-0.221239791554086,-0.221352410595082,-0.222274667746412,-0.223270559707183,-0.222658932375369,-0.223310889860195,-0.222172766598792,-0.223274691951983,-0.223328519020593,-0.221449127355748,-0.222148591129656,-0.223434450863965,-0.219848863262639,-0.221913281447974,-0.222763072729713,-0.22207620525623,-0.222591352158828,-0.216182554257955,-0.219350062602627,-0.221567007062095,-0.216999188487848,-0.216352796412417,-0.218023580998888,-0.217347138141529,-0.223021981181728,-0.222541457433669,-0.222282260607397,-0.225480796125289,-0.221189545715078,-0.223869269788471,-0.223610416612506,-0.222267011560396,-0.220353060683001,-0.221044098144156,-0.2198626951008,-0.222482186899307,-0.222508216863288,-0.221545346883066,-0.22108738362339,-0.220104294642584,-0.223610693984458,-0.220305082195687,-0.222851893177546,-0.22081632261593,-0.213884475870862,-0.201839566723328,-0.199270466351153,-0.190446837078937,-0.185294704352092,-0.171443414118701,-0.180227656650068,-0.194124498183973,-0.19430598616459,-0.198977268258363,-0.200721850811048,-0.2073285139235,-0.212225054138396,-0.2166106542134,-0.222360172782654,-0.223215843123038,-0.221870611421862,-0.21963855421557,-0.222090571301409,-0.223870984235805,-0.220926495625095,-0.220900947739778,-0.221037883909413,-0.220988861072015,-0.222259012099364,-0.222368933213032,-0.225129914046713,-0.221609277166739,-0.205358445721362,-0.198147215072204,-0.193361609287315,-0.18183071981783,-0.167378235374948,-0.163572173969352,-0.168891770042944,-0.178059633291237,-0.188994321773521,-0.191031890122621,-0.196666184337367,-0.208539915552375,-0.21616267893778,-0.216365444505847,-0.219807245479884,-0.221433796246054,-0.220794820830501,-0.222600443337572,-0.223861788945442,-0.219649804502278,-0.220043235527803,-0.220255607277669,-0.220521239234925,-0.222070058071692,-0.222643247861876,-0.220946552633482,-0.223031047126997,-0.213854108834961,-0.202445353164628,-0.190680170167322,-0.17775722724239,-0.168770262046116,-0.16082681157628,-0.166171272863113,-0.161284604188321,-0.166000459231529,-0.176939591124302,-0.186531595962691,-0.210008688194618,-0.224149225433463,-0.222419604137615,-0.214122136415,-0.215455402137467,-0.219427388718974,-0.219219640335662,-0.22039734127936,-0.220369126832691,-0.221985148793736,-0.222777812258192,-0.221593638556394,-0.223727872686172,-0.218865166520805,-0.218908466079305,-0.220212615766605,-0.216129595311604,-0.1953268370591,-0.177359778982273,-0.137105703438582,-0.0882720731977535,-0.0589382674122117,-0.0365018345139463,-0.0148601572425112,-0.00972973843632775,-0.0155446187262676,-0.0240200321596739,-0.0642981475577451,-0.111607249042179,-0.151618506636937,-0.17662441539717,-0.190832478887644,-0.20183871873344,-0.211045581410303,-0.217598738858264,-0.219129458763891,-0.223130663965232,-0.222858843603508,-0.222675396828589,-0.221823279580355,-0.224479783726179,-0.220834053896391,-0.223429408208371,-0.214958866247179,-0.196858888624085,-0.165469291543372,-0.107893409444464,-0.0399247913422646,0.0381821160335532,0.0940065601872753,0.140582289682163,0.163224209595803,0.159387576371617,0.15131673230953,0.122675296654486,0.0536483682692904,-0.0294025726625949,-0.0881596176892421,-0.137042459712023,-0.170792593398005,-0.188208967747679,-0.188931749039105,-0.207037188207738,-0.214972927828507,-0.219694598799726,-0.222653531450582,-0.221379515106305,-0.220000569756277,-0.222612254745825,-0.226852369030998,-0.227682574319446,-0.21498064684335,-0.180168374990021,-0.114065628060092,-0.04817309437213,0.0530187510103478,0.152534402300858,0.203265683185396,0.222900554247313,0.221022530858515,0.216758476004228,0.198784337266062,0.158431597780291,0.082091999142829,0.00710329305627032,-0.0596743799436137,-0.113738099487089,-0.152961253032823,-0.167766618634399,-0.17680701422152,-0.204568422199809,-0.216535528969007,-0.220316914704217,-0.220454724276218,-0.223131704766644,-0.224357685769518,-0.226145287531051,-0.228248992574359,-0.222952924342729,-0.198470869291268,-0.159614875763091,-0.0792676081801948,0.0209459014825214,0.146379882872343,0.208879636046655,0.21760041113226,0.174658676549509,0.12602929894114,0.0983327003006093,0.0906051840340831,0.0771926583496574,0.0580031806843183,0.00816533749911618,-0.0532700500191785,-0.09815014382554,-0.144164517956589,-0.163873613357634,-0.1724624779529,-0.202984671173283,-0.213821911463916,-0.221103539012941,-0.222207549860165,-0.221240473876239,-0.226689734934202,-0.226151094369895,-0.224901529596933,-0.216310322640262,-0.189103584383688,-0.138088710206206,-0.0340021155047182,0.0963851372231967,0.199335940751308,0.215716740084903,0.153204151486441,0.0444519678708315,-0.0445840754862696,-0.073156731866835,-0.0328243233184012,0.0230592054690659,0.0666087848122207,0.0275436077188073,-0.0318646189565262,-0.0945781514917397,-0.149108872574566,-0.167903758912928,-0.180190452221731,-0.20513296722742,-0.217352597095097,-0.220474454861917,-0.221340906918247,-0.222926848781484,-0.224099477096713,-0.227639906907703,-0.223844624402485,-0.203772799548064,-0.18214531573412,-0.0864219269050665,0.0286717548643278,0.157613299641677,0.217946742262699,0.182903049100578,0.074495206925898,-0.0633827982931737,-0.152559349987443,-0.126666760246816,-0.0362019424832044,0.0663241295229456,0.110171051844714,0.0697064402603201,-0.0102910836733577,-0.100550367161596,-0.169426616865731,-0.199934181446479,-0.195431942285662,-0.199175286787604,-0.213990796682452,-0.219957748087871,-0.220442162323752,-0.222457582711808,-0.224176977533573,-0.227115115784871,-0.223030467804625,-0.198469689532343,-0.154864514071828,-0.0610589363121759,0.0739748308534249,0.17139852941299,0.201412346997746,0.158638529715761,0.0561703797535673,-0.0638359801983948,-0.0905254355991115,-0.0334302451586174,0.0774406111086761,0.166722248851392,0.180982642158204,0.104805740283063,-0.0122438437549328,-0.14670966583186,-0.227638291326468,-0.243333007877039,-0.219859812504796,-0.207200874705116,-0.217141811369126,-0.221041364643539,-0.219974597466073,-0.222837015090614,-0.220931625693447,-0.223759486949884,-0.216359383987826,-0.195509270727357,-0.146125525201863,-0.0534394752560699,0.0693484044810213,0.145674331054012,0.171757972557914,0.157133882308215,0.104165251023939,0.0683981517492211,0.0696920280572471,0.127116289768782,0.211243027880389,0.251886799159485,0.210447119127661,0.105277465023427,-0.0495541545583599,-0.193184775263882,-0.260677166965399,-0.266873745162844,-0.236719323053834,-0.21787597348717,-0.221446496983529,-0.221394381860317,-0.223361344256679,-0.223136039474563,-0.223251516660702,-0.218846442316374,-0.217855152726557,-0.215641954526602,-0.169735877483498,-0.0725506897810559,0.0362009357817078,0.110446276844559,0.152063920707135,0.183473562657819,0.204942153889541,0.212504481271101,0.226913502421408,0.254097879273013,0.293576610537257,0.284862342135646,0.207865430665262,0.0453084544049688,-0.116025782680111,-0.234893314383986,-0.26515625408354,-0.277592563975452,-0.246805198881275,-0.220049228295901,-0.222029426537767,-0.223524888926061,-0.220753769036739,-0.221709597740916,-0.220506721891759,-0.219572683081872,-0.220929475162014,-0.237430371781887,-0.214772249915915,-0.12343219863549,-0.019146672224863,0.0741401004894134,0.143928222304629,0.205418501279397,0.255748354722269,0.278310994018101,0.279052297727828,0.280406089526454,0.295417830909038,0.266134384260268,0.135593315398089,-0.0392360110039104,-0.177099322966722,-0.256100877108242,-0.264040340908665,-0.270997039815095,-0.244627408338154,-0.220271322337216,-0.220470370028156,-0.220170099542074,-0.221245458900597,-0.220414064981254,-0.219983857498972,-0.222313108800445,-0.236334372083975,-0.272555553890364,-0.271686892944932,-0.192086531780311,-0.0764141864915071,0.035253829638778,0.125676306406365,0.195827342395479,0.253807051329198,0.258745024649903,0.239487644129095,0.232986877897707,0.241117384147787,0.186147723790381,0.0544467741683574,-0.100812658966659,-0.195227529317626,-0.237862965768023,-0.263709879656439,-0.259243869057097,-0.242020825053671,-0.219180541108526,-0.222625598501205,-0.222920814363753,-0.220786896497155,-0.223263592834575,-0.222455388659829,-0.221977649508228,-0.244839093514486,-0.296068115751898,-0.310983986075722,-0.252135048391061,-0.134503417795899,-0.00601690439297777,0.100270090504545,0.189123043391761,0.210400897116439,0.175740427507191,0.148376131694417,0.166787272668538,0.182943337818303,0.140929435436229,0.00700139042112163,-0.110766830141314,-0.18661227927141,-0.215254871862089,-0.241151419307355,-0.246005718641855,-0.235889375400956,-0.220895867016558,-0.220315742901813,-0.221015523690883,-0.221485578069752,-0.219770773502378,-0.220216072252777,-0.222527863183783,-0.246417946406117,-0.302117103549434,-0.32090923107543,-0.276690984395063,-0.167366091359434,-0.0250648115454398,0.100713656329382,0.162920929836977,0.138818926478596,0.0762684238869907,0.0680658516709578,0.115012925648078,0.148061763944585,0.112404716524114,0.00329559545727209,-0.0984340189034146,-0.15779792837563,-0.196577214664485,-0.222452518839571,-0.227684954059257,-0.229673073696014,-0.223403226209437,-0.220238199149516,-0.219792374858898,-0.223191883079642,-0.223299761025983,-0.220342294998411,-0.222483092033488,-0.24861625587521,-0.306155239538889,-0.315239400290757,-0.253808387686046,-0.154309048776771,-0.0296889902413764,0.0839747499971394,0.112664857711321,0.0596786067928738,-0.0164128667455562,0.00780908667554618,0.082400226553801,0.127159024723568,0.0840530337885788,0.0101358281056266,-0.0728220379128008,-0.13411334207068,-0.189753821601171,-0.218868512125349,-0.222827112112814,-0.228549248117362,-0.226370798166685,-0.220756906327355,-0.220838544300982,-0.221816485361567,-0.220957700878344,-0.220876935704142,-0.225089114934278,-0.248302578720519,-0.303426377943936,-0.312531464491271,-0.243565088139274,-0.133062469199039,-0.030620085898332,0.0460104147636488,0.0399049067780067,-0.0291395149637555,-0.062607385977152,-0.0116309858418255,0.0699507156415053,0.118732461667019,0.0953581881892172,0.0292643692521965,-0.0512587292143848,-0.118959471894823,-0.171822676286257,-0.19933020836294,-0.216511762454299,-0.226709224459546,-0.230194357614163,-0.222693423377378,-0.222635149677082,-0.221652444403738,-0.221669569765316,-0.223209953906208,-0.22526230788819,-0.24185235328071,-0.281874254026102,-0.286010574997237,-0.225983646067623,-0.153658850702705,-0.0644007455429906,-0.00553274752752158,-0.0335773565250347,-0.0525791850156773,-0.0385543387819879,0.0181124794032613,0.0812959841675588,0.126176396347708,0.10996135015528,0.0371643840172662,-0.0412393871180966,-0.12008049734699,-0.168955733774024,-0.193988587926887,-0.215377577893697,-0.223852651558254,-0.223957665506935,-0.220551757964401,-0.220452054108113,-0.219619462646933,-0.223141509535521,-0.222282218288135,-0.221741723222993,-0.229643946222595,-0.253808490450216,-0.247235910923054,-0.196579787076229,-0.153789093691244,-0.0856520724264559,-0.0343130844201445,-0.0273906117015621,0.00375915935366002,0.0368011282108243,0.0827482642304319,0.112480930900831,0.136586471976791,0.110776945898989,0.0336772008239513,-0.0495289613116244,-0.122983180121911,-0.174902233753007,-0.196003803746492,-0.216980942244679,-0.222299261790364,-0.226563618106294,-0.219797313933488,-0.221404470283342,-0.222039755927929,-0.223511089756723,-0.223746015550775,-0.223455922034977,-0.223147577036762,-0.218323177041367,-0.209271690366215,-0.172420170350976,-0.127016752646409,-0.0753814638450468,-0.0236704784190341,0.0292001079311294,0.0793766003266236,0.0947859067967877,0.108894632156465,0.123049491033078,0.11616549887223,0.0774508294595541,0.0160725398399885,-0.0676517889788202,-0.13050067212895,-0.172479145105586,-0.19892280794639,-0.221065163920142,-0.225336951263943,-0.224417460890746,-0.223660269666472,-0.221466693959218,-0.220453893628471,-0.219743376688845,-0.223160514009524,-0.22256534619701,-0.2217716654186,-0.210631786626414,-0.187806831256811,-0.150599085088044,-0.0993919431134498,-0.0352857384015851,0.0179915883817348,0.0855808661659812,0.136711912272236,0.146269041996318,0.128851372742058,0.113159335459241,0.0942646716818398,0.0558918663781559,-0.0195723863665822,-0.0960246683876438,-0.142364682617742,-0.180035616550703,-0.208058057303744,-0.217388044422639,-0.220504150563941,-0.221028120224022,-0.220920723397608,-0.223303671196154,-0.223412359139913,-0.223893543233614,-0.221485023200579,-0.222492902644513,-0.223367845837998,-0.218649343004608,-0.204574952494605,-0.174700759449155,-0.115074466532523,-0.0494117699065336,0.0194475647941496,0.0922922347243424,0.129468476425318,0.123248887086927,0.099722480611018,0.0785759493616606,0.0426433116531547,-0.0070243173583975,-0.0626371509778135,-0.124357530776421,-0.166073286171933,-0.195246914734112,-0.210510119523662,-0.216143826996593,-0.219983902801022,-0.22150173214484,-0.223065497725985,-0.223026214653025,-0.219823827773586,-0.219679381889985,-0.221747038674558,-0.221282342669879,-0.222832757376834,-0.218074091484501,-0.216891700328762,-0.214453569547495,-0.189305481798574,-0.16313826633753,-0.115051219870375,-0.0675939762569193,-0.0324402724018567,-0.0413045007157995,-0.0594817088859378,-0.0709627793554929,-0.0884822180403547,-0.0959336399221365,-0.122735766257864,-0.155520044889151,-0.181894950351934,-0.201822071355921,-0.217594135260568,-0.218621263870087,-0.223771466772875,-0.222780885256211,-0.222236132187578,-0.223528042440628,-0.22389386898271,-0.22220928141081,-0.220358578458633,-0.223813703515079,-0.219142257509282,-0.223283237959644,-0.223757663988488,-0.225073049533049,-0.219501566181739,-0.218032224784672,-0.206977140737068,-0.189543800877108,-0.173188703895176,-0.178122712415429,-0.180782944421675,-0.190132672580136,-0.189898212234434,-0.193254458737696,-0.195932322589705,-0.200634448446682,-0.20894632966212,-0.217407481369582,-0.219668051522789,-0.221904112633137,-0.222497647901655,-0.221340143192463,-0.222782834555542,-0.221136949745023,-0.220000079158137,-0.220092533593285,-0.223076014312776,-0.220447640875795,-0.221542174937379,-0.220959339342655,-0.223909547247106,-0.219966432853368,-0.222912358261442,-0.2214781130764,-0.225608407788456,-0.224733265143626,-0.224282934210092,-0.223051374703225,-0.221414407145325,-0.222445022730267,-0.222948086409681,-0.222393966937348,-0.221451237928918,-0.223337783454624,-0.219063673272796,-0.223643350789175,-0.221754855293417,-0.22094744591564,-0.220461087878972,-0.222677298401617,-0.220688107277947,-0.220509077428764,0.227694968928977,0.243149939215542,0.245698328496903,0.243266697735588,0.246189057579631,0.244036987308319,0.24574262805823,0.244242233702811,0.243727397581074,0.244107333465615,0.242220134270565,0.24435394070971,0.242846542600582,0.24587052485652,0.242642378866454,0.244341447924995,0.244211023940153,0.2432251963119,0.245593240762622,0.244571802393835,0.246050398849771,0.242252328373822,0.245196476112641,0.242765054880209,0.242250697254989,0.243624570419518,0.243583938367187,0.243378795876578,0.242408650333574,0.243524991482867,0.242428980693473,0.243348034970789,0.24626441002469,0.244088475299416,0.242155445986671,0.243873807947498,0.24601919986217,0.242256992733992,0.246992901717216,0.239760445738778,0.239995619430078,0.241284839459704,0.237705297498744,0.240476975373484,0.243274511216825,0.241389119199104,0.243010176699925,0.244110588200024,0.245765838848967,0.245568600379583,0.243204079751866,0.242532144368532,0.245587845558741,0.246157102752924,0.242724861770573,0.245823168205941,0.244276486881451,0.243719529200656,0.245125542080908,0.245684060244743,0.245021366202749,0.243752177621447,0.24485234981011,0.244067035011281,0.244307838866669,0.244633430437417,0.240696028412413,0.227667058223095,0.225257100216062,0.218810071170483,0.211198461318868,0.19998884735144,0.211856243421115,0.220390244530943,0.22126816361058,0.226591679988905,0.224911844583945,0.230081730449246,0.23457643236125,0.24046252729597,0.244601911097818,0.244071401501842,0.244266281675535,0.244078883649883,0.245126543440308,0.244216113401226,0.244559753946639,0.246141373570973,0.244479399607606,0.242902623335921,0.244653074209431,0.244163290042195,0.243734019700865,0.245564982756783,0.230259215780759,0.221314338995882,0.215230552128427,0.206643802852048,0.19412357066769,0.192457678544374,0.197932399937463,0.205056294934293,0.213992693954237,0.214739206589146,0.217651102514074,0.229661665651899,0.236116631444458,0.23718922938279,0.243483580769956,0.244217709364945,0.241555507537619,0.24443209165026,0.245203582897841,0.242234280696789,0.245036664922086,0.243834498316626,0.246552180373576,0.245428459676295,0.242486726849615,0.241882182225609,0.245680094473342,0.233937362746015,0.21910024426546,0.200575797681442,0.187767700143343,0.168095688767275,0.160792630595465,0.170449023545986,0.175319056613159,0.174263818615897,0.190733111296726,0.203554914142444,0.22935454974665,0.239583392795654,0.239069220506652,0.236520994575669,0.235134747465458,0.237226273678411,0.240578816136268,0.242928067826187,0.243437445155629,0.242230918270098,0.244930559031816,0.243801133978608,0.245584491225776,0.241535181050444,0.240949297817865,0.231721400189238,0.219918306260575,0.188772260243716,0.157790465811832,0.111890158914397,0.05315120555179,0.0265602018101949,0.0111580292475215,-0.00436529952609362,-0.0115833008266903,-0.006856881301907,0.00432738133658619,0.0510660530248537,0.1084234793056,0.150355386430914,0.177312844676117,0.203462864640083,0.212799474754019,0.226521252910158,0.238619576921177,0.238622397880361,0.242560109972,0.246028768151808,0.244061054084689,0.245453232577516,0.244498328623317,0.242027088654622,0.235141915168881,0.221771926967949,0.186628133842254,0.140256536934032,0.0665202644316377,-0.00685271687106791,-0.0761061805905738,-0.128421745957887,-0.172197875630788,-0.185016027254452,-0.186843168695561,-0.180478296150815,-0.151967916124606,-0.0877547303472856,0.0015580882253123,0.0738009230737165,0.119743484679069,0.1713445551009,0.197826058397057,0.208093693741528,0.226363970567942,0.235769748749062,0.244799547917752,0.24582287439063,0.24278455215415,0.244077390970924,0.242850008988754,0.243963808126508,0.237428332830534,0.211614031666078,0.159434408768068,0.0793654812957909,0.00907421133165253,-0.0874847184564444,-0.188828050993098,-0.237256987431635,-0.245199991801833,-0.233924682411848,-0.230374241213852,-0.214321045003709,-0.182339466122316,-0.11358835434298,-0.0421004368258229,0.0403535556386788,0.0974793042733799,0.153727847285674,0.183825511356904,0.196600961256601,0.224378511654102,0.238401294814099,0.245755175918971,0.246266891366544,0.243352223684986,0.246138086559441,0.247956360768896,0.244696097795518,0.234008578614439,0.199294629514995,0.14490233051418,0.0532192913958777,-0.0498036411781751,-0.17013301048434,-0.234878777837511,-0.233931461247727,-0.172770693500471,-0.114450179713051,-0.0884101913290051,-0.0936749894476269,-0.0965889467751096,-0.0876228805688639,-0.0362490589566437,0.035168035677532,0.0907936452029597,0.146560700540988,0.186062541132705,0.195880695078986,0.220558244595294,0.23475384747352,0.245501516667091,0.243995037049366,0.24418847052492,0.249995878325069,0.251066061114922,0.243718837986449,0.231396046211043,0.195750002239893,0.130681646440033,0.0122649509071086,-0.11604352593314,-0.219822718270991,-0.22663983862169,-0.154344148511409,-0.0262972024489234,0.0746073295581651,0.0884176648624008,0.029369023907258,-0.0459850354980182,-0.0944458781254649,-0.0537705602684293,0.013404136836101,0.0928420017521383,0.165325137520266,0.186235837348366,0.20051790509211,0.223292687949695,0.2392271483827,0.246073419464969,0.245345707440806,0.24625543260294,0.247144968862871,0.25044276941533,0.242524144015906,0.224260963326227,0.194363585835785,0.0843192859764472,-0.0447833964424932,-0.171269395368313,-0.22612774260918,-0.180961957705196,-0.0636381086582467,0.0890902243251697,0.171113275953633,0.12856189395026,0.0188401680190419,-0.0950112298200302,-0.133549095167659,-0.0937356535892848,-0.00603358421055599,0.10013216422299,0.178892482934228,0.216492202557831,0.214160009792935,0.219606128073726,0.237040334263031,0.242436285415582,0.244437819091756,0.246843210328356,0.247452289487187,0.248133616763083,0.245120617916579,0.216697058841845,0.164587093970963,0.0529686589091231,-0.0858622932531875,-0.182115258557417,-0.20835716514996,-0.155484784204013,-0.0513938452859853,0.0726456958547023,0.0870099176285893,0.0235094686348819,-0.0946023899738292,-0.190590680896268,-0.206765504264502,-0.126081186962108,0.00492086204604458,0.150418288910067,0.238022064113404,0.25974342122198,0.239999004175092,0.229612282087274,0.240457436162683,0.245949279688782,0.243013310025761,0.246864538032476,0.245647489317193,0.246861879196814,0.238917726002217,0.214734003053547,0.156431256725774,0.0491430116767074,-0.0810881005938917,-0.158506340488165,-0.183759409665367,-0.176565904673556,-0.126208111296615,-0.0797733398827412,-0.0841989350492549,-0.140696194766487,-0.229440513256843,-0.275106193800362,-0.228499545663376,-0.116373950190379,0.0503995781926155,0.210368102735529,0.28619877751537,0.289655404563592,0.257758297461672,0.236558983803303,0.244040284758106,0.246541322738776,0.2438728557022,0.24522226556785,0.244596802415659,0.245500053784976,0.238723541915959,0.229613803833173,0.176878841763844,0.0633519400994825,-0.0485283227688369,-0.129745900544321,-0.172922252037242,-0.212406882644759,-0.238794934257403,-0.225785730724908,-0.239341593601658,-0.265556082798597,-0.308216215014721,-0.305610219175145,-0.228428670822656,-0.0599053672127585,0.119737429048749,0.247205856346837,0.289505013103047,0.301725489636802,0.269291912792841,0.242987098349986,0.241283518412363,0.246171168995791,0.245916686370893,0.243448612598986,0.244475960018396,0.243098041938918,0.243288645507902,0.255739019273895,0.222902432322199,0.121940260981197,0.00542817638914082,-0.0912503656240159,-0.166691276773758,-0.239840530431731,-0.287544035795876,-0.287313314806747,-0.279687623872877,-0.276826670895411,-0.303203845170484,-0.286834780206601,-0.160087890301726,0.0137544438569834,0.165927338928171,0.264282417360383,0.286728695651798,0.300272563773373,0.267788143105949,0.24480409475171,0.24432489786659,0.246222486045859,0.246377649442653,0.245231007093919,0.244144247534517,0.242886042182875,0.251556329947236,0.289805856421421,0.285613640361461,0.193320994821243,0.0715750193090963,-0.0458200957774652,-0.142514671180943,-0.216916729080486,-0.261687406665487,-0.245140222154615,-0.219471190492428,-0.215078796083516,-0.246947330952431,-0.210122807754345,-0.0801577216141146,0.0726874208488917,0.17609412942112,0.237352519151691,0.278079768873103,0.283297255874161,0.26434615987835,0.240219843214741,0.243600226785987,0.244034412241748,0.246437004759849,0.244047796663737,0.242257714650893,0.241408461669234,0.261623991185752,0.312937256898178,0.324227079330966,0.259708828316939,0.140621034299286,0.00131656783881156,-0.108967416940415,-0.192933327288121,-0.195715275975855,-0.147385953628214,-0.112690128108626,-0.138730421558594,-0.18159739097269,-0.159318707444223,-0.0269912726092413,0.0878612294781919,0.163761805303747,0.211854377194019,0.254898269871753,0.268659463492505,0.258450806215843,0.243495075532854,0.245838138151278,0.244022785714761,0.245519208176377,0.243877100169447,0.241605797000389,0.240080584862426,0.262085525716788,0.319978619547207,0.336292713069845,0.286808381390034,0.174315365011957,0.0297480739658432,-0.0952933857836337,-0.146860827019612,-0.110104019677715,-0.0325529319526692,-0.0222018926998624,-0.0833532262295782,-0.143649425244447,-0.121889346455005,-0.0200556449118231,0.0738181708289942,0.131288253402938,0.18743550027495,0.229429524981568,0.25047800040705,0.250590618019222,0.24258102391722,0.24151603919747,0.242980201267373,0.246454638116566,0.243734598552475,0.242809646366786,0.240686081808231,0.259641109968214,0.311821572531737,0.326912617016402,0.262432235487355,0.159037241588859,0.0322262502642127,-0.0734921334524216,-0.0931349452703753,-0.0227110007773424,0.0626631568138572,0.0360263677340509,-0.0540990284472273,-0.117491347392622,-0.0930002107470393,-0.0241959381063698,0.0457550935252884,0.109316062110983,0.178294510581796,0.219744584379145,0.239934321233638,0.250774130087983,0.244350746918266,0.24425264567592,0.244479977641865,0.242345340541725,0.242306220053324,0.242897478250315,0.241754824527756,0.256484331735603,0.306972533236974,0.311582943489516,0.238521466032567,0.129751709594419,0.0305149870550588,-0.0369220202954349,-0.0160196615625311,0.0712044173978327,0.111550789607841,0.0521536973703452,-0.0403574727484016,-0.11135852362623,-0.10032557945735,-0.0509359725889619,0.0199679414595796,0.094756056308124,0.165234971746963,0.204605781337265,0.23310104935999,0.247948319883096,0.248338518998318,0.24494923816712,0.242950372116351,0.246027987663385,0.242131504882583,0.242024874060349,0.238476668796453,0.250871802514448,0.283210367472137,0.275222149331405,0.20161091777445,0.137351935387875,0.0497172420613767,0.00807632500821031,0.0491500067778044,0.0849350682398198,0.0745832342569612,0.0168043605550054,-0.0602955901212081,-0.125052724838081,-0.134350103772869,-0.0679008095836051,0.00616355666077536,0.0968645223816142,0.162110863660253,0.196842328261187,0.229012746030485,0.242458132692829,0.244051525866855,0.243303744602941,0.245836795949121,0.24531012024194,0.242393625264049,0.242253139847253,0.243010096806588,0.23821734043864,0.250716575808037,0.224285543871086,0.158620336654127,0.114153651417116,0.0505317403187808,0.0152638648029816,0.0246975920461871,0.00660994485354739,-0.0221397779359576,-0.0724879685733216,-0.116772680378658,-0.158103113728354,-0.149617175077291,-0.0671276699094058,0.0144142612114256,0.111864540132699,0.171746934841651,0.205884393129899,0.236462576629828,0.244697008921768,0.243365375924634,0.242672599424453,0.24607610582791,0.245166820008607,0.245080426867602,0.244320644215103,0.240555453119053,0.235138226529007,0.2234556185549,0.193025434407077,0.140417837352298,0.077408810577211,0.0230156945588999,-0.0269298293634518,-0.0646982574861785,-0.107285326868211,-0.120369521088758,-0.13168280372367,-0.151543137195577,-0.151222800387609,-0.116731433463798,-0.0464925071296227,0.0529095247271494,0.125048783096675,0.18171596912673,0.218035526149361,0.237934264144323,0.246182314571168,0.242836296997626,0.242549737382433,0.242387565728957,0.244696079701598,0.246530384220296,0.243450431240265,0.243400520116045,0.236354091929561,0.217656499307081,0.181746256025471,0.131895136313391,0.0637291199343716,-0.00868247890089104,-0.0672568972676561,-0.137705055577164,-0.187182590081754,-0.190003052084774,-0.166426049655548,-0.150281651368621,-0.126187236174155,-0.080216045648335,0.0044653920385313,0.0971218447083384,0.153623892891033,0.199689925744564,0.231176082314255,0.239160493825015,0.246887683135018,0.243921768334328,0.245486340932541,0.245068051500039,0.244545856574314,0.245538107195723,0.244736508520537,0.24487371080344,0.245374453916061,0.233726211511513,0.211388670909093,0.17209608940567,0.106079752676385,0.0320431410401871,-0.0389796617963864,-0.11593622988446,-0.15985574138333,-0.154687540886553,-0.126627804938234,-0.0971033914380556,-0.0520114745911349,0.00320447677056954,0.0692947356208478,0.134460442698444,0.180511319469442,0.211960051054745,0.229596651283357,0.240513547911988,0.243786508981775,0.244722279394664,0.24239547859265,0.245088450186161,0.24389449157792,0.242709533970206,0.245885299521859,0.242873981695366,0.243920217949751,0.239648261085821,0.240657668412661,0.234193465521939,0.207612515948042,0.18492967006616,0.135831331798648,0.0868229999008441,0.0517553852716166,0.0530607990574394,0.071406487994906,0.0802769900051015,0.0948543215798403,0.103842629640586,0.139850967857401,0.173530731039069,0.200416248207817,0.223743689921912,0.236222938936759,0.241132015441819,0.244144225400407,0.245966501626988,0.243603390838612,0.242615037046395,0.242734412572102,0.245115858294467,0.244678448546432,0.243654932953879,0.245650294485204,0.245681751919535,0.24355505007686,0.244413556165293,0.242274055958205,0.243171858443557,0.234845289032646,0.215247307441198,0.199931420963067,0.197446688585861,0.199500777710696,0.208065317121665,0.205176836494543,0.212451267451971,0.218644116287346,0.225379772338082,0.229422965044414,0.237962817093071,0.24337347678154,0.243948828422194,0.243133841869688,0.242353174861908,0.24631322507122,0.242691738591785,0.246268380348603,0.244552256590081,0.244413244047541,0.243695216813653,0.244382647741922,0.24383988582619,0.243433391840857,0.244122352555143,0.24394325002477,0.242071885477952,0.24808621931176,0.244066449510429,0.247095953600305,0.247509887060967,0.244827844225013,0.243815745476142,0.244160816056904,0.245040945353434,0.244728328663829,0.245005395223003,0.244140107647777,0.242871852720624,0.245191897300996,0.242587936778505,0.242904897757753,0.244530805058133,0.245545673491645,0.244155191535573,-0.241880111009331,-0.255322570933372,-0.257717405911445,-0.257947766694823,-0.254211857676282,-0.256234769288977,-0.255985125313792,-0.257262691542284,-0.257519432516061,-0.256183455546415,-0.256202821758246,-0.256073590379566,-0.257823019040392,-0.25514078781804,-0.254923748610209,-0.257335674544906,-0.254036074047978,-0.257721435627817,-0.258303851082652,-0.254905453235186,-0.257802166199279,-0.254490089900432,-0.255441770670488,-0.255320454488075,-0.257268829742368,-0.257653555244128,-0.255429292649529,-0.255091409787956,-0.256443556819404,-0.256799998552681,-0.255675751409392,-0.257253281660504,-0.256068795728616,-0.256333437492913,-0.255543674704812,-0.258289058978969,-0.25527207771031,-0.254611784174422,-0.258184168676486,-0.255118583490168,-0.252768142794749,-0.256668759223447,-0.253109962689289,-0.25322357962376,-0.255915779855619,-0.256805274459698,-0.255289995260639,-0.256484890648099,-0.25994236733423,-0.259870365103794,-0.25739486709988,-0.255152279944984,-0.258060104689848,-0.254833691103948,-0.25563426101094,-0.256856697065388,-0.254556506428532,-0.25772401961332,-0.256577142096749,-0.258213756534805,-0.257153814970991,-0.254365139933881,-0.254931753514415,-0.2574215420017,-0.253653044205131,-0.256739067620185,-0.256987910162795,-0.252729384616608,-0.248321744573981,-0.246315458277388,-0.238421765627959,-0.233418709531077,-0.245942220810945,-0.250576803945572,-0.252022327105252,-0.257190453566202,-0.253525196020583,-0.255165048852039,-0.254678824130285,-0.255475543310543,-0.257820914272195,-0.255792401755971,-0.255086334100491,-0.25606897463847,-0.254501224739525,-0.255331540936285,-0.257750491293536,-0.257995034834878,-0.25577381145229,-0.254776192448241,-0.258307829046328,-0.258160480776092,-0.258347076907285,-0.256886442240981,-0.252916123869241,-0.245035591050499,-0.23861264392511,-0.230133533911603,-0.228808030713319,-0.239468514223589,-0.250135428727161,-0.259909781731086,-0.269847167222539,-0.270685279252003,-0.275010607496184,-0.274831187150203,-0.266040490387231,-0.260686225738256,-0.259173006984073,-0.256677418927312,-0.254124732837846,-0.254900383842325,-0.2580358286795,-0.25555903175081,-0.257028039959328,-0.254606474192026,-0.254691150339207,-0.257112922572667,-0.256286981968163,-0.249196582861719,-0.248969359714808,-0.233550022671349,-0.209262180357533,-0.186821286778051,-0.171515672727966,-0.157306183770125,-0.153379312034325,-0.170124137301183,-0.179050873202912,-0.189689394499202,-0.216220328714338,-0.247981882900606,-0.268375744401896,-0.27425502043852,-0.269881123291423,-0.257716147659868,-0.256798291817976,-0.253159743658638,-0.25304252746484,-0.257465881577845,-0.257281921410297,-0.258397735269946,-0.256819222446676,-0.257015718781224,-0.25580773904293,-0.252692599014583,-0.240834226053572,-0.224234621730306,-0.199375880884677,-0.156517680007902,-0.113163534141786,-0.0539756070495273,0.0108286974889979,0.0428388104137806,0.047578595658458,0.0580486656496549,0.0633886129946371,0.060067687483865,0.0415933970121656,-0.0234891709241853,-0.0979306785825037,-0.151683121241306,-0.186864934401239,-0.221689354176619,-0.237385530479182,-0.247128106656924,-0.248278691432422,-0.251396922503472,-0.255951097489423,-0.25681780368479,-0.254752578427835,-0.256877373830472,-0.254836278471199,-0.242864674838456,-0.22700307742663,-0.195667347232259,-0.143552252363609,-0.0736794588826516,-0.00103148981649847,0.069115359244495,0.134759413314086,0.180103564631179,0.210873914150815,0.220147058583268,0.216954595133263,0.21761604933402,0.193636599166764,0.128342806229689,0.0373831432096342,-0.0551915762864232,-0.12482604086016,-0.189091628111932,-0.223807321309246,-0.232740567559097,-0.244225684659481,-0.249852899320727,-0.253802590196058,-0.256529286267433,-0.257630214160491,-0.257691823834886,-0.248528221226785,-0.233963522209087,-0.21060692307954,-0.167267788609187,-0.0946926897186028,-0.00815195372685981,0.0580083790728619,0.142680566626405,0.226132793137856,0.26238504127572,0.255696935193448,0.233897075494692,0.228501465277802,0.233995978854628,0.213598743247414,0.164871527510535,0.0944298960257144,-0.000262020168691984,-0.0761328301973227,-0.159361370158265,-0.213694550227157,-0.23097479067061,-0.23917143665095,-0.249047817116809,-0.256759831205918,-0.256229087398111,-0.255205352901862,-0.256318896611355,-0.247963855666696,-0.23243124543595,-0.20700134704167,-0.155884249045571,-0.0902412716187566,0.000204341880720094,0.0947808756452476,0.19830455022717,0.24295303140665,0.234084761321408,0.156860880568084,0.0884453270018903,0.0744386912450457,0.105248853354181,0.133200048116449,0.137386106469299,0.0976718716903087,0.0220148912580012,-0.0520982006929749,-0.132049166877451,-0.199965545005025,-0.218788112092172,-0.239745322478757,-0.24859488016214,-0.256624546620102,-0.254316143666899,-0.256625652877111,-0.256481921639996,-0.250596318370631,-0.234069551489596,-0.206844280884258,-0.162399283392228,-0.0949856674323633,0.0200344172365411,0.124301757118877,0.216151947962276,0.210687690865282,0.127091306779266,-0.0112148984301462,-0.101102808413378,-0.0796929511300728,0.00929324877587103,0.0946211831144705,0.146808472167982,0.118581577099612,0.0524405132496407,-0.0399105691772256,-0.127983178393019,-0.181607117959101,-0.213476604474405,-0.240273640774696,-0.250826003885512,-0.257918707012539,-0.254078333997061,-0.256405684178466,-0.25595609020267,-0.254487711084539,-0.239159853571638,-0.214116481955886,-0.172774139396567,-0.0683492293381726,0.0486119354868152,0.158990984723035,0.201939494801481,0.143959318642775,0.0272090895136204,-0.116392422098193,-0.166789352893692,-0.0923723205066794,0.0379373655078998,0.153577528639331,0.189330877087013,0.158681003085121,0.0699237833327094,-0.0467250302416337,-0.14316237508208,-0.201100404574018,-0.221488479595528,-0.235618280695741,-0.249850858305414,-0.254797058026808,-0.25425804489561,-0.257177840861703,-0.258875667274271,-0.256282217348497,-0.246364582385285,-0.209053479374434,-0.154923126056783,-0.0466196754436296,0.0816907336671764,0.165517094904221,0.174005932965083,0.122730665521891,0.0286264539258232,-0.0737612538943073,-0.0706708496110462,0.0128776366189575,0.129080620037776,0.220974877974909,0.242061774516741,0.170181661437651,0.0378124607285172,-0.110545276299982,-0.206892709451128,-0.236616439369584,-0.238393101425588,-0.242156226882632,-0.253366422531513,-0.254221873781944,-0.25787844210489,-0.256776560826381,-0.255075013331962,-0.25513391887842,-0.247673729704152,-0.217022936014074,-0.157302343976271,-0.0448583674014696,0.0795701383805143,0.14591104661988,0.158668069135422,0.153187210364853,0.126129654978551,0.0820477695859121,0.0878690948783854,0.14524647413154,0.235780211732748,0.282000383673643,0.241005725717339,0.140379265153506,-0.0233301673400722,-0.184996074263592,-0.265664160693042,-0.273209082838434,-0.257068912908754,-0.246533852918194,-0.254963100990258,-0.255602274857416,-0.255111371288509,-0.257566419385575,-0.255720863627317,-0.257903657827066,-0.246210145445052,-0.227294106884935,-0.174422086298756,-0.0476264827244747,0.0627366202264365,0.129963614182162,0.160966180934541,0.206331097569607,0.239043785947479,0.215346485867119,0.213086157168712,0.241321170045149,0.291475831307022,0.304377304936863,0.232274756006923,0.0773018782630634,-0.0989604828393766,-0.230371727899109,-0.280747096372689,-0.291013879385085,-0.271023747230179,-0.250055588455054,-0.253596786888743,-0.258048990811756,-0.255319260975162,-0.257471975699966,-0.258284409220165,-0.255158889515618,-0.252792286956785,-0.24267031898456,-0.206443339779783,-0.0973589903089685,0.0164829905190799,0.100981290523038,0.167536517690886,0.233458968719739,0.279376151260317,0.251878766587001,0.234081519322173,0.235549435645432,0.280229286545429,0.273718154985764,0.16531948386177,0.0133953739676044,-0.136665117291614,-0.236230953703445,-0.281051509306501,-0.297200433547786,-0.274481295323963,-0.256411838989258,-0.258345026257431,-0.255744668862018,-0.256342599956119,-0.256213647983295,-0.257117295820167,-0.253243762440639,-0.254708410207609,-0.272906869163876,-0.260824265114376,-0.171234386581092,-0.0458065806995196,0.0600569922946538,0.149178359988329,0.217547500786721,0.248003108158642,0.199959322620726,0.164936500615976,0.165958708842164,0.220898115476662,0.195091083662277,0.0904514181586278,-0.0329763659731014,-0.130273262720595,-0.205388300292908,-0.266821696138995,-0.284516891629899,-0.268730039470715,-0.252900638949556,-0.256520797866989,-0.253626466996751,-0.255935097076612,-0.258069272682702,-0.253321756656293,-0.247581894357227,-0.256417721957254,-0.286528852661485,-0.293294288656861,-0.242710528462753,-0.128086009901243,-0.000798391198127718,0.100837190889494,0.174519379580813,0.158861975076946,0.0841774010123236,0.0411177047106871,0.078246212019472,0.152245471157487,0.150476611902143,0.0457985603508062,-0.0468314896886515,-0.105367236786293,-0.169251134586652,-0.245705868712884,-0.266326623523405,-0.264318127493913,-0.25440246687889,-0.25732111334657,-0.255476259761627,-0.255790862965621,-0.254231844536834,-0.256991214570337,-0.249041407630548,-0.254787381476586,-0.29016751693245,-0.29993146810136,-0.262085028260417,-0.170785437579785,-0.0347046918492841,0.069715710741703,0.10291641688664,0.0521105118608728,-0.03589557529775,-0.0542860028113979,0.0251630565919395,0.113213084148561,0.110381734428751,0.0387190856647926,-0.0308874852280014,-0.0787416927894815,-0.141038099259434,-0.214747265014789,-0.251430822683126,-0.257954297817974,-0.253009531608115,-0.254782207156004,-0.257260566581461,-0.25521998104125,-0.256686582272967,-0.256508161038772,-0.247251598236117,-0.251307928464119,-0.28019995020837,-0.27964514097427,-0.232306429409045,-0.147806349796771,-0.0376832387603977,0.0441617337582258,0.0433690953190361,-0.0391489285384946,-0.13888926597962,-0.107843953603912,0.00149178137609183,0.0880587571916339,0.0884231256493189,0.0488252002248468,0.00293895782362567,-0.0573208875384758,-0.128191011785496,-0.198227405182407,-0.237133832898562,-0.252230458415052,-0.255484985025014,-0.254963954689639,-0.255243417696269,-0.255721600677483,-0.255660962517416,-0.254603891973632,-0.242467549265906,-0.245737382483439,-0.26335826574954,-0.250598316165728,-0.177788770521886,-0.0924554788398111,-0.0148767502077747,0.0155327248382358,-0.0288126061693662,-0.135757228947881,-0.1810127709619,-0.123363496200649,-0.00452394550265335,0.0887332907429583,0.104955874796304,0.0731825680483495,0.0263653851293625,-0.0486114172636847,-0.122035178170919,-0.179842155478318,-0.230433787224602,-0.251133576710515,-0.257330346312397,-0.254219691320875,-0.254269136251012,-0.255135087911502,-0.257173184550831,-0.251058217767971,-0.237590279571305,-0.232361854335009,-0.232612310583395,-0.2000133107776,-0.122046098945899,-0.066017221025427,-0.0156540106599476,-0.00464364972473225,-0.0774156594246665,-0.131827247814333,-0.13385436463522,-0.0665299944689304,0.0357592079205852,0.114706181515147,0.147313238869662,0.10940297782568,0.0534148788901134,-0.0466855976242725,-0.128607607943871,-0.178353817017513,-0.231070164484366,-0.252390183530377,-0.257731582677019,-0.255879156178719,-0.258376295813386,-0.255469914676056,-0.257932419034467,-0.250528942643538,-0.240150757741071,-0.222453834514399,-0.2102423353107,-0.152944412804703,-0.069940145833938,-0.022395078698325,0.0150636049748192,0.0228408706720059,-0.0164040159345778,-0.0247361664661757,-0.00298596580352126,0.0562824759187575,0.11386047808121,0.17542173594142,0.181176989226728,0.114613265043341,0.0379529043650852,-0.0709544387779322,-0.151143578543409,-0.204159361678647,-0.241311867906843,-0.253164842641806,-0.255884797778882,-0.255871790756769,-0.256090618573507,-0.256906762149944,-0.255688528389169,-0.250742791953071,-0.243688034139401,-0.225067303726935,-0.19112238558341,-0.134010510315104,-0.0557262357136835,0.0166552013822425,0.0738951374027018,0.111432457338622,0.127198891660494,0.149761158516134,0.148346645962961,0.162412009746918,0.18449433850247,0.192329340646126,0.151898889964914,0.0855744538967551,-0.025197527866964,-0.114189686205404,-0.178929131594648,-0.221041129970539,-0.247323201685278,-0.256055624987046,-0.256261066761212,-0.25455801910597,-0.255160187938878,-0.25616230221333,-0.257635628051526,-0.255953820789176,-0.247426671801064,-0.235365548105168,-0.204450437230051,-0.146515693171917,-0.074485491801549,0.00634690474423718,0.0798797222239761,0.140231131911116,0.209924811977158,0.245120108534992,0.24688632033477,0.211514734839036,0.191438153429165,0.155673388149122,0.0964265747157883,0.00362921423078243,-0.0964717183482063,-0.158770235056401,-0.205343819190269,-0.238242094152026,-0.250765342084817,-0.257469112074782,-0.25709172901222,-0.255978606816437,-0.2558956710064,-0.254037139558887,-0.255837007109676,-0.254632984975585,-0.254008222244871,-0.247070396635603,-0.231392798454593,-0.195712088029549,-0.145844805837228,-0.0765120499926913,-0.00680674083759331,0.0688017184875301,0.144513499828314,0.179511527323771,0.177198250206326,0.141748428685972,0.106996040494332,0.0523438355371352,-0.0169971567630498,-0.093154565150522,-0.152794865858052,-0.197443060597027,-0.22096607781758,-0.241615468875787,-0.25319320824504,-0.255999427008646,-0.255388799146318,-0.257131126185194,-0.254526067249382,-0.258261916668683,-0.25440200840015,-0.258359574636927,-0.256869443020472,-0.254320919570522,-0.24781175251762,-0.247500118167231,-0.240959979136308,-0.217911137782261,-0.194921687641595,-0.151590388011903,-0.109379227198542,-0.0753881171862131,-0.0733754399537543,-0.0863335029342872,-0.0956341904916153,-0.10516006913259,-0.122269576580289,-0.160685097779779,-0.190468610917471,-0.216686680749163,-0.238841055219813,-0.249737226033909,-0.255986767730704,-0.254445981179772,-0.256636496108285,-0.254161839163984,-0.257571962945005,-0.256090173461331,-0.254410075622675,-0.256315272476374,-0.257226000567207,-0.254927249573218,-0.255807381220268,-0.258255864036904,-0.255861941117998,-0.255549220380636,-0.252131140717791,-0.240046288878114,-0.225617308700481,-0.213543204314263,-0.205935292262902,-0.205873525632168,-0.214471965330232,-0.21373803519786,-0.222661402606388,-0.231138429798485,-0.239584452999842,-0.243386598891147,-0.252300504298538,-0.256264613732736,-0.257241694841379,-0.256633460457394,-0.254334555229216,-0.254809415132015,-0.256500484738722,-0.258390975604305,-0.256575896331395,-0.257756181795136,-0.254803983574826,-0.257685691271402,-0.257498636721686,-0.255182333994926,-0.257151785307424,-0.257233129127792,-0.256658545306359,-0.253817821029556,-0.25487562683006,-0.260343903704585,-0.256661021361547,-0.256590542937806,-0.255191127190928,-0.255073556739623,-0.257442359076229,-0.257803276448284,-0.254870796516458,-0.256807446375845,-0.257252359175988,-0.257056840125958,-0.255966627172965,-0.25438612822276,-0.256079798550862,-0.256544322573375,-0.25629920964341,0.234187702092436,0.237819763788802,0.240649741947593,0.241809343920823,0.240343374247843,0.241440788607403,0.241808057897975,0.24184006637768,0.241691137386058,0.238555546917245,0.239247047156469,0.237770509583538,0.240887850262777,0.240595818643489,0.238142714170129,0.240371172600361,0.239863587476639,0.238410301999737,0.239912175793395,0.239964078740584,0.24140070777371,0.240968614584818,0.241619110084344,0.24047365339747,0.240881136795728,0.24066374000172,0.240091304677332,0.240765708151546,0.241345883782748,0.238061764554769,0.241624781657761,0.24050968713901,0.237722959537115,0.239960395549146,0.240688781404093,0.239013642030195,0.2412213656745,0.241910240104535,0.240789207652062,0.238121729006122,0.241737081077013,0.240378596596955,0.241605702138509,0.239429901489255,0.24026114062572,0.240361960136789,0.24279046021164,0.242825396064532,0.240358780086368,0.240599537268392,0.240885926740066,0.241449313771342,0.239591400943524,0.238304503153622,0.238724026884205,0.241610398886959,0.240357438375205,0.239590903300457,0.237698365499906,0.241818793944877,0.23897672140469,0.241882759971336,0.23925007137879,0.237608435643463,0.238929087294032,0.240844553682204,0.241907891844161,0.244678657721665,0.242704868313461,0.245422627627461,0.248558771680641,0.251617887864351,0.255943844445415,0.258368674973565,0.260292049149875,0.258661938327164,0.254388741419995,0.254514725070822,0.245931976206076,0.24183520697846,0.241343147541912,0.241754101774852,0.239855735587551,0.241399812302673,0.240773741164666,0.241842365958983,0.241502051995124,0.238223129317145,0.241044554384042,0.240777259249539,0.238295035189996,0.237742162633881,0.241048302529295,0.238611809696589,0.240041302634104,0.241316639591425,0.235670594796367,0.235670517751882,0.245150986545751,0.266520521869535,0.278446630354016,0.282733947214623,0.290798441101906,0.294256622588484,0.284627810991693,0.276868939841643,0.261943643288495,0.249976109059624,0.243067380173711,0.239935853668082,0.239238811295453,0.239196633952992,0.240756718709156,0.240906313398966,0.23942885019171,0.240692976596751,0.240585374673028,0.239457485734244,0.235707012080329,0.231861221384211,0.229022383414957,0.218791202264429,0.197765420677426,0.184107113770537,0.163523487925758,0.155352448121778,0.155438025871013,0.16607667018712,0.170998593885038,0.181649411966677,0.211379423292193,0.245984828697597,0.269465259322511,0.271644411077522,0.260709626287665,0.249142424135257,0.244955495417863,0.234968120172255,0.238096021364877,0.241530812529082,0.238636727445322,0.241817830347196,0.238789733029863,0.240758077271553,0.23798818649428,0.235186761128731,0.225579090254551,0.206368851100633,0.184680920288839,0.137247127181935,0.091496621876871,0.0383187007196529,-0.0244369415180524,-0.0573794548006623,-0.0606168015122117,-0.069732372927244,-0.080759858938695,-0.0716650682628045,-0.0469836895010191,0.0120991149029926,0.09281138760343,0.146099246223779,0.185122296886843,0.220261972480493,0.233040514590673,0.23572530893826,0.236373459960801,0.237860264953309,0.238513585835271,0.238843878771748,0.238781710481305,0.24075447634162,0.236795335340965,0.22356991953993,0.205908511613674,0.172985049921261,0.113031705953531,0.0425399385302786,-0.026120964807532,-0.0819496251818277,-0.135745289665124,-0.175028854640357,-0.201150093403993,-0.202375880358674,-0.206772693283733,-0.206901107645979,-0.184507376738121,-0.12789294653497,-0.0462281232373806,0.0403579332383811,0.114307370047636,0.182052314450712,0.221067432407615,0.232509167128373,0.23330075694971,0.235442178117711,0.241285808253983,0.241041533957512,0.241474295371789,0.240602019786724,0.229243186437521,0.206368606961195,0.18093928966162,0.133417821665286,0.050296294739071,-0.0323417302202724,-0.0889161282776333,-0.159617194442368,-0.219364538183559,-0.244757773087696,-0.229821400260466,-0.210906839060037,-0.209085178000792,-0.219931034195232,-0.210285518702321,-0.174158367242718,-0.116768302731405,-0.0250382756264582,0.0521938221841966,0.147936906350041,0.210480477873831,0.22870436899407,0.230564077945913,0.238645956457939,0.238515756879639,0.239023829058981,0.241545859569584,0.236860918127936,0.224198933942112,0.201461239239016,0.16136937507477,0.102512906323833,0.0278236545674108,-0.0562591671719159,-0.129958355986402,-0.203559982384647,-0.226673869478741,-0.207930335402498,-0.13557272715203,-0.0797987209781418,-0.0721986603726025,-0.11859836343619,-0.161561556942087,-0.171562024312133,-0.142552067490477,-0.0762650943698423,0.0042765691028882,0.101736980869991,0.188157234557817,0.211809826450312,0.229920550180994,0.234343379839404,0.239738033371057,0.241285274574172,0.241382432370271,0.234955197444165,0.22641340244518,0.201129348021185,0.156849320175713,0.10543777495243,0.0289846504566985,-0.0655770672473316,-0.142587739097084,-0.193990623121833,-0.177325705596326,-0.103340986850073,0.0194824475208439,0.0854983457119534,0.0500339831276017,-0.0524713450910988,-0.143673963920179,-0.190457739493165,-0.169041670573391,-0.116847705289739,-0.0203712253988274,0.083913783987575,0.15894726713033,0.20307988754609,0.232249557555174,0.235524718739262,0.240735028374394,0.239349505817717,0.240412851875876,0.238940851156867,0.228875759399427,0.210843830421888,0.171150279366891,0.111968948455138,0.0196110655138789,-0.0675631912803847,-0.139658090592279,-0.141346808188918,-0.0874248862045422,0.00414816675073442,0.119439187699676,0.142427111979221,0.0574740630350896,-0.07711689151575,-0.185852566940732,-0.222298116975621,-0.198111080209515,-0.129191398901167,-0.0190691592515509,0.0851544966197031,0.16086195912342,0.201744398794812,0.221393606951921,0.233403805756853,0.240136127470548,0.239867691981914,0.238419479055457,0.240196590648284,0.234285581718443,0.224113651989693,0.173102250723566,0.105719047144839,0.0185929936703374,-0.0697604633517045,-0.120728987605592,-0.107030453109421,-0.0671108865080407,0.00307352542642693,0.0793796853635216,0.0580162596086405,-0.0269634875439823,-0.140505721825028,-0.222330260640036,-0.243426176174418,-0.188145122554979,-0.0868844047200958,0.0384052439268711,0.139754987275198,0.186280897397721,0.213021495343182,0.230239803275887,0.23656099214292,0.240966271037113,0.241351615495658,0.241883586083002,0.238416083495316,0.235035475982307,0.226413655385385,0.18549603859612,0.112851339450126,0.0201878274093106,-0.0594580694499049,-0.0989949403193466,-0.0936497069594492,-0.090526883982594,-0.087706406487926,-0.0599548767018541,-0.073224754327799,-0.130688774971563,-0.205242802674225,-0.254922387375689,-0.224520761703362,-0.146024007663785,-0.0165702602953112,0.119582925268015,0.193448692154809,0.216428639562883,0.22790432760909,0.231049566834833,0.23892137560797,0.241751185248868,0.241289331883985,0.239094853170576,0.239436336800476,0.238053998315806,0.225860111287011,0.186734594074917,0.12713839883308,0.0275056111411012,-0.0511865862987423,-0.0808374858509679,-0.098030651160214,-0.14864625465486,-0.19342833961774,-0.17837169628447,-0.17200527024386,-0.197467118832366,-0.241733966248519,-0.253506352352999,-0.203613670421148,-0.0847302440220451,0.0608455745969609,0.164900968480466,0.218509573784179,0.23533509312609,0.242942446350636,0.237678702484157,0.239186284012996,0.241177736620174,0.23919972072323,0.240041171314061,0.239752410402435,0.236502183256722,0.225699208190179,0.190848473264519,0.150068033797119,0.0640385298746605,-0.00907426272650397,-0.0542852829802621,-0.0995807434030722,-0.171808274223038,-0.22302090519374,-0.195564918057737,-0.179937653808371,-0.184064054796962,-0.221497769571415,-0.220442367459794,-0.137290651739583,-0.0213398717484443,0.0957610350354945,0.180901816479596,0.226257421886055,0.245588515457994,0.24781789836203,0.241534077670215,0.240466587086649,0.239318350203894,0.239609958840905,0.240263032461808,0.236423391303459,0.232124643001376,0.225724436507814,0.210736474657633,0.191321409894633,0.125985177568799,0.0468775646977799,-0.012640996807594,-0.0787988743619222,-0.151110432093156,-0.185125037313357,-0.138742972257392,-0.111583774028621,-0.112010333355412,-0.170362985920494,-0.154404026718026,-0.0760396736453141,0.0139081490391173,0.0933631709175595,0.16850325492807,0.219306793042412,0.23931153750741,0.243797415359738,0.240331441130487,0.239333698967917,0.239297474162027,0.238820295183047,0.240633915302837,0.236578874686127,0.22940608821924,0.226730091663509,0.220386999991293,0.209556837480117,0.181568839084155,0.120975221385129,0.0421451290463465,-0.0354500131557473,-0.101916196546077,-0.103300560128661,-0.0325104755209271,0.0108763666305028,-0.0341224988515344,-0.117408603397616,-0.125847639866485,-0.0412052623849398,0.0312509528738517,0.0774568250280406,0.134593277256752,0.202097296749067,0.223614823786761,0.23909775112652,0.240954289510243,0.237167467752941,0.240860438458131,0.241255820522623,0.241241665442458,0.239287457084807,0.233481803012928,0.223872324075955,0.224021209782251,0.217343228980462,0.194121429064842,0.162730029493166,0.0732742203783674,-0.00387070151886235,-0.0424085659375244,-0.00834496448659439,0.0718846330372072,0.0893749137000425,0.00360887386366532,-0.0888155133387846,-0.0918904908428188,-0.0348177754320969,0.0232875677291507,0.0638499645734112,0.112615611338231,0.178621450131596,0.216765091142213,0.234812369692836,0.23792689219022,0.236083039719674,0.240217502016549,0.240076480455715,0.239294772344392,0.236923716727553,0.229874613907156,0.215805192081056,0.209998609109005,0.200286849804845,0.172815726814711,0.133235314631111,0.0703342663553296,0.0136581695229385,0.00860137204541836,0.0757085318448428,0.169545226834859,0.131201534283541,0.0163515880700499,-0.0693531377260364,-0.0670067831323687,-0.0338819485978703,-0.00537104946248633,0.0483984618269944,0.104774118507342,0.165612861865527,0.209901180403778,0.230874272058205,0.236010117775669,0.239243509985158,0.239774781200434,0.240955104357046,0.241406212783024,0.235011664512018,0.226263626759107,0.213734458773152,0.204178850616954,0.180548841156339,0.128227017732867,0.0723174538522447,0.0301458605342345,0.0176986371326334,0.0718535604056239,0.164031354408598,0.209157497653706,0.143474335266859,0.0229263859995536,-0.065828504901417,-0.0797683095943584,-0.0593947437799647,-0.034721671044889,0.0279536567777196,0.0974406069411533,0.15287175680982,0.204080350172076,0.231963504351038,0.23913721244956,0.240303888714465,0.240728174039557,0.241511918616143,0.241170279561335,0.234263093388759,0.219497476163767,0.205368139574748,0.182772841623161,0.139047998673238,0.0765214695262313,0.035213943877865,0.0025061241043058,0.00846030473147782,0.0955723772195591,0.156911560950363,0.16141007794955,0.0907493309434115,-0.0154994293513894,-0.0969481173446791,-0.130720883135248,-0.105855908357502,-0.0663313721352978,0.0206030746937106,0.104086291630116,0.158987491861659,0.21180055417487,0.235999244252815,0.240006080279242,0.239115292081168,0.239374358651918,0.2397512910833,0.240736064631509,0.234895258689807,0.221772128089835,0.202175065753283,0.169768253093104,0.103783772575535,0.0229952097054527,-0.0134212587454384,-0.046187420521915,-0.0474656819825745,0.00767355910257665,0.034016857115687,0.0150683482581537,-0.0391427268946354,-0.105899502753126,-0.161370391838986,-0.174892366863739,-0.122114038523324,-0.0580799121233999,0.0430609514690536,0.135321978902427,0.186979865697207,0.221630883974627,0.232663612324201,0.240429488580228,0.240923979713963,0.240175847749379,0.241797682805605,0.239923642606583,0.231930895604734,0.225309338768406,0.206003396331487,0.166520213055318,0.0961875918136373,0.0201236563560849,-0.0500530739393841,-0.100609626777022,-0.14278130344467,-0.149976955498914,-0.160196860244031,-0.16231614448271,-0.173255278291491,-0.191220089215254,-0.199203692274709,-0.164212553401467,-0.0967436200031719,0.00659656907636489,0.1004044571938,0.165920013432908,0.207608612306611,0.23239277757002,0.241496381835499,0.241497806505854,0.239227018004361,0.238931256655752,0.241239553622473,0.241340340083355,0.237320470460261,0.23442531376744,0.215053041778117,0.183571745207219,0.120115539603998,0.0463522758177308,-0.0302706380828796,-0.104241629402709,-0.15616817367634,-0.226063082897423,-0.251564932993308,-0.248426205401419,-0.225619339088777,-0.203326618458569,-0.16326436560269,-0.102925487537759,-0.00321228340731988,0.0931683865805689,0.150555293887904,0.195564196487199,0.225163200357614,0.237218686204897,0.240152101016929,0.240035016509442,0.238482608221654,0.240311259388027,0.239074934877529,0.237959958304225,0.239248475542057,0.237808040587529,0.22858342459153,0.212248358178099,0.178363202719246,0.126773566329114,0.0614870852384536,-0.00342036528651196,-0.0780562514221495,-0.147599297730022,-0.181366613710687,-0.176728180730052,-0.143354996423803,-0.114049044456562,-0.046624769900044,0.0236720267529858,0.0953766967390379,0.1493133497548,0.177903122584258,0.207914725208807,0.228161736673939,0.237815582906573,0.240794316807691,0.24181122878506,0.239873518417676,0.240330774855661,0.237916993218355,0.240051367422736,0.241861897040935,0.239325380036953,0.2358771433894,0.234487418283016,0.229081817857891,0.220769821086667,0.196943355834576,0.177515378253247,0.134718422955794,0.0908614998090574,0.0597004038873611,0.0614119872040718,0.074642715209947,0.080576361506729,0.0953574894130913,0.114366483031581,0.15250168387254,0.183612236011228,0.204854558734305,0.223906522541088,0.235627616243519,0.238832952837845,0.238107204547978,0.23758603000718,0.240948407455114,0.240007387922482,0.239639982407429,0.241492575749997,0.239243503618376,0.237893631261914,0.237413451404138,0.238904894127707,0.237103661192945,0.232757462253419,0.232388868947213,0.229116809995866,0.214654832918653,0.196410679914295,0.180821853875624,0.178037517800682,0.178468212035846,0.186212033183006,0.185653312299896,0.200621815379804,0.213083756297402,0.222975800042343,0.229591801004275,0.235282979237345,0.236986293904274,0.238443684412157,0.241203003890176,0.240389770417889,0.239313995323818,0.239894528702713,0.239110165370327,0.239249215364929,0.240244463621406,0.24021432508237,0.24096610875693,0.239714303643822,0.237750095812559,0.237217802512843,0.241404304669063,0.237762497076202,0.236312117886906,0.238063335944817,0.238564104376216,0.235870055479932,0.233802111478043,0.237179359751776,0.236222896948902,0.237280351018083,0.237928481028781,0.238516630910555,0.239796851645134,0.24013925099064,0.241491606363475,0.239275503419449,0.238897955509456,0.237812408202779,0.238210817783745,0.237908051726537,-0.216527504421795,-0.24445808306739,-0.24734633789708,-0.247854783998496,-0.247051995406861,-0.246693098890237,-0.245533069774207,-0.246728737804433,-0.247663431458994,-0.245192626251212,-0.246761715012253,-0.245971723385417,-0.248007347251602,-0.246907513036176,-0.245247549399351,-0.247425806465218,-0.246311226853938,-0.246305256816236,-0.243748161450435,-0.245989468129226,-0.24751966645707,-0.247081770994728,-0.244161665721615,-0.244071526795054,-0.244601348582977,-0.245489615449493,-0.246344519898737,-0.246275131882571,-0.246103668133846,-0.247117630860145,-0.245741030820285,-0.246366316908341,-0.246231958423118,-0.24560146473102,-0.244601807937328,-0.24584259084191,-0.246214691137093,-0.245958695522761,-0.24736332824662,-0.246777148311612,-0.244731078045779,-0.245073836110734,-0.24770579681657,-0.248601202399627,-0.246135359205403,-0.245595380750742,-0.246785250845098,-0.250067924308741,-0.247556037690714,-0.24804844751801,-0.246154379141035,-0.244357759103109,-0.245067696671092,-0.244670911187169,-0.248004440118741,-0.244934196243445,-0.244611057037062,-0.244949927320374,-0.24572521721508,-0.244724532615617,-0.244439762785023,-0.247388763831686,-0.245651764799597,-0.246134743387187,-0.243510189801456,-0.247185878580624,-0.250945815307901,-0.254234292127146,-0.253699097459479,-0.256721197491379,-0.2636959989739,-0.268968116796718,-0.274919459419386,-0.275715598809623,-0.273420311537276,-0.277031936906354,-0.269347776573099,-0.265963718436115,-0.253290906327697,-0.250876323318541,-0.249619254096561,-0.246176273686007,-0.248050508105262,-0.247595837549374,-0.247827579213582,-0.243827418165719,-0.247661382636248,-0.244294334366298,-0.247771604992574,-0.245244128338612,-0.245897443374552,-0.247604802657866,-0.244098056940736,-0.246610858378957,-0.2494836487972,-0.25129755141153,-0.252850525442561,-0.253650168703056,-0.268445067925781,-0.292171803880819,-0.299016681265971,-0.308624887425029,-0.314915258297508,-0.313667998358055,-0.305100682356842,-0.290717415050543,-0.27069201478622,-0.260321484779781,-0.24974234044944,-0.244824291107046,-0.246895640642853,-0.243986663455806,-0.244064655884289,-0.243871298013962,-0.246922673350057,-0.247280217723274,-0.246289584855676,-0.244965476603004,-0.243131063010605,-0.237925065555888,-0.237095622554016,-0.223819599525621,-0.20871128258779,-0.197124177764776,-0.174465636644551,-0.171365402126437,-0.174618840078597,-0.185638974844283,-0.189887842235171,-0.19721798359971,-0.22789264831816,-0.259403295628417,-0.281034084033735,-0.274192350644124,-0.266135023057985,-0.254919074891425,-0.250733463480838,-0.243737028038176,-0.245419319057056,-0.245873430583743,-0.246021794961232,-0.246884548956328,-0.245742316283487,-0.245945614946522,-0.243785751822938,-0.241671379407461,-0.230056893254199,-0.214879977183319,-0.18943058331486,-0.141800338743186,-0.0958769909908048,-0.0459544104781236,0.0151372005530792,0.0419203553306496,0.043594500638714,0.0488567489370065,0.0611230235069156,0.0564224867418203,0.0377843166633502,-0.0225625850705828,-0.0975329696019366,-0.144670014830653,-0.190316869248681,-0.226761439865853,-0.245226863359048,-0.247088099892202,-0.241998667099319,-0.245831178430529,-0.246554802075996,-0.243894026267726,-0.246754792852706,-0.246797145885036,-0.242489655181716,-0.228386890863931,-0.206167992757965,-0.17475150211122,-0.113779281711544,-0.0425316679865661,0.0239331065044262,0.0796092705536017,0.126353927997795,0.161999535335292,0.17877237125391,0.179608228740189,0.187632226963437,0.190549323744128,0.171573048540508,0.122671559944684,0.0489078967437857,-0.0390582619776295,-0.116366777825108,-0.187732335505838,-0.232301358691734,-0.244738073665744,-0.242928093705222,-0.245577992940555,-0.246020292854543,-0.246308771632338,-0.245595081863187,-0.246575734353515,-0.234555291661709,-0.20795769446614,-0.175650282341347,-0.124928305777126,-0.0374354754634663,0.0433079006665494,0.0997346695334905,0.162774855947641,0.216699627681302,0.235968574846771,0.222734419296314,0.201310824506715,0.200938181898335,0.218477303264737,0.210806579604427,0.180129959346966,0.129961389401617,0.0391673868671683,-0.0418814726388091,-0.142694387529637,-0.21505277173145,-0.241314913283616,-0.240585513454319,-0.244032839912916,-0.24529985260101,-0.243695315941681,-0.245475837660519,-0.242675982795109,-0.225546850726098,-0.199502546867761,-0.15514775589109,-0.0915758374072101,-0.00739285413703403,0.0789015207774103,0.153309687197593,0.213589101671711,0.234659449313758,0.214479147245964,0.138608735743037,0.0844228717164154,0.0827694199169774,0.132170846091544,0.180832371030086,0.193301426930562,0.169461734437382,0.101465192592306,0.0144367603997996,-0.0909306072992765,-0.188315384643931,-0.223907526147346,-0.236848595601626,-0.243428968626826,-0.248143067191916,-0.245234058819894,-0.244802207899987,-0.240035709864176,-0.225679393950058,-0.196924922934031,-0.147247366330058,-0.0869300529204766,-0.00396692635329849,0.0994847317634831,0.168483422330156,0.207583414552233,0.190934018749585,0.113607180029225,-0.0074459961714112,-0.0716188113125022,-0.0322113180068448,0.0700692142403627,0.171063747592468,0.220315940689489,0.207759794508253,0.148997420701627,0.048633325801391,-0.067623606292581,-0.160261438031689,-0.208323895793347,-0.238523386611961,-0.239620769346559,-0.246643132122464,-0.246673579028763,-0.2458665134039,-0.242392322463696,-0.233211820048272,-0.209465243071405,-0.163105522057446,-0.0908219968149389,0.00595116792866244,0.0928246547774277,0.158553310597604,0.148873538286135,0.0907175524858692,-0.00557365701311449,-0.120183737175033,-0.137325143838039,-0.0467336615760166,0.093657011462234,0.212163531522056,0.259527000851762,0.238683501383743,0.166713909365931,0.0501611892718014,-0.0718551174818336,-0.159703199786232,-0.203939391963599,-0.230623974187392,-0.239840687680112,-0.24755525803144,-0.24551411298476,-0.247898628769665,-0.245885342007734,-0.238971508729766,-0.2246821742667,-0.167486736832851,-0.0901809738414123,0.00364094161562381,0.0886411524123844,0.13056635501903,0.101001487650151,0.053898881010038,-0.0196262879941103,-0.0883580557282268,-0.0681601540921079,0.0220321477334112,0.151188339274317,0.252084608965352,0.280392510470608,0.228326292937503,0.122546802886984,-0.00946890999527977,-0.12810830477782,-0.183385026546109,-0.216772334662412,-0.236937359399472,-0.245402305256609,-0.243878458846658,-0.245740291607332,-0.244199762704291,-0.241851121838858,-0.241478357320983,-0.225214644878911,-0.181999665161029,-0.092661716912966,0.00173741983195558,0.0753895692921371,0.100624335069455,0.0818629770339356,0.0663789295351196,0.0612762549842666,0.0378384038708722,0.0537083434714264,0.121422959564402,0.210600852924755,0.27567959966327,0.254854139831441,0.177291355008018,0.0380548707832552,-0.104648310553587,-0.187614501006124,-0.212119629592922,-0.234672999935166,-0.240850469005928,-0.244948633110308,-0.243945031248102,-0.244427180028943,-0.244220172890147,-0.244088315813389,-0.240442794132044,-0.226363837915975,-0.178019028362541,-0.105488571917498,-0.00197389275320618,0.0670985524873848,0.0856012780707226,0.087687060331316,0.124956268484134,0.173456852948374,0.153101940554739,0.152014966363429,0.185037151852388,0.243340631826478,0.268909932925083,0.223462223250655,0.103242546784386,-0.0482135227233757,-0.165570415001272,-0.214410037692697,-0.230879439584538,-0.244955893545022,-0.243259398086249,-0.244948109228052,-0.24373888939706,-0.245778872133552,-0.243890769514217,-0.243885088766218,-0.242649768846655,-0.22253987915096,-0.17981849442157,-0.124192630719167,-0.0375364027290339,0.0281496295406674,0.0593344541612924,0.0946336968985168,0.159640498086502,0.211828250598333,0.178631198264196,0.166045407739813,0.176817032096781,0.229214868395055,0.235350808915859,0.156088707094933,0.0346444619212672,-0.0896827629100919,-0.18316533242574,-0.225136241423858,-0.246124233487562,-0.251019671135196,-0.245400423064621,-0.246980953126948,-0.245297333942865,-0.243912672294249,-0.244230338152892,-0.242945691415617,-0.239051032411364,-0.225289296020655,-0.199450093463216,-0.160397917199498,-0.0927501383673114,-0.0257529463444384,0.0188103308856486,0.0811443624611007,0.15652578165258,0.182205140504918,0.13436904630946,0.105487119688801,0.122129207633629,0.190378718259213,0.177473483199812,0.0950838342810239,5.47886799904714E-05,-0.0881807788152363,-0.168376962038808,-0.220067973855838,-0.240146276295613,-0.245508918331714,-0.245335962335076,-0.244280253858836,-0.242691874770906,-0.247826914191291,-0.245034297162359,-0.242834658126745,-0.235708512122201,-0.224217994045643,-0.208477352806387,-0.181578498518686,-0.152516253020488,-0.0991044283746201,-0.0361897350444596,0.0382595842175156,0.105336590082928,0.0989750821515245,0.0318360948896413,-0.00431087456841486,0.0539227205807495,0.14443986358161,0.150101164303942,0.0570306070979472,-0.0234496331232011,-0.0815316496307936,-0.142342797428766,-0.206553104423751,-0.22724540910513,-0.243237686548329,-0.244565032449288,-0.244813469459806,-0.247317057643469,-0.246405846381428,-0.246155814564189,-0.245818336588109,-0.23806745910827,-0.221778466724739,-0.213889020268163,-0.199906721971522,-0.178351199772575,-0.153358542473959,-0.0813235389082096,-0.0105010726314641,0.0306371854238353,-0.00188629710370498,-0.0750525582748574,-0.0777608491921938,0.024908167174214,0.115640700523195,0.105246667073486,0.0351122969361278,-0.0307535000037958,-0.0773908565557193,-0.130709497871015,-0.185145115126152,-0.220226197074124,-0.243945092354773,-0.242394885528865,-0.243317471247372,-0.247886096340084,-0.247372413013403,-0.246289503986146,-0.245020740527609,-0.231973692531914,-0.215637816020041,-0.20442972123385,-0.193511580757056,-0.169752851521254,-0.14097558760946,-0.0900215673145847,-0.0365341834183756,-0.0363213142658435,-0.094854559829161,-0.169086278666603,-0.114519153983038,0.00966402936727912,0.0847979166391517,0.0702750483028346,0.0207398085628522,-0.0161915438512779,-0.0680173960219145,-0.117532386487965,-0.173444089166149,-0.21865022564558,-0.241953136017165,-0.243213259976724,-0.246295372255932,-0.246142908825332,-0.244778910797931,-0.244722886170662,-0.241369665867646,-0.229819312883181,-0.214440556261636,-0.20140110013929,-0.177382291161461,-0.137265395074744,-0.0877212915991166,-0.0497002064706324,-0.0516358093637002,-0.100741937874955,-0.181654677572789,-0.207643758315613,-0.128026919104658,-0.00761456019552551,0.0704002754537923,0.0710534650936388,0.0366730756132055,0.0122918596676629,-0.0433326573680314,-0.112592562340885,-0.162639147612461,-0.210988322042829,-0.237769447894828,-0.242996294091759,-0.244315589170895,-0.246312044938449,-0.245571492870893,-0.245623842295379,-0.24091394373698,-0.223804549028043,-0.206249418235468,-0.181502680448392,-0.139610854684704,-0.0843039625839108,-0.0460940240339877,-0.018007310200544,-0.0353456297671664,-0.120268491094184,-0.171043644078229,-0.166665300048687,-0.0856092249653627,0.0230623830877659,0.0893586117559144,0.112444896920686,0.0879959137212152,0.0496866114570677,-0.0275760272540007,-0.107704177970098,-0.16710806920149,-0.223736041626828,-0.241281808246496,-0.243911267496262,-0.247532833469474,-0.245207260313948,-0.244577271657931,-0.248203280290543,-0.23707526608132,-0.228414578222386,-0.205766785131766,-0.172027168892946,-0.108188132253469,-0.0357318264904975,0.0016715190913935,0.0323791603164506,0.0344720969793555,-0.0249670447260322,-0.0434388047393705,-0.0182666691773784,0.0418087471063169,0.106787374850249,0.156776583534844,0.166250377308059,0.114764992037299,0.0541153674288846,-0.0461237021841064,-0.135898276010783,-0.199051502142006,-0.22940523773471,-0.242198661547223,-0.246479967827903,-0.246941764969776,-0.246422441647844,-0.248169968659363,-0.244717248199299,-0.241624230397982,-0.232128775907499,-0.208910982623429,-0.168753496186153,-0.104082351747883,-0.0297697599963499,0.0406015756765296,0.0959947407269549,0.13126694293809,0.143028576157958,0.162191365347049,0.167565565114356,0.177442021684545,0.198238468622153,0.201950546929098,0.162715588800145,0.0946196510750489,-0.0106175918774813,-0.0995833842879775,-0.1745175074608,-0.218989368812573,-0.240223473942243,-0.245360692581365,-0.244950008815392,-0.24783205602536,-0.247962156061661,-0.244982697379866,-0.245574626429014,-0.242484997637042,-0.238878797765456,-0.219964131881002,-0.188001635104349,-0.12678190085793,-0.0565779766842893,0.0182347598274375,0.0961942982386132,0.154065559192237,0.221294172473008,0.253578785526276,0.25213545925581,0.229100217933954,0.213782472157383,0.173672548159123,0.108693101641109,0.00981375793786351,-0.0908501836182225,-0.154374391005105,-0.20224490470084,-0.231994171187919,-0.240066653611834,-0.246783056538944,-0.244768258935805,-0.246937756398306,-0.246374153205803,-0.245029814192192,-0.24439335441078,-0.244131878912403,-0.242108804638016,-0.232960574188014,-0.217899798593561,-0.18195795804254,-0.133544587626458,-0.064939847204867,-0.00163220514967443,0.0827510872785891,0.153425723111981,0.189103506935025,0.181205251024285,0.151979763938381,0.115602040006267,0.0551009202063564,-0.0179183746587075,-0.0918346010213158,-0.152440904816512,-0.184726573513378,-0.211320297067292,-0.236121650376914,-0.2424272184939,-0.243429043146163,-0.246582037306474,-0.246008319123658,-0.247517366666929,-0.245047902257373,-0.245781193137032,-0.245068225820338,-0.244151441614408,-0.242177150484397,-0.23815871567821,-0.234121098615501,-0.219029098534938,-0.194192723077571,-0.171323153038476,-0.125484320698471,-0.0737463794852667,-0.0414780741014877,-0.0469377434191065,-0.0544865639688998,-0.0703169152590356,-0.0939328605835049,-0.115889572186085,-0.156007213352377,-0.189335271258359,-0.210508748138251,-0.230234556172696,-0.24059842542575,-0.24499905655662,-0.247877312802601,-0.247883639426078,-0.247665755806701,-0.244888603841666,-0.244637607792001,-0.246938426948633,-0.245932680154391,-0.247370490802391,-0.245363704997098,-0.244872610841701,-0.240258680290636,-0.234733818744644,-0.232900102014448,-0.224634776976341,-0.20535863716605,-0.182992979826379,-0.167239898824642,-0.166210907566211,-0.17230296455854,-0.184594551119459,-0.189601850775488,-0.200430268478775,-0.217628169748257,-0.23224277582896,-0.2383365599202,-0.241742570345872,-0.244120852209013,-0.246051826771468,-0.247853121188665,-0.245915613468309,-0.247574339367206,-0.247804712760114,-0.245164082964269,-0.246969653342249,-0.245636302536298,-0.244018529989434,-0.248336447589568,-0.247934959899402,-0.246476561679601,-0.242658829405332,-0.245964946487721,-0.244020853330331,-0.239045730375503,-0.242105708157104,-0.242626888069816,-0.24086963377316,-0.236873838101445,-0.242872419209854,-0.244075285094984,-0.241484643614021,-0.245840820267077,-0.246619588419981,-0.244132550890486,-0.246047058062283,-0.246359734464355,-0.245871861667951,-0.245162720047671,-0.245802579283987,-0.247786991834191,-0.244928286400636,0.224380377717493,-0.0603288880128246,-0.0598685992573445,-0.0607502032266112,-0.0613425316687466,-0.0603992404383639,-0.0612144865642007,-0.0612499132171246,-0.0606220877784408,-0.0619024147521777,-0.062616229873368,-0.0610217855838045,-0.0609388644602111,-0.0594681638485092,-0.0610966068947372,-0.0598800052995706,-0.0597944596768179,-0.0612273419472196,-0.0610248563442673,-0.0594506898459193,-0.060883599100735,-0.0631181745221036,-0.0624644687929196,-0.0618468840473364,-0.0623284659795665,-0.0592900459984458,-0.0596972168867398,-0.059572236221946,-0.0591762727858175,-0.0593727868408468,-0.0604792993314488,-0.0607322792704928,-0.0627192478043404,-0.060241408161068,-0.061366735781689,-0.0632439227767088,-0.0612396070779179,-0.0627326100987736,-0.0612161424297923,-0.0621404813362345,-0.0622457184975175,-0.0626944603199107,-0.0615585256370296,-0.0621655446680519,-0.0607917901209988,-0.061194364725883,-0.0595729842755225,-0.0602702221271142,-0.0567478253696306,-0.0583137810167966,-0.0593872884200087,-0.0631069397861793,-0.0624021524897826,-0.061453478552585,-0.0634808004575627,-0.0614955306527536,-0.0621154542906733,-0.0618889311559542,-0.0609507015205817,-0.0604821605393683,-0.0593890161089018,-0.0611401451314108,-0.0599621514369311,-0.0626351042707905,-0.0617796306647395,-0.0586848386737532,-0.0649171435046181,-0.0677970673284747,-0.0717700234873676,-0.0594098150238891,-0.0515207784970962,-0.0480415190527884,-0.0344704300647107,-0.0249534353268914,-0.0218271310693233,-0.0245804482152065,-0.0367388454361712,-0.0427322877255554,-0.0446746156114323,-0.0518210371316143,-0.0582314584004017,-0.0590374984691316,-0.0633787343817921,-0.0621024931087939,-0.0613723392685847,-0.0625242201142012,-0.0617485948185584,-0.0625675631783598,-0.0587994704115675,-0.0592261229378304,-0.0605481226575296,-0.0609368442670505,-0.0570255157679916,-0.0551482257390151,-0.0631509645894204,-0.0578779795813552,-0.044819005354534,-0.0324238565397272,-0.0121470242677514,0.00121277928766419,0.0094441178774399,0.0199431403363609,0.0290847223655284,0.0198137641424923,0.000205387863073713,-0.0156613172025097,-0.0356503227240642,-0.0452524026007609,-0.059620893828458,-0.0632956659982731,-0.0613908043130114,-0.0600280238586336,-0.0626077187865533,-0.059756907940087,-0.0593607358351214,-0.0619669389424421,-0.0592714518749179,-0.0615098053819773,-0.0581968933316969,-0.055589741298946,-0.040669112471006,-0.0392996475319779,-0.0314528093994745,-0.0291178809201085,-0.0162126479136335,-0.000631764975192744,0.0173919635928569,0.0317013222334811,0.0398097181504981,0.0416530708054164,0.0374726280909767,0.0237841976380615,0.0106837177345813,-0.0262362409245421,-0.0370610684087256,-0.0520718431003415,-0.065718799763727,-0.0656642708297989,-0.0598312488230658,-0.0611065275093037,-0.0633143428361147,-0.0609371649781193,-0.0597589584777789,-0.0611214794265328,-0.0600577200631389,-0.0615655013610337,-0.0595287268791106,-0.0447801069220789,-0.0403538505268525,-0.0348875882411253,-0.0336828359468048,-0.0267172585879239,-0.025375438195644,-0.0234764812516832,-0.00452315657596195,0.0178438607897952,0.0268832173773175,0.022753942921489,0.00283026759123374,-0.010566950317826,-0.0235239305175415,-0.0247182658833122,-0.0265537526107174,-0.0299785192249564,-0.0481312327566344,-0.0538546838648196,-0.0609378652246467,-0.0634045233242854,-0.062536879085398,-0.0592063079785603,-0.0611272840902036,-0.0618869990656444,-0.0576546788227129,-0.0630268085971138,-0.0585341917984397,-0.0475026208110058,-0.0422703198949763,-0.0398130508680513,-0.0499538952742,-0.0268624545699428,-0.012210327747642,-0.0234132247216941,-0.00875402322506642,0.00596825032663927,0.00952166193453421,-0.00125225141013084,-0.0285048664433577,-0.0392610191867932,-0.0395602246036289,-0.0390926407475959,-0.0228590542887823,-0.0129292995498286,-0.0246911581090816,-0.0522429319242431,-0.056530932400045,-0.0661658639290488,-0.0611843297403666,-0.0614992075687458,-0.0628990864489596,-0.0622220581797748,-0.0626591373111265,-0.0627731678833862,-0.0597204647421272,-0.0451697821068422,-0.0400514266881547,-0.0493799846512438,-0.0398896186914023,-0.0220330709702371,-0.018966592294731,-0.00609011732450214,0.00634170024405816,0.00496294310723958,0.000664416662861398,-0.0194941204781876,-0.0455151446104602,-0.046826629154762,-0.0439948460750235,-0.0347444700907749,-0.0330327466780618,-0.0208635769445985,-0.0208772570030023,-0.043874605717563,-0.0561654674967371,-0.0639422025806768,-0.0625376847139048,-0.0600285743193176,-0.0603886887042898,-0.0594936684720951,-0.0623289033151517,-0.062050223886252,-0.0620684354476159,-0.0452817742660118,-0.0469728271535775,-0.0509121751481001,-0.0491121777738413,-0.0317578615921164,-0.00867830479028121,0.0132192625606302,0.0312939500701616,0.0367514038408558,0.0182805028736584,-0.0209387924064088,-0.0414024859349951,-0.0423848771748652,-0.0460149668202897,-0.0413959015346305,-0.0564928159882611,-0.059010308741365,-0.0390031458876268,-0.0613163956285988,-0.0637667242734639,-0.065280782894909,-0.0595361100212168,-0.0599970645718666,-0.0589560801019517,-0.0615763859343245,-0.0585550774445143,-0.0547726688750979,-0.0557639891456025,-0.0465737153583796,-0.0510623566373174,-0.0540430958957749,-0.0412893326258791,-0.0199414056995484,0.0266251773827011,0.0547159223315873,0.0608096299739045,0.0361752102964009,-0.0116035547679915,-0.0358573992721008,-0.0425145161108109,-0.0479382006111706,-0.0512654920333185,-0.0673536909266401,-0.0903532211907667,-0.0861684846319025,-0.0669189307112475,-0.0742924757322429,-0.0700272871858522,-0.0629336201760778,-0.0597582439933402,-0.0623795973669527,-0.0629612739815239,-0.05854336267376,-0.0568992844191899,-0.0506632894215869,-0.0566142454681296,-0.0534670207849127,-0.0620417399507035,-0.0566824733986702,-0.0443201220283884,-0.00250985481153649,0.0516514918155739,0.0862853110973934,0.0676162427109954,0.0147243912651546,-0.0525668783537792,-0.0600579578539971,-0.0509689542325493,-0.0416639711407592,-0.0496667689883917,-0.0841475211026092,-0.110755648419699,-0.10001209073336,-0.0771110233420339,-0.0718506085343704,-0.0687048951816027,-0.064433527441504,-0.0624414774978396,-0.0633347645520917,-0.0621104424582689,-0.0605448979599738,-0.0555163638636252,-0.0519099065690713,-0.0607459166031517,-0.0749161345603013,-0.0796062867284723,-0.0705672221496225,-0.0343749325242389,0.0256053415684349,0.0669513990754863,0.0701269198413526,0.0326606399835064,-0.0452730086457485,-0.0870856468199306,-0.0614741292212593,-0.0364617106766328,-0.0321294707264506,-0.0464599691178669,-0.0720330915515385,-0.101630134822924,-0.0889196624540017,-0.078950474647541,-0.0725284074768395,-0.0689023657379192,-0.0637328132030934,-0.0635186712709937,-0.0634757191925286,-0.0630888978507667,-0.0606255886804732,-0.0550686232445778,-0.0530598006185536,-0.0688537516695365,-0.081145064159347,-0.0826238216773861,-0.0439775995736033,-0.000110891853499612,0.0311386128921745,0.0535666373143943,0.0205374560879405,-0.0320790043806526,-0.101830539275429,-0.107935350761591,-0.0556963673538088,-0.0072756516211229,0.00210956758742386,-0.0234469115436356,-0.0595306318696561,-0.063000833917536,-0.0607155496545312,-0.0778316592192208,-0.0671360908937888,-0.0628632936111698,-0.0630342366235595,-0.0628578848314476,-0.0614435639182378,-0.0629170752308436,-0.0619953638140738,-0.0604888626423984,-0.0593028336829537,-0.0731314554883596,-0.0785361107065345,-0.0741324461345016,-0.0276995307939121,0.0186638130430671,0.0418332234669904,0.0350770037652022,-0.0139930784968138,-0.0907553518045395,-0.127498803099046,-0.0925056159719306,-0.0137676551761698,0.0377162220164787,0.0362444589899641,0.0172599535667123,-0.00541124643113601,-0.0155685572244262,-0.0508208175549875,-0.0588618382812463,-0.0567346496718935,-0.0593006961084941,-0.064817483462511,-0.0607914358597865,-0.0618449267875893,-0.06050696022287,-0.0617598650824193,-0.0632572295508296,-0.0628001902234507,-0.071526933877135,-0.0630880238350318,-0.0437379840276266,-0.00194191991447841,0.0301307833621143,0.0537563827886504,0.0306197876501026,-0.0228735348617509,-0.082878065245108,-0.0793968846170271,-0.0235733247448417,0.0607708891735308,0.0947974023289065,0.0846400116697487,0.0658768208904321,0.0282021347677045,0.00920495596330878,-0.0219557371435913,-0.0396032847269946,-0.0559752828400587,-0.0578890677132348,-0.059466058417585,-0.0630777101416324,-0.0617918138423077,-0.0632137557769861,-0.0608901000804661,-0.067457345573731,-0.0629114192267217,-0.0595462390312193,-0.0329474853699001,-0.01024886260812,0.0322953466855365,0.065529811578583,0.0742021664295387,0.0473932881757475,0.00266384253966415,-0.0252203823633151,-0.00237862586250849,0.0604607245720617,0.113604564106611,0.120556322724527,0.101499873603625,0.0675879528050783,0.0358109866829133,0.0101583936233676,-0.00733107716414798,-0.0353463164319055,-0.059205610567693,-0.0579777591843067,-0.0630365579008059,-0.0605547534716668,-0.0621923392539494,-0.061068085954551,-0.0591809131835928,-0.0634822535932896,-0.058491233503597,-0.0478086911512553,-0.0150324334327643,0.0276574354186639,0.0662741930682465,0.0743664439861557,0.070752341775146,0.0416067328573213,0.0251331152662692,0.0315239156129797,0.0562187519372836,0.106177598643561,0.122678905581351,0.112338149996935,0.0988667930821219,0.0697318374818662,0.0356331590443371,0.00971248552572986,-0.00342720669227459,-0.0369719450327276,-0.059940523771152,-0.0592955350140311,-0.0616221768371339,-0.0628755538429795,-0.0592313630912383,-0.0606433337566423,-0.0619261472376245,-0.06190760776646,-0.0510594220750905,-0.0291815320976303,0.00976434651389282,0.0507227883195344,0.0640960965641529,0.066062247516279,0.0521483010113787,0.0274406828169645,0.0332974786624307,0.0617425400191911,0.0961712769522361,0.119886220091006,0.122828752791008,0.106940822018913,0.091399530692575,0.0630331745687395,0.0408668155721484,0.0233372873761241,-0.0077258221934963,-0.0406870760544027,-0.0512421712835197,-0.0554552353172192,-0.0622151724419994,-0.0613857724297249,-0.0599188511812221,-0.0613911062299332,-0.0642969087071468,-0.0599225518817666,-0.0432553881224217,-0.0154179954923393,0.0219746366259117,0.0455341943431464,0.0493019246465419,0.0369506543044633,0.0291534733858739,0.0300569990758053,0.0527892921919576,0.0968830891150086,0.128633382809798,0.127919759063608,0.113292524344472,0.101933998261417,0.0701431273050744,0.0567114326370186,0.033116614574954,0.0205668344647353,-0.00647841089268331,-0.0276925453287426,-0.0435717639777268,-0.0498359186085812,-0.0626387560375784,-0.061895705748466,-0.062853586257519,-0.0600216295795577,-0.0658293960979377,-0.0645886734353525,-0.0272518736289622,0.00967704862614017,0.0269702279437815,0.0314917708491752,0.0251126526568533,0.0169765389379657,0.0318583465930274,0.0522374965831425,0.0886295145235608,0.131881957526537,0.1413125367124,0.110606496683263,0.103396385628999,0.0832062918077401,0.0524551415131238,0.0330758937553309,0.019358422500315,0.00306421919923326,-0.01268448993453,-0.0267875002685258,-0.0395432351793232,-0.0537188551492399,-0.0609679372342326,-0.0634452240406272,-0.0630311939509315,-0.063160123061617,-0.062426997351301,-0.0591165929636802,-0.0307124587255014,0.0050411238117521,0.0138441862610321,0.0183212406046906,0.0155933931445247,0.0293787490106954,0.0345999552286119,0.0689041053984284,0.100183874769267,0.129994977005898,0.113755107089117,0.0764932167808756,0.0500864903665852,0.0255453800418874,0.00298282574259919,-0.00876426052751564,-0.0105588444725533,-0.013891584246336,-0.0157813231685879,-0.017907454695114,-0.0388114277837497,-0.055548941922921,-0.0609672819305398,-0.0603434423693408,-0.0629477926142004,-0.0600330115274562,-0.0600040338280888,-0.0558410340171418,-0.0392611960920201,-0.0162159032897188,-0.028084067695149,-0.0369451079272303,-0.0201831929187301,-0.00569710063128001,0.0149847900595404,0.053940364840322,0.073645537804697,0.0733478217634514,0.038545834533127,0.00614892205694278,-0.0270640143274779,-0.0464229513161125,-0.0542606529929198,-0.049674872959267,-0.0396388693929271,-0.0292554008500466,-0.0316580424977594,-0.0239155987768884,-0.039730126629371,-0.0552048273883834,-0.0621469722712356,-0.0624914334258081,-0.063398806663846,-0.0620108597804902,-0.0602649022800713,-0.0594827465334036,-0.0503238241307315,-0.0446526735968751,-0.0562469777227964,-0.0714511562107944,-0.0761208140775747,-0.064433199853641,-0.0615415514674806,-0.0469650086512373,-0.0377031156928188,-0.050192682187063,-0.0715156924955292,-0.0929397676747126,-0.105146275442106,-0.106135431765454,-0.0808067283141174,-0.0667319813491793,-0.0549402750376057,-0.0472795485903682,-0.0385130415015859,-0.0352576724347681,-0.0482978198296676,-0.0616556627248303,-0.0614267115622869,-0.0604269552698508,-0.0597123641734142,-0.0616863581597131,-0.0624337239099086,-0.059610404848999,-0.0602690983852322,-0.0637251467503455,-0.0762866078748769,-0.101402687168344,-0.123700107926701,-0.135858288467816,-0.131041998105884,-0.139013215752201,-0.146632176618932,-0.15042768352092,-0.139195399998282,-0.128622926856535,-0.12075212305423,-0.0984793591786437,-0.0852852118926996,-0.0714877478890505,-0.0644091669149853,-0.0642773959450533,-0.0515350834289684,-0.0532836033933616,-0.0588548001603627,-0.0635263967485677,-0.0622538359853214,-0.0593043449899986,-0.05941072352161,-0.062587990871441,-0.0613781706851369,-0.061871561240209,-0.0624173485600051,-0.0609139135363282,-0.069826053075437,-0.0800348768577209,-0.0893621136669839,-0.0975653341866315,-0.110837677180541,-0.123315173365627,-0.13321804224891,-0.123307026816875,-0.109626047826417,-0.0958584644701072,-0.0925584006028512,-0.0956986010158401,-0.0953414219367801,-0.0795902009492208,-0.0711403118293955,-0.0719761760096999,-0.0636825488555364,-0.059714671575668,-0.060495550427901,-0.0627253757314371,-0.0605377143970854,-0.0609225038686942,-0.0598867945647376,-0.0629693062603293,-0.0616755435692656,-0.0604390296629483,-0.0604416532425022,-0.0598979483898481,-0.0534068631333756,-0.0528312454308872,-0.0526944268681943,-0.047384780748067,-0.0519316214638541,-0.0657312315619402,-0.0720757839137728,-0.066491088157161,-0.0601785025770653,-0.0688051383462304,-0.0758368406445676,-0.0895175125659777,-0.0828064831290786,-0.081325648163675,-0.0719423555375599,-0.0715388958615753,-0.0634375402406964,-0.0628909232269066,-0.0629478426393144,-0.0620281314526105,-0.0595297578781151,-0.0605363354476705,-0.0629962996635617,-0.0603996802493328,-0.060807663189481,-0.0598647268694676,-0.0621994160447786,-0.0602915775321904,-0.060480880423334,-0.0581161199632162,-0.0577985825439419,-0.0617228603199857,-0.0650159215205249,-0.065127454058898,-0.0626618823270479,-0.0591658700697637,-0.0633463956284268,-0.0624106167602553,-0.0652865219944788,-0.0604439861250609,-0.0655725231243546,-0.0665772124249007,-0.0635822370569221,-0.062492848785794,-0.0598922476833085,-0.0614047673394835,-0.0593348189906678,-0.059419921393136,-0.0618462395467799,-0.0602249710543864,-0.0607256345782069,-0.0617680245955042,-0.0620981199887501,-0.0626747647345956,-0.0632517205117395,-0.0595563577993594,-0.060740730781674,-0.0618441901438313,-0.0618380584172725,-0.0598697621528093,-0.0597415395617348,-0.0622758787322565,-0.0607200134475119,-0.058892738226879,-0.0599420001041406,-0.056822727991979,-0.0566827771339239,-0.0610620147552645,-0.063285122079455,-0.0624980155471003,-0.062325510544804,-0.0602542542608701,-0.0609758725736511,-0.0635222780839406,-0.0593180980939563,-0.0603345565174465,-0.0626136177419793,-0.0605468700486702,0.0575970406011343,-0.244576162616659,-0.243891246377936,-0.243778055488549,-0.246279207831162,-0.245997839159099,-0.244046578221622,-0.245461377204412,-0.244617517528251,-0.246455935659848,-0.242955779108108,-0.24411506366521,-0.242772386877094,-0.246460241314742,-0.246463837967792,-0.246114813936128,-0.246324636577562,-0.244610975620554,-0.243098914691119,-0.243363595465023,-0.245313183176459,-0.245482872310583,-0.245986777461862,-0.24615299970371,-0.242636578832981,-0.244098093194047,-0.244422191884094,-0.242726603430191,-0.243216461994492,-0.245597888018132,-0.245471578065925,-0.242624031964217,-0.242488419561735,-0.243450216375005,-0.24569020885317,-0.244755273657756,-0.245073448283073,-0.242875478776586,-0.246575004998386,-0.243999434502649,-0.247176277601765,-0.245673062817052,-0.246738079973236,-0.244781641354289,-0.245071114096231,-0.242209822024303,-0.247528302607798,-0.247457793321751,-0.244565968843838,-0.243817329162336,-0.246637776663282,-0.243419137447522,-0.244429459570934,-0.243566424450043,-0.242658885504402,-0.244803312171451,-0.244169194770905,-0.246480749625689,-0.244734452033382,-0.242574833225657,-0.245366007118257,-0.242436356016648,-0.244422548850614,-0.24336210769798,-0.244624054435043,-0.244435780687165,-0.249280153826568,-0.254287998360649,-0.257403119793932,-0.257990048579049,-0.265960849083335,-0.276938016215271,-0.284233374610156,-0.281210504952913,-0.276425629377769,-0.280681245083589,-0.271302089178394,-0.265911694089342,-0.256379023929136,-0.248946295669577,-0.247591860421341,-0.245739789910796,-0.242675972070095,-0.246567859120223,-0.243822863590343,-0.242353914254759,-0.245029367780367,-0.244515492575359,-0.245683630080474,-0.245688510036925,-0.242295915199642,-0.241998143104129,-0.245894143378736,-0.246687032727193,-0.247147971937718,-0.248394735973655,-0.248481668299495,-0.24834554622115,-0.266482183880853,-0.290070726775796,-0.295256606801991,-0.300709078309987,-0.308584693512629,-0.308110725129974,-0.302193568509996,-0.290860108859744,-0.26887645387702,-0.258552473339456,-0.250208139963275,-0.244997222365293,-0.244297913524515,-0.24491130234967,-0.24435642974089,-0.243920518152495,-0.242842703507906,-0.243060642068291,-0.246571489177487,-0.242555107656289,-0.243191862424076,-0.236898331852937,-0.2330875016974,-0.221423755654495,-0.194682785328958,-0.180993556201758,-0.151240359384912,-0.139720317570547,-0.129105515930161,-0.121378824441633,-0.11139004642058,-0.118822882667479,-0.150517025272903,-0.189325853375227,-0.218680292306757,-0.231908148173704,-0.243891005608993,-0.245951933232631,-0.249929820548218,-0.243597306153858,-0.242039193621669,-0.244721910936143,-0.244352002374253,-0.243655738088705,-0.245409298461432,-0.244677765213041,-0.242882246075645,-0.241098130373931,-0.231965931775895,-0.213405611156327,-0.188250989552816,-0.141226086504331,-0.0880135377397032,-0.0328258182261526,0.0336308854969362,0.0696983779128013,0.0849954987133924,0.103831914468137,0.119585355910915,0.124901606229028,0.100720999726504,0.0482398957392668,-0.0277490752981646,-0.0839819096119728,-0.157790690834706,-0.213081799279932,-0.245067525208659,-0.251751911723221,-0.242343996317539,-0.243737241846074,-0.242900921881004,-0.24604458829927,-0.244904488298381,-0.243414485844367,-0.238816458585531,-0.222985057764553,-0.205056110037019,-0.177749984076641,-0.116409090628005,-0.0420123215539,0.0346042427241071,0.0876222829203564,0.126366410301459,0.161149252747119,0.171126805861428,0.171528447923683,0.181859213785986,0.194167945841174,0.19053075705443,0.160089765918782,0.111033647109745,0.0264697078205095,-0.0662176849877382,-0.169598995798243,-0.239969288238946,-0.258381830568883,-0.249618601978588,-0.244115407224861,-0.243614664526568,-0.244596852620259,-0.244295806394342,-0.242728429175746,-0.229571182890326,-0.203684174415844,-0.171338718368056,-0.127451003558374,-0.0405359376340441,0.0412678181301095,0.0985742161854077,0.150854259392485,0.194479943038848,0.207424944341587,0.186080805061999,0.16729634589774,0.168772152251507,0.188451774070165,0.206269957223236,0.202058044380704,0.186616674600704,0.118704775561801,0.0240108139416379,-0.104513753905477,-0.216596585352325,-0.254576401656683,-0.24841925746853,-0.244399257484805,-0.24487161313095,-0.243462052580475,-0.245469417273265,-0.23815271226082,-0.218293836303584,-0.194378570881219,-0.14753477458226,-0.0837281901565668,0.00248877949679989,0.0852192082240649,0.147288963340184,0.197371366955027,0.202402777678636,0.183939759642481,0.124501832542454,0.0801846454537475,0.0790593610026881,0.127694979561774,0.182187381861647,0.211130172162154,0.225238553127125,0.188081548692875,0.103197689834785,-0.0257157977667228,-0.164551187065356,-0.227210209785853,-0.243846965100758,-0.243811848439932,-0.244179781761417,-0.244799080196455,-0.242643756175538,-0.236182408347874,-0.219899703553168,-0.189985237992868,-0.137734102693769,-0.0718050939076146,0.0206609768546809,0.103112217823827,0.159451584906292,0.185331513475799,0.158602590497044,0.108541930307443,0.0243095711658986,-0.020401419227851,0.00709648307632293,0.0935299907626618,0.169452475277224,0.227458821495521,0.255713801184456,0.236623464445197,0.157547591826133,0.0299485138925445,-0.106318451059578,-0.20242828122174,-0.243482690356117,-0.24156322247617,-0.243998220965333,-0.242400040820366,-0.243361649515516,-0.238938273223397,-0.227145012562045,-0.204041439441651,-0.152886100488876,-0.0691305739041107,0.0210848147699928,0.0965492665776665,0.141246767077167,0.116850792261198,0.073259925827308,0.0194916449048263,-0.0616292832567763,-0.0749455078275343,-0.0168857478275598,0.0889177720384515,0.183142363810372,0.242322493434026,0.269197107436271,0.256699886196412,0.180199957554119,0.0550951956585616,-0.0782247564615056,-0.18571950962003,-0.23378931606757,-0.241975766784895,-0.243553124909166,-0.242953284357377,-0.244162095494601,-0.240490472311524,-0.232736639825457,-0.216183843726264,-0.153931407512372,-0.0567738713376714,0.0314480887858078,0.0910403864433869,0.106852920664719,0.0715140212362406,0.0395334139311489,-0.00461799396135485,-0.0516351200260096,-0.0555387305849805,0.00152108612199451,0.105236245144352,0.191969490660128,0.230968577780086,0.245964996143955,0.218745711334025,0.135963073650205,0.0226933131195861,-0.0783589458782827,-0.184164733185407,-0.234987216515289,-0.240561494690766,-0.244084741523464,-0.24223238896696,-0.242118202984389,-0.241999971629133,-0.236503046464217,-0.219418755805851,-0.153822622228543,-0.0480269403900842,0.0432385115410011,0.089470986346813,0.0835005735881121,0.0593779074363114,0.044966549376617,0.0373237553291168,0.00785113709271394,0.00138862315606629,0.0519161303856686,0.122178239251132,0.174029751610559,0.186130739655496,0.183589069258139,0.138559650403898,0.054573820673453,-0.02786361785232,-0.0935819171688622,-0.185647869796282,-0.236514731007804,-0.243009359139136,-0.244986586880868,-0.245342909536031,-0.242688504834659,-0.241611211486712,-0.238333549659198,-0.213499315652554,-0.129131364327236,-0.0322083847111581,0.0614145583878125,0.0909597116422567,0.0749155622527749,0.0498488111390145,0.0634209772537703,0.090389083037843,0.0517581667320794,0.0439160291949835,0.0797021141711817,0.128366563599663,0.156970792003647,0.149894672397889,0.117710436054975,0.0609455439439873,0.0067046186529116,-0.0522584205543469,-0.108311679401214,-0.192655275480331,-0.241308129088554,-0.241431024857224,-0.242500690583072,-0.24328141387261,-0.242914590045622,-0.244871587858782,-0.238407356231296,-0.204807155718579,-0.106870874897183,-0.0168744475726846,0.0588664564246134,0.0791518098750137,0.0520153823081577,0.0376446653966755,0.0667465012031141,0.087783078146321,0.0498453211115436,0.0410929235864072,0.0586208795156877,0.100942322660121,0.111583830036473,0.0951962562041516,0.0764550842754404,0.0424056334435902,-0.00778188142448885,-0.0686936709300554,-0.122227272570794,-0.199422474278512,-0.247946459079561,-0.244083902669245,-0.243320791238538,-0.245710369253898,-0.24399384587869,-0.240972869480034,-0.237294020020748,-0.199194121773142,-0.0887753279838754,-0.00849319714329682,0.0365965810094265,0.0506594421870659,0.0246935340032666,0.0205640969409747,0.0578249584795383,0.0582520730743479,0.00978595634786297,-0.00336018280468642,0.0106118229281725,0.0560752119542285,0.0662221838191777,0.0709692136219608,0.0723256587436635,0.0510605549461587,-0.00504337399114513,-0.0713930564992669,-0.135955755001721,-0.196164823764282,-0.244743539541625,-0.240756813707262,-0.245054327588166,-0.246263942214283,-0.245145540888831,-0.241300452349344,-0.233469878806555,-0.188528495706053,-0.0801612194080477,-0.0036436003680592,0.01707587690096,0.00932101217938092,-0.00923335455914363,-0.00194797146835352,0.0221817149353006,-0.000721021137166847,-0.0590940695298642,-0.0883592749099307,-0.0496329599106804,0.0206597832476006,0.0510326740706386,0.0610314059624798,0.0696569473273948,0.0514019836274958,0.00148388557639129,-0.0752927592676463,-0.137942199852962,-0.202791044457033,-0.241760791463843,-0.242858544341562,-0.243518103400379,-0.243903429885055,-0.245310345982919,-0.241681484415285,-0.233485254854655,-0.179254257791589,-0.0766932247270233,-0.0187085956157086,-0.0037083151961463,-0.0187193933084596,-0.0293561098521196,-0.0239752617301461,-0.0250842190551925,-0.075222491929206,-0.136511267191966,-0.141968996536404,-0.0575898925859444,0.0161147181237516,0.0431148181979774,0.0574040053863334,0.059168928209456,0.0435373860919506,-0.0164598214554196,-0.0860005142749244,-0.16210609085451,-0.219127678786768,-0.240182388345111,-0.243501670931777,-0.242277069901069,-0.24584493286856,-0.245640850834555,-0.240626318212506,-0.227463518480941,-0.165365788613128,-0.0693860701377025,-0.0256844616341124,-0.00621892566973124,-0.00737074181520101,-0.0175557975085852,-0.035914979030612,-0.0681289849181746,-0.137843254689265,-0.197111623538418,-0.158717417064789,-0.044749406483225,0.0258199523858505,0.0529146372516181,0.0606447857468688,0.0653772075375336,0.0206149236790135,-0.0307540810592587,-0.105487635745583,-0.182377651730634,-0.233224700104709,-0.244047579523007,-0.244227895579844,-0.246042014482476,-0.246592778775875,-0.244661938101913,-0.239798274740901,-0.224158211830613,-0.1650674886656,-0.0762919137162307,-0.0231801422265898,0.0192127806759152,0.038687800025822,0.0315626884374161,-0.0178763457163223,-0.098193527386322,-0.174121969400518,-0.200587011554497,-0.132595068289272,-0.0158598858337913,0.0553602583517951,0.0798900540096434,0.0827153620928477,0.0712916908545702,0.0187895611380056,-0.050404798471531,-0.122314194197653,-0.197674605996685,-0.236478621622417,-0.241780927082864,-0.244074191632044,-0.245995800824576,-0.243123368246831,-0.244197471038719,-0.234556855853409,-0.217979648384311,-0.167462373050532,-0.0807034965438947,-0.00737027787812084,0.0514984952287112,0.0783752633118132,0.0783486017420341,0.0341767415794862,-0.0592950873472809,-0.116848898123412,-0.129402857954168,-0.0574727966135991,0.0458169348743541,0.103588714874883,0.130430533273131,0.120195955905195,0.0911508182302709,0.0151915760857062,-0.0715688628954362,-0.153417210409767,-0.221087757464355,-0.242589414338728,-0.242824677113164,-0.246848727513143,-0.246597182690033,-0.242933777562022,-0.242530073315307,-0.238001991764624,-0.222740645706651,-0.179582244682964,-0.101972362227065,-0.00498468745908292,0.0766414491704842,0.117667835688643,0.135442554788243,0.117504755266728,0.05402883052142,0.0197948895440106,0.0288215070935098,0.0725707990391057,0.132373806284726,0.176355263381942,0.175090858742618,0.133397627320417,0.0752976899494771,-0.0294890026274025,-0.125991321324622,-0.199575970089908,-0.236592642878494,-0.240124016420867,-0.244223830083252,-0.244836597323409,-0.242404325848592,-0.242347400770552,-0.245405343247825,-0.237910429030831,-0.230912173503308,-0.198053526282947,-0.13077883495576,-0.0363048861249693,0.0528829506025371,0.131320746184809,0.177655859830272,0.206804634587157,0.203814486989723,0.197839397365964,0.188029489928569,0.196195786417429,0.210781174025418,0.204945537839053,0.156354412718401,0.0808302233547511,-0.0200399102560369,-0.108774874520477,-0.187544048159546,-0.229793486943033,-0.240619657477177,-0.244630289516712,-0.243121939972442,-0.245327518424101,-0.244946435214888,-0.245179318468976,-0.245186201608629,-0.240007282487316,-0.234454110351235,-0.212679080619892,-0.176916238409941,-0.0995136753588786,-0.00946537189410652,0.0704975509280353,0.147969754807493,0.193041509465773,0.239335792669109,0.250695414273115,0.237099568418544,0.212988602759932,0.187165180270731,0.134634515816142,0.0613195096056041,-0.0287419767986875,-0.126314047101494,-0.176992448851218,-0.218740040590985,-0.23715085149105,-0.242301391368477,-0.244983960507254,-0.245356068395671,-0.244455683989619,-0.244881297810762,-0.244811717445003,-0.245311129581288,-0.24174640367124,-0.24145864548304,-0.22930319429022,-0.21670603174303,-0.181402872476251,-0.131422182821557,-0.0665461721652117,-0.0115822365226243,0.047009496378276,0.0898390768885889,0.109022284900329,0.104612210424914,0.0810110657513208,0.0447605774396574,-0.0194478206478918,-0.0819519419042677,-0.145348758402039,-0.190374495156275,-0.205564923382285,-0.22410385702571,-0.237545179136258,-0.245105401379357,-0.242380136416425,-0.244230769717605,-0.243304272953895,-0.246201263443129,-0.242502809154255,-0.245637485901801,-0.245392893324967,-0.242604721937099,-0.242504240522712,-0.240324559574635,-0.232901589651063,-0.215086412678238,-0.197771802762101,-0.177755437280412,-0.155052618138145,-0.131800497304658,-0.116076773305452,-0.106287708213876,-0.109479537206747,-0.119100268501657,-0.139494399115843,-0.154888197208438,-0.188093692532972,-0.212745871541495,-0.228427341925717,-0.236664141091582,-0.243091841660621,-0.243939428357906,-0.243799802173347,-0.242653627075427,-0.242672326425541,-0.243443369449814,-0.24223934131381,-0.244859995042868,-0.242362030742615,-0.246409501138603,-0.245046489964032,-0.242077750611604,-0.239870763873836,-0.228867970718238,-0.22146571763913,-0.209988832997998,-0.197662826721164,-0.188366681986998,-0.178324295089531,-0.175874403622009,-0.181160016029065,-0.19609107569358,-0.195563010929943,-0.205527458837421,-0.226570566201924,-0.238848728370612,-0.2407814155839,-0.243834046246976,-0.241934176450327,-0.243761000469318,-0.243103459805681,-0.245247531042837,-0.24620598899217,-0.244029256854317,-0.24389074014601,-0.244097933481912,-0.245491254006978,-0.244575647951975,-0.243722610627124,-0.244772619434298,-0.243675146645511,-0.244056434784933,-0.241708929839526,-0.239774074049041,-0.239752171556177,-0.237116778729656,-0.240657045776534,-0.235941629184739,-0.236268425981094,-0.240165885017084,-0.24052619894273,-0.239388118607142,-0.244710554853451,-0.245876344537053,-0.245857714971253,-0.242807063609306,-0.244157968721818,-0.24484481126088,-0.246339002519884,-0.244332749654361,-0.245080335783968,-0.245273605889624,0.217775401153851,-0.0353044860742365,-0.0334900181942808,-0.0337188497144433,-0.0318435611392973,-0.0331096677764702,-0.0347919866895812,-0.0327211496168775,-0.0326749678345544,-0.0348067767038499,-0.0334984291013302,-0.0319949705571764,-0.0324028435134624,-0.0325626260643264,-0.0357758530056556,-0.0331115376379252,-0.0339373331110289,-0.0354158343046804,-0.0357874268882615,-0.0319018570850712,-0.0351602737308096,-0.0322560378135441,-0.0338679595294159,-0.0332120064882432,-0.0329264934052482,-0.0353504644251472,-0.0314482871276822,-0.0325037201679219,-0.035827889694924,-0.0316129450564102,-0.0329162209275327,-0.0330549270483191,-0.0318353221269767,-0.0322040085797102,-0.0331624503692577,-0.0339377975268864,-0.031560272609458,-0.0344215969441324,-0.0356242694416736,-0.0346547734766011,-0.0326445241427165,-0.0319342416590698,-0.0313908745077718,-0.0359590632096445,-0.0351245028613791,-0.035106896795693,-0.0337844706933139,-0.0346618310580165,-0.0343691124543837,-0.0328956480928767,-0.0359114274715109,-0.0317247630827727,-0.0350389003026754,-0.0345782607336422,-0.031965460718978,-0.0338742153992386,-0.0338396059666668,-0.0339970409156995,-0.0324491976874061,-0.0316700475874162,-0.0345855679010053,-0.0358114275379,-0.0313592110128768,-0.0344823891600508,-0.0303318317830487,-0.0353428006831609,-0.0380567406781201,-0.0447540012780918,-0.0461266355500639,-0.0448475114708829,-0.0461514452074216,-0.0410917262730998,-0.0355688421914473,-0.0386759520921278,-0.0406659022792813,-0.0424383980167987,-0.0445897556131282,-0.0459895069857516,-0.0375646093755822,-0.0354451999451929,-0.0325124583858428,-0.0326242361028343,-0.0337137361289426,-0.0318463121596598,-0.033906701487639,-0.0351618960156679,-0.034692444842869,-0.0346123755500341,-0.0345486472366135,-0.0347970148301413,-0.0327850741150361,-0.0316710788467056,-0.0289546087154042,-0.0344489507492034,-0.0337813993166811,-0.033679741394442,-0.0303337824601312,-0.029655956411536,-0.0330595931201519,-0.0368944918676887,-0.0398047895595985,-0.0352027078074296,-0.0374909957846228,-0.0417420850997128,-0.0500761715659703,-0.0470039755678064,-0.0406467789400491,-0.0402051712827828,-0.0411120550457947,-0.0361900925671357,-0.0341747603708858,-0.0349686783686674,-0.0337207283635789,-0.03406344827342,-0.0353589975850685,-0.0315877110986907,-0.0322611570240471,-0.0322552695867929,-0.0307761180013057,-0.0263166273899363,-0.0248281197447266,-0.0256660686439558,-0.0205298149623999,-0.0263127728756669,-0.0199813114992194,-0.0172544206450215,-0.0175832084301688,-0.0198336318515201,-0.0199756249001176,-0.0191114439861306,-0.0300915413569985,-0.0483208699527354,-0.0569254011556235,-0.0662163660571989,-0.0473321888390921,-0.0430365373351893,-0.044810548397106,-0.0365652130188421,-0.0348715061110752,-0.0343972720560655,-0.0329498721253573,-0.0323540584985375,-0.0318533374731222,-0.0313994825361887,-0.0332226805513921,-0.0352276141948428,-0.032805348321884,-0.0194649861341642,-0.0175994435324397,-0.0150627781215232,-0.0207894228201393,-0.0241952786107811,-0.021689326342174,-0.0162510430047506,-0.0242972764103395,-0.0274477012786113,-0.0338123772458908,-0.0463470341575084,-0.0519595153394792,-0.0677611045445198,-0.0758910242429748,-0.0669876424812641,-0.0544531902637816,-0.0516433201128077,-0.0486037152202389,-0.0441068602249397,-0.0364323812602269,-0.0356363926642423,-0.0326116484750027,-0.0315732886506152,-0.0357300133811744,-0.0313768038247162,-0.0336567028743983,-0.0324112180631753,-0.0260774954215386,-0.0112683130703518,-0.00522758312679377,-0.00998963774956649,-0.0110896691439096,-0.0221614965282345,-0.025507114309956,-0.0229460460283613,0.000571814898958609,0.00336495529444392,0.00182267657603136,-0.00310943622304481,-0.0169558539975548,-0.0300955524597435,-0.0540499087889854,-0.0651605318290778,-0.0463807456493198,-0.0456803694898636,-0.0540264489292666,-0.0522394051180391,-0.0335051258665485,-0.0361490068100095,-0.0335484737800521,-0.0327933691910277,-0.032738023773196,-0.0315035704331015,-0.034337110437415,-0.0268844287918641,-0.0212172924501633,-0.00671809947642794,0.00408478530668086,0.00529521119621501,-0.0103456702044977,0.0045462139750098,0.00894021445134175,0.0354624655604257,0.0449081454564914,0.0637789982265328,0.06645788613699,0.0576844114628201,0.0454352042231163,0.0337489518990381,-0.009139290948732,-0.0481545019143411,-0.0458939662537095,-0.0399213230989387,-0.0518916569155651,-0.0539500285322667,-0.0346882553307542,-0.0358748993932711,-0.0358492143232156,-0.0351751510622386,-0.0350020588425901,-0.0363488711909302,-0.0355774368302823,-0.0271365672631779,-0.0136122985303001,-0.00692218769746091,0.00775300408619772,0.00870772600814678,0.00505706705100695,0.0181198178310728,0.0386101613576331,0.0564417324917865,0.0712076070972084,0.0871199336239292,0.0840533587348688,0.0762433871911519,0.0748182712479454,0.0578931776277002,0.0192414685117891,-0.031128256114082,-0.0399773214083324,-0.0333594028229508,-0.0376154953569269,-0.0437582755853136,-0.0337572411884089,-0.0360205189462738,-0.0364464695431601,-0.0319283045112064,-0.0342388194697926,-0.0364155966466818,-0.032967841554207,-0.017804568350406,-0.0067333357333107,0.00119470852010339,0.00765557224768703,0.0154517004049763,0.012787660406578,0.031086546718229,0.036068621948226,0.0498346021103684,0.0505944311573749,0.0616636390951898,0.0760471738885153,0.073417532881279,0.0763378164017067,0.0505377136016633,0.0184247056455956,-0.0232135316537002,-0.0427704578109165,-0.0327117248789882,-0.031399832594238,-0.0286407499744255,-0.0353431446606017,-0.0324740741630329,-0.0320384946692049,-0.0355260612879751,-0.0336994626286339,-0.031252168466519,-0.025391360433907,-0.017891659855222,-0.0116095156471113,0.00235599210621692,0.00564545195479007,0.0127366833216365,0.0131255242167174,0.00654419851389554,0.00686213448562478,0.0118969724652472,0.0242009231601682,0.0406751214779432,0.0481290051528328,0.0634127787488955,0.0651507162983064,0.0414335675292449,0.0125078430103387,-0.0290830131933023,-0.0435441183558942,-0.0480339854145522,-0.0340556270415911,-0.0222226481140265,-0.0322960283277158,-0.0296677752717516,-0.0337241431559087,-0.0357473953250423,-0.0338201372056079,-0.0316665076077153,-0.0208982827551792,-0.0155512730723179,-0.0155446540190904,-0.00119961464347975,-0.00318145070447153,0.00686714309550991,0.0126616376165623,-0.0131247989140145,-0.0137668363536999,-0.0129729145358333,0.00418908766991356,0.00498856863605243,0.0189372285827862,0.0374421922764907,0.0471523235632053,0.0361124721879519,0.00261243480203676,-0.0239257894336137,-0.0598015446212632,-0.0489311499512893,-0.0428061438312104,-0.0317944022574545,-0.038448230872726,-0.0312331057980091,-0.032147759169801,-0.0334680079620474,-0.0309274330751937,-0.0343131896814908,-0.0244761620981759,-0.021611878983255,-0.023035019099106,-0.0159699203680315,-0.00663792021160155,0.019659414139649,0.0155674396128741,-0.0104214877658036,-0.030302297854863,-0.0221820417821811,0.000490025008146274,-0.00573342127520258,-0.00106048779926273,0.0220523964143996,0.0454667905352325,0.0361683839007912,0.00636822241813361,-0.0440211843125211,-0.0630579458891667,-0.0638264241316104,-0.0556968187971368,-0.0410059354669791,-0.034260285498641,-0.0323230245999673,-0.0348136475168828,-0.0332081818667912,-0.0343896256425319,-0.0320410045966419,-0.0305661283313662,-0.0325906934199597,-0.0393788905678114,-0.0362953662906992,-0.0123564791791449,0.0210429928482462,0.0323682996119132,0.0207448184718547,-0.00403804072511292,0.0134216300482848,0.0125433110359208,-0.00250334358677654,0.0140502412439712,0.0334417954800536,0.0553495021967047,0.0371726665433181,0.00289322395526527,-0.045247838934506,-0.0584217535326576,-0.0692837600225695,-0.0687925241107512,-0.05170697202605,-0.0380231185374658,-0.0326979687673613,-0.0338774129929624,-0.0341836645673132,-0.0341747689242917,-0.0318624842519514,-0.0331613435658293,-0.0337656672936729,-0.0481792278504909,-0.0486283475408639,-0.0225352805524145,0.0190806343873674,0.0428787481501892,0.0497828631846793,0.0447822018789471,0.043989889595692,0.0271010813750321,0.0157619759561434,0.0264145291619562,0.0478066253182046,0.0600742486376603,0.0510623524159043,0.0124264722238111,-0.0481104290297387,-0.072634090118434,-0.0703137073230304,-0.07253974703493,-0.0648757233218732,-0.0370221726127328,-0.0321666081788012,-0.0323008189381439,-0.0348273714948123,-0.0322721137076635,-0.0322357135766881,-0.0308148421440521,-0.0348787248427558,-0.0505722613326153,-0.0433021237378217,-0.0250272985711417,0.00932445492060229,0.0437168486166982,0.0431825361658081,0.0373041196507069,0.0340794083609942,0.0200707282539029,0.0246031615744853,0.0393381638939595,0.0705852353634595,0.0765521443483627,0.0672506717837632,0.00677736905190395,-0.0586310791037952,-0.0738149382565711,-0.0700858929076764,-0.0617733215805934,-0.054446924973742,-0.0370684721787526,-0.0338229869045985,-0.0342668705415922,-0.0329064028280488,-0.0324508764893345,-0.0327307717528235,-0.0297210954082298,-0.0297808176850911,-0.0444400159934764,-0.0348265169341685,-0.0273394557076358,-0.0109338883975314,0.00418344889518647,0.000926617481078898,-0.00950893517499215,-0.009582300287599,-0.00422594404033638,-0.000851311151628683,0.0426585333906221,0.0893705573869631,0.0966374630478136,0.0569630280626381,-0.00357125625190886,-0.0587349696057348,-0.067315936889465,-0.0569899309007781,-0.0438549602679749,-0.0449375974151316,-0.0324481592692746,-0.0346051054923554,-0.0324773942570366,-0.032002634281956,-0.0347672355964991,-0.0321829507413424,-0.0273094168411889,-0.0277855596060741,-0.0357362268403695,-0.0274767343288141,-0.0362303071334112,-0.0528509029307308,-0.0505014788432887,-0.0507338233860318,-0.0512530104769011,-0.0323994866863609,-0.00372220596809785,0.0144682559278816,0.0546040682833984,0.0883606883237906,0.0868362589589605,0.043281829357094,-0.0138192859520981,-0.0585896871112672,-0.0474862243611076,-0.0458628633723684,-0.0378407835776466,-0.0337041212219258,-0.0291090195929501,-0.0310513681180038,-0.0354783926176599,-0.0346513907905173,-0.0331805203889327,-0.0307995894461855,-0.02713797429162,-0.0245179051699191,-0.0275783513594241,-0.0362089353534265,-0.0534241563236823,-0.068300453125888,-0.08186618255578,-0.0858403728514878,-0.0738559790695452,-0.0362301134936776,0.0118925741179109,0.0434973066983825,0.0598727001578809,0.0681522595475063,0.0674983283354615,0.0209058779422952,-0.0204963376748509,-0.0453726230212625,-0.0457416405088948,-0.034800486411892,-0.0238938801773966,-0.0270095687522881,-0.0276316655920738,-0.031615750515169,-0.0311111984041546,-0.0342461234350421,-0.0333288194055306,-0.0293507289791716,-0.0266497418348107,-0.0265007927828328,-0.036531071209186,-0.0552640822447933,-0.0698882185395084,-0.0808289431391222,-0.0853221160990515,-0.0881018540802316,-0.0695100839914859,-0.0230919434882523,0.0357093908922118,0.0460043217088459,0.0437860953004065,0.0456473502649761,0.0353371822690742,-0.000618904478587867,-0.0306638807227577,-0.0506873733634057,-0.051075072978227,-0.0240248762710186,-0.0170336485367387,-0.0188052763079719,-0.0309455072917991,-0.0352421974762841,-0.0340874487296513,-0.0340592987598301,-0.0322223017648189,-0.0307925966398739,-0.0300053161642871,-0.0218739378097482,-0.0280314555821399,-0.0594633893397778,-0.0891641697961092,-0.092107747729085,-0.0960793656261608,-0.0784306582387418,-0.0536579264645861,-0.00457169008801013,0.0328132118532182,0.0349445013191512,0.0371423307200768,0.0243186666459656,0.0128604359330612,-0.0176707385679643,-0.0478234707269921,-0.0486408025476298,-0.0413638359347148,-0.0235758705126798,-0.0176981128843189,-0.0210404452794043,-0.0356479518880897,-0.0317123651133618,-0.0333170804064424,-0.0319071316730484,-0.0317475596685002,-0.0321018191356293,-0.030460868207118,-0.0266378945763987,-0.0291425260690343,-0.0547793261756721,-0.0874391314752545,-0.0986401406553407,-0.088907379110323,-0.0750117951077801,-0.0399333633687483,-0.00368192942356375,0.023609930438971,0.0212120542207359,0.0233503872362561,0.0103957256213583,-0.00430005274206722,-0.0282983042291616,-0.0543911196710532,-0.053164161319767,-0.0429354215797771,-0.0307002926069979,-0.021329313752397,-0.0281268000961886,-0.0333168678557854,-0.0358150906128266,-0.0356610221644886,-0.0348189780375924,-0.0344906096692845,-0.0306802879772245,-0.031807663657898,-0.0350049725826912,-0.0480260922275569,-0.0634523699107775,-0.0757298104745855,-0.0844392532586992,-0.0749274493372362,-0.0469325456059786,-0.0135605199607992,0.0132400961006254,0.0278900100438488,0.0246072349674726,0.0202320250984675,0.0113216276872637,-0.0161223743415547,-0.0236634906317928,-0.0284545311407804,-0.0442167888548566,-0.038019775534379,-0.0243813563564372,-0.0261689033610373,-0.0322562551437155,-0.0328448260445583,-0.0343263971524644,-0.0338838821535045,-0.0328804811113808,-0.0321123189536306,-0.0315297089968393,-0.0333954112372416,-0.0285709115841834,-0.0396162199432902,-0.0473043631843237,-0.0542754717918616,-0.0614352394447784,-0.0571394885458937,-0.0364527438339695,-0.00889534364437318,0.0137984308727823,0.0208663992549797,0.0145327026796767,0.0221259727837605,0.0060117509960374,-0.00707132641670317,-0.00691817087532421,-0.0167954441958318,-0.025957901867467,-0.0276102260242982,-0.0313810652578108,-0.0312998523437272,-0.0348284067568773,-0.0332748938539253,-0.031348770666824,-0.0341087376349836,-0.0320162628800543,-0.0325980204995267,-0.0317412106007562,-0.0329065359969233,-0.0262150339483349,-0.027136707518255,-0.0342435520370539,-0.0334506187823936,-0.0230958370783507,-0.0068646921079723,0.00456060845277502,0.00866435914873183,0.00628427884859354,0.0149718671566306,0.0206862594065251,0.0302207248051062,0.00928478538799198,0.00503093431577985,-0.000176423877081258,-0.0107632252205359,-0.0205624067979309,-0.0264349459814295,-0.0268955582838198,-0.031845945556385,-0.0340163462678986,-0.0318979174866371,-0.0347556936835764,-0.0332864318041877,-0.0354955128594982,-0.0353011042090975,-0.0336383570345519,-0.0342886624264259,-0.0301688041227117,-0.0297752420912891,-0.0307589058585859,-0.0202771216871027,-0.00989179378906049,0.0162029194694529,0.0316442830056729,0.044383914766912,0.0359038017976112,0.0245087990183723,0.0270915525998674,0.018975841514997,0.00707054300026177,-0.000858424290087431,-0.0119349217731851,-0.0166122442142546,-0.0208698519341767,-0.0280025110637494,-0.0301198306109593,-0.0310590969882656,-0.0331469982682621,-0.0355532812995875,-0.0324498356584134,-0.0343569494044274,-0.0356592059961533,-0.0317845400761301,-0.0323526426912543,-0.0332333612384259,-0.0322437931133099,-0.0333012787701083,-0.0327713719621835,-0.0282977725587735,-0.0211799671929776,-0.0144514492166453,-0.00186892177637754,-0.000509365767126597,0.00761704985805408,0.00600533907295525,0.00378241965045196,-0.00671490277598943,0.000176350522078407,-0.0124162808481606,-0.0119580942702364,-0.0200362264666082,-0.0296037583725432,-0.0308347686056381,-0.0321812671367086,-0.0322998723557434,-0.0333668509767481,-0.0340795999389095,-0.0316659532216149,-0.0318368556245746,-0.0323469171325489,-0.0339889684680944,-0.0354683608438766,-0.0325999387909576,-0.0337668114110211,-0.0355286962234727,-0.0333610025664797,-0.0318100484820805,-0.0319248713121554,-0.0342050868351975,-0.0339104509279714,-0.03205811688286,-0.033322695182126,-0.0319807881591173,-0.0325840526500401,-0.0309202690633541,-0.0305232970655314,-0.0340445970300214,-0.0326344860293124,-0.0335316612341166,-0.035768861848383,-0.0333985172256981,-0.0349836055383975,-0.0349548087872556,-0.0336495736923399,-0.0341701676974967,-0.031621760946737,-0.0324507253128333,0.038334504292522,0.187846447207799,0.187599332794576,0.186061241439246,0.183771048785964,0.184668907688828,0.187375643696128,0.186476048762364,0.186169039277987,0.185262827092092,0.18601225525104,0.185302663067176,0.185222425622247,0.18613197131429,0.187911606058516,0.185601287722578,0.184951439285225,0.185619935288954,0.184503271078718,0.185927269228245,0.187875883634606,0.186046429406395,0.186706859622721,0.186560596589346,0.187184353812316,0.184421461502082,0.187843446064655,0.185771987332986,0.187813819193521,0.187976359007272,0.185858038446957,0.184497099329694,0.187182233613069,0.184355417576991,0.186113515029653,0.187510887838003,0.188087529324527,0.185394166623106,0.184368830326532,0.181893964403031,0.181956629914287,0.18275342222349,0.184594463523123,0.179516966500292,0.179850695893123,0.182495144874471,0.181718019746289,0.180863360010326,0.180649796807283,0.181359636911732,0.182093441403196,0.185552573121001,0.187861097616773,0.185222763702078,0.185049918029359,0.187223021972334,0.187369933192319,0.187278680378368,0.186721542393748,0.187101937436146,0.184389171441097,0.184983332586851,0.186841400353632,0.18761069515615,0.186829118923292,0.185398060192272,0.175299016959233,0.166901872134265,0.161884831912947,0.155122135789851,0.134428459002642,0.112500197026812,0.102732360105134,0.0986523931412433,0.0965196181066439,0.104329307624022,0.120951353910374,0.136820788143484,0.156748785908954,0.173960402083221,0.179453042703855,0.184667056663561,0.187240192028381,0.185582862605299,0.185646525667671,0.184071916871838,0.185914758732372,0.186232895675506,0.184229349524136,0.184761872173882,0.187693371238919,0.188107812499654,0.183638959649759,0.182804713448634,0.166440923756622,0.158454381152683,0.148652190301932,0.133236708689125,0.0922642879825359,0.0526499984423394,0.0254279964172025,0.0185330862869878,0.00885393014623409,0.0160025944325716,0.0465206604315428,0.0876577540643055,0.131963235485483,0.155863537846114,0.173582900128008,0.181236955396175,0.18603027274092,0.186923608530384,0.185366013204993,0.184923692836811,0.187111330373196,0.187548269481367,0.185802314313136,0.185167305608639,0.186857967983052,0.18834209122074,0.189212826887889,0.183742144366381,0.181296666896953,0.160871346675455,0.149525722990924,0.096278080711595,0.0199994063136254,-0.0325423938158605,-0.044953812000129,-0.0466373462861592,-0.0270426326918177,-0.00137274620773456,0.0490075403348421,0.101725339989042,0.139694322973349,0.159440983369221,0.172914109490162,0.186548965364862,0.189442520635921,0.184231934411436,0.186285369732435,0.186172410718686,0.18764870482801,0.186217774689949,0.187186932774902,0.188885553145444,0.188461713808162,0.188559723322711,0.19077687016054,0.198207025387801,0.194287662161526,0.176747044987854,0.148203562979778,0.0706115658712677,-0.0232439240073842,-0.0787743700611842,-0.0973227669687165,-0.0700976082682717,-0.0226948341597013,0.0365410965447532,0.0926009493932284,0.13937440442688,0.163567254598624,0.161422325286199,0.162632714140552,0.172520285178696,0.184936804529545,0.182245886659626,0.183567079015904,0.184386336890446,0.185183141922338,0.186300096245677,0.189326311923449,0.192037112920768,0.194688534601024,0.19484188516181,0.20156907284289,0.210515517605919,0.2068845627971,0.183363542921388,0.112863892577476,0.0275002842754488,-0.0751149529669353,-0.141024697371923,-0.160588181126543,-0.11643817668058,-0.0382371229730766,0.049781291516903,0.135771047337253,0.169498763863857,0.177980072531501,0.155627415030452,0.136646558828962,0.144916380056055,0.171125500914745,0.183532049599975,0.18240834161065,0.186791103225384,0.187021151318681,0.184459792105723,0.1902666916334,0.199283817188412,0.203810705235617,0.209760152975132,0.221583966118889,0.213644404380365,0.194111341701116,0.153587940537707,0.0796341852509512,-0.024606218179532,-0.124286105281168,-0.199459916748883,-0.206680363012092,-0.143292559096854,-0.0430651297289542,0.0587774870299985,0.151129759357752,0.184815070553412,0.183216393759699,0.158195592821618,0.123633378900126,0.12919510965285,0.163649306870593,0.182896650671014,0.186499967405987,0.186086469457925,0.187903865278199,0.189720865005659,0.190871280592604,0.200360282603338,0.213362770296298,0.219190302114917,0.227197754100911,0.208589603080738,0.174543110373114,0.107802100175222,0.0245460904162183,-0.065131668480538,-0.15480659551996,-0.21828685488194,-0.210437922012949,-0.115600952741353,-0.00655116522334958,0.0777013564818194,0.162168909839011,0.217777268833881,0.217230901787267,0.186982718861154,0.150708479866311,0.145935880137717,0.157304943418237,0.182660286918507,0.183156950446735,0.184668451490717,0.185298236424254,0.187673364199342,0.194312155578639,0.202935214697665,0.216886360034644,0.220599075317402,0.219405686322921,0.203047007212573,0.129424015104501,0.048107306616468,-0.030615692318118,-0.0994563043091471,-0.175570613536773,-0.21560152492213,-0.177757969530864,-0.0690985020125285,0.0451525772580307,0.108910679000078,0.188623736843433,0.252396396370885,0.260648702611291,0.235079092426257,0.201236688882197,0.171411500184779,0.169915441997504,0.182859618974966,0.187475679300873,0.18374961823252,0.187516007277664,0.188881404203623,0.194439622535326,0.201751281222348,0.205989204006781,0.210180114554085,0.19682480645382,0.155497559505845,0.0698736607117199,-0.0143929525552666,-0.0712061395530567,-0.109165872564731,-0.175611420931482,-0.205497381541392,-0.156804619983015,-0.0373333214174387,0.080193734760451,0.130904948039281,0.200136446127257,0.265148002556601,0.291557915560202,0.274731661930073,0.242044885103085,0.197378802208041,0.182315118854843,0.185053452572326,0.184603294439542,0.186230457918161,0.185470677250305,0.18883012116192,0.191034729379436,0.197759520820139,0.19967734841235,0.207320176739146,0.186475806857749,0.1105024686911,0.0281792197273523,-0.0477948920296345,-0.0766011478270492,-0.0994955052141919,-0.172628633923154,-0.202952529328631,-0.163091775621398,-0.0526454145511938,0.0570890258094353,0.0950857385003981,0.162636254348624,0.244485120617994,0.290421175924128,0.280510596713821,0.254547473603804,0.213011831922111,0.188231334473402,0.187881284945475,0.184342067574499,0.18436508061447,0.186947065602459,0.186380298001534,0.191053760177333,0.189979072850405,0.194436151541249,0.203445618540752,0.181374179307017,0.0954514594360271,0.00763905591521713,-0.055396670278645,-0.0827469454784993,-0.0995457057342677,-0.17933338931018,-0.217184974851176,-0.180556711287961,-0.0829574645339253,-0.00940228997616127,0.0267563867499497,0.0987361718696364,0.191948670309768,0.242222572564776,0.252542320128526,0.243303657103854,0.212538939661294,0.191707813967137,0.18679699603952,0.186264722761928,0.186588397149585,0.185428160640647,0.184988695193935,0.186452124416314,0.191013704388702,0.209155447318485,0.221316278638502,0.201404110836048,0.104098647489863,-0.00186382345692675,-0.073453965689676,-0.0886176648135636,-0.108552755332944,-0.22112291136075,-0.250386990387911,-0.223131961694479,-0.139141372104517,-0.0669418744681996,-0.0298833072509563,0.0525102305260154,0.153400908077322,0.214858890560394,0.227969256572319,0.230320867474067,0.205436235949671,0.188692099963012,0.188764490875823,0.184878049582016,0.187181316312446,0.18699384809681,0.184254744593831,0.183659776092192,0.195990195822576,0.228146289638588,0.250092011949202,0.213473723462593,0.107915364195558,-0.0144445782061602,-0.0784806443038568,-0.0954028255992675,-0.140308575149798,-0.268322917986155,-0.29285238342812,-0.266398045358359,-0.172230865863804,-0.114171668329412,-0.0446806188163186,0.0377450183272919,0.133457732991433,0.19648319714165,0.213206114088527,0.220381188889283,0.198410722650691,0.183830211798735,0.18897766278403,0.184174793884873,0.185743180769613,0.183720254207889,0.186902688870513,0.187344995907749,0.20302957463927,0.246703231099969,0.266635215442843,0.222774823963893,0.110063094379084,-0.0142529811458036,-0.0695633163186937,-0.0759663014689456,-0.161857830401987,-0.288133028180316,-0.309433385698686,-0.280122006835325,-0.187193409221058,-0.10674082979146,-0.0320962163327444,0.0537492825255466,0.134695734049257,0.182015254930022,0.204384204261943,0.20609166158139,0.199304022953513,0.18492802660777,0.18778943022121,0.184715432467654,0.184281211277167,0.187589165690843,0.187786469346452,0.186872326648724,0.209552461639708,0.248172682115478,0.261961159303526,0.200163775110067,0.0936299618546655,-0.00245082014986322,-0.0483415182443906,-0.074908323340868,-0.180213491779243,-0.290541885115264,-0.311714571125373,-0.271474734389439,-0.150194614051852,-0.0753368106175351,-0.014523371694985,0.0564341144937202,0.128977416513051,0.17532111534811,0.192678864389469,0.198289434601106,0.194116408104087,0.186430527370069,0.185739857889429,0.187241529828785,0.187298353124088,0.184969599158986,0.187357357970648,0.188363889553387,0.209690780679266,0.24220290369634,0.237402395240952,0.176636548210145,0.0822059436705984,0.00761827612544283,-0.0468523779732449,-0.0918830676845564,-0.20321201914731,-0.291564071940754,-0.301131197311271,-0.224419348328375,-0.129629473369498,-0.0665039543803834,-0.0167640402447163,0.0495770147805342,0.11406217622311,0.150524932298192,0.174266407353403,0.187328012188119,0.184999724511251,0.183300409325357,0.183418824570299,0.184618406659962,0.186094376585616,0.185576068625318,0.187554612746783,0.192036027235714,0.213853492003132,0.235243265826528,0.215269261078083,0.165517590406706,0.0897484113935926,0.0262442213310857,-0.0554639113154663,-0.130433590532198,-0.222887606148139,-0.291730245575537,-0.283146537140338,-0.203860169215801,-0.132359393348021,-0.0734136543015541,-0.0316258186233006,0.0394394458169591,0.104972835500352,0.14719300188046,0.160112310679959,0.169021582035664,0.17975492531834,0.18454681662879,0.18676403325075,0.185966675311051,0.18698888204082,0.187210238030691,0.189372836508024,0.197922506128337,0.214999328112271,0.232715613546457,0.203852274359902,0.164595356667886,0.113459680641516,0.0348575020481663,-0.0675560359256895,-0.156325586162292,-0.240085594639117,-0.293808573233538,-0.273407472883062,-0.204825625133334,-0.130795886380428,-0.0683930076278655,-0.020035985147995,0.0576445135397038,0.117268352867545,0.145301347215919,0.165003830211104,0.168857498368781,0.178552894358857,0.187173361243428,0.184362312142026,0.186086689518239,0.187726148839826,0.184636105143917,0.190424984661611,0.198466548017061,0.213298771366892,0.230348111236957,0.213436518183513,0.185507618175372,0.139699694785948,0.0654040303957,-0.0380062551840917,-0.155398991146896,-0.232441354975826,-0.285533287565173,-0.261583272570102,-0.183910129854983,-0.11215066590996,-0.0238524263925012,0.0391135998405718,0.109814483570345,0.153979706741925,0.167219524784912,0.170411679187795,0.17232829136303,0.177080802488076,0.186313950278582,0.184689627225433,0.184454653489245,0.185999883393448,0.185226014489806,0.187878062423298,0.191085977641179,0.205370795235825,0.221999541304529,0.237171217388993,0.226810650837361,0.19301915827846,0.125121518270956,0.0163453687731062,-0.090648345845191,-0.186975210136381,-0.227983215720629,-0.20733042178847,-0.130293873817887,-0.0473776775204884,0.0443020430898488,0.123592171452206,0.164124264935555,0.172991798135678,0.170998051260107,0.166001196241276,0.173608642855733,0.184779251852281,0.186922116268381,0.185329164372052,0.186431709899261,0.183792772956823,0.186277862929546,0.190014328203279,0.192378971154532,0.19520290095447,0.215432448916498,0.233032037136371,0.245526426175281,0.236958835192139,0.190282597034514,0.117140742105507,0.0245442223763049,-0.0615878070846632,-0.106475384654354,-0.0985489477370183,-0.0436190041531621,0.0298741257714459,0.102393012807222,0.146617320970068,0.161737793776732,0.166597749310745,0.164773439671052,0.1668062255642,0.173009587969709,0.181384014885063,0.186853103207705,0.183803146293911,0.184182350829599,0.185733768996873,0.187409834088426,0.184657031394144,0.188035008969874,0.194604716473145,0.19893925535466,0.218255653236364,0.227816370619519,0.219438727115278,0.191016611363078,0.141068607865468,0.0847008353079522,0.0161326199629483,-0.024926588410744,-0.0376310507519032,-0.000121238895446641,0.0568258090180084,0.107883687095767,0.148656342948187,0.156110581301136,0.163371556019722,0.167206690803498,0.171686828024049,0.179886417844931,0.183765108240818,0.184715729142717,0.184799657808334,0.184752207016008,0.184076747965635,0.185868942784836,0.188033880598401,0.187667165146085,0.193889031256772,0.195306221555613,0.200045518958822,0.204284173855754,0.197999936421783,0.173963113245894,0.133419365096406,0.0819100623664456,0.048850543139215,0.035709812379633,0.0476453305226033,0.0660444370264724,0.0957073310593406,0.126023665778357,0.145817715078245,0.158913156723441,0.172356280127967,0.178806456680873,0.178546661090275,0.182548262513739,0.184360863525756,0.187519275950292,0.186760327715065,0.184207348200981,0.186285798817536,0.184123605320198,0.186676383004839,0.1851655661066,0.185759664060247,0.187761871118406,0.191260632364967,0.192637871165575,0.188520133767965,0.171548396801692,0.141897740521394,0.113621856493444,0.10050667327784,0.116577889009328,0.132493224657949,0.140526083329814,0.157983911808145,0.162015613847464,0.164431480434068,0.172932449707809,0.178647123698452,0.181327866632461,0.184412133282573,0.186141727216625,0.186254336736924,0.187633987652112,0.185236577388771,0.183792951347526,0.187730266198447,0.184410464370945,0.185415738216781,0.187346092409129,0.184731716737868,0.185669473267656,0.186665255814271,0.193652523753877,0.195130533885428,0.196644019758378,0.186853105913787,0.175097624443068,0.177293348604114,0.181352353582721,0.177681819189028,0.17739409267333,0.181443831232726,0.182937319320353,0.179773292613864,0.179689275247189,0.18123298325779,0.187527250123249,0.184293234086598,0.184135834911316,0.184091150455737,0.184454814483554,0.184981158194506,0.186115601453632,0.184866176380533,0.187640214176513,0.183797624041887,0.184433808212953,0.187431382310973,0.186063434023751,0.188780800393798,0.188516302311932,0.18574533362028,0.188513925100324,0.18949855052996,0.189850946827706,0.189956667365229,0.192128421590483,0.189904035890305,0.186073393219573,0.186644003199169,0.188297202905366,0.187514736400506,0.187895700055904,0.187471802678935,0.186701406627922,0.18718393186682,0.188084042534152,0.187488772284749,0.186435720318124,0.187044261964204,0.184123646789573,-0.235528641033447,0.172304878857007,0.169806629089842,0.168711009038464,0.171097291220646,0.171817737442125,0.169977857909564,0.168810159160577,0.169030505025938,0.16999251387621,0.169286511291178,0.170822394778264,0.169179660922224,0.171544438551118,0.169122032465711,0.171395709361437,0.172392039337989,0.171906523329228,0.170009063590096,0.170816765410816,0.171043294538071,0.168538698259994,0.171896557669339,0.168641533936609,0.17184335784484,0.170018310543833,0.172528301943453,0.168576042302125,0.168526752255839,0.172506812737229,0.171205274175759,0.171797397266813,0.169172655591425,0.171079308401881,0.170705057335034,0.171789628764733,0.172546817997215,0.169473916460366,0.171123979379075,0.172637794328297,0.173002001564667,0.171270501384851,0.169801332286696,0.171034638003633,0.170302645354231,0.169637361218495,0.171675644560526,0.170264033065479,0.169559347882905,0.171292572577395,0.171742556004385,0.171683385003533,0.171701707352524,0.169509548314299,0.170107967513124,0.169138776702963,0.170826008697018,0.168798461971647,0.171243532876357,0.170657053550269,0.170257587164803,0.171435768268108,0.172311502945293,0.172063622880593,0.167459646855218,0.167703614878326,0.16962311765606,0.173546882788392,0.178844810631703,0.172078923119886,0.175726745414058,0.183361258714005,0.181096902428383,0.177831674641258,0.174890203953187,0.175051726929274,0.17433677425567,0.171632143387565,0.17287061706999,0.169955725860674,0.171428512668712,0.168243397923551,0.170656555349155,0.169988236304447,0.1713024610187,0.168935160721574,0.171390606971919,0.169829374764654,0.169094577420278,0.169181341198277,0.168254465132059,0.170807272119737,0.165725460527413,0.165434576972259,0.164642999410219,0.161109367819319,0.145227732583349,0.132048016538582,0.12937907372818,0.132740376042024,0.127061772961783,0.124200418313152,0.128694827541694,0.136099860728818,0.141169345590344,0.153391146291975,0.159913357251111,0.168949405988214,0.170895482606101,0.171667061423207,0.168736734166124,0.172641025866982,0.17129258093325,0.168991721900795,0.172363439374517,0.169899148252606,0.169759930487198,0.167465321587738,0.166072727851842,0.16268850808314,0.154132188216597,0.145705643172819,0.13138809249924,0.104207160839926,0.0566332881471674,0.0184786920676436,-0.0261410298231721,-0.0581887966422118,-0.0798037173116748,-0.0794717214377839,-0.0573275530855219,-0.0264969822163784,0.00372202549009221,0.0561266013527419,0.113036692868652,0.163922819465433,0.174423469155317,0.173053335869333,0.169769864834572,0.169409703667657,0.170184243337462,0.172810307243989,0.171767123033107,0.16919548929923,0.170306300988702,0.171254246943038,0.168681104682768,0.152232857814437,0.140123191044876,0.116539557992457,0.0774876066196193,0.0429863661517923,0.0034302295395774,-0.0513920203619858,-0.0993890689844567,-0.128746317709063,-0.144375731929442,-0.159531078360178,-0.141306983625395,-0.11003604019816,-0.0672124649342345,-0.00696601355641407,0.0653659892067984,0.138753621533342,0.182138479433888,0.182799745565985,0.172441853186328,0.173666594041747,0.172154545629623,0.170520323055849,0.171511447641224,0.170141851040362,0.168241097044228,0.164728770971868,0.160277482427521,0.143891008158278,0.120171924522603,0.0877935834548175,0.0417412999058525,0.00775679649514541,-0.0361124992502325,-0.060181722499218,-0.0860646485957594,-0.0981350686628959,-0.125176706930805,-0.132519569272238,-0.132292911348503,-0.13439135934714,-0.116055482834742,-0.0597825962518459,0.00580247087698152,0.0920471952865423,0.167365421485962,0.194311188574452,0.176308243628044,0.171959817644832,0.171664361171071,0.171894263322375,0.172210800874067,0.170421545508488,0.165791267432025,0.156194758154432,0.144392249624462,0.123932945209408,0.0959664638391093,0.0619888012715831,0.0128661214115859,-0.0183838883072544,-0.0349595093112925,-0.0561492161656786,-0.0700804660642317,-0.0910429039303277,-0.105709047278734,-0.117290063222533,-0.136997550415945,-0.143187727696674,-0.143909799928583,-0.113152463731848,-0.0524111135395737,0.0312006499241814,0.142016240953176,0.190653737111143,0.176612981124972,0.173037901119936,0.169619731321064,0.169878686144367,0.168494898935926,0.168607120377766,0.166226943906913,0.15668318932447,0.135889950553222,0.112236227993259,0.0685303540729025,0.0232649738795452,-0.0164980967898649,-0.0277763159163481,-0.0328444175143784,-0.0536790824367264,-0.0765811452278152,-0.108108503545456,-0.130791218935175,-0.141180833194162,-0.14905453386164,-0.147975107056679,-0.156046969728709,-0.15308146566063,-0.103514442611707,-0.0238213846610066,0.0859028121003183,0.163228444047569,0.177571190692668,0.173840384885607,0.17028396889296,0.169568689157195,0.169213336837882,0.166536302824938,0.160888793673855,0.155881878510964,0.136586712418681,0.10007411687923,0.037167322229565,-0.00609369290797949,-0.0241032407842672,-0.017747601426017,-0.0167288175647516,-0.0550175342788721,-0.0935464326701268,-0.131186019250748,-0.142287810580977,-0.123219978279567,-0.0938477689703299,-0.0856362378640652,-0.121664892958239,-0.151837909311893,-0.139574552184408,-0.0830074844038905,0.0366068561987318,0.14466928510071,0.180667756294999,0.170186889993949,0.170458134200089,0.169489535023835,0.168397096589564,0.167687206543782,0.165595944432011,0.155942728365704,0.135210142351228,0.074051963741097,0.0113054969982741,-0.0247997036821882,-0.0191811739522554,0.00870471591166483,-0.0109702694086506,-0.0317301431283276,-0.0672603007720153,-0.103481568979135,-0.0934962835887513,-0.0596685323197485,-0.0109250715149028,-0.0114196077370019,-0.0736892520232292,-0.130620373125344,-0.154995877175405,-0.1162652256225,-0.0156185435648186,0.127896556346506,0.180749277449732,0.172789382967585,0.168906087162465,0.17264252260046,0.168701492583095,0.170968723518594,0.162456311727521,0.161184731476847,0.124138662822375,0.0483023748918619,-0.0192778289297212,-0.0363117225950239,-0.0233361103986619,0.0107240601056564,0.0156700388825691,0.0303899407032467,-0.00933479969519284,-0.0218839194973399,0.0106558856141073,0.0582106117065317,0.0911464446284811,0.0755983163182348,-0.0148005371097338,-0.115076343517525,-0.175150559871843,-0.152439859004149,-0.0596672240909362,0.093148650613526,0.179973086175014,0.172655608366036,0.171605445887729,0.171730013361427,0.172412149019971,0.171256300606042,0.165509170570748,0.161687569353482,0.0987529768743736,0.00977658623827206,-0.0553113257093672,-0.0640394672701975,-0.0402627180468059,0.0100480579332446,0.0694236022947141,0.110297272482897,0.0931638916503217,0.0897645774099777,0.112081220180998,0.157405378187464,0.175085646431851,0.124058524962511,0.0140155894819073,-0.102907688373381,-0.179489418731131,-0.16881399536856,-0.0832790969901934,0.0635538532333776,0.171049095099813,0.172572897499263,0.170781110117708,0.169741139914097,0.170433549992246,0.171823379940085,0.167730434038313,0.158269700085107,0.0535610655113638,-0.0317852193579916,-0.100168237256138,-0.101657853726374,-0.0575511953555464,0.0230277802184915,0.129161863580589,0.179405787310888,0.181623946488614,0.181329955075669,0.181897467453316,0.214824868730731,0.20989420935913,0.144662491237459,0.015980538801862,-0.108061225729488,-0.17569323167238,-0.163273541851836,-0.0930589664363804,0.047511207468198,0.170752371407769,0.170013365781976,0.170370113931691,0.171249007723881,0.16825057156806,0.169741029505736,0.170472385217725,0.142666056098106,0.00611314797172322,-0.0955476727941941,-0.151143242817431,-0.131081102252103,-0.061487954438683,0.0492600731241833,0.155659900602896,0.21670072182035,0.224789865367592,0.207040081422004,0.19445340653072,0.213135013070613,0.197975367985836,0.104864958798694,-0.0245504543800553,-0.131936115203172,-0.182293985175974,-0.154122358440987,-0.0816689636164768,0.0482413131078771,0.166613452347593,0.169453569363666,0.169009997800339,0.171804214574769,0.169998589997739,0.171464118432065,0.171431263062436,0.117316959979841,-0.0456513004872333,-0.157800139565327,-0.192960130980757,-0.153157559554558,-0.0640251362041511,0.0619687019652236,0.162722900481413,0.215557002431418,0.204561024467329,0.178318212787357,0.164734967621486,0.177653258960861,0.140275814674071,0.0467832210814945,-0.0782841459728383,-0.158510589301888,-0.175003715514631,-0.148617638621578,-0.0576981092699186,0.0583188304836291,0.166390717539206,0.168935698806204,0.172136993504036,0.168647456774733,0.172580386440296,0.171025898039738,0.171978511535674,0.0956187953306604,-0.0937778553665772,-0.197390900282467,-0.227101792615034,-0.175445574008426,-0.0555753397207228,0.067796938240029,0.170468522319963,0.185592722488437,0.157238039260416,0.131824532658459,0.130861292004898,0.138303481149818,0.0925469707082464,-0.0313703260423154,-0.118928103766939,-0.171941887457622,-0.168621026941927,-0.128258983495745,-0.027755090853128,0.0768168186903199,0.16102888657757,0.169990766401074,0.172305410554895,0.169726078483742,0.17016201431593,0.168175381297984,0.166500648902002,0.0681599222370434,-0.122008766876566,-0.218831478725934,-0.243609726458748,-0.183449798433286,-0.0515763418738984,0.0696692304265523,0.145180989196893,0.13916935071102,0.0941100789972517,0.0779945658879443,0.0897371142461212,0.0855381377170831,0.0187702430064819,-0.0798006321271406,-0.154772810327714,-0.184639707390384,-0.153940160515112,-0.0963205375322958,0.0119936655725648,0.0907346898690316,0.157304083588165,0.169689301396199,0.169861864235983,0.17065758443955,0.170448822404919,0.171471932855727,0.162033166568568,0.0560459164102828,-0.135947475592595,-0.227425367428266,-0.234680949967639,-0.181202762661919,-0.0744192956997465,0.0352440648908946,0.0802189105476746,0.0560294383931065,0.00112240111549813,-0.00298832440788837,0.0129966945113195,0.00431962377310181,-0.0641812902436252,-0.135654945945962,-0.184621295625454,-0.178715743685106,-0.13335946613073,-0.0553131504486022,0.0448200328105086,0.106925125925953,0.15568875765893,0.17225547544905,0.168781050284304,0.170154162123074,0.170534368942079,0.169949638453612,0.15307622016181,0.0520310857470159,-0.125611970992169,-0.217898873910278,-0.228811942584136,-0.186678831124579,-0.124821884398422,-0.0492421731037174,-0.0399320639057535,-0.0742532701507701,-0.100890467348571,-0.0905535313871808,-0.0709791587889821,-0.0724359627069736,-0.110261279917414,-0.149864023646082,-0.171062687885248,-0.13251683572935,-0.0677186534551407,0.0138219666512528,0.0815441771612152,0.125956983355058,0.154523263484155,0.172271197115876,0.170592297187054,0.169883900792339,0.170608929919938,0.168315644827528,0.153303183331663,0.0695303485206422,-0.0868479928573185,-0.1894287196721,-0.213638186604395,-0.215682131137882,-0.193193373624498,-0.156448988464969,-0.159580958394741,-0.172074370162108,-0.163171947311402,-0.138104388852062,-0.124840253386019,-0.0994161226154244,-0.114796026572326,-0.127228189273926,-0.110661964120032,-0.0641953568323415,0.0100977962293931,0.0752293558945569,0.118591200620888,0.147264527035897,0.161806976554115,0.168359609059668,0.172889011703751,0.170969944398998,0.169061188827336,0.167356379776338,0.154257646115309,0.0963853798885347,-0.0106468146599956,-0.110931721945208,-0.171475670324096,-0.206660343811213,-0.220386813350954,-0.212177311149819,-0.210642184680073,-0.195886176342137,-0.171100764279459,-0.136807264462032,-0.107718064769442,-0.085212873199586,-0.0704837822337846,-0.0589491301560357,-0.0224962053045215,0.0369656211319127,0.0823851879166128,0.121817356456722,0.14306392127051,0.151852093592051,0.161739573709179,0.168441550268497,0.171165354922431,0.171122704022678,0.169924500539497,0.167643293886542,0.163014430756914,0.136421465489813,0.0663854059404188,-0.013560644484204,-0.0838542788971238,-0.140563473701836,-0.171715985820698,-0.177785945131191,-0.16675165289093,-0.148466631788287,-0.121114211883547,-0.0865739281442472,-0.0510999563034479,-0.0178589106319202,0.0175333523170123,0.0636818083356493,0.0995790934246924,0.123056768836344,0.138314272496523,0.15156880823866,0.156468328401216,0.16171652686197,0.16817818051498,0.173053543984998,0.169481731540778,0.170358557254467,0.17037784800047,0.171418237889046,0.169320454880116,0.153836913148044,0.136482429451897,0.0957263432389739,0.0347276182356703,-0.00787566463936666,-0.0406089763609756,-0.0593256979103444,-0.0468463606596388,-0.0174160938908765,0.0126617305344983,0.0378603752694341,0.0584839912881385,0.109434781902397,0.149472289083681,0.168451422072815,0.181329145296027,0.178822794430688,0.173485092110486,0.165080088369038,0.170409466872318,0.16908893900621,0.172581122834574,0.170165409706387,0.170635424992129,0.172560600137826,0.170174535407017,0.169141042495011,0.170339427475787,0.16076717513669,0.157881769625356,0.147344408323748,0.146549729522892,0.136917552097192,0.138670292352544,0.144531761812672,0.167661136084858,0.183683091759501,0.195441028686627,0.195084911628384,0.200661080766665,0.222563866558345,0.228533890602918,0.22666708927007,0.20676023407628,0.192928128666306,0.178393950093007,0.17511443619208,0.170344220956627,0.172574090222024,0.172598061278286,0.17198017608229,0.171255830007097,0.172097668150468,0.172283230786348,0.172024746521266,0.172571883095457,0.168531137339654,0.168716877283153,0.164477284026272,0.162342047951576,0.161927065211496,0.164254259985256,0.178617383443168,0.192969696810314,0.214586809533198,0.212886404904413,0.200438083440249,0.192147961512046,0.197642106238622,0.206653066075477,0.204762166288171,0.195144437641982,0.188229700372947,0.183132883904133,0.173462867442157,0.171894332662449,0.169853544688977,0.169560642190983,0.16948785077873,0.172900869971932,0.168979618931298,0.171681541835782,0.169612168911864,0.172739480251802,0.170895919491663,0.17250748639166,0.167700487353469,0.165166517291972,0.163978409876123,0.158068049239314,0.156545804113269,0.159215905579289,0.165322230115563,0.16539536014767,0.169844539410028,0.165399472833577,0.16518333101024,0.168834799523007,0.178561079961064,0.177997592826791,0.176941374722564,0.17115117121422,0.170466554491011,0.171775942803328,0.170888604942982,0.171487089406436,0.172888457416211,0.169899988389649,0.170616167034812,0.169886083061911,0.170695368289564,0.168733902076158,0.171912545613838,0.168798516459038,0.169781667949811,0.172336435790568,0.170034432184975,0.170301517328394,0.168027435739902,0.16674876314187,0.169521152036648,0.167990206595075,0.170449534904828,0.16918136864747,0.167435826036,0.168299885942125,0.171808319706247,0.171803838183057,0.171029595986812,0.170573813907803,0.169693220312885,0.17065458043542,0.169622811302378,0.168702484691942,0.172234822013162,0.172311757414556,-0.169208597863348,-0.0860030542549056,-0.085477039622122,-0.0869675688646861,-0.0859253370060942,-0.0850175670026792,-0.0841261596740232,-0.0844886219582194,-0.0880527797324061,-0.0856515937569926,-0.0857728578645276,-0.0874116654831996,-0.0882762482674768,-0.0864096563378847,-0.0840921378021169,-0.0856017070989975,-0.0883611673436185,-0.0858726956025912,-0.0869117846277478,-0.0883280904498388,-0.0871301681202763,-0.0871434533023573,-0.0884529542555573,-0.0845244658870917,-0.08656959444263,-0.0863672490742715,-0.0883567228460449,-0.084401648383654,-0.0842555993594165,-0.0860275385109184,-0.0882471193940613,-0.0871923579735599,-0.0860669689543957,-0.0865396970524889,-0.08650853261089,-0.0869136288576102,-0.0861227232534737,-0.088594614571782,-0.0867255362349689,-0.0857029483220179,-0.0840553506898953,-0.0848291694254621,-0.0875277313646536,-0.0851971211816124,-0.084881803048609,-0.0816297468268184,-0.0816894451913951,-0.0812959465654271,-0.0824851089714639,-0.0832358924747251,-0.0865229933157646,-0.0857856801223615,-0.0848935195332858,-0.0881276943324596,-0.0854979110231207,-0.0847408659058611,-0.0860342390639245,-0.0884257880142218,-0.0880079057230071,-0.0859995884448864,-0.0881395104904542,-0.0882606164835206,-0.0885844718904594,-0.0858829379297356,-0.0874051093681666,-0.0866155669971616,-0.0791068398443305,-0.0751615654425822,-0.0750269633575724,-0.0688655510169107,-0.0560568729037207,-0.0536553377321216,-0.0487510295913645,-0.0497655512793,-0.0529573345409766,-0.0543264605420785,-0.0578265841263501,-0.066573900457455,-0.076722189997685,-0.0814577720332418,-0.0848101204363196,-0.085860421412522,-0.0881881433488376,-0.0882982238206951,-0.0851892128493894,-0.0842615408047496,-0.0884245599939748,-0.0860186727822412,-0.0851248750357594,-0.0869418347123514,-0.0857097602385159,-0.0870964602502088,-0.083199979390241,-0.0781145024586681,-0.0737745943319664,-0.0701657250626856,-0.0699525654271964,-0.0645053174795998,-0.0478055466300689,-0.0226434862670498,-0.0155278257707084,-0.0137520045549916,-0.0209268911171804,-0.0268557816237689,-0.0306028784396172,-0.0517869019237565,-0.0714022890657385,-0.0721015860172294,-0.0796877437534622,-0.0823368476515714,-0.084221444158675,-0.0884652573439052,-0.0855042095916892,-0.0883863948263132,-0.0852677497309986,-0.0854126756069356,-0.0859037128363872,-0.0871731224915529,-0.0867524284622915,-0.0869846458445584,-0.0804269999421098,-0.075220132790384,-0.0673670080207072,-0.0710825944451682,-0.0786727297113661,-0.0662565075209731,-0.047265809847605,-0.0236103298185621,-0.00974405712958754,-0.00722519729020514,-0.00591315196166679,-0.0120847010591517,-0.0146894165276002,-0.031879562074147,-0.0457097797358729,-0.0556716201148511,-0.0642381829491209,-0.0796414796314396,-0.082831199691262,-0.0867024108344489,-0.0855376808395825,-0.0848814441698955,-0.0883289477291346,-0.0866659007045767,-0.0871997061306516,-0.0881881424408727,-0.0884543861075116,-0.0878155737744412,-0.0817484045542391,-0.0765663618914629,-0.0743914737426157,-0.0724612435387576,-0.0613996131646354,-0.05178886942968,-0.0331097027124645,-0.0187658060808582,-0.0195385569826166,-0.0126658607654949,-0.0215378825570139,-0.0167675175889287,-0.00603934777857233,-0.00527079800276347,-0.00366334104214902,-0.0165580259002468,-0.036265821216729,-0.0563671931263368,-0.0784646112479231,-0.0837786243412213,-0.0859325515779487,-0.0847028014261729,-0.0865939392232749,-0.0846089779777092,-0.0871951674177616,-0.0909841982763042,-0.0890684657880091,-0.0877940578579353,-0.0853885513913749,-0.0814419073101839,-0.0765881421757084,-0.0486470303380995,-0.0215273069157215,-0.0212544642324111,-0.0348444290907822,-0.0502094178145267,-0.0505105219821751,-0.0551744738076072,-0.0560155908315778,-0.0378288438595042,-0.00226664037159623,0.0202185608063437,0.0232495504173052,0.00729091964227469,-0.0148055262644276,-0.049164024568819,-0.0820590252223617,-0.0854277491448264,-0.0844811655364047,-0.0877517922885958,-0.0864303552372569,-0.0879667970491659,-0.0928587004119431,-0.0911934338650945,-0.0964780803340046,-0.0927068266041098,-0.086664619897917,-0.0695349176029432,-0.0476807209544104,-0.0299596656908379,-0.0196284535555826,-0.0248937302257416,-0.0451188596109763,-0.0655103384697047,-0.0723488620040152,-0.0904050010616552,-0.0852150192469964,-0.0512472813642901,-0.0101613043232134,0.0203542262947543,0.0180207351008434,0.0039660157065187,-0.0187444385073491,-0.0651803163198449,-0.0850386411699231,-0.0881730898221036,-0.0854389819560254,-0.0865392613524509,-0.0837638191478986,-0.0884448173833414,-0.0919153808264578,-0.0974484298341348,-0.0977012466287165,-0.0951017479024912,-0.0850996979225936,-0.0598715422252728,-0.040445254341589,-0.0147667037718429,0.0032134464350987,-0.00452426821231662,-0.0312223136079802,-0.0536421091091525,-0.0768146614425326,-0.0980607124103137,-0.0799264387365281,-0.0326448274134099,0.00351817286600476,0.0195946491099169,0.00526541321555381,-0.0222012296454445,-0.0355660172212529,-0.0792893748195393,-0.0903011024750922,-0.0834928657234676,-0.0864905925739678,-0.085647064002868,-0.0854845749632655,-0.0899802397046319,-0.0921654154660616,-0.0965787260881279,-0.0946098446573477,-0.0801767593774744,-0.0677192993087807,-0.0395643514983952,-0.00874892463146456,0.013078139374195,0.0377487311636359,0.0366395908112097,0.0114585511882454,-0.032542151832694,-0.0851497247477281,-0.0976658407935549,-0.0626572133633962,-0.0107814790883463,0.00995109877092297,0.0201390606577126,0.00967024375484592,-0.0228561270112709,-0.054559640073337,-0.0934367077399933,-0.0918456846719505,-0.0869389070430965,-0.0844094122481531,-0.0883649669877703,-0.0857828063093026,-0.0856518643935222,-0.0895777139886416,-0.0929254163077365,-0.0828090406184962,-0.0636074103087999,-0.038692370179663,0.000884977412557955,0.0212511149283211,0.0590712266702441,0.0901540563737779,0.0801856891043425,0.0281056988893089,-0.0551041704497106,-0.103458393708177,-0.0865849522901543,-0.0473348356657513,-0.00704279974169536,0.014117707518336,0.0320264719042733,0.0234112877476198,-0.0136199520836886,-0.0463753061515308,-0.0841831123561423,-0.0934650963632137,-0.0905828381013059,-0.0846612723157186,-0.0872682451935325,-0.0846440828946091,-0.0878720554523173,-0.0921501232193634,-0.0897789649188856,-0.0676337364833975,-0.0331521264591906,0.00865937310627669,0.0446601345069051,0.0622428897739474,0.103969926165116,0.107646307459322,0.085862701869235,-0.00670072506824669,-0.0944863401617047,-0.106209293921659,-0.0682367521421824,-0.0309886780028385,0.00176671822041199,0.0307551281114844,0.0363916569582378,0.0295302249176056,0.0133122898511724,-0.0306991499578728,-0.0702961091369983,-0.0866321327982525,-0.0875309589167034,-0.0878597595769092,-0.088237444503868,-0.0892602545793293,-0.0889208030265194,-0.0888177905548261,-0.0755173867218909,-0.0466281098627911,0.00430029889956575,0.0563623956312193,0.0815431592367794,0.110141831397638,0.126463500271639,0.112192949518051,0.0535282347273337,-0.043372376275843,-0.103620374548999,-0.0990796526030297,-0.0374740611679874,-0.00867715973369306,0.0100167235646422,0.0340842815772881,0.0543824653794975,0.061649591879918,0.0414444936194759,-0.0141082082981728,-0.0606662817901304,-0.0883105471699217,-0.0858238404620733,-0.0882447922841301,-0.0850000927367264,-0.0877392498884682,-0.0864432031998102,-0.0855674193524422,-0.0647011862083283,-0.0175139296024678,0.0537620479856581,0.0966301209331173,0.11817900480605,0.129398637630265,0.123741869756144,0.0746868026442119,-0.0168926606808833,-0.0856601382325821,-0.107379423826473,-0.0712456194354013,-0.0122023425072177,0.0103557112482732,0.02069310676825,0.0484675335937797,0.0713585023009543,0.0844127549569164,0.0590795850423397,0.0101342822236745,-0.0495682815951906,-0.0849312676731516,-0.0871264773309786,-0.0888142815547218,-0.0840834722485292,-0.0876989142587925,-0.0847130611374466,-0.0849793580096806,-0.0645509395919734,0.0089227956897838,0.0904050462117204,0.120893506832622,0.140784071914405,0.142066940963424,0.105984531578531,0.0370600481506659,-0.019273101806525,-0.0619027495749804,-0.0591776298064671,-0.0169555432225519,0.0194994986145084,0.0397702777440442,0.0498098359561613,0.0749859944924836,0.0983693116588783,0.0970538686294689,0.0810370974558418,0.0254636124606037,-0.036150756351969,-0.0810248009739485,-0.0876508131298218,-0.0862802306945077,-0.0872731047634204,-0.0866840942571544,-0.0877120663815465,-0.0859282887399637,-0.0615390172119088,0.0377717774356456,0.111915699793062,0.133780302246935,0.140933519311276,0.129544908401744,0.0911478922136916,0.0453648508092812,0.00994471653146533,-0.010755119436108,0.00130268416180128,0.0222630741598276,0.0379675381145528,0.0456900683493527,0.0709399912825279,0.0979180274061528,0.11007883887007,0.101393067982418,0.0725849068414986,0.0147210034381071,-0.0475043005926425,-0.08343667653034,-0.0907924473747,-0.0872944289951756,-0.0865910045175481,-0.0849834760535539,-0.0845466480441416,-0.0890974580704266,-0.061777193668809,0.0290540005808702,0.0816994185359524,0.126371653124617,0.139667649421952,0.130614916763619,0.0940572411020959,0.056997650906601,0.0238354558960114,0.0191891623740403,0.0342930546269653,0.0390325785362313,0.0307364775360371,0.0308092530254753,0.0711400568032795,0.0994668258431581,0.0957130723299783,0.0804579981397837,0.0482894131151971,-0.0199241411644026,-0.0590681856851568,-0.0846905839723113,-0.0879023814848247,-0.0854830011241892,-0.0874000509768599,-0.0866148654891527,-0.0847428134750244,-0.0931126906584704,-0.0721401115237127,-0.00474432639058094,0.0441072855122218,0.0980828803009179,0.129692488199965,0.11144576099605,0.0776228274535177,0.0394810594328999,0.0125749408776378,0.00930956854057212,0.028014335380546,0.0170066446435765,0.0142310394227582,0.0416538792892624,0.0753717268903131,0.0868592204163476,0.0899681046503596,0.0574497885090868,0.00673909457686662,-0.0509126876737569,-0.0778427219330787,-0.0896831322009232,-0.0889514895905475,-0.0884769428463075,-0.0856391999000401,-0.084515215560046,-0.0850462230646445,-0.0945195791403897,-0.0761071815824072,-0.027401367677808,-0.00160401486218787,0.0390882453987091,0.0701348950537751,0.0676225920708339,0.0499887621063703,0.0199213166235915,0.0113043722138122,0.0242287973812368,0.024401064101227,0.0185716547578526,0.0272188937616844,0.0639070819536095,0.08211560672548,0.0853081720734924,0.0599437565198528,0.018360338966853,-0.0368782699526765,-0.0801361557879538,-0.0903092639851608,-0.0920255431395855,-0.0854508745776806,-0.0873765652642936,-0.0883078824580328,-0.0851982759235642,-0.0866280698400743,-0.0972289071156212,-0.0836796641166413,-0.0430678283085724,-0.0256154632348364,-0.0165336448474539,0.0120795595818022,0.0223186483828578,0.0386160687095074,0.0400942367867631,0.0523212314090904,0.0580923575427929,0.053504446538806,0.0552637040054171,0.0678489667701529,0.0728707286317642,0.0709191672632932,0.0528528247381536,0.0205736975982718,-0.0277731281789896,-0.0769308309369139,-0.100483661825256,-0.100269957665054,-0.0930789417576078,-0.0860520378925801,-0.0853304502388537,-0.0844022371099063,-0.0881895578048029,-0.0889094074747251,-0.0961874084676641,-0.0916803413812571,-0.0646660408235487,-0.0414029641330713,-0.0366065353776242,-0.0241278566736773,-0.00324078438586028,0.0299758375237284,0.0693122645392586,0.0835795341956182,0.0939856097301641,0.0899295968108044,0.079804037995303,0.0782530448081013,0.0636558098174863,0.0356680435884398,0.00460842764646679,-0.036392512768638,-0.0796239106789553,-0.104863002441651,-0.10241996958663,-0.0989161593757701,-0.088698219017662,-0.0875760415019729,-0.0842179650373812,-0.0867570099353063,-0.0857463129412261,-0.0865709047483529,-0.0933059799294698,-0.0936612416815336,-0.0831008198709099,-0.0629339708545811,-0.0457873326944762,-0.0386089827470201,-0.0280218891024331,0.0110529959853044,0.0545846833427897,0.0786889084424335,0.0892633797473616,0.0763194511453983,0.0602004337826492,0.0387277089656088,0.00968221953687056,-0.0179984882827138,-0.0421352397288078,-0.0751271622632427,-0.0939245170398212,-0.0948289300675737,-0.0939332892495342,-0.0924226068812552,-0.086503257936463,-0.088162695952267,-0.0873319895434935,-0.0846519384453871,-0.0871678293755023,-0.0852675956682645,-0.0905567548613414,-0.0951479303833354,-0.0944607388228948,-0.0770819677962673,-0.0740811572924794,-0.0698993817739737,-0.0631576106984288,-0.0339665204995626,-0.0153370530889374,0.000195339360779064,0.00449737774307551,0.00297865220718688,-0.00710612723816021,-0.0430748144736795,-0.0523648072448095,-0.0673025807722955,-0.0758288108981477,-0.0842504258090509,-0.0886422801413346,-0.093362840989789,-0.0898702794282484,-0.0868401736415916,-0.0872762155617819,-0.087611501266119,-0.0882402997958617,-0.0867935859722662,-0.0873664350028,-0.0854371015348964,-0.0845121190507583,-0.0958112772500067,-0.094359443109675,-0.0988521730852476,-0.0950668745841373,-0.0881901402936308,-0.0900772924971665,-0.0595254284555095,-0.0567946583649131,-0.0588383034087808,-0.0613845739693802,-0.0623833216167857,-0.0811766399539229,-0.0876196709906353,-0.0825815036005168,-0.0824954650929012,-0.0686728309356888,-0.0788390130765259,-0.0883152032792197,-0.0869355782470711,-0.0897045645944303,-0.0868855423647011,-0.0861074701829779,-0.0860226684535476,-0.0878360982938733,-0.0848113687589631,-0.087778453391579,-0.084650952450388,-0.0863858644740415,-0.0911037187160654,-0.0918943054519637,-0.0916434097213222,-0.0972964708035394,-0.106134149088988,-0.110274214645638,-0.118017180355298,-0.117688049596199,-0.117883265422249,-0.107638480955713,-0.113313949689835,-0.107914510937433,-0.0984484694276229,-0.093666589782558,-0.0912830379211412,-0.0794726395761819,-0.0796111892048854,-0.087336038957348,-0.0829095078236693,-0.0843988333252061,-0.08851628473181,-0.0848771182969331,-0.0860411075164078,-0.0842192194077431,-0.0857976618873885,-0.0883714415033591,-0.0865917830971514,-0.0854658314400356,-0.0845860294608167,-0.089438307374178,-0.0873002633786669,-0.0861847500770935,-0.0953321023586757,-0.105756757132225,-0.131961332939675,-0.15010060256344,-0.147894475929145,-0.12935792862858,-0.128262129936863,-0.110591178522347,-0.111926618954301,-0.115011002072655,-0.103539624201365,-0.0973500480856751,-0.0877040102965425,-0.0870784178963779,-0.082129485960402,-0.0837255554891755,-0.0852850969998961,-0.0841954590315234,-0.0863126554991353,-0.0852529918902168,-0.0845902106555423,-0.0876728581394205,-0.0850978873534396,-0.0875976838851105,-0.0860734290019657,-0.085576278795309,-0.0837196439608661,-0.0867966715137761,-0.0912325030250132,-0.10071372566612,-0.112626267494923,-0.11260360277051,-0.115200473254002,-0.110396366271666,-0.110502117538265,-0.107283086868109,-0.107131383089753,-0.109966016916755,-0.101250921125205,-0.0905989506946391,-0.0841781946170196,-0.0840548851641688,-0.0864604411523974,-0.0872659518664134,-0.0878931949434499,-0.0860019409199609,-0.0851669099679262,-0.0872760316145801,-0.0871522506214816,-0.0868333951851493,-0.0878306496324957,-0.0873998318990141,-0.0845535622101965,-0.0842169399572225,-0.083161013834742,-0.0860360279042674,-0.0870377279094798,-0.0836846493962737,-0.0885031377551604,-0.088452762010703,-0.0846604841411776,-0.08822022341644,-0.0884490324854102,-0.092437467327888,-0.0927211820474832,-0.0894613744433916,-0.0881604404359995,-0.0882892058075918,-0.0842530465624566,-0.0865853760776525,-0.0866122551591254,-0.0870320587457547,-0.0877793186993294,-0.0848142186247872,-0.0849094766335504,-0.0854800139053321,0.0794530173493422,-0.225182478681353,-0.224955585779919,-0.224950405306375,-0.223925376681377,-0.225464155583731,-0.225203104886309,-0.222839426078592,-0.225224465545697,-0.225656563822844,-0.225653218220519,-0.224007193109565,-0.225214779118425,-0.223260139440158,-0.22374755716083,-0.224263295297556,-0.224334754566555,-0.224781296093334,-0.223636296017104,-0.226118877214888,-0.224673993482886,-0.224079764422413,-0.223284316205534,-0.223836706568007,-0.22282068016879,-0.224240666974596,-0.227003173511617,-0.225097205545627,-0.225768596724923,-0.223171541898709,-0.226909738892066,-0.226706496646353,-0.223719560871515,-0.226079090796273,-0.225342982076135,-0.225079041284198,-0.22517184070969,-0.223375501322895,-0.22505742055893,-0.221192673523981,-0.222520681193125,-0.223252088696222,-0.218682818805686,-0.218784531705996,-0.220763139911382,-0.220938343248975,-0.223297053362469,-0.226021514484054,-0.22617771896625,-0.224449300538313,-0.22687794893645,-0.226787719098077,-0.222746420528967,-0.2265386892137,-0.225248244820266,-0.226427560395449,-0.225712271706133,-0.2248506091097,-0.223126309242479,-0.224766244861091,-0.223757313833994,-0.224044296405047,-0.223045435151613,-0.223866840184352,-0.22551945525852,-0.227598231066253,-0.222647117776186,-0.210281668863196,-0.202471616190527,-0.200497170304743,-0.187443623372916,-0.176611145543702,-0.182366401615813,-0.194319478628481,-0.201016141399538,-0.205596343200403,-0.204336552381697,-0.210271333541999,-0.216602178952564,-0.222120908223126,-0.226769971426303,-0.223659004299058,-0.225362854955869,-0.226071218102258,-0.222863776652193,-0.225981803186143,-0.226615939181553,-0.22621375981418,-0.225444699630455,-0.226846041134054,-0.226419756393511,-0.226810412913394,-0.226364669480913,-0.226598928408521,-0.211437518690219,-0.202612598821657,-0.197811519346304,-0.189875737688931,-0.172768694806322,-0.167805700971367,-0.174899061744298,-0.184721919280993,-0.196407844732625,-0.197286505042254,-0.203470409925,-0.214168847936848,-0.21837470637957,-0.220485060886962,-0.22003191044104,-0.222215965435552,-0.223710315548066,-0.224115257974318,-0.224167739987009,-0.224447941450974,-0.224461171601516,-0.223051985976589,-0.227307713894191,-0.223956830008,-0.227732401849823,-0.227613127948461,-0.230428122742892,-0.221196905181237,-0.205636477898866,-0.189159796362913,-0.184049683326703,-0.167093609201614,-0.158589551187714,-0.167983711333319,-0.16546424455056,-0.169549771668805,-0.184639921041113,-0.194323065691632,-0.221730529212137,-0.232337653831624,-0.226021747898893,-0.220536553356584,-0.219913233518311,-0.222298723920344,-0.222665023984371,-0.225760185605968,-0.223645129699861,-0.224683746814632,-0.225020465925775,-0.223386360738846,-0.22366660496463,-0.225982504925364,-0.224451868316766,-0.228984841698609,-0.225365732031764,-0.199663243121479,-0.18271383926795,-0.141916676689523,-0.0889439657671509,-0.0505063299179523,-0.0286475939916263,-0.0109152125787922,-0.0056350144737998,-0.00711720391089475,-0.0183476558074888,-0.0613249527048874,-0.112985415296115,-0.15629706199576,-0.179127167020972,-0.196635901864779,-0.203123476463639,-0.210736613230306,-0.219896057625312,-0.220278691586106,-0.225009330897893,-0.226076744366201,-0.225643858818007,-0.225361233099631,-0.224229263435244,-0.227269095686467,-0.231788406037779,-0.225614456433999,-0.207776919009909,-0.172386313837052,-0.106638864911304,-0.0370712734816799,0.0447720793598089,0.101015263080466,0.147331998980119,0.169093584850215,0.166272315665547,0.159679716240079,0.131223975717677,0.0600084822460879,-0.0274852103319204,-0.089275596333554,-0.135422388755079,-0.177996171697828,-0.189915823048368,-0.189801057444062,-0.210554450399644,-0.217776094687061,-0.222246453754122,-0.222827627101943,-0.223172003387994,-0.22474676244314,-0.228923999260058,-0.232412766362062,-0.234134378399014,-0.22189699061426,-0.190292784854496,-0.117795817774212,-0.0405803173437616,0.0587800642699414,0.160640693647606,0.212937526121052,0.229737843175377,0.230905319422048,0.222343826219718,0.20057072959692,0.159972551744803,0.0827399457633548,0.00709956810853796,-0.061819836971818,-0.116280594620695,-0.159609839083328,-0.173623067412441,-0.180859551673544,-0.206263008740546,-0.220797062234947,-0.224470627947987,-0.226717201374669,-0.226686728007645,-0.228210818787688,-0.231471874889394,-0.233729233971587,-0.230528631576841,-0.208111798272319,-0.167798166875521,-0.0801098410305276,0.0237344253839111,0.152567588802607,0.217800134518698,0.221204565794584,0.17440451641332,0.123075849667909,0.0884010301287093,0.0765122850399595,0.0685507630631082,0.0523613675969945,0.00590932264493523,-0.0592700777601547,-0.103703829660791,-0.150843052657023,-0.167720149178946,-0.178752745561137,-0.201622231758053,-0.213592906842904,-0.224149439983297,-0.22634827897343,-0.226800172543012,-0.230544530729008,-0.234123078628143,-0.233218960637355,-0.223700398167265,-0.196991219442411,-0.145410040757485,-0.032275097197035,0.0999866658618622,0.208290396151403,0.215948604470938,0.151528033832158,0.0361548106714527,-0.0623987381531486,-0.0941675519140033,-0.049180319920259,0.0137844740971813,0.0626784770883761,0.0230207936295785,-0.0299723140702104,-0.0987953559094276,-0.154652082822808,-0.168394502468335,-0.178192910400113,-0.204185472659883,-0.219890454887196,-0.225555008685178,-0.224082351351202,-0.226884802932877,-0.22900258206824,-0.235098868025853,-0.230068931288597,-0.208981012023298,-0.188853773037505,-0.095504433790431,0.0306224563422132,0.164543545775678,0.225899258460562,0.184343495843491,0.0721714681191608,-0.079826646284102,-0.171406543680537,-0.148689914955197,-0.0509225235151676,0.0629707967470416,0.108917629972038,0.0712798642984389,-0.0102927413320452,-0.100136386188082,-0.165913093455316,-0.200276677827685,-0.198659773218686,-0.202156236836093,-0.221439247979295,-0.225091354835718,-0.223772377498819,-0.224962200039829,-0.228254804036924,-0.229243722792826,-0.224868522888407,-0.203669025335673,-0.159202321957686,-0.0617467429695635,0.0751434644566927,0.179410600372213,0.207638474564343,0.15875159573186,0.0507694021854184,-0.0764032501963458,-0.109995362429034,-0.0490762573074765,0.0673324942560446,0.16023903082485,0.181026379824076,0.108779095906426,-0.00953424989265998,-0.142709417112132,-0.225263623743618,-0.24528021683052,-0.221900602306199,-0.210594205221835,-0.219548378721619,-0.225860379888173,-0.22536120052258,-0.22464546086669,-0.227345335311134,-0.227215364729656,-0.219301184877571,-0.201820561887868,-0.152178771522828,-0.0573146192516044,0.0699601330954178,0.151577434145777,0.172325866387185,0.158197401150616,0.0983296265980412,0.0511216009559331,0.0578451308173669,0.114793574557959,0.203911657651192,0.244797189921314,0.205231931256412,0.109252517545552,-0.0465746470594807,-0.186810641460985,-0.255663976831204,-0.270816834647414,-0.240241250751702,-0.220709371951958,-0.223225486896088,-0.224089449518467,-0.225254481006795,-0.22543339015891,-0.225647626954023,-0.224308109636963,-0.216819223078689,-0.220124346023882,-0.174864759285462,-0.0724368168832389,0.0368265790190366,0.115125846673471,0.154612594016139,0.184667230504263,0.209123650984222,0.208325118365002,0.224555390296226,0.247532405893812,0.288069628587245,0.277893357869647,0.202460222282757,0.0444026906184998,-0.113590438927033,-0.224739899808829,-0.261620362573297,-0.276331152839147,-0.251586899377584,-0.220883496246377,-0.223616320526937,-0.223956487017642,-0.224329344066119,-0.227192313148715,-0.227320794215645,-0.222292877344849,-0.225900192467768,-0.241960468429117,-0.224984981730655,-0.124089716472543,-0.0140892329345362,0.081079099647049,0.147510389998004,0.212677847555047,0.258708606509194,0.278958191323871,0.274642506877308,0.276414220269398,0.289445412436909,0.258181343776921,0.124867097127809,-0.0470094005529994,-0.177818023454486,-0.249865953799222,-0.260824302811427,-0.275268558424354,-0.24923751686295,-0.222607818099035,-0.227439976729438,-0.224648680349816,-0.222812733416807,-0.224100291053544,-0.223171985175968,-0.225680046962993,-0.236227255375857,-0.277555422538039,-0.280902507541469,-0.193792877369615,-0.0720779853006071,0.0399374173846455,0.132599637655071,0.202755290871371,0.257411606810711,0.254430331890714,0.229253095721756,0.222512014168941,0.233748573504512,0.179620653386455,0.0437150438581776,-0.111157298593634,-0.197171261444594,-0.23848365767998,-0.261087992506203,-0.264455465764106,-0.245646633608781,-0.224436169055862,-0.226419002015256,-0.225641164113182,-0.225085649457509,-0.224701249189435,-0.225923379399428,-0.222123512299567,-0.247929684641771,-0.305225027428662,-0.3180529483542,-0.252536092626549,-0.132891739902709,-0.00100006361844313,0.106923154200854,0.197683307606135,0.213551014757208,0.16747505874824,0.131898588506869,0.15049853316171,0.170234159538419,0.128337339048093,-0.00524486692473355,-0.119083871677375,-0.184827324106875,-0.214571720266012,-0.247289963006396,-0.253920453667759,-0.241247413602156,-0.225132138101783,-0.225840972539955,-0.223403137410888,-0.223913355956218,-0.226573469071929,-0.226601704024838,-0.225510707474038,-0.251197411655543,-0.30866321982543,-0.326819699825677,-0.273806268699556,-0.160332284497989,-0.0206865740669582,0.109373876359383,0.168149181731845,0.141408435135727,0.0671372347319787,0.0530970176719899,0.0981928539323728,0.136030888165265,0.106581226773421,0.00057630802861847,-0.094122250414584,-0.153659345607947,-0.193800844738557,-0.224928123146821,-0.237240273949658,-0.234300034052577,-0.226066639914175,-0.224627370158093,-0.224075350290828,-0.225402497166001,-0.226525045513383,-0.226733438863207,-0.2241766249988,-0.253318309828903,-0.312040978135074,-0.318564491803742,-0.252231061765548,-0.147246812379416,-0.0135165205140319,0.0951092724734153,0.120407510151327,0.0590920672464543,-0.0286198256656798,-0.0119512061001209,0.0678198308793708,0.11866138655898,0.0856345949796775,0.0134652148583873,-0.0656682620030673,-0.129355934048689,-0.193341768831168,-0.223335047684631,-0.2272660577076,-0.229742104653513,-0.230423768452951,-0.225887699299912,-0.225585831070266,-0.222902264211073,-0.22470511622121,-0.225572829608222,-0.224923629038646,-0.255389449885678,-0.305168321526169,-0.312596176607105,-0.237560288375387,-0.12235955851979,-0.0139016116065352,0.0560690957016945,0.0438838772278146,-0.0385472633441042,-0.0773321879752566,-0.0259873917743927,0.0614415136210124,0.119768691200632,0.0998555240842087,0.0383739267465566,-0.0422712621247794,-0.117747772212127,-0.178180519298977,-0.20504784449733,-0.221646490021874,-0.230249255904727,-0.22844611256764,-0.226329207841367,-0.226656077046697,-0.225869468416637,-0.224606091333027,-0.222755225701034,-0.224739134753874,-0.248505866790255,-0.283436104200951,-0.281365472144633,-0.215196348704159,-0.146114549688032,-0.0525634409933315,0.00747445374653402,-0.0318225454553766,-0.0635973919057902,-0.0517237989246309,0.00440158131446566,0.0748256905764598,0.124046321248081,0.116308194107597,0.0487824577986458,-0.0318399762774757,-0.124286271363374,-0.178166014167025,-0.199751865081955,-0.213029991142564,-0.223811058045149,-0.228279827173275,-0.225829894524837,-0.224378800536617,-0.225366974005536,-0.224601473962027,-0.224421317482633,-0.227090716006776,-0.23594322456751,-0.255977900914391,-0.240509396300953,-0.192557875601744,-0.143693763063725,-0.0777516016618118,-0.0275306852867602,-0.0227402841697132,-0.00378875564563869,0.0271083179887322,0.0765173034932967,0.107607050675928,0.140681308549584,0.117705334675176,0.037630109053912,-0.0485360952914276,-0.131047305738987,-0.185443797875542,-0.199255631744189,-0.217983258455685,-0.224832108618002,-0.224023113724113,-0.225237824440167,-0.22408803118146,-0.222859672899596,-0.223293613551802,-0.225819944119085,-0.228326480052615,-0.224207720755671,-0.223549421775173,-0.208274746985274,-0.166582297875007,-0.115357978516556,-0.067982621003443,-0.0190112892193909,0.0271630479749205,0.0730228693857389,0.0856228283403149,0.0970408121338269,0.115702799431145,0.116949100018027,0.0844954171367663,0.0145224783244307,-0.0730487324265106,-0.141255408336018,-0.182166739851903,-0.204900816670655,-0.220394086264451,-0.227421930266941,-0.224810352709504,-0.225129349957014,-0.225234150433942,-0.226084694163833,-0.225152359283453,-0.224364550947339,-0.223986575656002,-0.225130771815651,-0.21284191084226,-0.186346885139631,-0.151762618035058,-0.0929247079296442,-0.0354836545004492,0.0158659959593459,0.0874608703129867,0.136046592057359,0.139516449486309,0.124043383623472,0.110893419505789,0.0900028277636659,0.0520280001606033,-0.0228296949638227,-0.102719807018319,-0.151120142401332,-0.186471771720333,-0.21191530660602,-0.219714637473035,-0.223153398317061,-0.222232828265582,-0.225095165843997,-0.2270299949872,-0.224753200658159,-0.224522107550914,-0.225983601256444,-0.225913136717511,-0.223927658339735,-0.219739417795164,-0.203886590233347,-0.176086811616593,-0.1173720573322,-0.0529757451722585,0.0116002006341958,0.0841284135007299,0.122049439193452,0.116575744239042,0.0977554986805701,0.0734094405125391,0.0362172248901963,-0.0119049683013606,-0.070509587885226,-0.129336264066888,-0.168741754741652,-0.197546813188199,-0.210730722922597,-0.222384470237685,-0.224661310164653,-0.224706530531965,-0.22656218425494,-0.226337784645356,-0.225451811552784,-0.225715979273045,-0.225998452169586,-0.22676696414138,-0.223774457211933,-0.222758092243538,-0.221150640051948,-0.21825318473123,-0.198390608091675,-0.171515185696048,-0.127829750343099,-0.082271559881671,-0.0443377289855939,-0.0499151502365232,-0.0685864889649323,-0.0783678484913264,-0.0860194387072409,-0.0939512849851936,-0.12564187327592,-0.155148214630245,-0.183526898909465,-0.206253434320158,-0.217601758292378,-0.22159152359701,-0.225654434130377,-0.223255203232656,-0.223891061995145,-0.22589962657827,-0.225569351244351,-0.223427813866295,-0.223077924619469,-0.226983644788391,-0.224073480355889,-0.223781156982062,-0.228569171667748,-0.229262788597993,-0.229655610729631,-0.230029233068156,-0.220790272755755,-0.205090753555917,-0.185797546885401,-0.181141833054828,-0.185648062892884,-0.193970917712937,-0.192962812659041,-0.195034952007004,-0.198083411104878,-0.202617005749931,-0.209463690969596,-0.222374921240079,-0.222284474994161,-0.226607548476403,-0.225277446277948,-0.225351709343803,-0.22669937629899,-0.225184669363107,-0.225153530047979,-0.226798309548922,-0.226123215998988,-0.223410588294174,-0.223745273802585,-0.227768709363477,-0.223859553073123,-0.226037862464132,-0.223145709926098,-0.22577109272463,-0.228890446017193,-0.228998459721938,-0.227694996664993,-0.226674549652649,-0.223586587898654,-0.224611750597819,-0.223605963801837,-0.226338654548692,-0.226644767138544,-0.223154848625415,-0.222053865546506,-0.225720556024689,-0.223337373220449,-0.226473352855331,-0.225791970893791,-0.226368619062326,-0.224218016604249,-0.224344436714179,0.223437746907569,-0.090937994900788,-0.0924019561155075,-0.0923967370263718,-0.0912193806883551,-0.0923648912792452,-0.0927362757628943,-0.0922210531241492,-0.0936671239234611,-0.0916961709705328,-0.0936819385683374,-0.0908206741111483,-0.0909110808335842,-0.0914254321854171,-0.0899024772262919,-0.0922593538126197,-0.091680910383269,-0.0897298987548231,-0.0923799829304982,-0.0934220337929084,-0.0915520951242093,-0.0905930309658513,-0.0936654606331985,-0.0908751824482511,-0.0918744151514785,-0.0932040183675799,-0.0913213858715377,-0.0909524632522012,-0.0912703827089837,-0.0930286080109803,-0.0897397117218159,-0.0897735398264954,-0.0921117338376935,-0.0903623507396851,-0.0913290280663968,-0.0909018735766671,-0.0898839364248122,-0.0899014070895376,-0.0925937595727839,-0.0911893830509539,-0.0923678303249943,-0.0892225824391314,-0.0930756727880831,-0.0902287128593503,-0.0915645215050694,-0.0937467497532312,-0.092071470466787,-0.0911254964149031,-0.0886115116686837,-0.0894618668727405,-0.0915436784588277,-0.0893763712015958,-0.092610812243495,-0.0907413960089423,-0.0926424202883335,-0.0926489405724923,-0.0926846682410284,-0.0936793775417047,-0.0920440033352948,-0.0931627647591604,-0.0902930595268896,-0.0917239555407325,-0.0903530043509433,-0.0928211553594528,-0.0922352925467954,-0.087278113193999,-0.0886077864644638,-0.0845725277077548,-0.08487629221664,-0.0791574312014964,-0.0659094975420716,-0.0678382970353403,-0.0622499015252282,-0.058130457992174,-0.0550657784326075,-0.0540127797855213,-0.0591891618103221,-0.0659264550418107,-0.0786864166549114,-0.0807606446707795,-0.0886391449601907,-0.0898428737409382,-0.0896552810024613,-0.0929386520815423,-0.0934877660886547,-0.0921715315766936,-0.0906392014338555,-0.091321120653739,-0.0891526342523344,-0.0913417122401352,-0.0882383166376469,-0.0892859122135361,-0.0851193816521038,-0.0814593659196589,-0.0774593367492731,-0.0705313706451164,-0.0593123492533543,-0.0553617464805179,-0.0341285988138752,-0.00741724109643028,0.0128891286818212,0.0167601012920005,0.0251806830620863,0.0187841533532135,0.00628669296676752,-0.0188266395307262,-0.0518117323655011,-0.065965848007346,-0.0818757976769173,-0.0882156900520846,-0.0906938488657122,-0.0890754332304781,-0.0894719573902465,-0.0910811808601914,-0.0925370025273664,-0.0928660279273892,-0.0904646404777724,-0.0924131178241549,-0.0926349898167264,-0.0876148248462935,-0.0761821245294912,-0.066477550797505,-0.0497701574435497,-0.0454257454457566,-0.038757503682977,-0.026657445764346,-0.000363216020056013,0.0202370562504372,0.0516809308549201,0.0674584484943432,0.0796294667603979,0.0614799125224185,0.0398131385700173,0.0019528718820903,-0.029521852430783,-0.0659687278614458,-0.0793695489793882,-0.0899464685756217,-0.0906064628025974,-0.0926695186656512,-0.0906360458345188,-0.0894210519559192,-0.0908332083446638,-0.0916160121154239,-0.0889571501611343,-0.0907290458796934,-0.0896227137299363,-0.079760577896052,-0.0735529195147378,-0.0534917217903532,-0.0378425271267937,-0.0284482309378665,-0.0297090806258808,-0.0303682768121227,-0.00799584420456085,0.0109296675418476,0.0270739897762887,0.0313261815887762,0.0360434518045325,0.0382843223878539,0.026523760976516,0.00264162284696417,-0.00984957856869056,-0.0362601252114966,-0.0581621830081831,-0.0774841261151056,-0.0886318508958351,-0.0937511148421816,-0.0895417960022708,-0.0935260530853384,-0.0910366818847652,-0.0899127296972926,-0.0895458483561672,-0.0941749029990349,-0.0832324328334643,-0.0779680933480188,-0.0612436447893978,-0.0516299727116404,-0.0411397168313904,-0.0215738870093281,-0.00868919986931277,-0.0217976313484373,-0.0125464450369642,-0.0119090181423215,-0.0013849809187956,-0.00808994333738822,-0.0159617030175381,-0.00732238611878038,0.0125984809879164,-0.00367820271582064,0.00791188912060693,-0.00264197274721406,-0.0340677725479676,-0.0755346288464803,-0.0924040130466318,-0.0969710685606199,-0.0922691380153026,-0.0925560412864721,-0.091173552413021,-0.0893663805937904,-0.0913992475929213,-0.0877059999015958,-0.0776102917984746,-0.0668099486304585,-0.0573807584965904,-0.0542874389008266,-0.0208481372070506,-0.00942953896900088,-0.0114056153391666,-0.00894268962325558,-0.00479300354508362,-0.00690872120832906,-0.00771068453819369,-0.0236270111273178,-0.0346749997578826,-0.018388957561594,0.00206873519169449,0.0145591922313013,0.0126465778545611,0.0145976686015313,-0.0256125321450783,-0.0799159957717484,-0.0922894713436208,-0.0938361069246865,-0.0903687927440123,-0.0909421004553993,-0.0905620101136668,-0.0921885251676756,-0.090002417674347,-0.0873669685343286,-0.0715011014735906,-0.054986175187218,-0.0494283504197621,-0.0386455583864371,-0.0230070825363927,-0.0156446092447064,0.00366148313582064,0.0158370268844662,0.0304960909454119,0.0327640020955841,0.018164837603584,-0.0156220060867549,-0.0169366460996282,0.00252182523786961,0.0141478268371813,0.0262193222034023,0.002216021939765,-0.0101866827229323,-0.0402292446656546,-0.0954321813993605,-0.10018140320514,-0.0947757378511939,-0.0929357814711393,-0.089397708859763,-0.0885787642660677,-0.0881726750017744,-0.08724283173021,-0.0840672792619738,-0.0723648649495027,-0.0592771420041876,-0.0457298209933005,-0.0367017504846159,-0.019424898460415,-0.00695044847147071,0.0315732639167699,0.0631162295949844,0.0758608413507977,0.0506794446767027,-0.00131246124036934,-0.0319440219558309,-0.0268509185659305,-0.00404044682213674,0.00829856231742925,0.0165206727877906,-0.00599875960515543,-0.0304711246409597,-0.0725704923263007,-0.110794993966492,-0.101428312507138,-0.0951338546888495,-0.0898798423138318,-0.0935378682855561,-0.0928297872000553,-0.0872620082524343,-0.0849999854535889,-0.0796786119521369,-0.0676474391940557,-0.0584228556820468,-0.0443333524727069,-0.0218552629262371,-0.0217036194846243,0.0150027313222636,0.0691393256945927,0.0958983162251335,0.0642033324996853,0.00327458274509483,-0.061528858598405,-0.0705044245697113,-0.0342579214310322,-0.00647080057740528,0.00452273890673206,0.00114851904604259,-0.0173458332656096,-0.042506835290925,-0.0752809290289293,-0.105398459059668,-0.101747815180188,-0.0977647190210836,-0.0919813705551329,-0.0909009079533549,-0.0895538183050674,-0.0920704485997061,-0.0868915861129618,-0.0823684934263345,-0.0789052869115393,-0.0648140250065276,-0.0406906622504078,-0.0227532982791876,-0.00487745687002755,0.0472943321911834,0.0709985139293198,0.068987804633299,0.00813647210873682,-0.0781621990072066,-0.128972509619985,-0.0953426545467603,-0.0437245619030702,-0.0182656814243651,-0.00682095945649256,0.00473305099444302,-0.0152393587320493,-0.0258470649364961,-0.0600354857459088,-0.0879203090305739,-0.101350885241981,-0.0944200124766381,-0.0924730533048795,-0.0900052339954308,-0.0930022863387788,-0.0896469633778837,-0.0914163306672883,-0.0905784103189998,-0.081777365071173,-0.0519410621401758,-0.0271447187937042,-0.00878552792394686,0.0257950079763941,0.0577617289776651,0.0531353605080325,0.0062215497207677,-0.0747366934012286,-0.161888048459335,-0.174021496588754,-0.0998390912812357,-0.0325859796316876,0.00401830761724779,0.00801579148982912,0.00882089844417679,0.0118771375709262,0.00528806627776714,-0.0361289648639303,-0.0708737685832041,-0.0941688787544193,-0.0923124583352103,-0.0925049271051218,-0.0931267002576519,-0.0911824671433993,-0.0898623772026755,-0.0906750240101814,-0.0923950514109201,-0.0733692858668126,-0.0303434333799849,0.00694359890904074,0.0228200699074527,0.0619811142934202,0.0731759950727312,0.0318481116934602,-0.0562710044162801,-0.165923269405538,-0.208631414415109,-0.169989654598778,-0.0779529453196599,3.7458173118932E-05,0.0256793117166192,0.0417637092663766,0.0429186633359198,0.0397272259227544,0.0170996363024294,-0.0117406916839218,-0.0571578101246832,-0.0882796041779253,-0.092198653792619,-0.0928360926570871,-0.0933396183438329,-0.0932115487217344,-0.0906690242408228,-0.0954383623191342,-0.0881018596121789,-0.049550849113215,0.00609265550769517,0.0494505404547448,0.0694713898805284,0.097405733388618,0.0833693691502929,0.0160532654951297,-0.0808073286867423,-0.16097452321881,-0.164639818197038,-0.0928919425788304,0.00418517382157355,0.0692952447931145,0.0880373208196597,0.0916301368980457,0.0842220098018666,0.0602226904280838,0.0355635353798217,-0.000563162396239705,-0.0461370730308952,-0.0840136618992985,-0.0898156665689292,-0.0931091682495126,-0.0924670966809089,-0.0929958830235864,-0.0928945640497777,-0.0944683279361145,-0.0755399543789633,-0.0132197272851635,0.0558393904251732,0.0952430282447166,0.11832400841895,0.129632292135957,0.0968959799488078,0.0316145951575612,-0.0488065021499123,-0.0856763475799874,-0.058895661539357,0.0137516298226967,0.0893034488157808,0.122752876907733,0.123645024026984,0.125341114446518,0.100324247550153,0.0643404126452179,0.040819569887742,-0.00220406751767973,-0.0525595559387015,-0.0848088889882331,-0.0899314516125696,-0.0933806189253049,-0.0906210088609104,-0.0895543983538165,-0.0915966252637722,-0.0917461515948788,-0.0606599001702295,0.00538285892660993,0.0774016597536313,0.125266458829294,0.148739222562975,0.141138912657128,0.0903818930963446,0.0265269156814795,-0.0116833429417243,-0.00926606089582549,0.0366959520496628,0.0892499130749265,0.128149259184522,0.133563957399637,0.151447465438325,0.141437194279429,0.0914936532539374,0.0513548066379673,0.0345611422840203,-0.0221795952086927,-0.0569300423025013,-0.0841498646187254,-0.0915412222077656,-0.0895480476445294,-0.0894317018450754,-0.0915006184103958,-0.0910633150163754,-0.088884048849176,-0.0513279483354134,0.0201742013914486,0.0820971534595169,0.131950563129253,0.140514048535016,0.115404674692821,0.0563702052280366,0.00868605288845293,0.00522627490687297,0.0341121697190338,0.0869659139093925,0.116564370594783,0.137584728527776,0.14640633616085,0.145044769377636,0.132735022863908,0.0759224315903507,0.0462501886372453,0.0200521657687154,-0.0311057212422057,-0.0564229093462346,-0.0820167187903234,-0.0914886277821664,-0.0891103783047267,-0.0893087209599103,-0.0904436374647536,-0.0905898448358475,-0.088769967929284,-0.0519748749947648,0.026058439848667,0.0810187956469282,0.112107795202008,0.111705204197335,0.0786978014294277,0.0357035101100001,0.0195333410086888,0.041982381741866,0.0964403824981291,0.122178439523688,0.146323721700797,0.138425754248529,0.151235248544872,0.135790756541163,0.105138469753851,0.0610331591054922,0.0402830867806589,0.00515096116692789,-0.0309101659543903,-0.0622945537251479,-0.0792120560382018,-0.0925549783192807,-0.0930347099493757,-0.0896389816607251,-0.0919715699991046,-0.0947655479086732,-0.0892601099086503,-0.0430635817041449,0.0263801394932541,0.0709567895608108,0.078504532048375,0.0680018289984672,0.0515729885011735,0.0592365954001327,0.0843085133965314,0.129254677665205,0.15913045746097,0.163762847678646,0.149453159403244,0.140011690574493,0.133770218770523,0.0985241466704317,0.0606458698855112,0.038626924455515,0.0181276207817375,-0.0141240973859081,-0.0474115917358888,-0.0720521931009105,-0.0810552329154691,-0.0892453568310429,-0.0936873331641835,-0.0903128690155868,-0.0902748703931427,-0.0921483376132663,-0.0882618735108114,-0.0517626497731875,0.00656341844093714,0.0404804510327322,0.0450394829824361,0.0577430306994156,0.0774203987950361,0.091362351230218,0.134386866749114,0.17230531897231,0.174116106120388,0.157495306645553,0.119243051630781,0.0947240174788285,0.0612512771721809,0.0234331840060633,0.00464478047003987,-0.00270349781608616,-0.0100978902255951,-0.0387374380673042,-0.0569051165299341,-0.0684017265196021,-0.0860755897637047,-0.0910182967368138,-0.0918901895739239,-0.0934275932852497,-0.0893703177356058,-0.0898745690131016,-0.0866459063717195,-0.060525761695824,-0.0254150071546212,-0.00619342581638167,-0.00479851741195405,0.0190347412584164,0.0456591062056846,0.072617975530723,0.110533022122681,0.126245301743185,0.115960397314044,0.0702622097940736,0.0348978328365484,-0.00522795523749034,-0.0361240598166449,-0.0430450688346041,-0.0447205604790893,-0.0467780945963296,-0.0486608960928503,-0.0615481817996826,-0.0642841824963665,-0.0743728454156009,-0.0899654199767757,-0.093112662402188,-0.0894784765221923,-0.0914092360605817,-0.0913752342919647,-0.088981959871475,-0.0901612483294468,-0.0835080558756474,-0.0664358167954718,-0.0553481902057118,-0.065278988703541,-0.0571949063630015,-0.0376423488470891,-0.0210809409499544,-0.0100606552355698,-0.011145765771201,-0.0211379346408131,-0.057772735200841,-0.0766656232116383,-0.101781298713104,-0.10671131905004,-0.0960729084349028,-0.0795917124711449,-0.0744548671237478,-0.0773296789335599,-0.0717891669312538,-0.0724134752209711,-0.0829452738068792,-0.0927561722924653,-0.093192502015434,-0.0934515446886735,-0.0925960540048383,-0.090392863134762,-0.0909062665960402,-0.0935637012410841,-0.0871023543762616,-0.0900088864134782,-0.103646155543332,-0.116647707023793,-0.132252850829114,-0.139188323156233,-0.121146194372489,-0.134223703536464,-0.145766348510115,-0.149540476684983,-0.148918396218899,-0.142880722644216,-0.145016657639234,-0.133672498919287,-0.113788098969425,-0.102078382664172,-0.093212760644829,-0.0915494215116714,-0.0819245181900046,-0.0897632523123129,-0.0925792513342654,-0.0916004091448623,-0.0945639610559686,-0.0935968456901431,-0.093016866834267,-0.0918691609105914,-0.0924021363365245,-0.0931858854819499,-0.0892933932998994,-0.0905348170164759,-0.0972912484057381,-0.101939580386432,-0.114174558408591,-0.123014687076929,-0.135595721012292,-0.144863534287496,-0.146805050621136,-0.148730423224105,-0.141406196289328,-0.130250511585665,-0.129690099563806,-0.137337931054096,-0.12900010906897,-0.115803754798476,-0.104573058057906,-0.103452372276965,-0.0938002540195774,-0.0883834915224869,-0.0910679353950659,-0.0914780748009018,-0.0930606608204648,-0.0907300285977389,-0.0909847498647772,-0.0895248329604401,-0.0914080724446413,-0.0903796083100685,-0.0891823332516215,-0.0854545331139471,-0.0839365714062629,-0.0766446758637249,-0.0734073297998261,-0.0700729543289218,-0.079823356445809,-0.0959758655947367,-0.0997162587639033,-0.0982100450994574,-0.101233775867495,-0.0995814140334273,-0.109597975860391,-0.121859306265827,-0.116265296390883,-0.113857331416766,-0.104858465984584,-0.103108406591594,-0.0927009586332043,-0.0902669745669792,-0.0918545657562505,-0.0906868552905428,-0.0895006781097417,-0.0924054725920301,-0.0935146064996219,-0.0920767346176802,-0.0895663568913727,-0.0923070754410278,-0.0907226646006941,-0.0892062696538382,-0.0880787730031854,-0.084614610377663,-0.083491396872557,-0.0825569322614583,-0.0887739933063135,-0.0892522977548911,-0.0876758326218793,-0.0869439264961614,-0.0938632360313452,-0.0904131471849972,-0.092871535212005,-0.0953165338690038,-0.098907659590388,-0.0983783421365275,-0.0963822874106428,-0.0953541773491612,-0.0918031997758078,-0.0923467219750156,-0.089286446231534,-0.0895916877923738,-0.092575973619579,-0.092202084911334,-0.0929129609062094,-0.0900357023239506,-0.0902752567588749,-0.0934928155422218,-0.0931195653082187,-0.0897916620500779,-0.0915810769129192,-0.0920257464485095,-0.0918096365806848,-0.0899038334761309,-0.090929694766925,-0.09215863397632,-0.0899916256819952,-0.0916540539578962,-0.091528427353304,-0.0898004047232302,-0.0890651734699962,-0.0913020798543909,-0.093085318892956,-0.091545404737031,-0.0927759186022502,-0.0908134539502469,-0.0917968790192139,-0.0893178672791692,-0.0899343249836184,-0.0934127177043419,-0.0906100723721766,-0.0927010218709164,0.0940803378991948,0.00716811129487469,0.00652881318828429,0.00855602500755246,0.00862950972480794,0.00703177364846152,0.00670283325088561,0.00655485168584171,0.008970302587429,0.00796641508206025,0.00885916925188667,0.00979398491447402,0.0068509251248804,0.00654757549757331,0.00921921967883747,0.00868712911896108,0.00993108582990038,0.00835722588498787,0.00869177334337683,0.00886920937764685,0.00713862810777153,0.00857640827768378,0.00892639981220729,0.00771505226863569,0.00939611950410057,0.0070259681765922,0.01021005072461,0.00773357109991381,0.00957600149597307,0.0068845035758937,0.0100525976467423,0.00705559952386781,0.0107441258034671,0.00891210598400847,0.00973794286167596,0.00878173360184324,0.00720309918894615,0.00771353753062099,0.00983382123957191,0.0118964901843919,0.0103020052523191,0.00776637839249249,0.00790429916112244,0.00693096031810027,0.00977027868664516,0.00932004238716944,0.00884395422596421,0.00372623356952862,0.00589689252224763,0.00672502858948282,0.00788643644589552,0.0105304064378447,0.0100938795029569,0.00790556282240993,0.00835683292998983,0.00924195972735263,0.00872731534926918,0.0100518265714869,0.00728820350727472,0.00925369343834382,0.00743796418466495,0.00931231114573432,0.00721946544274241,0.0068363619841503,0.00646803557557876,0.00753236774996062,0.0114938806404114,0.0121861387834065,0.0159330764388102,0.0142822081407068,0.0213456449219564,0.0208783457528965,0.0154339311294617,0.00712897599182625,0.00308580973873482,0.00342741154976531,0.00476332679341965,0.0102643736468063,0.00718811924327403,0.00874995504130066,0.0079494889554521,0.00803305027024609,0.0105852761154298,0.00753597074990694,0.00749109344332726,0.00926007990120777,0.00817870953490202,0.00966194983255527,0.00650073382363041,0.00884147563231896,0.00923724002744865,0.00680587187306433,0.0054324064878711,0.0108691939105507,0.0157680089755146,0.0157748024935839,0.0226998350203644,0.0314528797200434,0.0378729367056518,0.0503472692965535,0.0497846409690847,0.0492897485786607,0.0474474991898198,0.0428340098656171,0.0392106491036972,0.0369809069086125,0.0273103239364056,0.0216621995482541,0.0129882492379308,0.00852158498169752,0.00874074721175521,0.00854395697705026,0.00727235411660159,0.00779618480704692,0.00906272221751896,0.00668231070496609,0.00823959828626978,0.0102923858177527,0.0107365680508205,0.0074262236405184,0.00509644956689569,0.0108874419898419,0.0141440075409189,0.0278657174643104,0.0369158678024815,0.0460766283740757,0.0472459938365663,0.0406495375908313,0.0373000735610119,0.033320253328234,0.0330152948218013,0.0421370210491801,0.0490967418578778,0.0614801197107682,0.0465712617902053,0.0348772183925316,0.0198348112804988,0.0135711675248418,0.00634062070251126,0.00822268242470859,0.00795943943823143,0.0090315463422648,0.00668628073259609,0.0107097900180329,0.00613515325885867,0.00935899775474521,0.0100278051794377,0.0084217316487937,0.0172522170084934,0.0221882577665865,0.0300040382532969,0.0324387691485354,0.0399880814261023,0.0489173556471669,0.0537667100462447,0.0473251433048348,0.0470442588454755,0.0455581843100987,0.0451369323106111,0.0408074790173986,0.0451165121546058,0.0372888902138376,0.0322554997074026,0.0203725508678815,0.0037465990879471,0.00178384603959843,0.00871109532283882,0.0105166184189671,0.00842261766966397,0.00712383800811563,0.0103588824468339,0.00905128153977933,0.0081969003393256,0.00858202707769298,0.011028214803612,0.0174122448371603,0.0294487392963863,0.0301495864815025,0.0366855914159931,0.032012171099643,0.0228208290881168,0.0362949000131494,0.0266976832853923,0.0301781024200645,0.0342112518163532,0.0356117043707666,0.038910115879622,0.0401517900062507,0.0321535442332697,0.0179282670143998,-0.000372359628177878,-0.0165737802530376,-0.0246258133216188,-0.0175147379737748,0.0018946926962596,0.0111011105387134,0.0097266963448768,0.00998902244368809,0.010707495680592,0.00664526707425241,0.00754870692693287,0.00645560858830345,0.00906961071342766,0.00858061624872265,0.00763227047959562,0.00978226692165757,0.0132349465703361,-0.00842647344967468,-0.00775754772603078,0.00385744649188141,0.0095370538350267,0.0138898493317574,0.00130976092323244,0.00144096129594026,0.00902138681497827,0.00541175734839227,-0.0074636397584215,-0.0180969909749884,-0.0255829023327095,-0.038122810928328,-0.0534093136848751,-0.0458033718305008,-0.0185255215155908,0.00975167239410596,0.00630357561869204,0.00714607713105673,0.00739151450267242,0.00634119552986423,0.000653385787368208,-0.00392450938869483,-0.00740758986882029,-0.0104999502024523,-0.0120668265529973,-0.0165124911683986,-0.0281281325149084,-0.0387015498823628,-0.036206731657725,-0.0335637792693906,-0.0245903490096383,-0.0245947733125022,-0.0350645230361522,-0.0261462097408211,-0.0280694257916259,-0.0180948156487484,-0.0276023236127352,-0.0317672765876856,-0.0274539716293148,-0.0281405675308482,-0.046776422561629,-0.0389931121313992,-0.0164583633291957,0.00712260564579975,0.00969609786005472,0.00879697214892076,0.00816513527903477,0.00744333792600956,-0.0053099738019175,-0.0178760172695479,-0.0259050212754019,-0.0413622416656818,-0.0368365220040303,-0.0435510572716534,-0.0545013762046981,-0.0676901252970796,-0.0716607749315577,-0.0660753080989424,-0.0522586052700996,-0.0394618073673013,-0.0325572156208325,-0.0271812489540106,-0.0128514694748183,-0.00703697310565647,-0.00589568451574965,-0.00868712346893817,0.00143078035337763,0.00415670866055011,-0.0199169418234181,-0.0144364776124337,-0.00157263660973353,0.00147474759354967,0.00694043556342701,0.00747977863681396,0.00416513132758965,0.000720090049319651,-0.00750425370299867,-0.0196012031902309,-0.0416644023677509,-0.0440124311393757,-0.0521382222222506,-0.054849760910255,-0.0667689340714586,-0.0674614028360759,-0.085694273426775,-0.0772042064124473,-0.0588924930430936,-0.0259121487578561,0.00643089085976917,0.0167682583703341,0.0110630424420681,0.00792736187821401,0.00607811426552915,0.0143978446371094,0.0169579160314752,0.0122817805358827,0.0005377209732491,-0.00806852738209356,-0.00210896983917474,0.00245320293927467,0.00944358955967406,0.00789997250571888,0.0071373061450648,0.00350447395748474,-0.00669752574810987,-0.0171355022445354,-0.0327299189777434,-0.040882208822526,-0.042306010869353,-0.0390735795430778,-0.0395621888337305,-0.0498199303480533,-0.0675045688618443,-0.060745169173775,-0.0337246598625878,0.0187789596812911,0.0511444212285146,0.033301200409483,0.0136902994892332,0.00386400501554467,0.01575877026241,0.0120703149771332,0.0213312811153869,0.0205182513955997,0.00511258416104145,-0.00210512098436938,0.00771679007069216,0.00585111828825911,0.00966693738131798,0.00827144580736525,0.00910071524754941,0.00627148220422316,-0.00119322334833912,-0.00618087635400406,-0.0149775599752368,-0.0270462475161976,-0.0192516026196639,-0.026671531358595,-0.0310564631268428,-0.0226576826648224,-0.03001164085152,-0.0236735685910416,0.00705613733254978,0.0578223608806177,0.0624515824381245,0.0357532003499795,0.00636986268170094,-0.00885106018858308,-0.00132928070144354,0.00943524856446357,0.0235404892383776,0.0265686183059507,0.0158409054770308,0.00505774341055288,0.00499567616453659,0.00709185341892047,0.00723500249558467,0.00667882053490358,0.00878308393476793,0.0104471878354398,0.00808230769577947,-0.00291551517797979,-0.011509155792122,-0.013128614148196,-0.00555872921678511,-7.40263467719597E-05,-0.00453484427644331,0.00505286514427505,0.00711647627712537,0.0142087163562413,0.0459384008231426,0.0656204064608842,0.0651122009219445,0.0281048070436101,-0.00871487628763071,-0.0151970154092581,0.00041871646103042,0.010718759289193,0.00875832984770358,0.0291745143376961,0.0227072580684965,0.0088367694477022,0.00395295127570649,0.00866475200715378,0.00980305178880007,0.0108025446938044,0.00702678628885498,0.0105599129906862,0.00921390559626901,0.00311523517646749,-0.00273129041685641,0.00659565328019324,0.0176995772422056,0.0316926870469951,0.0417343331357798,0.0413616529982543,0.0406586909039727,0.0509651636890436,0.0612952690998443,0.0596620800220591,0.043045269967101,0.00299192326005726,-0.0274356409576125,-0.00586014797552346,0.000397464444795477,0.0150382805027099,0.0181604453098562,0.0279520761095938,0.0190563412558558,0.011413188262873,0.00663570725765682,0.008409777775309,0.00786618429207415,0.00753872140278737,0.00966327108842738,0.00729972053030231,0.00948472205756453,0.00806633207761576,0.0122969039710245,0.0432783758043611,0.0591833576913099,0.0582187659164501,0.0643553218458122,0.0536121759840427,0.0650903373652873,0.0598108708037895,0.0630812564530076,0.0566746313856967,0.0182216078945831,-0.0288764773430925,-0.0224974445086175,-0.00674861324449327,0.01398225054451,0.0199991813524281,0.0203064522206516,0.0237660191707397,0.0200935457054956,0.0133088121766513,0.00929075470955042,0.00728935004928256,0.0110781521061743,0.00960146221844427,0.0106299192826712,0.00576229368808139,0.0070672887542718,0.00984309289543,0.0331608370003077,0.0566064005926409,0.0735784325878896,0.0612603874355052,0.0591665278239899,0.062658560861569,0.0636754346413684,0.0622890290072242,0.0588844125822069,0.0534328676461267,0.00526602857125274,-0.0204060034498698,-0.0175355933786124,-0.004297556506678,0.0154936564275838,0.0278868851534796,0.0215574418321703,0.0193983223073346,0.0148259830135785,0.0134985943430305,0.00920181642685195,0.00894092666264739,0.00863965396123104,0.0083666390701214,0.0102886209915871,0.00985593687409089,0.0120680679697395,0.0211873793479221,0.0452845105861858,0.048388355782091,0.065032501687257,0.0601809058228155,0.0519004854317622,0.0588326232898941,0.0637456327236834,0.0571754705873511,0.0643738933285387,0.0439455731228193,0.0119896362249087,-0.0111887570806267,-0.0201133172871859,-0.00515779410815589,0.0218084249431581,0.0286840684340528,0.0272515347571976,0.0162653329347484,0.0245649106289599,0.0226875454208201,0.0132670358630211,0.00784733830413877,0.00688834137949952,0.0071353576472144,0.0100481603412403,0.0096346753484292,0.0144086899857995,0.0201940630430112,0.0322965168645335,0.0398674778863106,0.0317723485559845,0.0462467957396512,0.0569119785043919,0.0688789435232897,0.0653380009698229,0.0650421512861313,0.0550515513599222,0.027298109017748,-0.000358232240516901,-0.00878738687244067,-0.0171132320323248,0.0111539578136971,0.0191200715726764,0.0326936616309883,0.0227542201566652,0.0245557541724478,0.029993455100348,0.0223781126230022,0.0171735968565354,0.00836148142038697,0.00868529705045449,0.010381888337606,0.00997967484322452,0.0121887937863328,0.0181231171628255,0.0265731580902079,0.0189948040242456,0.0195612096159482,0.0139628703881238,0.0460702326773504,0.0547945328084962,0.0630295458375364,0.0656642975377061,0.0640090474992005,0.037775518392219,0.0170223011533621,0.00329898195039329,-0.000363064402629457,-0.00316211804361964,0.0182343961485576,0.0405038462511458,0.0405896390952551,0.035979059625177,0.0213325168958144,0.0207141219473872,0.0186627747506444,0.0125466635019786,0.0072152728161894,0.0096102960493427,0.00727014307359935,0.0104947251265243,0.00905169359539294,0.0163769434669771,0.0226704845272758,0.0169498157861504,0.0169124888409789,0.019361970084892,0.0271963062056665,0.0281956453687044,0.0361072179502526,0.0374371262579484,0.0331565531823929,0.01457358353207,0.00331069020309586,0.00213523775651714,0.015027160094873,0.0116384922237226,0.0342853876022067,0.0511976074122858,0.0409502915685789,0.0304723509632176,0.0251471550882812,0.0178049769910909,0.0149452835959704,0.00915584409651078,0.00840315814679354,0.00993253789957157,0.0108217590990775,0.00676986151280073,0.00577859500829021,0.0125444140734539,0.0184032744595583,0.0168330178572104,0.0280920311833426,0.0175859146964146,0.0130777210161681,0.0133412174692456,-0.00034206615200929,-0.0193279898615276,-0.00546848103261869,-0.0152388714784542,-0.0115982547832616,-0.000753629272281644,0.0187090613727765,0.0266056000374685,0.0356256821470445,0.0325021090571512,0.0334306852457408,0.0271701096677407,0.0185914879985471,0.0124224848534167,0.0106898089833322,0.0061375288236358,0.00746205130091926,0.00922914128613006,0.0081726508203747,0.00749648287257115,0.00496324290597476,0.0100622887785147,0.0117905660048352,0.026791796880238,0.0322957625273312,0.0265980496629958,0.0118122861257102,-0.000936279252099489,-0.0246327222840756,-0.0351366219781115,-0.0407131875269811,-0.0351695708925441,-0.0208804096903775,0.00429342885701399,0.0216830776050115,0.0228885387447835,0.0161446795127714,0.0163660765255726,0.0146933151923162,0.0103482159413356,0.00920239699137447,0.0117775562498749,0.00846737118806551,0.00774598704451184,0.00731528295571393,0.0101789346543476,0.00752998864689091,0.0104666985532929,0.00913998423343035,0.00611855392866546,0.00770121007249199,0.0225475685756314,0.0339043800043603,0.0394685453376284,0.0278862847123741,0.00168584316642507,-0.0298867203555546,-0.039025081407112,-0.0420837675887372,-0.038404284744344,-0.0254766371496627,0.00366191893560495,0.0139783554652537,0.00939663307672953,0.00526506179251178,-0.00146017650698146,-0.00176784293802169,0.00476057493215898,0.00856522195534936,0.0100704291049773,0.00754407341155518,0.00941310660151534,0.010681449712608,0.00956657950669868,0.0105231458825654,0.00966494819392806,0.00950745374057502,0.00941712633627983,0.0075327391931851,0.0133080710602855,0.0168505727498544,0.0164165683897203,0.00911782036792272,-0.00194059438753183,-0.001057538981997,-0.00329500797390338,-0.00115965180166378,-0.00948278053826056,-0.00152952830872791,-0.00329693756129327,0.0074333394076117,0.00407590608560004,-0.00220954086624658,-0.00326325053752945,-0.00300581297490578,0.00477221157902124,0.0091105598770859,0.00719493377218655,0.00965489695191348,0.00709359485680907,0.0109429703539628,0.00971385047017395,0.0107791950234985,0.00901920427110826,0.00772619570639858,0.0099798527838914,0.00486570061902555,0.0067357455369939,0.000733745526924346,-0.00571677256851769,-0.0223708849655426,-0.0261661556862738,-0.0233446816231457,-0.0173486271518929,-0.00188782300276639,-0.0105078855126776,-0.0171935310385641,-0.00436259229081861,0.00147903904018116,-0.000300683375871239,-0.00343389147818193,-0.0057830150075952,-0.00126427157713522,0.00294363419508828,0.00688480273302984,0.00824369930001941,0.00784795054550958,0.00657162505864815,0.00735243857029453,0.00744048754731078,0.00700008404675405,0.00896190530941184,0.00841142125638485,0.00860748252776279,0.00736318152797218,0.00600026278211064,0.00657704559110487,0.0012691659592305,-0.00496710111068809,-0.0080238246173837,-0.00790589302342326,-0.0106497808601283,-0.0064877176439758,-0.0075115997605622,-0.00730366741328914,-0.01192245101363,-0.0104708311229678,-0.00726424114968268,-0.00410196188235812,0.000840233002308731,0.00869775169961376,0.00537065103042864,0.0070562945638325,0.0070188822247376,0.010254790814982,0.0076215936377914,0.00813723554725349,0.00726637634055639,0.00996317283702808,0.0102885538988489,0.00809429618556428,0.00954616468650996,0.00770576800717029,0.00678804953973825,0.00773238355549543,0.00650082305099668,0.00786166802273233,0.00494784004542188,0.00841288767647917,0.00749139859147515,0.0047699768856391,0.00108481511817985,0.000663286131899692,0.00152812629542074,0.00299472935481668,0.00722801497846729,0.00843496047169343,0.00591658439425588,0.00792310515126844,0.00767923100512332,0.00899267624048154,0.00912437749444021,0.0084264070419078,0.00908015596467176,0.00662041345819831,0.00941354737393897,-0.00155089115963971,-0.00819372474574233,-0.00767605274110792,-0.00611493096521632,-0.00909130006947205,-0.00712222882830232,-0.00610637114802736,-0.00950147771794757,-0.00660537431561306,-0.00638483623645543,-0.00618983856249029,-0.00723603419281356,-0.00743008423856254,-0.00952966856354909,-0.0067224934597703,-0.00987337215661036,-0.00855202466506006,-0.00746054613791037,-0.00726159906195434,-0.00578008687888279,-0.00793083621220982,-0.00847648792560986,-0.00611172136310273,-0.00867620045566844,-0.00738039836291888,-0.00895794935592026,-0.00805577144175234,-0.00913071797954806,-0.00648440274258062,-0.00711157752048402,-0.00883392841860659,-0.00706663514062496,-0.0080230437970675,-0.00996340633056115,-0.00631291121112288,-0.00976116225714537,-0.00656633924178732,-0.00621167901941562,-0.00937390166578149,-0.0103864086647841,-0.00823319842064784,-0.00673635419055265,-0.00649257911702241,-0.00666103766074796,-0.00719678826519989,-0.0106507256009588,-0.00579276479763358,-0.00403694527262618,-0.00661720293421023,-0.00781641195975461,-0.00621325398121404,-0.006095768468534,-0.00795855730200021,-0.00746891148008455,-0.00574612822334137,-0.00914688393041964,-0.00947663123192736,-0.00863143946292048,-0.00725689166438171,-0.00815848276888004,-0.00818233797324767,-0.00867481425305462,-0.00792563837452824,-0.00904592635662528,-0.00524333736925275,-0.00603128132298151,-0.00978450907360994,-0.00853650330578118,-0.0157047033367946,-0.0169286545246554,-0.0227500499508409,-0.0230329195937198,-0.016832746349201,-0.00844764644869891,-0.0044617697308699,-0.0049212704650308,-0.00894426030990166,-0.0107660485521086,-0.00919546655087039,-0.00857255629087766,-0.00657663266497384,-0.00774758027467944,-0.00860109691883514,-0.00843007125440555,-0.00841555670234251,-0.00681184883219892,-0.00878012367514915,-0.00613056994947421,-0.00993284796794714,-0.00621590732666972,-0.00574718874899064,-0.00704870612132162,-0.00733297914792554,-0.00914356248489344,-0.0120508373135542,-0.0164582081289117,-0.0252071863729345,-0.0349107970587858,-0.0456985477675222,-0.0553933016150599,-0.0573633874997004,-0.056396513344709,-0.0519777897769002,-0.0480853851763708,-0.0406499610691795,-0.0377718324575799,-0.0279625332317074,-0.0192663099134295,-0.0118512951323843,-0.00628922387825844,-0.00790354282549423,-0.0071336984250094,-0.00818989848135816,-0.00850058134895965,-0.0057500808535858,-0.00916052508455187,-0.00655340329431065,-0.00535878488649027,-0.00911457423378325,-0.00590923434685505,-0.00508318896835641,-0.0052990676708466,-0.0102469261132126,-0.0262562779031266,-0.0375255109110181,-0.0475139430758337,-0.052635821845511,-0.0453787016481732,-0.0405410098929806,-0.0398201360634305,-0.0427390022235724,-0.0491592734454653,-0.0514657866192246,-0.0618135075520806,-0.0439740538571612,-0.0314851947647605,-0.0159387698445877,-0.0121262304439311,-0.0056849170959615,-0.0100960560250118,-0.00725559415026729,-0.00752494125564299,-0.00802453278838571,-0.00964922008415476,-0.00919910058452196,-0.00868568335016676,-0.00981053036419997,-0.00346578229400574,-0.0146325961877187,-0.0225471732559977,-0.0321716920604163,-0.0340415994308284,-0.0433053355822995,-0.05165458272511,-0.0562921938734764,-0.0502751728014493,-0.0486963858343132,-0.0540465489430277,-0.0513309844850119,-0.0444896590909621,-0.0443656991544144,-0.0337787172200145,-0.0215021295848491,-0.00817722987475646,0.00637106728682552,0.0062939023710525,-0.00588930944669483,-0.011906508759152,-0.00852159273643895,-0.00918241306753451,-0.00952438658210839,-0.00482972346920025,-0.00444897170840549,-0.00698824554062621,-0.00912593517287387,-0.0138598097219919,-0.0285297026333035,-0.0343763940083509,-0.0407454176513365,-0.0298568427274726,-0.0206805727527302,-0.0324018127510945,-0.0279334599540361,-0.0261408127809289,-0.0286647601574415,-0.0331293403873556,-0.0320381363746987,-0.0291082915576761,-0.0246382256027717,-0.0047499607865923,0.0242111360842487,0.040246678953787,0.0479719768806778,0.032303033538243,0.00562313908257602,-0.0112783901293754,-0.00798738835688644,-0.00702577357983595,-0.00676825195188306,-0.00810684046889832,-0.00782229732591389,-0.00678889498834483,-0.00986849668519774,-0.0126503627247997,-0.0119141866125792,-0.0162718215784115,-0.0197441898532574,0.00454967559837887,0.00887965130404837,-0.00509206660810538,-0.0137432247993915,-0.0120801034775547,-0.00150430784497867,-0.00227139779684429,-0.0101814225050736,0.000821115807072426,0.0126077726618708,0.0336024718372554,0.0458737383663596,0.0596524978802376,0.0746331110351545,0.0614097107281667,0.0268102945974475,-0.007098309452828,-0.00574098052108105,-0.00571904110610968,-0.00852206467463399,-0.00764830380368955,-0.00481420622503611,-0.00312253023186944,-0.0021339018132232,0.00463823140182014,0.000475683448506035,0.00974660947891338,0.016486564023953,0.032153225624969,0.0314253811429431,0.0244030511503744,0.0157975562642104,0.0224583026167986,0.0300894669105069,0.0241704719306545,0.0232213535056216,0.0147600454596122,0.0256745952267001,0.0416969128311281,0.0394223177424368,0.0431978537094605,0.0659819464072833,0.0521914366698389,0.0192413796057853,-0.00628032786842542,-0.00613932192791248,-0.00715155967846139,-0.0069129808435351,-0.00721043745491112,0.00207168324256285,0.0116900735596184,0.0151549098729904,0.0298572107166178,0.0302237345551568,0.0389770622218734,0.0494409530306313,0.0629220779890854,0.0691215534860084,0.0619046707260509,0.0470476591453109,0.0337276838656195,0.0257270412427874,0.0133095758469061,0.00438633175883976,-0.00495577487738708,0.00182210491149178,0.00888331391522417,0.00118332666843866,0.00384867350935022,0.0271340338169977,0.0222009724373011,0.00414555095525858,-0.00337298255096372,-0.00746878216777154,-0.00909588842596626,-0.00647417580843696,-3.49057719312839E-05,0.00379142866940323,0.0130118161118378,0.0321189097502029,0.0369904018935718,0.0443000211535815,0.0472896236811146,0.0655634251799727,0.0644310907408307,0.0863245966795482,0.0829607941239619,0.0593651520097895,0.0186136802927916,-0.0179102753488612,-0.0307086837682592,-0.0296221133254919,-0.0232962185775413,-0.0131133634523764,-0.0215313499409139,-0.0218773269606538,-0.0141801108169131,0.00260244088108872,0.00945283724814913,0.00418465560806148,-0.000516046025854718,-0.00788082197438019,-0.0061605901634497,-0.00453537586730129,-0.00246104669342079,0.00208454392603542,0.0147315044955492,0.0260956554263482,0.0345379942618674,0.0428237046812626,0.0379737776051568,0.0416646539821776,0.0589820133973,0.0789340638354682,0.0755025812156981,0.0405239501059129,-0.0169680563510241,-0.0494316530128174,-0.0445996575747422,-0.0323771339704981,-0.0194443394155248,-0.0213953402032243,-0.0186755562144768,-0.0273793528424857,-0.020662065452447,-0.00832486512107165,0.00156725408621126,-0.00458360030755259,-0.00522022350644282,-0.00575311641928411,-0.00753633617745613,-0.00643347657506537,-0.00397619179143255,-0.000513559705045498,0.0081372955728515,0.01698723704037,0.0324882928913162,0.024416792345658,0.0348684703194067,0.0445127781173991,0.0355251539736737,0.0476126556915102,0.0440971535361845,0.00736340406100891,-0.050447054964901,-0.0614494128231098,-0.0425137960119008,-0.0199983926631412,-0.0046936346824345,-0.00985842836228887,-0.0141875790104128,-0.0201181142313546,-0.0257829956658633,-0.0149095292235262,-0.00238238166810432,-0.00629327507176067,-0.00542269665885825,-0.00701744093684576,-0.00718380336905049,-0.00561542540628487,-0.00806858672512087,-0.00676514671272383,0.0016860419409375,0.0169085543728029,0.0235508499685589,0.0150840574714392,0.0141631518073036,0.0230497327926897,0.0172326888648766,0.0124181384011752,0.00421869560729683,-0.0360948428160786,-0.0592167608891548,-0.0591587483984996,-0.0311388178622935,-0.00164374387382979,0.00301055929623106,-0.00847355101853261,-0.0143124620711888,-0.00402923537733844,-0.0256663075900106,-0.0207914620813982,-0.0101019992956623,-0.00573534142540167,-0.00478832478345719,-0.00851344947868191,-0.0059159624700262,-0.00765654058011302,-0.00820588847182625,-0.0110874360176716,-0.00217600943336695,0.00326791112108361,0.00187213324665881,-0.00477514162176989,-0.0141541052771656,-0.0254718051344311,-0.0212511508494453,-0.0205921698487341,-0.0311658004762014,-0.0457010571530301,-0.0513466318891356,-0.0377135035523461,0.000652540964186229,0.0193970431306331,-0.00204941878732468,-0.00134651602966995,-0.0122058667305277,-0.0129606322846354,-0.0217813753120313,-0.0152818663608645,-0.0108669795743524,-0.00665770505829278,-0.00843203989539125,-0.00974286235045455,-0.00752219901444975,-0.00773241316163841,-0.00520595879052641,-0.00843901557622785,-0.00308040486994759,-0.00915202083829106,-0.027349866021524,-0.0440312934604807,-0.0443958159817628,-0.044278673419666,-0.0391096111479483,-0.0510393205983129,-0.0475942604658421,-0.0520053991335461,-0.0488356091530675,-0.0144273973822142,0.0305605501899994,0.023840861530703,0.00834520837057485,-0.0112962779157739,-0.013583390825143,-0.0092050907041095,-0.0131447559061815,-0.0168836759011268,-0.0102672687779025,-0.00592267120032784,-0.00699223923154823,-0.00656502382820288,-0.00774065717785489,-0.00947606277844902,-0.0077880258147944,-0.00600313005667772,-0.00912607571664831,-0.0242810032414714,-0.0481650936354206,-0.0621878837488011,-0.0498676327947743,-0.0483940618398663,-0.0501844646228765,-0.0623531860707414,-0.0606096075335431,-0.0523140937969579,-0.0487367639263836,9.27379412100037E-05,0.0254290459512301,0.0210254182503202,0.0116552109638986,-0.0119322923083433,-0.0242371972039974,-0.0127266749897745,-0.0104534312566861,-0.0127952431832102,-0.011141232111165,-0.007268024686951,-0.00823041415366296,-0.00907965214587285,-0.00570256644346105,-0.00752661124828672,-0.0063687783809427,-0.00812518446638744,-0.0149085209690108,-0.0300026513829609,-0.038903001996118,-0.0560127098281799,-0.0550341027199801,-0.0423915385461321,-0.0578678294844173,-0.0693083874623777,-0.0623952227232088,-0.0624942181202709,-0.0372277472099135,-0.00808697447265871,0.0162656324425836,0.0269204294841324,0.0193160101059806,-0.0172903805572915,-0.0231380701059325,-0.0229075347268218,-0.0156298452447774,-0.0212272785838612,-0.0187522495177522,-0.0122326268214857,-0.0084294040026523,-0.00911048024512401,-0.00562308738915789,-0.00571773898417254,-0.00824737248151356,-0.0115381572871727,-0.015361453038914,-0.0244310106834342,-0.0239348797197291,-0.0230469388223509,-0.038627288714847,-0.0534451856483232,-0.0689519840837814,-0.0736268445708143,-0.0740971964945526,-0.0572030845041667,-0.0217101480779538,-0.00493232109841952,0.0123110686161138,0.0242697423607688,-0.00153030120694179,-0.0154138146731029,-0.0329590087926978,-0.0232534566223282,-0.0258943224597578,-0.0295357243247762,-0.0225317197903143,-0.0130544940855132,-0.00819539493304184,-0.00681950308790903,-0.0094010355290123,-0.00873899704130462,-0.00863280370550245,-0.0190981674477017,-0.0224993553257205,-0.0100849014506765,-0.00540462805318577,0.00109635922654806,-0.0348924383656267,-0.0538348352390156,-0.0696145923076999,-0.0712788117585855,-0.0731250909017047,-0.033834625655451,-0.0147208545173818,-0.00511474382322277,0.00121760422460042,0.00829340534637436,-0.0135438592888459,-0.0382006388133526,-0.0419106468341732,-0.0373149139715181,-0.0231558770937889,-0.0232312472336628,-0.0244415098948682,-0.0148352295966277,-0.0078053392733877,-0.00728114536465679,-0.007425885737408,-0.00704292137777739,-0.00973021726240244,-0.0142990977329549,-0.0201837772141064,-0.00842330742002173,-0.00077208676610109,-0.00288152531441761,-0.0152266165932886,-0.0213153254962396,-0.0382616599713651,-0.037136298496483,-0.0345123175199629,-0.00997880955672791,-0.00118542307649228,-0.00258738358506912,-0.0111726390216615,-0.00438956518522921,-0.027560177551674,-0.0452252927522304,-0.0404955365148571,-0.0331470418173318,-0.026632631978756,-0.0186294586033099,-0.0147912653956352,-0.00909046227928193,-0.00599559383805967,-0.00831865290838966,-0.00801008366326969,-0.00861143624772344,-0.0044204473648224,-0.00703359935252914,-0.0118814611467085,-0.0169625468754745,-0.0278812797675722,-0.0090560569415892,-0.00798292989934024,-0.0113181440947352,0.0013067552589333,0.0232765231907714,0.0121592678975503,0.0159829116817216,0.0118001096675613,-0.00340239682225226,-0.0183347526083061,-0.0209820891374822,-0.0294836866834644,-0.031244428578713,-0.0327345246443833,-0.0263915794130353,-0.0202164085354191,-0.00936862242534399,-0.0126599219485762,-0.0080452570601647,-0.00987076662417945,-0.00651432035302878,-0.00844343561331791,-0.00646334011670296,-0.00449097018060959,-0.00371454811760206,-0.0101514728586864,-0.0237024276912979,-0.037097870321518,-0.0302475341760127,-0.0121048966033396,0.0017767830823881,0.0222091504213839,0.0382423484734441,0.0464487088214914,0.0388070148688755,0.0260490402884265,-0.00183749031704824,-0.0160544457526924,-0.016810468653028,-0.0126712623165899,-0.0128314878855876,-0.0129887955807241,-0.00820370454965866,-0.00722706908196739,-0.00847626119577638,-0.00840572047219318,-0.00650930766395703,-0.00830388226212059,-0.00827135492429615,-0.00797226540141047,-0.00557870596310593,-0.00665582851006589,-0.00728923386846811,-0.0072687844262088,-0.0230939913793894,-0.0390981215820306,-0.0492988818145753,-0.0392887720584305,-0.00971417390914009,0.0275921505408271,0.0383369980234513,0.0498983809457137,0.0393966442266477,0.028421571813938,-0.00260808853940312,-0.0125036634143481,-0.00584033678396493,-0.00624594475638363,0.000981458367865962,0.00805446907863405,-0.00066914449171998,-0.00774672054837873,-0.0099312436234662,-0.00694755834195638,-0.00477553228544851,-0.00684321220803133,-0.00567695062696496,-0.00695561010794863,-0.00969917900797445,-0.00613957931980929,-0.0063398769778448,-0.00680481200500284,-0.0141887616166323,-0.021312872137867,-0.0193098489762461,-0.0153218129638571,-0.00868612052193489,-0.00741511353764194,0.000419525217247497,-0.00102777789008483,0.00300335248713213,-0.00119115170632865,0.000543451527467315,-0.00869565447637544,-0.00324851981970311,0.0043040746541354,0.00211836976021821,0.000131579468044789,-0.00384376012182699,-0.00815106601019708,-0.00743133800359465,-0.0085344936840148,-0.0090262699346755,-0.00949828117476148,-0.00583776734443308,-0.00806282756970767,-0.00738482022156706,-0.00871134670803542,-0.00662114309871047,-0.00492987556680606,-0.00905308262226081,-0.002138429700096,0.0021593969434976,0.013303691174925,0.0172466001868922,0.0149482220620898,0.00875313502407247,-0.00170334764343348,0.00917472000646568,0.0174616560693369,0.00509828701222454,-0.00498613265834305,-0.00580617733243688,0.00144184674095525,0.00203975085511461,-0.00436313795431245,-0.00563748879910246,-0.00687863804188705,-0.00623108509459026,-0.00684300096238162,-0.00665763997735528,-0.00725902732488568,-0.00854021703755573,-0.00787346749636923,-0.0069427280121088,-0.00704387577402652,-0.00725250140928654,-0.00527947460511507,-0.00928084599524426,-0.00905678234222105,-0.00521881003039921,0.00167864221975422,0.00267642439208262,-0.00206770082570505,-0.00127859474824559,-0.000342318412369964,0.000560632711398468,0.00431307591464421,0.00487199810803692,0.0086600669195693,0.00844327214090123,3.52369801630367E-05,-0.00322919048166873,-0.00769788668854717,-0.00682195282222962,-0.00659900693925634,-0.00818217681643533,-0.00902435370039835,-0.00611187743342228,-0.00630135376709683,-0.00849698136272299,-0.00646447997386934,-0.00740941345839975,-0.0088176417374302,-0.00838106061151046,-0.00748011619634128,-0.0068359877172196,-0.00793739221038944,-0.00822730112727865,-0.00794976901422622,-0.00685609511513635,-0.00719673361894465,-0.00748276649052136,-0.00319730290966566,-0.00246530141730739,-0.0038289549733317,-0.000561276219351688,0.000499142874522099,-0.00512010400016156,-0.0071077390392455,-0.00717371285979399,-0.00896682371444381,-0.00707576648403178,-0.00880612048523341,-0.00856414704625768,-0.00829813035765885,-0.00719093863756982,-0.00722577887175342,-0.00633418532595115,-8.15962759259866E-07,-0.233127682561139,-0.235354353204508,-0.234288493297229,-0.234375632723579,-0.236440137869094,-0.23369464346499,-0.237418442211885,-0.235209062308562,-0.236598610357011,-0.234072948833552,-0.233222030593328,-0.233323999735909,-0.237354493121927,-0.236668402053013,-0.235669202659025,-0.237045190894426,-0.233681159370846,-0.23675320933673,-0.237075846459153,-0.236467361309568,-0.236780177142319,-0.236288602508175,-0.23329495406255,-0.236684159694621,-0.235174946032358,-0.234334166499993,-0.237284378213755,-0.234472343524629,-0.23728443391193,-0.234749468437233,-0.237027201578004,-0.236450769696285,-0.236543709047421,-0.23498757831099,-0.234202173789674,-0.234968585872626,-0.236624758418192,-0.23604903367522,-0.233993833945649,-0.238541106897235,-0.234213313598995,-0.238493241183426,-0.237929085998518,-0.238915754080546,-0.234189919073408,-0.238752821265162,-0.238924267396237,-0.238036343716374,-0.236884421991188,-0.237719108360079,-0.236669497651766,-0.233971618828804,-0.235652055831395,-0.235664407972069,-0.23418362616439,-0.234629918690767,-0.234980782063619,-0.235456188208936,-0.233493323061993,-0.236129525885217,-0.236865604744524,-0.237266079441851,-0.235054220031447,-0.233909452199362,-0.233255012875628,-0.238207734578813,-0.244109733170142,-0.245569725206211,-0.24774812088108,-0.259437991660117,-0.269008062895859,-0.272687453726916,-0.270015104960676,-0.271481716791375,-0.272619542879717,-0.262975062728296,-0.256674125122694,-0.249212431424956,-0.241816901330386,-0.238621079497269,-0.23689903018026,-0.23703780730739,-0.237301861243727,-0.233318416822186,-0.236934569602283,-0.235990752111017,-0.237402340132699,-0.235799532391651,-0.234008656708839,-0.235793139178224,-0.232945468973564,-0.23360801848365,-0.236885592231001,-0.237634516514637,-0.23641823828024,-0.237271179585957,-0.240462706779963,-0.25676412717395,-0.285908497770264,-0.291968333440395,-0.295730037445033,-0.308416442759353,-0.308288648086738,-0.294546590392249,-0.285192028648887,-0.262346672383288,-0.251273063207359,-0.239767718124594,-0.236285081819004,-0.23343097328026,-0.233202731452926,-0.234528316017719,-0.234079149987666,-0.234145689576216,-0.2367307799783,-0.23372688549385,-0.23568267722472,-0.231906275918934,-0.226894269309524,-0.223879199666005,-0.208163068348373,-0.186732919898704,-0.175333484971921,-0.14883588101751,-0.142339530209779,-0.141813608088199,-0.14676770047568,-0.149841338909042,-0.159634504658203,-0.196124971927429,-0.22968354816336,-0.257351009360042,-0.253742098777081,-0.254053499542632,-0.24441500683054,-0.243799892100295,-0.235892719176857,-0.235289700541408,-0.237016078630584,-0.234977659958699,-0.233639452334771,-0.233683447198548,-0.237319049093573,-0.236560566237262,-0.230300539327245,-0.218183640067902,-0.201078348936618,-0.175084801150657,-0.124730332528464,-0.0699551611014162,-0.0221068297707116,0.0456235925320984,0.0707623567261003,0.0757225752444185,0.0864959403705019,0.0949918951453987,0.0909986898545703,0.0667400142511733,0.00668372236477775,-0.0658939201287632,-0.119781837055143,-0.171819895346014,-0.214124932335213,-0.238298236751255,-0.238053076857782,-0.230720067366611,-0.237198398901783,-0.233954781275203,-0.236310762400021,-0.235102510986171,-0.235192518534454,-0.230619093633481,-0.21718830315404,-0.196404955931194,-0.161397619105121,-0.0960479874658306,-0.0253541027380316,0.0515643435662419,0.104097310871687,0.142624058096634,0.170197368285473,0.18768884043062,0.19273136823468,0.199996693166708,0.203186988431593,0.184748701177901,0.14239429909649,0.0759223476941785,-0.0124021062529249,-0.09634329712248,-0.171513205563862,-0.226381424752984,-0.240578186433917,-0.232176327393102,-0.233397525849464,-0.233528308160469,-0.234592934233698,-0.236394899472282,-0.232677821484034,-0.222780187354383,-0.202633205337825,-0.167292756615212,-0.120136968961339,-0.031185389402875,0.0521034558584595,0.104593111820587,0.162213117801837,0.204696327539938,0.223718528001195,0.211959518965833,0.19281739869902,0.195145842434953,0.21199879883707,0.213497783685172,0.189991102174998,0.148548885258121,0.0666641816867453,-0.0138569491741798,-0.123111405676487,-0.207873563750917,-0.233384385566193,-0.228927050573582,-0.232980979470192,-0.23633755002512,-0.23697688546661,-0.237468463715962,-0.228984998628429,-0.217490805264125,-0.194313327723422,-0.156017149930456,-0.0903672522300538,-0.00947528143507766,0.0746763056895889,0.141369489364429,0.194240892567956,0.203024712767984,0.184993916354154,0.119411665600855,0.0656226947979637,0.0679640534585802,0.120148599689257,0.172313264662061,0.197311769923702,0.188459720573313,0.136124993841621,0.0572706789780294,-0.0555008493347728,-0.168679474813439,-0.211451510549728,-0.225572871003753,-0.231336336343105,-0.236659642282574,-0.234728165670368,-0.236041893918182,-0.228142022114705,-0.219743020780839,-0.193293015993983,-0.148101797421523,-0.0888568964413075,-0.00429455565600457,0.0891538351296927,0.150144337963563,0.179812239725888,0.153332447373267,0.0848206079072188,-0.0251798214525381,-0.0843694638451868,-0.0403525803215571,0.0643600085098633,0.162354562591907,0.21731322547182,0.225040456456114,0.183635292860736,0.0965270955000464,-0.0181871721864895,-0.130036658826241,-0.191289396055501,-0.226524375126745,-0.230019219778783,-0.23431946669754,-0.234574921663151,-0.238266176378953,-0.235284111196455,-0.226775422495443,-0.203518607561183,-0.159476266574708,-0.0874085316474063,0.000186247161871218,0.0806321776259415,0.137613340656175,0.117781375920749,0.064169692528872,-0.0213000728825876,-0.117429735114901,-0.133131764145669,-0.0491330157560083,0.0898325122465085,0.197261526471711,0.248605499928403,0.246218837065575,0.201400603578103,0.106138009321473,-0.0125756373939032,-0.120597530288512,-0.186451823474856,-0.221493998509074,-0.233521079263672,-0.23644344304866,-0.234875685372941,-0.234212655832455,-0.234545886860679,-0.228682988778851,-0.215043215590156,-0.154545272153985,-0.0752769986089803,0.00990459774485113,0.0785900640907413,0.105240102880874,0.0737370272167067,0.0339110598304154,-0.0256878424540019,-0.0795264823254836,-0.0627002700869108,0.0233876015268315,0.139816309172981,0.227660445865151,0.261892009693953,0.233347259735129,0.158421411975779,0.050329723543466,-0.0641659145111384,-0.138512272654108,-0.193878530022808,-0.226089000227628,-0.23103612485631,-0.236863400723389,-0.235401122836103,-0.233525824864856,-0.231767054561225,-0.229178870250197,-0.212708544771103,-0.160278507491272,-0.0747011152963205,0.0130023865631619,0.0750040659156083,0.0808390871283525,0.0664499265759146,0.0540769926920544,0.0561168073459066,0.0378575690073852,0.0503033841536599,0.11164358852548,0.184419345343327,0.240500689514096,0.228431949363717,0.175380794166028,0.0752289544993768,-0.0400383450018006,-0.121431297413368,-0.163883583917933,-0.207694475857799,-0.228052147060627,-0.233274652304093,-0.235424155509099,-0.236421381847595,-0.234957760038665,-0.235716519024177,-0.233263409697934,-0.21298830159533,-0.153050325720191,-0.0770940214404221,0.0133839144481967,0.0652923797873945,0.0719798584131345,0.0668789317824918,0.108288188844042,0.15524869560681,0.139223215895952,0.136144668222591,0.160837586390509,0.207242538072357,0.226006187517041,0.189233774744706,0.0959549245334185,-0.0225341063832314,-0.103771593896083,-0.155701394495025,-0.184535846180932,-0.219022593122421,-0.232288731639896,-0.235491120892945,-0.236169307817987,-0.235441610512044,-0.232604886420331,-0.23176402292005,-0.229769626427659,-0.206277716145886,-0.145022163993717,-0.0850379809429877,-0.0111467114886952,0.0340311679193583,0.0434867871324453,0.0709408583481975,0.13872871859029,0.18868441350388,0.158609597085176,0.144402391229125,0.148895368396321,0.188936308614068,0.186424199676966,0.120974590695086,0.0289627381196713,-0.059749407412544,-0.12580529368452,-0.170543549610756,-0.19763058046063,-0.225111026683885,-0.235679367832749,-0.233424147996393,-0.233763788375242,-0.237092127140574,-0.237153812960414,-0.235284842693739,-0.22697964374293,-0.20578339774761,-0.155317259450642,-0.106732294315135,-0.0528289937561217,-0.0129994743125504,0.00878375965923266,0.0591178441329441,0.129528446360961,0.155706383767121,0.111037773750159,0.0862908967894467,0.0962197409178539,0.150756256379226,0.132544943182152,0.069195734555296,0.00567350182901227,-0.0562372941108777,-0.123817371001107,-0.168581140355243,-0.198221339476133,-0.219637559297666,-0.233024152593476,-0.23168396233426,-0.23368825043582,-0.236757532541266,-0.237124045286809,-0.233208482446481,-0.225305348565161,-0.203353498979162,-0.154649981415061,-0.115382305487871,-0.0902090863389256,-0.0685138692301576,-0.0359668269288642,0.0224492647628802,0.0912880603723401,0.0825373215084753,0.0219216143403378,-0.0219299898854821,0.0278180278592172,0.10855967413467,0.10899215913289,0.0457028088063741,-0.0116823466676627,-0.0519667068076856,-0.0992717838150798,-0.160622467198541,-0.189324625589694,-0.216154833677712,-0.236336227139614,-0.235587944001563,-0.237085714216954,-0.235205910854106,-0.234704921400127,-0.234292025344763,-0.225391059460191,-0.198637077064719,-0.155138847034601,-0.122001411290019,-0.106168075673864,-0.100460668902221,-0.0583120372923333,-0.00527763235451258,0.0285910464035834,-0.00607909941168117,-0.0798487669451882,-0.0889189496012099,0.00544531965108427,0.0867746291746896,0.0745316368168763,0.0283787225603727,-0.0142784612675719,-0.0471390215804548,-0.0948012293722571,-0.147563190764969,-0.18612087609202,-0.221600510098292,-0.232324057169764,-0.23373030525265,-0.235435822127514,-0.237263839062596,-0.234242944772129,-0.231504392206994,-0.219427392757347,-0.187969732057322,-0.148877214621566,-0.1209693879791,-0.101646808967895,-0.0833578196555817,-0.0536787197390331,-0.0231269559855256,-0.0286725046856608,-0.094381697710986,-0.165170185571806,-0.11999008057828,-0.00568540383044851,0.0582439468078459,0.05159307340732,0.0235355312927791,0.00251689168579476,-0.0434812948816675,-0.082091284210418,-0.13874911434536,-0.190187731263782,-0.225400115871841,-0.233233527719305,-0.234033617363654,-0.235514720295629,-0.236564050994261,-0.236757157631466,-0.230990759994646,-0.214600744022791,-0.187639297334414,-0.15018402696739,-0.109930660663202,-0.0705205212214868,-0.0314823765416919,-0.0108182940322372,-0.029514429899681,-0.0920397781794119,-0.174793849230566,-0.202253192054398,-0.130466952594745,-0.0177231617434218,0.0549172052182623,0.0581128314595371,0.0462915340477359,0.0331249703396401,-0.0121730427936827,-0.0738245705426428,-0.134812942109706,-0.188977006782953,-0.226649995947448,-0.233503074964657,-0.23305961712273,-0.235431815645558,-0.23437605115997,-0.236863317349039,-0.228600288973019,-0.207586723437311,-0.180554397397894,-0.136211828468948,-0.0804084464506126,-0.0232119342011362,0.0146837863638918,0.0206802119290385,-0.00700894586006894,-0.102395462245649,-0.161623242944656,-0.164989894140674,-0.0884404978472043,0.016755046824738,0.0793689207536885,0.106837840777953,0.0982186952844952,0.0733862467181512,0.00736233984175939,-0.0787635968027966,-0.139539566809625,-0.203798998026143,-0.230410761466989,-0.231912205891479,-0.234443303890737,-0.233547177057323,-0.235825120482935,-0.236627536811703,-0.227737222451441,-0.211679314013128,-0.184286892120645,-0.138326181972684,-0.0594393512146508,0.015336914330471,0.0559059556627292,0.0759118424641795,0.0590416611924971,-0.00723148038747437,-0.0362693330752165,-0.0183127665180877,0.0337689670757645,0.105799447530492,0.154213569795599,0.166039537847185,0.130787680608224,0.0787187371211303,-0.0208975730630992,-0.113973112178599,-0.181280950371526,-0.219657286240505,-0.229074351106044,-0.234173528116614,-0.237527883251575,-0.235152067379836,-0.235717870231264,-0.237205642697101,-0.230810916544321,-0.218902897719862,-0.195494285613523,-0.14489770125783,-0.0687545942414628,0.00850138106889958,0.08016056731004,0.126693064581625,0.160198554631816,0.16319505105866,0.17205068111823,0.170977001123779,0.183266193517969,0.203514460367517,0.206110522837055,0.170592035284966,0.10994142618753,0.00832464607868857,-0.0867869447290768,-0.164542618957686,-0.205074143104371,-0.225977612524202,-0.23574200793698,-0.234072838490318,-0.234468774165582,-0.237177899229756,-0.237328847058814,-0.235425832079643,-0.234697600702331,-0.228740454760867,-0.208180848344156,-0.170980845657282,-0.10595032062751,-0.034421250698692,0.0415894534978875,0.111957027757578,0.165847375322784,0.227658559791343,0.259870655264251,0.256635818161736,0.228520498002495,0.212125572747968,0.168165375264574,0.104626672786081,0.00967652984242919,-0.087797131344191,-0.148452232072969,-0.191665173864768,-0.222002504892854,-0.230291562899761,-0.235108602290332,-0.234689497432456,-0.23693937318824,-0.237336523698666,-0.234726238503812,-0.235404825373876,-0.232983767363517,-0.232408929415968,-0.220720088649353,-0.205649795780559,-0.171360526908183,-0.125140694469992,-0.0608351984880436,-0.000739125366830052,0.0729280987790168,0.136308258993521,0.163866315529128,0.160233382961423,0.129598769151533,0.093903510001977,0.0323497058867263,-0.0338133821454916,-0.102883736100612,-0.153833339105459,-0.181720200065038,-0.205837242268249,-0.224979264000516,-0.233434821243476,-0.236691496824016,-0.235918929368053,-0.236503180185693,-0.23348590884891,-0.234777033132297,-0.234511389437637,-0.235555917465912,-0.235549519028558,-0.233042808542358,-0.227343205254456,-0.224990498179108,-0.21416195151389,-0.19414851234313,-0.176639478726575,-0.137988772032733,-0.096782173989009,-0.0717314203341759,-0.0758002499803451,-0.0823742699449493,-0.0938117305185344,-0.113569002477204,-0.12534585303324,-0.161736445942404,-0.186209560557193,-0.20695647481885,-0.222429522795271,-0.229639293679066,-0.235827658194233,-0.236822729066931,-0.237057749188615,-0.23712386418878,-0.23450328348327,-0.235811262086531,-0.237254216280682,-0.235059041084979,-0.235536273408481,-0.23346031263828,-0.23481340765053,-0.232941261386794,-0.22497748884858,-0.222594378306482,-0.219912228858467,-0.202274576594372,-0.187972155116886,-0.17405192970214,-0.172781803957091,-0.182057320283916,-0.193343604748937,-0.191559551057145,-0.19712439605903,-0.212865155837088,-0.22175211525549,-0.227785735470358,-0.230119619580461,-0.233672330645123,-0.235672530947679,-0.23639521069433,-0.236818754915352,-0.235115264619535,-0.233321324156684,-0.236411052416615,-0.235683865893871,-0.23591103935811,-0.233754576478925,-0.235190378563596,-0.233484802553115,-0.233341806907311,-0.235838963653287,-0.236335474573757,-0.234549192311134,-0.231218050683943,-0.23390599526677,-0.232316039929536,-0.231546950369128,-0.233510168253693,-0.23501804133663,-0.23557659934272,-0.232390587179073,-0.234775751576106,-0.236558773551946,-0.234375917222363,-0.236136723863584,-0.235274680462193,-0.237396620349461,-0.23696317118091,-0.236280709826353,-0.233111778858032,-0.23407238363096,0.210923145573165,-0.152159213010764,-0.14896959742338,-0.150740485323636,-0.150898877114472,-0.150709741566272,-0.149639185994446,-0.151975689772117,-0.153194617131595,-0.151636844450674,-0.150519270973709,-0.149821724863688,-0.150974098834809,-0.149028226313408,-0.149300054814133,-0.149799827280303,-0.152317755338212,-0.150063853816423,-0.152814462707251,-0.153095973542835,-0.151147592563485,-0.150105020971842,-0.1510048302923,-0.151743887166136,-0.150145577127293,-0.149390244510073,-0.153163069822004,-0.152875448434302,-0.149081735017372,-0.151145513501323,-0.152039548668498,-0.151716842837152,-0.152168812217579,-0.149157052427959,-0.151006708319035,-0.151175084329646,-0.151320192260101,-0.151650643686985,-0.151266928934606,-0.147055761263494,-0.150649838693714,-0.15058686949756,-0.147819210869502,-0.143094805286473,-0.1462189890962,-0.145738124963673,-0.145067527052746,-0.146922587412108,-0.145807406653539,-0.149314247683545,-0.150189589763341,-0.149248585564239,-0.153319895475539,-0.152261882103117,-0.149824213696983,-0.151601104113969,-0.151439606845055,-0.150627160290951,-0.153110391459216,-0.150170856165341,-0.15045378671956,-0.150065222824317,-0.152974037129729,-0.151065195107467,-0.148727623552519,-0.149785353144974,-0.138357858888779,-0.125742596016993,-0.124418286444937,-0.107554012026701,-0.0817852596771787,-0.0567054447048203,-0.0488778906009432,-0.0498856065954679,-0.0476187019211311,-0.0596652588221846,-0.0820279615405594,-0.0946607738972411,-0.120103530196861,-0.135849908261392,-0.144263648528176,-0.150010741117357,-0.151678496422323,-0.151442769771231,-0.152612587421168,-0.152419311439227,-0.152414001074257,-0.152921484377339,-0.150208506286312,-0.151947863450796,-0.152115960341668,-0.153016467720376,-0.153362638717205,-0.146593068409617,-0.130386640792025,-0.121356634106627,-0.110430735367856,-0.0875899281340405,-0.0428885402772576,0.00842493956801639,0.0342302408451787,0.0442223116054457,0.0532968818604684,0.0401455798831315,0.00658782828663081,-0.0355975119922291,-0.0901397647288296,-0.113903168210951,-0.136655610883236,-0.146109198667983,-0.149279329306568,-0.149874114744024,-0.150176067149894,-0.152886378936673,-0.150966889977951,-0.152653387784023,-0.150810431048006,-0.150413325063465,-0.154298190292458,-0.15695326912762,-0.156186349961594,-0.161684037136303,-0.155693865029561,-0.130808578067585,-0.121012471652657,-0.0674135124194327,0.0136285774728312,0.0777920636952496,0.100859145363356,0.10871322187554,0.0915794343211064,0.0712857972237963,0.0248205761097454,-0.0382796366276242,-0.0862094165616676,-0.117119627020706,-0.132247653486598,-0.149746126971974,-0.1539964142864,-0.152417622704069,-0.150393400419938,-0.150765590423835,-0.151629583308042,-0.148803044056498,-0.150092774173422,-0.15440583635325,-0.153653912520885,-0.160425885624729,-0.173908479610678,-0.188715066308685,-0.193643614253311,-0.18046395890598,-0.161173670551885,-0.0830379340305472,0.0149061990223159,0.0784341109083433,0.102406098602092,0.0833693974699137,0.0321063231392623,-0.0229101405531963,-0.0666972600341516,-0.102248426900533,-0.126791456567843,-0.12351096561539,-0.131778733572101,-0.141284499401707,-0.15020131739948,-0.148819517968888,-0.152214268758499,-0.152580293330525,-0.149882506308541,-0.148800709991155,-0.153716412277224,-0.158218375791392,-0.162017207436602,-0.175405778484559,-0.194845738191046,-0.223900634305043,-0.231379125974888,-0.220109684983886,-0.16507853507353,-0.0895502077367013,0.0219524225854062,0.0864876208671575,0.101937592264932,0.0564104487596263,-0.0290479796580453,-0.110223647657175,-0.166736954355522,-0.170793322673912,-0.163245546602695,-0.141710110128683,-0.127005905031939,-0.131341102531873,-0.145853856052459,-0.150928344996953,-0.149024331118986,-0.151467331201845,-0.152812533212987,-0.149223177313067,-0.153274755376311,-0.165343528577512,-0.177574037465944,-0.19390677228018,-0.22624515598928,-0.245854857019868,-0.236780510553615,-0.223116926913217,-0.172127488816529,-0.0691077503773166,0.045031667050794,0.124468785984226,0.125084107103225,0.0483699024299411,-0.0661131339194946,-0.174232844039889,-0.238671149311145,-0.227992184508669,-0.206917053932746,-0.167869445341943,-0.125819030590684,-0.127421170645694,-0.141488777613523,-0.151086988328189,-0.151543804480219,-0.150424387032912,-0.153039858258882,-0.15150919616794,-0.15698009214385,-0.167190425771443,-0.188066988617687,-0.206851318655164,-0.234240869543139,-0.247528365629146,-0.243030170430734,-0.211646533397373,-0.135884046579318,-0.0238008122855202,0.101338369345675,0.180594983264217,0.16148006179583,0.0495115286641026,-0.0914320435539018,-0.205936001089568,-0.276826340419043,-0.276809221749052,-0.261425805161814,-0.20941667312801,-0.157711663806206,-0.144566530491536,-0.141469084937407,-0.151662504802272,-0.149173244974927,-0.151124086758411,-0.151342051497694,-0.154479778675151,-0.15967366155881,-0.173490492982411,-0.192312377657588,-0.206238859600812,-0.222316336621256,-0.243752379665973,-0.222656784056807,-0.17662846327893,-0.0760882238948851,0.0498863436583357,0.170389356817075,0.221340367093587,0.17182415235909,0.0317712406240683,-0.131456984356657,-0.24890129511823,-0.303658458174735,-0.325465825366303,-0.29195393707399,-0.241422805745528,-0.194117604402704,-0.162714824301481,-0.147313961646514,-0.152060109105769,-0.153156979801142,-0.150965300676215,-0.150511011729807,-0.154044116306236,-0.158231837472924,-0.165883423467495,-0.182091400716922,-0.19089818536757,-0.209423404914158,-0.21989692557872,-0.18690410591571,-0.100650177132269,-0.00280160682159177,0.101840683998399,0.197906368188272,0.222712274898317,0.157335494637678,-9.45295785719286E-05,-0.183446575970076,-0.278742885307388,-0.318671207293961,-0.332811694470701,-0.30106856828585,-0.253496474986197,-0.212901566517476,-0.178180697384811,-0.157572450521933,-0.153615198783964,-0.15041978047527,-0.150310047631109,-0.153071216967445,-0.149608421214919,-0.154494858684563,-0.161033098922085,-0.174988801468959,-0.189714429588492,-0.20209100433202,-0.189555993409393,-0.124130299460088,-0.0258286765379033,0.0415214311736542,0.105666916704504,0.182016207171493,0.195981656388526,0.129044324139709,-0.0185265031726895,-0.1869337389341,-0.249957132987055,-0.26908591606503,-0.28092204397705,-0.261619245669615,-0.2176825794948,-0.19600776186164,-0.177076991451888,-0.156900956134508,-0.15283459508906,-0.152936221149891,-0.149673396139201,-0.149122532578374,-0.153244538079829,-0.153851056337017,-0.153036267984801,-0.16314132736752,-0.184908203407315,-0.1914336454718,-0.152070266965424,-0.0602971574597307,0.0219919926180287,0.0605853474313789,0.0714138999733222,0.141835283301453,0.164423157887237,0.111606990512766,-0.0199377597917141,-0.137974141938276,-0.167335936539687,-0.167568222864921,-0.163499685492978,-0.156731996070071,-0.151570632257233,-0.167832782327865,-0.163827471596469,-0.155936407459871,-0.154964594885395,-0.149586613742233,-0.153134238894377,-0.15226230679277,-0.152970123268771,-0.151823404491095,-0.153733017404335,-0.16581869758138,-0.181360662507368,-0.181429179092322,-0.115025829470169,-0.00788500590469871,0.0599885438213194,0.0438974080344843,0.0220753347899224,0.116363197371877,0.151218903631662,0.126540741630977,0.0214545377291437,-0.0646730047192039,-0.0744037640745275,-0.057150641909513,-0.0601971919648771,-0.0756198451486268,-0.103426764046695,-0.139815990135244,-0.147447129728791,-0.15299894174012,-0.15466896071345,-0.150272100677504,-0.15168334873677,-0.150819500856412,-0.152616657426333,-0.14955004407804,-0.154784993755327,-0.174399162396975,-0.180660940416013,-0.151988845677226,-0.0712678258440353,0.0321988066995327,0.0640793924191358,0.0148280282169569,0.01087614025968,0.134810478806974,0.184750702590733,0.174105629302104,0.0671920374125859,0.00463323270023506,0.00443575461199079,0.0224454544747333,0.00674075775979342,-0.0374395431536075,-0.0716314820903551,-0.117885534923026,-0.13689751977409,-0.148634982793068,-0.151265071408528,-0.151182612322627,-0.14922787827652,-0.151865307777099,-0.15176433734551,-0.151015871585453,-0.160393137579857,-0.173144508931952,-0.177589651118829,-0.118238872172829,-0.0273720888233541,0.051720207682763,0.0492269919142755,-0.00635608610046499,0.0365802318052029,0.178143435370477,0.22884985092389,0.204901140535104,0.084610681674868,0.0196059191110909,0.0294404839057964,0.0420180345669527,0.0277942728764355,-0.0128032528626417,-0.0607595140895034,-0.113604003800449,-0.143492094129724,-0.150038302454161,-0.153715395566899,-0.148988057816493,-0.151956401915906,-0.150836927645714,-0.150074181812827,-0.154205430040062,-0.159839376810409,-0.178689857005807,-0.170299388491351,-0.0923895963435569,0.00740555693309835,0.060279277850828,0.0466133870834077,0.00556289675204839,0.0846306476257209,0.227672561330211,0.262500014797654,0.200548044399852,0.0486510420906741,-0.00752501436212062,0.0314661931619591,0.0580848637518173,0.0431936430037889,-0.0165992636508974,-0.0716234621561038,-0.124874741764529,-0.148397402707534,-0.151319421428594,-0.15259646059594,-0.152158836065352,-0.149299777334526,-0.151895758738654,-0.151461889820977,-0.156534931057929,-0.165829369663397,-0.174676717956023,-0.157032031672879,-0.0777426984228734,0.0147192279109563,0.0523312999121726,0.0504108960522326,0.0514964312577166,0.146460451900377,0.253541448482059,0.266296592275738,0.166670664030243,0.0359736139194548,0.00871874244209916,0.0506398748037336,0.0646589414217185,0.0336265554039032,-0.0308548040360974,-0.0959557820083643,-0.144037150025685,-0.154771915285426,-0.156032251208119,-0.153412517856784,-0.150849559183637,-0.150661337418398,-0.152913144550507,-0.151329470397686,-0.160632693846461,-0.168638004427714,-0.179080006330907,-0.147255752144562,-0.0888435416332179,-0.00775076985331119,0.0330364437637249,0.0669172644747131,0.113269927593173,0.204272310226398,0.283629279848709,0.261998699796917,0.159177634787497,0.0746324641791946,0.0560453214709537,0.077314088562506,0.0537229353621995,-0.00338757383048381,-0.0719649885390811,-0.120468775323938,-0.148615620489885,-0.156092253947162,-0.156076133525463,-0.154130216151765,-0.149987161483208,-0.151307853152037,-0.150879928441022,-0.155792445974897,-0.160928846218865,-0.170161170422616,-0.180363989643664,-0.156343163416037,-0.120449999591873,-0.0603416420591547,0.00908285449415008,0.0924059646322283,0.17402754517842,0.266681991061115,0.313196064781298,0.278471714078116,0.197341576046561,0.114198723835806,0.0785714481942788,0.0578169021172217,-0.00270975995925134,-0.0708833529951752,-0.120322032197151,-0.159807011933294,-0.167048825897904,-0.162143228110701,-0.153632053328066,-0.153108029312186,-0.151749916640532,-0.151419220806527,-0.151111332878148,-0.153851213405094,-0.160171003327162,-0.169816373729988,-0.188429878336662,-0.180925427652318,-0.162450649313821,-0.11245405493557,-0.0268772204937615,0.0814779705088039,0.200587632053175,0.276407332598602,0.318122478799817,0.284782248945335,0.199258614019805,0.113650333796318,0.0267499480029182,-0.0304894847628326,-0.107680871418215,-0.155673205404183,-0.173277068837804,-0.176756344554256,-0.169089377106284,-0.158307682692574,-0.153214878041643,-0.149450970204898,-0.149775709695182,-0.151914781672912,-0.150223730777276,-0.152690210244284,-0.156757913649988,-0.169875590089381,-0.187701389181714,-0.210153475439914,-0.222803972599972,-0.185730137704766,-0.1078223286039,0.000770938502220576,0.128178517257477,0.213790884311321,0.247846939840644,0.210719998570047,0.127534071454084,0.0137041308976131,-0.0896478532413924,-0.163910783031734,-0.199473198603208,-0.200052043262961,-0.187577079145463,-0.17222490422604,-0.162658925131946,-0.15497861064999,-0.152936279129144,-0.151884074550998,-0.150396054920869,-0.149927719489264,-0.149256962397535,-0.154325353892738,-0.15821719243001,-0.162142860978125,-0.182329696904806,-0.215469264753883,-0.2397161611065,-0.244187524402103,-0.21481939110133,-0.152009003263796,-0.0662405342986996,0.00676470068903232,0.0453755905058999,0.034760286289029,-0.0280480710646062,-0.123615623958365,-0.197891407072779,-0.225111735089378,-0.209681475731258,-0.189584709831741,-0.171006493462446,-0.162279672435883,-0.154650093185471,-0.15276406059037,-0.149066428439567,-0.151960871573651,-0.151395112606047,-0.152169159798022,-0.151468841118172,-0.149582889729307,-0.15320172266304,-0.164713012599574,-0.171267047881269,-0.196855586767431,-0.227777825172098,-0.237161663612187,-0.238736298640712,-0.215101805507978,-0.19150684998824,-0.146333850057016,-0.109393955362486,-0.0895403826215413,-0.121163144567504,-0.176396848210144,-0.214461661379801,-0.215720056945446,-0.190255058821509,-0.17011966569167,-0.159983641955833,-0.151940879239914,-0.154186489701634,-0.15325525265566,-0.150284157996113,-0.149164061943358,-0.151882737148929,-0.151129099527372,-0.152936226193103,-0.153656751321005,-0.152859592949683,-0.155352326868268,-0.15901542005998,-0.169294308538346,-0.189820693521461,-0.212133437841575,-0.221195831576357,-0.232114409187051,-0.231246403015431,-0.225244899249283,-0.210033023440846,-0.197121477262441,-0.201757257510466,-0.20063845882419,-0.194988936280121,-0.179748253956254,-0.16749588614515,-0.160962527952833,-0.157243853687723,-0.153525650977824,-0.149255818330066,-0.149196714473099,-0.148590240020294,-0.14927893177179,-0.150424950602859,-0.150876199407875,-0.152150910239921,-0.153171941009113,-0.151804088835191,-0.152485530376205,-0.152667732835434,-0.152846305484986,-0.159761673954838,-0.168296971722898,-0.173408568400407,-0.180877451587458,-0.18974695249074,-0.200004303658516,-0.200226611929916,-0.201882791399867,-0.19323486139585,-0.190483282935166,-0.178113825692783,-0.168455162408063,-0.164265977166594,-0.159835246378755,-0.152178239844775,-0.15118008681777,-0.152958655384419,-0.153334809730884,-0.149256090470622,-0.149500048787617,-0.15252718798028,-0.1500675981523,-0.15032327004948,-0.151748339974044,-0.153007787007034,-0.152179338004722,-0.149567466320441,-0.151662740591285,-0.155802155370185,-0.159323636621059,-0.161302084756088,-0.164301516375513,-0.170527736333097,-0.174089596516604,-0.177549336069871,-0.176232889018416,-0.170708255227323,-0.171708756275986,-0.163205027499185,-0.158483279849986,-0.155051692790575,-0.153431474349843,-0.152536859346339,-0.151569566917723,-0.149115742233266,-0.152817544776889,-0.148988663808847,-0.152126560468754,-0.149120991998288,-0.152496736557839,-0.152844967160289,-0.150967820259191,-0.148954695641376,-0.152533872507947,-0.152151395471934,-0.14967400452367,-0.152081279624199,-0.149598406616962,-0.150102527234465,-0.155345297293778,-0.152097545004,-0.150423700578987,-0.154270741331964,-0.153980204560596,-0.152748564829209,-0.152371570963453,-0.152617967668707,-0.151067703627263,-0.153395013523355,-0.149252434796755,-0.151032449720623,-0.149051972097674,-0.152811653205913,-0.15163714165884,-0.153034509380994,-0.150206718199387,-0.149226600751912,0.19888133151056,-0.0862485213503846,-0.0866839774649168,-0.0897433546982114,-0.0896395825893911,-0.0865879444427992,-0.085567187670679,-0.0894231102075383,-0.0897348720165303,-0.0883703924886088,-0.0856277069480112,-0.0873446056756508,-0.0867896255295752,-0.0868778423901792,-0.0873175372469004,-0.0883809322653075,-0.0876012122448254,-0.0876132948726215,-0.0893971775067839,-0.0886226212671623,-0.0887567309885972,-0.0865851489408473,-0.0893485270898688,-0.0889541793720141,-0.0879079134155553,-0.0896418885644462,-0.08977738852947,-0.0884368080002928,-0.0870618313892743,-0.0876982830866792,-0.0862942116223588,-0.0886923551004744,-0.0879789125133665,-0.0855214642232042,-0.0896365182710328,-0.0856101072791188,-0.0865914599706306,-0.0856739664385455,-0.0895033568290498,-0.0868601655893817,-0.0855860522849205,-0.0889167321605521,-0.0893244225278213,-0.0884403607415875,-0.0862987371095138,-0.0898476118230441,-0.089663750691324,-0.0910898086092954,-0.0906069011647073,-0.0891147480122203,-0.0868585211507953,-0.0909605429351128,-0.0889826364752124,-0.0885858604031729,-0.0877608778532845,-0.0888938687676341,-0.0883458724265522,-0.08806141455142,-0.0861134688194523,-0.0896653732264137,-0.0880805698537712,-0.0876723821077853,-0.0859792243468827,-0.0880447098112383,-0.0867357600343095,-0.085993068760456,-0.0815199995049502,-0.0826838349347179,-0.0829318009702494,-0.0911639911032191,-0.0882086630049552,-0.0935536253335986,-0.096568633418033,-0.100243340428123,-0.0981987004995615,-0.10107282299868,-0.0963707197851484,-0.0918490401933496,-0.0916729618106285,-0.0940272910642885,-0.0909728145293602,-0.0873300652469672,-0.0884718883351502,-0.0864225128514806,-0.0874523942637688,-0.0865374828460132,-0.0892589801250152,-0.0893106074001304,-0.0899370409683024,-0.0883766391292614,-0.0858338524817615,-0.0847748824336533,-0.0865875601889443,-0.0830191905475327,-0.079947709805441,-0.0822848158569942,-0.0898677287502852,-0.0965550098208303,-0.0986867167091298,-0.102573249813888,-0.104743546777298,-0.109252651032398,-0.11449088231074,-0.112885648048495,-0.102150766824363,-0.104776514099393,-0.0995160839613233,-0.0946955688978298,-0.0863780870549871,-0.0852944400579559,-0.0862372656900428,-0.0854327144665146,-0.0894953151948793,-0.0890292859204441,-0.085960482940838,-0.0873386208999125,-0.0896405050410045,-0.0882930853564345,-0.0867954196313217,-0.0921921741686543,-0.0926430366602275,-0.0911905499463681,-0.0872855766801995,-0.0815330494324773,-0.0790037850128562,-0.0726011091141405,-0.0692822412149478,-0.063022398191495,-0.0489780277928494,-0.0419703279136711,-0.047544679048753,-0.0566659200487573,-0.0629637495462449,-0.047637973914459,-0.0675139752268382,-0.0671681649493331,-0.0722524087854457,-0.0828950395798437,-0.0855560894433434,-0.0876878124774929,-0.0895066190399389,-0.088025517114605,-0.0857304330028884,-0.08728403671794,-0.0878311509109581,-0.0866734302323683,-0.0897056951582829,-0.0928757552876394,-0.096647935596018,-0.0836057340670478,-0.0689305858513246,-0.0503960111241097,-0.0188921977534995,-0.000661594270433622,0.0165376288382763,0.0352920083753217,0.0414891756048016,0.0601494215431056,0.062786713898264,0.0475540150770938,0.0311516793438912,0.018222775579485,-0.0125177538427502,-0.0383052992354197,-0.0578504735700463,-0.0695800199779491,-0.0775751467370377,-0.0818591427202648,-0.0891726674669073,-0.0874679606555296,-0.0860293289488681,-0.0867147049567494,-0.0876509908265219,-0.089191185776206,-0.0922865638156208,-0.0934796805803098,-0.08010899939494,-0.0616301861491894,-0.0280848863800164,0.0116834780312483,0.0374379808847778,0.0589467366307143,0.0557455094532327,0.0611979831778801,0.0650760186833005,0.075844677955095,0.0803401520551955,0.0657206901143491,0.0622064642301863,0.0525350615350458,0.0165690484956746,-0.0248041663768043,-0.0582520999991028,-0.0643930021617069,-0.0801368754610004,-0.0830138504837113,-0.0866453198861394,-0.088165478172154,-0.0890851897682498,-0.0876841070136564,-0.0862297156215885,-0.0921236052180639,-0.0941147999496966,-0.0892170983907576,-0.0735993346170405,-0.0388329843088884,0.00476515265727878,0.0337170327738428,0.0609282913178926,0.0613059710813856,0.0371390065888682,0.0236298584524086,0.0248304851477636,0.034741377654412,0.0377258411238567,0.0300486612848461,0.0321250597054662,0.0478852030583901,0.021108346756108,-0.0226061917847075,-0.0568040644920798,-0.0719536283454292,-0.086651219039298,-0.0856058399859974,-0.0899199304144745,-0.0891609581592137,-0.087696998174503,-0.0857279872607878,-0.0878786210921464,-0.0870587225731004,-0.088651236134263,-0.0761877336321409,-0.05271141988559,-0.0123308325828823,0.0250399142413675,0.0566881517823885,0.0488638649815936,0.0090395595917025,-0.0249487178797056,-0.0629432586443063,-0.0621615923085648,-0.0367988478796322,-0.0292150571829708,-0.0076159048723818,0.0169692548981512,0.0472176174921333,0.0421480780213573,-0.0152853936513272,-0.0471167436100583,-0.0697446228831953,-0.0858530100086327,-0.0848589778543767,-0.0894382764280432,-0.0873992381564891,-0.0860354318207244,-0.0864915365649057,-0.0869046361853446,-0.0933139354935959,-0.0854727908616012,-0.0692322509407231,-0.0367580121658597,-0.000552881536166286,0.0410406699147718,0.0464479584435556,0.0130888152026352,-0.0369195804021123,-0.077923122723657,-0.12432204559819,-0.113337973676749,-0.0742369062197573,-0.0457099582929006,-0.0031987891936936,0.0404840500572233,0.0716605380300248,0.0632732068343295,0.000379011752391223,-0.0412482533304548,-0.0727099301681418,-0.0827733266103942,-0.0870482511086241,-0.0889693272519868,-0.0869329428525622,-0.0892071871095377,-0.092099763954389,-0.0919998516021144,-0.0843106280295366,-0.0762741243348366,-0.0585525537137961,-0.0169170981591303,0.0224586033279208,0.042422250492034,0.0400652544693761,0.000348951140364644,-0.0455318070437915,-0.111118567197983,-0.131872415319948,-0.0985561137607621,-0.068094279772221,-0.0367495122201141,0.0208584307753469,0.0720315844197828,0.0945566884861383,0.0730539841298695,0.0172696709076767,-0.0366934174538954,-0.0755395283474649,-0.0770375910872321,-0.0871106585570013,-0.0859956834391906,-0.0883564417945465,-0.0868411512022938,-0.0910012185472911,-0.0916783923507918,-0.0845561685469582,-0.0684472805305811,-0.0315839493265053,-0.00456074234784977,0.0385163956201768,0.0361188796851853,0.035563318058229,0.00516673711693703,-0.0366551440166951,-0.0843642245985243,-0.0686651376475478,-0.0426059151982553,-0.0190133527257297,0.00992423206361367,0.0439228462866897,0.0821806695788231,0.0911546369988401,0.0586575884150423,-0.00566908498432312,-0.041282377837573,-0.0673104295603914,-0.0768899447521723,-0.0825253914532289,-0.089583422491164,-0.088881150486513,-0.0908127891154179,-0.0886050016809751,-0.09261568038419,-0.0851268250469069,-0.0469978122928728,-0.0104773254028155,0.0176273141070886,0.0304651014025885,0.0289482830505313,0.0295205926649827,0.0236046896516865,0.00136110916226051,-0.0116438440132236,0.00554242248016366,0.0240854520418832,0.0343152425293948,0.0268797598348834,0.0433789825420749,0.0721322658545982,0.0622571716461909,0.0125132861491131,-0.0262844902236772,-0.0493454224281128,-0.0656306939266043,-0.0816166805806641,-0.0851821995590211,-0.0874965647998876,-0.0865675196189337,-0.0868596650320186,-0.0896706871170397,-0.0879100995012947,-0.0745150572305596,-0.0378704859207029,0.00839762831228828,0.0215926862142799,0.0155613993639044,0.00807569501153295,0.00704253602948261,0.0137312505387569,0.0233644695734852,0.0297993504072555,0.0559571092196347,0.0541541913441039,0.0381726750567162,0.0185972912352327,0.0379165272531629,0.0301665903470125,0.0155801496432181,-0.0230561861455382,-0.0326444452405444,-0.0476759036552733,-0.0630418002848289,-0.0844390807150927,-0.0850647591366321,-0.0895730113277399,-0.0882068568590565,-0.0888298424707543,-0.0901131520452884,-0.0853443441215074,-0.0734356358599197,-0.0184695614314028,0.0122664850370407,0.0174630102484934,0.00141400011683577,-0.0020785883570387,-0.00603391696777882,0.0147515678634754,0.0346891774875508,0.0544673865866392,0.0573559439493359,0.0376039033925698,0.00668177684954901,-0.011214630203205,-0.00670625671546443,-0.00360838134482783,-0.00722036905422127,-0.0259308536600452,-0.0397632889947024,-0.0496705649587613,-0.0621029194616997,-0.0881938328217144,-0.0887388121982643,-0.0862696557563333,-0.0856695476112772,-0.0897273459472395,-0.0901347644369975,-0.0853704950275894,-0.0714198626729449,-0.0137251902581332,0.0131234350866357,0.00486829568917372,-0.0048147576821422,0.000467984361215829,0.0100642524508555,0.0346994211042007,0.0505776632702752,0.0603826415654907,0.050807837965569,0.0137460815122844,-0.0211687558518895,-0.0405943745522058,-0.040033016656841,-0.0143557049949305,-0.00890148230842145,-0.0203240180290864,-0.0396531536882844,-0.0553658010909523,-0.0687272466035626,-0.0862582182414735,-0.0872952173760181,-0.0870727405051559,-0.0892835632079719,-0.0869351908723387,-0.0877630620851015,-0.0870534323917228,-0.0731282036033469,-0.0181823176467599,-0.0009766623424407,-0.0069382700356177,-0.00316334402579727,0.0101230531056593,0.0347349331414242,0.0568037611298418,0.0559486926971398,0.0469750352327956,0.0298628995572982,-0.0146783498449828,-0.0472907818771273,-0.0635436861582292,-0.0496764077310943,-0.0262027494021175,-0.0239203450682052,-0.0273956771406328,-0.0427786428738362,-0.0666344468988151,-0.0788048740962595,-0.0847807979472973,-0.0874220881365318,-0.0888526077222978,-0.0875071570784003,-0.0877173752909731,-0.0863841959496207,-0.0877517604320242,-0.0760171657510269,-0.0294860534832709,-0.0201930015414893,-0.0209263320135808,0.00336405037662969,0.0192817453747733,0.0489021087980528,0.0601141538226055,0.0390701944175632,0.00116394262606384,-0.0258090822816131,-0.0387015050439826,-0.0607218866447305,-0.0645030152158992,-0.0558328245166372,-0.0358645959704493,-0.027688664651488,-0.0312630510945755,-0.0454171439354245,-0.065108195747602,-0.0824620806828889,-0.0894480323720722,-0.088319251977572,-0.087781525722351,-0.0872495383653189,-0.0887017367077739,-0.0863612366469711,-0.0893346039885038,-0.0735999327080388,-0.0441895442988545,-0.032433690719433,-0.0180999050671957,0.0164845763363932,0.0333645838532887,0.0474103289292631,0.0317139130540304,-0.00323976220986788,-0.0562051506319065,-0.0765277514155534,-0.0587066691835205,-0.0441821348892862,-0.0515294568146934,-0.0379194546457119,-0.0235337263835974,-0.0302640937281533,-0.0271576376785048,-0.0486917297848432,-0.0691494267194235,-0.0844455644103973,-0.0875908444799736,-0.0908192460073218,-0.0899079648932572,-0.0879515895875408,-0.0866463146345277,-0.0860810211865889,-0.0830031908383452,-0.0680213437472338,-0.040201798252014,-0.0180558773827615,0.00507046314772361,0.0387812568284218,0.044836515640005,0.0444769744670077,0.00809881498986392,-0.0449938727415388,-0.109049651863101,-0.106461544003549,-0.0605317867846695,-0.0190901496513592,-0.0151384662891296,-0.00865632867140395,-0.0114696399262084,-0.0177708456127498,-0.0197692151847133,-0.0490349231924253,-0.0796300563617066,-0.0888757814962941,-0.0896524597547925,-0.0877503102756749,-0.0880293436289782,-0.0866948607543363,-0.0890941710251168,-0.0867468901738877,-0.0870074410054195,-0.0767086465112257,-0.0524042963005749,-0.0113870728029949,0.0339437847585683,0.057452658540542,0.0558325471237134,0.0406679095726249,-0.00533351729213363,-0.0720649222165085,-0.1134707823653,-0.0881452209689188,-0.0320119003983866,0.00689772209968952,0.0255002001221484,0.0168522692840906,0.0130106032862047,-0.00185500839156568,-0.0223052290947728,-0.0565180342681932,-0.082545533286987,-0.0889761522468019,-0.0912335734793414,-0.086450525339818,-0.0899283377224746,-0.0885393766257849,-0.0896779556709489,-0.0874117932562863,-0.0882145830296575,-0.0803721889732895,-0.0626995292811547,-0.00643812365846263,0.0455380843909259,0.0586400398142534,0.0734207188804226,0.0653575029255911,0.0146759843008769,-0.0192227468624858,-0.0439223767301266,-0.0201429188245272,0.0211410653216415,0.0380419396065154,0.0556924164838368,0.0344993358065056,0.0224969626592035,0.00353965474559795,-0.0295269995418705,-0.0677091374667093,-0.0867209614513236,-0.0883351088201839,-0.0905001655886194,-0.0890445305919187,-0.0887368405322556,-0.08947121779106,-0.0857829390710835,-0.0908127857841759,-0.08988237395857,-0.0898364603244688,-0.0644535294656044,-0.0200891283537382,0.0273580370641085,0.0590418724535517,0.0635506783745304,0.0655018611735477,0.0480787167737325,0.0309142667394489,0.0229459814109712,0.0431265401270533,0.0548584982759821,0.0578154770914394,0.0515100249707269,0.0182097651602445,-0.0129033454543173,-0.0250485097301407,-0.0523411544234515,-0.0725113700296796,-0.0821318363955502,-0.0877407467600287,-0.0849800314029718,-0.0880797674555096,-0.0863878554693644,-0.0862123357729073,-0.0864425407277247,-0.0890785594624356,-0.090175472801922,-0.0923299488492305,-0.0809228973210699,-0.0534589933133594,-0.0130384721740413,0.0331899672969083,0.0563338515242906,0.0563653651323611,0.0570073468453547,0.0516297316941718,0.0559694015725682,0.0531442435165286,0.0426364206335494,0.0254981521206908,0.0115121624275567,-0.017623651848775,-0.049749263975986,-0.0571233686338844,-0.0696516448232046,-0.0769259598432436,-0.0843301652208271,-0.0887720425691349,-0.0861503113884344,-0.0890685979277197,-0.0891512863197797,-0.0875438477181016,-0.0898523123153348,-0.0868355029810995,-0.0875707101143502,-0.0935696130011083,-0.0905592609939294,-0.0783016904957353,-0.0632984615915015,-0.0395520123056307,-0.0293697198958783,-0.0412242600258097,-0.032763341903548,-0.0242921730787901,-0.0192692301294772,-0.0265198193243527,-0.0362240480442634,-0.0270704429492429,-0.0396253101186643,-0.054019910025859,-0.0653880487203644,-0.0684906472232326,-0.0717777109587261,-0.0813130736422452,-0.0859396274917047,-0.0885749412277225,-0.0865910064629054,-0.0877460702007964,-0.0887148738726804,-0.0892804629806938,-0.0866719111008111,-0.0873122606218271,-0.0874428687663849,-0.087512371250412,-0.088772319804506,-0.0883915986167349,-0.0923497014387211,-0.0920986472358233,-0.103511896211461,-0.129623187572386,-0.141655216802611,-0.124097207511111,-0.103472120723119,-0.10130818202281,-0.0916774962856429,-0.07780725049036,-0.0718249953469173,-0.069369967825577,-0.0759742022659891,-0.0744425642183753,-0.0833175329640333,-0.0865533809135782,-0.0859848066112132,-0.086925072328782,-0.0868523241393654,-0.0878510943597781,-0.0879893027287197,-0.0894637818836464,-0.0862148439458897,-0.0859857742962474,-0.0866647972572786,-0.0886748168624385,-0.0881995592558267,-0.0887981189771562,-0.0889568222101456,-0.0955302194213558,-0.0946070031600879,-0.104071491782369,-0.110943420795898,-0.107834201295384,-0.103468852585103,-0.104831718210315,-0.10302845781799,-0.103357902217363,-0.0962893460246745,-0.092539711970637,-0.085876783623905,-0.0850377721695971,-0.0885911430593964,-0.0898312064552223,-0.0868657949348222,-0.0869331728208772,-0.0878411946548177,-0.0856857483709909,-0.0880946647585906,-0.0869385771148579,-0.0887094590997351,-0.0877376261060049,-0.0875960990985768,-0.0868680689470136,-0.0858710487062368,-0.0871825195187194,-0.0865088105203963,-0.0887698476844054,-0.0875031807935704,-0.0888091968548902,-0.0879156075757058,-0.0894157347889846,-0.0914584389308614,-0.0897667959441387,-0.0904803675643935,-0.0931064613260672,-0.0898132378647926,-0.0868632740481134,-0.087415846346187,-0.0888038356304054,-0.0865408417205113,-0.0892509140989393,-0.0881109208639467,-0.0885235685759639,-0.0861725943770105,-0.0893553168046046,-0.0878704323238759,0.0876927601560512,-0.0514636039696774,-0.0542229988930878,-0.0519328872321408,-0.0526922588122406,-0.0511335443084044,-0.0537633223257944,-0.053819117198069,-0.0527418789541401,-0.0506182975287421,-0.0512182867297378,-0.0542874072232042,-0.0505774276946532,-0.0512129227930417,-0.051375503255217,-0.0541526822694772,-0.0549751370927136,-0.053812845840242,-0.0546295022447978,-0.0537066173596666,-0.0537793532362889,-0.0530914059730162,-0.0527046669741217,-0.0530458645288806,-0.0536120873015058,-0.0518032603265588,-0.0507771732140065,-0.0506713137954436,-0.051586835054781,-0.0510898473708681,-0.0518599454118707,-0.0519431196015321,-0.0518959972647568,-0.0509426776838179,-0.0531502940306965,-0.0531565076791188,-0.0508902117738104,-0.0517212212967932,-0.0560842927218592,-0.0553651749208613,-0.0535239423560543,-0.0505201479927246,-0.0514444387248998,-0.0528107912637222,-0.0572274597177512,-0.0518496275550696,-0.0521182951178352,-0.0501786295933139,-0.0523341027054606,-0.0539115492639676,-0.0539192703582579,-0.0521129713968657,-0.0532168017798835,-0.0516403668492971,-0.0540903123438397,-0.0521882944804278,-0.0526817356737015,-0.0528445184315364,-0.0511861416161036,-0.0526781590084591,-0.0514466776066633,-0.0521246789643258,-0.0536578655173792,-0.0532363746481857,-0.0562509954999484,-0.0565575962297132,-0.0617386943371607,-0.0671002314504737,-0.0675722953277251,-0.0671500335683571,-0.0617121027764593,-0.0631276876752227,-0.0571545122959188,-0.0547169253967328,-0.0531839731380701,-0.0501241344081099,-0.0502372466873384,-0.055224065228642,-0.0529501635677472,-0.0516640171378896,-0.0522874596416322,-0.0533382583646775,-0.0541304697119179,-0.0506078443449556,-0.0541344862100594,-0.0516353734807202,-0.0529237280480612,-0.0518072996741956,-0.0533236558703857,-0.0544506215103505,-0.0525619837820651,-0.0551588086009945,-0.053919949185613,-0.057684785764818,-0.0670074338262407,-0.0690974678925628,-0.0667845470765265,-0.065471832814514,-0.0674848877070655,-0.0658543930103438,-0.0702133839797391,-0.0604887383951402,-0.0501859156964526,-0.0548482524463081,-0.0581193594675391,-0.0555236696380379,-0.0560451779682794,-0.0591328341261389,-0.0584464871386956,-0.0553189963036829,-0.0531915318065606,-0.054068232045011,-0.0507549997363362,-0.0525762179325488,-0.0532571471515878,-0.0520397985860763,-0.0506074703534612,-0.0528665121383134,-0.0507098200747488,-0.0528869761414633,-0.0536569504426263,-0.0582044980070337,-0.0605053460017124,-0.0681430272149008,-0.0621770106370438,-0.0594447403869378,-0.0534326184597713,-0.0522397323850356,-0.0503664881463641,-0.0500308984687051,-0.0557384471343018,-0.0605933884582372,-0.0596736625642521,-0.0709533556459093,-0.0599903475120714,-0.0615621492684408,-0.0648045580306108,-0.0562127068212224,-0.0495536066718537,-0.0536745144849794,-0.052898368438442,-0.0516184091389181,-0.0543627632288069,-0.0538719145402702,-0.0526371388247822,-0.0538041045678073,-0.0508839613136215,-0.0422917017806353,-0.0461811306950271,-0.0518901860208125,-0.0576812733226365,-0.0587697568394666,-0.0589743523530678,-0.0553302713253866,-0.0542163061742681,-0.0544215682557088,-0.0530694898431198,-0.0677751384489972,-0.0738777084092707,-0.0779870999719866,-0.0679538037853371,-0.056191143140667,-0.0462443303972671,-0.0494985137353496,-0.0564912234927338,-0.0551770079322745,-0.0513063437355193,-0.0554673048826562,-0.0540703639912303,-0.0533913829703761,-0.0540608171490324,-0.0506251438282635,-0.0505444079372614,-0.0489732664307502,-0.0453453369515119,-0.0356892933901802,-0.0396421678562546,-0.0526107736070669,-0.038850023107102,-0.0373058931525293,-0.0274449213074103,-0.0323004281605657,-0.0112871541914777,5.39464663746138E-05,0.00424169306700772,-0.00530856203271856,-0.0264738894027382,-0.0430347583266528,-0.044660508742426,-0.0350898205990405,-0.0359364046067247,-0.0405834905683865,-0.0512745612204317,-0.0607305969513958,-0.052254193639502,-0.0539697582977763,-0.0528870954706045,-0.0543958497960309,-0.0508361424413787,-0.0510411029302257,-0.0517986198873509,-0.0432896108309676,-0.0335803360333097,-0.0249501513038661,-0.0226049499040984,-0.0241030480951748,-0.0229243027633196,-0.00078668146296388,0.0106727506071121,0.031925138190354,0.0497159844102534,0.0675195192841971,0.0705496913222664,0.0557628596818641,0.035350093527404,0.0157846508896867,0.00474411376689416,-0.0129441558653613,-0.0247162815417962,-0.0321752536619543,-0.0475402818076271,-0.0560213714581475,-0.0522284199936888,-0.0538113204529552,-0.0543485027709268,-0.0517569403198417,-0.0533596735798196,-0.0539512677917393,-0.0515397241074284,-0.0366513985886497,-0.0263318457521724,-0.0187631230372278,-0.0109339409183762,-0.00371389109777316,0.00132618955505162,0.0249260576027289,0.0546647703878881,0.0780282045310938,0.0825471215689993,0.0910061573071436,0.0866069089355476,0.0750068721618399,0.0586108680623013,0.0377076538826963,0.0230893746727008,0.00109349394958445,-0.0183646588463572,-0.0225847954431287,-0.0407710708349823,-0.0507465653758408,-0.0488038110677785,-0.0549371257713955,-0.0530322446536243,-0.050844177395361,-0.0538791310214267,-0.0534412954778129,-0.0490431128353136,-0.0306813622069844,-0.0201942194670577,-0.0154048892564428,-0.00870292713049134,0.00627944061263,0.0147151722574931,0.0574070634255059,0.0752464551047006,0.0789454021748684,0.0691356928887998,0.0665608350047031,0.0767044441609379,0.0636310805233058,0.0520358026200622,0.0351863943976434,0.0204235397399464,-0.000777523703216642,-0.0314703339917329,-0.032462000688526,-0.0365519622843014,-0.0421194063956058,-0.0458765577507762,-0.050764012109045,-0.0535483532942678,-0.0507008984112285,-0.0520848498960098,-0.0504855858529009,-0.0451879059491128,-0.0339198573991104,-0.0214222388159979,-0.0132708831610821,-0.00697254358390152,0.0109565440420973,0.0325812408670189,0.0577512397707263,0.0574766240605019,0.0486090161217891,0.0433347495118027,0.034261408304683,0.0458859679313962,0.050583686103924,0.0534275978724726,0.0405211324656883,0.0209078792645541,-0.00952268935761066,-0.0485389404330908,-0.05609790331562,-0.0504793140986851,-0.0359122158827107,-0.0391732809489,-0.0468945464083466,-0.0498323191046748,-0.0546215204629718,-0.0528001934018815,-0.052139160579939,-0.0399026874549272,-0.0393761732136778,-0.0366612717819037,-0.0198836360050651,-0.0139994937455113,0.00529257967680233,0.0415974906398506,0.0475435734763145,0.0512157545802794,0.0372705834706803,0.0246923502780853,0.00742813385539689,0.0158065836647162,0.0402103329815384,0.0545390925430575,0.0515385581355899,0.0140417131715045,-0.0237801081738722,-0.0611930478632996,-0.0582032153324173,-0.0568308031589632,-0.045756067972222,-0.0500041874454333,-0.0511607384350947,-0.0521358197083303,-0.0506801546164145,-0.052288976731434,-0.050777457477426,-0.0465334373314803,-0.0514714714951839,-0.0461412348183659,-0.0325940785989725,-0.0169897954961677,0.0159322262904587,0.036079887859374,0.0420829383530417,0.0308895937854473,0.030742723416285,0.0182941623793096,-0.016072303452895,0.00345098844078005,0.0368227588473312,0.0574307816997854,0.0448122370127878,0.0019204168933654,-0.0472779680767594,-0.0648569148919062,-0.0738823696027769,-0.0678158397842024,-0.0579096314261383,-0.0539218553092287,-0.0535867319593845,-0.0533247385273687,-0.0544697195519647,-0.0502102378083646,-0.0509730088185983,-0.0510464718858689,-0.0597313540118976,-0.0553606467334521,-0.0414729492085967,-0.0212330828513363,0.0157283216914964,0.0460568633350211,0.0473679818403682,0.0469808469139728,0.057074658413712,0.0416080301546745,0.00394682187125096,0.0272950494651211,0.0514385994788703,0.0677194718708194,0.0371887555031727,-0.0167662928564275,-0.0564074895066976,-0.0690136487801788,-0.0835577190968505,-0.0766812243463966,-0.0641262593101474,-0.0526405769703472,-0.0509839898311688,-0.0507823011801091,-0.0513540834476524,-0.0506814564209511,-0.0537242679370713,-0.0573342028181895,-0.0586089869358101,-0.057992489506225,-0.0565054501442012,-0.0366664920039828,0.00761929366354487,0.0325068452869118,0.0557851356256266,0.0671646844201189,0.063322370484794,0.0398255295761785,0.0311815814810163,0.0564974559688286,0.0797464927896903,0.0686350678005318,0.0389932070148223,-0.0173071950663046,-0.0622429914112023,-0.0786283507901054,-0.0837517209363128,-0.0746607857691964,-0.0675975657123906,-0.0550216738657878,-0.051212864360813,-0.051728374397438,-0.0535548603889367,-0.0527932152162909,-0.0523541845433272,-0.0532694658152044,-0.0555310324604977,-0.0667352867404997,-0.0784062365424164,-0.0614681465142352,-0.0298348212680977,0.00512952241078676,0.0261030488415469,0.0400141046464276,0.0490797344442098,0.0409975090808539,0.0405385623317756,0.0662456929335756,0.091158155299637,0.0779139880917471,0.0420504392863161,-0.0241857395766645,-0.0733167280934923,-0.0873170225287469,-0.0823001123323857,-0.0659937026723358,-0.0634583488918221,-0.0553403605488431,-0.0515959989787412,-0.0525816706616689,-0.0521116143878014,-0.053674593180032,-0.0499343719672968,-0.0502196694904455,-0.0602950215250569,-0.0747074911794086,-0.0872723826513124,-0.0898465906674625,-0.077962520471467,-0.0456619291829675,-0.0200716048503772,-0.00477704886509093,0.0100968893819981,0.0120232933277097,0.0181937310915969,0.0693907191225475,0.0978109283734049,0.0812720611588365,0.0251203177815562,-0.0397127314351545,-0.0860176462368374,-0.0850600906364444,-0.0751215054450142,-0.056529762938561,-0.0627405379063675,-0.0564290358822102,-0.054779449855099,-0.05390724214192,-0.0515522918405001,-0.0510060866451877,-0.0535356072890509,-0.0508554966038367,-0.063400135973152,-0.0862750972032141,-0.092321244713676,-0.0999167362842174,-0.111095842301408,-0.0721159328301687,-0.054126886948937,-0.0472805257391681,-0.0315293120276505,-0.00593308106969016,0.029436476477836,0.0717928731537403,0.0889587186468392,0.0645921992249362,0.00144031225672206,-0.0590564787372709,-0.0985745402211183,-0.0926482019787057,-0.0738402794248426,-0.0680671189315526,-0.0617909562320405,-0.0569129373394186,-0.0518203893481189,-0.0521962878450946,-0.0509947001339984,-0.0519131971024093,-0.0499008383494699,-0.0534432606520736,-0.0647159896359959,-0.0937695848356071,-0.102518394302313,-0.110823718762657,-0.110140617487003,-0.0889763189459671,-0.084135292955055,-0.0709175889741544,-0.0406838329941198,0.0144752203387542,0.0614405966688649,0.0846363766103767,0.0812816141824013,0.0381878503864048,-0.0249818640635739,-0.0722687252445665,-0.104807537127213,-0.0939338590604049,-0.076796320094392,-0.0738812373666831,-0.0708466347408256,-0.0622580130214552,-0.052190433653487,-0.0504672910070795,-0.0508232492921152,-0.0515782130780363,-0.0494155271607836,-0.0550379557289956,-0.0623640280702153,-0.0946818922872562,-0.118863654183955,-0.112791170854182,-0.112231324136859,-0.100864707823134,-0.0899207589333042,-0.072538716566982,-0.026560652337044,0.0408321045766866,0.0724537278733496,0.0779209263319403,0.0546279148669048,0.0172219393825416,-0.0484190957128262,-0.091893343201787,-0.10341294750734,-0.100505718908897,-0.0799538594900747,-0.0732980096633584,-0.0695888849491865,-0.059268529854828,-0.0543242391627503,-0.0537481344205301,-0.0514816029585152,-0.0539984484942361,-0.0511917926588071,-0.0538814598216803,-0.0576913669044866,-0.0783308629179228,-0.117269679547427,-0.125422150051085,-0.114737383787409,-0.114120553946025,-0.0907863495829805,-0.0528129111780679,-0.000107341203683244,0.0556854587529867,0.0758960661083499,0.0763583569212802,0.031708232961115,-0.00798066029645392,-0.0605676415124378,-0.0933337736148431,-0.100303550778879,-0.091357364095909,-0.0701163831530179,-0.0712366526351917,-0.0587046155479925,-0.0514426691151788,-0.0528118513074605,-0.0546290814618661,-0.0548073461375277,-0.0529841720925089,-0.050581294726402,-0.0541763711989454,-0.0579779171451866,-0.0689172504511667,-0.103773055869056,-0.117758419272016,-0.118725956828424,-0.104815094013889,-0.081727763860458,-0.0316339145815251,0.0135066902708591,0.0548974633427898,0.0694547885289823,0.0516637196763833,0.0125172951915065,-0.0281521738743312,-0.0690344804554292,-0.0858149275664225,-0.0814107840394208,-0.080788808366767,-0.0725880372822766,-0.0618423797678002,-0.0560016422546694,-0.0491955391013646,-0.0550104172582047,-0.0535031202619559,-0.0530228634896552,-0.054658647936739,-0.0507988421377632,-0.0527225967733833,-0.0595018216746209,-0.0707192045909175,-0.089393662416477,-0.0969433670608294,-0.0994881183619061,-0.0704081321020367,-0.0431318956020554,0.00466133229683083,0.0463157005792171,0.0699628478557299,0.0623898301630325,0.0329382074743908,0.00124441121849977,-0.0344193499672672,-0.0425508408332319,-0.0545222453934753,-0.069296953380503,-0.0741836923297735,-0.0663552812442244,-0.0559631663076776,-0.0516583182460646,-0.0517566446894438,-0.0516351905426655,-0.0542937802072351,-0.0518750679702052,-0.054718366389787,-0.0546801249354094,-0.051548630752902,-0.0497584879610215,-0.0571053862647823,-0.0700045960558119,-0.0719332971124215,-0.0629235374354039,-0.0519323290009381,-0.016033407013088,0.0194617564070157,0.0582514365223282,0.0673614920668355,0.0505293932057659,0.0347514481767819,0.00302463846153117,-0.0153912302975175,-0.0349667054267716,-0.0451562563137681,-0.0515673694591861,-0.0664475341198321,-0.0644177138607217,-0.0578427350047407,-0.0511309765810522,-0.0520822773518391,-0.0543094298152648,-0.0506636098769525,-0.052057779321599,-0.0520429507411195,-0.0518225212382194,-0.0535862130946546,-0.0484894936430945,-0.0464342958273602,-0.0532426754966391,-0.0463359260741838,-0.029711257111649,-0.00205560040117566,0.0162287911446093,0.0374644569214256,0.0434707159995707,0.0360814614059219,0.0315014870118311,0.0296116245029556,-0.00877499396558077,-0.0243658590897828,-0.0329506380608404,-0.0437858232465541,-0.0505935291386073,-0.0570602910241171,-0.0592725853057064,-0.0583739619621905,-0.0507211687813418,-0.0513421783050782,-0.0539849626072122,-0.0515761251991175,-0.0510612832031529,-0.0515068288466296,-0.0539376871187038,-0.0522212783088174,-0.0546135050095525,-0.0511199469248534,-0.0489249357893728,-0.0358392925116656,-0.0255940341271758,0.00288715003742726,0.0337987631194238,0.0455961868776652,0.036610720581034,0.0246515046666125,0.0124042164878717,-0.00654005488038006,-0.0269811513754623,-0.033501313484342,-0.039384410853652,-0.0478912461580306,-0.0526627956708047,-0.0536041060051941,-0.0536141862681794,-0.0554317771828973,-0.0504197247478464,-0.0528054511789298,-0.0512946161052268,-0.0511482192330676,-0.0538654728081637,-0.0540806978434562,-0.0527238465480428,-0.0528835976558406,-0.0534078115348047,-0.055170120785734,-0.0493680366291931,-0.0490989399177976,-0.0433455636798956,-0.0381787734690777,-0.0254594687739186,-0.0167393781353382,-0.0114656973361048,-0.0153873282555734,-0.020023407752077,-0.0324276822501079,-0.0259041623796935,-0.0340289759345838,-0.0384467302006068,-0.0476740520829869,-0.053673236516908,-0.0519379362968375,-0.0545541360507915,-0.0541546696952104,-0.0507614500101892,-0.051453451155441,-0.0527448098164139,-0.0545099408476083,-0.0546140366593181,-0.051717013524664,-0.0515351876437171,-0.0534859300031016,-0.0523213144410787,-0.0521383630696713,-0.0526555656724945,-0.0502612582771106,-0.0524932671180835,-0.0525059222731857,-0.0516829606901416,-0.0554368082194815,-0.0532443545561806,-0.051825256809172,-0.0537162692768657,-0.0494793854605223,-0.0506301486933568,-0.0496973366375621,-0.0498944406437128,-0.0527409679448454,-0.0529199380910939,-0.0539785193261422,-0.054794401191768,-0.0516776873194161,-0.0532816960138223,-0.0540482055567678,-0.0516868251565365,-0.0521518773842919,0.0560085653053325,0.209946670236174,0.21276774872436,0.209320564975177,0.211822904007544,0.212778417137396,0.209899930732412,0.209570772379369,0.210691689714909,0.209670209972421,0.210632815298606,0.211893153982841,0.211203297232278,0.211505575313961,0.21066428694176,0.21202254076829,0.209794958925149,0.21271160059185,0.209326599459642,0.212742275579594,0.21191771954599,0.210965795721773,0.212353663879863,0.212580590821985,0.210607414241215,0.212628283552483,0.208781087417075,0.209988571618669,0.211721009106564,0.211306608858196,0.2098389444416,0.21292159832026,0.21224850447074,0.210371845175841,0.209300004820824,0.210658387540881,0.208728672100869,0.211751630270091,0.21066472715442,0.207312575566935,0.206147744975807,0.209868313174636,0.204821016779636,0.206068889818551,0.208245895342527,0.206833398020636,0.210792542573141,0.212447756201839,0.212708773622253,0.210430469120439,0.2104592270632,0.209973823722758,0.211576055443355,0.212590822907438,0.210421687439692,0.210407777882715,0.212809962592129,0.211864181766139,0.212239949182159,0.212928866603525,0.208744556677772,0.212932393457165,0.211810826028412,0.208866026722058,0.209995993486817,0.212281542537358,0.203526305614442,0.190270827067214,0.1864989214396,0.1847763850216,0.174687713704519,0.160339414159544,0.166655987297463,0.177435001144767,0.177153055158743,0.184323119745383,0.185853775366746,0.191582234910473,0.199561924583882,0.209534907430589,0.209958370057464,0.210389719988198,0.212847863949334,0.209545705625226,0.211722192091748,0.208620245895138,0.211202741784403,0.20890645703807,0.209844617428594,0.212592117890482,0.212395536760482,0.210614783651094,0.212442561848716,0.21123459128115,0.195831962556337,0.19217206275838,0.186889255396774,0.180893168558525,0.167451011477089,0.154465043857094,0.158484382193389,0.168884304952389,0.173936978796438,0.176192529992509,0.185976859510866,0.191000185793363,0.200744723852721,0.198898704219836,0.206269070297544,0.206551587770136,0.211807126551531,0.210157508700109,0.211483721836668,0.211435844593682,0.20943003689486,0.2094122044944,0.213139145284835,0.213112822424512,0.210087900702949,0.210537257514537,0.219322629731228,0.214719770607127,0.206439920023403,0.198160222531402,0.192698230075709,0.179885119157727,0.170290704560104,0.169165201210813,0.168183430035788,0.171154164198959,0.177832217385083,0.181929054690417,0.201548180234293,0.210380489186086,0.204547946995067,0.200962488729929,0.202017958358832,0.205283014060616,0.212050888317607,0.210818791427692,0.212893968106463,0.20927620039921,0.209787545939379,0.211234664871748,0.211371183484454,0.210736570128673,0.209739033461856,0.214483000117654,0.214337078125413,0.206498902658932,0.197541041682641,0.170567770629153,0.13068865698658,0.101961941925239,0.0745884900492856,0.0574533551218773,0.055661432245037,0.0621452970354567,0.072779336318099,0.0971339826785331,0.140100189926424,0.164317582993897,0.184239780817229,0.186682940834878,0.18401728073526,0.199171642638918,0.206724496062231,0.20824974116074,0.211783501360246,0.212848341548774,0.212952522692135,0.209929778993893,0.213394737528658,0.214825925535956,0.214319439658196,0.213985446842118,0.20614130041559,0.186319238532209,0.15041406072755,0.0866072809281367,0.00834463627587911,-0.0497982173602213,-0.102910018592821,-0.122283462513255,-0.122291960474265,-0.106348764730013,-0.0730446205627113,-0.00706018911076413,0.0695139695088876,0.118364068603777,0.153352955788292,0.16717687613338,0.172836218629286,0.178727951545208,0.199492734706887,0.207551422566165,0.210185096657109,0.212732471795326,0.21211014647502,0.21095811906987,0.212349254106991,0.216000810023681,0.220032303066716,0.215432336623187,0.186852451104759,0.131902952797571,0.071417616229114,-0.018998795992324,-0.113257658323094,-0.17528695943897,-0.206479755409101,-0.21061825773593,-0.204408398827009,-0.183195598635375,-0.140046354398,-0.060225942541659,0.0166368051190449,0.0802194053494763,0.122357607951048,0.150804740281505,0.150483013537133,0.164108302745747,0.195271808870187,0.205477543586713,0.212669947724617,0.212254918881967,0.211706326331457,0.213936884323814,0.21269981669891,0.214827110900486,0.215468733604983,0.195934966416627,0.155388804911431,0.0817649978153563,-0.00704698910457157,-0.126395161469257,-0.203466803888372,-0.219439044646519,-0.19013813981449,-0.148763192300153,-0.123586827367459,-0.109225898148837,-0.0897974649361045,-0.0616037532013215,-0.00867822123768439,0.067968788077973,0.110048370779883,0.146590915218254,0.154539832912906,0.170580605810371,0.196118622776426,0.205492451423859,0.208399936514233,0.212627581428938,0.212896189510799,0.21310178335652,0.214090727349033,0.211768796670929,0.204677540122178,0.177520117703636,0.123580082943568,0.0310291601293081,-0.0978747810252372,-0.196010242558941,-0.221847224224988,-0.176107028840529,-0.084637944990105,-0.00963988692715965,0.0213371533787102,-8.97495917280053E-05,-0.0468898414799,-0.0721446376013786,-0.0325801499787222,0.0387858956114965,0.109499510593472,0.155592495903669,0.172123980888489,0.178317441211811,0.196356489175415,0.206260224789506,0.210424902244112,0.209858062601546,0.211812906395773,0.214354935286149,0.212427769140333,0.212727719427783,0.189521135820296,0.162502711054016,0.0702494802795143,-0.0352600911509575,-0.1606346252872,-0.220799435276353,-0.194165517315538,-0.0963575969338978,0.0319056932321295,0.109714920035502,0.0909893647866865,0.0172696909242197,-0.0746720387562027,-0.110247518074963,-0.0676487746661754,0.0248749376179647,0.117734727754015,0.181469087751187,0.206283101856454,0.194028831832472,0.195350799891035,0.206920302605064,0.212102761988401,0.21276517234552,0.213288098974406,0.212827317360854,0.212849546194042,0.20934030399787,0.183675813220943,0.13551598500016,0.0422994635787914,-0.0864350718428581,-0.180681097050517,-0.205040737840435,-0.1634549283534,-0.0574729156881697,0.0514443093817751,0.0769762645570289,0.0247298364664567,-0.0747311418786176,-0.15873904685501,-0.17748598642455,-0.100048765818679,0.0272925794770763,0.158171216768165,0.228364782496688,0.23994090484591,0.212213166332583,0.200701551779131,0.206920390276234,0.209677041365828,0.212178539263569,0.212514362538553,0.21140303862554,0.212174813189245,0.204511933093843,0.179862000334669,0.123950713908371,0.0314553294767849,-0.0888921034097251,-0.161418223027422,-0.179845917146288,-0.146356686578089,-0.0822993193974795,-0.0453150364632016,-0.0564884723999077,-0.116048985159283,-0.198490510616801,-0.236808848970411,-0.210877438685727,-0.104831284441743,0.0503649529706319,0.18952428534759,0.252034156699208,0.255228484572377,0.227815073269691,0.210440397514925,0.210332735909779,0.211066153552266,0.212230215935952,0.210167024370495,0.210072697993858,0.209125949116707,0.204425885979233,0.19828104606387,0.140090333657473,0.0418251951385328,-0.0663743210192364,-0.134703982685339,-0.158622905262959,-0.164148796441833,-0.16539110065035,-0.184174749924843,-0.210888996866513,-0.238272963446175,-0.282609453821774,-0.279522111974912,-0.213377221269923,-0.0563733373726651,0.108216500571441,0.226339077465237,0.252448272251383,0.259976857876348,0.235868101808523,0.209390224067373,0.209772831602642,0.213107755248857,0.209399004735068,0.209846185595256,0.211562066727691,0.210925169781581,0.210136282485688,0.22053464055989,0.183679770460943,0.0840008246973581,-0.021153957510653,-0.102123341804351,-0.146697659976123,-0.188228878005119,-0.222734904827316,-0.259473191037555,-0.27115355384895,-0.281659264203944,-0.295518443109177,-0.264833442554233,-0.148290851856844,0.0249120149200375,0.170198879905893,0.251093610119499,0.253488119662625,0.252024483969333,0.231043447453545,0.20864455956665,0.209314131073321,0.213170173000404,0.208666936093243,0.209536529735247,0.210431746059332,0.207417062211647,0.221228350320523,0.256461972076642,0.237479032143418,0.150197029073452,0.0375256993121733,-0.0594884876589215,-0.130653910642159,-0.175594840029514,-0.229691249488502,-0.256219219574142,-0.247586049396018,-0.24716612289124,-0.256086395999452,-0.204930194834511,-0.0773955337540972,0.0849563544876559,0.192709271278314,0.239602334757285,0.25499729057509,0.244305059154933,0.23022603287408,0.209302400512766,0.211132397688146,0.209927237033399,0.209546082071689,0.210224205646216,0.211976241949717,0.209291973122989,0.229862465250482,0.281513184658271,0.281302179864241,0.224530613321957,0.109318666232389,-0.0104478396725194,-0.102273627775037,-0.167978593041523,-0.198662692609365,-0.183798625807225,-0.173683978036557,-0.197992795523339,-0.209977305562508,-0.16420856488574,-0.0226233827424549,0.113483954126439,0.196746093621053,0.2253692762508,0.247214094079221,0.236974446901807,0.229836314557614,0.211923482820407,0.209357650123707,0.211075610567783,0.211642994398569,0.209248886023421,0.209791459048945,0.211712367052575,0.238498984559319,0.293299822531661,0.30582344708517,0.268634529009089,0.16516378559183,0.0350466773922965,-0.0792305494888377,-0.135640279975937,-0.128440000641273,-0.0935199623267953,-0.106890529939157,-0.156656697203315,-0.182509726814894,-0.129417126715754,-0.0034138331296793,0.114341384272633,0.180109918605688,0.210530082738362,0.230422984832306,0.229875744708496,0.226373459487469,0.213923374432277,0.211796416500877,0.209483699464833,0.21203355338023,0.209237531940851,0.209353573649696,0.213507334089591,0.250033074501094,0.305873219182286,0.314956914218464,0.265550586358084,0.173689547377182,0.0581839420358945,-0.0487968406382078,-0.0799565253322447,-0.049820226244647,-0.012476101409712,-0.0566298492569437,-0.133514916961365,-0.157827369430352,-0.0908456827103544,0.00850519569560678,0.100385258300589,0.166280816310142,0.213291346514745,0.233310184118497,0.228066186602542,0.228158537341616,0.21757175818913,0.21175404212968,0.209411292244769,0.21155192927598,0.21010446525775,0.21240037106335,0.216489843378471,0.252060797814221,0.309011718526134,0.3193242292392,0.266939714614728,0.173869811700396,0.0782647033188335,0.000294059603340755,-0.00759823436312723,0.0265170476457789,0.0182139499818195,-0.0511323840546333,-0.11680944525837,-0.141106262333992,-0.0852917396916101,-0.00409627899486631,0.0861209686730954,0.15726328185878,0.202355622034011,0.214872616393051,0.224266912000128,0.226183102761722,0.218238394085585,0.2093304829498,0.210418275299131,0.208953946204446,0.211672583837002,0.212996374821194,0.218697502740133,0.243126091909995,0.297447530664595,0.304420074388958,0.263628172475139,0.208729739259697,0.120739010826667,0.0592976679442169,0.0570456825687435,0.0451114709311035,-0.00579419471472079,-0.072033875928922,-0.114458235907134,-0.133113015322917,-0.0878478322625736,-0.00148054396506381,0.0868622854790729,0.15498148171782,0.192195515721685,0.207871218009961,0.216439098555727,0.222212770745959,0.21573469677586,0.211515000068778,0.209591464667673,0.209816185641897,0.212482125483855,0.209414871197602,0.216020473809901,0.230927515979708,0.261913073429408,0.277616179798506,0.24718111186831,0.211842007844266,0.14867440356787,0.0801979980231374,0.0537229186707636,-0.00752088438466346,-0.0590254124882603,-0.109149895320858,-0.120486203221755,-0.124964957522846,-0.0799951657715863,0.00732176391046475,0.0867736708427665,0.14870779813703,0.189203247772568,0.19999866419198,0.212399497727222,0.219380241938574,0.213472374017612,0.210665438738794,0.209194643759017,0.209561468223219,0.209873916589763,0.210055514410673,0.214501668020259,0.218355003685585,0.228855431567974,0.234154609358241,0.222587790875117,0.189800188490768,0.144795578039548,0.0864932455327856,0.0191637722133072,-0.0474610775223129,-0.0833022117225253,-0.102252278956347,-0.110702173168827,-0.0964217898381626,-0.0569676211291346,0.00933273712284799,0.0839836172026747,0.136128114458563,0.179730025204038,0.198785119727001,0.214033236719368,0.216098301593095,0.210286722335719,0.209291982167018,0.211671586876772,0.210938335690846,0.212571096943886,0.212248555727916,0.211383881400141,0.213771314006238,0.209243448334647,0.194667653559774,0.180396873808999,0.141604587027961,0.0929782615591882,0.0403259890190039,-0.0339414758324829,-0.0939649808027927,-0.116022981938898,-0.11563413506219,-0.104471910519906,-0.0815439449999569,-0.0422306612714592,0.0230695636611492,0.0957066990309089,0.139202904642826,0.176054353127912,0.200309611868327,0.209306237634063,0.213618024336027,0.209015313667539,0.211510555391534,0.212418063103382,0.208987747745475,0.212396647447433,0.209261692592759,0.210223298172365,0.213006035640489,0.211343676608183,0.201990132955441,0.180369941015271,0.130862388100571,0.0663129413892882,0.00189901319123083,-0.0691058585438195,-0.110435849183874,-0.11125955878879,-0.0979348499127483,-0.0816252587791765,-0.0497808511756926,-0.000223433884679855,0.0506854292697226,0.108724782442678,0.14947866603595,0.182303832247304,0.195137176915636,0.208370559544285,0.21049243909404,0.209415837140187,0.209754726279479,0.211685302721046,0.211179274575374,0.208643457174027,0.212228617446593,0.209515948360856,0.213088795625083,0.210499819067745,0.205321815448368,0.200407725097232,0.177832300460198,0.141879900374893,0.0874375565826471,0.0380618617469855,0.000247149355558128,0.00937732303024001,0.0305800727033108,0.0481219119791626,0.0717248846085452,0.0811622580169789,0.109792236725279,0.144191055987664,0.169129632513678,0.189458290085186,0.203932952595655,0.210152090082893,0.211308538238986,0.210330229642956,0.210096940730724,0.211514820290419,0.211830481484046,0.211186305813474,0.210638677329725,0.209376357262174,0.211539022230117,0.211865563258095,0.210959522649375,0.211777175507117,0.207188956194939,0.200459615777486,0.183549358407278,0.162269515846655,0.145243076643278,0.149486156451639,0.158094412678717,0.166655923153037,0.173428239339441,0.173486281284567,0.179561857467932,0.192492632319806,0.196990009245569,0.2065186910854,0.209017658174024,0.212170506873184,0.210775271155238,0.212410530758647,0.210886762157202,0.212548826313067,0.211734066136094,0.212468956759419,0.212586451323335,0.21072557813176,0.210706822265303,0.212348863331545,0.210321117460604,0.21051680086556,0.207865408275784,0.211653014532509,0.211738423607362,0.212837837144984,0.210162061273705,0.213282791269303,0.210097864491189,0.208878645919047,0.208209741068179,0.211302691649243,0.210190782604932,0.208658288712425,0.209034551338012,0.211567648323333,0.212989806397404,0.211651562560042,0.208707993839053,0.209678072293434,0.210128671895424,0.212079000716351,-0.229952106996184,0.0766524528284749,0.0748842929063817,0.0748088699150321,0.0749307049810797,0.0753751571920315,0.0773171861319064,0.0737879436143345,0.0771815660126842,0.0771777892276127,0.0763130188630802,0.0774389760908776,0.0739416324467045,0.0745782547693467,0.0766175789939123,0.0763172939884481,0.0772063539652618,0.0756397486077127,0.0752895796560686,0.0760029106801654,0.0764420114816498,0.0741911952659821,0.0740183590270052,0.074326994345467,0.0738103386717986,0.076687202748716,0.0762129811337827,0.0780842981937094,0.0775236043258581,0.07801636193284,0.0756207494981036,0.0770871509566842,0.0769887263038009,0.0740300892011144,0.0745180639344082,0.0763518400750311,0.0770136966422628,0.0741512609791861,0.0757112900580391,0.0739144593038403,0.0770294582315076,0.0748295351869571,0.0767195417373456,0.0774026415458164,0.0750761243952467,0.0704137784815193,0.070759061852577,0.0731546804218576,0.0717505572597027,0.0736112110526385,0.0781430005057609,0.0745934248938083,0.0753413882144662,0.0772711463515894,0.0752627753926939,0.0758658885709556,0.0755052151713112,0.0754543373942078,0.0767205907152803,0.075900555579193,0.0768746390534972,0.0738821264942974,0.0753726963910166,0.0780016992517145,0.0780266080460688,0.0748770082823199,0.0670324800495935,0.0653132278226634,0.0614651382348935,0.0597357975578497,0.0454305453770725,0.048346604114327,0.0463472520233282,0.0443124461989526,0.0405382481859945,0.045902342292188,0.049893443491729,0.0578461072081933,0.069665119214113,0.0709152497716573,0.0744888849520209,0.0776059125108164,0.0766063499721014,0.0764773852613768,0.0778245644694248,0.0780409777849365,0.0755846855048032,0.0778004563687348,0.0743701804560009,0.0753560015301102,0.0770490306736668,0.0742611765555381,0.0741560683940429,0.0683821889150234,0.0650269547586048,0.0587803588020162,0.0589362369483405,0.0562806185273937,0.0434550880860699,0.0173692870445887,0.0107678177796923,0.00755142274009176,0.0181167991909331,0.0252065151704688,0.0322139414756007,0.0478426618870498,0.06467141116695,0.0658877598206451,0.0689473546471603,0.0748161606542094,0.0745173404755688,0.0741417227383483,0.0773272964840122,0.0739966464694608,0.0758196714907969,0.0778282757100441,0.0741926751692244,0.0763109884046261,0.0755330287496421,0.0818607525569077,0.0753292821343244,0.0684887903030856,0.064478562528053,0.0632620200046671,0.0686231408913387,0.061805851418382,0.0465684024073534,0.0301839629123845,0.0188018910693267,0.0152107929132684,0.0130372989882766,0.0171982730259619,0.0183864593951518,0.0231489680133249,0.0351669087750862,0.0409196702908266,0.0497252667761459,0.0643666327345551,0.0714073677373944,0.0749412463316621,0.0768188424282131,0.0762650535653115,0.0772626701377318,0.0766828799007053,0.0761503131564811,0.0767996332515087,0.0752624975594201,0.0777222718213696,0.0723759340296714,0.0699457898524356,0.0647269865563322,0.0587454824273218,0.048073471822372,0.0487781489072053,0.0359922245915417,0.0326840958773816,0.0297232514977792,0.0262229044989921,0.030514903129381,0.0218858476948035,0.00910890013247476,-0.00119005691322384,-0.000234706907698752,0.00281507173875694,0.0202000050153964,0.0397128067797689,0.0663902848657197,0.0758155116533383,0.0749997509750214,0.0775477267407355,0.0744539263259644,0.0763131905429124,0.0794454359610661,0.0812628624926837,0.0818787981893226,0.0839632791200366,0.0702606015212027,0.0679221152894609,0.0588483544303824,0.0388569047184158,0.0186943610088324,0.0208983781916787,0.039267547581563,0.0573964769011695,0.0638279217596964,0.0693719009767303,0.0722709956370998,0.04897853763932,0.00982247299012545,-0.0158195784564687,-0.0218896675195287,-0.0121300536446803,0.00194897174472502,0.0356522279394465,0.0653397460237799,0.0755439580779906,0.0770076263786188,0.0738955746928956,0.0761587636440287,0.0775724085684153,0.0811537269801363,0.0856404601216502,0.0937282536675612,0.08767594952027,0.0770543584878976,0.0565264497269177,0.0352626981758231,0.0244658583504026,0.00892176985872927,0.0261119430029798,0.0513268504676826,0.0721135055279277,0.0866189618922808,0.102528849919619,0.0949275753205242,0.0600079351104665,0.018006202945066,-0.0117267281637495,-0.0123285549603497,-0.00614643308406421,0.00944731450175399,0.0540010675027143,0.0723480534166651,0.0750363962856151,0.0772637992184154,0.0754843400770587,0.0740539480867367,0.0794104673344837,0.0852931011077922,0.0973967114573454,0.0988111683300879,0.0860875698575073,0.0711613131220807,0.0463270520370392,0.0343113507558953,0.00752291430423378,0.0024221749124432,0.0183689619527753,0.044312492908425,0.0668696474497543,0.0933357560977364,0.106334924160765,0.0881410545810578,0.0463786951552968,0.0109367970277726,-0.00660643753291475,0.00479111294348877,0.0278165509167191,0.0384448565813903,0.0701268621120412,0.0822859907600291,0.0766452115031017,0.0758694740257037,0.0747204605124562,0.0768043128465068,0.0812780489405117,0.0883290340130462,0.0968809918795783,0.0936930558596834,0.0745468365905071,0.0600582467046467,0.0383200198489665,0.00787318280290927,-0.0114159312453955,-0.0207196614688568,-0.0220591518994023,-0.00185049371352215,0.050613489833866,0.0974632738962574,0.103012217606283,0.0661811589533841,0.0224132889920451,-0.00154250578414514,-0.00399475154249221,0.00340843194297331,0.0422754976503514,0.0591468138723224,0.0807590724414328,0.0815888375511845,0.0791169207747858,0.0763493926809423,0.0770130206164934,0.0738930571235367,0.0783210083095169,0.085700198295016,0.0911266283401162,0.0754276585326673,0.0545279670556289,0.0356517320085541,0.0031274597260013,-0.0192920985080921,-0.0540596788293649,-0.0713286207721523,-0.063435594467024,-0.0136480160052516,0.0652341760248913,0.108028302848765,0.0847180668559126,0.0392606400537677,0.0112222509079925,-0.0120717698360823,-0.0162491842084302,-0.00452489841033432,0.0286760399658613,0.0504964448353284,0.0735249982284527,0.0793110842417157,0.0759272820624888,0.0773632725004265,0.0778158038966321,0.0775219323399242,0.0769525220090446,0.0805228769923123,0.0760538963356647,0.0552882657731528,0.0208319300799919,-0.0142823310306859,-0.0440783472157023,-0.058499183142444,-0.0966029438274908,-0.100262854879807,-0.0729546376402683,0.0144397401280485,0.0972736090677296,0.092804678262814,0.0504387822105247,0.0167536445886916,-0.00854213210497036,-0.0320061628911853,-0.0264924487235182,-0.0157557769039063,0.00359943053108035,0.0401576586248501,0.066949815749679,0.0767902428129069,0.0761971152099435,0.0765917534878441,0.0774539770714912,0.0787818939490326,0.0753608662321636,0.0746374835411486,0.0661844357343235,0.0318755126410418,-0.0178329804986224,-0.0576931960073554,-0.0751827416486049,-0.101745868752054,-0.124668853928194,-0.105830213213033,-0.0474170444675811,0.0348388402715983,0.0934853732518787,0.0722099169484272,0.0101844958348613,-0.0134066223817234,-0.0199635106016519,-0.030175011782406,-0.0358341007788757,-0.040560515355183,-0.0252164191399174,0.0232860421322239,0.0586853472864817,0.0786581161744426,0.0764056843090032,0.0765927794698254,0.0766713406579822,0.0752953082947213,0.0778414672522207,0.074528100096933,0.0541204286490465,0.00481927399890345,-0.0580675092591414,-0.0833756392095826,-0.107082603255217,-0.118055407368302,-0.116924861093516,-0.0774476356594506,0.00889123122813989,0.0640461591963297,0.0795874072229474,0.03911857264098,-0.0136270316424667,-0.0333743167946996,-0.0341197119018838,-0.0454191094580544,-0.0506232478796122,-0.061068257982939,-0.0469558970393949,-0.000354185100950893,0.0442861946110136,0.0730829785112985,0.0749769126013237,0.0749272686736452,0.0763368222291757,0.0772944909545855,0.0753945986406341,0.0723214363337025,0.0530078044437854,-0.0131684987063143,-0.0792599014286107,-0.104111675169676,-0.122408486260479,-0.130057518818402,-0.097814862234507,-0.0399709900138039,0.00419154136126599,0.0351438091181079,0.0271019089999414,-0.00787737029195555,-0.0350533495111639,-0.0576909489156215,-0.0593058637899491,-0.0667778701727,-0.074155587532772,-0.0714571793165355,-0.0665358570906048,-0.0166356243860805,0.0337418051334927,0.0752451890698154,0.0783298946083302,0.0786246883180524,0.0737105106764623,0.0746573047118004,0.0787274561359235,0.0754632537730729,0.0522197702072655,-0.0255857443172075,-0.0896336246228519,-0.115970053467887,-0.117162777048786,-0.115868400902561,-0.0869896100872622,-0.0521574747868296,-0.0240823854310312,-0.00704169126487493,-0.0185132924622724,-0.0385491263191908,-0.0470338040238158,-0.0537933766318897,-0.0697778918256186,-0.0792137927924206,-0.0848754033457239,-0.0738543331662425,-0.0567884337028653,-0.0108940348889412,0.0439624124973716,0.0715014971029568,0.0766022006889227,0.0743383618218202,0.0777795382125838,0.076086782722983,0.0782676627151933,0.0775822107411204,0.0661815842315711,-0.00692114061224323,-0.0543169836567104,-0.105722338548225,-0.118531561497336,-0.119813615999551,-0.0916257722691525,-0.0632287666106725,-0.0396288331517814,-0.035139563400236,-0.0465136979265436,-0.0485394970678023,-0.0458260701154228,-0.0425351583561017,-0.0611640051270401,-0.0719255949420959,-0.0685021445338922,-0.059728515902917,-0.0308300350732243,0.0190014890549619,0.0564280417584044,0.0784650841482104,0.079056362533722,0.0769841046154344,0.077976040220816,0.0759020924881639,0.0750251678511334,0.0836753286601377,0.0781510283470913,0.0268132465029578,-0.0162347781821047,-0.0683952073989036,-0.105729001110574,-0.101323333991987,-0.0791205193282647,-0.0505764196250424,-0.0288927957680496,-0.0233308798927884,-0.0372544213521367,-0.0301266116011499,-0.023604578053899,-0.0397305075638113,-0.0565951412351574,-0.0621361665866008,-0.0626914878871338,-0.0386400780424478,-0.00089858645165192,0.0497279827872355,0.0694506436394988,0.0847964141366162,0.0804262092330173,0.0776842935032852,0.0742745969343556,0.0751830080948524,0.077412041620145,0.0857470121006863,0.0800126469042879,0.0412532773989327,0.0184755781656128,-0.0159576101118212,-0.0533225242149516,-0.0626479778491446,-0.0527905201746471,-0.0295998982372702,-0.0191369766124616,-0.0314576577630908,-0.031415613676869,-0.0168076150230998,-0.0244730745693334,-0.0452586884489483,-0.0557258240219208,-0.0590967019751937,-0.0329560962658508,-0.00232291229392725,0.0361924224470574,0.0692863869001603,0.0790146499183544,0.0818793204547872,0.0801265486915809,0.07544184244066,0.0767000471373609,0.077025638478091,0.0754476739817183,0.0830928118137803,0.0903444787475889,0.0551790754834508,0.0367789628479978,0.0318041645879605,-0.000363413933806641,-0.0092398611125505,-0.0351482592822074,-0.0380784309318051,-0.0430486469276944,-0.0524530718546106,-0.046449990182042,-0.0406413701883903,-0.0512382938333241,-0.0543731228298227,-0.0503917813315609,-0.0323803744542682,-0.0065922655083953,0.0294615916556769,0.0664050675911948,0.0863874820026613,0.0917267479275624,0.0836762733920894,0.0787651343199257,0.076067465381438,0.0759801514205581,0.0769543142743797,0.079062566579865,0.0882900627600639,0.091595448299867,0.0760596880519183,0.054740937646813,0.0493771268561472,0.0438680546265218,0.0147726502593761,-0.0158041738270487,-0.0467687338586033,-0.0686293897031505,-0.0771398390409372,-0.0767864807129751,-0.0646233316827407,-0.0590360274740708,-0.0435568925187078,-0.023906143888622,-0.00227526365406821,0.034932476485647,0.0733081281134817,0.0902686217398948,0.0902583175890301,0.0848535688191121,0.0806365603371123,0.0779290501213718,0.0768400247401813,0.0751036315361232,0.0747983313285349,0.0790575888198292,0.0857532922643344,0.0913476612849639,0.0879862608249166,0.0772424411018979,0.0600835499154382,0.0525093160884962,0.0388323888036303,0.00445629381571276,-0.0330220142557084,-0.0570822845646634,-0.0690476974689801,-0.0657523022915874,-0.0451108361491365,-0.0234503429261725,-0.000948973545773035,0.0139980348382911,0.0307386618572862,0.0671511945937944,0.0818578693981152,0.0822676234892104,0.0873776821500106,0.0807495751596543,0.0789383143270107,0.0739822611703242,0.0755179241934615,0.0769196364977358,0.0768219999851391,0.0789561166173236,0.0796967155618103,0.0876385105821838,0.0875443444692515,0.0774248227158945,0.0808619653072965,0.0758720155332906,0.0717993585059625,0.0473612370988485,0.0277549751141223,0.0116330373988745,0.00275169811775395,0.0029097491285369,0.011654572109315,0.0437064359575886,0.0500670852939654,0.055951448317837,0.0699488520169666,0.0697171021731487,0.0737512506202595,0.0788598058887256,0.0795696750151061,0.0792839231443455,0.0760310579607503,0.0744168873057499,0.0760550980634458,0.0779715875425311,0.0755727631950828,0.0740493108265545,0.0776914450608456,0.0845208815043527,0.0891949004484295,0.0916244909259225,0.0941609256596588,0.0876543594986575,0.0864380223675245,0.0639557936645275,0.0583815549492534,0.0555118361356983,0.0571814909033808,0.0571773997369868,0.072803862480227,0.0789789093723668,0.0674382153596288,0.0670161335711337,0.0601824564527983,0.0651930398765607,0.0705861537537037,0.0737662101976359,0.0732117829992629,0.078306712797774,0.0752546139779508,0.0758348591581674,0.0775879391602248,0.0743067702483999,0.0760669148993942,0.0745588209984071,0.078151953418483,0.0836375546017878,0.0827650882758907,0.0816838426913382,0.0909034905478356,0.102323078437767,0.103989500033452,0.108303667700443,0.101649083465083,0.0987018499955317,0.0898447481599086,0.0912388252776851,0.0934598872559869,0.0828285379391691,0.0825740597758918,0.0714409997631197,0.064077936963704,0.0622146163741416,0.0659078318258642,0.0666246684758804,0.0725870781972761,0.0788166744002932,0.0768381263323881,0.0752617444761545,0.0745104130845786,0.0754685275643988,0.0767559557680236,0.0741341841726055,0.07426710236696,0.0775343471060473,0.0773123763824882,0.0787212577145369,0.0860323803896008,0.0888098763056851,0.0990492922061573,0.120030462981325,0.131101848431813,0.125482742952669,0.109265397269681,0.103903340731004,0.100271954373405,0.100240764907199,0.0979921607264274,0.0832281625474271,0.0817627543280362,0.0722032247898532,0.0700372321493321,0.0713800462078599,0.075601577583555,0.0763961019983824,0.0757801985975343,0.0765757350091071,0.0740599473758962,0.0748425658897006,0.0750823940852591,0.0775373292119168,0.0761658815953908,0.0768019994273104,0.0769465889069888,0.0743565602991729,0.0765393384156414,0.0827586099289478,0.0893775746002251,0.103770129268763,0.101358220350615,0.101706128624343,0.0932295108256921,0.0984379331809558,0.0938848628154298,0.0986595640264358,0.0921848752550709,0.0866732845119965,0.0755242360167551,0.0705729529642433,0.0721430883700211,0.0762211120339793,0.0734935806367079,0.0738592796757708,0.0743505484025409,0.0740987504116891,0.074883919916558,0.0749745658610184,0.0777008893183947,0.0774699798862259,0.0753391442067834,0.0777223758786743,0.0741586834367468,0.0742239392977326,0.0767199844781856,0.0757875256773213,0.0751668900752359,0.0805517931283929,0.0775672418781886,0.0788971246354957,0.0806244043513462,0.0820282759413074,0.082576185156923,0.0822719095008459,0.0807134392886473,0.0750143307148388,0.0768406666608705,0.0737479529537364,0.0763167228301442,0.0739283088763884,0.0740825832119011,0.0749746477679221,0.0750999652070489,0.0764942585464705,0.077387601158611,-0.0726625349878539,0.217179411563929,0.216879080871167,0.215998895649384,0.217097043976773,0.215826708626806,0.218485133420431,0.218456449272378,0.216813812096256,0.218183146980285,0.218151099621626,0.219072209934335,0.217303038326134,0.217354818312662,0.215481321267014,0.21918187096507,0.217407300566763,0.218524517591245,0.215567900272454,0.216883951088764,0.215914374848995,0.216009150217391,0.217003279863434,0.21691918098488,0.215123358389507,0.215130841600594,0.218059795915873,0.215359365016978,0.217723125018667,0.215710343117311,0.215890538187024,0.215998010088406,0.215820303385959,0.217283395905216,0.215615046277945,0.21704997407597,0.217447723115281,0.216778685683908,0.216395632524055,0.213512040111059,0.212648383753916,0.212867903807186,0.210101411194084,0.211253352304903,0.2153883651307,0.213551625701548,0.217726818008998,0.217454557998123,0.218481577776702,0.21799505037738,0.216080125284978,0.219077917903294,0.21519269964378,0.214921599525276,0.215374532587742,0.216624372066546,0.217214859300291,0.218237834088359,0.21556900530838,0.215038321926535,0.215627347983587,0.216322512919175,0.219189625896872,0.215039690915172,0.214236590362857,0.217437838179686,0.207918709528509,0.197800024832973,0.190891600779786,0.18969748388791,0.177755423526676,0.170164568715275,0.17688906890799,0.187613176913913,0.18877065560595,0.195852828195858,0.196460168506419,0.201786754240862,0.207696050947141,0.212285996258881,0.216741586540418,0.219129166732846,0.214942991064032,0.217269195386714,0.217099795787224,0.216616514492238,0.217889271273104,0.21525480658357,0.219600700660179,0.215771608831304,0.215887726997596,0.21782432604009,0.216295095495391,0.216834600364903,0.204769159400984,0.196883362713923,0.191927636689126,0.187186746995722,0.170769070782757,0.165830966115193,0.17119100980736,0.176626839360805,0.185034293473997,0.185160251002704,0.195560143029345,0.200226693048395,0.208949195138672,0.207608341002381,0.211342983749072,0.216393841025606,0.214624320163531,0.21602013099736,0.216884622299055,0.219104724887725,0.217364277889795,0.216574341000271,0.217077707341838,0.216091233804571,0.218105676790174,0.21935776075011,0.222451952216219,0.217556264723235,0.208092852702601,0.198537835938826,0.191891553733888,0.18214286986005,0.173425095115934,0.178304553757316,0.178014431293751,0.177537337578985,0.18435128657815,0.192232413400903,0.210435350253508,0.222834611739955,0.217558776371064,0.208511360362461,0.208489891978396,0.21233001053176,0.214626696907516,0.218136355039909,0.216266773919965,0.218178204000446,0.218771090110525,0.21747299083264,0.217967028072958,0.216908677452723,0.21612694799502,0.21978815168609,0.220991658457355,0.205581485134043,0.194720905831919,0.166198046528363,0.118869035634562,0.0880131054959166,0.0613423925729957,0.0422501487734676,0.0374094269124851,0.0449834645780861,0.0544776682329403,0.0834038688382905,0.130105768507572,0.161292154743135,0.18284496073265,0.193668846941093,0.198547353491338,0.204342923052639,0.213225372924654,0.212415556400756,0.216723574708429,0.215676662667682,0.217362745551612,0.214393239422938,0.218216656803371,0.221077370766552,0.222396519513966,0.219179027759218,0.210973130530083,0.185593020451162,0.138912532572125,0.0695110233547263,-0.00990891536463242,-0.0724219236464336,-0.123856937197727,-0.146054440834359,-0.139502333167673,-0.129831058433252,-0.0973395313665293,-0.0328614620030388,0.0486118437325218,0.104300378148233,0.146138879527144,0.172603550952308,0.185229605227634,0.186119710312112,0.205443577185865,0.210522312822423,0.216481300749242,0.218769490166251,0.217403865440986,0.217897464752869,0.219369641205844,0.223451997717636,0.227097606890843,0.221471231213893,0.198072847451314,0.135312293464468,0.0673093214631427,-0.0316653883281541,-0.132420742068733,-0.193452920731874,-0.213974842370278,-0.216314251869157,-0.213293814735964,-0.188731016661789,-0.1491033237402,-0.07328044435086,0.00331302214947293,0.0728843674630112,0.118337444607033,0.153198554779122,0.158540549672371,0.168828362671233,0.200722656902637,0.210683066541611,0.216059636481987,0.218817765877368,0.218328919842401,0.220706266573576,0.220661303400839,0.225271132239565,0.227252060474648,0.206946796890904,0.170321352342604,0.0919399016320372,-0.00925540956339461,-0.141856831525433,-0.211238320171228,-0.218815198470794,-0.180831255960254,-0.134529974165253,-0.105182566366271,-0.0898521432456216,-0.0775644349897738,-0.0584512903412494,-0.00757289062519529,0.0599922351692322,0.101267381900595,0.139285763151368,0.157044191767434,0.171211679975552,0.200453572087217,0.208788734797743,0.214966397446612,0.216442570608397,0.218053861497633,0.2199565715992,0.225174771268485,0.223854267732569,0.219323888067159,0.188097747117126,0.13620122922814,0.0386768557473896,-0.0985062956834089,-0.20256563745001,-0.219888946844947,-0.163699506250844,-0.0633048972094475,0.0280586017165942,0.0629422929058931,0.0314079191082808,-0.027921082442525,-0.0670790108575647,-0.0309922366384441,0.0323664403532226,0.0945217969260178,0.144781545368413,0.161707946390876,0.177564267556929,0.199256272012081,0.213025305738781,0.217103404530842,0.215704111032454,0.217548950483874,0.219406300393074,0.222927909976836,0.219541252742123,0.201204958020358,0.174648153227318,0.0846928676853156,-0.0324002907002424,-0.163449484696638,-0.224986492566576,-0.19601659702515,-0.0869176032167531,0.0561725785044622,0.146298386062845,0.129195453198548,0.0388719494315589,-0.0627110436806166,-0.11118253804292,-0.0721917377310633,0.0121366766110348,0.101088616229143,0.167684359400919,0.19911826599003,0.195505492920347,0.200120447218374,0.210744999247964,0.214546778255747,0.215931544696192,0.21564345607032,0.219508478305985,0.222242966375251,0.219102776461511,0.195669138380512,0.148046671778129,0.0526386805780325,-0.0834200046259209,-0.18414777212457,-0.212820307537533,-0.166010288873103,-0.0564635695702197,0.069408012286674,0.101797345269847,0.0423010924419674,-0.0684807369656415,-0.161496174524774,-0.181835501575999,-0.108243429263654,0.0125883099843173,0.147425166696979,0.224641721016312,0.238640755547295,0.215913746826028,0.202587306224808,0.214964860784015,0.215265466422548,0.216246887847878,0.218804599042367,0.215857472947359,0.219603541194215,0.211978851662895,0.19201609776794,0.13326449322192,0.040837686074183,-0.0822637003058263,-0.161484961649504,-0.180370918500609,-0.155640925456249,-0.093011238240051,-0.048681830156854,-0.0535008386083974,-0.11476655250583,-0.202421799615857,-0.242575228603437,-0.212245245116632,-0.109928528122183,0.0494091585579749,0.186327375996646,0.257269011529534,0.259357882304683,0.234514778276383,0.215188136825926,0.21731154923404,0.219181005862043,0.219032487931621,0.216708764919096,0.21821702012416,0.216206058204431,0.210250536563623,0.20599670290218,0.153219903347729,0.0562413688758285,-0.0515373262312634,-0.12945778421749,-0.161193988992835,-0.174003506075924,-0.185182696688514,-0.195808158115626,-0.218092390833937,-0.244783737835823,-0.286735930522466,-0.28313484395525,-0.210834296485621,-0.0483756547606818,0.110530833503463,0.232419754982163,0.260131638604758,0.267965855105576,0.239232298942697,0.216791472429475,0.214798041167807,0.218789909909402,0.214648610179051,0.217493043147633,0.216927119847555,0.216528856552303,0.216258842061547,0.231084394676357,0.197325537481162,0.100654434842473,-0.00536317158883522,-0.0977595859753179,-0.150535943170017,-0.201728667448943,-0.244226613550503,-0.272366677747783,-0.278214576295108,-0.278761908605456,-0.291148766476763,-0.260756695925479,-0.136676098682993,0.0391548954686915,0.18019131544163,0.25628598045285,0.26002461753776,0.261617650656037,0.238120985597177,0.217858493884442,0.216900275965402,0.217725404551488,0.214707850956219,0.21706536770267,0.217435026754648,0.217102359610909,0.228004000520399,0.265337952766159,0.257399038741156,0.169782957662008,0.0565358734855333,-0.0499701863382817,-0.140178784937314,-0.195390570130573,-0.250164257354561,-0.265497456350339,-0.246943387991307,-0.238961929033421,-0.249000591345639,-0.193243702101825,-0.0610495200061501,0.10348242838714,0.203257556001772,0.242497216637579,0.259495479105438,0.252529250754048,0.234446781034635,0.21670495794152,0.216486695316466,0.218177992702184,0.21509611076285,0.215617106237035,0.218177062224634,0.217870637413036,0.238794444789577,0.291042450818708,0.296262218006826,0.241480157058268,0.119095637563891,-0.00691668299129154,-0.109252157487892,-0.188803175005121,-0.213291590806154,-0.184699546781096,-0.165033748673214,-0.18383792706592,-0.197899839304421,-0.148783926693435,-0.0070798951005216,0.122534080534852,0.198900018397479,0.227414923770952,0.246161808524532,0.241910202588195,0.23376518653473,0.214464276939373,0.216244440605192,0.217541912747655,0.218133228944036,0.216734654517574,0.215151986179717,0.219178004011089,0.248041900754378,0.301278111726077,0.313325553721194,0.273303750215979,0.165030991667242,0.0294416045341265,-0.096773072386843,-0.159000333370582,-0.140397631741378,-0.0837950426486935,-0.086172467828697,-0.136509147601677,-0.164306267042194,-0.12109287351305,-0.000494605795404347,0.110953932679356,0.174149797843596,0.211758680750018,0.231175263726895,0.227479855577434,0.22752675025764,0.220293705804048,0.219303296089676,0.21623771304168,0.215143215491344,0.21525120199054,0.219047782689221,0.218437402452987,0.250514352245282,0.308725029187549,0.316455250788468,0.260569073164704,0.161985133298031,0.0407018003753379,-0.0727785795200266,-0.105082185195703,-0.0572438251245832,0.00474552485909396,-0.0282448051431854,-0.108083058631987,-0.143580361690911,-0.0879921356195003,0.00147247269337428,0.0956191682346079,0.156241918451565,0.206696573271758,0.229449369236562,0.225534217901925,0.230495471402486,0.224462650659826,0.216069389203097,0.215762504905403,0.217363927992581,0.218656873158401,0.217634273111601,0.224387395934154,0.25527268113743,0.31022535967177,0.320487741604088,0.259968150400678,0.152091694009986,0.0525093731596458,-0.0247574149370176,-0.0270676573428994,0.0327108431791875,0.0478818618988003,-0.0146630199525054,-0.0919974882487069,-0.132122412436676,-0.090244761811385,-0.0157678973494041,0.0770828954227673,0.145424994797425,0.192271785914806,0.209288728809445,0.221202987318073,0.227124857743483,0.223088459792533,0.216358479000756,0.214951505334801,0.214989504040623,0.217481528168709,0.21636485773803,0.221894084301731,0.245842939627238,0.295766482290901,0.299033000837825,0.250676561717285,0.182167261429822,0.0940322965682769,0.0353233392303732,0.047018532109466,0.0576325582414572,0.0244695963855636,-0.0367401316421617,-0.0960303407062261,-0.128558567068356,-0.095412614180216,-0.0164230522685366,0.0668761805782403,0.142041711292241,0.185287458579165,0.202772122561022,0.215633564861066,0.224589969993516,0.22147009963561,0.21810351029428,0.216826972127271,0.217747910236749,0.217197839723163,0.219291944563657,0.21986468200146,0.232949650745538,0.260249684927559,0.266060825390202,0.228439951101769,0.188379444816272,0.1231522322875,0.0626519273643953,0.0447245875861728,0.000560612950716209,-0.0375817827610545,-0.091106854954499,-0.115904430240856,-0.126792568520165,-0.094941862658227,-0.0117157077299842,0.07175286057379,0.140847988608974,0.182087197966018,0.19970520790334,0.214428656170356,0.22306478538441,0.222888737192299,0.218799176051346,0.218041178944864,0.218819258647161,0.218754143294824,0.216747944243455,0.218724274855687,0.222562993788077,0.228147039052294,0.227686808369037,0.20266488539881,0.16666653091661,0.114847618565975,0.0629405578343303,0.000578626344203705,-0.0561970157032907,-0.0796786237139371,-0.0997578833941721,-0.111169567015547,-0.0999920247670775,-0.0664896782580884,-0.000673400277939899,0.0765190383097942,0.134669912982403,0.177980246600165,0.200533994670354,0.213975281024942,0.220962006757429,0.215786448359741,0.217836765582403,0.218337934797406,0.218237574132675,0.215661751439591,0.219064969293751,0.218719126872272,0.222137736578704,0.211050652502238,0.196840149430256,0.170241396936204,0.130172020285373,0.0746739564155892,0.0163832748759769,-0.0575505364919514,-0.107642911129149,-0.1253311388403,-0.116803183431701,-0.103339501813598,-0.0864050841673611,-0.0501048271878894,0.0193673411131981,0.0930692713416383,0.140197364014821,0.180021844744421,0.203881683469261,0.212456766128873,0.220193165937057,0.215640342801856,0.217997365687451,0.215987066918895,0.216346815096749,0.217537134676225,0.217139731819533,0.216675082426271,0.219761410746562,0.216568416974728,0.206407214518987,0.18170456696773,0.129187639612002,0.0664701539240739,-0.00218621029234325,-0.0750624762318229,-0.117381612932024,-0.115623900554031,-0.0985974723993178,-0.0793955115740518,-0.0456743093078485,0.00551450413235274,0.0556565661448717,0.117787228641329,0.1591826648226,0.187032562406219,0.203796066614603,0.212692014328364,0.216388362469084,0.217117277524321,0.218293887163626,0.216737798853001,0.215262247617494,0.215856856386632,0.217867103221976,0.215784225576072,0.21541154487964,0.213752796498526,0.214039024384569,0.209207639131854,0.18669042078652,0.1573471647247,0.107485008081516,0.0601168227465033,0.0254831078868882,0.0253453698379934,0.0455490330080415,0.0594199786940049,0.0818140081542056,0.0848307126582279,0.114466945182574,0.147032672771229,0.173502809461058,0.195885924846275,0.211152627853597,0.213757801358004,0.217419283407045,0.216115231091267,0.218660996269542,0.217923066866863,0.216577373241846,0.218003501516111,0.216942318228948,0.216703363965247,0.215306394587182,0.217482071347005,0.216028697682195,0.218187434464918,0.216189222847159,0.214816801210336,0.202276900053017,0.181576962732352,0.165223217724909,0.166859519813412,0.169645451465138,0.181898087524141,0.184313790803122,0.188643924822055,0.189046738667659,0.197865574106634,0.20474432310431,0.214157331771798,0.218088371755853,0.215119071859655,0.216447251230394,0.217200213949435,0.218890361132582,0.218878066042905,0.216983543579347,0.215451900195501,0.216010613955701,0.21737983833943,0.215966225456829,0.218680366836297,0.215872047560499,0.217118215270509,0.214968497082801,0.215716176574614,0.218430065312588,0.217271565562892,0.220920295120691,0.219451032607535,0.218710368101416,0.219687840857749,0.216869315726276,0.217153096704839,0.215631243522163,0.214840016129661,0.216363446433947,0.215812209237803,0.218224361240635,0.215655348371488,0.217196806149218,0.216081963277873,0.215285223803807,0.21753217696555,-0.227153784781572,-0.272526215892055,-0.274155556912296,-0.276137607396282,-0.275276102755889,-0.275246185645419,-0.272825674643612,-0.272975566410935,-0.272405279151858,-0.274408043201168,-0.272430096261594,-0.275094764312424,-0.275642825282361,-0.276312747705048,-0.273333499958452,-0.27585306265253,-0.273716641653091,-0.272874364794382,-0.272337297495859,-0.272170918099377,-0.275283747853913,-0.273374276033276,-0.275939191137594,-0.273761912331317,-0.27563019679989,-0.275734839928145,-0.272383074374119,-0.274715539461532,-0.27266158685656,-0.272363341170144,-0.272182710445658,-0.274888975474631,-0.27583447260318,-0.273759339567544,-0.273060300348073,-0.272840236270772,-0.274238131339246,-0.273166226517902,-0.274248251489442,-0.269893066898059,-0.272864906738687,-0.271692374545587,-0.270459155525219,-0.270563941965784,-0.271141392835151,-0.271134627341812,-0.27612825536609,-0.275699555984765,-0.278750570224838,-0.276210242568143,-0.272512626346804,-0.274256522674807,-0.274247677913355,-0.27318042403543,-0.274647225503227,-0.27442552628052,-0.273845164092681,-0.273402325296606,-0.272047429257053,-0.275156345361118,-0.273709010322982,-0.275379155345836,-0.273476467557737,-0.273307346362416,-0.271923791404681,-0.274734294599766,-0.27261152174369,-0.267123375317885,-0.261123461503485,-0.257684630478845,-0.253460687893613,-0.245214984365669,-0.251894998152298,-0.260229386920808,-0.261519996549699,-0.2681191553981,-0.265928704034683,-0.268589822588779,-0.269755966842008,-0.272891744390473,-0.27408018802085,-0.273216793186841,-0.274899166230317,-0.274131850624241,-0.2758950552193,-0.274119082173625,-0.276227323138718,-0.272759107980117,-0.275765461937554,-0.27371523399611,-0.27558893897895,-0.275609821377128,-0.272717403945649,-0.27405370792559,-0.26425114513284,-0.256915512277118,-0.260539858038316,-0.250197141706158,-0.24873539813907,-0.252933292658249,-0.256254492071921,-0.263484778681275,-0.271250389837358,-0.270746120163833,-0.276813032043624,-0.281553745939391,-0.279935374000185,-0.275861343782273,-0.273614742912184,-0.270819756435124,-0.272738372398509,-0.274423980200565,-0.273027493843676,-0.272244298739919,-0.272621687585896,-0.272766320952021,-0.276151667186501,-0.276099237520591,-0.273178901724765,-0.273096330044325,-0.273481622272109,-0.262425884801748,-0.243719267853944,-0.226051600907857,-0.219714918409586,-0.205997439917725,-0.205612083895766,-0.220402116949089,-0.22697473326664,-0.228216700258788,-0.243839436060477,-0.261686977193225,-0.277136664725878,-0.286956480377425,-0.282119832947189,-0.272809847530586,-0.270788106253947,-0.267247507083551,-0.272297381283037,-0.27180523139804,-0.272961241412292,-0.27391482997321,-0.272091482257172,-0.274069627431846,-0.272842991886806,-0.271829646977668,-0.26730459683077,-0.254714193257632,-0.237078541053072,-0.198004904929128,-0.165242968175567,-0.115506445466304,-0.0542895367942487,-0.0247397242053026,-0.0153231531430985,-0.0131937618531129,0.00142597143379278,0.00280087622576294,-0.00854304666803294,-0.0569164045435659,-0.118945743377883,-0.169671212632171,-0.203575493049123,-0.228769871589409,-0.248904848777769,-0.260773512331245,-0.269472316692174,-0.27015612717208,-0.274035047350679,-0.275664885847285,-0.274224853621764,-0.274334209453843,-0.273715060296563,-0.264780726745782,-0.255269151477773,-0.227535265921365,-0.18495773971217,-0.127105472082163,-0.0504868401358011,0.0235669793650313,0.0946965062522676,0.14858088146054,0.180943426932625,0.191886593185315,0.193017741101224,0.195456884855965,0.1741128145813,0.109693104115013,0.0149889187324428,-0.0678873281213633,-0.13869318691945,-0.1973255259607,-0.231524704581748,-0.244619741845573,-0.258460997548032,-0.269221234345888,-0.272320162200529,-0.273256088922556,-0.273497176183662,-0.273932476298588,-0.270765320218876,-0.258726312807787,-0.237701324224531,-0.200837918739689,-0.137295891888652,-0.0478075942320603,0.0276970899357542,0.126446492235273,0.222532949253902,0.265632297434913,0.268007529235994,0.250703703487318,0.24460258933276,0.239481349918815,0.2166448577434,0.162743936265633,0.0851046263087791,-0.0094069537235762,-0.08626229911169,-0.166208555241187,-0.219582353879949,-0.239835852656592,-0.254168261322559,-0.266767537515277,-0.275778722750779,-0.274144271273229,-0.275359345332478,-0.273103121995918,-0.26694093714651,-0.251111944362612,-0.231305174342162,-0.182986274827651,-0.114573815226343,-0.0122893631475698,0.0967670623345574,0.218583429829352,0.277580668964681,0.269731256461816,0.198615329985257,0.125791099783201,0.105951381604237,0.128691266336145,0.149028364475806,0.148472363194222,0.101242992141593,0.0166566469962101,-0.0602082986903391,-0.142660506264157,-0.212021646607056,-0.230055508533728,-0.253982203841012,-0.264112742937618,-0.275906815765746,-0.272800735473383,-0.274048694068996,-0.274656480004496,-0.268335177885032,-0.254351019452931,-0.223403540509587,-0.177798526860626,-0.0974402951307228,0.0301577179729272,0.165098236764338,0.26016777517365,0.26316594794965,0.180329665249199,0.0336107891502883,-0.0646710897194063,-0.0665509660847152,0.0142297114178125,0.108673518912589,0.159143498535056,0.127205037804056,0.0490986510004338,-0.0504575576362323,-0.148088943407892,-0.198506139867886,-0.231005344522492,-0.254803715751899,-0.268598098587181,-0.275426233890023,-0.275174551177309,-0.273303700523725,-0.273884581330197,-0.268182905668824,-0.258278624310782,-0.232146018996456,-0.180011573851073,-0.0552657964787623,0.08693036123366,0.214552123619161,0.257888723828564,0.204876219457553,0.0746234688507474,-0.0935740752557685,-0.17009291167914,-0.107037462977973,0.0287034822184106,0.161901027520487,0.206416485456023,0.169978229248515,0.0701569060796897,-0.0587848663231958,-0.162983266881039,-0.224726994124197,-0.245631307613298,-0.255828391249678,-0.268716205529344,-0.276197636211796,-0.273114968961072,-0.275134800704722,-0.275456967717118,-0.271894735562875,-0.259894357165122,-0.225956364594264,-0.157234833946887,-0.0150580580170022,0.127695578980338,0.22482480402462,0.233018228074629,0.165543946974452,0.0458124396556465,-0.087007871826012,-0.0951123117711965,-0.00867031268977136,0.126042261404626,0.242424747264925,0.271120020150136,0.192439184895452,0.0509892110563381,-0.123638516454942,-0.235589311018446,-0.269173473744956,-0.260716340767278,-0.257727557935356,-0.271586215024967,-0.27338148397422,-0.275310333574895,-0.274036798279707,-0.275967870459251,-0.271877373966304,-0.261679964980555,-0.231227390691962,-0.146557973622982,-0.00594297604516178,0.132045066708426,0.201713951190343,0.205878591296909,0.178470920914284,0.11738393552686,0.0566007295563906,0.06895119853859,0.141949290347026,0.246743051162122,0.319020569226962,0.282073891661558,0.171254538226298,-0.0146821607027379,-0.200793122543184,-0.295393169778631,-0.305447108791563,-0.282088052587986,-0.265448953070204,-0.27173538219797,-0.274748864504929,-0.273977190013479,-0.275104785753893,-0.275400215212839,-0.271995116478583,-0.263400282512578,-0.235336778677459,-0.158125300093526,-0.0142136281935604,0.106264675130482,0.176280473661935,0.198752055958944,0.226202950088216,0.23637592066825,0.211647805681435,0.21638971091966,0.252197408929237,0.320756715248666,0.345210426060652,0.274820627772374,0.109257025602885,-0.0891244442225855,-0.242151237426423,-0.304823745914558,-0.322377458484769,-0.295067130726803,-0.268629135175795,-0.272346337381489,-0.272841946048865,-0.274239374683954,-0.276012933602612,-0.274138743289029,-0.270721238531006,-0.267548508725819,-0.253288089797695,-0.196739719375241,-0.0635275888086457,0.0577815070995975,0.146511713788943,0.20088438137749,0.25796575312057,0.295322528887499,0.268663365285017,0.256955081340786,0.262704156969489,0.31801179866042,0.319562650794555,0.202207918105916,0.0300943738911213,-0.139089967633681,-0.251972621301697,-0.300532916704061,-0.318248251211107,-0.297837432334998,-0.272288375384693,-0.276099566562078,-0.276164290321134,-0.274063625155835,-0.274388991698793,-0.27217228677937,-0.269609277844567,-0.273730605971016,-0.287594785798478,-0.259204671225584,-0.142065954699425,-0.0113993729713526,0.0970350384747774,0.181553196354467,0.245598312853369,0.274168239741858,0.228673308045954,0.198035113044906,0.209859420858525,0.270423846610158,0.246544273706611,0.123526859101192,-0.032120531804131,-0.148465178102995,-0.233740079515874,-0.291206822451326,-0.306930995975459,-0.28962424669459,-0.270276494138175,-0.2717852167658,-0.273412204156943,-0.272255616027805,-0.274233269617068,-0.273189962999393,-0.265266395077905,-0.278007665297728,-0.315258354874294,-0.310134401593091,-0.233971164873476,-0.106956335694618,0.0322127852143114,0.132248486597321,0.207148657464059,0.193600203148708,0.125431465083282,0.0843264360123618,0.13500260241538,0.208143122125175,0.200784425274644,0.0620074049508994,-0.0586070154361579,-0.140297760369736,-0.212313274298008,-0.276062797610101,-0.296623070517663,-0.285220732151436,-0.276001432803774,-0.272166188703065,-0.27280086132692,-0.274941323912581,-0.272486212713394,-0.274420374686912,-0.269695459179238,-0.283637231108594,-0.327564586259385,-0.33759300563536,-0.286378295552653,-0.179236644176029,-0.0291307570777979,0.0926256275719888,0.128241449362517,0.0808076448498705,0.000268697157121693,0.00471123442096677,0.0911314816049429,0.172545578731452,0.157975939639059,0.0488774402061942,-0.0618762840849916,-0.127354273205024,-0.199223178059464,-0.257139631850692,-0.285135754714789,-0.287593586801007,-0.274687494802077,-0.275602618202923,-0.272937325054843,-0.274979329004954,-0.274675948648541,-0.270879103369436,-0.269448242877239,-0.283309938207194,-0.329221259046728,-0.334315515582691,-0.279524916030035,-0.18750318721859,-0.0583819032105618,0.039406803642689,0.0454025581386094,-0.0267705918401411,-0.106172989817201,-0.0533318893201667,0.0636403622787824,0.137547896780114,0.115902084634408,0.0417571045131072,-0.0420459580338708,-0.117880517066811,-0.192449536683513,-0.248200443414179,-0.273189826322285,-0.285485013599102,-0.277334408708358,-0.274010239292787,-0.273015014938279,-0.273924543985693,-0.273904232426354,-0.27243649436894,-0.26766259797093,-0.27827003349342,-0.318162706293388,-0.321825999770179,-0.252308442979714,-0.152406792447843,-0.0611098590903414,-0.00972405057108854,-0.0399295796291732,-0.129751130842654,-0.15338778817189,-0.0685235489616946,0.0450569998955909,0.127606222742749,0.121740290479378,0.0582869531838377,-0.0196199739192108,-0.110294805974034,-0.185630664042139,-0.231241228004008,-0.265257696992166,-0.278523422684469,-0.278748431223983,-0.273797662015484,-0.273250125329017,-0.27633563807002,-0.273786070017356,-0.269450245744842,-0.26034776633886,-0.267434493760646,-0.28908098380601,-0.278216176751758,-0.205091746968878,-0.147778866218489,-0.0781339076238959,-0.0459475019976603,-0.102090540686926,-0.130384144388308,-0.10512131411116,-0.0281669024691329,0.0687159926802553,0.136165859602529,0.1498665048467,0.0802629002704825,-0.00277394668065975,-0.10937464923985,-0.181909708246049,-0.225436632105357,-0.265516074220341,-0.27770688822403,-0.275649442933385,-0.275543170799424,-0.272950621779818,-0.273026244841582,-0.274235819594077,-0.270207389985803,-0.264043085099723,-0.256165445636995,-0.25862537633942,-0.224701407752109,-0.153491643863451,-0.107453363040358,-0.0565212763382586,-0.0305467470183601,-0.0447048823847683,-0.0268725684953625,0.01346695866863,0.0720263841858367,0.128747518629376,0.179649094482256,0.166987095136925,0.0812411137876919,-0.00948671639658569,-0.121523482000547,-0.198153794678443,-0.243251582440541,-0.267937509100804,-0.275110822817569,-0.275202346212979,-0.271401176302308,-0.272780400407929,-0.273414771384487,-0.274331288150717,-0.272202699326961,-0.264693689351713,-0.25043282015642,-0.230336008410304,-0.190440553896654,-0.13274227794041,-0.0569747674044408,0.00492587249642768,0.053923081200538,0.0907377684150155,0.13414987489959,0.145540748276428,0.162130267993935,0.18311947997149,0.185727108466715,0.138726950637325,0.0617532622961163,-0.0538763679432042,-0.146144351348694,-0.207714971211853,-0.249689484897458,-0.274126389206559,-0.278568489998071,-0.272035270967573,-0.275550298998269,-0.272242604942763,-0.275633728129671,-0.274290030499469,-0.273396453195565,-0.266820994990069,-0.258286806262382,-0.231942110517759,-0.188772140726512,-0.122828198845206,-0.0483398548027076,0.0324147203600147,0.100725491372537,0.185693449579299,0.232540128081585,0.235813839086823,0.208092088153708,0.187356413710927,0.158975875485459,0.0957822036693443,-0.0050458561146581,-0.108639556165115,-0.173856217115407,-0.22840896790122,-0.258334952573669,-0.2676331979476,-0.27303014553594,-0.273335421124698,-0.27279596256704,-0.27570287564609,-0.274178271930016,-0.273786528395338,-0.2742828971677,-0.274846657240935,-0.267967616536498,-0.250386011975054,-0.221840606987545,-0.168827718901326,-0.0992089610097619,-0.0248741789674394,0.0575935837155715,0.148414383306338,0.195482399951723,0.188910691479376,0.160638635138555,0.130195091656588,0.0689554415886183,0.00127079776606246,-0.0807533320586294,-0.151536495610662,-0.2018339631097,-0.235361989298379,-0.256873184852148,-0.268810803284,-0.275048351272015,-0.273253882919376,-0.273030437506534,-0.27511994063481,-0.27514426289278,-0.274247263970739,-0.272191703997155,-0.274238833945759,-0.273126115571328,-0.267567170345374,-0.26175414255726,-0.25172477688725,-0.218889119929322,-0.187100385139459,-0.135838312669678,-0.0790091988247586,-0.0399428579451929,-0.0359766566568608,-0.055721006909121,-0.0723595318391691,-0.0894100678229918,-0.109982321997402,-0.15725576471452,-0.193778651222996,-0.225098231126478,-0.253772842161716,-0.264813936591448,-0.272806603365355,-0.275536228803296,-0.274445886146328,-0.272519508696336,-0.275870711057969,-0.272159903552336,-0.274029319942487,-0.275715728525104,-0.272160015558744,-0.274689757463482,-0.274469899391631,-0.271997299289339,-0.273524706715682,-0.269813119863767,-0.262867904536167,-0.249151821953517,-0.227148074978156,-0.212237847331176,-0.202311833121521,-0.20582936122577,-0.216979597240989,-0.215684896525414,-0.22857603161046,-0.23919566856259,-0.249817921851324,-0.258539352477216,-0.265776272198948,-0.27274947541836,-0.273664824180797,-0.274271764140664,-0.274245302467211,-0.275696189355833,-0.275395105135401,-0.272408875214398,-0.273868576277373,-0.273387625063381,-0.27326108565724,-0.27366458347215,-0.274930085410948,-0.276590407767544,-0.274638406935699,-0.275926741439914,-0.27177408750746,-0.273962787781949,-0.27463797472309,-0.27674251534151,-0.271274710637778,-0.271116144108929,-0.275437504780884,-0.271978043961298,-0.272005044865739,-0.27456146418264,-0.272192507656131,-0.275574403215641,-0.275674486587246,-0.274164926897677,-0.272111104878545,-0.273552832183058,-0.2738963215602,-0.274512507686018,-0.276236707122456,0.259680960500836,0.253238818593672,0.252103422487423,0.252268680341501,0.251708331517167,0.250195339255097,0.250376089358095,0.249805383757272,0.252289677453039,0.251868530067287,0.24904116283006,0.249195737350974,0.252568063434852,0.251890107560793,0.25268046316756,0.249885372555692,0.250685766281107,0.252050754506896,0.253292768389413,0.249295175299977,0.250329789890601,0.251712734289203,0.248984525339369,0.251293892091504,0.252415054049038,0.249504079810873,0.250440743923303,0.253131846049003,0.250312692112261,0.249306116102308,0.252707251218682,0.252694806715801,0.251447886677962,0.250054127587756,0.250837209058634,0.250358323274686,0.249857807615834,0.250073809061138,0.250524991361494,0.251749834591729,0.251348780203515,0.249364663338932,0.251172781636611,0.250117456426765,0.250691065678663,0.252206854791409,0.254776932501684,0.251187899727252,0.254774527393644,0.250843759828672,0.253759837398427,0.251883606569093,0.252450228763236,0.250745146407753,0.249521066694897,0.25164986000913,0.25313410367844,0.251545557378296,0.250825473401227,0.250521625797805,0.253213964540082,0.250508204037348,0.249180516191713,0.252170408545154,0.251707224297483,0.253679964801345,0.25508230742396,0.256487855698661,0.255330718594179,0.259705384498164,0.268284123587556,0.268893005338682,0.276130706725877,0.273631980079107,0.275244238618498,0.27690449100676,0.271424128352505,0.266426680612047,0.261243446391701,0.254664389496299,0.252836293969499,0.253201800228667,0.25039906602846,0.252092825999218,0.251129956733985,0.251207124219856,0.252902692680808,0.252600831594222,0.250849083362956,0.252341626107073,0.251094407992967,0.252611394743612,0.251239678547981,0.2547895425638,0.254693422615143,0.257018462133458,0.255842173795851,0.254303159552507,0.266525397247361,0.286706238303552,0.295227298237972,0.301000654534033,0.312873097919166,0.310936530601149,0.304410812662422,0.292442072735625,0.27453767709632,0.264448563427284,0.25516922359777,0.253293394551604,0.250400028608146,0.250461053702374,0.250128702834372,0.249882788510521,0.250971361115662,0.252838296933473,0.251452101595773,0.249178733330543,0.251738209690555,0.242735535897827,0.243216970180584,0.2297475392983,0.211379213192804,0.196319600972528,0.174100508303662,0.162713877950008,0.162228760642318,0.168885163595156,0.17062310687682,0.179616022046587,0.215244367116114,0.247431595864504,0.272443062724274,0.276695088683854,0.268325955597744,0.257654592049571,0.255496431617019,0.250413339951607,0.248827225798882,0.249342444993849,0.253314296477677,0.25156877914335,0.250850197586023,0.250085537788283,0.252602565046672,0.248324143190328,0.235763098666737,0.219955282234105,0.194112557586489,0.147098580060472,0.0974513290974293,0.048012942871602,-0.0188691591270398,-0.0527035502093443,-0.0614758454418777,-0.0706260423323918,-0.0853729479082233,-0.0825585531096613,-0.0596841219606203,0.00175903117460101,0.0795670278485671,0.133457340719816,0.18773580398882,0.225384854294152,0.247871320797377,0.248565984055142,0.248124015628179,0.249362607095541,0.249675854129969,0.25205508536336,0.250308625690708,0.249597322233395,0.245593581813124,0.231853441194982,0.214088193654431,0.181178013072229,0.118957429264472,0.046745416726566,-0.0218274573467357,-0.0813271826047125,-0.133413424410549,-0.171148785971495,-0.195940073795779,-0.203948619684691,-0.211351447785197,-0.215309205859034,-0.196730661027652,-0.146925602690884,-0.0638931265790526,0.028128030845498,0.109670952664622,0.184347857618694,0.232730286827792,0.246551067845878,0.242652898253963,0.245918013426716,0.251240325523755,0.250379529796798,0.251919027463611,0.249598723160167,0.240231170323366,0.215981785669237,0.18578057111735,0.139650159587911,0.0519260340643159,-0.0340130432441662,-0.0911609045573968,-0.161931455996177,-0.222667549103116,-0.246984009869015,-0.239450049199842,-0.220687377142262,-0.223018468670271,-0.233936960911998,-0.230382867881517,-0.19121040786184,-0.13960069709847,-0.0519807450486614,0.0325059560361453,0.137252864137309,0.211188613480537,0.237665340332655,0.24186323365751,0.248304872008504,0.251553358881231,0.251873804433835,0.253072654069446,0.246467153973199,0.231476520733715,0.207421968421098,0.172557752630792,0.107743181050572,0.0244900268385636,-0.0625547696922266,-0.138747679478439,-0.210450708127969,-0.234418573896065,-0.219042646108325,-0.153477329416192,-0.0942063164613633,-0.0918464878479237,-0.138150274080839,-0.183823516875477,-0.195924360328183,-0.175508309744932,-0.109207416015556,-0.0296029329010376,0.0803765176492466,0.179895941061881,0.217496916171862,0.240373405072296,0.24607694202899,0.249738393484424,0.249679822243452,0.254061897259503,0.243725775528786,0.236455076598602,0.209065071244559,0.163296290291465,0.101227704601284,0.0206819658331673,-0.0799092771339399,-0.15900614445019,-0.210865735276377,-0.193206872662921,-0.125102022504675,-0.00207818275250351,0.0642470626221002,0.0318900344693371,-0.065881827277157,-0.160022168452545,-0.211034235838459,-0.204407120919741,-0.156261309241212,-0.0655197727559467,0.0488239751867778,0.144970017095072,0.204653482518076,0.238202518503948,0.247345975599417,0.250708214105841,0.250501565399324,0.253330696290455,0.24790296765757,0.239784600497567,0.223733920493003,0.175982010921136,0.103772568567002,0.00802691492794119,-0.0808375547831422,-0.158502583231176,-0.159572995079001,-0.108724095022898,-0.0129094408694867,0.100229405263841,0.128847905889793,0.0482111064201313,-0.0804537287494148,-0.196198976920398,-0.240542602763706,-0.230290264563659,-0.173034748475244,-0.0739558418849632,0.0426517931733685,0.141304697236206,0.203131148677116,0.23296275729358,0.245138910781397,0.252544468217812,0.252960087456206,0.253632435463547,0.251239153904633,0.247578477494074,0.234302886276282,0.17485867275435,0.0935080005763893,0.000671638279075468,-0.0883189077271553,-0.140029487443112,-0.12071680443218,-0.0775932236586281,-0.00499148801719176,0.0694130177978165,0.0596949001612047,-0.0235664982213078,-0.139049160163843,-0.229547608127147,-0.262970398841472,-0.223104898158985,-0.135676011784521,-0.014993583751058,0.09499359250549,0.165582336180097,0.212464514968853,0.240780056554962,0.247826500598512,0.253314297942497,0.252484254891501,0.252874247455481,0.250345980977823,0.245464078453032,0.232513363897693,0.181675698403228,0.0946532193189104,-0.00623768542940325,-0.0858219509206864,-0.117355869009695,-0.106535134137888,-0.0894645015631716,-0.0832658548062838,-0.0538419644688726,-0.0626830206259879,-0.121582942121247,-0.200625614633428,-0.256313728740588,-0.23412313092101,-0.172297616377146,-0.0547738982744336,0.0680689591687725,0.151771641487435,0.191273605633889,0.230141015635756,0.243746788963992,0.249306926706011,0.249096910094339,0.251632472438965,0.251570020007319,0.249534250180138,0.248631955702367,0.22885141663346,0.178952968994801,0.105621490781161,-0.00140030182195062,-0.0782839046279505,-0.103328978582587,-0.105012000222305,-0.140965927916904,-0.186730821647331,-0.162747000220655,-0.158655031272567,-0.184479286185517,-0.234621017488965,-0.252289194808583,-0.207871472671963,-0.101133058157932,0.0309519294802373,0.12544475381179,0.178247925943066,0.208625575280288,0.240871500646104,0.245382807210717,0.251295220565166,0.253192268452138,0.252873956760924,0.251884452230364,0.250835306385611,0.246680738913377,0.229359505930678,0.179119657909617,0.118305772581194,0.0279623583103241,-0.0401904797431447,-0.0758728163548601,-0.102937647993165,-0.168947346641304,-0.215598411536338,-0.182416412899279,-0.169855214988475,-0.173329297181762,-0.214998900454136,-0.214572407909366,-0.140532020601037,-0.0329179287313238,0.0655577971037571,0.142946451446073,0.191324283643204,0.223746291206743,0.245412849570058,0.25115490398987,0.251355306376348,0.249880266924832,0.250070738751987,0.252275846211559,0.249823402471304,0.244044191146402,0.2292510995102,0.191495304071129,0.150412271620986,0.0803720269158239,0.0155887079762946,-0.0264823675934518,-0.0819041960067464,-0.148550569708922,-0.175859121887397,-0.128004617759928,-0.0978676590969176,-0.10793489484194,-0.168873896739808,-0.151571703306153,-0.082283937512469,-0.00540856096178562,0.0662579438269979,0.13262489461585,0.190769719981124,0.223113841748659,0.241357807908726,0.248543864427355,0.249804869519381,0.250820395784957,0.252922284334403,0.249257218415367,0.250309989174019,0.243841427590565,0.229090801217184,0.20097176430844,0.165238918763444,0.132493275480599,0.0834736634140818,0.0289825967979437,-0.0339645736269686,-0.0963471957859963,-0.0914850325754722,-0.023904517308449,0.0171172499643527,-0.0309195345879256,-0.118571877720407,-0.124207918725932,-0.0523412705475147,0.0166391649581983,0.0516593768311113,0.108101251938908,0.175996788954049,0.211334910075632,0.241693498981134,0.250172481856879,0.24964891950675,0.251457832627809,0.249846984789763,0.252121666677447,0.251207292438615,0.24170587661921,0.225834948315949,0.199099947550707,0.174387775713077,0.146876612765103,0.1266646667935,0.061002448358181,-0.00247590670136805,-0.0320227954812851,0.00690177887002214,0.0812217098735807,0.0934946597728676,-0.00115564448050472,-0.0947667768129382,-0.0914137671050549,-0.0413111340214677,0.00944799697286168,0.0409547731454706,0.0984764895419099,0.165187244116098,0.210606018402385,0.241853512950799,0.251349866521062,0.250367436440092,0.253003171159883,0.250691336369261,0.250828927706606,0.248350819422067,0.240004804425327,0.215074812547518,0.18713863993811,0.164136470123823,0.131588724269131,0.103148488754873,0.0570338353330956,0.0165056730092824,0.0240840468513409,0.0915910586206583,0.175770916385912,0.127505698822921,0.00751685967185449,-0.0727783115340984,-0.0646723296182137,-0.033159761617703,-0.0120082794550343,0.0371283593580811,0.0963987580932934,0.16256742183053,0.214207792211109,0.243376402640911,0.248104177852571,0.248465036211932,0.251817533342613,0.249001994460486,0.252091487058085,0.244593621539706,0.232903880760188,0.212765378093115,0.186611124778726,0.149385253170609,0.0978335131788481,0.0469678130802627,0.0192534703954409,0.0273046125043045,0.0869321263309678,0.177139811345366,0.207820036225861,0.134414060924649,0.0105417602028692,-0.0687293026207042,-0.0748855835665769,-0.0557710437919979,-0.0375631555912932,0.0208871886368371,0.0917907024559994,0.158072892644915,0.214482608195156,0.243758001859724,0.249678060452515,0.251691868732776,0.251300183818809,0.251692045947053,0.250654602240118,0.246283666630846,0.226758888463604,0.208322483592067,0.168038173219138,0.114491085155454,0.0471647731867162,0.0106641236147972,-0.00581063820906061,0.00964795992853342,0.101694328759696,0.159351428798377,0.154891243816449,0.0799834188580353,-0.0263591314952153,-0.0951731921032084,-0.124943957107473,-0.10560312107125,-0.0695342814313915,0.0118007264044744,0.104015748091124,0.168321433721888,0.227505995220525,0.248106446875669,0.249838879981507,0.252243980473098,0.252564977181317,0.252133947309886,0.253352297080763,0.246027632185286,0.231032197779263,0.206709033440731,0.164120796407736,0.0916880912359835,0.00625340097996388,-0.0328424886225344,-0.0617649040252568,-0.0538781407499008,0.00464458214340821,0.0252409354360905,0.00550284592324101,-0.0509156954719321,-0.116939713788383,-0.168396563661097,-0.180418774918674,-0.126134623483363,-0.0632130517461895,0.0438427116074322,0.14106439730403,0.204111833232333,0.235343553305328,0.247373469027148,0.252023990459486,0.250268056736503,0.252771354195928,0.253247856550969,0.251195316543537,0.244853614530584,0.235385594806861,0.212976292990725,0.165432116547192,0.0935141777171477,0.00867590256350948,-0.06551081832101,-0.117789736757403,-0.156110901205862,-0.166184813128312,-0.177298522149631,-0.179806406723617,-0.191299751669788,-0.208638665097644,-0.211451258118808,-0.173339815726676,-0.101131857553058,0.0101789172968202,0.111333878554125,0.18068705507745,0.222846615143346,0.243048395852338,0.253971844686262,0.251450753446259,0.24926295914257,0.249815686032035,0.251515172332575,0.249969740070619,0.248159824305492,0.244430828828965,0.223309898808857,0.189967196898168,0.123911003190682,0.0470301827606585,-0.0374133440261061,-0.11594445541477,-0.171505433579991,-0.238631517866784,-0.271278581307058,-0.263933076171397,-0.240188428165175,-0.21678345797691,-0.174657670942615,-0.105446617623992,-0.0036213181479001,0.100708545855171,0.165834902343238,0.210455575780539,0.240191349844759,0.248636939346501,0.25261662254127,0.249927252560623,0.249490261262787,0.253317959572259,0.250916358747745,0.250582845752243,0.251497799147751,0.248969966423863,0.23778453057455,0.220420760855029,0.187850620137444,0.135172968054805,0.0647356190223654,-0.00684876473127378,-0.085233915910945,-0.152390233502185,-0.18363950039338,-0.176444153079782,-0.14735860245758,-0.108619200579796,-0.0432904726401977,0.0314997050105881,0.105618057539925,0.166011306471416,0.193701129545362,0.217848109469939,0.239023231570001,0.249862815820536,0.250760266733625,0.250711516671916,0.252170590900536,0.250211202947612,0.250060542849769,0.250020646715799,0.252304477086212,0.249443988899512,0.247547773864095,0.24411051779458,0.238518870288006,0.229011330853635,0.204255353662072,0.184755911970062,0.136886734880354,0.0917897037326691,0.0647535203249522,0.0682183970419391,0.0804857346185414,0.0919906177070238,0.109543906462858,0.127365476004207,0.163780912781754,0.194774772135434,0.218088084191508,0.23606340903456,0.244443089442727,0.248961172664537,0.250313587801057,0.251819191248447,0.251197910461167,0.249181505209372,0.249150718302665,0.251052891401043,0.249388001385502,0.249307575745118,0.252658056689469,0.24991877380725,0.247543462782253,0.242205425202456,0.23805431869075,0.235259778977086,0.215229265052479,0.200596217010291,0.187173954295076,0.18569698764028,0.186734503156698,0.197998053372497,0.200456291939387,0.206631741753164,0.226102160754024,0.235529518151497,0.240332254605609,0.244708864862276,0.250824348532203,0.250105556602283,0.250654888023466,0.251857679499684,0.252228789735066,0.250407662689179,0.250990006217126,0.251081992895,0.249070861460394,0.250502678245607,0.251256656098282,0.251683978203042,0.252338510784569,0.249319386125245,0.251612532139873,0.249640984103017,0.245345359066575,0.248727859686852,0.248638007012848,0.248280955994297,0.244489471788914,0.251447876270081,0.248149122080064,0.248530901336654,0.252042978382032,0.248613204692093,0.252683130922471,0.250360700981285,0.249368949049831,0.251019708612728,0.251714704251209,0.252992768442442,0.253151743896995,0.249311363716942,-0.226379510183464,0.0728191656398163,0.0759124905857164,0.0739254907116786,0.0733562181416636,0.0733878779607259,0.0740343931686684,0.0758397005190826,0.0752447237969373,0.0734418353178643,0.0740698785607871,0.0721573159527872,0.076194684883112,0.0742044629846657,0.0748868656957022,0.0749146761608574,0.0729291612669968,0.0732079098563728,0.0751649403938346,0.0761867576277024,0.0763145331072354,0.073448577375224,0.0753899433863376,0.0761964873514304,0.0728430983160968,0.0757296134216317,0.0761395374248465,0.0755358241823522,0.0723928373844469,0.0751703511309485,0.0722872461835511,0.0733365325960933,0.0729430268187005,0.0720497678510417,0.0742578276188133,0.0755916425926897,0.0763046134167031,0.0771709416190885,0.0755973444002952,0.076730874888812,0.0727679273989802,0.0752060211020652,0.0751343030804813,0.0763055203751077,0.0748321430134216,0.0717855400523119,0.072389879223347,0.0684775520876024,0.0707048017366057,0.0729503726792377,0.0722770751467731,0.0724294325189775,0.0755250400353582,0.0739764087308453,0.0741413017737532,0.0747613125560015,0.075824072911898,0.0741752087762089,0.0763933411703737,0.0747800003212328,0.0763175469000306,0.0748993665623675,0.0760148438677623,0.0741176802214945,0.0745077379012263,0.0715750633083044,0.0767091910829026,0.0740007592107187,0.0791791772669985,0.0674786139754996,0.0593201360610598,0.0531855411926389,0.0388210524679916,0.0289249695527638,0.0275436389408951,0.0279744212047055,0.0402224404313927,0.0473863893415176,0.0548850389474785,0.0622524982115516,0.0691423700655004,0.0743990877654435,0.075797479444572,0.076017917975891,0.0734526236628858,0.073005295347548,0.076029032348803,0.0744706960691291,0.0712650395072714,0.0733328214289616,0.071884685557895,0.0727259896353905,0.0701497672222377,0.0666283360884293,0.0682955824940327,0.0603158556170586,0.0485379533365143,0.0341267236247882,0.0174388334527758,-0.00406646890031166,-0.0123461718648883,-0.0267921970468274,-0.0357354994231636,-0.0249790743282624,-0.00558889272262992,0.0201879690587483,0.0427567172582598,0.053923481472999,0.070878612394355,0.0760154280390539,0.075767871794422,0.0720542252746161,0.0734306863970839,0.0734190962477013,0.0753579072267754,0.0742576255824016,0.0714486740305118,0.0723585510152553,0.0712667447734405,0.0671097110065226,0.0529056356022717,0.0484701244253825,0.0398720274949469,0.0332131792408815,0.0239730156177511,0.00948249400048339,-0.0105501879792803,-0.029195207901593,-0.0420301723782368,-0.0459651284750817,-0.0430511772084477,-0.0258599685067683,-0.013230364912476,0.0310506712198405,0.0483254497432101,0.0653128997345352,0.0778816322892162,0.0765058735059751,0.0744416357888811,0.0738996616749161,0.0740399085678614,0.0731469685769618,0.0744574978667746,0.0742829163588534,0.074071458460616,0.0735393773650161,0.0761164669649301,0.0571785369129415,0.0511037998251988,0.0425284503191636,0.0382895840554358,0.0331481260767234,0.0298714452680941,0.0220747250865151,0.0023218659046232,-0.0191211863391772,-0.0345594918361638,-0.0285537403881328,-0.0109660840441597,0.00212712755167354,0.0185845772415869,0.031803421703013,0.0416197707438555,0.0542000520100271,0.0668162496849683,0.0716546381382919,0.0763421801340413,0.0792415506615519,0.0742227395772193,0.0761669697296227,0.0726842088485147,0.0743272642926018,0.0739706918442294,0.0774742193507134,0.0713314320400732,0.0540565219938645,0.0441122899268344,0.0486364147240589,0.0556984062921563,0.0355173047790288,0.0224396704830607,0.0230377884400941,0.00549275798755689,-0.00475286829032526,-0.0117523848113379,0.00503688484060923,0.0347284883031922,0.0479649888846185,0.0450787120615442,0.0499160705199482,0.033724308036938,0.036631875762015,0.0465199989869576,0.0724917351569916,0.0750916264725532,0.078141893971412,0.0723961128935135,0.0729168681638584,0.0747885845544403,0.0725377077818659,0.0776842411364469,0.0755323702614244,0.0665322253364277,0.0478059948964922,0.0466182150116428,0.0585823691486974,0.0419269296345977,0.0309917488248831,0.0269201284896644,0.0123906338385221,0.00574449010739142,0.000730993596020588,0.00677375000218442,0.0270298134390329,0.0549607371413966,0.055740394014693,0.0489759701858712,0.0423787546253605,0.0385459776707974,0.0290371099545944,0.038444219319304,0.0566184300079839,0.0725517665899641,0.075148672808058,0.0743364650630686,0.0732250047109727,0.0725044857057026,0.0744150483770192,0.0760643793553948,0.0754507266216309,0.0664941322435253,0.0535939294938641,0.0574733159757092,0.0589899527408495,0.0500354074122059,0.0380542649584179,0.0208289098636506,-0.00212552602821236,-0.0256064047209907,-0.0377529719744952,-0.0159754012493811,0.0250549506599081,0.0447621749859046,0.0443993899992263,0.0396794558411874,0.0405553629737418,0.0574846820850009,0.0537779824262144,0.0450529397966001,0.0698591067827169,0.0774563070229033,0.077982440652489,0.0755511452593582,0.0726727516459796,0.0745667384620124,0.0715869621936602,0.0703764145656441,0.0682549830389352,0.0672484355037984,0.0602105048988748,0.0561203899043926,0.062788217410419,0.0559765957069403,0.0380776359646689,-0.0143769454172117,-0.047444849090946,-0.0613150803495761,-0.0448775832246557,0.00241012840446311,0.0341468106422016,0.0405209794730529,0.0401245846813284,0.0389334985393462,0.0554203333998091,0.0851401335842412,0.0782770214967435,0.0633121378846598,0.0828682377894853,0.0825486904694241,0.0759347764604206,0.0750717508479062,0.0721394453317795,0.0752212313994468,0.0727369927627599,0.0684414533249627,0.0694986351955051,0.0729058130274568,0.0672273032445354,0.074773387969189,0.0737391137629761,0.0602838042168598,0.0171973798384367,-0.0461635185913833,-0.0851523856761528,-0.0705452734377964,-0.0162696788305339,0.0510670059971911,0.0597860759973196,0.0443636743960589,0.0374367718890678,0.0414332341644369,0.0807437819528661,0.109666000620559,0.0961794595348568,0.0817241892672897,0.0854151449141467,0.0822917412934919,0.0792879989881256,0.0744943223954268,0.0740003853722768,0.0763790144198748,0.0741050546621766,0.0700412769570496,0.0676443066223653,0.0744193633391926,0.0870399231278288,0.0894326170857763,0.0865273325453859,0.0476815086400243,-0.0176710619784439,-0.0720716476002211,-0.0777050184261904,-0.0392412446141994,0.0472759689147263,0.0971360298212906,0.0679108519684224,0.0362732074210311,0.0287535634771649,0.0432421478553253,0.0708088353304882,0.095026276449445,0.0793909356903144,0.0795125601828688,0.0770813120035138,0.0802836232158596,0.0783783132497402,0.0737181642933094,0.0752727784064074,0.0726694379676098,0.0752339894347835,0.0685913916036754,0.0709812389329175,0.0856220303749904,0.0877840172656387,0.0944108070041569,0.0597052432365453,0.0112245505961627,-0.0308765242199051,-0.0640124206616084,-0.0332456640166895,0.0365589235595241,0.123153056785408,0.133413170364503,0.0680570524869168,0.0114823610480055,-0.000865783931430483,0.0167201657870859,0.046826482354739,0.0478085431466885,0.0472465379875279,0.0653169542021608,0.0726387339784133,0.076224897979788,0.0776502578576481,0.0753030525519728,0.0759666828595125,0.0732221044964448,0.0755929575729746,0.0722937316155377,0.0731664605619521,0.0819661296377325,0.0857793616263195,0.0767894115062933,0.0393039172459154,-0.020204264400467,-0.049924096911076,-0.0459408948648654,0.0115963849057946,0.109781685787646,0.15562160516463,0.115277852608591,0.0225675404249595,-0.0315666478469557,-0.0302177072777554,-0.0245655787487881,-0.0113009801345838,-0.00284933658706066,0.0300405126579495,0.0479852614273503,0.0625683775140339,0.0718905610507396,0.0748457896490285,0.0721296065522073,0.0726265740092766,0.0736705007211745,0.0751846119834267,0.0763743189798613,0.081399277207678,0.0816549578990462,0.0660224631929263,0.0348107398009121,-0.00585486969154213,-0.0432330029408502,-0.0642605952503842,-0.0379072099690108,0.0262181146547977,0.102388263500363,0.0972499070871045,0.0264632501068716,-0.05715191880207,-0.0928626425353736,-0.079118673479708,-0.0794543439781441,-0.0504451104243444,-0.0283968499819781,0.00611166359575377,0.030576305187053,0.0568220483005392,0.0729972246399366,0.0717790710329726,0.0752532482600022,0.0742758257071973,0.0746329426652802,0.0746357874602711,0.0761451625706775,0.075639183598633,0.0619235908872716,0.0267608621848293,-0.000224305181632113,-0.0453612836053392,-0.0778482539071856,-0.0913526510894065,-0.0551098273413217,0.00551578473268509,0.0348720165052291,0.00402496001800885,-0.0621587206727325,-0.11634323834279,-0.119231946901264,-0.110207175103049,-0.0915829947855429,-0.0609911547292144,-0.0275598526952226,-0.00318671482783625,0.0300159958350977,0.0649193453514168,0.0720119289893105,0.0732948763256241,0.0749349617252113,0.0735805410580089,0.0726455299842338,0.0735550130994563,0.0759638622882242,0.0645295763808939,0.0428707867479842,0.0023161180288087,-0.044754720119743,-0.0796755362284471,-0.0917610406161974,-0.0902785420981805,-0.0494757044506178,-0.0166722604891473,-0.0269517189557655,-0.0571706864775663,-0.106176870925742,-0.119861389702539,-0.114883692108277,-0.117875344041175,-0.102031647015513,-0.0652943636561414,-0.0219771623301022,-0.00428759314572972,0.0398358735866235,0.0652572606057235,0.0691440933266737,0.075827124986524,0.0757229868190879,0.0732150009509024,0.0758750416654663,0.0736597853493536,0.07534464762736,0.0582734911907939,0.0229980901152639,-0.0222114525173931,-0.0709420639745611,-0.0824936961836265,-0.0847860698821619,-0.0728849467004247,-0.0392735471768712,-0.0338709367079394,-0.0614013554675358,-0.101485764444995,-0.117607270391696,-0.123658060046198,-0.115117885996194,-0.118562983343839,-0.0923507792116975,-0.0644246154555461,-0.0327307187575675,0.00211777799568205,0.0437132410527894,0.0597146614089588,0.0662661785187443,0.0739749524278105,0.0719619783114416,0.0731792937701513,0.0725280593421091,0.0734115178500397,0.0757446755776076,0.0490477734335737,0.012397762764131,-0.0417708434330373,-0.0670447197398254,-0.0663288818601295,-0.0603877974509626,-0.0503415942081264,-0.0533562362898893,-0.0675274774381955,-0.104992508934713,-0.127703837332585,-0.133022215113719,-0.123863686366248,-0.124582370411887,-0.105124720461794,-0.0819363626637029,-0.0460731437149933,-0.0249881448427344,0.00588455311378812,0.0307510274397364,0.0504474095341605,0.0613660803921581,0.072294169064461,0.0724649934446918,0.0736970478884704,0.0742305321698383,0.0765454058827051,0.0770236701513495,0.0409208637315521,-0.00822630847808631,-0.0414471396579703,-0.0508180957121669,-0.0474654073792816,-0.0404989087463814,-0.0540411924304705,-0.085411518256568,-0.112049851714335,-0.143841573451678,-0.148922514964328,-0.129556110664337,-0.127212337555525,-0.108930853327202,-0.0757466444921072,-0.0460968473902819,-0.020056972707121,-0.00273592214168242,0.012588349831286,0.0346524309777952,0.0469985230321671,0.0640637167658577,0.0718439615718574,0.0729696743574634,0.0728500807620966,0.0724381822748089,0.0752379737491929,0.0723199254166467,0.0448411207596031,-0.000630770080798192,-0.014996475301649,-0.0245908496391189,-0.0323240982249192,-0.0480455574939417,-0.0584661907774565,-0.0994142596111465,-0.13208755197501,-0.153664049573506,-0.135852204291913,-0.10229830990806,-0.0720848963607912,-0.0421882334560709,-0.00836218818128283,0.014115033223431,0.0182106527761737,0.0230185542050062,0.0256755925230545,0.0321502445788436,0.0481996610294227,0.0678501527856176,0.0725656596316647,0.0732024882387575,0.0738158304206369,0.0741966117748999,0.0731007088947433,0.0713654091587487,0.055369991768935,0.0207071551807513,0.033299633589657,0.0357722381376384,0.00947955230848914,-0.0040038264743167,-0.0250296848392375,-0.0688151143166325,-0.0935429932040093,-0.0857329116082035,-0.0478221056776334,-0.01400876558796,0.0246596507881008,0.0547676656819802,0.0705676013057731,0.0580110504296045,0.0488518305517605,0.0418327603064589,0.0466523072267578,0.0374625002344844,0.05250889648362,0.0683968995553272,0.074359113859597,0.0735029003202472,0.0753946804141238,0.0736592135208232,0.0743158502361595,0.0744514390021796,0.0651031358837433,0.0560382953765584,0.0638817014714935,0.079431598911549,0.0828852899704471,0.0709146365780581,0.0665616375204672,0.0505743851330052,0.0481825564257622,0.0583719369754792,0.0838735795086768,0.111145097407447,0.130284080901043,0.123310445570903,0.0990012164159897,0.0767444341119486,0.0692093952636514,0.0609167963153291,0.0480296932195798,0.0467364291945526,0.0590754957795938,0.074228351027904,0.0766659075153178,0.0729311548205609,0.0757489703859255,0.0742218891868817,0.072938819820581,0.0737064680178514,0.0722064390999566,0.0742486920685072,0.090498391318138,0.112105684921181,0.133568171477776,0.144058067648796,0.141648432862588,0.155787292451365,0.165156222211744,0.167948973673596,0.162017733278007,0.156726649821271,0.145352994329253,0.122081864443001,0.110378362204045,0.091425281434296,0.0821191110135759,0.0749365909850033,0.0635908457997396,0.0689580693932611,0.0714811208620038,0.0765278152608062,0.0768756413153396,0.0755832808141454,0.0755846995050471,0.0760342990109563,0.0744998165998401,0.0729483252705733,0.0715460246812032,0.0733256981565108,0.079293654984006,0.0928344295614123,0.105200239181435,0.116552721855683,0.129504919872059,0.148679103312001,0.158590513777624,0.15026858426829,0.13422754502647,0.123943877681752,0.124934769578759,0.120481217979359,0.116781239297636,0.100223702656804,0.0907842492421356,0.0867165711132544,0.0763921696597654,0.0718750857309016,0.0751661769526191,0.0748013848321259,0.0736550499261914,0.0727457015883217,0.0726896685485031,0.0743084276889535,0.0722807418042097,0.0741554428058653,0.070936707973328,0.0743967166102036,0.0678617750791381,0.0661417808933531,0.0687100878921216,0.0667034367417706,0.0783779055672962,0.0934097423897013,0.106182383022217,0.0942735294818065,0.0863377947036547,0.0944665246925657,0.100639269280238,0.112073862332012,0.107870811007723,0.0946140772095801,0.0881683181206896,0.0824197180034816,0.0776483259975738,0.0764458662892207,0.0740535831177322,0.075490606739447,0.0756323912335312,0.0742636216837752,0.0745805413366451,0.074188262717397,0.0756434556611015,0.0722956207084504,0.0735322829197103,0.0718923055726747,0.0760060323727797,0.073929006628017,0.0729164252112082,0.0704520027598216,0.0775782619451962,0.079415900259207,0.0776508255048934,0.0749141071246586,0.0764220876105671,0.0758121748308755,0.071965617516928,0.0732990384130204,0.0810930170049847,0.0782981437535103,0.0796208247409709,0.0752205863288475,0.0756418179053015,0.0737659171642866,0.074965375309988,0.0754337975875567,0.0747951691902946,0.0723796340228535,0.0732236809058296,0.0747044116859092,0.0733924469044908,0.0745192275550433,0.0730129767921281,0.0748215491014284,0.0744155208838165,0.0741971580746624,0.0743274364270343,0.0737851448255275,0.0749488846871358,0.0718160835485465,0.0754912423999336,0.0738806104890693,0.072381345956774,0.071706144551532,0.0683878024928915,0.0749182837838355,0.076050687198182,0.0766531939099577,0.0746092517800086,0.0765065365513059,0.0748700764593936,0.0761013241101182,0.072186125294941,0.0737832216205228,0.0754842190749896,0.0720581022943645,-0.0685865119537259,-0.143996334435302,-0.144020407006686,-0.14295047204243,-0.144318796704279,-0.140966878745411,-0.145126717504084,-0.143003847893165,-0.143021417624069,-0.143073369582483,-0.145084360961498,-0.141372129157185,-0.142978676774254,-0.141760766499825,-0.143734254460979,-0.141121470771731,-0.142401525153507,-0.142113469869186,-0.140837954311096,-0.144951689453772,-0.14436274147766,-0.141462373916555,-0.141961405060281,-0.143797841052423,-0.141897068525372,-0.144556964070373,-0.143535588062021,-0.14457437292767,-0.143050133779978,-0.144926569103213,-0.141964067132896,-0.141827892335312,-0.141503487873689,-0.143557909186512,-0.143865701574843,-0.142950675966619,-0.141340285536161,-0.140859802919754,-0.142781593784176,-0.139167000695754,-0.139557377462694,-0.139916410462647,-0.137106822429656,-0.135686584817712,-0.136130517614408,-0.139261391391318,-0.136155098781256,-0.134743290740373,-0.136016602155855,-0.137019271145541,-0.141609481315126,-0.143175221588177,-0.145040180316435,-0.14462925391922,-0.140823435935126,-0.142824625406335,-0.144361874475539,-0.144578203604412,-0.14504841744337,-0.141439288465485,-0.142630757874191,-0.143568689921784,-0.145134096843835,-0.143224981903851,-0.141043473408456,-0.142371739599949,-0.130296424418353,-0.121509324680406,-0.113388974977379,-0.102134204958417,-0.0739011199851752,-0.0530584556347653,-0.037922434717553,-0.0394861794584135,-0.0346957750599736,-0.0477588410519219,-0.0728385717813611,-0.0869273168215435,-0.114201318723816,-0.128442030278366,-0.137809147232624,-0.14143249932448,-0.142454082246938,-0.143960235100959,-0.140936607530092,-0.143250050327843,-0.141449011344862,-0.144740525699312,-0.143463023816466,-0.142644284844756,-0.144419271414599,-0.145017906018566,-0.144170740425104,-0.139365544113035,-0.129109710862423,-0.115786136663717,-0.104315717972025,-0.0838885710808534,-0.0400014699488195,0.0140053713027928,0.0389930433250206,0.0579787413333086,0.0623967584369882,0.0487495508206285,0.0119235942569508,-0.03383651044441,-0.081956596884493,-0.111018833350914,-0.130166648544625,-0.140887608438442,-0.143137361126879,-0.145272287393319,-0.145052329030146,-0.140918898911243,-0.14106620309034,-0.143567818619441,-0.143453770535214,-0.14313640478696,-0.145754754629589,-0.147404798514618,-0.149237927358736,-0.15139129234931,-0.14517762817746,-0.122336340908408,-0.112543563776912,-0.0596851742332072,0.0233295493371163,0.0850922848347663,0.111517503107101,0.110852585177017,0.0902382908353033,0.0631021934942659,0.0131297210204927,-0.045473291167522,-0.0872922226488936,-0.117888597842443,-0.130943375736633,-0.140349198775875,-0.145307926987118,-0.142583770939577,-0.143336461185304,-0.14152893985786,-0.141477321256233,-0.140579071000465,-0.141468719957407,-0.143962058409871,-0.147807959878691,-0.152272787977992,-0.163196894732908,-0.176090794784463,-0.17946107624038,-0.165252951388021,-0.149496018915942,-0.0632347704987621,0.0377332895960035,0.091466067909637,0.111541598542685,0.0842560954078856,0.0159798386424318,-0.045364446483055,-0.08608872811931,-0.114405896864135,-0.132127715499784,-0.124858508726129,-0.132659794097425,-0.13680888572461,-0.142318818343445,-0.141805912276156,-0.144237000568877,-0.144744738058912,-0.141775609049857,-0.144069836952183,-0.144803233873122,-0.145946052272212,-0.152935340424914,-0.163528779011882,-0.18240511165369,-0.208039461960597,-0.22182878929121,-0.205235772861529,-0.14639599584155,-0.0662914158987816,0.0370818770493241,0.0916298818228216,0.0987000632737334,0.0374503213460967,-0.0635417727234977,-0.153139578376992,-0.197803134796206,-0.189943226918428,-0.160140804844572,-0.137769414733133,-0.127616702936504,-0.132540530613524,-0.140649622319147,-0.143703677036597,-0.142284802306905,-0.141472604089541,-0.142516588300944,-0.144998825946915,-0.146883898157248,-0.149764316268966,-0.162953851132881,-0.17647272485135,-0.207855570531869,-0.230257891463859,-0.225523704563899,-0.209392904082346,-0.151195495140837,-0.0488125996539316,0.0585653362815718,0.119859448034801,0.105288343190725,0.00506527301376754,-0.130790881250273,-0.232460250804334,-0.277063047812709,-0.238626903029222,-0.199960675548046,-0.159875012236104,-0.130780317896168,-0.135957500314929,-0.142743324080131,-0.146253734277455,-0.140905798483223,-0.142976435835443,-0.142387991356257,-0.145961515396608,-0.148976557720904,-0.154289607032562,-0.17250135901794,-0.192763228641221,-0.216864133568853,-0.232824162004554,-0.232844884351543,-0.195817285349362,-0.118169107913231,-0.010510051753253,0.117355710968037,0.175456551643434,0.135107755452075,-0.00692337983616634,-0.169899336747642,-0.274215615733526,-0.305499034488678,-0.272997204760671,-0.246372571847641,-0.199379398513878,-0.150287228961035,-0.149260475954961,-0.14659016877308,-0.143010732053289,-0.144249325893665,-0.143771994887999,-0.140840606215462,-0.146658518204841,-0.15097735596053,-0.157577558839613,-0.178202198436024,-0.191242254537677,-0.207850688085778,-0.234239597250851,-0.216286301072578,-0.164385742596362,-0.0634465468133056,0.0664432935231454,0.180634635931538,0.212246003936838,0.134004558856544,-0.0370813374886742,-0.213850080961928,-0.301854324190497,-0.314812893224773,-0.305709148419469,-0.270271796130556,-0.220921002481238,-0.183355333727356,-0.164478570593743,-0.146196346951842,-0.144946303158682,-0.142311504638464,-0.141032804044015,-0.142947228298467,-0.14177741763993,-0.14710636207586,-0.157742738271193,-0.169839548481341,-0.183251222835767,-0.19943859365509,-0.217829672350162,-0.186010574650081,-0.0955715379950859,0.0133509401587589,0.116013949820805,0.207691590776952,0.202895876846722,0.10200945376303,-0.0742272939161909,-0.247473446186581,-0.309202283349853,-0.310305498848764,-0.296338422562317,-0.265364771514754,-0.222764584085568,-0.193429146243596,-0.170839186334909,-0.151735117062817,-0.144560844964426,-0.142470213979966,-0.143642515815443,-0.141314092263107,-0.144304380019301,-0.144391318580194,-0.148909956556901,-0.162188111314528,-0.183296295726234,-0.195692915684251,-0.185652100743473,-0.124529761789991,-0.0195157763480319,0.0572621174380388,0.123265638377432,0.183759601505713,0.156730433359946,0.0645052586804092,-0.0851173950745558,-0.235072474119,-0.260077463365625,-0.247664338803725,-0.233207080381127,-0.218650214954348,-0.185457660650013,-0.171392484492354,-0.159005456458466,-0.150276322864582,-0.143530984806753,-0.141536223719609,-0.141361603786811,-0.141700602150474,-0.144977355582854,-0.144728883541088,-0.144971950380157,-0.153329906772492,-0.170781165614153,-0.177495373365787,-0.14958357303751,-0.0547997997104215,0.0375278271703415,0.0814657437024844,0.0837262738221002,0.12344750438716,0.102860302559012,0.0446081620573195,-0.0733048285625657,-0.167813676484208,-0.162391367284129,-0.139996729381253,-0.124523866420296,-0.1159958796468,-0.118006597552229,-0.138973123437902,-0.14747666006393,-0.146969150824329,-0.145705568812162,-0.145066873115894,-0.141775545402441,-0.143371734330277,-0.141458687771043,-0.142711355235555,-0.146117908519762,-0.151991089834407,-0.165713924408923,-0.154647457522876,-0.0968074555719208,0.00174949864089831,0.0708102981471895,0.0527378816897265,0.0190294812257367,0.0670659720141488,0.082207217216483,0.0656922605099339,-0.0160658139721171,-0.0741458173191741,-0.0614289857871401,-0.0290145457169353,-0.0205447198637165,-0.0308579907728688,-0.0667835679257058,-0.109960858862965,-0.133684081581482,-0.144936285125252,-0.14248585499204,-0.142606117426098,-0.143412888901287,-0.143355780974799,-0.14388718955029,-0.145353655397392,-0.147671709123045,-0.155342625930187,-0.151186188134034,-0.116530964896687,-0.0433816277591324,0.0499930251271622,0.072290419776079,0.0109592916955199,-0.0255424931244727,0.0644388895632026,0.11133727012638,0.124348389475187,0.0406177819280052,0.00626772443446059,0.0195563789560027,0.0545577757766433,0.0526296610992991,0.0154383424200328,-0.0312220543977827,-0.0957247465689458,-0.124943059057309,-0.143133215433766,-0.145409036905671,-0.143944845157869,-0.14182729455414,-0.144582464756113,-0.143716654042172,-0.146427673131791,-0.149177953395826,-0.153531834574941,-0.135996090080586,-0.0778589240210872,0.00395964965477007,0.0667653039080792,0.0583242500270229,-0.0158308398512716,-0.0195696600451103,0.108363696084621,0.167701277832985,0.165327514346374,0.0728990674315093,0.023247322122316,0.0465863510796154,0.0816611830923211,0.0766084105657443,0.0327467493159396,-0.0254596411287517,-0.0910479013149844,-0.132644422444154,-0.14351771618979,-0.147117215232045,-0.142883098346014,-0.140848694316672,-0.144393901965729,-0.145039869151529,-0.146752672406202,-0.150394277767419,-0.148332894340914,-0.125753065329683,-0.0492175637370764,0.0376369449597322,0.075573809678726,0.0513128020663793,-0.0212616284696784,0.0239585810203563,0.167629614689811,0.217686035953252,0.17737418339162,0.0437671772189171,-0.0041007696936847,0.0585539348918239,0.0968826295406085,0.0844171996054483,0.0235014028113897,-0.0413086558125143,-0.110321395414309,-0.141206355452304,-0.145684525625382,-0.146186812567148,-0.142135681756695,-0.141188341040231,-0.144809218849844,-0.145266542668458,-0.14693224709333,-0.151543626873916,-0.145358292055575,-0.117435473341395,-0.0342337729988816,0.0446661725183301,0.0687201291381264,0.043146290597991,0.0154229274296544,0.0864502522331502,0.205924166070645,0.232433649451076,0.155528356696671,0.0363043252537432,0.00987745609996328,0.0740653166187468,0.102946025806325,0.0703628689515528,0.0050226760771549,-0.074547251117862,-0.13142757525205,-0.146713557646226,-0.150161145313899,-0.146377742703101,-0.144647523714605,-0.141906698464379,-0.143962972587964,-0.145346046779117,-0.151364277905737,-0.154825503936371,-0.148884898675694,-0.115186161061297,-0.0528153381210712,0.0186405563647957,0.0448137969765729,0.0523450596766044,0.0728897520358911,0.151982982435755,0.243911889474104,0.240584402747591,0.164141028624081,0.0840852068762352,0.0705253271438547,0.103176084335512,0.0849629745841939,0.0241586560686379,-0.0510111950923504,-0.109842098695861,-0.14306462085398,-0.151539719768605,-0.147473184019443,-0.147403477454306,-0.142141174597669,-0.145098295062666,-0.143666328750832,-0.146723276495906,-0.151945831782893,-0.155248961582203,-0.152283647879462,-0.130113288001128,-0.0968282901135367,-0.0414214101941295,0.0134490478454389,0.0726838355021657,0.136105822729271,0.224031582615752,0.284278825477656,0.276429209600321,0.20221768718097,0.128864355067321,0.0981741649090721,0.0823826873641127,0.0190183283830108,-0.0576403471966292,-0.109092132647016,-0.150291774136597,-0.158342270348804,-0.157192980042419,-0.150154734544508,-0.144305245508501,-0.14515324806032,-0.142163542736097,-0.142881994293857,-0.145664635542719,-0.150201136699915,-0.154806742309077,-0.159740203081119,-0.156891083757862,-0.144141345483382,-0.103881529116309,-0.0304661895705052,0.0586742726883826,0.166676096113198,0.2503873145065,0.301613034425105,0.289484963411595,0.213510415443473,0.135935652052351,0.0492302795353262,-0.014635242617885,-0.0941271046024236,-0.146177173878302,-0.163332469432453,-0.175932915212523,-0.165505330163548,-0.15151688518778,-0.144742612942969,-0.143251758460187,-0.145030875185389,-0.141899732794114,-0.144335738030214,-0.145942741417932,-0.147019515495875,-0.154517740622784,-0.166413190516048,-0.188394847016515,-0.206877664766403,-0.18019961651684,-0.119505734183046,-0.0218679672353706,0.10234481068365,0.195011787126089,0.24338515687332,0.220112132348358,0.145999385822568,0.0390364404024208,-0.07046987998285,-0.1525043816033,-0.192439959545402,-0.19368876871138,-0.181847189442702,-0.169675875349651,-0.157251799854744,-0.14901854026716,-0.143541428734312,-0.144206421801736,-0.141754943258158,-0.144062757675908,-0.144536491716295,-0.1432170919332,-0.148139199976898,-0.150881570659554,-0.165060845142927,-0.195893193483381,-0.231308644783179,-0.251453406146569,-0.245215237668049,-0.190319689035529,-0.0984470374399958,-0.0126373467965782,0.0457575158153039,0.0425483827442148,-0.0145471546905064,-0.112125955061501,-0.190610519505395,-0.223989723037247,-0.210225970107112,-0.190037680013949,-0.168517002449236,-0.157834823959296,-0.149045066232126,-0.146697328877748,-0.14372742862513,-0.143475722925724,-0.142026555041017,-0.14389866547769,-0.144797863646953,-0.143237302203721,-0.146724055147387,-0.149735999940601,-0.158742294048338,-0.184730095748388,-0.21917478967702,-0.24905671827571,-0.264551857143561,-0.251179228903103,-0.230640608578717,-0.174016848025493,-0.122703774201964,-0.0964931238175815,-0.121595850340029,-0.178170707378521,-0.215847098000844,-0.216351552262434,-0.190573990961929,-0.174584242157156,-0.159400436828297,-0.150118567645323,-0.148518310488381,-0.143340016827361,-0.145447604695734,-0.14269867711137,-0.142725146615501,-0.14211868850258,-0.14189492578596,-0.141673422042919,-0.144037304526418,-0.14668951377588,-0.153533213852577,-0.160434794738112,-0.179946600074268,-0.206372944096933,-0.223063224221028,-0.242353458243084,-0.255486147804924,-0.247005184702347,-0.222072880808678,-0.203610265557799,-0.205643499504717,-0.201274160296921,-0.19859712045308,-0.182717103768729,-0.168736256332947,-0.160276845513351,-0.152857650152552,-0.146470310676157,-0.14441590163256,-0.14215917454849,-0.141795379447801,-0.143836687863051,-0.144736683350241,-0.144260112207635,-0.141830145085334,-0.14099224051682,-0.141861207286234,-0.143269214873674,-0.144582694992017,-0.145312208675974,-0.14693002184981,-0.156933519640888,-0.162818099705805,-0.176678546158338,-0.19849802540271,-0.20618747423478,-0.203767230043818,-0.202647821450765,-0.193062444765775,-0.1899290285936,-0.180876068546054,-0.167439971734645,-0.160629592756439,-0.153346060850286,-0.148666629650397,-0.145578655651915,-0.145621337348861,-0.141923128104629,-0.144553438441988,-0.141577112186677,-0.144613504638357,-0.145110415740235,-0.143227335926352,-0.142436515374944,-0.144659139228615,-0.141085740129948,-0.140756985648551,-0.143381951867803,-0.144144357665527,-0.14666369024047,-0.149709604553388,-0.15855771700807,-0.161431491872204,-0.167803571501811,-0.166587232923493,-0.164337795528468,-0.160959065915275,-0.16111732687011,-0.157219658312921,-0.151809478059281,-0.145730444828357,-0.144416794612069,-0.145762643483916,-0.144497357670807,-0.144944757929121,-0.142666858529465,-0.140809510381937,-0.141381009404773,-0.144882533453157,-0.144510507274384,-0.144422283485071,-0.144990345606085,-0.143798701652561,-0.141940528779209,-0.141395024043576,-0.144862990025814,-0.141869854733801,-0.144439605342007,-0.144944567008882,-0.143922209371931,-0.141791861045412,-0.144358387616027,-0.145177637146576,-0.147067228612816,-0.143707869836957,-0.144021103344914,-0.141956178622743,-0.141471641622495,-0.143903386277906,-0.142987134306583,-0.142354006497397,-0.142644502265568,-0.141999001781666,-0.144538791966695,-0.141510748398035,-0.143812493343305,-0.144235862349784,0.179986724941987,0.027866552070203,0.0255717957609906,0.0271053912382836,0.0250984516477177,0.0265450892442019,0.027294625324346,0.027237901423863,0.026091785662997,0.024726729059547,0.0259574002417126,0.0265555208291409,0.0277135567382994,0.0270379686483143,0.028194169550457,0.0248537711864509,0.0266635248512315,0.0242985823530205,0.0254903625546884,0.0250162010441165,0.0270201358548666,0.0280971546783722,0.0269690989880287,0.0283671487913962,0.0271432437303502,0.0284471331260208,0.0260390502358375,0.0253799353219407,0.0258078227075293,0.0267817663741757,0.0280555041912584,0.0283257209406142,0.0251674155703324,0.0242377482355791,0.0253371138614622,0.0257614189462529,0.0266089522359176,0.0249772706506635,0.0262788535759026,0.0290104844418041,0.0278882396630831,0.0282998193676836,0.025644336996482,0.0279809398674307,0.0284397724812953,0.028231064831437,0.0286640059968179,0.0274332620964392,0.0266416919508355,0.0252797924642713,0.0278450550114879,0.0253990907553615,0.0282908799946977,0.0246609849937404,0.0263120449560206,0.0255551639745707,0.0265823363595115,0.0260808316266785,0.0259383653528076,0.026783440207186,0.0247683546640066,0.0281887184797201,0.0275569563155781,0.0269635988757413,0.0247629227102359,0.0267810397168605,0.0347448732321326,0.0401000018762486,0.0462726944335423,0.0471916215135966,0.0494184426351604,0.0532665141383144,0.0538914780121079,0.0509898595514174,0.0504250835170126,0.0471349010651388,0.0412170514882652,0.0353578577633032,0.031823243898941,0.0273247009033802,0.0269368994450363,0.0262841197610465,0.0255126996802256,0.0279306314157685,0.0265436141370488,0.0262334297054186,0.025488847421512,0.0279458574160709,0.02480277074118,0.026375797298726,0.0257431785341152,0.0274582521391513,0.0226903850399838,0.0257459996096165,0.0291545611943142,0.033736167404271,0.0310212175798882,0.0309150599726903,0.034005114972713,0.0535944439899104,0.0659037836822528,0.057962632950025,0.0632166328825556,0.0649883200817297,0.0569995551871402,0.052433980918764,0.0450304584171812,0.0419188095497693,0.0346523656732789,0.0294469160888844,0.0282100211520285,0.0278990744020889,0.0282546053365929,0.0266453694309789,0.0284570348278073,0.025602513535954,0.0252898000421619,0.0249501910044583,0.0227712418190001,0.0193258592411215,0.00984172645251605,0.0102553522662433,0.000630189784382402,0.00585115430319123,0.0066716004912315,0.00918506325593228,0.0149585682798049,0.0242578944130591,0.0273696533010012,0.0227347915522727,0.0373767618866318,0.0509662090572418,0.0634737371182252,0.0663327065325773,0.0520986747864381,0.0436344661342957,0.0410138043386949,0.0283296032777553,0.0273271591719958,0.0241447143213079,0.0247116207320702,0.0278838462113352,0.024402855214583,0.0250436432034336,0.0245723783957023,0.0238919606912908,0.0240281765428748,0.00486997779010992,0.000328844883913458,-0.00462140241783833,-0.00197111793292466,0.00346209952617337,0.0162778236150837,0.0391365391961309,0.0450328274585939,0.0506316337026704,0.0527379399183479,0.0447263586141386,0.049373310871927,0.056843194949637,0.0559741298163015,0.043462005876088,0.0335012409913573,0.0316588565952541,0.0428995543560191,0.035479000640065,0.0288139714558833,0.0287103679641789,0.0258012044434189,0.0241893747211357,0.0280860313037972,0.0283647050024943,0.0258029562080921,0.0289636893726167,0.0223996485908074,0.00154152480610961,-0.00540787639806293,-0.0149778594487527,-0.00873707882580616,-0.00378275609447195,0.00761690978378013,0.0320657322660898,0.0446869368016314,0.0686686853359589,0.074575841981677,0.0712522327938917,0.0595551107061995,0.0557559722088092,0.0272117518161491,0.0280650199220172,0.0217021627095217,0.0140769173287127,0.0252642827792929,0.0416475326597723,0.0282063376266517,0.0315811866312837,0.0258865584697999,0.0275291088632275,0.0272161020186134,0.0258341084539002,0.0267545141101949,0.0214389060412653,0.00926120549528211,-0.0144229001913372,-0.0286903752570993,-0.03931002210591,-0.0341234139509685,-0.0320228152929182,-0.0252149159888168,-0.0104263603476811,0.0131049326088595,0.0303133553413499,0.0308483059904935,0.0272891192059507,0.00900042657165088,-0.00596046193121303,-0.0253519366224298,-0.0214662749733709,-0.00253420729200276,-0.00941610085890737,0.011179179174883,0.0165319978352268,0.0173316167061765,0.0256406583191846,0.0244448244675879,0.0264465166389561,0.0266534824436312,0.0258825319321951,0.0196572846546799,0.0129767694902784,-0.000614611109812614,-0.0287673754947456,-0.0414062104742595,-0.038702406514723,-0.0498689359646249,-0.0602514772800938,-0.0558041833754178,-0.0435193548558664,-0.0252224374550501,-0.0306317020916413,-0.0349488504588136,-0.0378248513271064,-0.046826327501102,-0.055312377998505,-0.0720278752251912,-0.0572207908190251,-0.0268454085361744,-0.0179430870558642,-0.00179288512463592,0.00938680314440931,0.0200731145484698,0.0285193122838217,0.0273333466126373,0.0271953984710285,0.0258959380587241,0.0263358172904087,0.0153066811044651,-0.00176738989756748,-0.00840866530334099,-0.0365539135997602,-0.0359565391489668,-0.0506333592256773,-0.0500170886441644,-0.0608991130926214,-0.0651774546576143,-0.0530025052351226,-0.0415204615378246,-0.0452604553187516,-0.0457717416826775,-0.0629438350791153,-0.0789241435074299,-0.0722030794802191,-0.0790785796406065,-0.0554204265507957,-0.0118712269440048,-0.00299745419788292,-0.00740246331860037,0.0138109392843832,0.0278939694662587,0.025110690538376,0.026981371228926,0.0255611010826453,0.0231889726184511,0.0201539678256159,0.00856068786710379,-0.000657986337917563,-0.00984158336272132,-0.0178813076986826,-0.0109868832263212,-0.0109761211885654,-0.0198060539545413,-0.0246403251549928,-0.0372113493025753,-0.0399225023938386,-0.0208924364116452,-0.0164849534168883,-0.0133746715534034,-0.0333165446954126,-0.0621146986670448,-0.0836265294253462,-0.0712336826267313,-0.0313859565077455,0.0167540160381827,0.0196997821785862,0.0153977719841132,0.0123950360838691,0.0222476056633729,0.0244930706823582,0.0264431589901798,0.0260450478289153,0.0275270995015091,0.0227958379053599,0.0116674523808506,0.00303304156088453,0.0108507748275817,0.0208309988101033,0.0297255641063269,0.0351357498873118,0.0226006905099358,0.00324087718370002,-0.0114422416843601,0.00474675656416993,0.0387607768600917,0.0576510697287216,0.0467642997566543,0.00470611348715739,-0.0437595894910014,-0.0710110832858231,-0.0468500003911083,-0.0144852173249003,0.0309631128616335,0.0304696018896894,0.0284472623476544,0.0219780213790847,0.0255315821711848,0.0249875084157797,0.024093841841125,0.0255133990040164,0.0257380830882988,0.027186783703437,0.0190063710264285,0.00942448802698138,0.0289571759519549,0.046157250159574,0.0636886369006266,0.0500456907554389,0.041938982281695,0.0343645148027108,0.0355095489516479,0.0658882440181379,0.0931871321507979,0.11747915117628,0.0997273494156122,0.0292936767250733,-0.0378094314583885,-0.0493760327022192,-0.0285365105567169,0.020272445396383,0.0448813245393205,0.0462930980530604,0.0466435445897516,0.0300127398819277,0.0240284661669726,0.0239099103733446,0.0266440310472567,0.0265056294254691,0.0246062011740107,0.0273320413243337,0.0218395088584342,0.0202512163387321,0.0347700602360834,0.0650241801012797,0.0764943065081825,0.0647773022939848,0.0520779650260266,0.055539557605231,0.0682043036482939,0.0833193475925798,0.121037258571266,0.140966546952375,0.105102291337561,0.0260608860220297,-0.0389525010458644,-0.0354187414738304,-0.00781559737374149,0.0342067011889945,0.043475780531188,0.0512207362908994,0.0527201187133608,0.0406923505484062,0.0263189700428338,0.0263140165076419,0.0253470827831134,0.0271536006163448,0.0237897906224312,0.0270717496332507,0.0229741805920335,0.0230755426861473,0.0344479050950627,0.0681103245763093,0.0758250869679481,0.0669576366229673,0.0636811566076887,0.0544812202550539,0.0660685494927154,0.0716551658310464,0.105970665563398,0.114535814257262,0.064700946068842,-0.0143769613393244,-0.0547178126493173,-0.0431843476874165,-0.0113863359374378,0.0376179623189836,0.0500281855323648,0.0566685773060619,0.0474796578954865,0.0446173898407337,0.029573539396509,0.0274695976841752,0.0244519123397318,0.028622739326691,0.0246056556998238,0.0277317349627772,0.0273201120222503,0.0222800306140453,0.0311632452616157,0.0412312640897733,0.0577298182829661,0.0532132603046607,0.0460696140220329,0.0360830823431209,0.0337940693209807,0.0510271401138479,0.0807972431008517,0.0770347522979814,0.0103672185418794,-0.0613375311323204,-0.0689449147822238,-0.0348291694196544,0.00270628980907101,0.0409490236011543,0.0517272762868305,0.0560132737719073,0.0418476440610057,0.0385281822880072,0.0284730129435466,0.0236301747730957,0.0249392924184717,0.0282593873790418,0.0250999841577045,0.0284499974088662,0.0215114285310485,0.0161542542180219,0.0188977548655305,0.0262573843084517,0.0341055472492755,0.0377353063278059,0.0391247052420362,0.0362652230819638,0.0346059296018415,0.0434751488320947,0.052176316384668,0.0349147507315769,-0.0312053825190906,-0.0854110771194793,-0.0712509020916256,-0.035049236339532,0.0202937998147574,0.0382914665843798,0.0534177076535609,0.0422691898985739,0.035791751283329,0.0400678093440679,0.0201060495292133,0.0227759538310854,0.0282957779413612,0.0251419124526001,0.0268754722966497,0.0287593619103165,0.020664160092616,0.0132026053734226,0.0146771207732701,0.00277485404953046,0.0109567861114599,0.0249819600805721,0.0365604842603034,0.0445535322358081,0.0537233512732154,0.0456603826056841,0.0306728457690048,-0.0154044449998166,-0.0632136160261635,-0.0804086185159984,-0.0582844004364106,-0.0102347682914897,0.0377561635470822,0.0359243178738402,0.0274819629513498,0.0262229848101179,0.0262432087477075,0.0274545362096518,0.0200323545019367,0.0249051940482505,0.0261667029630658,0.0279016317671414,0.0267395731639372,0.0254398899728094,0.0233967850089781,0.00587544718861378,0.00540837414741982,-0.0141480142467958,-0.00180419670987213,0.0238470292608845,0.0440556569968696,0.0660311199748014,0.0608517315564971,0.0377228976810465,-0.00937504131018072,-0.0567783732251991,-0.0760700166944561,-0.0580123143507363,-0.0312551449150512,0.0275732925067048,0.0357949292207909,0.0227202683572643,0.0173874499611297,0.0146013738464501,0.0108406246983033,0.015458804020816,0.0141884396410905,0.0226767058695066,0.0246337010851204,0.027041721795533,0.0262408745443946,0.0291878401025817,0.0253311519789604,0.00565489201425431,-0.0165450479621685,-0.0217129149956822,-0.00692149218539279,0.0226041590795323,0.0507576571503786,0.0586836118583793,0.0501247920734182,0.0215669498646177,-0.0275864441754824,-0.0638538887956032,-0.0471282234209686,-0.0221752143543843,0.01013740473181,0.0407645024168904,0.03914167721545,0.0225594934287818,0.0136817244709698,0.00124936364104864,-0.00328822018654394,0.0051437607722475,0.0153043775602074,0.0263996611771011,0.0250403174242789,0.0279921290226461,0.0252174138840877,0.0278153619461005,0.0245694326507425,0.0101354637940202,-0.0198496025903526,-0.0187706248235235,-0.00791124931484198,0.0234995434609957,0.0358358286872801,0.0512246393090673,0.0368758990662813,0.00511202046422543,-0.0347254150771086,-0.0411724889852717,-0.00941539406948734,0.0287331019799967,0.0512671313561063,0.0547669911529379,0.0408807821610115,0.0208169635342816,0.00157040355279024,-0.0143434624145654,-0.0105757960776207,0.00431747077926309,0.0203944152870496,0.0245532792765567,0.0272458020655213,0.0269264746202373,0.0277378912435722,0.0258040883233188,0.0254665915740552,0.0119011639981832,-0.00753833434500355,-0.000655364547294659,0.0137427615626575,0.0215543303798884,0.0328810181897305,0.0300755711494362,0.0114230065859036,-0.00698905499379554,-0.0113041483919053,0.00524765592772166,0.0295758010750324,0.0611417833186286,0.0657625512880685,0.0575420236327787,0.0404799931282901,0.0202680334375566,-0.00291400043383014,-0.00302335663245055,-0.00793156385317313,0.0085472881993953,0.0180087422591566,0.024909115919923,0.027050312974516,0.0267476192468535,0.0280748232505026,0.0268321247994766,0.0221293430977082,0.0186007555651491,0.00659058684963349,0.0129170869029013,0.0242253058950129,0.0251362559581301,0.0217155515560522,0.00218818977013028,-0.00558097966057529,-0.0144345490991533,-0.00590237692554839,0.0143277085105128,0.0375231089715571,0.0505537556725221,0.0638574466058193,0.0502279435546332,0.0314807904024784,0.0201764684430607,0.0111636982210441,0.00462429449528192,0.00428494379789575,0.0131604229665576,0.02384594724668,0.028602228154033,0.0257685062991771,0.0267276807654572,0.0278897022643208,0.0270863619820727,0.0243715503909913,0.0235313498674479,0.018129089607578,0.0201880528307572,0.0354835179426897,0.0423752901399254,0.0323239879949986,0.0169621881417505,0.0114045201173035,-0.000890622730236953,0.00717534424835333,0.0139025111776176,0.0369015155294224,0.0464403999085425,0.05457645594068,0.0458970433351364,0.0355064694237861,0.0248556408937705,0.0210334520980965,0.0194730520563001,0.0216565354275161,0.0255913855894308,0.0250708211321104,0.0255800580776874,0.0245345535828656,0.0278160815314222,0.0268104768605803,0.0273696295725396,0.0265851601270174,0.0203269377662153,0.0211526707694279,0.0195736517259527,0.0201945267165408,0.0124375901986579,0.00210700863980501,0.00102781588825791,0.0113152540172319,0.00673057119719285,0.00481803256351099,0.00844341400580613,0.0128097699642672,0.0293998059002189,0.0422694566991797,0.0428023311799107,0.0364861164040237,0.0350523229126239,0.0357205190092803,0.0289309999582402,0.0244751485083407,0.0263614445293482,0.0248456379913327,0.0256490339107589,0.0281338504731973,0.0280295326012621,0.0267136237581537,0.0241635069587303,0.0270524436265444,0.0244733957316371,0.022254394925668,0.0125908330740386,0.0028795882028224,-0.00929406142120717,-0.0280549890456005,-0.0280720873581668,-0.0202248773308064,-0.00653669787668492,-0.0111235086607347,-0.0139873530396023,0.000110583496098652,0.0143001242315338,0.0314015603816329,0.0329564877162509,0.0317053545799364,0.0300844266374578,0.0348938657154635,0.0271453861403024,0.0248373226490641,0.0274714770672397,0.0268027687262246,0.0251050392529996,0.0271873072413248,0.0272182421981267,0.027295570223258,0.02671485486057,0.0265237883980351,0.0265177242967325,0.0223626222058273,0.0233312472852455,0.0140038047119809,0.00308222890758331,-0.00808623300402504,-0.00721535242049525,-0.00600913954994921,-0.00471122840898039,-0.0112707066204947,-0.000264952510722406,0.00718537939591669,0.0086125254321106,0.0176612448050958,0.0222999348773327,0.022868510355335,0.0257256847290224,0.0276443261296353,0.028614521737747,0.0250706183672962,0.0245691250057866,0.0284649925911388,0.0260230995193588,0.0271868291357382,0.0247961442504473,0.0260409297213563,0.0267987184233067,0.0255946691863756,0.0257935115546577,0.0250745048540197,0.0254824132126315,0.024665221683889,0.025241650271928,0.0270393226797233,0.0225244833033812,0.0230682297252444,0.0175624570785253,0.0186359796707086,0.0198606789943587,0.0189631784086173,0.021366028576538,0.0272093721259982,0.0273525780058064,0.026653464976305,0.0247158996982233,0.0260633314252853,0.0269095691518948,0.0249684854103016,0.0248510351572009,0.0280223325454591,0.0258844483848454,0.0247574514351318,-0.0224904679981516,-0.0686614774390435,-0.0707572870385389,-0.068695340493837,-0.0706559590190902,-0.0702055408433039,-0.0698351234726136,-0.0699751410204848,-0.0700247960528302,-0.0719546775508774,-0.0707640109444308,-0.0698692489171406,-0.0697795599657121,-0.071220906258119,-0.0724032949002486,-0.0705467484315736,-0.0718056588841729,-0.0713613670273034,-0.069072455201625,-0.0702810390062557,-0.0697495959817823,-0.0718958938692805,-0.0724663085466416,-0.0713859397424019,-0.0685845264169346,-0.0702419661705604,-0.0706390029814509,-0.0693216623338182,-0.0698116324570152,-0.0710723210261197,-0.0720824070334554,-0.0719669769778127,-0.0702820047159839,-0.0688091461062798,-0.068671851999733,-0.0722717587913147,-0.072098602081091,-0.071636593191528,-0.0685408909072194,-0.0713376328144648,-0.0716674845557019,-0.0705882823833345,-0.0735021933263704,-0.0695978186591685,-0.0694108564569594,-0.0730881109399223,-0.073347310904432,-0.0674748593883267,-0.0688603235920238,-0.0716402239810167,-0.0703783417272002,-0.0685903841491769,-0.0709614546517545,-0.0699461804112988,-0.0717061159994403,-0.0689309188643589,-0.0716628513587991,-0.0689348647603307,-0.0718983680005452,-0.0708153545005007,-0.0724921191015154,-0.0685833703523814,-0.0720601641420615,-0.0695643254766427,-0.0697215752723668,-0.0686729442693765,-0.0723874855291997,-0.0767597352690806,-0.0821158007911818,-0.0765666963294778,-0.0772956258845949,-0.0792841161800167,-0.0751838310747319,-0.0751540001780485,-0.0700197071958125,-0.060558158121468,-0.0612743763166734,-0.0625242095540689,-0.0650690394355789,-0.0659531414823067,-0.0669153130115562,-0.07090381208832,-0.0685151195301281,-0.0688455710148304,-0.0702920804338053,-0.0710890806824491,-0.0714997148294337,-0.0683505037858339,-0.0687139701431968,-0.0678499171960357,-0.0714132268948189,-0.0692992293402365,-0.0700411440409717,-0.0724244866852191,-0.0775245807364071,-0.086764939528153,-0.0898409061226687,-0.0911755247738119,-0.0956691071448011,-0.0945692435887008,-0.0946520246762243,-0.0839916152290748,-0.0583382053464069,-0.039023756872636,-0.0426276301761152,-0.0475552334732956,-0.0538224100894215,-0.0582933442992749,-0.0647339733544345,-0.0671751747500001,-0.0712906694271686,-0.0700618507338277,-0.0711948987118798,-0.0692089721961439,-0.0697684059865115,-0.0723117794229143,-0.0684079010024521,-0.0703764485780043,-0.0725451606337991,-0.0717727291618939,-0.0731601502227283,-0.0844101233596238,-0.0929621450447223,-0.101133769064845,-0.109430035521671,-0.104877882897635,-0.0929096702706251,-0.068365609671729,-0.04400201816149,-0.024604521938205,-0.0055868691038046,0.0158376557133604,0.00934193002777539,-0.00956609065242683,-0.0419989686702523,-0.058643677756589,-0.0645207462859909,-0.0667576821890403,-0.0720015807167395,-0.0695338738011791,-0.0683927658212449,-0.071793549258589,-0.070800774734218,-0.0717936673265194,-0.0712608618922498,-0.069444938492423,-0.0737110221515435,-0.0753360074177971,-0.0799148050326379,-0.0955161916339222,-0.104633149855646,-0.121760740656202,-0.142377425499877,-0.140605100899019,-0.124705367373378,-0.0783986414082265,-0.0261913509737451,0.000662040964214572,0.018726576467014,0.0299918459618843,-0.00176364126696819,-0.022199622387072,-0.0513957716446603,-0.0739920791114608,-0.0733386664724359,-0.0763181527004195,-0.0770763414498613,-0.0722545245416537,-0.071601306172975,-0.0712719717985971,-0.0691114983976729,-0.0711576514098677,-0.0698354393200931,-0.0708478273261483,-0.0736998993636262,-0.0694848541889676,-0.0813573854409206,-0.0963680532876021,-0.124651964764226,-0.145603360614547,-0.161556749823636,-0.166117057414908,-0.142640808599013,-0.0764381953409346,-0.0148668410630049,0.0191058520714196,0.0319116313692386,0.0199376304060201,-0.0240803284502387,-0.052963483835006,-0.0703661046477636,-0.0796116620765558,-0.08067176257395,-0.0853609471904594,-0.0751955336488229,-0.0724536252891238,-0.0697445640355597,-0.0689139784494916,-0.069812685589715,-0.071565564863397,-0.0701493043520146,-0.06658858825382,-0.0691316625838133,-0.0746096494231829,-0.081938032354532,-0.103993469239417,-0.121929738855154,-0.157251991113692,-0.180221517383592,-0.173578237843209,-0.129668770639044,-0.0488069144177615,0.0178958177454564,0.0582700362753919,0.0591633348032682,0.01501567445371,-0.0411751383930004,-0.0698764228561133,-0.0912989675547679,-0.0878416754603471,-0.082703192614975,-0.076971272695176,-0.0722468549291076,-0.0742060222458214,-0.0684199068841157,-0.0683949707482601,-0.0708579433270604,-0.0711543676306783,-0.0673137812549219,-0.0682094401991727,-0.0741816075695297,-0.076535559928957,-0.0887773735244292,-0.108205694916565,-0.130966899340957,-0.163161596823565,-0.183151056607748,-0.169824366865273,-0.0983275911971442,0.00962864106145897,0.0939364812108211,0.120832816362522,0.0963870131892944,0.0320684104515913,-0.0458179240127613,-0.0899524639290467,-0.104909546477297,-0.0949309521097801,-0.0819128754648553,-0.0713731517796795,-0.0677446497191943,-0.074013430973845,-0.070691284679206,-0.0719674345585788,-0.0703838923197859,-0.0670098283988934,-0.0660352493498001,-0.0625956181519445,-0.0711416530818461,-0.0763735986841966,-0.0813639546191794,-0.106043203203049,-0.133081906831689,-0.168508892416359,-0.178614743735979,-0.140968879809986,-0.0402244215843083,0.079202892819442,0.1532694588604,0.153684108705837,0.0998213538141274,0.003141709667634,-0.073284764433158,-0.128661301339903,-0.134595384903457,-0.0953783242079034,-0.0835633735994862,-0.0784299332893602,-0.0736968372176981,-0.0687913997926202,-0.0701128426400046,-0.0715589397776971,-0.0682648806754878,-0.0684928771296959,-0.0677245164904372,-0.0626630528831923,-0.067387849433758,-0.0792163747484836,-0.0895013082269228,-0.119581688703324,-0.148428389550538,-0.190212019783188,-0.170423489310384,-0.109892097916435,0.0111355213706604,0.136124522144949,0.1709810487853,0.14331554738001,0.0547468391901347,-0.0549072563720736,-0.122814736823779,-0.152979693583085,-0.140008075048362,-0.0981754230331475,-0.0920247680198383,-0.0853412115097101,-0.0809940874578156,-0.0726417529070794,-0.0692863507964506,-0.0684972595640721,-0.0698773957638257,-0.071320560347088,-0.0677751670319361,-0.0640907978813131,-0.0699181701787941,-0.0807016286077644,-0.0960501851872296,-0.125827909648955,-0.159634766381191,-0.181133845789257,-0.152402242522762,-0.0821872662990197,0.0491712449432779,0.14444678482592,0.141731791565488,0.0931902867212722,0.000525596017669917,-0.108126977848704,-0.148526023741132,-0.150053315641556,-0.113428312068484,-0.085917818797476,-0.0806662440995945,-0.0777074880965815,-0.0793847699299319,-0.0746022314090076,-0.069067732145161,-0.0711836417603995,-0.071255950964171,-0.0677686168479231,-0.0659919743898502,-0.0645419450051631,-0.0689779974842236,-0.079136312200346,-0.0921364835126795,-0.104908305944773,-0.138130135367328,-0.158431808947718,-0.141534089379423,-0.0784133416451066,0.0536894491797424,0.116986492919024,0.103392738942246,0.048334765334474,-0.0440434180723291,-0.138591488471381,-0.150799033436482,-0.118520910080374,-0.0848696037033275,-0.063239585685265,-0.0655410572433601,-0.0728363638498765,-0.0737961016300619,-0.0706555384271505,-0.0695762439372252,-0.0722008850954142,-0.0707563230170315,-0.0683884495708493,-0.0696257214064034,-0.0664091557169212,-0.0716305463683313,-0.080937129487137,-0.090671189234393,-0.100215202083077,-0.117575540663968,-0.126329216789179,-0.131656784312876,-0.0690532572565041,0.0641972382686321,0.088418991537867,0.0716689822499001,0.0264356379449806,-0.0851640054482285,-0.147869989360297,-0.112111774619156,-0.0797845697724642,-0.0625121514002287,-0.0590880765346476,-0.0610364764245975,-0.0718309857471526,-0.0717413786534909,-0.0695632629663323,-0.0700223390826803,-0.0696590005403922,-0.071028982429393,-0.0718556149565513,-0.0700845144921311,-0.06766883384005,-0.0717211429013432,-0.0739881511086267,-0.0746884201106002,-0.0875091925610909,-0.0955736843505072,-0.108676574428311,-0.114450201307855,-0.0110605465519593,0.0724805395718176,0.0821808671061949,0.0715045659445316,0.00523566234072563,-0.0993909414270869,-0.0927770892015192,-0.0628502054082171,-0.0607968806648074,-0.0531545785712013,-0.0574821625146724,-0.0558061852193753,-0.0676257737538887,-0.0697748033133623,-0.0709861864517873,-0.0722573829764201,-0.070608182553339,-0.0718060520572684,-0.070483588909277,-0.0672495771691737,-0.068519912245595,-0.064794819557714,-0.0600131724750618,-0.0680290969341701,-0.0772076367234639,-0.0795788917446671,-0.0999741006570787,-0.0750326373886065,0.019392293797063,0.0815160296417548,0.095786463748979,0.0805243761666598,-0.0177884187339496,-0.0909081755266864,-0.065902073337719,-0.0442642312018871,-0.0521993115046986,-0.0607935112706084,-0.0616483210101915,-0.0606151178768725,-0.0681093854954767,-0.0732039326903,-0.0701312235434558,-0.0714392698639608,-0.070124359187704,-0.0718938112414314,-0.0701227747006597,-0.069243232243823,-0.0662874924020185,-0.0607164937687712,-0.0632899650182331,-0.0651567098753764,-0.081661104149678,-0.0911139658528543,-0.0881670472216751,-0.0369831466239016,0.053179094068422,0.10333409063451,0.10480257797611,0.0560256515801462,-0.0552572341628722,-0.0812940601345568,-0.0533691516425176,-0.0489049715330528,-0.053672767126232,-0.0679664441368727,-0.0671520150416982,-0.0684506250219075,-0.0789288060553801,-0.0756077493524717,-0.0719988077666085,-0.0706483783791461,-0.0689153257237706,-0.0695372937082956,-0.0694308156512074,-0.071083896716776,-0.0669413882359089,-0.0673880812492531,-0.0656930930513331,-0.0737107574798282,-0.0884626509275297,-0.0992350137274292,-0.0644824987132674,0.00126999014330742,0.0840256704131307,0.120343441443811,0.108048674311439,0.0187039992154074,-0.0726453781727636,-0.086514194113688,-0.0733300775048266,-0.0663092856604467,-0.0708752057197015,-0.0783952879434778,-0.0765322930945672,-0.0799206804484783,-0.0858882483110753,-0.0798366330543372,-0.0707002115720668,-0.0719151757268731,-0.0721620467473831,-0.0682717504970437,-0.0690431073671898,-0.0721495743831271,-0.0698745455956683,-0.0734934518730068,-0.0679837505969926,-0.0889099567258156,-0.0960418610133268,-0.0881127713200709,-0.0448160624510831,0.0400800989555667,0.104643198198477,0.133146612418738,0.0818303666198063,-0.0173916165808266,-0.0849071202787115,-0.0979246052896802,-0.0940612471683014,-0.10357081355445,-0.0994169952607667,-0.0888970635809928,-0.0894562468419453,-0.0917716288283573,-0.0864139986623358,-0.0769486475231338,-0.0722536900973245,-0.0722384036226655,-0.0722063051736824,-0.0712750962342299,-0.071952465248628,-0.074798108891043,-0.0729071533105216,-0.0784511698965395,-0.0773309353376813,-0.0938769450025115,-0.0926176898492769,-0.0667607371936598,-0.00136479624801956,0.0683101004531169,0.130261970277984,0.125932475874011,0.049218515302573,-0.0367367822913447,-0.0902813680417678,-0.106416292406677,-0.116183146406773,-0.126325793193102,-0.123795752328123,-0.106867437038252,-0.100687349875768,-0.088278262432216,-0.085639060157104,-0.08088008689016,-0.0696683353252098,-0.0697267941139603,-0.0695400156692323,-0.0684688314395984,-0.0745919347685732,-0.0776882951038854,-0.0758321837526625,-0.0800849809551354,-0.0900727959343273,-0.0947957057194569,-0.069037396719672,-0.030843490825726,0.0216971192698498,0.079648522471725,0.117869179607956,0.0872444149736168,0.0226511220165277,-0.0483830596659761,-0.101956063089551,-0.136786342210287,-0.137807719183115,-0.137619444873092,-0.123605654569444,-0.108979090924731,-0.093606998955398,-0.0847983172582762,-0.077655655117102,-0.0742804175437932,-0.0714054620277978,-0.0712191754184246,-0.0680937534583772,-0.0700376217968234,-0.0703858477941875,-0.0730724650959349,-0.0745533899522226,-0.0736854300738236,-0.0938150604224697,-0.105240786553321,-0.0636702305085538,-0.0172525593279082,0.0276621800624252,0.0793369989514215,0.083178647622404,0.0463468842053275,-0.0208093644472234,-0.0788707874527111,-0.119392850967122,-0.150877910582269,-0.155730057537465,-0.132360474754209,-0.116053959234981,-0.100203513584919,-0.0885562691743211,-0.0730985853770931,-0.0760756002529568,-0.0706227193015558,-0.07054938777632,-0.0705298079580669,-0.0683614624242862,-0.0682168123061692,-0.0692107058194553,-0.0708857270788626,-0.0680833951288943,-0.0680514957279147,-0.0816477843841961,-0.0827676687694598,-0.0562632358244656,-0.0179480376629743,0.0167772893919854,0.0417118213330244,0.0276132983623186,-0.0108483507775622,-0.056531647766269,-0.0986947935390113,-0.134780858933479,-0.14621956501705,-0.13448026853319,-0.108706799916095,-0.102275121045635,-0.0906844766678465,-0.078421374247349,-0.071558305669138,-0.0710553632840892,-0.0718811130829605,-0.0691955819675854,-0.0723368723477209,-0.0686489801874461,-0.0704696178123986,-0.0716426997175906,-0.0714677275419903,-0.0681657601452283,-0.0653708068065213,-0.07776926510093,-0.0664401277347727,-0.0376083565529409,-0.0187318887377371,-0.0111364749789633,-0.0128139476074619,-0.0317249980293871,-0.0573581039254103,-0.0759150176810928,-0.107787836307809,-0.120368830647971,-0.123297318775147,-0.112221679912034,-0.0940064683416285,-0.0809702611025804,-0.0763998437769599,-0.0734450830320723,-0.0735506058749186,-0.0717003364951943,-0.0686195453398289,-0.0721910521182455,-0.0698121190838333,-0.0720569719086276,-0.0708233370127475,-0.0702505504647267,-0.0689976369277633,-0.0636745016374181,-0.0664873473676397,-0.0662504308274323,-0.0743417444059766,-0.0874382313699134,-0.0887814201978814,-0.0925652578743813,-0.100029278459343,-0.102823859159357,-0.104943906895229,-0.103683528701572,-0.100956400935769,-0.100965816532132,-0.090888864204839,-0.0788958301758658,-0.0744430533095794,-0.0700193957598336,-0.0720933320296915,-0.0723147599956044,-0.0685053177838308,-0.0720452027358676,-0.0700581278453961,-0.070587080760858,-0.0686755606766788,-0.0699868408759641,-0.069245049204306,-0.0708363307901071,-0.0676642523175827,-0.0687944196877355,-0.0703427998398206,-0.0699394201208413,-0.0775635299556965,-0.0803637936659341,-0.083893417118158,-0.0870389859741984,-0.0870045869829612,-0.0889758749065076,-0.0879197638780236,-0.0782597925795726,-0.0752447692179529,-0.0747521792034784,-0.0735539677623534,-0.0748453703639099,-0.0694170059479945,-0.0704632465820503,-0.0733502235911724,-0.0729445369292324,-0.0694151253793228,-0.0708418759784804,-0.0722683316956479,-0.0713012923035306,-0.0698774423326943,-0.0701124242211311,-0.0693260384578455,-0.0704910609928616,-0.070865370047908,-0.0683310700807412,-0.07111321626524,-0.0701248630709602,-0.0745201148430245,-0.0711604138060168,-0.0689612537275888,-0.0635688378326667,-0.0698148915585652,-0.0755410061420834,-0.0716907811427086,-0.0678885359073228,-0.0667465875391879,-0.0674011502076276,-0.0628094663964609,-0.0687294865569958,-0.0698204199868484,-0.0697789144683034,-0.0726554234550953,-0.072228776351922,-0.0694950218935381,-0.070142182882785,-0.0702825239082469,-0.0710232081829717,-0.0708240212090949,-0.0707512455173454,-0.0706059472081447,-0.0714458303199253,-0.0703597603921232,-0.0714950800953765,-0.0707443715877368,-0.0680218043338105,-0.0697498944979417,-0.0698882290343335,-0.0721125747814175,-0.0680673647365463,-0.0678143961037703,-0.068811773826244,-0.0684724585967681,-0.0680357893872502,-0.0667939731002726,-0.0671545677902408,-0.0680371870811532,-0.0698513712313283,-0.0713545925315846,-0.0722041600262308,-0.0698018161097869,-0.0701739852264643,-0.0691824821288737,-0.0704638765980008,-0.0718808452943287,-0.0685125380240092,-0.0703330718808764,0.0926880402387766,-0.00467995981733329,-0.0034613098561903,-0.00414331939310264,-0.00128908936317405,-0.00179145579691975,-0.00253814754700529,-0.00340045196304204,-0.00236838522267396,-0.00188567540058159,-0.0010772697135946,-0.0025189811967844,-0.00335759379532479,-0.00302283540790975,-0.00391440974364874,-0.00153271717510779,-0.00320456116361574,-0.00230685674986537,-0.00171870858540343,-0.00166555128887544,-0.00489795454500934,-0.00151363152608208,-0.00424965777523934,-0.00306830839002559,-0.00358169991150221,-0.0014960437239535,-0.00259209698782399,-0.00254259493334111,-0.00438748664641191,-0.00157834992902702,-0.00106045314000684,-0.000773811740213575,-0.000891986915242883,-0.00307011389627675,-0.0039902503967324,-0.00146251407532782,-0.00469617135203988,-0.00305740015172781,-0.00500136791842179,-0.00241424336775088,-0.00429931642602848,-0.00303290345376938,-0.000327099617618587,-0.00152672713450011,-0.00515103097816288,-0.00373181493581949,-0.00249041665224611,-0.0045932090655926,-0.00581615907204844,-0.0038070252885157,-0.00135535676325959,-0.00230821389335988,-0.00172644459524248,-0.00368975347257362,-0.00241511424335594,-0.0047488864185386,-0.00299480704695566,-0.00397096701151799,-0.00092545315409653,-0.00171336961469115,-0.00430800333509371,-0.000970895819639981,-0.0015054639121882,-0.00151663363233324,-0.00383464399293523,-0.00295573619819223,-0.0011515208273811,0.000450836547091617,0.00371913295988808,0.00375007967468521,-0.00115826370832708,-0.000919490563220469,-0.00813447137255751,-0.0127397877904794,-0.0137030976529736,-0.0167621854673437,-0.0124562090147485,-0.000890896579738466,-0.00118850605574383,-0.00172494755015364,-0.000972754408588345,-0.00380177675342409,-0.00355936205114462,-0.00199678192557069,-0.000736036992681602,-0.00310783714400846,-0.00352083818518865,-0.000900269134517344,-0.000931371796052357,-0.00175914750484813,-0.00255415790202603,0.000105018760581859,0.000710742984880109,0.00643475021070214,0.00961855243400317,0.0141461361745817,0.0252544389328206,0.0299943868744657,0.0439956193482179,0.0433420614216426,0.0503696701398056,0.0394040424001292,0.0333791387809533,0.0346850860053263,0.0307266114512416,0.0260765355732239,0.0182343045866055,0.00642571169784295,0.00207532576461599,-0.00382896385001538,-0.00153768694302016,-0.00461222053464844,-0.0046742234484021,-0.000926233567419957,-0.00090832043695872,-0.00483312256473822,-0.00269042112205183,0.000772591039096202,0.000444236071832944,-0.000923738989922104,0.00262552152744594,0.00840463760931147,0.012283888156345,0.0188714191422649,0.041265594069412,0.0551796981348238,0.0518048313675002,0.0409229310616288,0.040714038021132,0.0380855749193354,0.0357712383233449,0.0326704801657826,0.0327461327301961,0.0320810281747672,0.0179259051135169,0.0135865625841934,0.00288910344307724,0.00194793591842498,-0.00217629368589168,-0.00339451558379566,-0.00420565222777341,-0.00439696593873012,-0.00491708042066688,-0.0043168504565539,-0.00464817759570484,-0.00284327270162066,0.00349615290252006,-0.000292621508215893,0.00652187659534254,0.0164236226971062,0.0215003494812971,0.0295784735987602,0.0485859976238218,0.053371549535306,0.0507954020169784,0.0448687936669787,0.0397578170735174,0.0397965891970463,0.0342534327245934,0.0246252537860966,0.0256715850371172,0.0111271448420506,-0.00260963161162558,-0.0086776641932491,-0.0191840690531283,-0.0169014156720055,-0.00425078468378604,0.000288324522921353,-0.00338106726194372,-0.0016835379490355,-0.000821293178532515,-0.0042369243597196,-0.00557244619059089,-0.000795681930116494,0.00170779112039488,0.00319450557730766,0.00898389069103476,0.0178232078397568,0.0127984708816445,0.0214022667148762,0.0125777619618269,0.0322133738590054,0.0249626527791721,0.0197864081742764,0.0189060223361934,0.0177997213009555,0.0106150549785635,0.00959405659320219,-0.00698409858184957,-0.0187652061267028,-0.0318546291738758,-0.038530703865036,-0.04638180733603,-0.0323114711344677,-0.0164041669670304,-0.00267242852234166,-0.00154539737568385,-0.00483945254345251,-0.00323812592773493,-0.0023771654727989,-0.00568619553829991,-0.00236854162334275,-0.00387525636378189,-0.00515571290737747,-0.0054564591393073,-0.00521671260541999,-0.00926368166613091,-0.0257112585339211,-0.0181090692583712,-0.00786705587087374,-0.00483408748725679,-0.00591736770315881,-0.00894491281082567,-0.0145589846132901,-0.0217008411325536,-0.0146586018176744,-0.0244069351641496,-0.0383550718719226,-0.0394207495350302,-0.0437432697290344,-0.0520141028654178,-0.0479931995368465,-0.0257004450125225,-0.00669852037785367,-0.00278455118380967,-0.00250109354668778,-0.00199751671722517,-0.00593469414031718,-0.0064396718114826,-0.0093646391300845,-0.0121794040660152,-0.016990936977305,-0.0158367938018364,-0.0227648740670522,-0.0312849214831637,-0.0396078314664717,-0.0449167518225901,-0.0327567286935764,-0.0311663416589235,-0.0359803718871747,-0.0399849179716242,-0.0280804310452879,-0.0315084052414619,-0.019802042966335,-0.0156685979778942,-0.0223649314037337,-0.017213209140592,-0.00962916176187381,-0.0319759093802976,-0.0288194930764353,-0.0116867404500337,-0.00501348377888618,-0.00335736837694218,-0.00210986233420424,-0.0032803937541535,-0.00166641222437907,-0.00490179023467445,-0.0179320953165556,-0.0260771410343781,-0.0334521971224072,-0.0362105670468206,-0.050284265459336,-0.0545783207222857,-0.0658620292564495,-0.0738278291820323,-0.0641227302069725,-0.0531562066525844,-0.040173568893616,-0.0191035712312505,-0.00587946470847338,-0.00341739217470969,0.0158033054222144,0.0121785843972982,0.0166937262475594,0.0273815422897774,0.019791308103786,-0.00751954713905489,-0.00653546505375999,0.000112899559618954,-0.00779632775218728,-0.00279428398272248,-0.00442312261732136,-0.00292133230921908,-0.00485417452018561,-0.00878181678106181,-0.0184999983295956,-0.0342370451022789,-0.0374579649694822,-0.0461804256939672,-0.0606149451463028,-0.0632464746565144,-0.0683199115886296,-0.0891655159163316,-0.0825090056264816,-0.05993418915085,-0.0141992466106213,0.0265169278564313,0.0409314891661525,0.0313651839664096,0.0217938701610432,0.0231900460956514,0.038866696852582,0.0286832420066468,0.0159256704034959,0.000675049277211457,-0.00478376626651202,0.000834019293069767,-0.00435074181105202,-0.00281219771684764,-0.00192926753509847,-0.0027704324838389,-0.00614533161436089,-0.00787139489071183,-0.0141377003571605,-0.0297408245790644,-0.0384900513157512,-0.0468183126982696,-0.0416557312046489,-0.0497689899960159,-0.0653394037495503,-0.0836672872268908,-0.0699689754034252,-0.0411563658017451,0.00949989793396377,0.041699047152407,0.0386092338829247,0.0207187934827052,0.0107828790760558,0.0201076496442768,0.0193413635705284,0.0199127801239676,0.00950047209906683,-0.00675282486576488,-0.00545290271601148,0.00438351867525469,-0.000554428602991967,-0.00033480729376324,-0.0018637670992005,-0.0038034574550432,-0.00562498499452809,-0.00710174651976825,-0.0108674941356,-0.0262240826267424,-0.0360311805964003,-0.0294317333538785,-0.0350078070332884,-0.049894515375547,-0.0441108865077649,-0.0467139965639233,-0.0361268767713122,-0.0159547191945819,0.0300263608679547,0.0417106942006218,0.0227634625292145,-0.00176915234826055,-0.0126081111018808,0.00395063734350028,0.0116484560386646,0.013789382718672,0.00723043897183219,-0.00524632355329664,-0.00994148419155294,-0.00351961457003012,-0.00162754654546673,-0.004116253005415,-0.00178030024885786,-0.0042313887816589,-0.00449474475991637,-0.00375147082761485,-0.00869765772903171,-0.021483469655252,-0.0300893138093438,-0.0175013394649039,-0.017333841288985,-0.0211235833577894,-0.0164749518867449,-0.00254742146671784,0.00630363369591311,0.0330132202508563,0.0479607146136165,0.0397532389401865,0.0125764956720421,-0.0185542152491395,-0.00967793651336103,0.00664191489447617,0.00683416762573215,-0.00247650018678821,0.00152992371022835,-0.0112058364605687,-0.00828433250601848,-0.00590615074591189,-0.00406790936282991,-0.00376867455464096,-0.00148610486422936,-0.00464232906420718,-0.00136786686425964,-0.00264441779818051,-0.00407470205183866,-0.0127430792622829,-0.00822164279791059,0.000716265670353177,0.00999521906521502,0.0276661193333832,0.0269911962784112,0.0315815072465983,0.0462400710294261,0.0561756901558098,0.0489595543637669,0.034435935575213,-0.0136653249457075,-0.0263871492284394,-0.00273631048179347,0.00252675866157421,0.0094329390137254,-0.00293802373955536,-0.00193127546367091,-0.0137014165993225,-0.0111782960753939,-0.00475061070138972,-0.00312728505336755,-0.00205440489943349,-0.0039750710770572,-0.00162093770736155,-0.00402603379635443,-0.00287196729433442,-0.00150960214227501,0.00603253789179181,0.0234132668683713,0.0321814597446631,0.0305521486827912,0.0375801566961869,0.0367077151980096,0.045465408084421,0.0421786459491817,0.044820168041133,0.0418745538613183,0.0073563663080052,-0.0314029238297612,-0.0296325783186485,-0.0138723713452787,0.00742328070662017,-6.60617120302046E-05,-0.00805972325749827,-0.0146272787973285,-0.0182130195510461,-0.00245842202046874,-0.00104565423481482,-0.00277699671373558,-0.00280837372676584,-0.0038929775452147,-0.00493643846618899,-0.00164299332913293,-0.00139287897750272,0.00321651257307737,0.0270336211584762,0.0482136638935619,0.0574107933142075,0.0442585960213071,0.039405637415496,0.0393064187791375,0.0488895063168965,0.0452004484185106,0.0398804146485276,0.0306510907928013,-0.00570793794498908,-0.0225028019193785,-0.0217940189611959,-0.0184239725790458,0.00233673624641454,0.00374513727252197,-0.00392190963587137,-0.013450526599904,-0.0125124651785033,-0.000266339374089341,-0.00352019428687687,-0.00105549369913673,-0.00215176992938989,-0.00270948969406442,-0.00299528914207939,-0.00524579635953071,0.00421654791601849,0.019908645501636,0.0380195070687487,0.0474259988950427,0.0633076615526709,0.0519147821037516,0.0313024817935273,0.044669708700929,0.0480073378317931,0.0418597232337006,0.0456732037651637,0.0221869414816749,0.0118631986935537,-0.00556275110331537,-0.0208842729717032,-0.0153495655183702,0.0148746009603697,0.0101908548313702,0.00684622463735979,-7.80516686916175E-05,0.00457012734910934,0.0108952362634563,0.00665174777244873,0.000229924141796965,-0.000965158275605388,-0.00303773958281236,-0.00242311405834221,-0.00414551103027407,0.00647910845744687,0.0222665518920465,0.0307312110084164,0.048758567193612,0.0461235626417701,0.0436032255936857,0.0444190280010307,0.0553032880610017,0.0635033992010889,0.059116408669347,0.0469223316203122,0.0231755705451817,0.016082314602294,0.00334970962898809,-0.0144223956653447,-0.00133846251889224,0.0255321440880328,0.0290447184146898,0.0214351035891712,0.016718043483404,0.0217926834813177,0.0231645305837759,0.0102200502247583,-0.00138608994453616,-0.00301608952126517,-0.00380329152987157,-0.00179618197230935,-0.00182901293381348,0.0094890385483985,0.0154532122127786,0.0127544769810511,0.024472944455207,0.0202819837381094,0.0451497867484641,0.0511718096824349,0.0624597079061679,0.0602813521738332,0.0610998974824859,0.0337524955498934,0.0160853126404137,0.00252735940250698,-0.000563979249548151,-0.00722785576493965,0.0160981109628836,0.0449978387314233,0.0476405926285016,0.0359531707818947,0.0299176159218003,0.0291693540598212,0.0223171909086225,0.00620305214726634,-0.000147116572838266,-0.00281544502200366,-0.0041320337283161,-0.00273519547299759,-0.00260237854859623,0.00197775842353918,0.0124991185166406,0.00442492038994135,0.011051799733784,0.0168521551813281,0.0301003996415081,0.0387693886457763,0.0427782651637185,0.0383779777489633,0.0344453755913226,0.00787902467836076,-0.00051003013372319,-0.00415920102182841,0.00421097722050144,0.00735738278004877,0.0372202362819926,0.0508849363285051,0.0490500163759635,0.0378373512530679,0.0369788159990676,0.0246106468069301,0.0165663434648661,-0.00197299591041114,-0.000236721907279155,-0.00496587366549555,-0.00443389259676657,-0.00377001242880534,-0.00473460128777527,-0.00166834275561944,0.000856089932618898,-0.00112601504575248,0.0211099930193588,0.0100071212553538,0.0146299877242353,0.0200462337256774,0.00123998207155356,-0.0184899695942888,-0.016832249797633,-0.0198402285706106,-0.0170861635469625,-0.00313084842266179,0.00868012241387293,0.0233089505435004,0.0381433322639883,0.0453273775055291,0.039992333155771,0.0376057866604433,0.0270824062455314,0.011373106892593,0.00621301908127271,-0.00382486754881806,-0.000737413411196557,-0.0020463006202707,-0.00214796314851917,-0.000905215061634868,-0.00261937488277611,-0.00592776130856707,-0.00202918292708071,0.00709091778762765,0.0168521240617625,0.0186682109590451,0.00527105892574314,-0.0107292974023003,-0.0317170018072805,-0.0473987938547317,-0.0512077016607396,-0.0371226713872696,-0.0273064238151802,-0.0120043299913843,0.00336897371198408,0.00851642806464103,0.0184573503010943,0.0195500699899707,0.0166580513660858,0.00992733546850996,0.0135397450095002,0.00488037805830009,-0.000918123242546105,-0.0037860285520289,-0.00221379040796691,-0.00253862347881892,-0.00120792136541174,-0.000682493722331056,-0.00425622807011219,-0.00545801135580704,-0.000747156965357077,0.00812292802603855,0.0270544855059413,0.0272594871366083,0.0164440784854404,-0.0130963226509345,-0.0445660817486613,-0.0611442784613208,-0.0736250510465929,-0.0605437499217771,-0.045653483692882,-0.0216600420289642,-0.00276359920106649,-0.00193477610928034,-0.000411188591174685,-0.00725584317932537,-0.00937068931746661,-0.000775599735240404,0.00557553357331179,-0.00296521302009422,-0.00344182550226975,-0.00424029195096338,-0.00102906921432223,-0.00323403050564676,-0.00178752462561128,-0.000943198578945751,-0.0027863059223311,-0.00589075115750746,-0.00691713878952088,-0.000175409945519475,0.00466874633482829,0.0050682283304146,0.00462922075205115,0.00258625860529451,0.000567414466472696,-0.0012760037727081,-0.00162332068780044,-0.00687831529914004,-0.0050890735584203,-0.00569072615754063,-0.00610615560228108,-0.0110276378712777,-0.0119388945127259,-0.00950983210518174,-0.00668339681612591,-0.00839543375132091,-0.00177388478983469,-0.00206211920308633,-0.00245382435852558,-0.00287860793733465,-0.0018176293803911,-0.00485904037622759,-0.00249111878431771,-0.000710834948172324,-0.00274701042091388,-0.000514981405655483,-0.00311368740416653,-0.00196972352253045,-0.00375543725627907,-0.00517280322358378,-0.0137616210180961,-0.0201853919229854,-0.0222218658310505,-0.0155795778354284,-0.00715396316405857,-0.0124106174548186,-0.0100159935494955,-0.0135784505598386,-0.0149391208811849,-0.00831376308458038,-0.0116707730260097,-0.00913778282818337,-0.00690583851391481,-0.0074984298299853,-0.00331041822974982,-0.00222181798181071,-0.00277186975766639,-0.00431488741091973,-0.00243480910333275,-0.00314518159044275,-0.00306125107076445,-0.00401322283526708,-0.00112198855284046,-0.00294134599728101,-0.00130232473482099,-0.000993458408254059,-0.00213327592327935,-0.00608620765760134,-0.00745116528579222,-0.00699973840309484,-0.00671654889325627,-0.0084558875879987,-0.0073978560531317,-0.00581584335905269,-0.00645212799401172,-0.0129766712279037,-0.0145245531415183,-0.0091067009873401,-0.00910229958189903,-0.00652928960579712,-0.00633137650107451,-0.00498790957250262,-0.0040359321650786,-0.00351030477549364,-0.00236077789974306,-0.00480082433847371,-0.00436853383930004,-0.00393724563878575,-0.00326313106754602,-0.000899370508268483,-0.00447586992153226,-0.00438448250854334,-0.00179191860823297,-0.00251436718597244,-0.00315439673580361,-0.00585377805554679,-0.00223595118448365,-0.00378965924679445,-0.00563461646643507,-0.00399282348614892,-0.00519711796536692,-0.00638950245998875,-0.00623079044277318,-0.00652427999859917,-0.0092065449929947,-0.0025276807585002,-0.00372139777224479,-0.00540447303114308,-0.00117303818785287,-0.00399982396243894,-0.0012436873738312,-0.00304362435264618,-0.00327573188147646,-0.00460787537614882,-0.00181552553406497,-0.00478709681467049,0.0107351154469089,c,9,100,0.156959430872125,-0.159831176270652,0.172037627047777,-0.0647142998207251,0.2412571170894,-0.22534349928107,0.0293385134338638,-0.216199181716431,0.222757225232372,f,28,64,0.00128962951825439,-0.0199022898159289,0.0400693971635108,-0.0809445823416775,0.0241539559995467,0.0176661651240014,-0.0565430139539128,0.0955463759110373,-0.00782909104542223,0.05266602802844,-0.215406703134069,0.400327597481174,-0.263328921487203,-0.0285102087626891,0.0934238642919268,-0.234094113668549,0.00204236972223829,0.0148331235702446,-0.0916394724161529,0.0113968941868596,0.0341670396026506,-0.0144040950457889,-0.0132074603147948,0.00835451478603238,0.0266515747141436,-0.0211799954305847,0.0575024272988993,0.022894915467308,0.000240783578992721,-0.0094673220776481,-0.000442089440070234,0.0545227931247333,-0.0283169678856956,0.0013062506982261,-0.00259261809579781,-0.0185555132923076,0.0110749992078341,0.000457423141332304,0.0309794939797584,-0.105726863570085,-0.000763128051958648,-0.00761597778467454,0.000745814787483837,-0.00876647560715965,-0.00643067392103091,-0.0031031099637551,-0.0335607309811093,0.355971138693616,-0.0360425594593746,-0.0264262723687742,0.0371222357091165,-0.0455402874685038,0.0260223379318751,0.00592838752733407,0.258085326214786,-0.413369413946905,0.080763477692087,-0.0116692454551623,0.00695510517177336,-0.00158543227949687,-0.0173188748782121,0.00889162960923338,-0.0140896270567733,-0.0175854556697092,-0.00549968528592976,0.0303969235737869,-0.0154335490203631,0.0690499510076667,-0.103079697769434,0.0408379624322879,0.00996712061623094,-0.00389604003421974,0.0307202510711733,-0.0194478497726245,0.0649732073012304,-0.249114625485302,0.354321130278398,-0.377981324001124,0.0399351749535973,0.119013838939086,-0.192371872737994,0.0600285605883812,-0.00763038423777564,-0.115217468273462,0.0150041773465849,0.0401046649145122,-0.039332487933446,0.0189133774805817,-0.01284912102899,-0.0495415144257784,0.0762628453171309,-0.00617802047300347,0.0329476404704314,-0.0204771797522462,0.0416832117358081,-0.00328930763282029,-0.0744660878505216,0.0179974163801833,-0.0283898643504616,-0.00728284874069657,0.0151473682863358,-0.0155895113380398,-0.0184207398248579,0.0237459107338647,0.0678163339441884,-0.0187503257293633,0.02318604533125,0.0111111755293717,0.0301636460697007,0.0120887198795037,-0.0238709820520775,0.0355097248622676,-0.167477596082174,0.00894173807439036,0.00681279356694375,-0.0116409072677968,0.0320611848982764,-0.0727606960903207,0.046737797970691,-0.127230610726002,0.272994020151144,0.0192665192228927,0.0249484403323736,0.0208222950951084,-0.14410395974516,0.2708759984944,-0.279189252347327,0.140196183966331,-0.269701746199754,0.0118723762404499,0.0229954385295939,-0.0347162738873409,0.0121440791939791,-0.0336661487741121,0.0184570917220794,-0.0146874093307086,-0.0273141095860851,0.0213199530238614,-0.0214080601543498,0.0113735658702112,0.00901298853050858,0.0235287633328701,0.0870818916708215,-0.122715127603572,0.000791972353555183,-0.0913030553755994,0.0236970408081775,-0.0268319263635733,0.00129270236056508,0.00398497223441204,0.0236682182262132,-0.00244837799048407,-1.68748336926978E-05,-0.0295032163942512,0.112438701879698,-0.0290516375682687,0.0441054779753812,-0.0352581039637884,0.0319985407067765,-0.00751505050799828,-0.0137766164028397,0.0841990150762454,0.0158499460949051,-0.00195980975717812,-0.00553842331131374,-0.0338286832314625,-0.00745600580628797,-0.0128054816385783,0.0206413191220878,-0.153662552177767,-0.0315289551206977,-0.00819561905363316,-0.0117926637197536,0.0256859131765002,-0.0217896270948836,0.038581888715404,-0.0970507286362937,0.416907787222261,-0.0387582600159792,-0.014735253332332,-0.00104318494157583,-0.0421071918547846,0.0275028264170277,-0.0341181772105436,0.304022719098019,-0.514613034899172,0.0496210696103284,0.0107522907426505,-0.0277300390891907,0.0486547867214437,-0.0972929696277108,0.0818080992674086,-0.0463413705417978,0.11136958534487,0.0140874963713293,0.0555759666035265,-0.0263324236753727,0.00521148964985872,-0.012118642876534,0.0336481005458447,0.0183428845822385,-0.0445130592727683,0.0419164203538051,0.000597695394359674,-0.00700745915684618,0.0474408228309239,0.00309872605344258,0.0735711735318696,-0.126153385019914,-0.0320195700897835,-0.0765932587522262,0.0394114765464305,-0.0287047774196353,-0.0153777808484704,-0.00436598504539639,-0.00153490279193516,-0.0257555660998741,-0.00523541392308884,-0.0410800656879605,0.152754088294801,-0.0227387276167571,0.0208664561023614,-0.0420169648524352,0.0198043162856584,-0.0167366864967963,-0.0285599034919143,0.101723931469506,-0.0342919105550793,-0.0303172899856316,-0.00858538076945289,-0.0399943676579481,-0.00561795035343052,0.00605987325826234,0.0628195879305177,-0.191060950016523,-0.0307917598610741,-0.0244383245330448,-0.00829370008191219,-0.0136436638902462,-0.0150636111507159,0.0201021923845306,-0.100347908177095,0.444900797147482,-0.029043680801841,0.00197990213230939,-0.012695334205936,-0.0521675499226343,0.057674685403773,-0.00960698285766063,0.335305165833161,-0.53461876614455,0.0427596104485152,-0.0497790596380655,-0.027578102482736,0.0763308852910069,-0.0612218393801441,0.0905423649518927,-0.0188446882174067,0.0849928965131452,0.0129015325294311,-0.0425835780498617,-0.0160957670580772,0.00892233703618769,-0.0368549645776516,0.0372319538437816,-0.0246316995524876,-0.0271097077524392,0.0458624340493539,0.232835310015248,-0.213339565272033,0.192211571823991,-0.0826148550652495,0.0631560732430921,-0.214088531123121,0.100304670846478,-0.194010444232037,-0.000891988195307364,-0.0381020865774287,-0.200372447858949,0.116699578228807,-0.00323918898189517,0.0106926249573834,0.0104868514273075,-0.0300909298753806,0.0937032767188522,-0.0398561943292086,0.158576109085105,-0.117760901852745,0.0452303450046848,-0.00901157045530549,0.0031846326161166,-0.0530513586468256,-0.00551013766766795,-0.0135472532347884,-0.0156078383205516,-0.0164847211672461,-0.0124605787915899,-0.0257016459672066,0.0373743913790799,-0.0255718961803562,-0.0313213460657783,-0.000336858255419918,-0.041432068754106,0.0328269409783954,0.0145700139360466,0.00782864427612607,0.0157271119240319,-0.101719055237343,0.00483915301857669,0.021495114564688,-0.0575600557570372,0.128907295710151,-0.0398131447060064,0.0754768424560008,-0.0573271248477552,0.159886278400271,0.00865651300701217,-0.0104182622884574,0.0384727591757433,-0.181302292140818,0.429030029641503,-0.455695490325939,0.457988691772983,-0.53096641760911,0.0171565697635544,0.118167630485936,-0.090270901131773,0.0682373825509454,-0.0710316068631066,0.060762430516272,-0.0949051434909153,0.0493330210651312,-0.141555786165937,-0.0643706184699982,0.0905940488974723,-0.123947107230904,0.0376095611982484,-0.0472768588832676,0.177643768614403,-0.150960683632837,0.173961425534777,0.0988747265178434,-0.0400522650174411,0.237430927958825,-0.174213444777269,0.0843005759349205,-0.118436741314885,0.0988447789492284,-0.0605670883008685,-0.114549258698148,-0.0188517120843539,-0.144926933846455,0.0951569264338079,-0.0901427205885131,0.086507805410544,-0.0741467252468674,0.0585907969658836,0.0381008201095058,-0.0719410602945585,0.0502302237120211,-0.0524009297828321,0.0808240511393715,-0.0314746735114191,0.0477052742091508,-0.0499908819913385,-0.0710983653551624,0.0617006239470604,-0.0778527561766062,0.0398174779625787,-0.0636387533236457,0.0575468512559756,-0.0512240111969439,-0.0194273498242013,0.0266023786503646,-0.055663828000735,0.0678615941759935,-0.113193384836083,0.105357399923534,-0.0837030810887358,0.0844125513080795,-0.062403826078086,-0.0938764926533425,0.059221624432195,-0.0949378790808399,0.236057702365505,-0.335139412937394,0.408052443261699,-0.269507935561401,0.416586633410968,0.0534877885606805,0.0841760874820563,0.00623137461295482,0.0349804375887,-0.0286365271746928,-0.0046091716449241,0.021417202564602,0.0174229281029116,0.0261946503993217,-0.146873296674305,0.210132175070672,-0.355138867825154,0.359675264229335,-0.275571755994636,0.130919768246609,0.0297210438331381,0.00774436721469123,0.000685694946120004,0.0420161971908417,0.0848576573646826,-0.0835238342337584,-0.00148131482592939,-0.0153075026531411,-0.0347399653371587,0.0112171018898099,-0.0244756249960611,0.0389289574388824,-0.0940187874810732,0.0989267755115345,-0.0367611070519186,-0.00959542372831755,0.00613149256236795,0.0478004322914455,0.00474972765870043,0.00651647866657032,-0.00943644999914281,0.042823308633667,0.0096878543742703,0.0380480314035338,-0.0291135926834132,0.00431110950274478,0.0291853878861419,-0.00497115400200755,0.0377566469486368,0.00850402155427555,0.0349282554275536,-0.000175524864361706,0.00450282607174678,0.0619957212516722,0.0270120368457827,-0.00207330852930629,0.0664372096562275,-0.0768750746429648,0.0331589520433355,0.000243727205642859,0.0646651047281954,-0.129710021673041,0.033512016771289,-0.011493659599923,-0.0235561770211698,0.124106018640545,-0.368962850847347,0.366976100435429,-0.336389918141467,0.313942604138709,-0.0200578994789021,0.0769810089322688,-0.0373889486896936,0.0461403953243145,-0.0367696479975025,0.0464689004627616,-0.0346610143764111,0.0443530484070937,-0.0696194413262441,0.0396928738928346,0.0121136470569378,0.0251522524690496,-0.130337373473123,0.104225359418289,-0.052493193327754,-0.070428195532529,0.0484299298277351,0.0828153859761473,-0.0481972593474991,0.141049356159435,-0.0762458758255486,0.0658801275154853,-0.0515985806411745,0.0489520593298362,-0.0494843699771926,-0.0334340628272767,0.0183396307263888,-0.067621006015472,0.0741227298010735,-0.0241037701173305,0.0287992081047038,-0.0354576595900116,-0.000950979281177073,0.0441111314639528,-0.031848234562743,0.0216057296023673,-0.031353902315838,0.050630631334984,-0.0389982576805256,0.0583665522477064,-0.0144952704784083,-0.0612251866206995,0.0389420724620742,-0.0561016214711779,0.0287458805299578,-0.0277824752185215,0.0732747330756936,-0.00845460688806138,-0.117669977761996,0.0138050296540961,-0.0653687050172099,0.0195654516721496,-0.0468266649478242,0.0429799010790691,-0.0302175283646286,-0.0175991028181121,0.09132561813123,-0.0225116768353506,-0.0111513298657596,-0.061812579349831,0.0557773935656817,-0.124473032302305,0.165325359271328,-0.101815329283522,0.060689686095093,0.0453268823010712,-0.0629244024429009,0.0336183578564888,-0.0549162833169335,0.115162772560307,-0.0495765204354545,-0.0154698382955724,0.0637283139921713,-0.0896102061668972,0.102789736366272,-0.202655631571843,0.502609456462946,-0.636621733353143,0.483720222945484,-0.0315655991246392,-0.145901535203395,0.272834870943405,-0.0186937858741468,-0.0269660423447291,0.073370241378091,0.0693106307896511,-0.0396644430418192,0.0258719600068194,0.0106518279299018,-0.0423961095288673,0.0181149278336411,-0.00911840525363961,-0.0310813133006881,-0.0536786829279012,0.0143796516464725,-0.0106579519743256,-0.0134888730336345,0.044936259630152,-0.00315790329519,0.00823391336011896,-0.00763709986742036,0.00543442513133578,0.0327193984789636,-0.0370676791821723,0.0353918582830588,0.0121320374851825,0.00948998424905555,0.00718519046269439,0.00197521875813209,-0.0083025842676302,0.00352895884578597,0.0206462718858161,-0.00947421781081428,-0.0161853420240193,0.0156836533984257,0.00826398754746435,-0.0177276263218075,-0.0110835413390742,-0.017584234628891,-0.0109731360979375,-0.0797251855007028,0.0730651954040141,-0.0705303481291592,0.0394581432923929,-0.017558097282053,-0.0349032698315219,0.0888794533015017,-0.148356269825059,0.166603526320276,-0.0692514301462871,0.0119880555007802,-0.00790463111795679,0.025868833889946,-0.0739378166222649,0.120598843232531,-0.0588865258654495,0.0195891041518652,0.0523425535591121,-0.0788863637081007,0.0163863906157624,-0.130756056480031,0.439543719749607,-0.52908751798266,0.4082706686363,-0.122470493478254,-0.102547753238782,0.224458517707474,-0.00313051731298819,-0.0355147134067231,0.0897292389693967,0.0411020567646819,-0.0461183378314793,0.0092806283072548,0.0244660436157782,-0.0162406141516694,0.0719017154217243,0.0131432087512819,-0.0821370554043527,-0.0190841823586026,-0.00451382639997167,-0.00627937658278115,-0.0530684175080166,0.0835723777074011,-0.00146217327413071,0.0109647035491799,0.0346134939547966,-0.0305445139069801,0.00393841117339087,0.000561805502728213,0.0398441741232678,-0.0421630440266755,0.00908911011941856,0.00328859938080977,-0.0105355835955243,0.0249232148453211,-0.032671119747919,-0.00878904433221482,-0.00575650534603314,0.0475247308627251,0.0502938010175307,0.035944635991656,-0.0125517968931221,-0.00761538760324177,0.00629723614913495,-0.0165340805770593,-0.0120815989846578,0.0215172508468958,0.0137024310069715,0.00282158030086308,0.0238141330081665,-0.0657805550377476,0.124736300480666,-0.187570613151528,0.120185283700512,-0.014108888361522,0.0144901595342032,-0.0301658423017879,-0.0185850305485556,0.0336487267246174,-0.00836778707495384,0.0246403216122443,-0.0245308390854183,-0.0205044812920226,-0.0129171536621018,0.164686130432816,-0.152765900039155,0.151493923974551,0.00180221708070892,0.00787722959164795,0.0292133559247239,-0.0187416092590478,-0.0607338538506778,-0.00515466030582249,-0.0211856096572221,-0.104627966724673,0.041072256390164,0.0143947934242854,-0.022365304670156,0.040320819020025,-0.0263506392639803,0.079313315031087,-0.0347315806358846,0.11386608012335,-0.0845455962746928,0.0496302064068242,0.0414877595530021,-0.0460424117552467,0.0440308583810354,0.0110006720655471,-0.024121416793921,-0.0175756403635304,-0.0428042722372712,0.0413445895857437,-0.0158046675196403,0.00630370492393863,-0.0400058035386032,-0.00381872323254539,0.0028964721690193,-0.0363218462607626,0.00226124414568425,-0.041140010754603,0.0085109633612663,-0.0452497324100143,0.0836086429363491,-0.0346484206299685,-0.0383446373535602,-0.0201467899043585,0.0323205728605712,0.0244106153607068,0.017049936508685,0.0344894171230732,-0.0860086169619623,-0.0103563297513274,-0.00361392232331038,-0.0434030600469377,0.0141322845849002,0.147388849783743,-0.236097613305131,0.313846162808302,-0.258924009708716,0.0231413678879742,-0.132088520661812,0.0468354254096681,-0.00385430279039253,0.0166207438370236,0.0190388603996013,-0.00637556746793919,0.0172151922910879,0.0192508616440329,0.196647896257838,-0.19463519524047,0.291469182022502,-0.184931994588685,0.0896751346574531,-0.032854491336769,-0.023733033895546,-0.0188874180309297,-0.0756573819795226,0.00913342120574336,-0.104759766366965,0.109255726973719,-0.00153204850918469,0.00804260480480613,-0.0163222359243917,-0.027992834984983,0.0174114787598297,-0.00388592295703734,0.108015115915287,-0.0921938936716658,0.0463967574513259,0.00341534808664003,-0.020473341088567,0.00510345756378518,0.00589199893377474,0.0111498421361692,0.0178991126346035,-0.0198468179806279,-0.00876845606383065,0.00248424090408762,-0.0184973314674828,-0.0142590900600468,-0.00693395980452793,0.0105921814887424,-0.0139265791729386,0.0333052128832758,-0.00968569260858,-0.000155793871836393,0.023535394417318,-0.0879672904270799,0.0240690903092434,0.00143000697569974,-0.0235084302622849,0.0468296435783961,-0.0527347260153191,0.0236073654074962,-0.0759136783195353,0.161028695869441,-0.0209113509363525,0.00153323468431695,0.00502152246648898,-0.166419020705804,0.328534958181655,-0.443798735582614,0.425128812326459,-0.382015456132714,0.0124421809836597,-0.0556496174259691,0.0292872746294996,-0.0659439773857521,0.104661525451788,-0.0431144307359251,-0.00576813028277531,0.049498513165483,-0.0747460819082308,0.122123544164398,-0.215368207055188,0.57821556246628,-0.629298078472106,0.471233580467938,-0.0987392638069824,-0.158993968721473,0.252997535495325,-0.0268039349272596,-0.0279795510756943,0.0293020001228329,0.0815232695152996,-0.0284113032892067,-0.0149310700762673,0.0412107456303276,-0.0512189846261106,0.0803653181456727,-0.0768009302529289,0.0498147385080631,-0.077604368392705,0.0431343612907667,-0.00672816652333629,-0.0537035271125447,0.0224003974539403,0.000416086296428167,-0.00831018809469961,0.0252982047764538,-0.0152340597273913,0.0501066149877666,-0.053375310870456,0.0396507134311497,-0.0566326268972879,-0.0428145701330163,-0.0267114876750483,-0.00940665009668976,-0.0144857850899096,-0.0382507474745247,0.0228094724841938,-0.0161732148306601,0.0176827840041857,-0.00467379531273116,-0.0189200565620681,-0.0361818913773048,0.0561286530457077,0.0130177441545699,-0.0259954615723946,-0.00392152686794379,-0.0226625616037747,-0.0155497069519265,-0.0124155479118337,0.00829275731828431,-0.0651431301716669,0.149191059238723,-0.130988238213299,0.230334523327755,-0.106502558987308,0.0192823968378203,0.0417197092745677,-0.0258703058661555,-0.00368358854216172,0.00949590199345916,-0.00362680603115444,0.0463674750632676,-0.0316537710180846,0.0439179397823646,-0.222286396543495,0.219002263640472,-0.294230098438122,0.218477882746134,-0.146219936900854,-0.0700280770808742,0.0571638747472013,-0.108239460085988,-0.00247585304938886,0.0382254062170468,0.037145047388988,-0.0622938547555932,-0.0215663494965404,0.0435425734208304,0.0040974161407114,0.0187762685352317,0.0119227898479345,0.0183737685593325,-0.0970635113979884,0.0799440775954086,-0.0613747881889844,0.00350756629910376,0.0110958730959287,-0.0138710554621471,-0.0190492350515247,0.00523011903445971,-0.0252882292654706,0.0488845535438993,-0.0137466883998207,0.0303434935382848,-0.0139833378533568,0.0240040517159934,0.0161714273964899,0.0276266196852604,0.0392999505598435,0.0134858903154048,0.00372551580842439,-0.0314536223187998,0.0346273377850326,-0.0197591392308192,-0.0137257999465664,0.038780925064112,0.0483540279530267,-0.00955905770804821,0.0220426259650198,-0.0104632697160045,-0.00331736256636023,0.0266775166024106,0.035151031017995,-0.0212396739173804,-0.00798058514202095,0.0391375186167488,-0.173581877553118,0.220960035047053,-0.336452217113656,0.28418931466337,-0.0237673399110388,0.0660084844255663,-0.0587909461402829,0.0739882655383691,-0.0306277072416155,0.033920936396744,-0.0606671236245183,0.0196354766199122,-0.0996936506535879,-0.0312889519996783,0.0931161073832553,-0.121607395035469,0.0641091390756176,-0.107270573154319,0.215558536136839,-0.12313819723221,0.147430957471083,0.0623038658333097,-0.00613582750380495,0.194793646501159,-0.138200017725227,0.0910000106890656,-0.0662534460604566,0.0658016886177698,-0.0447687656657664,-0.057181832268085,-0.0175199273343028,-0.0892332295621879,0.105047027611957,-0.0702822292835657,0.0749353993620459,-0.0605859982977966,0.045946636036162,0.034028044769624,-0.0421737506577843,0.00880895616577434,-0.064893847483584,0.038897750859935,-0.0525042975906249,0.0289664157528409,-0.00594752819980208,-0.00952554514624985,0.00059704336340155,-0.0532927560688353,-0.0101051528482532,-0.0245812145808981,0.0446568881804825,-0.0250752048938734,-0.0765516415703318,-0.00696790964843487,-0.0714176111472286,0.0290027924083516,-0.0230034033346869,0.0370494000113361,-0.02520502922206,0.00661687440806583,0.0325794155337687,-0.0826560073410303,0.0450127446140128,-0.0277430698266966,0.103527183769698,-0.181302208454707,0.126480483686011,-0.0607206438752618,0.0819140895335692,0.0275954383586533,-0.0699496686654238,0.0257479285386602,-0.0386055975483303,0.018998861958289,-0.0131128814777399,-0.00789064441429748,0.0206785994400526,-0.0253077373538931,0.0697898339514901,-0.0379548343624084,0.0448289037819935,-0.101797006334299,-0.00971908072663608,0.261355136864087,-0.0547396830710606,0.203694979315137,-0.0156162460309794,-0.0032733347669573,0.0252930131058693,-0.000828545123366337,-0.0313993610163778,0.00709673335549893,0.0301978754285788,0.0148745991319933,-0.0985824540339129,-0.00251732577249665,-0.0327933440968827,-0.0101672551469671,0.0159620934144264,0.0227632714561096,-0.0116906498595539,-0.0378904888336933,-0.00723506916444728,0.0187028876000964,-0.0366971823620992,0.0314921854543887,-0.0427645021984805,0.0122130854577467,-0.0697420536608192,0.176813217714836,0.00742573057657197,0.0328056953417791,0.0312919217740917,-0.0392391861011939,0.0443321375323665,0.00178541404591221,0.107035103071164,-0.44961485050443,0.024710297042652,0.0350912587833405,-0.0113934512946705,-0.00522445430252128,-0.0309859956865613,0.0498620132893871,-0.32818208116995,0.506196897388071,-0.0906385468993831,0.0458326431561709,0.0242003886926962,-0.00240825771737328,0.0264252164504643,-0.0909392998799015,0.107044019298481,-0.0679516556125158,-0.0143568265995742,0.0115098788921874,0.00954234375285334,-0.0184845135402307,0.0264352815836345,-0.00921391802395022,0.0330802200922971,-0.0390052151596382,0.0482553210837999,-0.0774952887255537,0.0930988606131176,-0.206924467216268,0.172375485499809,-0.144947786905428,0.239760992451835,0.00838543617694821,0.0270055759977679,-0.0317377408385493,0.0569133458428967,0.0684484107120894,-0.0474604293210672,-0.0138766624977327,-0.0115712940055834,0.00143954299158869,0.00597347847727672,0.0453192202683885,-0.00994608364472416,-0.0733021601941098,0.030568374989873,-0.03520185739576,0.0566065882749803,-0.00683545377523597,0.013489720978545,-0.0246146752818513,0.0483295712094243,-0.00847544336740274,0.0138207632695811,-0.0387272499608067,0.0238038644929333,-0.0348227418240817,0.0852881702310197,0.0594252438445736,-0.0305966286193575,0.0573868323480052,-0.0533995859201091,0.0585738646010503,-0.0620861558237633,0.0364515843610264,-0.0575227760002902,-0.0218520157794309,0.0193974375544438,-0.0200446583024513,0.0121369886870169,-0.0439314028091144,0.0154074597538835,-0.0586013824829291,0.083654958206565,0.0353636557759887,-0.0299341370834267,0.0402341780840474,0.00825371290353638,-0.0293058004692368,-0.0897666876199355,-0.00213846491075035,0.0728434797425732,-0.0367139526882022,-0.130776515816284,-0.00713927853303122,-0.0183956099153407,0.00303244295894283,-0.013504055042455,-0.0371367972685183,-0.0135425993247158,-0.0564786054642466,0.234455402962447,-0.255682012253881,0.331843014986393,-0.309311491445864,0.235050584327015,-0.0908908582884223,-0.00350674353801091,0.0567447984598017,-0.0406713832712809,-0.00615752536474174,-0.10329833895615,0.122066961946415,0.00633758445354034,-0.0199998167186658,0.00521988864372089,0.00987379176728224,-0.043206425584581,-0.0109659703899531,0.10777559810796,-0.0889903525213988,0.0888561379305266,-0.0330075620920271,0.0117313787009185,-0.0329896081439783,0.0474938303544328,-0.0464692442099547,-0.0194630285667776,-0.0286403330618692,0.0288029814871786,0.00515270158188002,-0.0149879902751205,0.0442300345163838,-0.0145691351955149,0.0199337639809788,-0.0431342633381172,-0.00874119050776304,-0.022052864238422,0.0128770802001178,-0.000173782641635651,-0.127341122091008,0.0257969539546332,-0.0345939767924938,-0.0536912509693136,0.0642548675418119,-0.0241698844928724,0.0380983241221828,-0.0857169549386713,0.170517965120286,-0.0829910692358467,0.0455722311967027,-0.0041129569190585,-0.0991664352722199,0.275732222224556,-0.291148776283563,0.312129749478086,-0.332477000271431,0.0197960301141333,-0.00319437784613958,-0.00895539360810268,0.0364258186929583,-0.0167444566397931,0.0369169762223302,-0.0511320078135571,0.00671939091989941,-0.0207659413702679,0.0654861538120788,-0.0288599346919447,0.00916180926531586,0.0667519518170707,-0.0935639954202484,0.108280744734632,-0.031452476945701,-0.052438304121008,0.0422088628039286,-0.0266958837935625,0.0151261190579259,-0.0452165956790813,0.0227757448936877,-0.0156398990510822,0.0309661273053915,-0.030612470820435,0.000578089093776893,0.0324318270196539,0.0338739047090629,0.0380508110935327,-0.0172690983848394,0.00122696597909076,-0.0135171992756324,0.0297238805982605,0.0360504193400081,-0.0326366224544713,0.0368287930105611,-0.0166315059764043,0.0133386839925962,-0.0420028598017262,0.0143344097930018,-0.0626152575929826,-0.0462922206029872,-0.009876971874708,-0.0470999244025286,0.0264031936781271,-0.00837481077441876,0.0449339977381783,-0.00892957265046419,0.0117106409249855,0.0303825302217113,-0.00599683044977125,-0.00563353813212911,0.0212126909535732,0.0298929374705834,-0.00854813235603917,0.0630991155177779,-0.0620614849898857,-0.0349880966612434,0.0380776912703453,-0.0122863493274258,-0.0185128097630212,0.0887484751194277,-0.124957188195355,0.238813220729484,-0.228553945168835,0.0219946370596722,-0.0914157795115516,0.0424507253773247,-0.0273209450076158,0.0450587805787011,-0.0152280222404284,-0.034963382120312,0.00429970184083595,-0.0111563916202284,0.162349394066549,-0.20864628149152,0.3357636426767,-0.325361276829154,0.246966919247318,-0.134756689261026,-0.000143882775951598,0.0437306465431365,-0.0359599414617917,-0.0207731000704892,-0.0633488042005281,0.0930102529086465,0.00323228546105334,0.0317777772286083,0.0389573378865034,-0.0142775544249923,0.0218047252959386,0.0218689040380964,0.064249411366443,-0.0863090798666813,0.0694044842615599,-0.0419786559742709,-0.0270766021186684,-0.0248756771351191,0.0221568072842436,-0.00684956950989106,0.00531774927459918,-0.0138251030254501,0.0308967070142396,0.0030978325262497,0.0332318268924034,-0.00169419443576901,-0.0317908941961767,0.0250469160946179,-0.0155439788966199,0.00872217978332248,-0.0303710318518566,-0.0126290413811705,-0.0013804812658351,-0.0872854480038823,0.0287854217031851,-0.0186189850242027,-0.0587093573526143,0.0759111430756727,-0.0348185742156762,0.0221862122608419,-0.0824467572862363,0.157516330129584,-0.0435095519182404,0.0158034378705645,0.0293535021317031,-0.142202844143641,0.346055352533838,-0.35190002429947,0.334576760194957,-0.339719275582648,0.0187635359147482,0.0357052683869676,-0.0291697902527384,0.0365706586343315,-0.00545317261797393,0.0218822168249678,-0.0540065969957736,0.026366826561496,-0.0792306596660909,0.0638687516458373,-0.0474665855753695,0.0399721542206684,-0.0608590135604313,0.0775791973857621,0.114530014560573,-0.109170385307849,0.140793499803992,-0.00587941042242263,-0.0498902148136865,0.178695500046237,-0.086771028364715,0.0151876435593113,-0.0601029002430155,0.0471463683801805,-0.0282584655561326,-0.067473621595894,-0.00992243581816199,-0.0931935877405021,0.0418689384128421,-0.0595216569891808,0.000774798147510077,-0.0380252844107572,-0.00597357746621417,0.0405562536140582,-0.0383515670091061,0.0438364717631304,-0.0379410858607816,0.0555555376054979,-0.00190912984714865,0.046712506416189,-0.0146788479965172,-0.0468129022408407,0.0277117119803615,-0.0343134414536257,0.0376964875859848,-0.0371003906429055,0.0543993304683128,-0.0293271045990084,-0.0500654975740437,0.0132199899719261,-0.0260368256819152,0.0505448044920786,-0.0503725169194252,0.0661961795866519,-0.0466755542307864,0.010394721056333,0.071794596785753,-0.0686477632611328,0.00770646709175483,-0.0581600158814857,0.0774450197422992,-0.134703241912311,0.105997961247691,0.00844448310834841,0.107052038286334,0.0271662357191609,0.0357095749935476,-0.0185432941863246,0.0168227782561963,-0.0313518479500482,0.0171928177541175,-0.0199164961879975,-0.0263392602024006,0.00467757674822549,-0.0147158915554034,-0.0286532327137821,0.0527765771768345,-0.0405349220147105,0.117100410567838,-0.221183340385792,-0.00594734189901786,-0.086508781001734,0.0232489999952692,-0.000738226157132146,-0.0217812308254247,-0.0236778027515939,0.0105873963394425,-0.00750020523777975,-0.011708112749855,-0.00820267772304395,0.0280673526793665,0.00331689959482457,0.0234681228739557,-0.0157878122766667,0.00665469751436382,-0.0443483331508316,-0.0288231327745172,0.0285159124023104,0.00297419260132719,-0.00838605778861185,0.0136795256436023,-0.00670106395510135,0.0305072800823405,-0.0425136349255455,0.039259066989227,-0.127644284959927,-0.0513167528313818,0.0149047546785608,-0.000856038925158948,-0.00085872843042877,-0.00753866671716303,0.0182583483020017,-0.0834363128835188,0.402221760399366,-0.0117584182861713,-0.0341027396585194,0.0307105715864006,-0.0389631849505245,0.0490356278845368,-0.0353038728074639,0.246026125759068,-0.450335735291541,0.0107196817003557,-0.0197404206605457,-0.019610393571576,0.0644567392939972,-0.0811072758884887,0.0986820505743329,-0.0953228303748721,0.0553773588749054,0.0259865769625333,-0.0300619444143315,0.0121149096431734,-0.0287614737554486,0.0501101089378193,-0.00922436954290405,-0.00576995135476264,0.0089789178631115,-0.0390706427590978,0.0704475047136504,-0.103428708058756,0.313551377833627,-0.398313240452761,0.30424171675659,-0.220784032945482,-0.0476611887533043,0.0859507272901795,0.00318143744804099,-0.0240227614027649,0.0818998896644568,0.0304865810765974,0.00206634493915671,0.0179463143034054,0.0364017204504605,-0.00035342689140317,-0.139590246723966,0.0314991245177321,-0.0263362176416891,-0.0443814385710085,0.00339291267148962,-0.0710614211693471,-0.00211299016150336,0.00611544810461779,0.0397012560747918,-0.0250110570474164,0.0114643425129342,-0.0368896549385236,0.0270510000979051,-0.0447180330288334,0.0471549209887407,-0.041171196975931,-0.0307016057376473,0.0290525384936866,-0.0389385985371036,0.0252542065002518,-0.0605496624688305,0.0511530888856001,-0.0499874130861059,0.0914524038009966,0.0288940941562082,-0.0616038172270856,0.0191920973014706,-0.0170083896580415,0.0538730521111438,-0.0378939163835758,0.102207674453907,-0.0711125570473305,-0.0739527730393961,0.018609273702013,-0.0027321109428338,0.0559283377982382,-0.0982717737680077,0.142740662493058,-0.0482099425200745,0.0211307433216619,0.0256479422503902,-0.0613611668352002,-0.00343412259732761,-0.0198351552624233,0.0756688783643822,-0.042700822087134,-0.00175070857085099,0.0566670313146528,-0.0986719000163269,0.179790801420988,-0.297274194153901,0.497121739920229,-0.532429233502322,0.455710648378352,-0.198663185377442,-0.097216688466253,0.169805279608286,-0.0610112480991474,-0.0248526762601121,0.0191197076520178,0.0512498346929928,-0.0235435116335075,0.0194195889926504,0.00707432087803065,-0.0576070537214121,0.0702022104459735,0.000122476074890601,0.065041609557635,-0.0757772914012803,0.0538743870275834,-0.022050387122013,-0.0133542995100631,-0.00176026116369786,0.0181584926039835,-0.0314632761676595,0.0107162593541362,-0.0265880292925722,0.0333390658328872,-0.0354024759250857,0.0508770078731323,-0.01971899397648,-0.0503340143327606,0.0207454464647771,-0.0190098763683274,0.0140536419251133,-0.0319793686387037,0.0249762532457714,-0.0138885937145394,-0.0100971993724437,-0.0257260458684939,0.00235209802456628,-0.0513485167825097,0.0601678264311786,0.0295778481118176,0.000680076562117393,-0.0306351979333187,-0.011969474730493,-0.0615438057096714,0.00860251836648815,-0.00859004196180168,-0.0583791032264014,0.181683488592651,-0.123078767519988,0.187351684980902,-0.128849443167352,0.0278756020086309,0.065274547863045,-0.049574035201407,0.0244342784130132,-0.0321238996336104,0.0170391487126918,-0.0341227417490408,0.0165790810631495,-0.0717082711791567,0.0351783273797859,-0.0330529301886928,0.0161147186796311,-0.0397421436648708,0.0412291631174801,0.0969849942996641,-0.0689016081948311,0.100203038864096,0.0368416211434488,-0.0542734804379908,0.160604015371014,-0.0875473395641603,0.0612129788402841,-0.0614928626950395,0.0237183622887826,-0.021061079664687,0.0273897924799101,-0.0370906440756007,-0.0436558074049474,0.0625762485376087,-0.0342561754380201,0.00550123487702313,-0.0617382177089046,-0.0174097958471517,0.0331873863829285,-0.0529199988717281,0.0232611875387532,-0.056660388831007,0.058249546617051,-0.0265280102587618,0.03539963152316,-0.0531806637979366,-0.0603346200409522,0.00279443720089091,-0.0496343125997674,0.000434294025527723,-0.043008137214555,0.0587296309477165,-0.031479745455139,-0.0400975309044551,-0.0103385127795482,-0.0521514937692579,0.0296936476472811,-0.00905609038534099,0.0475792220455889,0.0179810467642162,0.0259533395463647,-0.00268616147192032,-0.00566310945961198,-0.0182895696630547,-0.0617536204663696,0.0592379694562074,-0.047426218675831,-0.00508940430290997,0.0896394531537936,0.0325953940782771,0.0334059078415286,0.0105215073543596,-0.00770114717568448,0.0232580457692608,-0.0103583935976527,-0.00752284503211578,-0.0165295894084528,0.00181514413351908,-0.0142635376641098,-0.0106702358704782,-0.0250536754386976,0.0530810391235538,-0.0728473731866025,0.174737271419805,-0.147659801156001,-0.0253240621137178,-0.0778473792488227,0.0357441263184291,-0.00826874844292347,0.0272624678592103,0.0274026830443143,-0.00414536329906131,0.0156825535192057,0.00693462582558571,-0.0315292714005619,0.0975215937381237,-0.0594720015114159,0.038254801334527,-0.0255678467152442,0.041731076473471,-0.0307950845783677,-0.0207201699167984,0.0721578015693639,-0.0105029150388666,0.00424436665169016,0.0037773507585621,-0.0305489673825344,0.0463365519081783,-0.035310492204983,0.0703749047153972,-0.148839493970709,-0.00720439795276032,0.00429261325201497,-0.0110713810919834,0.0252741623566958,-0.0295060965932581,0.0229215528420269,-0.104379860490849,0.398365674564049,-0.0523907872294745,-0.0331284701222468,0.00705151255864424,-0.0413725064949463,0.068605167865479,-0.0218579716782229,0.298775378938298,-0.521419408841369,0.0425843283996038,-0.0155933922083461,-0.046799485061026,0.0905253666896407,-0.0914782371003385,0.135914361027721,-0.0992693190177575,0.165238939731733,0.0171330815092757,0.0277053520740194,-0.0387025719233087,0.0523882604572835,-0.0528645188095116,0.0539447509429941,-0.0208452932835416,-0.0219523699713571,0.0591966738365914,-0.00149644314105107,0.00447915619965226,-0.0353928228266352,0.169584362162315,-0.0677220144293859,-0.0683908380554915,0.0338798631171571,-0.184734458662246,0.0147811090336314,0.00516174923570688,-0.0176689310527248,-0.0223954229941045,0.0516883618532665,-0.0304975804068838,0.0278199618885241,0.00254116343169956,0.0825838489185877,-0.0352182331804265,0.0554413135681601,-0.0358758801976155,-0.00857073140993346,0.0142810742243962,0.00555361065630265,0.0446501124498715,0.024618954358399,0.00520046585121528,0.0260676846087766,0.00409147060567758,0.0166076673368157,-0.00511911833245438,0.0308279312968496,-0.146524019749648,-0.0371695151635655,-0.0289849158597961,-0.00652627179594292,-0.00807260282669701,-0.0353389486481551,-0.000602288796870799,-0.0654154313811789,0.358634242084361,-0.0175139596999437,-0.0299377418497637,-0.0157663919096248,-0.0024401750394136,0.0238817859178215,0.0044088594949695,0.248979938235095,-0.453145860087302,0.00272160724610512,-0.0246779023245301,-0.0151826646397811,0.00587719083977639,-0.0861601836916264,0.0306944228631229,0.0512247184369878,0.0185575348159647,0.012312232412472,-0.0117017988787675,-0.0177875173893575,0.0282475125440635,-0.0908882528616171,0.0468384630010621,-0.021006842218021,-0.0283477965773153,0.0495328555789418,0.0993729746330221,-0.103125524505228,-0.0229055683190703,0.298896234755831,-0.300456362162487,0.146042161911166,0.0104237190084556,-0.140917589929463,0.0210281311313491,-0.00772631361897665,-0.116354163246703,0.0645900103735649,0.0440152698083091,-0.0567667771589138,0.0277059502724434,-0.0415795958628466,0.0453046002409728,-0.0397142511992108,0.112753474080219,-0.0400298804808029,0.0417735267884322,0.0568975286535327,0.00574594211943142,0.0339752379357601,0.0159152008980408,-0.00567027092175768,0.000712866712141054,0.0135870913319432,-0.0184179732189983,-0.0190774396446625,0.0325818292715068,-0.0393790998160957,-0.0398903356833222,-0.0203217435733475,-0.0498466560346022,0.0212180232251324,-0.02987795328092,-0.00438982429665914,-0.0303814740818353,0.0522078766726107,-0.0161434897618923,-0.0373912690676025,-0.0103273410157025,0.0126381864785271,-0.0244905694268347,0.032372797447058,0.0959287097303736,-0.0927286033070819,-0.0427506991979164,-0.0166361651622406,-0.00224696858074171,-0.0284572558072568,0.175657508609542,-0.198896357788033,0.326860566945075,-0.271396760209266,0.0231038101696863,f,17,28,0.25726089027921,0.133629445478091,0.00661312088728048,0.0871511361301747,0.0783747714308631,-0.0299887539563654,0.0406660802721436,0.00495387842165665,-0.158506734880198,-0.311049889889241,0.0662756889631747,0.0440527463127855,-0.127424712576879,0.0214734157269162,-0.0368881085377245,0.000882166315066147,0.0860518606480783,0.0235680956108063,-0.0130932034452369,-0.045752316642675,-0.0303765383137219,-0.0610263299741686,-0.140794387420241,-0.139503268465705,-0.0029716032695229,0.00830297124250359,0.124415205744322,0.154728685106008,-0.0296600917262823,0.261656712516611,-0.0681502042242154,0.142920544955245,0.0951196482540188,-0.24139950091021,-0.137832981042801,0.244663053897387,-0.10415557714642,-0.205687752900586,-0.142573674877582,-0.118293570695164,-0.166657468675294,-0.205641870014036,0.140352008379499,-0.153313046295869,-0.247238748351713,0.0658122126105141,-0.288606276068138,-0.0636465257438456,-0.217944883853843,-0.0919271734575629,0.0926808944070268,-0.0775297981738776,-0.172616020798299,-0.116390835432378,0.164729218316545,0.19838699825049,-0.0524898589752563,-0.100966532509832,-0.308341403594269,-0.168062659054245,-0.203158335310287,-0.174443525674343,0.0354071267392168,-0.112171976484696,-0.247993259489791,-0.185898184335798,0.433920222914688,0.333465990167835,-0.0859146488940919,0.198167729933199,0.339283294903178,-0.0305142954335324,-0.161090919686725,0.274899546184191,0.0798855198861263,0.272099132573275,-0.160701789605749,0.281285512740092,-0.205808635724474,-0.11616218436223,0.0122160293289669,0.310490983693717,-0.176287067530315,-0.171260816447511,-0.248962652567152,-0.18227387205555,-0.15223513729396,0.18914552930471,-0.0450435526714373,0.105145097221979,0.12152264609029,0.145616293270994,0.127068653976604,-0.142746906546517,0.0305584631002535,0.0207196764026942,-0.100928048135966,0.127085497395415,0.0458961228826177,0.0468663140531774,-0.0994288707062086,0.10777868145898,-0.105631807600518,-0.126630256750599,0.0545764267391731,0.0358942714968409,0.101610043154034,0.0420309142071827,0.128330940563858,0.0125060240498484,0.110090720227149,0.0554645616676631,0.103399883040464,0.0793895708568003,0.140913430119616,0.0665027171024823,0.353186834726807,0.0514198932152562,0.154695482965569,0.230379331431493,-0.141976735021322,-0.0590766943530236,0.258489286383279,-0.135458215476553,-0.412783536092916,-0.180268780482711,-0.088917607608235,-0.201670711943858,-0.324576370001961,0.111876523325515,-0.0829254170831715,-0.287276647710854,0.106863984122415,-0.312126977486571,-0.0989225540803756,-0.299441406598282,-0.0634516168173082,0.157995525978197,-0.154325577528214,-0.322543310110262,-0.140040944482688,0.114747015036341,0.25990058193833,-0.026590557676177,-0.0987020038167042,0.13498421106624,0.0591081534395687,0.137758500101874,0.125110595230792,0.106346754880799,-0.0557194769537081,-0.0165831134937523,0.0535938771101944,-0.0724719238260456,-0.0694585612061381,-0.0203510719801626,0.0698878580280675,-0.0386543645480213,-0.0690577881655456,-0.0286830404738795,-0.104301449970921,-0.0497504233818563,-0.00560917665043606,0.00306253207603192,0.0582442572638086,-0.037436224682839,0.0583851518300749,-0.0520762594538109,-0.0672481008485391,-0.0450871227620309,0.035670166740241,0.0576416826127715,0.0777252263995294,-0.00132247822342929,0.0343652608704933,-0.272852171104968,0.0750053583989543,0.053613371125453,-0.286988764159407,-0.0796779341577897,0.231968102749267,0.0037833108385502,-0.0881320589150194,-0.0777847153593665,0.00907677928202999,-0.125730946082708,-0.123841806809556,-0.0327994843937365,-0.0266290946502867,0.0398086337463689,0.0404365709859415,-0.175649959989066,-0.0268824641272455,-0.2168589390912,-0.0305047813057392,0.0161506770859982,0.0611569065789118,-0.119999747113452,-0.0135599889738679,0.054349829546689,0.06009122657591,0.0111945200076984,-0.0356611413673498,-0.285065847340869,0.222388691527077,-0.217641022723542,-0.284588519046174,0.0346669195023714,0.0706271055792538,-0.0132946693859425,0.0549360036407179,-0.0494932625247824,-0.0994698214050524,0.0303213515709605,0.0919348147434862,-0.0820181477169479,-0.0625313596833167,0.0163112392623891,0.289715802656903,-0.0420557122329781,0.0868301191801716,-0.0100246665623473,0.0651140123855015,0.0805811115823559,-0.198615829703796,-0.0585263078158871,-0.0236013614377061,0.0608820456600741,-0.294729798298198,-0.223330715420647,0.0631774404258865,0.0292456370716102,-0.0129638547452939,0.0182869473775461,0.049303148088569,0.0622302175146178,0.0453513336534705,0.0644375890085389,-0.0563329294076491,0.0707742767133269,-0.00862810833406097,-0.0697109485208081,0.135540912648691,0.138915214184933,0.0270514679563856,-0.12297771864613,0.0918674003130007,-0.0100601388400746,-0.0173778409091897,0.0406851025055366,0.127652883259974,0.0223463062831679,0.115899167884515,0.0270276835954636,0.135510758263974,-0.000821398025067609,0.029533893831391,0.0921286161088599,0.0856884613919289,0.155096008892803,0.0681176272873897,-0.213071604731662,-0.0179798725758388,-0.0944312062308986,-0.0836011803929337,-0.186675310953909,-0.0495545138078285,0.0936046868078905,-0.0400428751180385,0.152924004392644,0.153622686675911,-0.103020032253364,-0.0998862686431238,0.0813896188089725,0.0834604734587289,-0.0219499955463577,0.194899877537246,0.0450523782381057,-0.0868391864040499,-0.0243110580717398,-0.0576723371602847,0.0264622735529174,-0.0742553698785704,0.0636407393602826,0.0515702813471865,-0.0874899539352283,0.015210730050739,-0.108671331296552,-0.148193021150916,-0.0374376141909893,0.11971300707257,0.219571386630145,-0.0506143720696588,-0.0934769843558967,0.0304990419801305,0.0243416858175963,-0.00632113970518628,-0.0114989338861859,-0.230333547607512,-0.2834299747708,-0.0435423953776687,-0.0130213547400475,-0.183487239668967,-0.023478494599199,0.0164747976031813,-0.0421286368203976,-0.0643961820157033,0.050547650345392,0.0782974672208716,0.0336615011517263,0.0736167940312392,0.0150503607501338,0.0352426233389995,-0.0852415255911324,0.0661516809142935,-0.125069169128568,0.0481239029882193,0.0819513032073427,0.0314456211348203,-0.00227118237969146,-0.31375586789304,0.00651525761576627,-0.0145409168988502,-0.356418956276193,-0.0908797516459787,0.270408665258134,-0.015997895132615,-0.0734327637300222,-0.105998674906111,-0.141788557456715,-0.329345034517856,0.00770218054857739,0.102961838982005,0.0276540151726089,-0.0314245440642664,-0.0415271864281459,-0.164426374017403,-0.0415911313569729,-0.267639251874372,0.0329010075631575,0.0398671014878427,0.136115343961145,-0.0662624470189322,0.0237245093849604,0.0375169309674084,-0.0269369830465581,-0.137385976632225,-0.034516515649906,0.00665169798326095,0.453895267617826,-0.136293477692564,-0.252455583445001,0.297433524480419,-0.0462690246212186,-0.0855698267007643,-0.0992679116127543,-0.331158101680573,-0.290954499296618,-0.0536742134085897,0.112766408290327,-0.325421319089446,0.0863692018158482,-0.102628175413608,0.173341497461264,0.11555475606043,0.0400526574170759,-0.0813509754219481,0.0490863027401227,-0.117582818820208,-0.176693697410842,-0.272882311691132,-0.245350500437579,-0.134476064666395,-0.312980357062784,-0.173748925563524,0.0240323530731093,-0.0659465369738867,0.144550705287224,0.00198175335487751,-0.017695547025184,-0.037042480024369,-0.0103748042460778,-0.0117172873139918,0.0968462182427724,-0.0497538696889247,-0.163620133769729,-0.221619980421283,0.0615262234165553,-0.0331370187329151,-0.118353890961708,0.00413204641702208,-0.0715383196510586,-0.0222871028923475,0.0913958121300496,0.0199207304942082,0.0255046903510404,-0.0879287957790759,-0.0526160870256512,0.00805371406847428,-0.0310722734186717,-0.101767535907195,-0.0161227957313111,-0.0260705708574435,0.10762205398839,0.0715951857405285,-0.0281861424281125,-0.0558275787940526,0.195928803440841,0.0381469158176342,-0.0485093939548822,0.175182774329498,-0.0530214041714567,-0.129509111519505,-0.000978803473715329,0.0647158117532225,0.00639111420780773,-0.0119632197135822,0.156940035049989,0.0670751204692691,-0.0649714422691551,-0.043897256689019,0.0518007356118282,-0.0062840846896838,0.0989990761592607,0.0583638324316584,0.161913113260286,-0.0509910750187816,-0.041050966088018,-0.0906530862007025,-0.0400986631903225,-0.0482396417084046,-0.0594840803211553,0.017371787502663,0.076746264260981,-0.0147793383730836,-0.122400739213467,0.0590147658447075,-0.270583218819086,-0.281874869945178,-0.290257546161475,-0.219451087735756,0.191796890765616,-0.225248523891261,-0.0971671626302795,-0.10461872769438,-0.273710907189875,-0.23280353369565,-0.190622378659056,0.176089596962335,-0.220677402983225,0.299952988874984,0.25076240646879,-0.271404802892256,-0.218731474851364,-0.20871917909698,-0.232075628301627,-0.27109729251519,-0.193293499961872,-0.279808433526163,-0.18619838933717,-0.316062063259798,-0.320555500207643,-0.23638704669296,-0.19135996399118,0.0481623277213569,-0.00779946034451364,0.110735575355773,0.1646466594523,0.219910457873897,0.105189258033724,-0.121582849041742,0.0985549470237606,0.0998125575507407,-0.00895811773535694,0.0913529292906521,0.064159196798635,0.155413167008644,-0.0834312170054116,0.0778392044856818,-0.162815743823318,-0.0965589927368057,0.0230522474347279,0.0308103400778845,0.12903181186107,0.107627695047108,0.132664374682599,0.0653054722003315,0.108840285742534,0.0949584322068259,0.170931128350103,0.0945740583861481,0.0609395869015786,0.0538744969862004,f,10,17,-0.106191426493386,0.059107018042731,0.0815483545809321,-0.0514435453250399,0.0229933543688301,-0.0936752114249113,-0.0017004094344954,0.098408043216713,0.0145321141274353,0.0507441627139466,0.107857081698715,0.053363683095602,-0.0666576960909249,-0.0706962590658455,0.0258294332145758,-0.105237268419697,0.093089871350839,0.126738700061239,0.13054259174894,0.114825352903156,0.12999446724979,0.0316041375943035,0.0126743760784314,0.115080057115648,0.0181861751170836,0.0544071203194671,-0.047846939229863,0.134526781630032,0.0631367606306525,-0.0394173111791524,0.0612840718374445,0.0153826241963121,-0.0461723691299482,0.0854586854073417,-0.0139378484471628,-0.0314877716108679,0.0465191478098555,0.0272636337790872,-0.0504734950342177,0.0187667885096127,0.085048530375882,-0.0671298161540354,0.0592380538090446,0.0041866516638957,-0.126022565774875,-0.0076429998692564,0.0311045490640284,0.112250622344709,-0.0451342084831928,0.0285980051626602,0.0759537282327885,0.0258688642186581,0.0252783753837641,0.0343226028046873,0.0759971486087601,0.0146199854648768,-0.0161038308420687,-0.0367566309140191,0.0962464334191297,0.0607604694503509,0.0105269003263203,-0.0710382525419573,0.0250959651655742,-0.0355000102713019,-0.0120783510480356,0.0145860348067736,-0.0156550235510227,0.000223904284313673,-0.0168947003142721,0.00981253131446546,-0.109569507381414,-0.0313857943310051,0.0779185371705216,-0.0211989269307976,-0.0112868721469843,-0.0174002411309302,0.0266912527285981,0.0705561319966434,-0.0380244824818565,-0.112782167223813,0.0135750138225679,0.0192337186429901,0.0337910442728636,-0.0206392493780054,0.0397949862153185,-0.0823597017902143,-0.0480791181385719,0.0315498021816494,0.018542793975078,0.00350151803946803,0.0930195624815765,-0.0561829067762927,-0.0145731632387886,-0.0239148595301716,-0.0477060823637896,-0.0443619152590318,0.0403335645590066,-0.0179295739034307,0.0172747043171634,-0.0550286107455766,0.0225124533539176,-0.0074271415373592,-0.115188333357764,-0.0218480082748157,-0.0953992103721391,0.0519989080806329,0.00807650029296893,-0.175846907597049,0.0220377328642754,-0.0307408084408786,-0.0846535990111666,0.00478921002405417,-0.0446670801685451,0.0987827634813762,0.0328090361463304,-0.14085751453748,-0.0881594046909756,-0.0257468638814965,0.0449838113981399,0.082571552082691,-0.0476848927530938,-0.137021796722237,0.025686200444636,-0.13617258301972,-0.029336110826088,0.00505451983978767,0.230927089091682,0.0217825169412484,-0.0415462970295679,0.111390846266639,0.0301368738937323,0.148654399376666,0.0902533999691503,-0.053680676571998,-0.102500491094449,-0.00288969251863187,0.0713581406127261,-0.0510910904772438,0.0155484210930677,-0.083512509810357,0.00165564434210448,-0.00256149567589386,-0.046784536783398,-0.155007387842822,0.0223241871349052,-0.0860594777371209,0.0462637239587679,-0.0682092011488788,-0.0709890736834578,-0.0302262810690643,0.00999556334538336,0.067410422267143,-0.0385338784556232,-0.00602554111814319,-0.0642303074116821,-0.0973667858789265,0.0400906715571763,0.099754317383332,0.110371042064863,-0.101636769583456,-0.0254699178771984,-0.0636352251870124,-0.0381313059489655,-0.0121320062987008,-0.0835203316770948,0.00800799107099343,-0.0654878273043611,0.0323535227012449,0.0754277979619436,0.00729814360655014,
\ No newline at end of file
+4,c,9,784,-0.291436892192098,-0.282005712682594,-0.287858554319918,-0.348880665600042,-0.350596261895339,-0.336367954821975,-0.369890246704286,-0.368614273538658,-0.335529352957526,p,2,676,f,30,169,0.0315276534148548,0.0375809704691125,0.024972309548794,0.0196269502199379,0.0217184796225114,0.0355339728990005,0.0238746841241834,0.030073963651137,0.0155344867358476,0.0351529619627506,0.0197674889720914,0.0361985116809193,0.0193591774978202,0.0193465712104867,0.022961871338937,0.0315517756165187,0.0157456132951176,0.00988964609764517,-0.015143378876968,-0.0147774731094428,-0.0360553441481845,0.00064308397439025,0.0202779877017261,0.0376181578627681,0.0310845639216232,0.032216359924654,0.0253026190190899,0.0199781921645921,0.0157363535970083,-0.0100734044242431,-0.0591892934838035,-0.0886475997813956,-0.0762082500237775,-0.0583308762588504,-0.0538931990314539,-0.0453950842068572,-0.0317520646006133,-0.0013528138766372,0.0208642225728719,0.0275240026999419,0.0414378612917591,0.020782913000379,0.0198415154312468,-0.0188044473287217,-0.0193933495183385,0.0407654221118632,0.0867166908379052,0.0085867096043106,-0.0511253970892018,-0.0700418535371538,-0.0341218897747782,0.0144201123575863,0.0270730707913092,0.038638336468408,0.0491860564803012,0.0338227224409451,0.0109593883051555,-0.0274964899831155,0.0746654878054884,0.118873967076559,0.0549257188458146,-0.000740499570400605,-0.0361537174740019,-0.00463040604126949,0.0192856539069277,0.0289886805307575,0.0468397977259138,0.0317731568301824,0.028126897771722,-0.0664911509763775,-0.104967085724321,0.0378847875226901,0.0810366469214466,0.0317119988957878,0.0228570699492175,-0.0117839002884949,0.0033317883786774,0.0332808495813396,0.0379704585517856,0.0284674078030843,0.0140909752563859,-0.0320149414683236,-0.101554475670763,-0.135413904448687,0.00680186687615157,0.0331838406986277,-0.00800764757172636,-0.0377628243887953,-0.0070947253782145,0.0114319465713456,0.0264006698369683,0.036522108937404,0.0357648912248209,-0.00842977405256433,-0.0727096586460654,-0.117210972961449,-0.0610460190896185,0.00677973813339771,0.0161821324586485,-0.0214887648724794,-0.079265963627319,-0.0316205438804549,0.0162966353240817,0.0341427135378203,0.0270702013497754,0.025797584565072,-0.0200392072708822,-0.0958502607893858,-0.101307972917861,-0.0214836719506733,0.054258938122764,-0.0123345150045147,-0.0814160026671355,-0.0814847191333948,-0.0390260761695026,0.0132300575465061,0.0305778829780594,0.0189175864280913,0.00886048496794017,-0.0390910351011929,-0.0904284540479382,-0.0884473971058671,-0.0171606651662479,0.00248177379324648,-0.0672287432853852,-0.116148732494641,-0.0811597990533022,-0.0276583059115121,0.0176594867399382,0.0240379465795902,0.0302704010722491,0.0180492817050321,-0.0277774587384098,-0.0615286355436091,-0.0625453986619779,-0.0608521555153582,-0.0295446154489752,-0.0350711500299963,-0.0612180405493037,-0.0230154834804559,-0.000227046351110895,0.0298078381217796,0.0221013835211086,0.0186814166315642,0.0314274134961853,0.0180837122213739,0.0172871989908763,0.02302777874643,-0.00916944557237844,0.00384961412288396,0.0299342920423978,0.0276411145694565,0.0262743543416249,0.0284584555815822,0.0341681990382169,0.0278190218155392,0.0214546484128686,0.0269223877903163,0.029784377577151,0.0468532526083295,0.0698807679476776,0.0658714766338618,0.0786515158015507,0.0624877804721763,0.0553592875827866,0.0329340017582403,0.0391585075011305,0.0377924505428312,0.0306120087016427,0.00935379428051012,-0.0306519730770715,-0.0192909892465648,-0.0333256944287521,-0.0339163171091514,-0.0290748917292457,-0.0158216260760458,-0.0169821952261892,-0.0382738806631463,-0.0351076838496243,-0.0346112090830231,-0.0319531832011548,-0.0299145099870595,-0.0263080634232386,-0.0284627008054765,-0.0351569483166211,-0.017624094580936,-0.0286910183684173,-0.00826963345337324,0.0110610178028611,0.0349931708986525,0.0197636260136347,-0.0206299654864218,-0.04133773921399,-0.0425774173101056,-0.0327662440441871,-0.0254033423478143,-0.0258393451156586,-0.0238415953120683,-0.0237561606681672,-0.00254461839157966,0.0308711622999178,0.0797317517847689,0.114084984047214,0.113542192102127,0.0718235998106933,0.017753069488172,-0.026168435496929,-0.0367557133121088,-0.0246932743029115,-0.0198150261294891,-0.0137734888986783,-0.00495767141484253,0.0186004914275138,0.0415407396262239,0.0543753516007054,0.0527452992356025,0.0720305062854147,0.0491849284569088,0.0254813101629356,-0.00779302129401825,-0.0417431813118152,-0.0332221809163902,-0.0345063888222681,-0.0226840505912477,0.000836890526724773,0.00747685268163311,-0.0267598650312004,-0.0128783756335771,0.0858772312015531,0.0973155123345086,0.0128180024656318,0.0189905939954874,0.0103287371018045,-0.0195585882015477,-0.027890155051954,-0.0197617757800699,-0.0231679556119798,-0.00356391634271041,-0.0597171312413912,-0.118408838535859,-0.0626309394499583,0.0590352778735733,0.0533035701558152,-0.040862793993102,-0.026166573049469,0.0197219961674317,0.00279731269981385,-0.0291145499580167,-0.0193682657850823,-0.0182548854899545,-0.026167286300477,-0.105240910179936,-0.183605593897727,-0.128877735490168,-0.0214625711378228,-0.0539551834457718,-0.0837373445835099,-0.0461246530351164,-0.000392539476515442,-0.00588672520689198,-0.0327369339863163,-0.0353084841066544,-0.0107930702455012,-0.0111672369913224,-0.0916682263546682,-0.164239923351114,-0.131927242808989,-0.0833574727942247,-0.112436365472215,-0.0877315248583092,-0.0226444880086272,0.0163146675039584,0.00744687434357594,-0.0206840708659454,-0.0327741883300507,-0.00369137647966929,0.0562921407788174,0.014444881661694,-0.0377145898869278,-0.0261046497938409,-0.0427283704816846,-0.0804937648768805,-0.0256844041053306,0.0298471963418179,0.0508098239127545,0.0102628673251056,-0.0327775499568499,-0.0300524411865515,-0.0115870007644061,0.0796987785135548,0.121602683243708,0.103407429966752,0.0509628544659255,0.00502423945505206,0.0154979176868764,0.0287623779570336,0.0614887508765784,0.0305568539615182,-0.00721809114442209,-0.026792648656614,-0.0291203605422947,-0.011011345613823,0.0281525906180568,0.121075148176456,0.146667078273303,0.0910904069327017,0.0590950452614856,0.0494350870295633,0.0410484354292152,0.00581713848824551,-0.0165603734565689,-0.0255014411664934,-0.0216184996084924,-0.0331534211589519,-0.0174834065616761,-0.0278823231441028,0.00060407339561863,0.0418430019420457,0.0309130112059893,0.0341942631996854,0.0185076462552484,-0.0250376226956739,-0.0409809702789743,-0.0338391753949674,-0.0197382255666097,-0.0251760125583818,-0.0357069843625615,-0.0206281965224829,-0.0198471892830323,-0.0289216823568454,-0.0215135771313738,-0.0255504984376768,-0.0137090358859688,-0.0117703770546702,-0.0340376433353082,-0.0231570654042001,-0.0284367769758109,-0.0278820934047905,-0.0221713553417237,-0.0244456605123976,-0.0368871270332849,-0.0212569116785369,-0.0241560974732612,-0.0259400627341081,-0.0373735361137704,-0.0254586460876835,-0.0243884973309522,-0.0311976706749263,-0.0244993690276859,-0.0158453683725158,-0.0222891589388466,-0.0247141433049999,-0.036606338488104,-0.0368869030799192,-0.0219353885998207,-0.0288934930832517,-0.0320380389774802,-0.0591003738222216,-0.0937881811570688,-0.103297089578421,-0.0927711402055916,-0.0535695102236041,-0.0445201990057278,-0.0270909877651029,-0.0355724025592082,-0.0255831829777221,-0.0334989556654862,-0.0281954942052535,-0.0331277656146283,-0.0564498258066253,-0.0682557910365056,-0.0871680469347377,-0.0947293131176638,-0.0822027801989415,-0.0535091825044988,-0.00770949151165863,0.00297256875504878,-0.00914216358968759,-0.0179638376580221,-0.0358578747211795,-0.0185413100673352,-0.0257189298489883,-0.0127114976477363,0.0251786947939805,0.0609558471590302,0.0557759607524562,0.0182413464073217,0.0354075800549304,0.0542581427823416,0.0450649008833771,0.0079244680999616,-0.0224548120028441,-0.0338370581257098,-0.0139730501984344,-0.00295840072324051,0.0655008059075024,0.147164939134592,0.161611195683272,0.0730254663752586,-0.014714493007414,0.012731487738329,0.0903553051408033,0.0788602343363189,-0.00230821960622886,-0.0275267170653765,-0.024121518805338,-0.0283972114667887,0.0289577930959649,0.135660116218066,0.17087285195984,0.133878964553815,-0.00383658903182423,-0.0625359016422473,0.019413226996474,0.0697602278002165,0.0441067937828578,-0.00599280902444219,-0.0187402786261668,-0.025008526708527,-0.0292971147797831,0.0281908323353179,0.117119334693151,0.137937883007321,0.0850173389640685,-0.0272336882892013,-0.0363541072187341,0.0373716108888933,0.070030681642092,0.0345649325823891,-0.0157600563084955,-0.0344467483655022,-0.0341081253114038,-0.0271492726423552,0.00715320289113842,0.0196839606962969,0.00656412642060158,-0.0252655204924442,-0.0766261473559775,-0.00661554798086564,0.0543842059925375,0.0508000869979187,0.0191503545563807,-0.0162744888737673,-0.0262262126274001,-0.0243881940605809,-0.0305874078010125,-0.0364168158402667,-0.055542742216291,-0.100662129995046,-0.122773750835879,-0.0940589456613168,-0.00416797474588656,0.0186813869991215,-0.0325392591747644,-0.0467451625988188,-0.0469150126994278,-0.0293879018772327,-0.0288386738093958,-0.0457916328742252,-0.0540706206073992,-0.070334649346031,-0.097877687535861,-0.117632368006113,-0.0339566997017519,0.0326704081125674,-0.00796611937336553,-0.066997692742448,-0.0765479397861057,-0.0503701240063344,-0.0367592239204433,-0.0244429113909421,-0.0403445668227025,-0.0404019467343069,-0.0342807339384371,-0.0114953056899687,0.0313621676460858,0.0720352753138827,0.0698691802052766,-0.0109819133698739,-0.053777036413922,-0.055076705689634,-0.0433174131892734,-0.0370703996016693,-0.0197057137373587,-0.0284071543796067,-0.0345209708439614,-0.0186806329358248,0.0337264940768527,0.102632158209954,0.0900894506668499,0.0448729247580196,0.00589580527870516,-0.0252573462012448,-0.032476131749284,-0.023055407701664,-0.0212657114262161,-0.0333579219451183,-0.0209133460821327,-0.0359305860390965,-0.0124147488942355,2.56874837147353E-05,0.0256450309406266,0.00448788020551359,-0.0119348320002487,-0.0109168237368074,-0.035334887588077,-0.0373229249273435,-0.025543895369383,-0.0208458944848484,-0.0211651223990278,-0.0201823683711967,-0.0196398974433086,-0.0325508424916782,-0.0359459110542373,-0.0307471450940761,-0.0386044172962823,-0.0385524719170504,-0.0460050266699142,-0.0351238915857953,-0.0320071908338623,-0.022828712542619,-0.0189277502264202,-0.0315957342811339,-0.0297214748251896,-0.0189026531697891,-0.0264051976185152,-0.0292942294979558,-0.0395405664222381,-0.0372099466252912,-0.0574341209765616,-0.0660270126921081,-0.0724323627406417,-0.0395763459473734,-0.036824022424375,-0.0152496454021969,-0.034029850277684,-0.0187352795689993,-0.031312766067835,-0.0195363071276176,-0.0175412479772144,-0.0103066735377976,-0.0306589993916477,-0.00772010177989803,0.0253893804485144,0.0149147615589876,0.00472747732373656,-0.0217675247094817,-0.025278512108523,-0.0149243965172523,-0.0303542885954398,-0.0274491912821547,-0.0235790219824104,-0.028036030209445,-0.0320480286879473,0.00449429856914403,0.0569001032453611,0.0808858790717097,0.0960309641417633,0.0662900649192924,0.0315599173343034,-0.00292988895013446,-0.0253588625216502,-0.0268734958310412,-0.0232699848319764,-0.0254959040171331,-0.00459041974247915,0.0152934567930358,0.0103676695860083,0.0250575479068332,0.0758073440178513,0.090419284029086,0.0860922089317143,0.0589655386485434,-0.00818464772090831,-0.0149756240731559,-0.0366224040564341,-0.016027873535341,-0.0126237627425371,0.024890635492729,0.00462859741692345,-0.000993206003618927,0.0411591534025082,0.0355218726056718,0.0442587773235857,0.0147739969345553,0.00274501140929422,-0.0240250470350432,-0.0177486267671989,-0.016910493644304,-0.0323308976449934,-0.00609559692308238,0.0125046441671732,-0.0242541249271633,-0.000340954077782838,0.0318426557466173,0.00862099381813324,-0.0231919088370413,-0.0631935874427496,-0.0343925130884288,-0.0350286072710684,-0.0213969943901665,-0.0252589361097563,-0.0198455171626512,-0.000967819280602327,-0.0384739993720759,-0.0534196010419216,-0.0217458686862569,0.0256360269233455,-0.0101102191410927,-0.055031144686721,-0.0828681935049534,-0.0510979611168462,-0.0300599388677302,-0.0343368941997495,-0.0260106320815648,-0.0307061158746608,-0.0069069650231325,-0.0557465706681393,-0.0925645435219957,-0.0477431965472634,-0.0123211999678283,-0.00246527290717607,-0.0628971478247639,-0.0634970478900152,-0.0539911465780802,-0.0227659436732688,-0.0185361199896099,-0.0358321480629526,-0.0260135804187841,-0.0129120808952029,-0.022650934137411,-0.0682715076738,-0.0670994680080632,-0.0319770919238537,-0.0181460056467619,-0.0618173958916994,-0.0508862933357266,-0.0378660796343674,-0.0227271307655263,-0.0369407723817059,-0.0330736931492838,-0.0221366329869657,-0.0171317411721866,0.0297740554054881,0.0225735915372108,0.0470785579463155,0.0293807873183518,0.0239710845227769,6.72393658048914E-05,-0.00153638108596167,-0.0202986186842728,-0.0355202096885838,-0.0317870300724519,-0.0317222381663577,-0.025906708751582,-0.0288476302790014,0.00287744346928571,0.0464738722553175,0.079331426581374,0.0607318899386487,0.0338909135380815,0.00718533828547553,-0.0299000895878313,-0.0308219599616349,-0.0226953340799566,-0.0280245293197184,-0.0169248983110217,-0.0295582300315729,-0.0260703862997988,-0.017024181840445,0.000872761576363826,0.00407678071565818,-0.0018112959456572,-0.0191406651795497,-0.0190549593926604,-0.0296350312668717,-0.018832233963668,-0.0322339949950788,-0.0252031890467423,-0.0288139066137822,0.0136508533387524,0.00684305397508007,0.0213199106084563,0.0165884423119484,0.0168871317502653,0.0254677089865484,0.0286390462346136,0.0343234387882881,0.0356240784948592,0.0165465512342792,0.0175099239075238,0.0224295118015706,0.00211968575528329,0.00479931490080617,0.00640852851918118,0.0123913046660904,0.0117472042998161,-0.0160181764154673,-0.0281216710678295,-0.0300616101423935,0.0155676476977264,0.0535747361574421,0.0395904232881691,0.0255674862840196,0.00401027837614913,0.0118076191438232,0.00821131431151636,0.00703910827715665,-0.00942390577424635,-0.0367742187735337,-0.0702651408345022,-0.115306112139454,-0.108932593737278,-0.0852070902622414,-0.077081642571202,-0.0807876440791934,-0.0528334972999169,-0.0103731515774802,0.0164464949376904,0.0161292822253763,0.0116599028110666,0.000477980968296859,-0.0104005005274466,0.0145106210674081,0.0263600894984288,0.0606010491480009,0.0278557117859594,-0.0258274122024817,-0.0746533751946056,-0.0643024343955706,-0.0534574964680969,-0.00768683455617116,0.00553721009643402,0.0176365759869185,0.0242124754550658,0.0564841311527222,0.0799332378489731,0.0944140752616711,0.0367416642543123,-0.0345832333378826,-0.0195516959446471,-0.011131954008279,-0.0193620912060394,-0.0301702644112996,-0.00472805243799468,0.00473730308472873,0.0152810948518961,0.0249460535461519,0.0646075070985618,0.0637548651527671,0.023296480312435,-0.104093294439237,-0.0554304188347765,0.0568702520921977,0.0707005086319747,0.0499452884736987,0.0152319390262351,0.0145292462171372,0.0149500368491876,0.00836914293797996,0.0204920318092105,0.0730602118812217,0.0682287731935323,-0.0236048337666502,-0.103797642195258,0.0103103024568952,0.0962410010114805,0.0721437278879312,0.0823771762475509,0.0339599579729799,0.0128999905686466,0.0196131707206214,0.00226597941842061,0.0260767960140795,0.0439448543740206,0.0755105026949776,-0.0108692975108258,-0.0250827416898552,0.0410081190867626,0.0630812270620889,0.0213056193686058,0.0506775226197141,0.0238299742424303,0.00209355361176043,0.0182061359654425,0.00360766115022704,-0.0192147936577553,0.00804818440168389,0.027414747871357,-0.00913644285527174,0.0377748212664298,0.0590912337096058,0.00751440764139049,0.000655006362943377,-0.00492899172443299,-0.0161034718600596,0.0149082918029053,0.00148508612283011,-0.0100809199992426,-0.0731472592805862,-0.0939961153098623,-0.0462016505415332,0.0277378111000599,0.0677191531180213,0.0393708741839818,-0.0131314517170106,-0.052678202357617,-0.0531833099203394,-0.00955733424216223,0.019348176191842,0.0124251642929464,0.00251151221321093,-0.0673059235227259,-0.13074726325771,-0.122553745851981,-0.0297948046395344,-0.00377775643725791,-0.0392684161965109,-0.0688439772519356,-0.0418765472371669,-0.0113220669454768,0.0046909587622929,0.0090863419324254,0.00653529597276746,0.0124139169024854,-0.0103387644420279,-0.030333139736399,-0.0200329211000464,-0.0311141905263679,-0.0515485731567163,-0.0445155892707527,-0.00890093193197874,0.0178837578309656,0.00924913140951685,0.0139367594808383,0.016094214730225,0.0149946144378097,0.0105159846151781,0.0185199191449723,0.0255484599415896,0.0612058155504513,0.0636491941051651,0.0568521105488849,0.045682852608419,0.0394757960824248,0.0275402735034069,0.00628920554242007,0.0098420125061929,0.0138541229269125,0.0122929907013703,-0.00438509342112543,-0.00751189356001834,0.0061733470129188,-0.000674318346580373,-0.0092930297300147,-0.00595199926680499,-0.00277863440262446,-0.00683847104946315,0.0062663999597933,-0.00637630107634337,0.00641995809380501,-0.00707584092907157,0.00259183614859867,-0.00818395055049454,-0.0048360566446649,0.00502506693200991,0.0115056667900112,0.0104277155943575,-0.00634021668298039,-0.0113783933132304,-0.00357420476328469,-0.00182638048621229,0.0133091275711805,-0.00142310530462832,-0.0103042586046812,-0.00856186928343756,0.000421470529722166,-0.000480828517936541,0.0137256461183707,0.0427613493189165,0.0581426835024699,0.0399473211869941,-0.0052944599714523,-0.0172563607955152,-0.00962688694542118,0.00983899816246037,0.0340590316166751,0.0198002444031044,0.000361989906783023,-0.00236118493020276,-0.00892463348471187,0.0102257061212154,0.0133808409842381,0.0138806514168705,-0.043895446159573,-0.104000030410192,-0.108324674733121,-0.0433795471816372,0.00786937336493886,0.0415719918528145,0.0356355214998195,0.0014411473272819,-0.00446961184551114,-0.00289385823241704,-0.0237812582629059,-0.0333062551366831,-0.0613781408238251,-0.0551653757893793,-0.0518146917761773,-0.0558969812668449,-0.0308147583459069,-0.0263369271334883,-0.00586349988094962,0.00282866052487143,0.000639095603486919,-0.00137795508357958,-0.000741336163750808,-0.0148023761261327,-0.0289983703247095,-0.0155735036576005,0.0533381928005179,0.0333659081610112,0.0129778714129046,-0.000241814601694389,-0.0604919118338872,-0.0415356808177291,-0.0134188298339187,0.00487936344413672,0.00012471820603234,-0.00516567642303615,0.0013459836509423,0.0061446940198043,0.029138240217435,0.0687467480743287,0.00838524470692936,0.00821338784633096,0.0332932369999558,0.00434727409826885,-0.0055823032358927,-0.00699714594053065,-0.00565050177747699,0.00456249813082189,0.00637420422065739,0.00109408429007798,0.00918941365244222,0.00579361682480824,0.0230286946776745,-0.00483859759325275,0.0182755060893343,0.0570815375049808,0.0438259964372917,0.018985817596347,-0.00495504950473479,-0.00948085921437625,0.00583902873112915,0.00811114625853977,-0.0115406579915549,-0.015524291259222,-0.0287055161507185,-0.0389278854091301,-0.0382760325482218,0.00548389771180306,0.0327697216793593,0.0285517725882505,0.0253953329088256,-0.0146707747696638,-0.00320871042655866,-0.0106435686563327,0.0115844434274562,0.0130648428183186,-0.00529266596798134,-0.0139028988687178,-0.0218259191712269,-0.0262110005886431,0.0271806001345747,0.0276750082297432,0.00800495486621942,-0.00900168079616824,-0.00828613967382301,-0.0100706775041851,0.00548607709092024,0.0152132353453508,0.0145752712473904,0.0309966778323447,0.0217137900926343,0.000148673194403714,0.0194970347649074,0.0235984095776728,0.0193930825344767,0.00107121334800858,-0.0117504929856772,-0.0134997152543302,0.00463465518354778,-0.00536392525896373,-0.00153877945644696,-0.00165429210671782,0.0259759687218232,0.0172759125642723,0.0118606321242802,-0.0102842137118401,-0.0252450744210152,-0.021217636564862,-0.00867208143586557,-0.0107690259380301,0.0021466437139123,0.00606779956698427,-0.0135594713928814,-0.00153896796138315,0.00278099042042407,-0.0101034422171312,-0.0392921887715144,-0.0395367612212328,-0.0444517904249258,-0.043197150006978,-0.0326360528453294,-0.0214279660976126,-0.00348896554805988,-0.0119866159770765,-0.004104687108377,0.00256561178676844,0.00420594576961744,-0.0119438461707821,-0.00328971228356925,-0.0142911149935433,0.00219624475211605,0.00819034004847275,0.00725330871092153,0.0106176086882785,-0.00631911677095352,-0.00560261949625084,0.00372259641972764,-0.00702975554566749,-0.00508225115804029,-0.0127623851942877,-0.00863065804500662,0.00479409224938165,-0.00415882653708282,0.0294041912316885,0.0553647461027873,0.0568640585735673,0.0509054106550468,0.0322415209128591,0.0243095682828211,-0.00347036615341298,-0.00240951598298608,-0.014654191734547,-0.00652114680523437,-0.00794201501532991,-0.0015444431992323,0.0317214739221049,0.0532725594792279,0.045974025971535,0.0156901594666386,-0.00240829736592138,-0.01083630473738,-0.00857248321184852,-0.00637847782882498,-0.00328415780791912,0.00191876706024021,-0.0135217779656355,-0.00131027506892261,-0.00772901666749322,-0.0188232549450386,-0.0453290482151978,-0.0565076233742144,-0.05304631718678,-0.0307895554380134,-0.047623703947019,-0.0431035940884532,-0.0432595061898627,-0.0271928395973109,-0.0100772317421232,-0.0113831245647405,-0.0198497980089196,-0.0272767651282004,-0.0618406725289529,-0.0902181374642845,-0.110579552361629,-0.0495599845155447,-0.0100312183184551,-0.0457882403094444,-0.0725738859303545,-0.0667216752931151,-0.0378899976368214,-0.0203700093756068,-0.0164746717286537,-0.0196519023885789,-0.0219001524487382,-0.0309127171437481,-0.0554261993139287,-0.0693144328006587,0.0350188021958536,0.0444263650420465,-0.0122130287894888,-0.0378228349642117,-0.052164874439005,-0.0192561567473226,0.00127978632114578,-0.00823254729621012,0.00155281483373389,0.000696448875398651,0.0137675105354451,0.00560201262250998,0.0098240953005959,0.0753277296556612,0.0489478390045107,0.0343627248631497,0.0265280580886554,-0.0176130110024671,-0.00800466380802532,-0.00839006176058276,0.0017019085286864,-0.000163219076106636,-0.0013052697250824,0.0360341382947778,0.0529112508871067,0.0685526933054011,0.100173995640773,0.0483384588773093,0.0372057708626182,0.0192814608814208,0.00427403409850232,0.0110906166393046,0.00299522593891602,-0.0118840247992909,0.00587437251577938,-0.00896642104185815,0.0167006581661904,0.00887254034296739,0.0536280197737669,0.085536836741621,0.0381102752217835,0.0301722957648124,0.0396251565775493,0.0274757902957413,0.0183318409927424,0.0111129599560504,-0.00550618450977533,0.0150968143033686,0.00778493150883106,-0.026218887055256,-0.0171389204094106,0.0175752684769969,0.0485506264364112,0.0419669160905482,0.0403136194585047,0.0532108964505212,0.0267035400198524,0.0106575385315509,-0.00910848079915958,-0.00162844958162983,0.009809515228287,0.01949166277773,-0.00324155827326635,-0.047150306845863,-0.0631529108167588,-0.0313321313552853,-0.0264803592660217,-0.00966403240162683,0.00921811090312071,0.00734752412735291,0.0087308615371948,-0.0142989369582376,0.00381311299394212,0.00591794622250505,0.00258945304085195,-0.0171715229701241,-0.0343221506661991,-0.071706022993566,-0.0694319359198477,-0.0511484670215573,-0.0258872248551886,-0.017135130522355,-0.00404585384952608,0.00506275706330489,-9.01345209038259E-06,-0.00553531357918377,0.00453546676283436,0.00288813245200773,-0.0241771247059205,-0.0329511211653237,-0.0258843752487996,-0.0243462804498209,-0.0198577406110505,-0.0123153515851913,-0.00214380137467131,-0.00986407056262801,0.00473496857121726,0.00503261093188161,-0.0111268493524303,0.00481939179912467,-0.00158749880663797,-0.00414764392595525,-0.00458711768749214,-0.0062137408052236,-0.000409196578824509,0.0142646219362598,0.0168273037401492,0.0131826070719562,0.00364917772555728,-0.00751198849404072,0.00473276558507718,-0.00017170136684038,0.00283972710666026,-0.00119300076690961,-0.00389079158839836,0.00171677592000241,0.00957868048051613,0.0173978615486988,0.0102262212077923,0.0238299980088928,0.0424971797589614,0.0243052255222839,0.00614038284667549,0.000157381520374102,-0.00325471878765205,0.00295565105057092,0.00173586840946824,0.0101385669406839,0.0018978574506908,0.0167321811321045,0.0238979544604955,0.0181906395337493,0.0230995762450107,-0.00572920621572565,-0.063139903965602,-0.0639082657570767,-0.0267234876307921,-0.0100917187029005,0.00382729460886181,-0.00661320637284087,0.000100303386696438,0.0203092543022174,0.0319462316288108,0.0324970218815198,0.0520756836849661,0.0291684013059366,-0.00535504846497138,-0.0277697787454826,-0.0287443476209177,-0.0273982541332738,-0.0119689291445371,0.00565734947484163,0.00505504473674611,0.0106950799398335,0.00953463492177298,0.0135716357433127,0.0276403871185426,-0.0119711319531852,-0.0106640182673025,0.018123341352125,0.0105181629230166,0.00175037699260087,-0.00293934749532521,-0.0104270419739699,0.00798739379767549,-0.00129766775915804,0.0162354384526741,-0.0194846658911788,0.00616534469007089,0.0551569649213649,0.00934715231885684,0.022915947520062,0.0871881969179526,0.0331812808677231,0.00610554342663203,0.00636112926037721,-0.00655865820346026,-0.00918280903900935,-0.0114172187320319,-0.0122889797072399,-0.0458445598706685,-0.00588156248349075,0.0767455232105884,0.000596597818324353,0.0702296801690504,0.0995006825912406,0.0107263735136334,-0.00405476176467245,0.0150419713259473,0.00602455266575442,0.00372171076821235,0.00207549827160005,-0.0267386452386491,-0.0403825436280397,0.0160682282050803,0.0226513958316291,-0.0283563309077861,0.0401204106800613,0.0436185322002231,-0.00833800134352425,0.0190163834542395,0.00365145601255364,0.0042842180458415,-0.00341638381737464,-0.0117567227460397,-0.040407269449518,-0.0403664622874177,0.0499610392787362,0.0253055990921748,-0.029407182594927,0.0151385454741737,0.029587622129012,0.016393311540577,0.0105322441206587,-0.0108632023561139,-0.0014885887210251,-0.0103208268076986,0.000343059890014047,-0.016819923348952,-0.020502911753617,0.0167750472012913,0.0214799266520212,0.00425929403712459,0.0412448163536181,0.039893088143154,0.0246114111771191,-0.0139213511047517,-0.0102702660271706,-0.00755940725472222,-0.00701024709816123,0.00429333664416752,0.0136056456786749,-0.0120986473440179,-0.0180119598961805,0.011145893386181,0.0280110164429482,0.00380038012620999,-0.00504919568752304,-0.0115265991252572,-0.0193706181059696,0.000830049974226388,-0.00817003589691657,0.000867843598300863,-0.00841686423271843,0.0111876623252815,0.0393932967329386,0.0236968383377428,0.0420776651529221,0.0185717478908194,-0.00291265056286334,0.016046021023831,0.00924213005384552,0.00343675318125113,-0.00894056260433783,0.00549079608721202,-0.0019123918094525,0.00239175127698907,0.0109658573851584,0.014900901785063,0.0258042415230016,0.0331881794839092,0.0307360953630489,0.0211604069795643,0.00211237753803817,0.00105688784524266,0.00861503423054944,0.00118817694516231,0.00275618197794114,0.0115142167106085,0.0140357229364797,0.0248011986795904,0.0180473813571049,0.00969932287763142,0.0158823651585677,0.018380434361546,0.00745516316324669,0.0162767379196385,0.0188440428943033,0.0219363424969267,0.0196041038208485,0.0253073413510455,0.0180337122155422,0.00895165704491323,0.0185516970357381,0.0139781895932029,0.0128292659695682,-0.0166201969931183,-0.035434374263591,-0.0576883006191384,-0.0541606184532142,-0.0308708569585648,0.00380972817653931,0.0250909615238213,0.0286008286268837,0.0209472919168849,0.0220885785138473,0.016571559865782,0.00670319469843228,-0.0144502973902789,-0.0432131754585022,-0.063187489334917,-0.0635306475060037,-0.0363563000044875,-0.0102322802795519,0.0376420441190894,0.0553937883553543,0.0763285528413664,0.0199978686664873,0.0153106887937061,-0.000315981777218568,-0.0154101364159618,-0.0383293367739087,-0.0326818957272728,-0.0137515393530345,-0.0199645058416387,-0.0157184138864537,-0.00634374120297833,0.0177383440120094,0.038448764745499,0.075909126454466,0.0394698960221854,0.00582849232521402,-0.00896702079373523,-0.0198429444880532,0.00473110857283634,0.0478642539987143,0.0389537612946106,-0.0272068822446916,-0.0554919967778038,-0.0324515413736853,-0.0347319746039268,-0.010151676744657,0.0489885586221333,0.0212199678007687,0.00580847783648264,-0.00319998024786927,0.0134705393770785,0.0861799184243745,0.131275294661404,0.0883668410826929,0.0155607867332938,-0.0330214383980869,-0.0348110128929816,-0.0514812689383828,-0.0303546611798223,0.00117448492271627,0.0192318212473369,0.0272132553406138,0.0183410649320694,0.0420496499115043,0.0995096309321388,0.138735340126476,0.105030193347498,0.0844038980278279,0.0348211879413343,-0.00437760942444412,-0.0275189712606197,-0.0213428799880704,0.00982965056246608,0.0131881160095852,0.0130700566486572,0.0121170445266195,0.0115315833061286,0.0221599963329213,0.0430953997041594,0.0568042280616916,0.0455459285971562,0.0221915585454198,-0.00655264320289905,-0.0299957279062704,-0.03017340917732,-0.00174706043680966,0.00498693896611154,0.0194968329910036,0.00152528410875244,-0.0312896159322754,-0.0553396604016163,-0.0834773161971263,-0.0521929880440508,-0.0257706512239836,-0.0143749315401677,-0.0388758688757685,-0.0692608265264631,-0.0377530162798343,-0.00467538257079747,0.0120491349641149,0.0138073610419964,-0.00585351590997812,-0.0228244227474796,-0.0435759035040494,-0.077713931279466,-0.0759491690873903,-0.0350673455810844,-0.0240312021042479,-0.0558170689236235,-0.0555755558009019,-0.0274569305964035,-0.00527712576358509,0.0140192540428946,0.0231446303447675,0.0128384324112748,-0.0135392289592103,-0.0211223432584802,-0.0272487543024343,-0.00771425069984265,0.00705665454049209,0.00980979914723817,0.0259896291447306,0.00531682499635157,0.00736113378138074,0.0214489034043604,0.0130767686790032,0.0168675994731592,0.00868338438612264,0.00525038262486296,-0.00510918538852689,-0.00115803823032846,0.0175301579292938,0.0311784798733984,0.0426726305481723,0.036534303494229,0.0255755355643301,0.0173622764424979,0.00881010552439065,0.0183952359136421,0.0207145864878744,0.0260958672978434,0.0208258886001315,0.013275322594498,-0.0053107607529274,-0.00609761620949153,-0.00276977227301419,-0.0109651199304559,0.0232915717634096,0.0248059960462374,0.016475941379147,0.0204303059369601,0.0224084357967718,0.0100535162716266,-0.0203037724696566,-0.0233754241041797,-0.00530647598624326,-0.010599918937583,-0.0209740304610099,-0.00488273795718908,-0.00442823456219096,-0.00537000090485394,-0.00431914886245636,-0.00295417305671309,-0.014202520635347,-0.00674671807360318,-0.0031992403120559,-0.0174448395505961,-0.0115463735570376,-0.00243088855428846,0.00274589653207373,0.000409263782478471,0.0210048270133222,0.0280029065199143,0.0159603935408808,0.0103979553374289,0.00136588684346193,-0.00630348639938984,-0.0207890786628432,-0.0107058867631605,-0.0231127753238748,-0.0188098118426425,-0.00867137460307862,0.00260776472067583,0.0348644418777257,0.0223365140504772,-0.0231697144240987,-0.029758925494014,-0.0308225612008954,-0.0185777881073763,-0.00459349461405844,-0.00874992387301565,-0.0133163632893944,-0.0202713155069879,-0.00639150530014591,-0.00398225710018775,0.00270260047015053,0.011287065668834,0.0162682614968445,0.0331890354244497,0.0389912265505809,0.0207124259844468,-0.016725855874419,-0.0179645635064553,0.00281001186688316,-0.00461602743864449,-0.0153846150649254,-0.0144899998661804,0.00263324758772479,-0.00807705077865415,-0.0376025425343448,0.00560315356812404,0.0819431973608945,0.0481747056745355,-0.0110651681540168,-0.0415895904052739,-0.040586696551967,-0.00069027127220714,-0.0045170957832771,-0.00694546230628289,-0.00225376472169037,-0.0101899190958003,-0.0282489366348601,-0.0256070808783143,-0.0137759339122238,-0.0150310551677073,-0.0424584591009269,-0.0512765506396877,-0.0561057594415325,-0.0331773408370632,-0.00753383552935687,-0.0124856615066465,-0.00836363846368012,-0.0176545179144468,-0.0268696207113029,-0.0167264083744598,0.0360008218001151,-0.0153308907835789,-0.0883587824253956,-0.060021301783677,-0.00651685826554342,0.017347275652407,0.00720725123437362,0.00201354017142605,-0.0110062895064057,-0.00369415910389713,-0.00278724783951368,-0.0159665855481467,-0.0239917033737839,-0.00764695589316196,-0.10410731780537,-0.0994414197524714,-0.0572900600156829,0.0322273256245865,0.0508162433509277,0.04082756201869,0.00330380757724384,-0.0120630617449223,-0.0148311366125097,-0.0137525051582809,0.0199130454017382,0.00830412839560879,-0.0577288927244187,-0.0974822952604159,-0.0353047842752425,-0.014002611528431,0.0522406490728547,0.0794670132119853,0.0403476896743406,0.00437790736296815,-0.00410451275197611,-0.011636476572297,0.0130891521490303,0.0596336560422953,0.0358065886271749,0.00463561308037709,0.0224644046879471,0.0497057285466012,0.0330718394525427,0.0559440463571943,0.0385589991184834,0.0184732536564224,0.00269462098984738,-0.0193933104101573,-0.0218521282888539,-0.00120798753851854,0.0367106785903464,0.0348722050292264,0.0242666275398575,0.026925324318274,0.00441276001600844,-0.02035914072393,-0.0213086488751382,-0.00471054746200545,-0.00440391429756315,-0.0061394745700215,-0.0123795840766442,-0.00901709240761053,-0.0078766227564444,-0.00938007475796204,0.0121775220551395,0.0162851349153488,-0.0371673856977029,-0.0728400946127263,-0.0655651709730913,-0.0434561270894552,-0.0322221841000818,-0.0144944206769708,-0.0158307401566053,-0.023035182612057,-0.00986263373551697,-0.00406427667630766,-0.0176581874758933,0.00225923799640622,0.0210069848121299,0.0273854353175263,0.0172131095211085,0.00618569845937177,-0.000893384231918628,-0.00711761504995116,-0.0220870276155079,-0.0121149851310051,-0.0123192758964169,-0.012721309739256,0.00963322792111338,-0.00771864121196187,-0.00144617986293233,-0.00805450380073655,-0.0037075016020456,-0.00051974022166611,-0.00316010776354301,-0.0136570487894624,-0.00298893544222896,-0.0086597665740675,-0.00957493720983496,-0.00899617104860169,0.0105144412543226,-0.000524082222154974,0.00355302414495825,0.00669423336335206,0.021254446456992,0.0299267969768701,0.0474423392351813,0.0196533378992155,0.0116463570088683,-0.0282945386418595,-0.0234421070471418,-0.0135473305982984,-0.00131541766273416,-0.00482511287114917,0.00931146117165752,0.00649966782348529,0.00119348996820075,0.0353934915088224,0.0744555240509939,0.0556947397312738,0.0364246372646199,0.0179155927063057,0.0138441101302451,0.000617215566218002,0.00124423312198414,0.0118717961988886,0.00515131672427291,-0.00860321146726882,0.0148630295076904,0.0286355675892313,0.0682295786414533,0.0651458285044682,0.0511988086414281,0.0201452767812027,0.00400724391749543,0.0170314142349609,0.0410528283649104,0.0539891929434776,0.0183170574187113,0.00288173884472095,0.00711942281402722,0.01571822629228,0.0391775001072203,0.0330543572462897,0.0193404757291675,0.0243588027675196,0.0081616065517391,0.0174776767185638,0.0564488094335076,0.0649949663731825,0.046746259852141,0.00668437672820875,0.0072701697425978,-0.00328605783354682,0.0227339382057047,0.00839101876470068,-0.0600006379097624,-0.067099861444706,0.0198817845113835,-0.00953778164591823,0.025227341637101,0.0922835041771295,0.0195606702727727,-0.0350130646482793,-0.0249125589918288,0.00824649351254616,-0.00787251587176878,0.00619559844767184,-0.0498545587513341,-0.118147239992922,-0.107766177457311,0.00292011944078183,-0.00452990101216354,0.0264304898294287,0.0597636199008022,-0.023967916868413,-0.074808640293199,-0.0321992935674926,-0.000208776833364979,0.00392109744869698,0.00417260554075982,-0.0294356835920553,-0.0925650449086502,-0.0536714724492037,0.00064378282298522,-0.0131590900839665,0.0415659256122624,0.0260989604450534,-0.0360302536661903,-0.0484816301351401,-0.0125293839994311,-0.00231729652055158,0.00753080916521724,0.0179023805995768,-0.00697562808162391,-0.00796689046670149,0.0120175774769168,0.0404836333177284,-0.00293219038524571,0.0502288539304904,0.0220803627811285,-0.00604302447287728,0.00626567338393376,0.0145565107368416,0.00718705421567418,0.00889074821890261,0.0269120388682018,0.0400091891364263,0.0527697270660066,0.0260758794669166,0.0106539666201244,-0.0181691283262005,-0.0082785823796103,0.00495474716364889,0.0253258152172733,0.053697919572025,0.0333437727627177,0.00557827731831384,-0.00544688904475788,0.0122823801869675,0.0437378134089483,0.0486470767129633,0.0385400111752027,0.025856584120169,-0.0110183475078108,-0.00607275335681716,0.00715858376428726,0.0345130030430273,0.0174891117358089,0.00455687300407921,0.00519047740813761,-0.00867841472554825,-0.00445802116744421,0.00763400035705847,0.0223353849830412,0.0385984614648902,0.045907550738058,0.033860071304367,-0.00245789286843997,-0.00660157553822772,0.0011516224281625,0.00541064625318169,-0.00200063159446313,-0.00204044082448649,-0.00133432108798762,0.00876591299425186,0.000563967970097814,0.00797923864780654,0.0307527850856227,0.0282866451114579,0.0395837087497031,0.0279000628272476,-0.000185303557141825,0.00743127639932561,-0.0052799827066124,-0.00897893980069708,0.0111793194846179,0.013665892030092,-0.0146706787596094,-0.0139682974353824,-0.000155129122258527,-0.00163332567810084,-0.00890792829476842,-0.00231940025670068,0.00161894816133843,0.00628737702038979,0.0170086472280284,0.00736536796632233,0.00583780000572906,0.000737326476941448,-0.00545932481466465,-0.00756497472085988,-0.00427178125049048,-0.00755856413162447,-0.0172936040571051,-0.0221559616734837,-0.0248832768726222,-0.0162342415261938,0.00208584951484485,0.0249212333269629,0.0291358479038761,0.0148281673143608,-0.00181629732113202,0.00215883778803959,-0.0121401599920693,-0.0130068754817245,-0.0145368568896242,-0.0333922607492069,-0.0285673111409291,-0.00199214268099494,0.0385269886187189,0.0419005761440593,0.0185189398058135,-0.0192162199303338,-0.0360567048774512,-0.0296852959244753,-0.01510820713684,0.00085997265026345,-0.0174087622231915,-0.026403591564654,-0.0313742208383479,0.00109551531933868,0.0390673984417889,0.0810145697172575,0.0544066891303132,-0.00354453813021723,-0.0297737905235166,-0.0480309677351565,-0.0259839399230729,-0.0104190788643046,-0.0122989256738194,-0.000451368205926558,-0.0136846790961802,0.013752615081241,0.0126011272722695,0.0164536191797245,0.0310178133161059,-0.00522185804256525,-0.0339219101711345,-0.033591966733398,-0.00808691988512891,-0.010814989986124,-0.0193100538313257,-0.00457156032370608,-0.0137152132421843,0.011973140334387,0.0243620020703028,0.0215015960610254,0.0276928476372902,0.0864788017057292,0.0391467355955849,0.00314002638164483,0.00144617901431341,0.0189078171053574,0.0223069904135372,-0.0151842788319324,-0.00184548758931164,-0.000682534092783809,0.00134535159540028,0.00388633477080301,-0.00261221645143274,0.0252888984775354,0.0781954991589571,0.0520163032102893,0.0168257819287614,0.0184926899818368,0.0384860053920605,0.0270743246027832,-0.0121131277800894,0.00155985792075849,0.00134726759428262,-0.0346106867168999,-0.0381900391320565,-0.0377553452718261,-0.0158697301626045,-0.00484225264512552,-0.028127857013739,-0.0296709658890939,0.00856730621800597,0.0321869147035194,2.35765328254548E-05,-0.00318729094366451,-0.0045644961147621,-0.00525326842473964,-0.0404488499188233,-0.0587396809801662,0.0124412223812882,0.00590424580214998,-0.035620068023486,-0.0635286665902881,-0.0162443051219799,0.0138743782833988,0.00382312361949023,-0.0390620933185979,-0.00802085236021095,0.00067417471634873,-0.000846327932150723,-0.0448443843395212,-0.0350903932536335,0.0124021062300267,0.0218052922656416,-0.00393292172723401,0.00860444274369172,0.00244643670993509,-0.0175766949113817,-0.0560728137926217,-0.0335753193973318,-0.00950081041671325,0.000691194623899058,0.0019487600838353,0.00459695746022743,0.0143446968925383,0.0176543914355612,0.0286016977338291,0.0414959991896622,0.0349603067533934,0.0164814063619376,-0.0233931786968595,-0.0334922483147041,-0.00742827572947189,0.00381823648560052,-0.0132365062087884,-0.0101752872360747,0.0111473345586709,0.042598481057064,0.0617961392655998,0.0423639430921682,0.0247634925837033,0.0373255227200403,0.027475296393129,0.00267675443917503,0.00262974732586679,-0.011538103139909,-0.00393812458520423,0.00164567823164901,-0.0149929307888811,-0.00154351910364141,-0.00223525984234106,-0.0067062032933686,-0.00118638248360365,-0.000113061719668598,-0.000484303306912273,0.0130597147211727,-0.00569311411533816,0.00169257112665629,0.0013092989311331,-0.000678474972694502,-0.00478545102773564,0.029126857967194,0.0208492806216858,0.0230251030234925,0.0226639810020936,0.0164735443363561,0.0247204215008598,0.022090211707971,0.0403161582708399,0.0410472938548519,0.0340017300668261,0.0188819977259112,0.0266551019101925,0.0152160194936512,0.0246912272834756,0.0307353761738114,0.0229652947689062,0.024612708356006,0.0609861226920306,0.0737787509645909,0.10213477169516,0.116502222974291,0.0863269642419467,0.0341566050443506,0.0153673755463359,0.0150368439972939,0.0267154198406903,0.0159185097521119,0.0144895762194384,0.0224648605228509,0.0412691268572479,0.0718555860797119,0.078558783600089,0.0972143711206482,0.088483321422933,0.0273253375138761,-0.00221382239336605,-0.00591794857185443,-0.00146621012058784,0.0154622757504072,0.0114476297690843,0.019217931634187,0.00528259964225272,-0.000173843153435427,0.0147667850100931,0.00568436889835848,-0.0406579062375306,-0.058594710950661,-0.0862660160415794,-0.0707566631350363,-0.0350714781450136,-0.0157985454996122,0.0252672779598715,0.0249240697613382,0.0172640420969062,-0.0131855690553456,-0.0594499834438311,-0.0786373680541482,-0.0749770286949366,-0.109625561097315,-0.104236762149214,-0.0596221464224149,-0.0542979551718884,-0.014625950931807,0.00351067598174535,0.0201501689178911,0.020571230388112,0.0150032463286686,-0.0251987094611434,-0.103977562621183,-0.0992868983317004,-0.0619625412558858,-0.0670014260827917,-0.0661889658895635,-0.0174768344190464,-0.0204832390859083,-0.0104947163215168,0.00740391021040521,0.0116041895154731,0.0176555367511728,0.0153006720717564,-0.0336331814307875,-0.0604994840625887,-0.0296963554361102,0.0332139355757258,0.00921514608164348,-0.00387830351879107,-0.00201664835093849,0.0117749362359831,0.0152608694917048,0.0298733752271336,0.0215171061061378,0.0184956739634407,0.0102006090992402,0.000750197001564163,0.0313721529748139,0.112782230508697,0.127632059311964,0.067674082548513,0.0157398391967132,0.00612875899147262,0.0337721565057601,0.0399567512691158,0.0390963190070709,0.0307823502342115,0.019940514628772,0.0267377647857374,0.0575458074332036,0.0932068904605599,0.171479173855711,0.170573907075739,0.0631804267598503,0.0339986619204503,0.0551870801963776,0.0598501981297783,0.0624622569286467,0.0598603342880675,0.0377233310185834,0.0139909462923605,0.0356278615670892,0.0533116397009141,0.0970167403048059,0.150325896739105,0.134360067149041,0.0515508653581628,0.0741327331194355,0.0869913825003988,0.0887154292484156,0.0688229059249208,0.0568093946901601,0.0192236324426678,0.0297883991869256,0.0233402925296071,0.0144863074683603,0.0133871416559886,0.016066986625614,-0.024970402312264,-0.0506977288299349,-0.0109260808006272,0.00318725845397857,0.0352308686156309,0.0399293646168462,0.0199892902557752,0.0128985442480512,0.0144510408416639,0.0146313678525675,0.00508957622171858,-0.0286019826188498,-0.0863451354589385,-0.111017917255955,-0.103040477721681,-0.0490024018033594,-0.020019702530378,-0.0102571321988942,0.0192689060291093,0.0246786802289353,0.0133091743613307,0.0307161362307987,0.0185936613873378,0.0198950530766532,0.00905407844852497,-0.0264389869864714,-0.0476756057486268,-0.0246910184704678,-0.0126448584761376,0.0161364842431993,0.00858614932208923,0.027058114876652,0.0230875041769142,0.0172866049713956,0.0297972300242692,0.0303617116725784,0.0337767126090713,0.0350384144032356,0.0212369337638476,0.0404476012787367,0.0237749700447809,0.0315504992473583,0.044838615494506,0.0320622156627956,0.0364289661695767,0.0307061196543622,0.0369634926415014,0.0242145354013715,0.0385684327713203,0.0375235912154411,0.0256150056720129,0.0143997751968285,0.0189771770297432,-0.000982756721113265,0.0172387887156871,0.0363187123103021,0.0651619937614052,0.0497090072059247,0.0335175064995989,0.03538710649106,0.0367426418676645,0.0255312156275365,0.0408169236269546,0.0189422662286371,0.000262653422644593,-0.0142322478315206,-0.0338063188160672,0.00446526208313464,0.0214842160720304,0.0164501063804927,0.0157960455271511,0.00571384889820385,0.00572112312655926,0.0235229149228161,0.0294264890976373,0.0232352708414257,0.00726367809769861,-0.0233839124552781,-0.0731213926905214,-0.0987458174631463,-0.00893307827473505,0.0152321687541434,-0.0247597581004353,-0.0726962943959493,-0.0382635293243918,-0.00392141735256486,0.0259892475899198,0.0231227291623922,0.0365115608402229,0.00537667944383321,-0.0279439352400924,-0.106327689667874,-0.0999758504014039,0.0445045711435582,0.063469464957121,-0.0387079153641013,-0.10286368071611,-0.0439401112261984,0.0112524550053632,0.0303739470938537,0.0402242179478482,0.0314588567522418,0.016739871868178,-0.0217789168095596,-0.0862405596853312,-0.0461834908854393,0.11594527073959,0.0778367574137869,-0.065810804686483,-0.0717962537771539,0.00416836174418286,0.0296126612742998,0.0319119152323082,0.0322836034269308,0.0298630652055435,0.0218590927678319,-0.0399242196243364,-0.0614512126062838,-0.00959214756448249,0.106829527542426,0.0555819017180139,-0.0607986268500883,-0.0164017824966132,0.0251261183159252,0.0278593560783558,0.0275069104719274,0.0240345868570102,0.0346454928105746,-0.000603829345956434,-0.0534374609424884,-0.0649108990984328,-0.000297745521573354,0.0540991576976192,-0.0204878244531736,-0.0574625689088186,0.00625509000800712,0.031255108757579,0.0314363511757819,0.0283123783015832,0.0201138450418822,0.0188132681304467,-0.022439779386275,-0.0680045241985002,-0.0337123204420976,0.0296131712467987,0.0352631053053903,-0.0696956857282958,-0.0557390301978279,-0.012148573562054,-0.000299068421484873,0.00089407643281644,0.0284621916056872,0.0340400904385925,0.039439404830196,-0.00496827753389174,-0.0492056622298463,-0.0352932479830715,0.0173868877918434,0.0177195298367153,-0.0297038703210383,-0.02861648955746,-0.0209011464274952,-0.018549539250005,4.83458875753403E-05,0.0289016396735358,0.031709587259587,0.0270502263447485,0.0351479366602302,0.00560541951881069,-0.00283684103691399,-0.0108481880798787,-0.0100433376568234,-0.0122238991598589,-0.0316889233327353,-0.0224940443508067,0.00108668529265764,0.0162612571598696,0.0267090823028895,0.0203451137615847,0.0409056644307462,0.0280438470356004,0.0501270043244457,0.0361770356837854,-0.00965290757774873,-0.014977700503986,0.0192365695724557,-0.00557207969947142,0.0154457530711467,0.0207673738232011,0.0198849731684624,0.0382373189057274,0.0284686340203523,0.0299751917932757,0.0301669028080496,0.0336176833276216,0.00716246210152577,0.022329714037405,0.0121362107376808,0.0148824015821381,0.0317350679883027,0.016756783338279,0.0245646788196796,0.0267865012602691,0.0212922164462861,0.0177665495203458,0.00148500703883749,-0.0140615221699719,-0.00348305915990402,-0.0167401493131739,-0.00943690269955704,0.00222156217356174,-0.0141497266389546,-0.00929211831262585,-0.00907710787292335,-0.00966254834467902,-0.00179507623042891,0.00296035272069846,-0.00805260955431294,-0.00120496392320081,-0.013195631110036,-0.00427720421293421,0.00448173399229132,0.00405459008065679,0.020899717454466,0.0275187215720209,0.0206091224042202,0.0282843421625059,0.0318820799331186,0.000927982509923541,-0.00520432208803903,-0.0169844911666264,-0.00808172321356718,-0.015194202871764,-0.0109453275962316,0.0112642366310241,0.027024001611821,-0.0139476228148742,-0.0602778374147176,-0.0780512143212002,-0.0794449412900307,-0.0384815899332438,-0.00444464359395118,-0.00266243101927828,-0.0147152215218732,-0.012782877072542,0.00133193729409092,0.0139893425116905,0.00253873242473589,-0.0186615154932296,-0.0613293800484429,-0.0382917819371534,-0.0146667785651011,-0.0638970295651425,-0.0790766950854155,-0.0716159738153474,-0.0493894592198881,-0.0190160173882875,-0.00697961741009777,-0.00842875334423836,0.00243016540357955,-0.0105982052924313,-0.0566512020322367,-0.0799215294037906,0.00800481187996114,0.0777099747101728,-0.000287634995910294,-0.10618155662552,-0.088520037088066,-0.0478472214188214,-0.00271907681260465,-0.0168943601152218,0.00135278426360377,0.000775180644598991,-0.011864232405168,-0.0502880259649673,-0.0830537244494179,0.019024549196783,0.0748430861549736,0.0400001352208569,-0.0297481211049372,-0.0802185233386692,-0.0452822886951597,-0.00244349300015035,-0.0154180883803017,0.00569798994407189,-0.0173295315998413,0.00409426245617845,-0.00133395652371353,-0.0434434360029461,0.0128052554853936,0.0614547979641699,0.094804876221527,0.0329742650777482,-0.0444008214948992,-0.0390151061127539,-0.00849016595361829,-0.0109882062840743,-0.0126806961574049,-0.0144012956227416,-0.014555493919268,0.0127697524049842,0.0041231768573042,0.047640833978138,0.0702433344123641,0.084961223373871,0.0299412972756312,-0.00496158329429165,-0.0201410871100451,-0.0103146287293941,-0.0164168192958022,-0.00883075217314268,-0.0453391697339359,-0.0469902773646571,-0.0652317922307792,-0.00190458041703208,0.0703679927642965,0.0402924823084331,0.0287219577236271,0.0260380320300234,-0.000328699350699006,-0.00305953170719919,0.00173875663524188,-0.0109357101112288,0.000911787029409392,-0.0267554848660921,-0.0843910326140452,-0.0902310717378025,0.00377859016781297,0.0418568595839521,-0.0144139536079655,-0.00293277749076006,0.0219172082077247,-0.00268392643068529,-0.014534956305918,-0.00580139394953166,0.00292433728206798,0.00609682651900826,-0.0150612617041503,-0.0572809009004197,-0.0875270065994188,-0.0736575964299671,-0.0556255611996157,-0.0563540084113395,-0.0309287083822081,-0.00084367052397582,-0.0184202884403171,0.000565397898407262,-0.00362417631684118,-0.0109246195066858,-0.00822497790224563,0.0112245870253296,-0.000304013432507399,-0.0241412882563571,-0.0924398230519568,-0.0807002900594227,-0.0451660669867863,-0.0190292995830033,-0.00475347918110633,-0.0120250025905785,0.00212282310486734,-0.0164104229456284,0.000992871164240266,-0.000106446766810979,-0.00452316420605535,0.00973816977008163,0.0232433530191238,0.0102080982742171,0.0177024558235095,0.0123148771670064,0.00716832599178155,-0.00301725815787367,-0.0134827215782126,-0.00470396338148629,-0.0169440158316497,-0.0226389468859023,0.00358853310724421,0.00576345813667417,-0.00382541354145223,0.00952227486973465,0.00316173555037312,0.0167511487000576,0.0123698984325636,0.0316660464431012,0.0293750267212147,0.00943006994409712,-0.00125090949939667,0.0076197966934062,0.0101897405088556,0.0121402638248847,0.0080165947375759,-0.00796511233211792,-0.00442948249276027,-0.00657402616736525,-0.0177083033254481,0.000482722744677589,0.0391441121899591,0.0535145570334763,0.0343392582921368,0.00779031641622991,-0.00615972176272026,-0.00122641661206049,0.00587773508943579,0.00572288578021312,-0.0063775222322244,-0.0298768441846903,-0.0264493799249509,-0.0053593944915226,0.0293603817100051,0.0365266189980286,0.0296458313976474,0.00564979651773574,-0.0103946317778637,-0.0145329370724187,0.000695403579451688,0.0106560811794707,-0.00100325565379017,-0.0103540038953256,-0.0190269074420049,0.000372624237474592,0.00431328518889536,0.00937993949187916,-0.0200387412860693,-0.0405268511551739,-0.010767852229408,-0.0133594856359656,-0.00520933027951752,-0.00101894531302489,-0.00229162953836029,0.00371248513187905,-0.0208703889173769,0.00271185440819991,0.0354282151536056,0.0376454011596473,-0.00667995479677531,-0.0890780962247133,-0.0711813085446549,0.00058817199271476,0.0359804019627152,0.0147804697018649,0.00847970740677606,0.0110413824814972,-0.0129953802113273,-0.00917979619419156,0.00421418561682391,0.028708688761458,0.0749616044051309,0.00252381141032119,-0.0669007121104938,-0.0435273534189241,0.0140764220417298,0.0790601629675665,0.0396160015686292,0.00952785958715919,0.00728648848319143,-0.00907846306857332,-0.00262204774355472,-0.0146535017982122,-0.00976909347855282,0.0378696707751075,0.0190019082034206,-0.0305116251997644,-0.0777671706134481,0.00662550495344696,0.0964698243181887,0.0539146319975436,0.0107913462343064,-0.00592562801707549,0.000718254553712107,0.00516128239861827,-0.00251434110264532,0.017691967757281,0.0253089920461848,0.00587579716351127,-0.0256351741460393,-0.0703536745419269,0.00488682083306048,0.0697434119688107,0.040660702410229,-0.00837545431553202,-0.000849157182735274,-0.00130394269975594,0.00281603868492613,0.0358823811085418,0.130762799130232,0.080479512406008,-0.0212896577115202,-0.0351644324822626,-0.00238694535203837,0.0293537190062953,0.0264282329028027,0.0117152712867967,-0.00295245899023452,-0.00449923289933315,-0.020180101587052,-0.0238205159073552,0.0234091565648916,0.123443116557679,0.10528720973899,0.00611198609274992,0.0420024575167794,0.037716041126422,-0.00890423748286015,0.00213980068856414,-0.0088619997573235,0.0066656047248601,0.00912720251658257,-0.00594353131493379,-0.0143687434480319,-0.00258657373363477,0.0205385061096008,0.0553452159257281,0.0503348843465452,0.0340569512227967,0.0128552203659307,-0.0225272452363913,-0.0135972166651485,0.000743481602307477,-0.00167498590697658,0.00638803697297773,-0.00592980448649844,0.00207913700321651,0.00695188110691274,-0.000151268602668379,0.0220989561905772,0.0265804941962841,0.0129071116642716,-0.0129852342481093,-0.00261909334660501,-0.00532474123714461,0.0016961941463527,-0.000883480385061683,0.0107381716029301,-0.000903381076613454,0.00975781132080819,-0.011567244529899,-0.0120889338923052,-0.0167546610297767,-0.024980765578609,-0.0105859434128789,-0.0100113079623092,-0.00201759287536825,-0.00915851852768725,0.00329765750922336,0.0105625266619505,0.014767711529412,0.0149894707655704,0.0156450422665538,0.0180605073435348,0.0339403067511676,0.0294428654977421,0.0182221833432504,0.0260829519679425,0.0158560402999048,0.0170631090785898,0.0302247995413987,0.019936288951728,0.0290941469796385,0.0302985818021356,0.0188135666222043,0.0208241245916706,0.0159385828194062,0.031576056350639,0.0296090555892133,0.0177474203834712,0.015291648053912,0.0220283130920378,0.0149018935782789,0.0146960456520874,0.0214990447219573,0.0267117177624825,0.0278777217420644,0.0194770076265126,0.0193115031858912,0.021088600381112,0.0214488777143483,0.0236393317469772,0.052864144017391,0.0207650726279174,-0.00824830296262482,-0.0291223269477726,-0.00403864573808941,-0.0114302879189616,-0.00220456091705108,0.0185500812728809,0.0220843598569427,0.0283832876335391,0.0323465013514398,0.0245256866492996,0.0593280604714084,0.0311115327183789,-0.0193625236381771,-0.0259367557187451,-0.030180476309286,-0.00249220192982785,-0.0339942466684487,-0.0238859072351462,0.0181795780061165,0.0228768213341323,0.0284886601204097,0.0251283047976019,0.0240806472165193,0.0044627712562236,-0.0351233967141483,-0.0359382180185708,0.000479684573548901,0.0118825282808763,0.00983820519600238,-0.0307747424550955,-0.00445915654608597,0.00683479130260964,0.0152490056089895,0.0295610251083418,0.0382886628234416,0.00116689532860108,-0.00892149284166841,-0.0308069447056079,-0.041590463551396,0.00539511810513567,0.0329898463403498,0.0176372652968388,-0.00609525172520229,0.00576244728885442,0.0244439940095969,0.0285842120613363,0.015941110572679,0.0187173495540003,-0.00112752589107931,-0.0231543649772224,-0.0519367187310621,-0.06488374722048,-0.00792185479894942,0.0300293670984617,0.0410316550666626,0.0160179583706055,0.0317676295498689,0.0184895522346497,0.0272401821751965,0.0311756687262735,0.00772961479401499,0.0099366550599614,0.00185172449520428,-0.0173648987095077,-0.0280948881381432,-0.0233806929953837,0.0306844945978261,0.0447831291181847,0.0255149911733312,0.0215079985248439,0.0329663371783954,0.0264983376556326,0.0297180710221616,-0.00265021068497585,-0.00281119069122322,-0.00898590119757325,-0.00422110430170962,-0.012519996466198,-0.0228377618952772,0.0229710003806533,0.0469022650925196,0.0187814103989635,0.0204985314023299,0.027744035090806,0.0329304633068305,0.0286728137604963,0.000330630638746112,-0.0224717906750912,-0.0125754711122173,-0.00616767518149472,-0.029953429924542,-0.0179357575041161,0.0214154871524543,0.0395932102317075,0.0139056382622101,0.0278170311983346,0.0256072292734553,0.0267556308854343,0.0242021211618749,0.0107727873576294,-0.0178324668887129,-0.0153518298836289,-0.042491113095698,-0.0281687370172235,-0.0163848724026185,0.0201895198298231,0.0373091840817411,0.0351422882987957,0.0224639912668268,0.0346328394869473,0.0336700789396504,0.0191285891358604,0.0215419673397644,0.00466168297124709,0.00432534507082509,-0.0160419965202254,-0.00394631953123265,0.00459024587465019,0.0353433544450554,0.0398052076465453,0.023114826856352,0.017678707248562,0.0164660904855269,0.0201444250035994,0.0212161567317995,0.0324346932271746,0.0346591105159412,0.0182535258403455,0.00944163293003325,0.0129123920463728,0.0161061262720618,0.0336242003041638,0.02752528399639,0.032138025266485,0.0175770743862741,0.0243495443145875,0.0236934993556148,-0.0178821290924063,-0.00555256336784911,-0.0094978630510939,-0.0142847328011904,-0.00229792370907326,-0.00114707826405503,-0.00773409524083006,-0.00607024346563552,-0.0119791492570279,-0.00508974992160242,-0.0153841332930748,-0.012994946091306,-0.00273739303889954,-0.0139314078284701,-0.00791019508520786,-0.0010066403258685,-0.0149805691438466,-0.0139309766241251,-0.0105112214528731,0.00378648706833387,0.0229198236431952,0.0165077395602,0.00704365779916894,-0.000319109972595347,-0.00834590206180429,-0.010522450348039,-0.00310606311817638,-0.0111682649467604,-0.0140596183883902,-0.034504864428438,-0.040354556720305,-0.0285263882860488,0.0102703714881381,0.0286689041210607,0.0218950083877431,-0.0255074138438907,-0.0200901202927576,-0.0220400062431684,-0.0129099023004321,0.000134195355963493,-0.00854446169669631,-0.0175339992515661,-0.0222573249450787,0.000666607929525898,0.054611190521319,0.0722543975866299,0.0551770673368649,-0.0154410163994134,-0.0228789352575834,-0.00412481174445929,-0.0104341542443597,-0.0129721434894689,-0.0065796640062462,-0.00581094390653081,-0.0101512754229891,0.0450357261487058,0.0849892889910111,0.0742115932185278,0.010683831681601,-0.0623877971674985,-0.0364405342627327,0.00444821587160346,0.0171480711141916,0.00725071683832777,-0.00976368850239496,0.000624963325743617,-0.00976974432951922,0.0185114238909393,0.0365137371271619,0.0373979045156281,0.0152858316237516,-0.0392653332494428,-0.0447694492991365,0.00792420013020226,0.0389885294990521,0.0481799362845031,0.0214015935109375,-0.00142422545518418,-0.00321026737583345,0.00178323668878083,-0.00949000174357518,-0.0140023176904634,-0.0214480687440548,0.0143513482538006,0.00992708473862042,0.00485849019568836,-0.0116588862463167,-0.0125101394428805,0.0117670587113691,0.0134857714385749,-0.0153334927280649,-0.0055729214861838,-0.00525990740362212,-0.0204755157187196,-0.00103042217008319,0.031418173431121,0.0531832168006204,0.0271990260305558,0.0194530836098219,-0.0228714938554094,-0.0422508401092473,-0.00662756420177531,0.00530421155366933,-0.00660476725631752,-0.000847147925600072,-0.00403879608279767,0.0161626306373624,0.0413789431472494,0.122748766009453,0.117431486828033,0.0497136455761966,0.0197293974135861,-0.00320771619072465,0.000870580350303336,0.00954738552857758,0.00890737831037288,-0.010043057149769,-0.00827334753896646,-0.0115921698360165,-0.00666723471286891,0.0324827903441406,0.0861730525437347,0.076040274402497,0.0380446369219438,0.0364714556812063,0.0165075425863641,0.0192704123287573,0.0100153171075802,0.00607972116992538,-0.00122993712801636,-0.0172027100776503,-0.0244321537848638,-0.0236869796423589,-0.0426232800286717,-0.034805574284501,-0.0141284051900284,-0.00648650169621286,-0.00577916777540547,-0.0127429803778208,0.0159589518561535,0.0161646230105952,-0.00782479334561209,-0.0188345047841046,-0.002301595065273,-0.0213071811926867,-0.0191079186105432,-0.0422036019538064,-0.041126720193481,-0.0246057492986599,-0.00447605046934167,0.00254346988751577,0.00583505864987388,0.0132466710978312,0.0101862361580043,-0.00718530885772128,-0.0102392638759045,-0.0091021428862067,-0.00486607222137662,-0.0136762409122372,-0.00600226700389025,-0.00296369030047869,0.00905700342179436,0.0141144318698909,0.00567611107323597,0.00241644761222033,-0.00790097707744814,-0.00953833401929466,-0.00741034428168323,-0.0144497980473438,-0.00194125267579334,0.0167162566008496,0.00711598444803292,0.0151209296866261,0.0104715546415424,0.0168792112601334,0.0197656701730839,0.0179405884845448,0.0122950874517051,0.011150965333984,0.00816847066837449,0.0065260087864335,0.0187491004441196,0.00410988872092596,0.0181513591604271,0.0125912413444745,0.00504648359409287,-0.005274627852987,-0.00424179827568935,-0.0206189179157785,-0.0128762551635186,0.0135778966793427,0.0389643733905643,0.0321961080030659,0.0242883225728556,0.0113003402181831,0.0168636807517179,0.0119231935273285,-0.00101066315192156,0.00865680773527691,-0.0137801268392875,-0.0278316567692351,-0.03976374077922,-0.0244955414324531,-0.0330315167540046,0.00382816222904768,0.0291368935056037,0.0225602060991203,0.0162723764878562,0.0128029096724204,0.0182944785277403,0.0154884445632859,0.0106984908264527,0.00674829110288007,-0.000142595660205406,-0.0576140707335769,-0.101255512249778,-0.128294431646403,-0.0866389421871993,-0.0162918182250931,0.000673029289943998,0.0014671345297311,0.0039269823348869,0.0168522683758587,0.0121616519295688,0.0152716839353949,0.0199978948476977,0.0018973963803381,-0.0432413129958082,-0.0323258751232082,-0.0605588527938567,-0.0428883634066734,-0.0239017125614018,-0.0123520333237552,-0.000183494760753965,0.00603282736192199,0.0167795476660546,0.0068182653700516,0.0160738863745638,0.00736647256589924,-0.0147848071065135,-0.00898205466817467,0.0411047892993125,0.0333743457681457,0.013694945560716,0.00411527489557912,-0.0101289568808389,0.00876907866085615,0.0165828846178648,0.00842316615757006,0.0163460984741536,0.0010161989443634,-0.00528886656754009,-0.041896289009954,-0.00429457700428709,0.0715163390922676,0.0514053558088513,-0.00808245322590239,0.0171207991258984,0.00416857336453114,0.0107638106687511,0.012071110714814,0.00028691588966065,-0.000669939621082505,-0.00192739622086526,0.00985685684011195,-0.00512095767906837,0.067912860130873,0.112246974773755,0.0510080858041852,-0.0234117971186427,0.00995155599091369,0.0157810413216229,0.00368878512975698,-0.000880292473697897,0.00252733595551319,-0.0052523700280082,-0.0533353163094418,-0.0136689775005598,0.0681022118377088,0.131167713184479,0.0841925113753858,0.00144937463479965,-0.0355917059929268,-0.026915428719427,-0.0205185135976142,-0.0236956371208112,0.00962225218862701,-0.0012670894494649,-0.020277534924499,-0.0775959204787047,-0.0796407684739239,0.0344879748115396,0.067294850156907,0.0273259666673135,0.000518848716752979,-0.0197060912120818,-0.0482965147084065,-0.0362976246774841,-0.00779064488695244,0.00246502703548179,-0.00100099156311625,0.00719062796096417,-0.0392651929385752,-0.0669897212568763,-0.032440741031597,-0.0270160679355904,0.00768406176279228,0.0205945607550341,-0.000253951095916359,-0.0229256366880022,-0.00312515287598748,0.00962005922688268,0.00549769391439276,0.0093180109553627,0.0115986634378555,0.00484332563919334,-0.0135603926590449,-0.0167468890823076,-0.018170204750056,0.0105551496782902,0.0355983081860542,0.00980688041411324,0.00504519310045667,0.0036805746282339,0.00319741243992598,0.00534569572905025,0.00626479235948071,0.0136541990247007,0.00325345997867552,0.00493760553965729,-0.00529895729247121,-0.0213106069553681,-0.0142824939428203,-0.0158150663245287,-0.0155417795797799,-0.00851391791725714,0.00632650673499549,0.00237732715187197,0.00593886456383246,-0.0020454816598952,-0.0206681961169283,-0.0150958044166965,-0.00803376720236946,-0.0134533088625426,-0.00623472875313139,-0.0118710122660698,-0.0123862783711443,-0.0156239972233065,-0.0166670779816396,-0.00592515459142041,-0.0159666355500903,-0.0178795952718681,-0.0111743709297874,-0.016426909449369,-0.00710001141209697,-0.020304608021195,-0.0141000442738008,0.00539076324347874,0.0109194331056254,0.00876832369353829,0.0165160579542921,-0.0115219913846461,-0.020342253630952,-0.015960695171597,-0.00609621460606849,-0.0189422737787548,-0.0222323180958645,-0.00739444971577315,-0.024856372578724,-0.030476132164581,-0.0180402911106663,0.00527359612683359,0.0483999823810717,0.0393703936477022,0.0199808121440324,-0.0151318306864255,-0.032593923704737,-0.020306997710203,-0.0257445215383332,-0.0191560402005182,-0.0213667217108192,-0.0286672715215886,-0.0258767684869521,0.0148613526776292,0.0504268889341112,0.0666211374997624,0.0558090610874835,0.0149472808307303,0.00204245153597215,-0.0284450655218357,-0.0414807946315726,-0.0108357534887147,-0.0146965166933818,-0.0168685110834836,-0.0118110412158082,-0.0189963345568986,0.00917974385784319,0.0367840487324751,0.0351632513380097,0.0225387803602609,-0.00456479429412294,0.00277548106882321,-0.00908664019713825,-0.0130092571173244,-0.0125398902944037,-0.0165185528598034,-0.0124012660403428,-0.0145628714003304,-0.0292999728880143,-0.0366858748838352,0.018313365545529,0.0392612977918846,0.0240966203448161,0.015470828157234,-0.00227104385296117,0.000880185328724341,-0.00589909610828925,-0.0211512653824002,-0.0124180309337637,-0.0129669629729666,-0.0240506522380414,-0.047417893040537,-0.0821881976397695,-0.022672750280359,0.0287262575502967,0.0132375911695247,-0.021294244945256,-0.019532048509865,-0.00264464858770965,-0.0012764337279583,-0.0119344696840368,-0.0169427436568583,-0.0147638286061661,-0.0365104808433072,-0.0493996209759427,-0.0434242458198374,-0.0164517406080827,-0.00657768397523773,-0.0248899518768232,-0.0408590347922179,-0.0386630673712177,0.00220515876383152,-0.0046192106316664,-0.0119732145225804,-0.019319048648486,-0.0111881550907704,-0.00564296934617194,-0.00567340142793721,0.0368268946896628,0.0138466243218438,-0.0306189920752544,-0.00893418579853442,-0.00258234735072878,-0.00757580445785282,0.000794616365240189,0.00451369541189257,-0.0167408033730359,-0.0168578925577354,-0.0165473650051224,0.0031889904043413,0.0180942458407606,0.0667537151270697,0.041636787060654,0.00606195095582274,0.0395877759099911,0.00490016468029329,-0.0023878587837158,-0.0172740724249954,-0.011023896772347,-0.0245039739860824,-0.0245478401514725,-0.00835123536236255,0.000922612751085222,0.0173546782372091,0.0258141283889169,0.0280731747424346,0.0147098512976249,0.0401888479328558,-0.0208134581761967,-0.0303233084225617,-0.0285761792940428,-0.0117261160710752,-0.00764274734997983,-0.0247473586265656,-0.0227846058096946,-0.00398447982195736,0.00634889850548626,0.00394485800996903,0.0217255578819506,0.0238049329815855,-0.0113344089515959,-0.0148827817997995,-0.00464149865027972,-0.00779396338689498,-0.0213506121601204,-0.0106059963693096,-0.0187787890883325,-0.0134038972054575,-0.00649629417166528,-0.0165643720215453,-0.00967783231222145,-0.0181673019111912,-0.0127013086696633,-0.00472876430124742,-0.00655150554980376,0.000599331155885055,-0.00516240285867703,-0.0129907117654472,-0.0128718826564957,-0.0112672130833029,-0.0142695119320225,-0.0289373206755524,-0.0156965626914466,-0.0263911553778344,-0.0200167780801796,-0.0159988758819293,-0.0118441203613572,-0.0233170230181451,-0.0204614451118075,-0.0114400090460093,-0.0267915133215861,-0.0114196082217936,-0.0284069273026781,-0.0137814349747475,-0.0282612734319503,-0.031062819755638,-0.0304021666915246,-0.0558754354242445,-0.087541219187696,-0.098404823418977,-0.0715050730363703,-0.0446180215278879,-0.00751667104027078,-0.0145701839575721,-0.0225600899290869,-0.0102282503504122,-0.0248393083124169,-0.0216160806291265,-0.0144417150749701,-0.0449904837808478,-0.0900678161268768,-0.115152578011985,-0.101563784224784,-0.0868897274647635,-0.0392110364701984,-0.0178490591239764,-0.016249247658797,-0.00732094943436836,-0.0136419929317498,-0.022520919340205,-0.00708163119965771,-0.0322859658801871,-0.0460137105463806,-0.0552238232998597,-0.0186119580708872,0.026055779939688,0.021490307688529,0.0111591990624382,0.00458269484871593,0.0162517989434366,-0.0114563425364789,-0.0136979563315336,-0.0114987444067492,-0.0118834192596445,-0.00988564626379881,0.033089919783727,0.0927958098534654,0.102004039221906,0.0864923449188942,0.0375740110652784,-0.00908414683725216,0.0258106552364889,0.0377202757475546,-0.00145804936389883,-0.0266927184719845,-0.0141907460595152,-0.0101761366235346,0.0169510203779911,0.0991240863740799,0.130497659505446,0.0871221141937775,0.0484161770750023,0.000804154522489841,-0.00986925246741016,0.0319172854767742,0.0746467463467954,0.00926352481230325,-0.0108654561911309,-0.0138439371891751,-0.00688671994317406,0.0512752308644045,0.116850232334667,0.0993865555026203,0.0218091032727812,0.0118335084039045,0.0131232119920016,0.000880519294992866,0.0489245698783925,0.0445991864504249,0.0247252085922487,-0.0137891245333267,-0.0237323182042331,-0.0176644681881175,0.0183011790764738,0.0393152145401755,0.000688228860729496,-0.00729772471015845,-0.000614438820808524,-0.000382501139171618,-0.000115560003223647,0.0284749750548159,0.0282017931144419,-0.00824328820155031,-0.0125005282932002,-0.013926980543829,-0.0353337957737314,-0.0252583479009897,-0.0412856774667823,-0.051708110000265,-0.0572424671307222,-0.00922858413595383,-0.0255548636682813,-0.0533674637517013,-0.0403825810946213,-0.0386726016595317,-0.0355335401011563,-0.0270046281554377,-0.0187791219932387,-0.0337125641270579,-0.0636192038172828,-0.0788714508133999,-0.076970224562226,-0.0301957527696541,0.0189489359099455,-0.0144671198205822,-0.0601064365185367,-0.0799976735461886,-0.0648236731130378,-0.0445887704566937,-0.0350488148573,-0.0235663271964193,-0.0400063220833978,-0.0475169913324331,-0.0599183937544103,-0.0591864184904444,0.0039204753672965,0.035758170611305,0.0135529016241518,-0.0369360221732178,-0.0549363096273905,-0.0629085122489064,-0.0311399969913047,-0.012120008771745,-0.0257627341672308,-0.0132724377805671,-0.0306255504417158,-0.0314814559226937,0.000422424150324335,0.0352295351460551,0.0446476925710469,0.0301839724585937,0.00471554640200264,-0.0112180155132243,-0.0197607633070612,-0.0294454095050519,-0.0110853525514203,-0.0225616277863504,-0.0117730653696389,-0.0275611267475132,-0.0205308544458081,-0.00866804883711559,0.014612213872694,0.0154953827804065,-0.00969789728760313,-0.00888673622070471,-0.018731873400962,-0.0171989667703589,-0.0158079326761843,-0.0229357786509155,-0.0260124216482086,-0.0195154733311645,-0.0179569183376314,-0.0176133843779048,-0.0171237637281981,-0.0184902042332253,-0.00591467223935794,-0.00761922271143631,-0.000804748736399144,-0.0154039519220148,-0.0202357115882614,-0.0205220573987296,-0.0177641044351327,-0.0100173467835374,-0.00695236579539845,-0.0227990176374719,-0.00692066474605193,-0.0140436904460654,0.0158730953596098,0.0222232703241101,0.0316504520952263,0.0268930877068462,0.0141997706644509,0.019418839677948,-0.00766884754350839,-0.017932442665297,-0.00874492785160661,-0.0253833110254642,-0.015397007542555,-0.0144903455971642,0.00808805426907479,0.0381506056213114,0.023461304024667,-0.00331367725479361,-0.0159195880685395,-0.016834603846254,-0.0094966131804478,-0.00151026391210302,0.00837569539889331,-0.0191258305955282,-0.0207861451460739,-0.0260790050736642,-0.0201055418277799,-0.0171509979655682,-0.0247372557460956,-0.059113093692276,-0.0701629606202443,-0.0770420022253923,-0.0502025049317816,-0.0718439252727466,-0.0471152703465627,-0.0122873550943136,-0.0128422786705711,-0.0274096877426118,-0.0280977268778262,-0.0370570569342857,-0.061654620603914,-0.0774017787153398,-0.0465566017055545,-0.0404630338610583,-0.0540199391063572,-0.0724755160929186,-0.0937797580383263,-0.0598603930748237,-0.0348586815922414,-0.0230157762419135,-0.00937319279226791,-0.0371483990675187,-0.0372246211777299,-0.0214525688292328,0.0114356540952136,0.00429999854720433,-0.0278029239797524,-0.056225989117337,-0.0877872132920713,-0.0874525195898553,-0.00868398618227758,0.00320030128994781,-0.0239104533802428,-0.0107411015231823,-0.0244178186870959,-0.00454672025764422,0.0607689727431886,0.104034451426747,0.0355843755717158,-0.037094131762838,-0.0204310526502379,-0.000500848731171813,0.0294446475590251,0.0616084773591721,0.0162113282170697,-0.00973070309016867,-0.0075902935924513,-0.0170856783325922,0.0329797307306822,0.0983017544351223,0.0812445391643336,0.0040825089085102,-0.00553815321263437,-0.00383579665573983,0.0434945328789237,0.0680338526948061,0.0573128586405696,0.0176712050428142,-0.0163475988611394,-0.0103961122802592,-0.0124014106822989,0.0499731882981325,0.0747200509413348,-0.00777223302822029,-0.0472841452723663,0.000923234198417047,-0.000510042269705634,0.038742878253405,0.0740272500605481,0.0588570060551741,0.0157571317031896,-0.00610291334661789,-0.0174550662087015,-0.0163987794634819,0.0429048193969378,0.020003962766911,-0.0205413650846566,0.0246667603725594,0.044994302512254,0.00289403351987775,0.0430055576074039,0.0484220412985174,0.0219673790781862,-3.24365482394172E-05,-0.0204128526828718,-0.0206497423481583,-0.0196586064527099,-0.000509760323189063,-0.00789113812848805,-0.0091194763614358,-0.0183735151630632,-0.00116352241774296,-0.0231594293969737,-0.00220316098598132,-0.00537106210936737,-0.00316351045708704,-0.0156759928038039,-0.0200581528485162,-0.0135945891396197,-0.0165743781493813,-0.0127224719087786,-0.0418129980152745,-0.0645344242658887,-0.0860428724168118,-0.10198730478579,-0.0755434031523902,-0.0385896938120717,-0.0247666785927398,-0.0259700006513919,-0.0184853866637314,-0.0199517160738916,-0.0125322181550967,-0.0229750285089297,-0.0215075891957797,-0.0196447914075215,-0.0328731602713378,-0.0520764217706921,-0.0530834294066486,-0.0510105935434793,-0.0335284005707669,-0.0304322012963693,-0.0268927612376031,-0.0102639986037499,-0.0219836218013605,-0.0168433261932768,0.019343440862518,0.00265470803970921,0.00411742145188948,0.00227458958270178,0.0164919399386995,0.00484480571753655,0.00917799698418081,0.00201224038271713,0.0111761933191403,0.0149591935882629,0.015095568974109,0.000222026794777449,0.0105948844789171,0.00986967060046577,0.0162135518064856,0.0128152544168196,0.00227288593443265,2.53374303810344E-05,-0.0139156031318929,-0.0206836792629505,-0.0149505498220465,0.00151546244303858,0.00609293948963149,0.014371659908823,0.00473616966003299,0.00125865764143439,0.0180464822416216,0.0189688278816327,0.0210273744425528,0.0187947170960247,0.0147638235462288,0.0117138828303333,-0.0348045451865484,-0.0380420483140858,-0.0043667947101829,0.0118863589587331,0.0417369527861511,0.0421106764197286,0.0237233955794705,0.0171150744783931,0.0172339615715256,0.0287313506974755,0.0441502490748995,0.049724457670949,0.0263280380749194,0.0153283655302434,0.0114344646724561,0.0169614562244818,0.0381931500532531,0.054993695553752,0.0855007850052112,0.0360822482180812,0.0083168142467317,0.0217933236151454,0.0340346675532783,0.0439601732448794,0.00244554743568634,0.0350585733085261,0.0607359330087368,0.0241419286178283,-0.0121063483984441,-0.0254635713867125,-0.0043491405032354,0.0243514166722138,0.0183237521445785,0.0094382728726403,0.0117630772331654,0.0192483933885935,-0.0205683190752986,-0.00964371545243224,0.0676495103560268,0.0388494596721575,-0.00768088963902681,-0.0341922861678263,-0.0626258057707837,-0.0852000336159418,-0.0165296933728644,0.00627813340792145,0.0167318049249072,0.01052964507005,-0.0266435341436292,-0.0651946678484487,-0.00900659004109939,0.0355818171837467,-0.0117167755054191,-0.026511105975221,0.0295977507538505,-0.0243217244961171,-0.0761489743375421,-0.0372909368750617,0.0113377715612873,0.0134388903082145,-0.00241117387241812,-0.0587139185272787,-0.118090868909628,-0.0831760446475596,-0.0829245298504898,-0.0954162959795224,-0.0313591606793403,0.0360954378262236,0.0117547751676922,-0.0206646070435767,-0.0273764788665724,0.00784927226561419,0.00855222645737256,-0.000495222158616551,-0.0464883055842038,-0.088179696825075,-0.108275911040574,-0.110556930082919,-0.0971532852187342,-0.0348466130877224,0.0183013568751103,0.00804780795059686,-0.0101486835647519,-0.0216075576092227,0.00557120222247247,0.0137509438874154,0.0124620066508037,0.00537190912724933,-0.00420279499907522,-0.0458928499933126,-0.0397924925536988,-0.0329381102873248,-0.0179918288780586,-0.0020088353837761,-0.00959132383705841,-0.0054399390736978,-0.00652443818457608,0.00688075839245687,0.00711920384455157,0.013291220527058,0.0294295502580202,0.053486224836038,0.0460782506523778,0.0369250477344896,0.0210458194733146,0.0107166144105208,0.00857640674713812,0.00456755333343533,0.00452314454999495,0.00329564008071121,0.00272170833520573,0.00158666600851706,0.014762386387935,0.0189508372867236,0.0523820791835689,0.0815339537121326,0.0699352038522234,0.0486537837085782,0.0311757011084746,0.00690416158765004,-0.00349406684777833,-0.00613826913699227,0.010267217782803,0.0172874553310705,0.00223339405002709,0.00174285800922393,0.0203778828308364,0.0365895033988981,0.051553466863255,0.0363423272811833,0.0395482002097411,0.0178071061966385,0.00843354844910781,0.00586354915770347,0.0190746522482198,0.0200139819728879,0.0169707566402555,0.00972546014604975,0.00228723991179066,-0.000604617196868028,0.0097308810885065,0.00182536613282834,0.0128187654105409,-0.00156632615069253,0.00389005139846435,0.023403595616158,0.0119975742344403,0.00928929112281019,0.0110535341795442,-0.00835070398554888,0.00997186359826019,0.0073540540016285,0.0109214359852269,0.00888419053350893,-0.00905799371007334,-0.00497529086813196,-0.0066274104361936,0.0118066188038358,0.0277504525215523,0.0326295949324579,0.0288185314155541,-0.003108664891103,0.00594840830311712,0.00858545746208271,0.00969914465192471,-0.00111369962433278,0.00617734289129628,-0.00171863578313491,0.0233662916907055,0.0435027481678665,0.0397790704959052,0.0324754494935349,0.0170996656189726,-0.0200623464631909,-0.0289741560330297,-0.0199191897856655,-0.0115760363208608,-0.0104917862237356,0.00326541656149037,-0.000251413294251048,-0.0140466476252961,-0.0134129731241816,-0.00401023729561107,-0.00657630674787869,-0.00249214096744519,-0.0146839257780337,-0.0171162072853039,-0.0276332791854654,-0.0236791077181762,-0.00428795410073118,-0.0125635538098824,-0.0132346096825717,-0.0225128428150499,-0.045091686714148,-0.0332825800647592,-0.0109004549934153,-0.0185929649028557,-0.0436424233348936,-0.0286181092216146,-0.0207730527331682,-0.00132479509337208,0.0111862714264034,-0.00533935719121909,-0.00731629813366874,-0.0173803051637908,-0.00786866637824469,-0.00864090484172659,0.00750950300570905,0.0789836108776515,0.0429982570942331,-0.0166248591211387,-0.0307347651394667,-0.0322519498184578,0.0425736299877247,0.0298569313554452,0.00689651238524871,-0.00489387446014438,-0.0153574146924044,0.00697216727463685,0.0353933848150271,0.0708557719723875,0.0593100120046139,0.00233507137854716,-0.0219806560345431,-0.0154999002754836,0.0258849671974381,0.0900296253112151,0.0405106956991523,-0.000409020419414426,-0.0046855771371328,0.00322813517974467,0.00623609952222321,0.0318444872235316,0.0142536475610067,-0.0402667264786859,-0.0784994607503845,-0.0603300405111838,-0.00402828865030801,0.0784339536474283,0.0941138053467154,0.0394807842536426,-0.00741475177730532,-0.00529599239777486,-0.00829011900504994,-0.00291979480034444,0.00778377762663218,0.011271872934169,-0.0543665621450474,-0.0960942637279244,-0.071025183869661,0.0440527177386983,0.076719257759824,0.032183964747902,-0.0105353055153972,-0.00465738080611807,0.00412329299044737,0.0145239091578767,0.00485951987597729,-0.00626437426059166,0.0246686522141898,0.0251429974349315,-0.00741433389127805,0.0298425208742081,0.0672472016498692,0.0255277326284698,-0.0245239962309052,-0.0382086401520286,-0.0147653823062778,-0.00695706840364262,0.0088175310590464,0.0229840012350765,0.0282239117649438,0.0373284803342923,0.0605094814626291,0.0567192559035477,0.0540668949997006,0.00722469767560586,-0.0210157800903901,-0.0288162190057855,-0.00500440829412089,0.00599832950700054,0.00134127412668792,0.0130128144810309,0.0143184100757667,0.02479241227125,0.0393946034950031,0.0280247817338117,0.0018884311390446,-0.0162158945842349,0.000591083745207236,-0.00696531854357723,-0.0151483654396492,0.00485143654062277,-0.00958900713268695,0.00759433301693261,-0.00418205331134651,-0.000218975459533068,-0.0145149937398425,-0.01758984352504,-0.0274006103130138,-0.0371873089257991,-0.0269273152135304,-0.0177534409815741,0.00471040321894757,-0.0016034629425065,0.00536006652949238,0.00238850793844687,0.0110291792865429,0.0221618875092212,0.0084547652799043,0.0212750846742131,0.0163450227602505,0.0120446134589796,0.0178990579750204,0.00630058405641016,0.00982267164722908,0.0120674369107666,0.0159814635696955,0.0156348917143442,0.00868243167312187,0.00586510094077711,0.0190606120120581,0.0143525986160865,0.00746759191529715,0.00234327947924986,-0.0143081199970985,-0.0176019809811143,-0.0467586739255968,-0.0579708714879373,-0.0516003060538126,-0.0113146881332438,0.0024369721102823,0.00425022311427854,0.00969644476274829,0.0202486217573318,0.0198244375687475,0.0139412929877346,0.00567081951481796,-0.00602739103175616,-0.0129273068889103,-0.052464316569704,-0.0538511493130762,-0.037456817799293,-0.0496116427961754,-0.0110689592655695,-0.00602987287746221,0.0093623856092388,0.0219442408251608,0.0182335219917044,0.014894474473647,0.0412781425486941,0.0518699455161095,0.0373712059766019,-0.00839122944552233,-0.0044896700905426,0.0287085216604331,0.0270459547534052,0.00266608006137989,-0.0208782092795797,-0.00183143394144963,0.022880345162413,0.0293028206147659,0.0310868853819783,0.0390906619889943,0.0538064159242607,0.0170320445362238,-0.0318966495593922,0.020034458233254,0.12826373979744,0.0943518145918287,-0.00761793409375191,-0.0198719096445315,-0.000487743233882356,0.0219978846800665,0.0281852781937916,0.020304966400098,0.0181870461278937,0.0335074006013981,0.00875324960939312,-0.00770832484407603,0.0796324240400347,0.166549184884514,0.0965996940318856,-0.0430792705806797,-0.0209776085827996,0.0137284505388553,0.022447265851501,0.0151806060844151,0.0213503494770406,0.0204855605297157,0.00922604709394193,0.0262376282506287,-0.000564225427908047,0.102542014342184,0.16389595781213,0.0302449246135408,-0.0637535993922418,-0.028134882702138,0.0143591648014725,0.0165293971396783,0.0112572033148654,-0.0177557504912555,8.15281580615617E-05,0.023481758765667,0.0470729845193102,0.0346064683411461,0.107983398790382,0.101164333290463,-0.0102012850440359,-0.0656742179220269,-0.0256080791640918,0.00762451424900591,0.0098931624293413,0.0107355596789326,-0.0622322107606083,-0.0764090644920506,-0.0599565145016465,-0.0187741197158567,0.015765975963364,0.0681013628784958,-4.58019162505709E-05,-0.0789216449046262,-0.0841705674588787,-0.0268161758780343,0.00634543098657543,0.0150493623080966,0.0132614581328767,-0.0734564724197876,-0.124723431285013,-0.142797634147763,-0.120293956498082,-0.0573423147307942,-0.0309160028058069,-0.0510718203266379,-0.0626655721385695,-0.0509834857566344,-0.0112197770979506,0.0129780759360321,0.0230656460770705,0.0187371942333974,-0.0125894171373962,-0.058475177162605,-0.0809474707439746,-0.0408714039202381,-0.02862548366148,-0.008482534412879,0.0148552267227194,0.00625735094774048,-0.0027400829142137,0.00975367510471059,0.0224783490148472,0.0142894858338718,0.0230741283726596,0.0155034950963532,0.0249436775306283,0.0343883125447839,0.0676548521544562,0.062308695521225,0.0557143978108505,0.0549402588222387,0.0440238690705525,0.0182703077368598,0.023359191596597,0.0148782684003849,0.02225643792281,0.0227817320630376,0.0165572279994596,0.0192572115275733,0.0451055024090064,0.0515922633994006,0.0487599939866567,0.0440512279470448,0.0339880779118576,0.0112294505141854,0.0143909471556219,0.0185669498591385,0.0161116325254353,0.0145127306998481,-0.0124823147946098,-0.00295354670013319,-0.0101693961101305,0.00209497376423682,-0.00183878541343864,-0.00946512580864995,0.0087784239441111,0.0047217163452624,-0.000630007999271938,-0.0100543566713681,-0.013618894515125,-0.00808213008432029,-0.00630021469608901,-0.00328194934607734,-0.0164206522665524,-0.0111764562345915,0.00446796406935991,0.0148776393760254,0.0164337669588959,0.0370376666506485,0.023619814490055,0.0167068384425295,0.00295686487683695,0.00819702075121963,-0.00855672085784811,-0.00488891474005313,-0.0146965178252274,-0.00691902416837863,-0.00273190431160807,0.0066907709147193,0.0105498610405442,0.0223225554200677,0.0358608177328753,0.0396038561677652,-0.00951110005028195,-0.0254820210736256,-0.0133961921068956,0.00422409102487285,-0.00438914262229956,0.000368960029587936,-0.0109168744865725,-0.017008695965962,-0.0235914032798531,-0.0283361739216167,-0.00792929996393246,0.0400414428530412,0.030469486079211,-0.0443770837638326,-0.0613756439491596,-0.03056106718269,0.0215571567024346,0.0115663695984166,-0.00619847942174399,-0.0124886066303341,-0.00930150107941466,-0.0107754263586263,-0.026718575104882,-0.0315480219307938,0.0242127670631988,-0.00994211773141634,-0.0733349224092866,-0.0809420406916044,-0.0525245960332254,-0.0111251295254764,0.011486454046142,-0.00674726699187201,-0.0149706393127264,-0.00584117006170476,0.00500033232144591,-0.0216412912420746,0.0130453422293606,0.081781849729467,0.0242772986310467,-0.0140917992911847,-0.0467456920640109,-0.0553566630825449,-0.0381459459962296,0.000253960811025882,0.000954280216658212,0.00295479044879047,-0.0401528750343777,-0.0428304625748667,-0.00738451946708015,0.0787807663593467,0.145024242523657,0.0631387728249162,0.0142637164593914,-0.01986232625587,-0.0602067187181284,-0.0348806346645646,0.00131360499962031,-0.0141026172598198,-0.00624764151895444,-0.055357640625936,-0.0751707107962696,-0.000783323779598376,0.0846529306508472,0.0934141374264817,0.0399366932640127,-0.00323682982547255,-0.0458502562420629,-0.047403869238205,-0.014151701117252,0.00427523431649025,-0.016034031691917,-0.0049252465487109,-0.033965033462403,-0.0524019426837777,0.0366058403546502,0.0839575066017436,0.0554244566641647,0.00378862786033038,0.00757051493334917,-0.011092161629912,0.00290517669530016,-0.00553819622650537,0.00631873819478318,-0.0160023599524187,-0.0105427279449937,-0.00645804712579374,0.00514935253844663,0.0400493055154892,0.050707684186005,0.00955350529542136,0.0117100718314054,0.0243611013665504,0.0345340981895178,0.0340987423665863,0.00118878412343341,-0.00451279949245984,-0.0143288345612379,-0.0127546730490297,-0.00145259813801339,0.0076339893469009,0.00251556634094826,-0.0214858953326894,-0.025078059053868,-0.00856549100328008,0.00774548873068008,0.0165255249317995,0.0210886104006102,0.00205687487132502,-0.000179062469502575,-0.00869702164075073,-0.00753097085771238,0.00655745779350838,-0.00524686926097393,-0.0273313152721259,-0.0460663945269945,-0.0345089404432098,0.00258667076169271,0.00773169153326094,0.00527245682871047,0.00155137669116075,0.00248067770377413,-0.0122043139883989,0.00301910402789793,-0.00810326701576052,-0.0042515025894314,-0.0181831067857746,-0.0275255035486166,-0.00976084740607997,-0.00628227986823624,0.0102299982975692,0.00389396701269758,-0.00807482062140678,-0.00381873791673777,-0.000961792424113147,-0.00939763813809636,-0.00855904865866904,0.023062193801848,0.022250799695348,0.0252792711873147,0.0243816043003687,0.014343205494422,0.00398949303285255,0.0101457119815087,0.0110871310790666,0.0156684671277494,0.0232146977414515,0.0232012988830323,0.0190319799461279,0.0220835032245846,0.00706611563720008,0.0264643255125338,0.0137869359166551,0.00682422115025107,-0.0138937617529612,-0.0414914853342487,-0.0536918756894613,-0.0287709354406689,0.0131529232393459,0.0320098634134106,0.0271229229738836,0.0130914006623162,0.00673721347744112,0.025030635990813,0.0087321084417342,0.00351050873399046,-0.0160135480349647,-0.0624382427690683,-0.0853386351401803,-0.0613462768137187,-0.0373069653512757,-0.0200931424642195,0.0198317185936116,0.0289995044160281,0.0192742123758229,0.0253753400092462,0.00911179883035862,0.0257196786539626,0.0252396024490706,0.0204566781916041,-0.00163233102637555,-0.00464891066960257,0.00331528460823851,0.0349664775726689,0.0353019242391695,0.042725021795595,0.0074080781222277,0.0406222418271473,0.0152452678609402,0.0121963787285455,0.0180754634885673,0.0352828252396757,0.0564760773486538,0.0196474966578211,0.012886717663249,0.0921353932773863,0.0829488277212374,0.0323945095934306,0.037415363233452,0.0225489839632497,0.0236652023208372,0.023750822539896,0.0285790781280949,0.0224956851005391,0.0242789231735488,0.00388619217793407,-0.029407100452619,-0.0247521783585775,0.00891303708781657,-0.00500090882403177,-0.0321052744336323,-0.000251181317189422,0.036908993582187,0.00750876407220096,0.0255204655701361,0.0105374934879094,0.0217079512105146,0.0026537411234292,-0.00805948478149049,-0.052942816898552,-0.112687075443099,-0.0845324324395166,-0.08412122350795,-0.0948975974801901,-0.0223761958010462,0.0174324098241541,0.0198096717168434,0.0140488216104946,0.00758920552563248,0.00751216844806795,0.0124744100390313,-0.00969051807843255,-0.0824245566893326,-0.116714412037848,-0.0707762703320793,-0.046697925519069,-0.0464397360327129,-0.0173501349898497,-0.00720174804373308,0.00340476628324849,0.00972359646474349,0.0182458338768262,0.00858829124188978,0.00571905432310171,0.00631181602695314,-0.0439075026659769,-0.0583756832001238,-0.0235839650684935,-0.0303212394759624,-0.0293893211080116,-0.050996873080998,-0.0139154483691942,0.000438454910807642,0.0156679484622549,0.0226094516902403,0.00588482239036464,0.00220421494285507,0.01310993521538,0.0164543069199281,-0.000953144918427578,-0.00714948873652289,-0.0391500922309377,-0.0458449697568215,-0.0744117673666918,-0.032530852494463,-0.000397995208903166,0.00730543417197842,0.0258278200248306,-0.00250477147362062,-0.01284785666235,0.0170132148960303,0.0346127775606342,0.0295420468870469,-0.00279187108506197,0.00306487134087852,-0.0263818057351688,-0.0412358013615485,-0.0137533115243627,0.0132042255505291,0.0252652390091114,0.00965562733541647,0.0202298884834438,0.0134887736008812,0.0117616225000782,0.0367780758561545,0.0270621177995045,0.0360795731569662,0.0361858425518143,-0.0034622371103012,-1.61704049892103E-05,0.00866619441401189,0.0231705541319316,0.0266928804729,0.00768853296757818,0.0143805429814956,0.0252789460494477,0.0316251275519377,0.0303799919365343,0.0236094623024601,0.0337914850698141,0.0380048359061073,0.0239903161141834,0.0244683879511939,0.0222246045554721,0.020651982947422,0.022584082029612,0.00410213318461069,-0.00962599174860008,-0.00430602856000965,0.00595989400006744,-0.00335495779824477,-0.00882927333727018,0.00381184742685738,-0.0102597739661535,-0.0169027639489052,-0.00353255040801743,-0.000682278566644656,0.00465705671363292,0.00476735060641491,-0.00197609965276136,-0.00408686990387282,0.00914635040904998,-0.00445147211317441,0.0162493422380799,0.017844553213922,0.0250942317019053,0.0256213698859343,-0.00261849404038748,-0.0261272868526852,-0.0319201014726297,-0.0116046658400729,0.00301446218205141,-0.00462499318126728,-0.00622667769421935,0.000784941598073657,0.00694651886718375,0.0332148210518652,0.0403662922240067,0.0444786884251938,0.0434130873634858,0.0404860755717827,0.00568730049227363,-0.0327091671891272,-0.0459731639318545,-0.0422460792275048,-0.00140630346753965,-0.00669252685089631,-0.0131558980867194,-0.0159308284837125,-0.0275500844500661,-0.0381961651872707,-0.00543960372736104,0.0380194110076931,0.0820832307620006,0.0724348333183053,0.00580625466769725,-0.0412494332544156,-0.0558311466569326,-0.0231224078350909,0.000590204837387342,-0.00649526946369793,-0.0364723866925614,-0.0810953750574884,-0.075080209830968,-0.0504836020326992,-0.032216101694905,0.0364803769455424,0.0736319809545198,0.0456270924663987,-0.000664312562646073,-0.0181541060304603,-0.00392740433687133,-0.0125465830095293,-0.0133887139216399,-0.0176996042706812,-0.0185254050077709,-0.0264944863391879,-0.0646570262360948,-0.0323312948145116,0.0241408367552228,0.0296127855572343,0.0250166114255754,0.0230456604276363,0.00795610724450767,0.00220407739892802,-0.00613809151708269,0.00138927977328474,0.0165657831284507,0.0309122726271336,0.030152551925451,-0.00597650457870005,-0.0232386412258738,-0.0242441350841538,0.00493584127964776,-0.0116627089187303,0.00762906274498979,0.00741514212368806,-0.00807351467640703,0.00769617496707529,0.00420095026737484,0.0422807645676553,0.0531380874892779,0.0452513701817909,-0.0128224447061325,-0.0364158512951429,-0.0331153185461462,0.00965148939379381,0.00139756555355111,0.00362870574603919,0.0102807925042184,-0.00230488843868409,-0.00909242368525851,0.0127635667122687,0.0579738262367893,0.0289838080896657,-0.0424912039026822,-0.0713808643864278,-0.0548137888148127,0.00954212850991691,0.0191657352135712,0.019705309547853,0.00582856098212823,0.024134466908699,0.00171718441193894,-0.00296458825915267,0.0309271999966874,0.0525427316318352,0.0378522260659597,-0.0481135822406195,-0.0862026944658086,-0.0308113529519653,-0.0169502837982299,0.0069243790993614,0.0269957034521158,0.0284915031659874,0.0200787494532071,0.00120110736304566,0.0012485926572934,0.019729949922868,0.0337897313699114,0.0299446494022299,-0.000581586572594734,-0.0278334258609079,-0.013591100241247,-0.0295007701589127,0.00394072956503982,0.0111354011245027,0.0122055792719359,0.000528645223672619,-0.00061982829031577,-0.00556750573766729,0.00649300254914894,0.0186793100482789,-0.00350320430697453,-0.0127711436426944,-0.00368271370707593,-0.0286916547959627,-0.0294624861581885,0.0119813124276714,0.00828917230153192,-0.00625971221106874,0.00541505746121069,-0.0108040768795993,-0.00562661067661724,0.00476576927033627,-0.00159815866454515,-0.00201626984892103,-0.0111077257407743,0.00765085211761799,-0.000589019740205071,-0.00604561096508805,0.0108719026227541,0.00884389606922875,0.0037819037214586,-0.00379859693740464,0.00905303901291539,0.00707519745490882,0.0360632156653712,0.0329148539897754,0.0344883094761336,0.0243972064174523,0.0291905375093756,0.0161798716434795,0.0194366538787006,0.0171338704479978,0.014850820100742,0.0181424972373587,0.030400351823252,0.0248122729231806,0.0184442342794835,0.0313856265690474,0.0305942224945638,0.0191431689686657,0.016810213817167,0.0150861413602843,0.0157007562158214,0.0161642180496912,0.00734070825751254,0.00601311491450346,0.0261870940824423,0.0206237250022597,0.0241013818856749,0.0229197901977383,0.0208041770086831,0.0187010216273522,0.0348981130243324,0.0191151392183025,0.0154216450540187,0.0314161167905053,0.0389307687571541,0.051038460342523,0.041538535279118,0.039162933983297,0.0257302395443523,0.0220345148220774,0.0319621847004746,0.0262926740220227,0.0254187008241139,0.0123371241475005,-0.0120615929664554,-0.0383164514332624,-0.0592484442773705,-0.0147715287020719,0.0165207074709208,-0.000284748438347671,0.000296600885633142,-0.00472938565834341,0.030665966764648,0.0312608622475525,0.0204464903907736,0.0302341776538292,0.00633585362243515,-0.0573782138031439,-0.105249777286211,-0.073736271128345,0.0334574189127721,0.0822835991481935,-0.00348700716979506,-0.0557468142063824,-0.0379455569986196,0.0150596145559242,0.0330034331429964,0.0292677707313284,0.0324362541872358,-0.00867132466890219,-0.0736807571605948,-0.0558977243622809,0.0372146000326388,0.186478865848518,0.140816612723707,-0.00886487628235828,-0.0781196402009697,-0.0598655454290479,0.00285942945796234,0.0192451116258459,0.0300390545069881,0.025192530271719,-0.0441806734011135,-0.0987128427180151,-0.0451091306635917,0.0946405092854711,0.189105011658372,0.0961179226624764,-0.0574878599399637,-0.0645764477599692,-0.051673568462916,-0.016986999488604,0.0258689916805273,0.018898258722809,0.0139703686446631,-0.0659185483318502,-0.132141015191922,-0.116070653776271,0.00153158309260606,0.0475144115988398,-0.0299123098729391,-0.0774912789327918,-0.0421070092227722,-0.023795815545493,-0.0155418684394701,0.0225562284914482,0.0173566567785611,0.0261368517051596,-0.0408763630673383,-0.12663118039468,-0.118860878861709,-0.0566422676132,-0.0354353675921651,-0.0827702082731919,-0.0862524296922639,-0.0232397812092149,-0.0186692896262149,-0.00921394819467115,0.0155432935780407,0.0325360718658572,0.0320823150574675,0.0175691941056929,-0.0225623115524838,-0.0282339299565198,-0.0424007167529963,-0.0395065699554849,-0.0598814423963945,-0.0430125440873834,-0.0202357270014141,-0.0154648194934298,-0.00138011126466841,0.0210768841035697,0.0231035989321061,0.030927980007053,0.0563159652250153,0.0733407415537053,0.0667783303354365,0.0353799783351902,0.0196747979718192,0.016293614150995,0.0264045327201979,0.00247111824912225,-0.00427117076178432,0.0184654665083663,0.016987774470285,0.0356905525746535,0.0284572980493405,0.0418497923680969,0.0683880965547204,0.085507131350043,0.0778845071982076,0.0612605442604766,0.0386580689677517,0.028027317868661,0.0159559591174493,0.0340949344335983,0.0163390705506324,0.0333389191470882,0.016888013816841,0.035585285344397,0.0203907715345822,0.0239945926843371,0.0113056045274269,-0.00149270571010698,0.0115500843021259,0.000765912404624081,0.0287753221092735,0.0344100857173899,0.0350280698656026,0.0226328377529443,0.0221237957863479,0.0160151199813428,0.0455102149204925,0.0339669678894137,0.0379738583236318,0.0382212119794038,0.0482630680563419,0.0388457818076971,0.0396650443256664,0.0536304440476568,0.0540178100906969,0.0447506227369506,0.0321683742024973,0.0396672053291102,0.0278444451956969,0.0322429862436094,0.038323581111018,0.043367123357592,0.030366301815663,0.0174616393920723,0.0233594636530158,0.0526748929178418,0.0778182510071715,0.100801332759227,0.0902062654403765,0.0592856598831204,0.0457480600624861,0.0312976987989754,0.0347368799770411,0.0324849346211077,0.0196742670162785,-0.0167977315290885,-0.0599235300080936,-0.0529779628575108,-0.0152200822551381,0.00317707386857754,0.00175547529713871,0.00317825431018191,0.0182061024838697,0.0145432011482596,0.036586821367262,0.0429015962396422,0.0291781377977915,0.000643532236045966,-0.0576446152641168,-0.0983028973940223,-0.0836209485180633,-0.0328529695394888,-0.0507555226211782,-0.119117388120952,-0.150535223317456,-0.0868421786389168,0.00520041922493918,0.0362734955155376,0.0269279419600476,0.0319346224031934,-0.0126009730997451,-0.0576671979341126,-0.0474045394351756,-0.0286502358763411,-0.00172468744315623,-0.0650002802647956,-0.137356272089904,-0.14663637258078,-0.0791316992928134,0.00145476041951732,0.0215624142966109,0.0383814233177844,0.0297273779004265,-0.0166509619675762,-0.0220828829948503,0.0162929699945382,0.0418907602473202,0.0546738486884031,0.00944136451386187,-0.0856064756234829,-0.0513479936597664,-0.00998419342814848,0.0277590985284836,0.03173378183316,0.0331638212843817,0.0255508942193724,0.00142584205365344,0.0141635338291347,0.0638909200179642,0.0585697636666762,0.0943959764150946,0.0278211880638866,-0.0459231573774043,0.0269323111308061,0.0542335028898252,0.0263047013607836,0.0383342807727971,0.0377530317883541,0.0385159243322474,-0.00796604330772629,0.0278655771012352,0.0885662478927792,0.0907459735607167,0.12406056440445,0.0129763584011397,-0.0405743349568384,0.0490035391178159,0.055589689920657,0.0225293161073854,0.0306635330433368,0.0359495001233805,0.0217337268208199,-0.0419577502000815,0.00771236263117514,0.129994297573652,0.14660877387401,0.0953508829493744,-0.00845200254363676,-0.0215936630591435,0.0122821954996189,0.0177833232449888,-0.00222614790802254,0.0247674869141413,0.0275846292984468,0.0165896525309103,-0.0697538818297656,-0.0582146707112714,0.0928435497970583,0.146720254352184,0.110240330292773,0.049477153754621,0.0129124855609078,-0.027752814671298,-0.029478405446718,0.011927244023177,0.026961480717149,0.0261542010973429,0.0158150162125287,-0.0243315298952993,-0.0912863657610163,-0.0587435066372854,-0.0126451304789507,-0.0056615466122344,-0.0192321458054734,-0.0614690416561009,-0.0301812046683732,0.00682782296046795,0.0298901232936815,0.0355415985828764,0.0287771705747678,0.035598769018297,0.0298692626748677,-0.0118945299448639,-0.0668916842671702,-0.101317810846852,-0.0826590132941765,-0.0514986291923727,-0.0097957041155847,0.0198102857891843,0.0409969310021577,0.0271969274378262,0.0339649441868285,0.0390865144254987,0.0327349345167348,0.0388493976818989,0.0325717940770708,-0.0013775055704013,-0.00360905959012202,0.00152018099293522,0.00970140564959078,0.0151089288245684,0.0369278189948784,0.0402144251029286,0.0435222862023829,0.026222768839153,0.026498366023863,f,10,30,-0.0458643061286644,-0.0453110355113484,-0.0194055615299397,-0.0633500532828672,0.00419535351841672,0.031116632643807,0.0686625665960625,0.0336703282862142,0.0320944851471428,0.00994502818326782,0.0993036828125348,0.00109010573011593,0.0174977997978109,-0.0097222285534253,0.095418692675634,-0.0648105968835785,0.0263134863059898,-0.00595206141716084,0.0282848302780854,-0.00991035141960787,-0.0132207130449721,-0.0568149848305472,0.0913364993971765,-0.0706319808315527,0.0403619317049738,0.116908418290074,-0.0521608123384243,-0.0679315714575893,0.0352126380260547,0.0448073865346884,-0.137314009883059,-0.058709685318785,0.0554462012164601,-0.0470903671863964,0.0374042322206854,0.0375234802464094,-0.0431105162689192,0.126687712959455,0.0219579807799365,0.0214845569168649,0.131197281472272,-0.0310129064584598,0.0792782977562664,-0.0879358216183323,-0.0484856210581167,0.0216842999927461,0.0564862127906835,0.004975947807686,-0.0877396385630236,-0.0637855574696259,-0.0339103322289917,-0.00967506733694695,0.0527429810565422,0.0198151316629856,0.0426313291508863,-0.0421573398503989,-0.0277207053873685,0.00481842694170328,-0.100194645060217,-0.0287257502188782,0.00526814211215811,-0.0288766643976107,0.136464827568262,0.00368780500368726,0.0449294235532596,0.0287806137215568,-0.0508527025773002,0.0327646105696528,0.0277912659276671,-0.0265999898638355,-0.0758463037372848,0.0742195311154917,-0.108148275440482,0.0556821839096436,0.00467187112493169,0.0421297876793174,0.0316247731565433,-0.0240107387652114,0.0573506582600602,-0.0436025918192189,0.101815453022453,-0.0147134881990714,0.0603101733601386,0.0942393891778908,0.028024215100409,-0.0268870146612343,0.0489694301526623,-0.0388639017331539,0.0693457756164955,0.0360919348281109,0.0273735181028617,-0.0077470973666078,0.00930888735643619,0.0151631019996061,0.0149966749433536,-0.113135178334991,-0.0351911721923326,-0.0640602545989038,0.0651145149551086,-0.027130891271082,-0.0344033127691236,-0.0474114940766498,0.0420403556963831,-0.0140801465347345,-0.0311671686605303,0.0487846422688323,0.0368632274233127,0.0967854295045038,0.0542805626744582,-0.0140945164054618,0.0154120932529382,-0.0114643829895886,-0.053501264097117,-0.0882191269369001,-0.0463154529011317,0.0198756530907983,0.0569386754878846,-0.0710254194454659,-0.0871689659786322,0.0235458472468546,0.0581371533608963,0.123459978346056,-0.0169947843492192,-0.0271126053474335,-0.00515424892583335,-0.0819591833306162,-0.037011948615155,0.0528097163457675,-0.0445227094588685,0.0380542847477197,0.0137060949613634,0.0716108691944576,0.0699944421964007,0.0109696584903379,-0.0178988284175966,0.0578467618742356,0.0375785180238138,0.0444606628432464,-0.0654088324945799,0.018866365383087,-0.0265007601508885,-0.0532353812078825,0.0553035342262935,0.0197603306603279,-0.0685578168681867,0.0749094327200801,0.0503021513793679,-0.00775979137748902,0.0235725283807646,0.0184885557742913,0.0544323223602898,0.0112922948012292,-0.00823669054828198,-0.0232302455907464,0.0536035995637741,-0.0299155793416001,0.0287350363724301,0.0511963910992134,-0.109886159263704,-0.0496175904778396,0.025082419775152,0.0307694019949811,0.00768087149415724,0.0268414007547612,0.0112437739046902,0.0128976584552974,-0.0110634587269889,0.00791085582949498,0.0290956000886686,0.00297194516760183,-0.04603676417611,-0.0211015240809504,-0.120147355382723,0.00804846084816414,0.0503878574646165,-0.0570909851641417,-0.028841710300734,0.0634968642302123,-0.000667128179561887,0.0265867976851792,0.0153665533902241,0.0269133905317016,-0.0121730642825651,0.0309532736833042,-0.0895804847304571,-0.0347206786581823,-0.0450654360973313,-0.0931333664604732,0.0390932072733937,-0.0407480899299112,0.038479794709996,-0.0565879928466118,-0.0600900331120518,-0.0124852228250365,-0.0493194135242723,-0.0822742350834543,0.0322591289842227,-0.0328427574736312,-0.0633876082624265,-0.0533381600223261,-0.0819173829103261,0.00564271677839158,-0.024060457760767,-0.0710644203918251,0.0523201823160544,-0.0299749824258783,-0.0010590175836866,0.0510351604116227,0.045410978010168,-0.0950983545232669,-0.142140692629096,-0.053344183697245,-0.0380757017602301,-0.0358406951071912,-0.074983998073049,0.0160920602619247,0.0781106939799691,-0.0183634362454586,0.0974462384723747,-0.0562328875070828,-0.0558785917259945,0.00366794808259745,-0.0128444685430324,0.033742841195756,-0.0759279081410341,0.0242441171398865,0.0111977449635103,-0.00684705947089892,0.00639794872055196,-0.0182851272693107,-0.0039409024739113,0.0180090686166497,-0.0567208961754141,0.0426792193322151,-0.0339296179343546,0.0556092520407919,-0.0472536086835515,0.0385478082625908,0.08229407919226,0.00659108661969698,0.0485893627712689,-0.0341984339283902,-0.00279340822109686,0.00120153827016107,0.0510955526623921,-0.0086972469321122,0.0373539445475577,-0.050953855073762,0.0114194159695092,0.112871971501981,-0.0794274013960795,-0.0440128031927051,0.057601268091703,0.0545671617152398,0.0744446300369107,-0.0778850095753209,-0.00686573861669969,-0.0806392209487516,-0.0825797852024972,0.0195481244024294,-0.000502982104280266,0.0691356802772798,0.0237866054967321,0.0130052944950106,-0.0253507030748844,-0.0451071025903997,0.0333338645699992,0.0479104373271984,-0.0209675736207374,0.0343921275514931,-0.0383304851323201,0.0582928398428768,-0.00292537867185856,0.00590686214678596,-0.047996482512565,0.0690045479617081,0.00540113027821575,-0.0225435291431512,-0.0515860032623135,0.0157889720050662,0.0466987996551809,-0.0420167268817351,0.00805066225640812,0.0385645023156719,-0.00192556821416038,0.0326868026244803,-0.0453722285184019,-0.0408110120257445,0.07484003420806,-0.0401577342761622,0.00930932112532419,-0.00594488172557488,0.0380992949883041,0.00171302282104516,-0.0440192661336394,-0.0449987285740623,0.0649229774988234,-0.0630756722206242,-0.041938299323383,0.0203431200279178,
\ No newline at end of file
diff --git a/CNN1/iLayer.cs b/CNN1/iLayer.cs
index 89c5601..3b5098e 100644
--- a/CNN1/iLayer.cs
+++ b/CNN1/iLayer.cs
@@ -23,9 +23,7 @@ interface iLayer
///
/// Previous layer's values
/// Whether the layer is the output layer
- void Backprop(double[] input, bool output);
- void CalcError(iLayer output);
- void CalcError(double correct);
+ void Backprop(double[] input, iLayer outputlayer, bool isoutput, int correct);
void Calculate(double[] input, bool output);
void Calculate(double[,] input, bool output);
}