This function computes the Direct Kernel PLSR model with the Residuals of a Cox-Model fitted with an intercept as the only explanatory variable as the response and Xplan as explanatory variables. Default behaviour uses the Deviance residuals.

coxDKpls2DR(Xplan, ...)

# S3 method for default
coxDKpls2DR(
  Xplan,
  time,
  time2,
  event,
  type,
  origin,
  typeres = "deviance",
  collapse,
  weighted,
  scaleX = TRUE,
  scaleY = TRUE,
  ncomp = min(7, ncol(Xplan)),
  methodpls = "kernelpls",
  validation = "CV",
  plot = FALSE,
  allres = FALSE,
  kernel = "rbfdot",
  hyperkernel,
  verbose = TRUE,
  ...
)

# S3 method for formula
coxDKpls2DR(
  Xplan,
  time,
  time2,
  event,
  type,
  origin,
  typeres = "deviance",
  collapse,
  weighted,
  scaleX = TRUE,
  scaleY = TRUE,
  ncomp = min(7, ncol(Xplan)),
  methodpls = "kernelpls",
  validation = "CV",
  plot = FALSE,
  allres = FALSE,
  dataXplan = NULL,
  subset,
  weights,
  model_frame = FALSE,
  kernel = "rbfdot",
  hyperkernel,
  verbose = TRUE,
  model_matrix = FALSE,
  contrasts.arg,
  ...
)

Arguments

Xplan

a formula or a matrix with the eXplanatory variables (training) dataset

...

Arguments to be passed on to survival::coxph.

time

for right censored data, this is the follow up time. For interval data, the first argument is the starting time for the interval.

time2

The status indicator, normally 0=alive, 1=dead. Other choices are TRUE/FALSE (TRUE = death) or 1/2 (2=death). For interval censored data, the status indicator is 0=right censored, 1=event at time, 2=left censored, 3=interval censored. Although unusual, the event indicator can be omitted, in which case all subjects are assumed to have an event.

event

ending time of the interval for interval censored or counting process data only. Intervals are assumed to be open on the left and closed on the right, (start, end]. For counting process data, event indicates whether an event occurred at the end of the interval.

type

character string specifying the type of censoring. Possible values are "right", "left", "counting", "interval", or "interval2". The default is "right" or "counting" depending on whether the time2 argument is absent or present, respectively.

origin

for counting process data, the hazard function origin. This option was intended to be used in conjunction with a model containing time dependent strata in order to align the subjects properly when they cross over from one strata to another, but it has rarely proven useful.

typeres

character string indicating the type of residual desired. Possible values are "martingale", "deviance", "score", "schoenfeld", "dfbeta", "dfbetas", and "scaledsch". Only enough of the string to determine a unique match is required.

collapse

vector indicating which rows to collapse (sum) over. In time-dependent models more than one row data can pertain to a single individual. If there were 4 individuals represented by 3, 1, 2 and 4 rows of data respectively, then collapse=c(1,1,1,2,3,3,4,4,4,4) could be used to obtain per subject rather than per observation residuals.

weighted

if TRUE and the model was fit with case weights, then the weighted residuals are returned.

scaleX

Should the Xplan columns be standardized ?

scaleY

Should the time values be standardized ?

ncomp

The number of components to include in the model. The number of components to fit is specified with the argument ncomp. It this is not supplied, the maximal number of components is used (taking account of any cross-validation).

methodpls

The multivariate regression method to be used. See mvrCv for details.

validation

character. What kind of (internal) validation to use. If validation = "CV", cross-validation is performed. The number and type of cross-validation segments are specified with the arguments segments and segment.type. See mvrCv for details. If validation = "LOO", leave-one-out cross-validation is performed. It is an error to specify the segments when validation = "LOO" is specified.

plot

Should the survival function be plotted ?)

allres

FALSE to return only the Cox model and TRUE for additionnal results. See details. Defaults to FALSE.

kernel

the kernel function used in training and predicting. This parameter can be set to any function, of class kernel, which computes the inner product in feature space between two vector arguments (see kernels). The kernlab package provides the most popular kernel functions which can be used by setting the kernel parameter to the following strings:

list("rbfdot")

Radial Basis kernel "Gaussian"

list("polydot")

Polynomial kernel

list("vanilladot")

Linear kernel

list("tanhdot")

Hyperbolic tangent kernel

list("laplacedot")

Laplacian kernel

list("besseldot")

Bessel kernel

list("anovadot")

ANOVA RBF kernel

list("splinedot")

Spline kernel

hyperkernel

the list of hyper-parameters (kernel parameters). This is a list which contains the parameters to be used with the kernel function. For valid parameters for existing kernels are :

  • sigma, inverse kernel width for the Radial Basis kernel function "rbfdot" and the Laplacian kernel "laplacedot".

  • degree, scale, offset for the Polynomial kernel "polydot".

  • scale, offset for the Hyperbolic tangent kernel function "tanhdot".

  • sigma, order, degree for the Bessel kernel "besseldot".

  • sigma, degree for the ANOVA kernel "anovadot".

In the case of a Radial Basis kernel function (Gaussian) or Laplacian kernel, if hyperkernel is missing, the heuristics in sigest are used to calculate a good sigma value from the data.

verbose

Should some details be displayed ?

dataXplan

an optional data frame, list or environment (or object coercible by as.data.frame to a data frame) containing the variables in the model. If not found in dataXplan, the variables are taken from environment(Xplan), typically the environment from which coxDKpls2DR is called.

subset

an optional vector specifying a subset of observations to be used in the fitting process.

weights

an optional vector of 'prior weights' to be used in the fitting process. Should be NULL or a numeric vector.

model_frame

If TRUE, the model frame is returned.

model_matrix

If TRUE, the model matrix is returned.

contrasts.arg

a list, whose entries are values (numeric matrices, functions or character strings naming functions) to be used as replacement values for the contrasts replacement function and whose names are the names of columns of data containing factors.

Value

If allres=FALSE :

cox_DKpls2DR

Final Cox-model.

If allres=TRUE :

tt_DKpls2DR

PLSR components.

cox_DKpls2DR

Final Cox-model.

DKpls2DR_mod

The PLSR model.

Details

If allres=FALSE returns only the final Cox-model. If allres=TRUE returns a list with the PLS components, the final Cox-model and the PLSR model. allres=TRUE is useful for evluating model prediction accuracy on a test sample.

References

plsRcox, Cox-Models in a high dimensional setting in R, Frederic Bertrand, Philippe Bastien, Nicolas Meyer and Myriam Maumy-Bertrand (2014). Proceedings of User2014!, Los Angeles, page 152.

Deviance residuals-based sparse PLS and sparse kernel PLS regression for censored data, Philippe Bastien, Frederic Bertrand, Nicolas Meyer and Myriam Maumy-Bertrand (2015), Bioinformatics, 31(3):397-404, doi:10.1093/bioinformatics/btu660.

See also

Examples


data(micro.censure)
data(Xmicro.censure_compl_imp)

X_train_micro <- apply((as.matrix(Xmicro.censure_compl_imp)),FUN="as.numeric",MARGIN=2)[1:80,]
X_train_micro_df <- data.frame(X_train_micro)
Y_train_micro <- micro.censure$survyear[1:80]
C_train_micro <- micro.censure$DC[1:80]

(cox_DKpls2DR_fit=coxDKpls2DR(X_train_micro,Y_train_micro,C_train_micro,ncomp=6,validation="CV"))
#> Kernel :  rbfdot 
#> Estimated_sigma  0.01178044 
#> Call:
#> coxph(formula = YCsurv ~ ., data = tt_DKpls2DR)
#> 
#>             coef exp(coef)  se(coef)     z       p
#> Comp.1 2.872e+00 1.767e+01 1.102e+00 2.606 0.00916
#> Comp.2 7.802e+00 2.444e+03 2.519e+00 3.097 0.00196
#> Comp.3 5.216e+00 1.843e+02 1.811e+00 2.881 0.00397
#> Comp.4 1.519e+01 3.965e+06 4.972e+00 3.056 0.00224
#> Comp.5 3.670e+00 3.926e+01 1.994e+00 1.840 0.06572
#> Comp.6 1.042e+01 3.348e+04 4.092e+00 2.546 0.01089
#> 
#> Likelihood ratio test=65.31  on 6 df, p=3.727e-12
#> n= 80, number of events= 17 

#Fixing sigma to compare with pls2DR on Gram matrix; should be identical
(cox_DKpls2DR_fit=coxDKpls2DR(X_train_micro,Y_train_micro,C_train_micro,ncomp=6,
validation="CV",hyperkernel=list(sigma=0.01292786)))
#> Kernel :  rbfdot 
#> Used_sigma  0.01292786 
#> Call:
#> coxph(formula = YCsurv ~ ., data = tt_DKpls2DR)
#> 
#>             coef exp(coef)  se(coef)     z       p
#> Comp.1 3.014e+00 2.036e+01 1.148e+00 2.626 0.00864
#> Comp.2 8.946e+00 7.675e+03 2.874e+00 3.113 0.00185
#> Comp.3 6.488e+00 6.570e+02 2.289e+00 2.834 0.00460
#> Comp.4 1.746e+01 3.844e+07 5.722e+00 3.052 0.00227
#> Comp.5 4.090e+00 5.976e+01 2.119e+00 1.931 0.05354
#> Comp.6 1.096e+01 5.746e+04 4.048e+00 2.707 0.00678
#> 
#> Likelihood ratio test=69.03  on 6 df, p=6.472e-13
#> n= 80, number of events= 17 

X_train_micro_kern <- kernlab::kernelMatrix(kernlab::rbfdot(sigma=0.01292786),scale(X_train_micro))
(cox_DKpls2DR_fit2=coxpls2DR(~X_train_micro_kern,Y_train_micro,C_train_micro,ncomp=6,
validation="CV",scaleX=FALSE))
#> Error in model.matrix(mt0, mf0, , contrasts.arg = contrasts.arg): argument "contrasts.arg" is missing, with no default

(cox_DKpls2DR_fit=coxDKpls2DR(X_train_micro,Y_train_micro,C_train_micro,ncomp=6,
validation="CV",kernel="laplacedot",hyperkernel=list(sigma=0.01292786)))
#> Kernel :  laplacedot 
#> Used_sigma  0.01292786 
#> Call:
#> coxph(formula = YCsurv ~ ., data = tt_DKpls2DR)
#> 
#>              coef  exp(coef)   se(coef)     z      p
#> Comp.1  1.328e+02  4.670e+57  5.955e+01 2.230 0.0258
#> Comp.2  2.682e+02 3.000e+116  1.174e+02 2.284 0.0224
#> Comp.3  2.575e+02 7.031e+111  1.147e+02 2.246 0.0247
#> Comp.4  5.287e+02 4.007e+229  2.318e+02 2.281 0.0225
#> Comp.5  1.660e+02  1.198e+72  7.378e+01 2.250 0.0245
#> Comp.6  2.151e+02  2.503e+93  1.010e+02 2.130 0.0332
#> 
#> Likelihood ratio test=95.09  on 6 df, p=< 2.2e-16
#> n= 80, number of events= 17 

X_train_micro_kern <- kernlab::kernelMatrix(kernlab::laplacedot(sigma=0.01292786),
scale(X_train_micro))
(cox_DKpls2DR_fit2=coxpls2DR(~X_train_micro_kern,Y_train_micro,C_train_micro,ncomp=6,
validation="CV",scaleX=FALSE))
#> Error in model.matrix(mt0, mf0, , contrasts.arg = contrasts.arg): argument "contrasts.arg" is missing, with no default

(cox_DKpls2DR_fit=coxDKpls2DR(~X_train_micro,Y_train_micro,C_train_micro,ncomp=6,validation="CV"))
#> Error in model.matrix(mt0, mf0, , contrasts.arg = contrasts.arg): argument "contrasts.arg" is missing, with no default
(cox_DKpls2DR_fit=coxDKpls2DR(~.,Y_train_micro,C_train_micro,ncomp=6,validation="CV",
dataXplan=X_train_micro_df))
#> Error in model.matrix(mt0, mf0, , contrasts.arg = contrasts.arg): argument "contrasts.arg" is missing, with no default

(cox_DKpls2DR_fit=coxDKpls2DR(X_train_micro,Y_train_micro,C_train_micro,ncomp=6,
validation="CV",allres=TRUE))
#> Kernel :  rbfdot 
#> Estimated_sigma  0.01225667 
#> $tt_DKpls2DR
#>          Comp.1        Comp.2       Comp.3       Comp.4       Comp.5
#> 1  -0.055670703 -5.001190e-01 -0.199549167  0.086881495 -0.185311437
#> 2   0.096910973 -1.019416e-01  0.352115285 -0.278253325 -0.246492052
#> 3   0.292765559 -4.955896e-03  0.123426882 -0.018834364 -0.062395855
#> 4   0.026809951  4.190386e-02  0.064125583 -0.157142696 -0.005491528
#> 5   0.440991321 -7.693857e-02 -0.362689546  0.062262381 -0.145162116
#> 6  -0.130098939  7.208192e-02 -0.329291734 -0.224580834 -0.346308463
#> 7  -0.259629287  1.686702e-01 -0.165392286  0.075287156 -0.092086097
#> 8   0.547439571  1.946930e-01 -0.238652286  0.021254817  0.211672290
#> 9   0.036710441 -2.500111e-01  0.244933481 -0.107542270 -0.188056500
#> 10  0.109242258 -3.308583e-02  0.137282082 -0.181284029 -0.210400787
#> 11  0.208084326  2.434761e-01 -0.266806208  0.251554288  0.310731286
#> 12 -0.493963554  9.257084e-02 -0.192435506  0.245165333  0.277027785
#> 13  0.270996087 -2.999012e-01 -0.080194622 -0.118256139  0.240399808
#> 14 -0.349922772  1.936317e-01 -0.178839685 -0.202344621 -0.174577446
#> 15  0.139520596 -3.534579e-01  0.174421352  0.197080782  0.216153646
#> 16  0.328332542 -1.700691e-01 -0.158628526  0.109649758 -0.262931931
#> 17 -0.390109655 -2.705821e-02  0.038960270  0.008438613  0.167484761
#> 18 -0.281552878 -2.854530e-01 -0.031187866  0.142051134 -0.067298087
#> 19  0.015259720  7.097264e-02  0.139831078 -0.100503977  0.335933898
#> 20 -0.430788177  1.712268e-01 -0.170237734 -0.147407466 -0.059454612
#> 21 -0.113047866 -1.255776e-01  0.169974441  0.149083750 -0.368319059
#> 22  0.012393103 -2.397416e-01 -0.127242443  0.172919644 -0.032389738
#> 23  0.123384452 -3.614915e-02  0.243207536 -0.061170212  0.024905494
#> 24  0.129713666  2.920882e-01 -0.238669586 -0.120479086 -0.350981388
#> 25 -0.536014801 -1.191097e-01 -0.247958034  0.106701488 -0.049942797
#> 26 -0.436788814  2.635490e-01 -0.106709787 -0.086128284 -0.056167589
#> 27  0.363538760  2.163896e-03 -0.105815799 -0.071856013  0.049362889
#> 28  0.385694934 -4.995923e-02 -0.165823798  0.001383943 -0.232930495
#> 29 -0.300845850  1.883618e-01  0.339707556  0.020814032 -0.258572601
#> 30 -0.389738287  1.918516e-01 -0.108495489  0.003099092 -0.190029334
#> 31  0.277823309  8.941224e-02  0.337317375  0.343313488  0.006320499
#> 32 -0.332454565 -1.009426e-01 -0.020547452  0.058485773 -0.012948155
#> 33 -0.308827186 -2.380316e-01  0.412177402 -0.017518329 -0.065144140
#> 34 -0.159081933  1.520808e-01 -0.024009976 -0.152038328  0.397719157
#> 35  0.421648524 -2.755800e-02 -0.241222528  0.087073351  0.111323830
#> 36 -0.080578909 -1.870921e-02 -0.001923906 -0.024482296  0.360578327
#> 37  0.258308103  4.120398e-01 -0.024369458  0.170768707 -0.159060028
#> 38 -0.275793923  1.654762e-01  0.044945082  0.183113285 -0.149265309
#> 39 -0.440445120  1.328482e-01  0.086512048  0.050455102 -0.398844932
#> 40  0.145702482 -7.986301e-02  0.131651732  0.276386367 -0.245198975
#> 41 -0.120253121  1.058776e-01  0.228964942  0.017325781 -0.317536040
#> 42  0.453537697 -1.889206e-01 -0.242139618  0.060713369  0.047968413
#> 43 -0.468088129 -3.600261e-05  0.111080278  0.338627005  0.170607558
#> 44 -0.069700521 -2.837786e-02  0.217664982 -0.074614473 -0.634914194
#> 45 -0.324775792  1.691685e-01  0.106372446 -0.142610426 -0.024773453
#> 46  0.143132669  6.706875e-02 -0.537749970  0.025342030 -0.191186854
#> 47  0.004760992 -1.219538e-01 -0.125908008 -0.241473807 -0.316174061
#> 48  0.218265492 -1.919177e-02 -0.126409215 -0.346662583 -0.232504755
#> 49  0.420562179 -7.601560e-02 -0.207243741  0.071110421 -0.152208916
#> 50  0.047802841 -1.004434e-01  0.016697837 -0.062794749  0.354348820
#> 51 -0.132560113 -2.549378e-01  0.153025967 -0.017397908  0.378433781
#> 52  0.607565491 -1.752889e-01  0.189869726 -0.130513651 -0.178568949
#> 53  0.164179796 -2.226422e-01  0.314257258  0.034964269 -0.241974136
#> 54  0.144553816  4.838452e-01  0.408237829  0.079007111  0.066978529
#> 55  0.443572034  3.048235e-01  0.504102452  0.104879010 -0.052953574
#> 56 -0.288767115 -2.881719e-01  0.075509586  0.184390325  0.115870953
#> 57 -0.480642637 -2.967916e-01  0.075348470  0.105583409  0.217575385
#> 58 -0.196722093  3.880195e-01  0.308660751 -0.083917411  0.011293264
#> 59 -0.264049605  2.739597e-01 -0.284096805  0.099835754 -0.221765816
#> 60 -0.353218240  6.537290e-02 -0.156345286  0.059306814  0.265978466
#> 61  0.106200953  3.507324e-01 -0.068432532 -0.161131759  0.232214301
#> 62  0.196030322 -1.997288e-01  0.234026128 -0.025909388  0.420125254
#> 63  0.701483766  2.484298e-01  0.084391837  0.287300561  0.178293011
#> 64  0.340395875 -3.646363e-01 -0.096518053 -0.258402522 -0.164809478
#> 65  0.412528171  7.870374e-02  0.344458286 -0.103128504  0.176289352
#> 66 -0.071291399  6.385732e-02 -0.007974657 -0.182469003  0.247056546
#> 67 -0.371364162 -2.504757e-01 -0.292352861 -0.036722863  0.200722715
#> 68  0.048947534 -5.352239e-02 -0.113801846  0.151495111  0.117741457
#> 69  0.257922340  1.386482e-01  0.109346670 -0.001631214  0.335408719
#> 70 -0.193797764 -2.377655e-02 -0.100305492 -0.038321626  0.036502227
#> 71 -0.027919314  2.701561e-02 -0.031731163  0.216483402 -0.127465442
#> 72  0.066003239  3.264649e-01 -0.002165053  0.045874482  0.059520937
#> 73  0.258569511 -2.060115e-02  0.082834096 -0.253137433  0.300180181
#> 74 -0.219601438 -7.895998e-02 -0.050684000 -0.181170502  0.183408409
#> 75  0.413753255 -1.123860e-01 -0.030956330 -0.084493851  0.069561735
#> 76  0.409038122  9.525405e-02 -0.473435891  0.134590123 -0.001244937
#> 77 -0.233625422 -7.957008e-02  0.021701754 -0.274582612  0.319964973
#> 78 -0.139250099 -1.383748e-01 -0.018864399  0.022118250  0.186776939
#> 79 -0.378359315  1.543780e-01 -0.052524032 -0.254198144  0.316385319
#> 80 -0.390737272 -2.472824e-01  0.179191894  0.162935696 -0.244978855
#>          Comp.6
#> 1  -0.093508581
#> 2   0.069872997
#> 3  -0.155604310
#> 4  -0.096450060
#> 5  -0.073126560
#> 6   0.126675832
#> 7  -0.108981069
#> 8   0.090475256
#> 9  -0.030773481
#> 10 -0.017349793
#> 11  0.324469047
#> 12  0.052217390
#> 13  0.060678455
#> 14  0.001191161
#> 15 -0.122485022
#> 16  0.154495089
#> 17  0.208047010
#> 18  0.189656955
#> 19 -0.153112149
#> 20  0.060337972
#> 21 -0.023424012
#> 22  0.183943228
#> 23 -0.205921063
#> 24 -0.184267072
#> 25  0.041877352
#> 26  0.040527332
#> 27 -0.076091156
#> 28 -0.325217802
#> 29 -0.045631676
#> 30  0.044842383
#> 31  0.003873042
#> 32  0.048261294
#> 33 -0.026653031
#> 34 -0.017384089
#> 35  0.197668476
#> 36 -0.177943975
#> 37 -0.022594999
#> 38 -0.073933558
#> 39  0.148481563
#> 40 -0.085995735
#> 41 -0.125375202
#> 42 -0.185773436
#> 43  0.075374820
#> 44 -0.070161759
#> 45  0.248108283
#> 46 -0.034204065
#> 47 -0.012950866
#> 48  0.182376717
#> 49  0.046765763
#> 50 -0.014084170
#> 51 -0.032432404
#> 52  0.137233784
#> 53 -0.206946413
#> 54  0.157371498
#> 55  0.100105217
#> 56 -0.075368574
#> 57 -0.023452375
#> 58  0.147991659
#> 59 -0.118945122
#> 60 -0.239930007
#> 61 -0.253183849
#> 62 -0.021302130
#> 63  0.055606323
#> 64  0.205005166
#> 65  0.137666464
#> 66 -0.137622131
#> 67  0.021543898
#> 68  0.059474416
#> 69 -0.016183224
#> 70  0.049734865
#> 71 -0.199326629
#> 72 -0.117826795
#> 73  0.136200928
#> 74  0.071938698
#> 75  0.096340433
#> 76  0.038395862
#> 77 -0.123706326
#> 78 -0.021607028
#> 79 -0.042357643
#> 80  0.174362713
#> 
#> $cox_DKpls2DR
#> Call:
#> coxph(formula = YCsurv ~ ., data = tt_DKpls2DR)
#> 
#>             coef exp(coef)  se(coef)     z       p
#> Comp.1 2.905e+00 1.826e+01 1.113e+00 2.609 0.00908
#> Comp.2 8.232e+00 3.760e+03 2.645e+00 3.113 0.00185
#> Comp.3 5.687e+00 2.951e+02 1.981e+00 2.871 0.00409
#> Comp.4 1.612e+01 1.004e+07 5.267e+00 3.061 0.00221
#> Comp.5 3.837e+00 4.639e+01 2.043e+00 1.878 0.06033
#> Comp.6 1.068e+01 4.343e+04 4.067e+00 2.626 0.00864
#> 
#> Likelihood ratio test=66.85  on 6 df, p=1.807e-12
#> n= 80, number of events= 17 
#> 
#> $DKpls2DR_mod
#> Partial least squares regression , fitted with the kernel algorithm.
#> Cross-validated using 10 random segments.
#> Call:
#> plsr(formula = DR_coxph ~ ., ncomp = 6, data = new("kernelMatrix",     .Data = structure(c(1, 0.331027770430139, 0.441017481013547,     0.322633078445593, 0.530277608438971, 0.268430689504521,     0.402344669678313, 0.300825877430602, 0.511993824834656,     0.402557441283781, 0.353801173678485, 0.332106395724337,     0.299200186307347, 0.294440829033579, 0.510125491372311,     0.44618965342672, 0.273802958722685, 0.558299749502181, 0.332774677496374,     0.383935381267634, 0.47910542196087, 0.384619725441338, 0.305095615919302,     0.361274886738264, 0.352105886592268, 0.33567078205559, 0.231493507484785,     0.342548038014003, 0.309492276906572, 0.284432700242046,     0.415972769557452, 0.287005646014808, 0.370198317494659,     0.306067969315977, 0.366630998522083, 0.381449170776328,     0.346302710457366, 0.338892629495535, 0.349402909034886,     0.41321188404385, 0.27562864805546, 0.445113179361851, 0.354100140445193,     0.374742531193321, 0.314721099475238, 0.319275879884923,     0.468605025148932, 0.275168852234961, 0.440176297565083,     0.411838281203822, 0.420318168924518, 0.326116538421565,     0.492597489183583, 0.284993683226818, 0.351322719664274,     0.539604573374858, 0.518048239226765, 0.279226054558558,     0.386531523891434, 0.31119174484913, 0.254316215754273, 0.370891973560452,     0.287096639297258, 0.43397214164055, 0.40967588227666, 0.368409025913358,     0.384570337891502, 0.461683868547648, 0.465779320415054,     0.327538007678787, 0.35947489210124, 0.314346006805577, 0.298921789471833,     0.343076229916464, 0.391141919780731, 0.374803585046327,     0.270290182841048, 0.354621175981284, 0.272103890379817,     0.411476903802006, 0.331027770430139, 1, 0.511383525745394,     0.463594204462985, 0.328988867318923, 0.265926626823283,     0.298789524181184, 0.30240207044545, 0.474704140753685, 0.572374958215893,     0.193448245474484, 0.25827940856627, 0.379611884448205, 0.368581834831077,     0.370773311634279, 0.359824209439855, 0.35526717338933, 0.35988933780256,     0.367869727446468, 0.30506819259311, 0.476778397448414, 0.33667809035955,     0.452746059578913, 0.31974595182486, 0.253901843695459, 0.277352792227714,     0.280469069298394, 0.253690566459724, 0.400370153497853,     0.330815352449112, 0.438847454267895, 0.446052174130999,     0.505110718637475, 0.300107449655193, 0.235661193078848,     0.350133275717923, 0.281892850634102, 0.282901776532826,     0.354222701561, 0.371905516758958, 0.436337327021913, 0.253441521703603,     0.34952770127409, 0.447988088318429, 0.349332198792821, 0.221676504499138,     0.440748039178, 0.411200592162665, 0.314117320859563, 0.377215273825263,     0.443228959113693, 0.5292214641278, 0.415428441260639, 0.479311593664136,     0.525194670105282, 0.340375451986088, 0.394786428129171,     0.483045153606992, 0.238889943152848, 0.268093331892879,     0.310478303127039, 0.458548177770461, 0.273718396504909,     0.522119258004252, 0.522371110891469, 0.37156698352464, 0.331122724570433,     0.308354611891084, 0.443269072609031, 0.304497227437223,     0.356186201408988, 0.246672946807969, 0.399374375303164,     0.490563178979969, 0.451499745317075, 0.237142321479929,     0.415168700740002, 0.415948305269755, 0.380362040942608,     0.438256273553845, 0.441017481013547, 0.511383525745394,     1, 0.407507617583966, 0.49525355965405, 0.299439456424359,     0.342910929055457, 0.504194323318475, 0.464259907325015,     0.411119864095219, 0.283494277524802, 0.376462168325355,     0.37903353066091, 0.40527614238954, 0.436223631035291, 0.370165076237326,     0.305936304937063, 0.382266611233519, 0.447618295618557,     0.362679442487201, 0.438931600208343, 0.42125466872928, 0.493578465096747,     0.441088338067408, 0.404893913740347, 0.355067079123645,     0.326247799061532, 0.483720693850331, 0.389549195493502,     0.292114516838907, 0.546569699868135, 0.335032396837575,     0.377556807000924, 0.334204790136989, 0.302871432938645,     0.453517826502912, 0.433037689161269, 0.346085122043306,     0.306696792984607, 0.498064446444386, 0.349723690464106,     0.417150484194643, 0.360950035167167, 0.411833881407547,     0.345556465135609, 0.372131291354973, 0.505829332692671,     0.326671604912396, 0.352148408679815, 0.344771023498971,     0.367833925264066, 0.499276838661037, 0.41056805631188, 0.415891077915214,     0.517320655013493, 0.384493314080831, 0.362799547050396,     0.305426284050877, 0.327384009820995, 0.382255249902098,     0.429488136012502, 0.4228434844545, 0.471259982389482, 0.490705564191068,     0.477729525548367, 0.599411928330124, 0.490125455960313,     0.415949322132616, 0.527989063543064, 0.339189129306935,     0.361763505538409, 0.402220246440125, 0.375233923544586,     0.467207624157275, 0.468309643378041, 0.359633347527966,     0.402492537436455, 0.540154481265163, 0.375337907289887,     0.374271517584741, 0.322633078445593, 0.463594204462985,     0.407507617583966, 1, 0.386879485879339, 0.312460244069054,     0.424484867444712, 0.393986709295945, 0.373930173076563,     0.372925246770535, 0.296427838161706, 0.368721879556151,     0.296511098893387, 0.326692092018297, 0.381327352859154,     0.318454507403774, 0.313671106124219, 0.374845752891998,     0.440441571445526, 0.321938535120766, 0.404873365626289,     0.244844504718843, 0.398779252998756, 0.409829896404369,     0.268076565021159, 0.413486290677332, 0.309854860157672,     0.310225922002843, 0.307268654224817, 0.361823650117053,     0.311514817430568, 0.449339271234477, 0.362287707613588,     0.369124155237077, 0.298699935991411, 0.366641135171616,     0.344173146623062, 0.321502115598598, 0.266358187857144,     0.358139046847662, 0.525351108363716, 0.359639104257709,     0.405544840305818, 0.324491690085723, 0.337918470366693,     0.353506365557271, 0.406730458780709, 0.515673105980981,     0.303739686609177, 0.453631114158723, 0.576433079224612,     0.320483155476056, 0.325568246911218, 0.484552428308564,     0.460046811581744, 0.494771336521055, 0.385137346781347,     0.392366106995177, 0.367692186063551, 0.375555923689399,     0.414911450768174, 0.449882636460958, 0.381397586986246,     0.38240867687876, 0.507669744124442, 0.3976310401524, 0.43675020823548,     0.329619618167902, 0.426600988465129, 0.397390016665107,     0.494259313794908, 0.300237589591623, 0.356065884413039,     0.545300347008998, 0.365916054905633, 0.341797566356997,     0.479812725399419, 0.359642254760471, 0.406262803348289,     0.32496810466518, 0.530277608438971, 0.328988867318923, 0.49525355965405,     0.386879485879339, 1, 0.409836811051666, 0.369542457560192,     0.465621265962064, 0.344660965170937, 0.37492830166205, 0.400788151565311,     0.369715307737124, 0.360872618375835, 0.393485459208765,     0.352234956269643, 0.609707205943998, 0.304000912579353,     0.425566235810533, 0.392295786938097, 0.327188432984388,     0.441367535949358, 0.469696619385726, 0.328049960104713,     0.44596373398531, 0.363712488804337, 0.308258150121378, 0.353369126837725,     0.387760653666301, 0.272591587157388, 0.368590450471236,     0.457773299406744, 0.319798544919199, 0.260153273038179,     0.309369612898068, 0.442842163315647, 0.413614199743558,     0.521188938067236, 0.296008561975181, 0.323940515320982,     0.47070216152078, 0.299754468509879, 0.475062286457933, 0.392077290755861,     0.308552662257311, 0.253347797140881, 0.610643901771935,     0.474337402902826, 0.356234462587676, 0.587994597202802,     0.371141701249292, 0.370524028202691, 0.411036325245667,     0.324029774690403, 0.437807913708281, 0.462325024207163,     0.344877340754677, 0.362829145400469, 0.331445807088986,     0.396777960247772, 0.384925286269241, 0.353804960028931,     0.391340205622521, 0.416092140279557, 0.543073912100211,     0.367894829897913, 0.360183787587976, 0.352228855095833,     0.472416509917507, 0.575809644482948, 0.316777753751225,     0.442180042818918, 0.37599183886368, 0.3424120384053, 0.406478598189997,     0.469885696646875, 0.719832088254153, 0.302173184331479,     0.404116226737222, 0.304000497050391, 0.330630087524404,     0.268430689504521, 0.265926626823283, 0.299439456424359,     0.312460244069054, 0.409836811051666, 1, 0.338569070801897,     0.379010976481829, 0.344868435167714, 0.279463340037408,     0.406908943883754, 0.443876887960752, 0.358954724291915,     0.518883458885531, 0.260366217182467, 0.405336334306162,     0.39876500224612, 0.417879091936243, 0.320948074511229, 0.401817132626858,     0.325824169498909, 0.419235083368561, 0.322095435952688,     0.367102266450033, 0.531356033502905, 0.460025494093814,     0.428563336344988, 0.319682996433772, 0.443007301861903,     0.405495713603829, 0.334440787765778, 0.287378764296922,     0.383445757336681, 0.334632401085115, 0.405894247240108,     0.33572203830314, 0.385666262630182, 0.482976180776976, 0.528114015812326,     0.382602450353593, 0.401253657086464, 0.319473182626991,     0.351843142228657, 0.463412595200713, 0.412285027826057,     0.548987208681495, 0.35617250331797, 0.430963008240442, 0.477887501791495,     0.276475955255443, 0.303756225998486, 0.331214652657574,     0.357974346074065, 0.428924886745896, 0.33661960355041, 0.282812363841115,     0.296417104842061, 0.483779159602507, 0.403128822827149,     0.464241210011649, 0.321286824867829, 0.315196923804381,     0.304445037002189, 0.361569524748941, 0.327393795957064,     0.322771525787435, 0.284364617314733, 0.285223235838423,     0.259292975563137, 0.462010422103298, 0.327058275675807,     0.376360417974815, 0.411067896230931, 0.328852167279886,     0.379114495838251, 0.395504786748987, 0.401204914330021,     0.326599352729205, 0.366110729410289, 0.434973242247283,     0.402344669678313, 0.298789524181184, 0.342910929055457,     0.424484867444712, 0.369542457560192, 0.338569070801897,     1, 0.37680409945663, 0.395675547383487, 0.308390985656766,     0.486667455878216, 0.458803271931605, 0.216613170499336,     0.402680716193566, 0.340785200792473, 0.274711507244211,     0.313948520887422, 0.356451985515999, 0.368803646952245,     0.557996518311034, 0.439188976284342, 0.344609593876826,     0.335115093002925, 0.42495220115758, 0.500999549330243, 0.482044786769002,     0.262661829885391, 0.321901615277448, 0.316904479626278,     0.454752179163213, 0.350510700406055, 0.392373863626272,     0.268975204925227, 0.310746162238569, 0.228116143267427,     0.345399045518546, 0.38289259240638, 0.341030709725559, 0.457909936054477,     0.342362518757933, 0.407672109929216, 0.350184090386249,     0.389587749152396, 0.325416016668271, 0.429815867345687,     0.369677780407956, 0.404071703849155, 0.329855464276744,     0.320369830841351, 0.415030881394498, 0.345770508586537,     0.225101337995788, 0.319399355273752, 0.33546904468916, 0.317951716373332,     0.435552988213723, 0.375411232875351, 0.414707515817254,     0.594254451492258, 0.47811085955349, 0.47001953219957, 0.31023912344604,     0.350759772396658, 0.243831326057958, 0.355691498556481,     0.369064419792001, 0.397897316315452, 0.507452069412368,     0.481907670512669, 0.41430915657529, 0.437084003159565, 0.349760567961165,     0.276425603903831, 0.343839552309318, 0.311487083056878,     0.356749943090539, 0.374613742849185, 0.277497767424736,     0.378140590733028, 0.376305931460566, 0.300825877430602,     0.30240207044545, 0.504194323318475, 0.393986709295945, 0.465621265962064,     0.379010976481829, 0.37680409945663, 1, 0.311856192257752,     0.284272973416571, 0.478312056300117, 0.341380860007386,     0.390486082459881, 0.363267482828654, 0.38122842672745, 0.405498350203323,     0.274465773883652, 0.355166669336562, 0.360063807031317,     0.367643195798699, 0.275430668687151, 0.391483259680948,     0.368011557645588, 0.439662093051215, 0.370404470752825,     0.313663801088687, 0.381050230201674, 0.463972158401048,     0.226876878218621, 0.252613556343918, 0.340228164257098,     0.295864442876575, 0.239509829167427, 0.412134736050528,     0.397527243889061, 0.418412334354589, 0.38744781232155, 0.294980593551686,     0.222333814907404, 0.388588955199703, 0.336624389709106,     0.570025946575476, 0.296831875970954, 0.259104396189838,     0.343346508613634, 0.512328867437681, 0.3597913246364, 0.397416949494448,     0.360667695739485, 0.376541589052998, 0.34101872822172, 0.402976772774062,     0.323072705905642, 0.401935036559923, 0.385136253787169,     0.289803926832722, 0.275141932380817, 0.304654627391929,     0.404667900326529, 0.355785822830235, 0.474273552380606,     0.353546998511795, 0.548832474979106, 0.372792011773145,     0.490638867641417, 0.445146477321064, 0.395333416266961,     0.420636857737076, 0.480185106308731, 0.468151064759586,     0.334636224924518, 0.454724091668981, 0.375708137864692,     0.373230260428356, 0.568889814735508, 0.478442701085163,     0.373660779319315, 0.408886938895261, 0.376182984090773,     0.275732873058557, 0.511993824834656, 0.474704140753685,     0.464259907325015, 0.373930173076563, 0.344660965170937,     0.344868435167714, 0.395675547383487, 0.311856192257752,     1, 0.319488907034463, 0.326018908026281, 0.284749985115721,     0.385965700929329, 0.337624150587629, 0.597756820062762,     0.412389670856133, 0.393550188849423, 0.478092423494988,     0.562740693527066, 0.459658691997625, 0.374257142208551,     0.393139685400079, 0.373543533110253, 0.333349052910852,     0.375606437251128, 0.335338578527259, 0.332116080379577,     0.404797116415417, 0.491513636962021, 0.275123877732953,     0.392681708662176, 0.232706483952263, 0.527541454516535,     0.355634040670056, 0.25589926831072, 0.347870809245576, 0.381460244525696,     0.375868315855152, 0.428297378910694, 0.480983236304231,     0.437622646382516, 0.348112956523377, 0.278189123852046,     0.47657370289571, 0.586520323109763, 0.233118881565033, 0.481554528315806,     0.411026900473635, 0.376798441031134, 0.360538913350434,     0.463999447780785, 0.502385002714462, 0.73122443783871, 0.286415918345937,     0.432762858889789, 0.396010663453984, 0.415754829811407,     0.345982708925755, 0.256158376523715, 0.292154351300706,     0.343683835006528, 0.44795494689873, 0.385361081194036, 0.455060108659449,     0.561499249000616, 0.412402297424514, 0.370074775928341,     0.511223872093953, 0.44432380179208, 0.398860978690252, 0.27906000329211,     0.437697129856891, 0.401054600618665, 0.391838715039263,     0.499093972214454, 0.27073353280402, 0.373205038108014, 0.37425169962849,     0.346118990636923, 0.467063542939379, 0.402557441283781,     0.572374958215893, 0.411119864095219, 0.372925246770535,     0.37492830166205, 0.279463340037408, 0.308390985656766, 0.284272973416571,     0.319488907034463, 1, 0.245623780648412, 0.254905699073192,     0.339899219379602, 0.276308076195874, 0.330270989592562,     0.286287184987604, 0.248994718322751, 0.31456512858168, 0.284721374447022,     0.264491461261234, 0.535399883150695, 0.270975778174805,     0.419265315090718, 0.294681594729704, 0.242302276934642,     0.318899369030316, 0.272176973431551, 0.222365991770714,     0.298047277221546, 0.365739196482855, 0.337509331091852,     0.446311619958809, 0.414547659581927, 0.228752113569549,     0.305334137899207, 0.388445201729119, 0.289141368312962,     0.272539394479885, 0.333428535728592, 0.272723000835658,     0.288161683252571, 0.34220681479474, 0.401199725613888, 0.382346922249383,     0.241270343328315, 0.304238474992111, 0.425485603241679,     0.350709112610215, 0.378334717147083, 0.446116558367057,     0.432022146344737, 0.377634265131771, 0.322665523276127,     0.59728800380817, 0.439408663041135, 0.413995419078679, 0.360098879022421,     0.474136490862817, 0.357850811702635, 0.315607505039331,     0.309807859531412, 0.448009001422739, 0.207946132071598,     0.340534013640832, 0.405006175433509, 0.416753558710587,     0.269595279112533, 0.307666060600522, 0.434441920622334,     0.217769733682875, 0.366867933496914, 0.211119919516182,     0.421728520156186, 0.440342501591684, 0.306782138937694,     0.294494803569073, 0.333181245883842, 0.297721030985517,     0.308907067900529, 0.289032210411557, 0.353801173678485,     0.193448245474484, 0.283494277524802, 0.296427838161706,     0.400788151565311, 0.406908943883754, 0.486667455878216,     0.478312056300117, 0.326018908026281, 0.245623780648412,     1, 0.464281552147462, 0.382882544581301, 0.282746599931882,     0.372640803156573, 0.328053253860624, 0.33067650786444, 0.316079713326135,     0.330319135897941, 0.403052695687178, 0.254293223889108,     0.353531971555537, 0.262153912110596, 0.350095811510364,     0.32893685405256, 0.459095924087055, 0.4318227196441, 0.353304389487988,     0.29431705688734, 0.328006081490464, 0.299166528342908, 0.244277385448153,     0.237935116357937, 0.326883919883214, 0.334508360530216,     0.356473111536738, 0.387885089669873, 0.437255596331026,     0.358539572928497, 0.261394762530851, 0.283631251368523,     0.427032596274694, 0.345470884534849, 0.245772062062198,     0.409244199576061, 0.437622600411372, 0.354246679896905,     0.356872702108935, 0.483230925944606, 0.396367586949047,     0.333528600055771, 0.242789384491207, 0.284926963508125,     0.318667050468593, 0.226546099202032, 0.291109442463175,     0.278465323433659, 0.334731230893309, 0.458912637743551,     0.38582967464313, 0.413924508120311, 0.324766941894297, 0.355929206421163,     0.24854673870225, 0.356255376049337, 0.351466242618472, 0.304645730554281,     0.392914650115831, 0.364531320739357, 0.310609402813388,     0.380262719676913, 0.371765804723494, 0.407709103132866,     0.284965429686989, 0.325857139611013, 0.498469282562314,     0.276604986616108, 0.224492303505596, 0.314887463713355,     0.225330109971752, 0.332106395724337, 0.25827940856627, 0.376462168325355,     0.368721879556151, 0.369715307737124, 0.443876887960752,     0.458803271931605, 0.341380860007386, 0.284749985115721,     0.254905699073192, 0.464281552147462, 1, 0.382545107142308,     0.491108445013519, 0.360249649860024, 0.275829805276511,     0.549158964449605, 0.421510325625381, 0.367520818395495,     0.442063181739418, 0.298100424950257, 0.464059574569194,     0.367639574270302, 0.362069174704468, 0.597008402218373,     0.579667139528607, 0.437909389185412, 0.360252070795756,     0.429094694333835, 0.474656743292107, 0.407125641791131,     0.407494621064147, 0.313943213890097, 0.448325827928831,     0.307616877118051, 0.500786850712981, 0.391958055744632,     0.566385309141181, 0.453000227477582, 0.371625515449804,     0.383836187651848, 0.312023819837673, 0.535819388415119,     0.341472042064985, 0.420393325007786, 0.500790391440032,     0.343507206666107, 0.29578045140542, 0.389969716368005, 0.383231367786824,     0.370816640362337, 0.207360724624613, 0.307171347767888,     0.377011012081132, 0.261112249917718, 0.387975182139063,     0.364968184438283, 0.41043501848359, 0.536588844089966, 0.623577551503296,     0.428425677053257, 0.422530819953604, 0.317742182947181,     0.301396392649928, 0.265485765113821, 0.447395406506735,     0.538786581727079, 0.341652773634789, 0.323229326648304,     0.411995462357539, 0.487348887436544, 0.402815742535891,     0.342009726018063, 0.469007283080188, 0.287370624707531,     0.439186211996002, 0.444338023417146, 0.446120758146846,     0.504918015455471, 0.412771160259047, 0.299200186307347,     0.379611884448205, 0.37903353066091, 0.296511098893387, 0.360872618375835,     0.358954724291915, 0.216613170499336, 0.390486082459881,     0.385965700929329, 0.339899219379602, 0.382882544581301,     0.382545107142308, 1, 0.29887048881701, 0.54097011550362,     0.343878528634922, 0.491121702464439, 0.301326866194972,     0.435768306244276, 0.254587002844107, 0.264243948379066,     0.446066190527097, 0.450414297808124, 0.223437339446433,     0.310227347876148, 0.263985718130838, 0.693084043640919,     0.383229058328213, 0.336303425434193, 0.254302636306513,     0.379914633077451, 0.279098648735498, 0.460524354265304,     0.379628737757805, 0.396966459421798, 0.391227629384484,     0.286669256559976, 0.371261482679209, 0.275594060531012,     0.328695895800316, 0.306825525396332, 0.444960599795525,     0.377879976616456, 0.30199242533411, 0.347544399546969, 0.325116956738902,     0.343087553226269, 0.36601923031737, 0.50515251822318, 0.4079717374237,     0.484470964893851, 0.499926003815269, 0.450253517819809,     0.336392749380333, 0.319919695870201, 0.30360233289928, 0.319586037406405,     0.349213500798831, 0.237464614272215, 0.404372321287183,     0.353485369505127, 0.643604158523013, 0.33729166692978, 0.464944020313762,     0.373315421320309, 0.335397252015276, 0.357162281520941,     0.320434499237941, 0.362877926041869, 0.292858481656402,     0.322299939136056, 0.314660943098001, 0.631096562335086,     0.382209647223779, 0.479529220676269, 0.370438515104438,     0.467080253910584, 0.381418187388309, 0.381869416517046,     0.313545487737938, 0.294440829033579, 0.368581834831077,     0.40527614238954, 0.326692092018297, 0.393485459208765, 0.518883458885531,     0.402680716193566, 0.363267482828654, 0.337624150587629,     0.276308076195874, 0.282746599931882, 0.491108445013519,     0.29887048881701, 1, 0.232490867068971, 0.412004144935113,     0.44668815815952, 0.387739184678167, 0.363771149869433, 0.599653329452015,     0.397669826027927, 0.472983996152888, 0.375492201753775,     0.546943324880243, 0.557390642126526, 0.439174738580879,     0.289851513864659, 0.263617114400216, 0.39983545809135, 0.442979213532354,     0.41934371220704, 0.374559038957147, 0.360901611671962, 0.506131423471232,     0.286081753768829, 0.401501203985538, 0.470379221675386,     0.425405973545428, 0.507981535515012, 0.45890750127085, 0.375033026145701,     0.233515014592483, 0.421883231751214, 0.376617139345469,     0.429708717132849, 0.437878082268958, 0.362036454401059,     0.250405281759303, 0.35447673910858, 0.282957960020735, 0.264621146149739,     0.31408704531502, 0.295177764484398, 0.42345267650647, 0.434725619994072,     0.288555159247445, 0.403649952146545, 0.554412031178849,     0.439711413319469, 0.520355936525539, 0.400721476938507,     0.339916711831882, 0.297689487082634, 0.37534699240736, 0.329816506365632,     0.457898269830376, 0.456750638548985, 0.404686210845251,     0.424946603139474, 0.467729530999687, 0.299945640389573,     0.452583127180601, 0.382031061589368, 0.413596618054764,     0.454531171626993, 0.348614199814429, 0.500903381243444,     0.503349688079895, 0.597974623669332, 0.46380051442943, 0.510125491372311,     0.370773311634279, 0.436223631035291, 0.381327352859154,     0.352234956269643, 0.260366217182467, 0.340785200792473,     0.38122842672745, 0.597756820062762, 0.330270989592562, 0.372640803156573,     0.360249649860024, 0.54097011550362, 0.232490867068971, 1,     0.371470536186747, 0.375078961461588, 0.46519015037069, 0.50007136538603,     0.32331744981096, 0.341703767567846, 0.397063865335657, 0.426083302332267,     0.278208310552273, 0.358004642515331, 0.279566258801508,     0.413454807410304, 0.503936194888546, 0.393622384453792,     0.244271856433836, 0.430163470156169, 0.272883141895735,     0.442523532291808, 0.352297192130331, 0.316765102951813,     0.406301829252517, 0.323232553304642, 0.379264324814944,     0.265367380408217, 0.411911046672136, 0.396380841547403,     0.52954548186457, 0.363040923344196, 0.320439962164952, 0.40052335222816,     0.235703352438032, 0.39458705823297, 0.356521274853713, 0.332356835554697,     0.42384592856917, 0.562867483330317, 0.444243265347014, 0.622151929393807,     0.292069795178892, 0.333633450622671, 0.475162638525731,     0.411839184300612, 0.275089242880737, 0.277021794221197,     0.381058385198461, 0.36147056644664, 0.541511997814204, 0.442647992088478,     0.373496499235913, 0.465121344217777, 0.385011170443617,     0.410966282836474, 0.487856140128761, 0.417112105144014,     0.403702445013413, 0.340516247175485, 0.392927914662599,     0.414849000930016, 0.365198155011926, 0.42535419433912, 0.29608931933966,     0.39944698378205, 0.359705869567544, 0.325730336921877, 0.368181812723143,     0.44618965342672, 0.359824209439855, 0.370165076237326, 0.318454507403774,     0.609707205943998, 0.405336334306162, 0.274711507244211,     0.405498350203323, 0.412389670856133, 0.286287184987604,     0.328053253860624, 0.275829805276511, 0.343878528634922,     0.412004144935113, 0.371470536186747, 1, 0.366820626360274,     0.538883860767082, 0.267326556025662, 0.341524283996598,     0.502868924822979, 0.447956477336788, 0.34386098561125, 0.497632383263385,     0.315898854631323, 0.265364956667457, 0.310836742138278,     0.377564146859679, 0.34867105572162, 0.319015282101669, 0.391070653832805,     0.303770586747067, 0.343559600717083, 0.317902074072387,     0.416941071055344, 0.307540560190762, 0.425693653273768,     0.333659898011489, 0.411600862445998, 0.536459762821273,     0.33044596053687, 0.392058815069127, 0.353601158454398, 0.354627755032702,     0.29293632653022, 0.45314463499987, 0.38537111879656, 0.309065657581823,     0.543168503609975, 0.283324280007576, 0.300892691402529,     0.509885219978796, 0.385044354606884, 0.376392074949338,     0.483395638920142, 0.357609696217764, 0.41420274338558, 0.34327298408077,     0.277364300757757, 0.27069172784765, 0.247388263900323, 0.316864079114108,     0.386248821720518, 0.517359035536247, 0.415817138789634,     0.281262225648586, 0.336845377981388, 0.503912717510667,     0.38997414312378, 0.328696154244616, 0.282933211457711, 0.349802805049335,     0.317789081807868, 0.303254502281017, 0.460606505731821,     0.517250397613783, 0.236355685323827, 0.38535334553664, 0.275382148833272,     0.422426664626375, 0.273802958722685, 0.35526717338933, 0.305936304937063,     0.313671106124219, 0.304000912579353, 0.39876500224612, 0.313948520887422,     0.274465773883652, 0.393550188849423, 0.248994718322751,     0.33067650786444, 0.549158964449605, 0.491121702464439, 0.44668815815952,     0.375078961461588, 0.366820626360274, 1, 0.501025019306741,     0.413067323696184, 0.393207386722955, 0.295035471117251,     0.384675582262159, 0.443491932352814, 0.304837905544315,     0.483661162424505, 0.476276505518895, 0.491375323306427,     0.331166877908032, 0.590569878288727, 0.456422734915529,     0.36320417690838, 0.309020096881633, 0.442117154557406, 0.507330428228056,     0.272909059111236, 0.446990421530449, 0.349487820188021,     0.495848611447904, 0.502914185944987, 0.312742579247066,     0.359513265679278, 0.273555882483826, 0.444974607764465,     0.358276045441881, 0.56460032957623, 0.339238710992388, 0.359232805311167,     0.322998871928762, 0.403970690035888, 0.354437670044827,     0.394455482097662, 0.338600119293738, 0.380867336309633,     0.379989645563461, 0.316211282771553, 0.339773818697861,     0.431550772269805, 0.445146263412307, 0.294840273063327,     0.410077877893817, 0.413759728710736, 0.445380444736061,     0.232736529416598, 0.408718935376094, 0.372559769463346,     0.331645365064306, 0.448134803860578, 0.372666128333993,     0.355250637493777, 0.389745288094219, 0.296118159456233,     0.370639120063192, 0.439762440786622, 0.387908863641307,     0.275816612221235, 0.358187522990495, 0.391814234341949,     0.397902676625745, 0.499895295051224, 0.449998826241076,     0.558299749502181, 0.35988933780256, 0.382266611233519, 0.374845752891998,     0.425566235810533, 0.417879091936243, 0.356451985515999,     0.355166669336562, 0.478092423494988, 0.31456512858168, 0.316079713326135,     0.421510325625381, 0.301326866194972, 0.387739184678167,     0.46519015037069, 0.538883860767082, 0.501025019306741, 1,     0.336625416554323, 0.390173883792269, 0.486549058441738,     0.380487952723788, 0.3912378704046, 0.384605300172072, 0.482681867080594,     0.379560032190381, 0.300998126669429, 0.365770838152421,     0.453277451761902, 0.414442459652986, 0.36086044030909, 0.303501050099153,     0.366399169939895, 0.393826643190274, 0.30022253988055, 0.385999007768553,     0.39368677271567, 0.501115389842794, 0.485017407673899, 0.36867895548101,     0.429371912716534, 0.416774211070141, 0.37740338127171, 0.378125125698768,     0.494078091649547, 0.424117157561683, 0.48334182331471, 0.387303589240894,     0.424561216507938, 0.390622560944727, 0.429888740652136,     0.333950920721483, 0.475159486194837, 0.401627986509937,     0.453840392239878, 0.512188761069394, 0.538353594597184,     0.366631898436175, 0.3968541765081, 0.374960058426113, 0.305907021609067,     0.355178790437248, 0.253341563388689, 0.439852542503389,     0.512712048890206, 0.320673506139099, 0.515698376972145,     0.428964890023813, 0.365703355499436, 0.493991041344711,     0.301080411326013, 0.392793982504922, 0.30256883946341, 0.394513677121952,     0.361423454119417, 0.37371114186688, 0.269206958423506, 0.399242979914773,     0.314807828440236, 0.549321384797785, 0.332774677496374,     0.367869727446468, 0.447618295618557, 0.440441571445526,     0.392295786938097, 0.320948074511229, 0.368803646952245,     0.360063807031317, 0.562740693527066, 0.284721374447022,     0.330319135897941, 0.367520818395495, 0.435768306244276,     0.363771149869433, 0.50007136538603, 0.267326556025662, 0.413067323696184,     0.336625416554323, 1, 0.435498408398429, 0.23089713781599,     0.303511054726044, 0.398012512971379, 0.328593598931013,     0.356877908496658, 0.352469095163779, 0.399969313181456,     0.360953270249189, 0.43566539073377, 0.296261424852387, 0.36388998451764,     0.262919981025265, 0.432337761852536, 0.539044031512244,     0.276448687828132, 0.489357703579841, 0.443136874318643,     0.376842652535055, 0.277466907727161, 0.355728718916675,     0.383967983770916, 0.358351516750111, 0.346878222668024,     0.266286168909947, 0.466209235842989, 0.267540877184048,     0.364664260583007, 0.360526484588017, 0.306987988462374,     0.390834931144608, 0.57164090652778, 0.329509053205511, 0.486946738579489,     0.336440389931091, 0.380743689449959, 0.365674885988076,     0.465654646484322, 0.358048557490613, 0.285503867613974,     0.494770312253864, 0.581029821258073, 0.507090430084036,     0.3807612826046, 0.323590615885758, 0.42535880085296, 0.485144499616285,     0.401008314520858, 0.406578269550377, 0.574407800013092,     0.401351723375527, 0.31079230597412, 0.537621413592766, 0.445993050635602,     0.458882325819146, 0.456781590775322, 0.316444825987685,     0.574954402137309, 0.478691003705465, 0.544256358216308,     0.297588431587813, 0.383935381267634, 0.30506819259311, 0.362679442487201,     0.321938535120766, 0.327188432984388, 0.401817132626858,     0.557996518311034, 0.367643195798699, 0.459658691997625,     0.264491461261234, 0.403052695687178, 0.442063181739418,     0.254587002844107, 0.599653329452015, 0.32331744981096, 0.341524283996598,     0.393207386722955, 0.390173883792269, 0.435498408398429,     1, 0.338561418873449, 0.356653220754771, 0.30514085725468,     0.495939446283928, 0.45833476610877, 0.493316067437714, 0.216494299462826,     0.264398130012063, 0.399028223099524, 0.40137443142972, 0.308682976547676,     0.313992444750393, 0.377567866249952, 0.451444112075218,     0.278270416826869, 0.329471843183428, 0.462442872907338,     0.39541773942546, 0.46845484909638, 0.382596092387434, 0.376765100760537,     0.264661568420497, 0.430792573987824, 0.361493658985148,     0.640387741239141, 0.32983401690301, 0.416751752181084, 0.306603578633936,     0.269345372147926, 0.297952583865622, 0.331414320336606,     0.257826729232657, 0.337737167008658, 0.344418124579912,     0.319159930835421, 0.438396967224458, 0.456138404011758,     0.461727407018027, 0.509145558043713, 0.390337906335804,     0.438047329230376, 0.275332512747944, 0.322226454025342,     0.279280042239319, 0.327461132811953, 0.451036838803023,     0.444821440964189, 0.542365198882993, 0.462197818677563,     0.467376774738128, 0.281316057731658, 0.458607898589687,     0.346926851328165, 0.410065334266904, 0.411192982281706,     0.318464288685222, 0.413374910746116, 0.373835158991867,     0.652546263021213, 0.384670496719551, 0.47910542196087, 0.476778397448414,     0.438931600208343, 0.404873365626289, 0.441367535949358,     0.325824169498909, 0.439188976284342, 0.275430668687151,     0.374257142208551, 0.535399883150695, 0.254293223889108,     0.298100424950257, 0.264243948379066, 0.397669826027927,     0.341703767567846, 0.502868924822979, 0.295035471117251,     0.486549058441738, 0.23089713781599, 0.338561418873449, 1,     0.392519338952787, 0.447785957735318, 0.415774040439977,     0.379241279678503, 0.321649090050199, 0.24696698956852, 0.300829508601454,     0.339451514627137, 0.44278575893718, 0.431655673938094, 0.448167125858079,     0.439461105530774, 0.232027476894345, 0.285504140960881,     0.304111026285001, 0.353315943188966, 0.376468950341802,     0.498370926398026, 0.427555786361864, 0.420512651130753,     0.328234059026729, 0.514056435232734, 0.449793044861857,     0.285132102927869, 0.396376136023435, 0.528833088762952,     0.297659039890085, 0.401233179516982, 0.363519540686286,     0.34371461173278, 0.412696206760504, 0.340781854274323, 0.497106251184181,     0.570589559916839, 0.544096550953863, 0.472084788180577,     0.424409399560979, 0.409520454825938, 0.36231556964011, 0.279726983498053,     0.362103043828181, 0.262405575115025, 0.406873546639325,     0.394493530091563, 0.332774619477434, 0.392269699092219,     0.444153694186929, 0.37991496560769, 0.284363474586875, 0.418227339434345,     0.258445944649903, 0.308654988525683, 0.403246049267876,     0.3333242667896, 0.348681474921086, 0.28585038322744, 0.34562088334762,     0.269390984688969, 0.51942513116355, 0.384619725441338, 0.33667809035955,     0.42125466872928, 0.244844504718843, 0.469696619385726, 0.419235083368561,     0.344609593876826, 0.391483259680948, 0.393139685400079,     0.270975778174805, 0.353531971555537, 0.464059574569194,     0.446066190527097, 0.472983996152888, 0.397063865335657,     0.447956477336788, 0.384675582262159, 0.380487952723788,     0.303511054726044, 0.356653220754771, 0.392519338952787,     1, 0.393962105866129, 0.298330311015773, 0.526889247339501,     0.336878696716216, 0.443243718964972, 0.444395427289542,     0.330266810493191, 0.331730938294939, 0.545358150825619,     0.377417869139349, 0.356389156133501, 0.305513294669699,     0.274774623763735, 0.425109134802909, 0.366031396592281,     0.390389315338054, 0.389761470803187, 0.55778188614792, 0.376314969503504,     0.346822558833157, 0.490652621389815, 0.442596997451395,     0.336817470888822, 0.423711170448813, 0.32874784465926, 0.315132553420445,     0.429010633575043, 0.267784575454668, 0.281903625394239,     0.442858357364931, 0.40485487005305, 0.32247371634391, 0.308855861821418,     0.253383184556368, 0.293128368023245, 0.294398148947117,     0.352056886870957, 0.342711555772021, 0.261243419304299,     0.444817596918805, 0.335616567272506, 0.529624435057637,     0.297563903321449, 0.393129809113563, 0.386223794962346,     0.364474296589482, 0.364343134327555, 0.376122206823425,     0.387629143433347, 0.336728543900712, 0.40874588387348, 0.344883929631373,     0.48259645086664, 0.338758593722834, 0.393289027421754, 0.434483715140075,     0.313466276205693, 0.477880995794725, 0.305095615919302,     0.452746059578913, 0.493578465096747, 0.398779252998756,     0.328049960104713, 0.322095435952688, 0.335115093002925,     0.368011557645588, 0.373543533110253, 0.419265315090718,     0.262153912110596, 0.367639574270302, 0.450414297808124,     0.375492201753775, 0.426083302332267, 0.34386098561125, 0.443491932352814,     0.3912378704046, 0.398012512971379, 0.30514085725468, 0.447785957735318,     0.393962105866129, 1, 0.305226643849445, 0.378726028861377,     0.363422468787572, 0.471056552184578, 0.429195629374663,     0.398057138978314, 0.363724424145204, 0.461899918418943,     0.421476457513382, 0.448706040186732, 0.376970548067327,     0.326528975357662, 0.539209629602555, 0.286853150194912,     0.352842811936415, 0.380436103856191, 0.383729284772137,     0.413430256074072, 0.47111256170795, 0.389723282525751, 0.423905844116,     0.353049499782787, 0.364130331464085, 0.405447215512611,     0.305060041608197, 0.437196561768736, 0.471650310809378,     0.359739762123308, 0.515652811103503, 0.442191976690277,     0.467739519580915, 0.527721246312615, 0.433479364642038,     0.372280167998769, 0.37837697210773, 0.274295607589746, 0.474903693043738,     0.484462207475431, 0.610482089188157, 0.36186565975458, 0.415769707775553,     0.487171013298583, 0.503543465200614, 0.456808363110946,     0.334968470871797, 0.424757721016413, 0.317903007595317,     0.337594501166315, 0.306259197479766, 0.513258016877658,     0.341502317712684, 0.341650089358094, 0.289865256386731,     0.504432039623461, 0.378175818835999, 0.405024344673838,     0.385409814839382, 0.361274886738264, 0.31974595182486, 0.441088338067408,     0.409829896404369, 0.44596373398531, 0.367102266450033, 0.42495220115758,     0.439662093051215, 0.333349052910852, 0.294681594729704,     0.350095811510364, 0.362069174704468, 0.223437339446433,     0.546943324880243, 0.278208310552273, 0.497632383263385,     0.304837905544315, 0.384605300172072, 0.328593598931013,     0.495939446283928, 0.415774040439977, 0.298330311015773,     0.305226643849445, 1, 0.337703343921461, 0.404835036293101,     0.263832753561997, 0.39036604212055, 0.332666560915512, 0.380746496277054,     0.42645639288912, 0.325598778941297, 0.247520584404233, 0.437958876852129,     0.375714658291273, 0.3590993392651, 0.629777033554034, 0.443035227745927,     0.386099473479521, 0.414444083660985, 0.324180330589658,     0.312648360200379, 0.327312659770097, 0.352583761773938,     0.32097143802512, 0.407941224024049, 0.447293203103938, 0.305270259162462,     0.325888136950144, 0.257623673185627, 0.242329507765217,     0.343297296325024, 0.299317469891856, 0.384657566216169,     0.429114758409602, 0.354054373003187, 0.406787631751308,     0.377745070059424, 0.466903588353193, 0.348659550487573,     0.441557946135667, 0.276023616545442, 0.42085937467292, 0.348469170422302,     0.35888401720919, 0.407707808317667, 0.407230808686679, 0.477665417088085,     0.418428219529517, 0.380213542298453, 0.284632426786563,     0.440488368394376, 0.286305324346685, 0.375701572958152,     0.377100988915905, 0.463676741495756, 0.304402359649053,     0.451859425868983, 0.439438264316916, 0.348355288068229,     0.352105886592268, 0.253901843695459, 0.404893913740347,     0.268076565021159, 0.363712488804337, 0.531356033502905,     0.500999549330243, 0.370404470752825, 0.375606437251128,     0.242302276934642, 0.32893685405256, 0.597008402218373, 0.310227347876148,     0.557390642126526, 0.358004642515331, 0.315898854631323,     0.483661162424505, 0.482681867080594, 0.356877908496658,     0.45833476610877, 0.379241279678503, 0.526889247339501, 0.378726028861377,     0.337703343921461, 1, 0.447577607705183, 0.316764398211446,     0.352035170393716, 0.40017449433277, 0.401986000180157, 0.414952225882697,     0.345937881084627, 0.37883545271449, 0.380175082124131, 0.228912460871745,     0.445901633263397, 0.377950389052567, 0.434995193744801,     0.516428465941137, 0.464925691783045, 0.374081091662159,     0.326141339114059, 0.433128071961404, 0.389447143745473,     0.433846994742441, 0.489124169736661, 0.374182090671808,     0.27273857188971, 0.331698170547298, 0.301540995675257, 0.301253208428476,     0.284994942207461, 0.368575796997157, 0.318193688687186,     0.295834844310857, 0.331524182227085, 0.381961785857394,     0.386155527628987, 0.45882115734262, 0.586603035149718, 0.362146837053063,     0.338594297269917, 0.293148450050276, 0.308750688977003,     0.274951739571245, 0.418279472528856, 0.455013688096847,     0.45084980489482, 0.349017823250773, 0.568386957295595, 0.374069113753686,     0.416801235556405, 0.290484579728891, 0.375210514444906,     0.341884931557001, 0.352974854831113, 0.456347980494187,     0.455489679181567, 0.404923338020336, 0.626834038425505,     0.33567078205559, 0.277352792227714, 0.355067079123645, 0.413486290677332,     0.308258150121378, 0.460025494093814, 0.482044786769002,     0.313663801088687, 0.335338578527259, 0.318899369030316,     0.459095924087055, 0.579667139528607, 0.263985718130838,     0.439174738580879, 0.279566258801508, 0.265364956667457,     0.476276505518895, 0.379560032190381, 0.352469095163779,     0.493316067437714, 0.321649090050199, 0.336878696716216,     0.363422468787572, 0.404835036293101, 0.447577607705183,     1, 0.368547950266602, 0.369486142324259, 0.549968418105942,     0.515884492487363, 0.338025101320007, 0.382127263774954,     0.349010151644558, 0.421914587993886, 0.278015464100331,     0.475487715493977, 0.333325275789799, 0.475436710372559,     0.480025598275627, 0.274198001972272, 0.361051523325566,     0.273644329265913, 0.500584993819327, 0.446995020088972,     0.514804145911039, 0.377640349378848, 0.36649895428507, 0.339215378616167,     0.308696897697507, 0.349286969574976, 0.337401340052159,     0.221165874990155, 0.293303865145201, 0.472755975586515,     0.282769040666747, 0.367356472738048, 0.347235335839783,     0.427441288628067, 0.532680839735413, 0.41980572407996, 0.422228190694129,     0.322598689264213, 0.221161149668346, 0.290877733713748,     0.346221730973264, 0.537198572400217, 0.39596835069355, 0.290051690553553,     0.337339373572064, 0.368836835366889, 0.358976247135214,     0.387042916170891, 0.398766572522872, 0.420326786538178,     0.216657449883098, 0.331049355051327, 0.404207232653647,     0.301042496340274, 0.432860016145164, 0.323741242523896,     0.231493507484785, 0.280469069298394, 0.326247799061532,     0.309854860157672, 0.353369126837725, 0.428563336344988,     0.262661829885391, 0.381050230201674, 0.332116080379577,     0.272176973431551, 0.4318227196441, 0.437909389185412, 0.693084043640919,     0.289851513864659, 0.413454807410304, 0.310836742138278,     0.491375323306427, 0.300998126669429, 0.399969313181456,     0.216494299462826, 0.24696698956852, 0.443243718964972, 0.471056552184578,     0.263832753561997, 0.316764398211446, 0.368547950266602,     1, 0.552933027162231, 0.40805940366936, 0.337375806207459,     0.438510795660697, 0.244745262561253, 0.315313232937638,     0.361124116311842, 0.370635042759062, 0.43535020475172, 0.357449402821936,     0.460740191128046, 0.319266998650516, 0.294893106758988,     0.361208497496631, 0.421002413098403, 0.33432486510994, 0.347907097819105,     0.338472522265478, 0.391739115815566, 0.300116320018611,     0.388777103436491, 0.540289033550349, 0.359278788942995,     0.374877165993608, 0.419684096321587, 0.446135787180712,     0.386918976154755, 0.336192053884014, 0.26389573145065, 0.227031739606446,     0.311467135900234, 0.305348815610984, 0.401143224664378,     0.425758161414823, 0.610473841632644, 0.358015111597039,     0.426752454433996, 0.382589472244963, 0.319220569308758,     0.318800686103051, 0.244345152636456, 0.311208999773779,     0.298071960570303, 0.367109324243953, 0.362001679934319,     0.578318445739251, 0.325526850104331, 0.363642303018088,     0.406742080115683, 0.383364936762245, 0.319255274267178,     0.296641239627067, 0.284261727746614, 0.342548038014003,     0.253690566459724, 0.483720693850331, 0.310225922002843,     0.387760653666301, 0.319682996433772, 0.321901615277448,     0.463972158401048, 0.404797116415417, 0.222365991770714,     0.353304389487988, 0.360252070795756, 0.383229058328213,     0.263617114400216, 0.503936194888546, 0.377564146859679,     0.331166877908032, 0.365770838152421, 0.360953270249189,     0.264398130012063, 0.300829508601454, 0.444395427289542,     0.429195629374663, 0.39036604212055, 0.352035170393716, 0.369486142324259,     0.552933027162231, 1, 0.407746747136834, 0.304884126602426,     0.482988754242054, 0.245682696579276, 0.258959891926673,     0.325837981480798, 0.369515449647327, 0.432667436160087,     0.355192394918236, 0.415696285305102, 0.262535184525012,     0.398364313213851, 0.400619529182053, 0.514408994857612,     0.302377961042196, 0.38558317445858, 0.306925805178375, 0.354165750698526,     0.364186947127395, 0.317997660721834, 0.329196957333988,     0.266773793023446, 0.306019910350667, 0.419899877830755,     0.493466232856099, 0.286866535741786, 0.335030868841366,     0.321728490464377, 0.27534000233625, 0.190153550641753, 0.337073932911785,     0.330327952604214, 0.426162234868928, 0.373373492562596,     0.482158439403269, 0.425278479777912, 0.381432136447303,     0.388724367391769, 0.428834436617881, 0.32797623997104, 0.341748530171662,     0.330815942615761, 0.300449472934291, 0.484063657530764,     0.319771368866361, 0.292696651373179, 0.362718949524034,     0.365452276149244, 0.286484496717459, 0.349888798063932,     0.268435293454307, 0.285123011009923, 0.309492276906572,     0.400370153497853, 0.389549195493502, 0.307268654224817,     0.272591587157388, 0.443007301861903, 0.316904479626278,     0.226876878218621, 0.491513636962021, 0.298047277221546,     0.29431705688734, 0.429094694333835, 0.336303425434193, 0.39983545809135,     0.393622384453792, 0.34867105572162, 0.590569878288727, 0.453277451761902,     0.43566539073377, 0.399028223099524, 0.339451514627137, 0.330266810493191,     0.398057138978314, 0.332666560915512, 0.40017449433277, 0.549968418105942,     0.40805940366936, 0.407746747136834, 1, 0.429934047865567,     0.411194864721953, 0.274766833925893, 0.537618828694673,     0.382947927109109, 0.253522971920828, 0.38596534512236, 0.376951854022845,     0.567968569401406, 0.580207187564248, 0.357155941579841,     0.437422544721287, 0.237450519158392, 0.400620543245386,     0.515555610029914, 0.569657824237588, 0.249016132531847,     0.352505841567058, 0.308103127474207, 0.329672418268527,     0.268292745864803, 0.356175076750175, 0.323339331062287,     0.511031935702728, 0.42918839017573, 0.379839760901264, 0.352570975536432,     0.405722000083033, 0.459514468672061, 0.312851833469179,     0.370395058639649, 0.34917851178471, 0.322478706528225, 0.269087791409431,     0.316832541656433, 0.37927744789942, 0.362249656971336, 0.329138334875495,     0.287439627880696, 0.305922011702419, 0.329426227836434,     0.282975704313727, 0.46684616730405, 0.35645631902549, 0.312703737588985,     0.260301888476073, 0.242317364678002, 0.324291532613502,     0.361434824953902, 0.389159799844752, 0.425861535578255,     0.284432700242046, 0.330815352449112, 0.292114516838907,     0.361823650117053, 0.368590450471236, 0.405495713603829,     0.454752179163213, 0.252613556343918, 0.275123877732953,     0.365739196482855, 0.328006081490464, 0.474656743292107,     0.254302636306513, 0.442979213532354, 0.244271856433836,     0.319015282101669, 0.456422734915529, 0.414442459652986,     0.296261424852387, 0.40137443142972, 0.44278575893718, 0.331730938294939,     0.363724424145204, 0.380746496277054, 0.401986000180157,     0.515884492487363, 0.337375806207459, 0.304884126602426,     0.429934047865567, 1, 0.349607213184592, 0.49422310628561,     0.283295724404774, 0.339421892747505, 0.227090984924869,     0.388586087750796, 0.378725909239519, 0.439701992810835,     0.601572505803637, 0.29595073222403, 0.38291065834884, 0.321589922992827,     0.519718800892541, 0.329616954197001, 0.387595807214053,     0.409029181871578, 0.392911183897005, 0.399831009096994,     0.333179269991316, 0.365661102539182, 0.336499610664605,     0.243544380771061, 0.286991243979635, 0.490806511455212,     0.347426121026858, 0.332384985004236, 0.383701579461422,     0.479524364086648, 0.494745059086376, 0.454172854813823,     0.387804110208602, 0.324009934819092, 0.195691911539262,     0.289186763835598, 0.314488094669985, 0.298896863268346,     0.441963858047086, 0.351630921287603, 0.339622277177613,     0.36565589010411, 0.447460958668977, 0.340252377015428, 0.295646076046653,     0.434182685296997, 0.26184644308377, 0.398250114224164, 0.326850301128215,     0.299910742109869, 0.35585792016309, 0.363322208109453, 0.415972769557452,     0.438847454267895, 0.546569699868135, 0.311514817430568,     0.457773299406744, 0.334440787765778, 0.350510700406055,     0.340228164257098, 0.392681708662176, 0.337509331091852,     0.299166528342908, 0.407125641791131, 0.379914633077451,     0.41934371220704, 0.430163470156169, 0.391070653832805, 0.36320417690838,     0.36086044030909, 0.36388998451764, 0.308682976547676, 0.431655673938094,     0.545358150825619, 0.461899918418943, 0.42645639288912, 0.414952225882697,     0.338025101320007, 0.438510795660697, 0.482988754242054,     0.411194864721953, 0.349607213184592, 1, 0.362730367560609,     0.377024287515926, 0.357443775461702, 0.355655881041334,     0.493333353615859, 0.452231436466465, 0.433089595904504,     0.392095035563384, 0.489581010627966, 0.394713961020113,     0.360359807293769, 0.409860185427655, 0.519246773464114,     0.295951673334827, 0.34177449077937, 0.371756016617431, 0.335060693042868,     0.433744121322528, 0.294392899649034, 0.302732542162642,     0.522344561119342, 0.472575280801792, 0.397381582057682,     0.48747979838586, 0.331579248268185, 0.346888657495897, 0.354111231954472,     0.353761670884222, 0.395123321650682, 0.318347784856052,     0.48671608626516, 0.475945544919275, 0.523062318571775, 0.392331858614733,     0.420450654472018, 0.311926595937479, 0.371863497773399,     0.428190113790896, 0.405662378335587, 0.472325293266349,     0.354294641084603, 0.420072877879042, 0.349304055389168,     0.451198319809126, 0.39727926112526, 0.412204062564375, 0.458879429044831,     0.333920069195826, 0.523296504930014, 0.287005646014808,     0.446052174130999, 0.335032396837575, 0.449339271234477,     0.319798544919199, 0.287378764296922, 0.392373863626272,     0.295864442876575, 0.232706483952263, 0.446311619958809,     0.244277385448153, 0.407494621064147, 0.279098648735498,     0.374559038957147, 0.272883141895735, 0.303770586747067,     0.309020096881633, 0.303501050099153, 0.262919981025265,     0.313992444750393, 0.448167125858079, 0.377417869139349,     0.421476457513382, 0.325598778941297, 0.345937881084627,     0.382127263774954, 0.244745262561253, 0.245682696579276,     0.274766833925893, 0.49422310628561, 0.362730367560609, 1,     0.373477086169398, 0.276761050397968, 0.261228585949176,     0.412232506209639, 0.243249884865632, 0.28935896019367, 0.361196882949072,     0.381187090375263, 0.382789070775074, 0.320582096360151,     0.612740960051237, 0.346518862235403, 0.218470376183189,     0.352099846215922, 0.321892722809907, 0.308515181891721,     0.266053111491291, 0.358254729700473, 0.357978978558136,     0.299083573149694, 0.24979056140807, 0.441060345621005, 0.296819947304115,     0.390302969846393, 0.450736628636245, 0.407792291334301,     0.365653966760033, 0.40782556545636, 0.286732625132832, 0.400972634823585,     0.227307893923147, 0.294283579229353, 0.26892982367399, 0.379488282721107,     0.409393606997448, 0.298600846086598, 0.350970633309189,     0.341833597341158, 0.443601115368732, 0.206837798534269,     0.276708297639067, 0.389442254032966, 0.295546788111685,     0.27961812654004, 0.467506955026444, 0.381751978500487, 0.407003772312625,     0.366502617388262, 0.370198317494659, 0.505110718637475,     0.377556807000924, 0.362287707613588, 0.260153273038179,     0.383445757336681, 0.268975204925227, 0.239509829167427,     0.527541454516535, 0.414547659581927, 0.237935116357937,     0.313943213890097, 0.460524354265304, 0.360901611671962,     0.442523532291808, 0.343559600717083, 0.442117154557406,     0.366399169939895, 0.432337761852536, 0.377567866249952,     0.439461105530774, 0.356389156133501, 0.448706040186732,     0.247520584404233, 0.37883545271449, 0.349010151644558, 0.315313232937638,     0.258959891926673, 0.537618828694673, 0.283295724404774,     0.377024287515926, 0.373477086169398, 1, 0.390872774705249,     0.320038664551431, 0.391248555901646, 0.273833373486387,     0.407653749903089, 0.442132736011747, 0.470996374216483,     0.414330844499856, 0.274658932777871, 0.46773732125286, 0.537208833829691,     0.422967172411417, 0.258026308926809, 0.344559817328734,     0.307172383926982, 0.336095013933502, 0.374758402741214,     0.528537053452524, 0.452018420672313, 0.531938414111018,     0.398634586395799, 0.424818359515661, 0.488742218550396,     0.568063425949975, 0.507237689712876, 0.241947904636449,     0.367468483951415, 0.279704150080022, 0.461538448340101,     0.267364885952544, 0.36841323272411, 0.397068502060574, 0.40690396514658,     0.292347581647605, 0.316479353944582, 0.328274671520486,     0.38006198898253, 0.362150035618415, 0.325650657046067, 0.462590044245622,     0.411653273126764, 0.386004030448883, 0.226731602312079,     0.514945445709361, 0.461411343950465, 0.462268188542265,     0.554265795719571, 0.306067969315977, 0.300107449655193,     0.334204790136989, 0.369124155237077, 0.309369612898069,     0.334632401085115, 0.310746162238569, 0.412134736050528,     0.355634040670056, 0.228752113569549, 0.326883919883214,     0.448325827928831, 0.379628737757805, 0.506131423471232,     0.352297192130331, 0.317902074072387, 0.507330428228056,     0.393826643190274, 0.539044031512244, 0.451444112075218,     0.232027476894345, 0.305513294669699, 0.376970548067327,     0.437958876852129, 0.380175082124131, 0.421914587993886,     0.361124116311842, 0.325837981480798, 0.382947927109109,     0.339421892747505, 0.357443775461702, 0.276761050397968,     0.390872774705249, 1, 0.3773884871024, 0.601191682348509,     0.337827836055546, 0.403587375196337, 0.332060215528841,     0.302159358882177, 0.286546052362363, 0.323564434255757,     0.3283683674862, 0.248140613736164, 0.477123734621384, 0.310408539290566,     0.336106035475372, 0.298605028102179, 0.291222793545324,     0.47628426916583, 0.421384100416208, 0.293227524340522, 0.387077480001544,     0.369528231258887, 0.397007644273739, 0.340451777253129,     0.528673672810772, 0.488292104640457, 0.309524228745608,     0.478057525363121, 0.515921702009977, 0.441781965399061,     0.344256146634333, 0.356526063371186, 0.472523901463921,     0.506045525361989, 0.414458352774869, 0.409990087647104,     0.472546927220662, 0.498605064142923, 0.258713690458013,     0.606676602520519, 0.460084659775437, 0.439846022121956,     0.408151971954382, 0.360718635943078, 0.558357206348994,     0.562717307764088, 0.662957455273209, 0.369916448902243,     0.366630998522083, 0.235661193078848, 0.302871432938645,     0.298699935991411, 0.442842163315647, 0.405894247240108,     0.228116143267427, 0.397527243889061, 0.25589926831072, 0.305334137899207,     0.334508360530216, 0.307616877118051, 0.396966459421798,     0.286081753768829, 0.316765102951813, 0.416941071055344,     0.272909059111236, 0.30022253988055, 0.276448687828132, 0.278270416826869,     0.285504140960881, 0.274774623763735, 0.326528975357662,     0.375714658291273, 0.228912460871745, 0.278015464100331,     0.370635042759062, 0.369515449647327, 0.253522971920828,     0.227090984924869, 0.355655881041334, 0.261228585949176,     0.320038664551431, 0.3773884871024, 1, 0.351209148242839,     0.292802589787508, 0.324850472463676, 0.236336960536275,     0.332110991032536, 0.230536598597837, 0.419949141479538,     0.296592874399807, 0.339747015810712, 0.205267194457864,     0.39761127938527, 0.321670223010481, 0.248800614479788, 0.465914426877675,     0.33097114679109, 0.331234128089681, 0.366527169080359, 0.341666769535471,     0.347189695587107, 0.338751296160076, 0.406258669206966,     0.352007646076051, 0.309526206413975, 0.283363293187412,     0.335281994358651, 0.337103106493504, 0.346706409630608,     0.447334049571328, 0.378135352194846, 0.331158645329332,     0.294723340021442, 0.252800887382447, 0.314588782862783,     0.318729420513242, 0.289967067130109, 0.286676824075961,     0.3178852680402, 0.383567700272989, 0.269317017151863, 0.35308356068218,     0.494920484580272, 0.317732453001183, 0.340801124563392,     0.372413377969753, 0.249521286376131, 0.381449170776328,     0.350133275717923, 0.453517826502912, 0.366641135171616,     0.413614199743558, 0.33572203830314, 0.345399045518546, 0.418412334354589,     0.347870809245576, 0.388445201729119, 0.356473111536738,     0.500786850712981, 0.391227629384484, 0.401501203985538,     0.406301829252517, 0.307540560190762, 0.446990421530449,     0.385999007768553, 0.489357703579841, 0.329471843183428,     0.304111026285001, 0.425109134802909, 0.539209629602555,     0.3590993392651, 0.445901633263397, 0.475487715493977, 0.43535020475172,     0.432667436160087, 0.38596534512236, 0.388586087750796, 0.493333353615859,     0.412232506209639, 0.391248555901646, 0.601191682348509,     0.351209148242839, 1, 0.317314000984689, 0.349090217498315,     0.338310396187471, 0.338702280102487, 0.31340238716027, 0.384812572269024,     0.404260235802009, 0.345811578389006, 0.344368107377479,     0.412545751678262, 0.385162602094009, 0.295078350772371,     0.35855168344864, 0.587234215299441, 0.460865186721627, 0.339063327784209,     0.378038757042644, 0.414326672836584, 0.384053180748637,     0.353686549836041, 0.453489316039036, 0.376941775001252,     0.366878394125912, 0.517514391888972, 0.467979003824068,     0.565791093082641, 0.346218271324371, 0.448042569006347,     0.435034343660426, 0.723218779968468, 0.437452257084543,     0.378652158661084, 0.528148388465743, 0.374821072235454,     0.40845455756047, 0.491143024998004, 0.461311763686277, 0.467946455527953,     0.351659216792522, 0.400826587182131, 0.544198692551921,     0.600154428307272, 0.502134876232726, 0.376938527459852,     0.346302710457366, 0.281892850634102, 0.433037689161269,     0.344173146623062, 0.521188938067236, 0.385666262630182,     0.38289259240638, 0.38744781232155, 0.381460244525696, 0.289141368312962,     0.387885089669873, 0.391958055744632, 0.286669256559976,     0.470379221675386, 0.323232553304642, 0.425693653273768,     0.349487820188021, 0.39368677271567, 0.443136874318643, 0.462442872907338,     0.353315943188966, 0.366031396592281, 0.286853150194912,     0.629777033554034, 0.377950389052567, 0.333325275789799,     0.357449402821936, 0.355192394918236, 0.376951854022845,     0.378725909239519, 0.452231436466465, 0.243249884865632,     0.273833373486387, 0.337827836055546, 0.292802589787508,     0.317314000984689, 1, 0.515156740423659, 0.389505816660227,     0.484850939513318, 0.364767891965649, 0.316073728855754,     0.360501506993322, 0.370061796255698, 0.371556089410611,     0.478252274267074, 0.384999120089978, 0.361819120342064,     0.424946242286206, 0.227206828326588, 0.29890940577375, 0.356464184137332,     0.369138390785432, 0.429835562156619, 0.448622446063141,     0.312956451937293, 0.325596403410208, 0.37353384442721, 0.482892423135991,     0.353124107063109, 0.443747628225499, 0.317926044878619,     0.413454323786196, 0.322054146695993, 0.323667862140289,     0.315902220700467, 0.352424707945331, 0.431366422547768,     0.455393135682156, 0.408718523466625, 0.39177710093722, 0.450904933460031,     0.312348596046705, 0.396558955556992, 0.42955312482474, 0.505236814919861,     0.277923393200223, 0.418316284511061, 0.392095266612569,     0.342354339954813, 0.338892629495535, 0.282901776532826,     0.346085122043306, 0.321502115598598, 0.296008561975181,     0.482976180776976, 0.341030709725559, 0.294980593551686,     0.375868315855152, 0.272539394479885, 0.437255596331026,     0.566385309141181, 0.371261482679209, 0.425405973545428,     0.379264324814944, 0.333659898011489, 0.495848611447904,     0.501115389842794, 0.376842652535055, 0.39541773942546, 0.376468950341802,     0.390389315338054, 0.352842811936415, 0.443035227745927,     0.434995193744801, 0.475436710372559, 0.460740191128046,     0.415696285305102, 0.567968569401406, 0.439701992810835,     0.433089595904504, 0.28935896019367, 0.407653749903089, 0.403587375196337,     0.324850472463676, 0.349090217498315, 0.515156740423659,     1, 0.499546015690977, 0.38713414184699, 0.455824314347536,     0.312961626734202, 0.478133119301571, 0.427618756097716,     0.454979195953226, 0.397189255733751, 0.365925215234178,     0.355839264973249, 0.41366330512881, 0.262539249921557, 0.324676361367064,     0.277067082221274, 0.460725559655823, 0.369129647029518,     0.337214100378338, 0.386705540964008, 0.404198839835402,     0.370502830870038, 0.464031032830209, 0.453532555338846,     0.399817447031918, 0.340501965593701, 0.274912708670139,     0.278219202581753, 0.33181057197039, 0.320591357305613, 0.422638981565152,     0.288762467065881, 0.246442537669244, 0.386555375226958,     0.381897620407199, 0.451300307828077, 0.358677167313946,     0.363091180094366, 0.318050888651916, 0.344458926966499,     0.32551380969241, 0.397882052991926, 0.382628998044775, 0.413068112441104,     0.349402909034886, 0.354222701561, 0.306696792984607, 0.266358187857144,     0.323940515320982, 0.528114015812326, 0.457909936054477,     0.222333814907404, 0.428297378910694, 0.333428535728592,     0.358539572928498, 0.453000227477582, 0.275594060531012,     0.507981535515012, 0.265367380408217, 0.411600862445998,     0.502914185944987, 0.485017407673899, 0.277466907727161,     0.46845484909638, 0.498370926398026, 0.389761470803187, 0.380436103856191,     0.386099473479521, 0.516428465941137, 0.480025598275627,     0.319266998650516, 0.262535184525012, 0.580207187564248,     0.601572505803637, 0.392095035563384, 0.361196882949072,     0.442132736011747, 0.332060215528841, 0.236336960536275,     0.338310396187471, 0.389505816660227, 0.499546015690977,     1, 0.383410538688202, 0.377870293431368, 0.25892630926624,     0.391583800863487, 0.512249044636454, 0.543457070521974,     0.394876932874636, 0.467985224387218, 0.324749416739068,     0.477192253092815, 0.331320647596372, 0.263406006730539,     0.311838114106659, 0.411586937910297, 0.4108152970241, 0.400219856501905,     0.34714051918687, 0.400595559437389, 0.602367797669066, 0.415082740482512,     0.397380692129408, 0.272932809621309, 0.307599340692402,     0.232043506402833, 0.305762837444941, 0.331303744802705,     0.313539444162286, 0.310328731371348, 0.409595545592931,     0.293052402413911, 0.350310649134884, 0.340865425488356,     0.370277131936644, 0.312656924324374, 0.300002190186198,     0.2764988600953, 0.348222374762998, 0.285564397366163, 0.316528875190272,     0.338360721290052, 0.609738425614886, 0.41321188404385, 0.371905516758958,     0.498064446444386, 0.358139046847662, 0.47070216152078, 0.382602450353593,     0.342362518757933, 0.388588955199703, 0.480983236304231,     0.272723000835658, 0.261394762530852, 0.371625515449804,     0.328695895800316, 0.45890750127085, 0.411911046672136, 0.536459762821273,     0.312742579247066, 0.36867895548101, 0.355728718916675, 0.382596092387434,     0.427555786361864, 0.55778188614792, 0.383729284772137, 0.414444083660985,     0.464925691783045, 0.274198001972272, 0.294893106758988,     0.398364313213851, 0.357155941579841, 0.29595073222403, 0.489581010627966,     0.381187090375263, 0.470996374216483, 0.302159358882177,     0.332110991032536, 0.338702280102487, 0.484850939513318,     0.38713414184699, 0.383410538688202, 1, 0.452429235634529,     0.380100500266562, 0.398033443465976, 0.533391509236354,     0.295260838023228, 0.427111803956452, 0.319151203792993,     0.286067043808622, 0.40643201495547, 0.261295436620486, 0.307013142170536,     0.480113729951078, 0.538362690264634, 0.317064996203872,     0.441069005724339, 0.336906031578591, 0.35110060354556, 0.319683704589464,     0.317272681472839, 0.333859893472906, 0.286825239272989,     0.362396208030722, 0.490178599021891, 0.395140600374798,     0.325642671354701, 0.346448868283435, 0.340479663214117,     0.415208140571283, 0.352877637214597, 0.455636559371266,     0.466161028157254, 0.405278942384212, 0.261390387274391,     0.338799320990308, 0.502170714962498, 0.367879441171442,     0.382985318865681, 0.510475732295052, 0.335746210300682,     0.518041197442099, 0.27562864805546, 0.436337327021913, 0.349723690464106,     0.525351108363716, 0.299754468509879, 0.401253657086464,     0.407672109929216, 0.336624389709106, 0.437622646382516,     0.288161683252571, 0.283631251368523, 0.383836187651848,     0.306825525396332, 0.375033026145701, 0.396380841547403,     0.33044596053687, 0.359513265679278, 0.429371912716534, 0.383967983770916,     0.376765100760537, 0.420512651130753, 0.376314969503504,     0.413430256074072, 0.324180330589658, 0.374081091662159,     0.361051523325566, 0.361208497496631, 0.400619529182053,     0.437422544721287, 0.38291065834884, 0.394713961020113, 0.382789070775074,     0.414330844499856, 0.286546052362363, 0.230536598597837,     0.31340238716027, 0.364767891965649, 0.455824314347536, 0.377870293431368,     0.452429235634529, 1, 0.30667456160393, 0.464610929527203,     0.507155764353581, 0.436251493204021, 0.332252348172561,     0.39054394165865, 0.4490306945862, 0.285073360580731, 0.287941880804957,     0.445898791328571, 0.301956731906249, 0.461965528721671,     0.456926821225567, 0.433898302678356, 0.384088038378648,     0.328497284878521, 0.369120685419464, 0.473297417334235,     0.353228369085027, 0.360976002107673, 0.384631703677729,     0.327295774740354, 0.360932017943044, 0.393931462569191,     0.309711211954988, 0.374010916257369, 0.282498485481804,     0.331112081440587, 0.413177672204451, 0.464749631611486,     0.387483459922322, 0.276043595311922, 0.384014307502855,     0.380542506535834, 0.239967166824039, 0.371773056229135,     0.307566088512616, 0.347492607024536, 0.453188854797928,     0.445113179361851, 0.253441521703603, 0.417150484194643,     0.359639104257709, 0.475062286457933, 0.319473182626991,     0.350184090386249, 0.570025946575476, 0.348112956523377,     0.34220681479474, 0.427032596274694, 0.312023819837673, 0.444960599795525,     0.233515014592483, 0.52954548186457, 0.392058815069127, 0.273555882483826,     0.416774211070141, 0.358351516750111, 0.264661568420497,     0.328234059026729, 0.346822558833157, 0.47111256170795, 0.312648360200379,     0.326141339114059, 0.273644329265913, 0.421002413098403,     0.514408994857612, 0.237450519158392, 0.321589922992827,     0.360359807293769, 0.320582096360151, 0.274658932777871,     0.323564434255757, 0.419949141479538, 0.384812572269024,     0.316073728855754, 0.312961626734202, 0.25892630926624, 0.380100500266562,     0.30667456160393, 1, 0.304447049134146, 0.256791673779045,     0.26991880754601, 0.428862601301255, 0.335601369502494, 0.382396568294765,     0.46792017902561, 0.453878304695138, 0.387435638051996, 0.430942111003908,     0.443782860986776, 0.347578756929089, 0.366438684389033,     0.417493198350007, 0.360267728674292, 0.267297429450036,     0.325213210962866, 0.417190567801219, 0.407933921504182,     0.475696861981871, 0.433420876923105, 0.327669444235445,     0.469657781965423, 0.348984422350266, 0.375096457370247,     0.387190221982307, 0.397673312454481, 0.41264281794022, 0.330234996391108,     0.325489948684954, 0.397872708350876, 0.280958014928007,     0.430045952358278, 0.441182001813894, 0.33007492601762, 0.268515131824122,     0.256849450445247, 0.268865297540725, 0.354100140445193,     0.34952770127409, 0.360950035167167, 0.405544840305818, 0.392077290755861,     0.351843142228657, 0.389587749152396, 0.296831875970954,     0.278189123852046, 0.401199725613888, 0.345470884534849,     0.535819388415119, 0.377879976616456, 0.421883231751214,     0.363040923344196, 0.353601158454398, 0.444974607764465,     0.37740338127171, 0.346878222668024, 0.430792573987824, 0.514056435232734,     0.490652621389815, 0.389723282525751, 0.327312659770097,     0.433128071961404, 0.500584993819327, 0.33432486510994, 0.302377961042196,     0.400620543245386, 0.519718800892541, 0.409860185427655,     0.612740960051237, 0.46773732125286, 0.3283683674862, 0.296592874399807,     0.404260235802009, 0.360501506993322, 0.478133119301571,     0.391583800863487, 0.398033443465976, 0.464610929527203,     0.304447049134146, 1, 0.374852313163235, 0.33321501277711,     0.391152797287436, 0.346633343564047, 0.311684152280412,     0.310335550936649, 0.299065802956677, 0.447833840281495,     0.263005846926338, 0.274584494685971, 0.525952889158032,     0.304464460205729, 0.462096808576593, 0.483828157383716,     0.398843547543359, 0.509269931498642, 0.457166984378677,     0.327908983353516, 0.400830877509795, 0.226834047671264,     0.314619898766486, 0.25411258758316, 0.388603659497802, 0.46159474417816,     0.362024824743135, 0.379314715247523, 0.324356625774601,     0.515442661526045, 0.29837669807433, 0.357353456258006, 0.490263296213725,     0.299788444681539, 0.344522190425964, 0.435615967196189,     0.39491068906324, 0.439620764085705, 0.399307749430619, 0.374742531193321,     0.447988088318429, 0.411833881407547, 0.324491690085723,     0.308552662257311, 0.463412595200713, 0.325416016668271,     0.259104396189838, 0.47657370289571, 0.382346922249383, 0.245772062062198,     0.341472042064985, 0.30199242533411, 0.376617139345469, 0.320439962164953,     0.354627755032702, 0.358276045441881, 0.378125125698768,     0.266286168909947, 0.361493658985148, 0.449793044861857,     0.442596997451395, 0.423905844116, 0.352583761773938, 0.389447143745473,     0.446995020088972, 0.347907097819105, 0.38558317445858, 0.515555610029914,     0.329616954197001, 0.519246773464114, 0.346518862235403,     0.537208833829691, 0.248140613736164, 0.339747015810712,     0.345811578389006, 0.370061796255698, 0.427618756097716,     0.512249044636454, 0.533391509236354, 0.507155764353581,     0.256791673779045, 0.374852313163235, 1, 0.404206272566688,     0.339205151858975, 0.414088267980447, 0.35418027515771, 0.380162077876035,     0.256506591691764, 0.284808399500649, 0.463304877479423,     0.528199031040408, 0.413559504866287, 0.441072971246811,     0.341330767535216, 0.293316279453307, 0.388891966167764,     0.374827523226031, 0.256858364331355, 0.244043465986086,     0.338313067634463, 0.305202112958166, 0.458301974351689,     0.337021622668303, 0.347906921103757, 0.251716724317832,     0.254681996528836, 0.264831978858677, 0.354491784406614,     0.404150976346324, 0.310380409513006, 0.322133456887272,     0.332419085155585, 0.311659414366143, 0.268944939824419,     0.323832101028935, 0.352648106370772, 0.308176677770636,     0.566905562252979, 0.314721099475238, 0.349332198792821,     0.345556465135609, 0.337918470366693, 0.253347797140881,     0.412285027826057, 0.429815867345687, 0.343346508613634,     0.586520323109763, 0.241270343328315, 0.409244199576061,     0.420393325007786, 0.347544399546969, 0.429708717132849,     0.40052335222816, 0.29293632653022, 0.56460032957623, 0.494078091649547,     0.466209235842989, 0.640387741239141, 0.285132102927869,     0.336817470888822, 0.353049499782787, 0.32097143802512, 0.433846994742441,     0.514804145911039, 0.338472522265478, 0.306925805178375,     0.569657824237588, 0.387595807214053, 0.295951673334827,     0.218470376183189, 0.422967172411417, 0.477123734621384,     0.205267194457864, 0.344368107377479, 0.371556089410611,     0.454979195953226, 0.543457070521974, 0.295260838023228,     0.436251493204021, 0.26991880754601, 0.33321501277711, 0.404206272566688,     1, 0.280876549705447, 0.471305719682645, 0.433071959771366,     0.306904442549382, 0.363507817165436, 0.373922432480966,     0.297909758575409, 0.467469997383045, 0.363599398468528,     0.372039841725685, 0.33540768707083, 0.3503362993812, 0.479036523736213,     0.387608844088642, 0.332425596889413, 0.381615125817972,     0.320491191137008, 0.279763333044582, 0.321891788782045,     0.460326888421684, 0.390213444165374, 0.388792182974706,     0.425148843742545, 0.364429826063787, 0.441776040717646,     0.26116759336719, 0.53059923831817, 0.399777697065959, 0.391737752980706,     0.354651949756366, 0.273117923161055, 0.352426051316158,     0.322518014689259, 0.463745775264974, 0.441958272192485,     0.319275879884923, 0.221676504499138, 0.372131291354973,     0.353506365557271, 0.610643901771935, 0.548987208681495,     0.369677780407956, 0.512328867437681, 0.233118881565033,     0.304238474992111, 0.437622600411372, 0.500790391440032,     0.325116956738902, 0.437878082268958, 0.235703352438032,     0.45314463499987, 0.339238710992388, 0.424117157561683, 0.267540877184048,     0.32983401690301, 0.396376136023435, 0.423711170448813, 0.364130331464085,     0.407941224024049, 0.489124169736661, 0.377640349378848,     0.391739115815566, 0.354165750698526, 0.249016132531847,     0.409029181871578, 0.34177449077937, 0.352099846215922, 0.258026308926809,     0.310408539290566, 0.39761127938527, 0.412545751678262, 0.478252274267074,     0.397189255733751, 0.394876932874636, 0.427111803956452,     0.332252348172561, 0.428862601301255, 0.391152797287436,     0.339205151858975, 0.280876549705447, 1, 0.387153914392755,     0.357044204636513, 0.586405518215142, 0.365688075224826,     0.303194293376276, 0.306156100019171, 0.264666884759951,     0.438964872914002, 0.420264140008079, 0.346181966065326,     0.296852020942104, 0.364731556045478, 0.531156904742309,     0.469047754444965, 0.357934850899255, 0.322510103879218,     0.344948516119353, 0.366762585584641, 0.302071624477874,     0.36291858234296, 0.393168869153213, 0.352493480835699, 0.353868260854153,     0.386352552732959, 0.484020975626074, 0.375756064751233,     0.311037696931737, 0.408669190084511, 0.385478191827157,     0.72102370488261, 0.302788341045775, 0.404321314995371, 0.339227143823941,     0.36315681925593, 0.468605025148932, 0.440748039178, 0.505829332692671,     0.406730458780709, 0.474337402902826, 0.35617250331797, 0.404071703849155,     0.3597913246364, 0.481554528315806, 0.425485603241679, 0.354246679896905,     0.343507206666107, 0.343087553226269, 0.362036454401059,     0.39458705823297, 0.38537111879656, 0.359232805311167, 0.48334182331471,     0.364664260583007, 0.416751752181084, 0.528833088762952,     0.32874784465926, 0.405447215512611, 0.447293203103938, 0.374182090671808,     0.36649895428507, 0.300116320018611, 0.364186947127395, 0.352505841567058,     0.392911183897005, 0.371756016617431, 0.321892722809907,     0.344559817328734, 0.336106035475372, 0.321670223010481,     0.385162602094009, 0.384999120089978, 0.365925215234178,     0.467985224387218, 0.319151203792993, 0.39054394165865, 0.335601369502494,     0.346633343564047, 0.414088267980447, 0.471305719682645,     0.387153914392755, 1, 0.406236518153185, 0.374127122521683,     0.434778262632036, 0.363187581514297, 0.420456290975623,     0.402483682821042, 0.418047036906213, 0.470249273028858,     0.410441490552231, 0.392045525150967, 0.390920311544268,     0.397285010229443, 0.327565570206912, 0.389412938586179,     0.385328613282998, 0.315581616212105, 0.504835880783483,     0.441805123125176, 0.404810038686405, 0.432851045515491,     0.518001738988487, 0.482900040125417, 0.285184583936072,     0.324522263883232, 0.419070391560853, 0.318495577957439,     0.429759152034647, 0.359601746992979, 0.413625580096817,     0.311201298723664, 0.376678302639141, 0.377245463321891,     0.429239790451219, 0.275168852234961, 0.411200592162665,     0.326671604912396, 0.515673105980981, 0.356234462587676,     0.430963008240442, 0.329855464276744, 0.397416949494448,     0.411026900473635, 0.350709112610215, 0.356872702108935,     0.29578045140542, 0.36601923031737, 0.250405281759303, 0.356521274853713,     0.309065657581823, 0.322998871928762, 0.387303589240894,     0.360526484588017, 0.306603578633936, 0.297659039890085,     0.315132553420445, 0.305060041608197, 0.305270259162462,     0.27273857188971, 0.339215378616167, 0.388777103436491, 0.317997660721834,     0.308103127474207, 0.399831009096994, 0.335060693042868,     0.308515181891721, 0.307172383926982, 0.298605028102179,     0.248800614479788, 0.295078350772371, 0.361819120342064,     0.355839264973249, 0.324749416739068, 0.286067043808622,     0.4490306945862, 0.382396568294765, 0.311684152280412, 0.35418027515771,     0.433071959771366, 0.357044204636513, 0.406236518153185,     1, 0.35878374766233, 0.349992962045622, 0.443375249651534,     0.412538284885182, 0.414509152468, 0.433566128850791, 0.391141748393677,     0.298019147991371, 0.256230823180934, 0.387113482444467,     0.333426097609498, 0.260777768096633, 0.30822197653861, 0.380407911579883,     0.330387611269912, 0.446765614421779, 0.500272628840602,     0.276235033342754, 0.302999460944017, 0.308011173162281,     0.344125478795825, 0.424994488339053, 0.397259999157921,     0.273094601785607, 0.420489817658461, 0.461927287784447,     0.450664407964065, 0.347351000614243, 0.363951558118977,     0.27442978776443, 0.295831677043954, 0.348861096298628, 0.440176297565083,     0.314117320859563, 0.352148408679815, 0.303739686609177,     0.587994597202802, 0.477887501791495, 0.320369830841351,     0.360667695739485, 0.376798441031134, 0.378334717147083,     0.483230925944606, 0.389969716368005, 0.50515251822318, 0.35447673910858,     0.332356835554697, 0.543168503609975, 0.403970690035888,     0.424561216507938, 0.306987988462374, 0.269345372147926,     0.401233179516982, 0.429010633575043, 0.437196561768736,     0.325888136950144, 0.331698170547298, 0.308696897697507,     0.540289033550349, 0.329196957333988, 0.329672418268527,     0.333179269991316, 0.433744121322528, 0.266053111491291,     0.336095013933502, 0.291222793545324, 0.465914426877675,     0.35855168344864, 0.424946242286206, 0.41366330512881, 0.477192253092815,     0.40643201495547, 0.285073360580731, 0.46792017902561, 0.310335550936649,     0.380162077876035, 0.306904442549382, 0.586405518215142,     0.374127122521683, 0.35878374766233, 1, 0.412126351448263,     0.324062366743849, 0.447823178145129, 0.431695487677602,     0.396449574767779, 0.459519641979553, 0.346902148990481,     0.299581862202334, 0.403272744125441, 0.328278657576187,     0.38475925718079, 0.301595155110805, 0.471639165674467, 0.37222388766326,     0.449685466337617, 0.420415172262529, 0.295351948735662,     0.288286412495548, 0.364740450456035, 0.371529169873655,     0.272984428552404, 0.407655584709217, 0.291341880319474,     0.478129240464907, 0.290816477264851, 0.423237938362848,     0.616977088214167, 0.276472902294866, 0.304176279382059,     0.263967108685925, 0.366674203518327, 0.411838281203822,     0.377215273825263, 0.344771023498971, 0.453631114158723,     0.371141701249292, 0.276475955255443, 0.415030881394498,     0.376541589052998, 0.360538913350434, 0.446116558367057,     0.396367586949047, 0.383231367786824, 0.4079717374237, 0.282957960020735,     0.42384592856917, 0.283324280007576, 0.354437670044827, 0.390622560944727,     0.390834931144608, 0.297952583865622, 0.363519540686286,     0.267784575454668, 0.471650310809378, 0.257623673185627,     0.301540995675257, 0.349286969574976, 0.359278788942995,     0.266773793023446, 0.268292745864803, 0.365661102539182,     0.294392899649034, 0.358254729700473, 0.374758402741214,     0.47628426916583, 0.33097114679109, 0.587234215299441, 0.227206828326588,     0.262539249921557, 0.331320647596372, 0.261295436620486,     0.287941880804957, 0.453878304695138, 0.299065802956677,     0.256506591691764, 0.363507817165436, 0.365688075224826,     0.434778262632036, 0.349992962045622, 0.412126351448263,     1, 0.57627411003899, 0.307268980436912, 0.375587313975664,     0.400091632161907, 0.448886416170507, 0.453913606759599,     0.437864696577507, 0.471566210865333, 0.32425027699558, 0.478428572581529,     0.440024381516709, 0.574316481242451, 0.301464205151609,     0.370728285549513, 0.573742734151842, 0.470325612424311,     0.368865993548665, 0.396222543278948, 0.490002022514339,     0.340661841051923, 0.403907143173963, 0.361767399183978,     0.460263885729958, 0.436616437690402, 0.334458300733376,     0.390036855467417, 0.457402469321134, 0.370025993483113,     0.383865644077238, 0.316578293653816, 0.420318168924518,     0.443228959113693, 0.367833925264066, 0.576433079224612,     0.370524028202691, 0.303756225998486, 0.345770508586537,     0.34101872822172, 0.463999447780785, 0.432022146344737, 0.333528600055771,     0.370816640362337, 0.484470964893851, 0.264621146149739,     0.562867483330317, 0.300892691402529, 0.394455482097662,     0.429888740652136, 0.57164090652778, 0.331414320336606, 0.34371461173278,     0.281903625394239, 0.359739762123308, 0.242329507765217,     0.301253208428476, 0.337401340052159, 0.374877165993608,     0.306019910350667, 0.356175076750175, 0.336499610664605,     0.302732542162642, 0.357978978558136, 0.528537053452524,     0.421384100416208, 0.331234128089681, 0.460865186721627,     0.29890940577375, 0.324676361367064, 0.263406006730539, 0.307013142170536,     0.445898791328571, 0.387435638051996, 0.447833840281495,     0.284808399500649, 0.373922432480966, 0.303194293376276,     0.363187581514297, 0.443375249651534, 0.324062366743849,     0.57627411003899, 1, 0.297073439528758, 0.420200762779206,     0.429072935510499, 0.377603903500202, 0.56764976351548, 0.543276368241288,     0.40344154288855, 0.341280446521005, 0.431599905757073, 0.405429085016317,     0.547630310344146, 0.288598089003904, 0.394093937353884,     0.518211613308776, 0.39663206175101, 0.422649651844757, 0.372036830399564,     0.52185029817225, 0.406405599002374, 0.46292578838991, 0.348825759079753,     0.44921710892717, 0.591863348454335, 0.414101480717357, 0.324011182959597,     0.498778193728995, 0.406699139190972, 0.451661285620459,     0.32814633720731, 0.326116538421565, 0.5292214641278, 0.499276838661037,     0.320483155476056, 0.411036325245667, 0.331214652657574,     0.225101337995788, 0.402976772774062, 0.502385002714462,     0.377634265131771, 0.242789384491207, 0.207360724624613,     0.499926003815269, 0.31408704531502, 0.444243265347014, 0.509885219978796,     0.338600119293738, 0.333950920721483, 0.329509053205511,     0.257826729232657, 0.412696206760504, 0.442858357364931,     0.515652811103503, 0.343297296325024, 0.284994942207461,     0.221165874990155, 0.419684096321587, 0.419899877830755,     0.323339331062287, 0.243544380771061, 0.522344561119342,     0.299083573149694, 0.452018420672313, 0.293227524340522,     0.366527169080359, 0.339063327784209, 0.356464184137332,     0.277067082221274, 0.311838114106659, 0.480113729951078,     0.301956731906249, 0.430942111003908, 0.263005846926338,     0.463304877479423, 0.297909758575409, 0.306156100019171,     0.420456290975623, 0.412538284885182, 0.447823178145129,     0.307268980436912, 0.297073439528758, 1, 0.511309896891398,     0.382490059974876, 0.541323978888699, 0.294487758996063,     0.309443494991119, 0.344956209628697, 0.17000243474071, 0.247453369143612,     0.306987047956444, 0.518886837870997, 0.46904262878094, 0.623397996263839,     0.510945971243338, 0.347428802893904, 0.28425388359926, 0.377719152541891,     0.39240630196258, 0.359204199427607, 0.276438613381782, 0.264192128274437,     0.521649681011524, 0.336257153813418, 0.559975381969668,     0.349830488922625, 0.380232944719172, 0.382615273844316,     0.305476623618968, 0.418170331080252, 0.492597489183583,     0.415428441260639, 0.41056805631188, 0.325568246911218, 0.324029774690403,     0.357974346074065, 0.319399355273752, 0.323072705905642,     0.73122443783871, 0.322665523276127, 0.284926963508125, 0.307171347767888,     0.450253517819809, 0.295177764484398, 0.622151929393807,     0.385044354606884, 0.380867336309633, 0.475159486194837,     0.486946738579489, 0.337737167008658, 0.340781854274323,     0.40485487005305, 0.442191976690277, 0.299317469891856, 0.368575796997157,     0.293303865145202, 0.446135787180712, 0.493466232856099,     0.511031935702728, 0.286991243979635, 0.472575280801792,     0.24979056140807, 0.531938414111018, 0.387077480001544, 0.341666769535471,     0.378038757042644, 0.369138390785432, 0.460725559655823,     0.411586937910297, 0.538362690264634, 0.461965528721671,     0.443782860986776, 0.274584494685971, 0.528199031040408,     0.467469997383045, 0.264666884759951, 0.402483682821042,     0.414509152468, 0.431695487677602, 0.375587313975664, 0.420200762779206,     0.511309896891398, 1, 0.302669626906411, 0.463744525243887,     0.393561630242765, 0.374761976530227, 0.338802951266735,     0.282404016365627, 0.319537427944214, 0.335808388641301,     0.489407952805885, 0.425482868963477, 0.422157013056165,     0.5069812744987, 0.329226947334976, 0.322756113347939, 0.380948971398897,     0.355765151818476, 0.439017119337574, 0.340092496648983,     0.480792240407483, 0.37041467356109, 0.310672816500737, 0.508953330871345,     0.278486446364263, 0.369677508298573, 0.407241365221599,     0.305866255287778, 0.50309841233193, 0.284993683226818, 0.479311593664136,     0.415891077915214, 0.484552428308564, 0.437807913708281,     0.428924886745896, 0.33546904468916, 0.401935036559923, 0.286415918345937,     0.59728800380817, 0.318667050468593, 0.377011012081132, 0.336392749380333,     0.42345267650647, 0.292069795178892, 0.376392074949338, 0.379989645563461,     0.401627986509937, 0.336440389931091, 0.344418124579912,     0.497106251184181, 0.32247371634391, 0.467739519580915, 0.384657566216169,     0.318193688687186, 0.472755975586515, 0.386918976154755,     0.286866535741786, 0.42918839017573, 0.490806511455212, 0.397381582057682,     0.441060345621005, 0.398634586395799, 0.369528231258887,     0.347189695587107, 0.414326672836584, 0.429835562156619,     0.369129647029518, 0.4108152970241, 0.317064996203872, 0.456926821225567,     0.347578756929089, 0.525952889158032, 0.413559504866287,     0.363599398468528, 0.438964872914002, 0.418047036906213,     0.433566128850791, 0.396449574767779, 0.400091632161907,     0.429072935510499, 0.382490059974876, 0.302669626906411,     1, 0.598704858911662, 0.382359654351463, 0.362888885542986,     0.667012505312771, 0.449883100970586, 0.39974215160732, 0.441136270272344,     0.460940901707625, 0.28608797662402, 0.37595861454628, 0.493358019822265,     0.423677871171508, 0.314735186234211, 0.306851209128212,     0.482051602297883, 0.351552040477851, 0.415252162368446,     0.33160100896793, 0.465183117087681, 0.494060631131439, 0.340406557112982,     0.387431439914789, 0.385168519640809, 0.320021766478832,     0.415136401888453, 0.341596952262116, 0.351322719664274,     0.525194670105282, 0.517320655013493, 0.460046811581744,     0.462325024207163, 0.33661960355041, 0.317951716373332, 0.385136253787169,     0.432762858889789, 0.439408663041135, 0.226546099202032,     0.261112249917718, 0.319919695870201, 0.434725619994072,     0.333633450622671, 0.483395638920142, 0.316211282771553,     0.453840392239878, 0.380743689449959, 0.319159930835421,     0.570589559916839, 0.308855861821418, 0.527721246312615,     0.429114758409602, 0.295834844310857, 0.282769040666747,     0.336192053884014, 0.335030868841366, 0.379839760901264,     0.347426121026858, 0.48747979838586, 0.296819947304115, 0.424818359515661,     0.397007644273739, 0.338751296160076, 0.384053180748637,     0.448622446063141, 0.337214100378338, 0.400219856501905,     0.441069005724339, 0.433898302678356, 0.366438684389033,     0.304464460205729, 0.441072971246811, 0.372039841725685,     0.420264140008079, 0.470249273028858, 0.391141748393677,     0.459519641979553, 0.448886416170507, 0.377603903500202,     0.541323978888699, 0.463744525243887, 0.598704858911662,     1, 0.40987625791557, 0.389632020163512, 0.533694692505835,     0.316746729326496, 0.371127385664975, 0.3793952190566, 0.435317631275311,     0.418579191776278, 0.48265297664819, 0.624285299003589, 0.393475922748403,     0.323755775082105, 0.38855809067697, 0.493935530041098, 0.366711925361666,     0.35450258601269, 0.43280189040076, 0.403139766141682, 0.437179314559915,     0.482273761494824, 0.408743864155756, 0.356910379749274,     0.438756173933672, 0.349083936182512, 0.446500501695625,     0.539604573374858, 0.340375451986088, 0.384493314080831,     0.494771336521055, 0.344877340754677, 0.282812363841115,     0.435552988213723, 0.289803926832722, 0.396010663453984,     0.413995419078678, 0.291109442463175, 0.387975182139063,     0.30360233289928, 0.288555159247445, 0.475162638525731, 0.357609696217764,     0.339773818697861, 0.512188761069394, 0.365674885988076,     0.438396967224458, 0.544096550953863, 0.253383184556368,     0.433479364642038, 0.354054373003187, 0.331524182227085,     0.367356472738048, 0.26389573145065, 0.321728490464377, 0.352570975536432,     0.332384985004236, 0.331579248268185, 0.390302969846393,     0.488742218550396, 0.340451777253129, 0.406258669206966,     0.353686549836041, 0.312956451937293, 0.386705540964008,     0.34714051918687, 0.336906031578591, 0.384088038378648, 0.417493198350007,     0.462096808576593, 0.341330767535216, 0.33540768707083, 0.346181966065326,     0.410441490552231, 0.298019147991371, 0.346902148990481,     0.453913606759599, 0.56764976351548, 0.294487758996063, 0.393561630242765,     0.382359654351463, 0.40987625791557, 1, 0.640194785447673,     0.355752369685262, 0.405362692538731, 0.42260629330302, 0.364482521439092,     0.424058485505932, 0.318800735724858, 0.320107008737153,     0.416458599143118, 0.391984725926412, 0.465545302412298,     0.425202479910653, 0.402264223589462, 0.367091729818251,     0.372937381150714, 0.281757566056729, 0.360226119377147,     0.416154881348757, 0.319247643647939, 0.333842648967073,     0.367859491583363, 0.365084823403618, 0.42608373081173, 0.395661797548186,     0.518048239226765, 0.394786428129171, 0.362799547050396,     0.385137346781347, 0.362829145400469, 0.296417104842061,     0.375411232875351, 0.275141932380817, 0.415754829811407,     0.360098879022421, 0.278465323433659, 0.364968184438283,     0.319586037406405, 0.403649952146545, 0.411839184300612,     0.41420274338558, 0.431550772269805, 0.538353594597184, 0.465654646484322,     0.456138404011758, 0.472084788180577, 0.293128368023245,     0.372280167998769, 0.406787631751308, 0.381961785857394,     0.347235335839783, 0.227031739606446, 0.27534000233625, 0.405722000083033,     0.383701579461422, 0.346888657495897, 0.450736628636245,     0.568063425949975, 0.528673672810772, 0.352007646076051,     0.453489316039036, 0.325596403410208, 0.404198839835402,     0.400595559437389, 0.35110060354556, 0.328497284878521, 0.360267728674292,     0.483828157383716, 0.293316279453307, 0.3503362993812, 0.296852020942104,     0.392045525150967, 0.256230823180934, 0.299581862202334,     0.437864696577507, 0.543276368241288, 0.309443494991119,     0.374761976530227, 0.362888885542986, 0.389632020163512,     0.640194785447673, 1, 0.454991498550843, 0.315516287091008,     0.488967472291087, 0.380939613006347, 0.403829372985636,     0.247185006823347, 0.336538420284327, 0.398058399770637,     0.409229172496446, 0.484354607494615, 0.446552579976039,     0.466342645757901, 0.42366712819284, 0.292103743951875, 0.359336260006501,     0.34375985814244, 0.435253616882338, 0.369218788219223, 0.317187827484521,     0.425496194888438, 0.51349286367334, 0.53972288986545, 0.457488853104554,     0.279226054558558, 0.483045153606992, 0.305426284050877,     0.392366106995177, 0.331445807088986, 0.483779159602507,     0.414707515817254, 0.304654627391929, 0.345982708925755,     0.474136490862817, 0.334731230893309, 0.41043501848359, 0.349213500798831,     0.554412031178849, 0.275089242880737, 0.34327298408077, 0.445146263412307,     0.366631898436175, 0.358048557490613, 0.461727407018027,     0.424409399560979, 0.294398148947117, 0.37837697210773, 0.377745070059424,     0.386155527628987, 0.427441288628067, 0.311467135900234,     0.190153550641753, 0.459514468672061, 0.479524364086648,     0.354111231954472, 0.407792291334301, 0.507237689712876,     0.488292104640457, 0.309526206413975, 0.376941775001252,     0.37353384442721, 0.370502830870038, 0.602367797669066, 0.319683704589464,     0.369120685419464, 0.267297429450036, 0.398843547543359,     0.388891966167764, 0.479036523736213, 0.364731556045478,     0.390920311544268, 0.387113482444467, 0.403272744125441,     0.471566210865333, 0.40344154288855, 0.344956209628697, 0.338802951266735,     0.667012505312771, 0.533694692505835, 0.355752369685262,     0.454991498550843, 1, 0.382525007745653, 0.491496224229234,     0.39082927791413, 0.411123961993182, 0.279125025746543, 0.308967237051316,     0.4457993515867, 0.378683076136727, 0.276569219549413, 0.372308406952919,     0.432220994667695, 0.427267362733141, 0.353284125715632,     0.364494360895776, 0.466262132838202, 0.443596774180042,     0.373535082231557, 0.354017927874961, 0.471565221726355,     0.351779590142785, 0.550234380201541, 0.459625794907831,     0.386531523891434, 0.238889943152848, 0.327384009820995,     0.367692186063551, 0.396777960247772, 0.403128822827149,     0.594254451492258, 0.404667900326529, 0.256158376523715,     0.357850811702635, 0.458912637743551, 0.536588844089966,     0.237464614272215, 0.439711413319469, 0.277021794221197,     0.277364300757757, 0.294840273063327, 0.3968541765081, 0.285503867613974,     0.509145558043713, 0.409520454825938, 0.352056886870957,     0.274295607589746, 0.466903588353193, 0.45882115734262, 0.532680839735413,     0.305348815610984, 0.337073932911785, 0.312851833469179,     0.494745059086376, 0.353761670884222, 0.365653966760033,     0.241947904636449, 0.309524228745608, 0.283363293187412,     0.366878394125912, 0.482892423135991, 0.464031032830209,     0.415082740482512, 0.317272681472839, 0.473297417334235,     0.325213210962866, 0.509269931498642, 0.374827523226031,     0.387608844088642, 0.531156904742309, 0.397285010229443,     0.333426097609498, 0.328278657576187, 0.32425027699558, 0.341280446521005,     0.17000243474071, 0.282404016365627, 0.449883100970586, 0.316746729326496,     0.405362692538731, 0.315516287091008, 0.382525007745653,     1, 0.438842023519785, 0.381767007259224, 0.269274361367625,     0.262762420937984, 0.248593786109264, 0.265668966001044,     0.367276494580753, 0.392028552292757, 0.361933409301154,     0.377874072770153, 0.379790225201508, 0.503157693217617,     0.425997888713638, 0.253311563373566, 0.402175282848238,     0.30067242493133, 0.42150760184913, 0.285296388967803, 0.311418930092857,     0.362524803566314, 0.348200605926668, 0.31119174484913, 0.268093331892879,     0.382255249902098, 0.375555923689399, 0.384925286269241,     0.464241210011649, 0.47811085955349, 0.355785822830235, 0.292154351300706,     0.315607505039331, 0.38582967464313, 0.623577551503296, 0.404372321287183,     0.520355936525539, 0.381058385198461, 0.27069172784765, 0.410077877893817,     0.374960058426113, 0.494770312253864, 0.390337906335804,     0.36231556964011, 0.342711555772021, 0.474903693043738, 0.348659550487573,     0.586603035149718, 0.41980572407996, 0.401143224664378, 0.330327952604214,     0.370395058639649, 0.454172854813823, 0.395123321650682,     0.40782556545636, 0.367468483951415, 0.478057525363121, 0.335281994358651,     0.517514391888972, 0.353124107063109, 0.453532555338846,     0.397380692129408, 0.333859893472906, 0.353228369085027,     0.417190567801219, 0.457166984378677, 0.256858364331355,     0.332425596889413, 0.469047754444965, 0.327565570206912,     0.260777768096633, 0.38475925718079, 0.478428572581529, 0.431599905757073,     0.247453369143612, 0.319537427944214, 0.39974215160732, 0.371127385664975,     0.42260629330302, 0.488967472291087, 0.491496224229234, 0.438842023519785,     1, 0.550590788807478, 0.474063250868544, 0.338426789308344,     0.244520406338211, 0.314588402881808, 0.47580543725646, 0.513925891068098,     0.387009429387529, 0.401670546617516, 0.447751081257767,     0.403105221041836, 0.43165260542323, 0.405793111651854, 0.433398319014474,     0.35897213989558, 0.410912451560886, 0.591090623723466, 0.438561617562002,     0.514985655328913, 0.369452099366406, 0.254316215754273,     0.310478303127039, 0.429488136012502, 0.414911450768174,     0.353804960028931, 0.321286824867829, 0.47001953219957, 0.474273552380606,     0.343683835006528, 0.309807859531412, 0.413924508120311,     0.428425677053257, 0.353485369505127, 0.400721476938507,     0.36147056644664, 0.247388263900323, 0.413759728710736, 0.305907021609067,     0.581029821258073, 0.438047329230376, 0.279726983498053,     0.261243419304299, 0.484462207475431, 0.441557946135667,     0.362146837053063, 0.422228190694129, 0.425758161414823,     0.426162234868928, 0.34917851178471, 0.387804110208602, 0.318347784856052,     0.286732625132832, 0.279704150080022, 0.515921702009977,     0.337103106493504, 0.467979003824068, 0.443747628225499,     0.399817447031918, 0.272932809621309, 0.286825239272989,     0.360976002107673, 0.407933921504182, 0.327908983353516,     0.244043465986086, 0.381615125817972, 0.357934850899255,     0.389412938586179, 0.30822197653861, 0.301595155110805, 0.440024381516709,     0.405429085016317, 0.306987047956444, 0.335808388641301,     0.441136270272344, 0.3793952190566, 0.364482521439092, 0.380939613006347,     0.39082927791413, 0.381767007259224, 0.550590788807478, 1,     0.463446662695161, 0.390548658648419, 0.277801461154522,     0.449263292479408, 0.485154180501501, 0.485605129210873,     0.389552849135953, 0.547208586427984, 0.391080804496549,     0.311765132154952, 0.468020867845689, 0.43527785786378, 0.431012967619929,     0.350868030167918, 0.375594169759581, 0.481257479382895,     0.361279455198554, 0.575920176345907, 0.221377661156412,     0.370891973560452, 0.458548177770461, 0.4228434844545, 0.449882636460958,     0.391340205622521, 0.315196923804381, 0.31023912344604, 0.353546998511795,     0.44795494689873, 0.448009001422739, 0.324766941894297, 0.422530819953604,     0.643604158523013, 0.339916711831882, 0.541511997814204,     0.316864079114108, 0.445380444736061, 0.355178790437248,     0.507090430084036, 0.275332512747944, 0.362103043828181,     0.444817596918805, 0.610482089188157, 0.276023616545442,     0.338594297269917, 0.322598689264213, 0.610473841632644,     0.373373492562596, 0.322478706528225, 0.324009934819092,     0.48671608626516, 0.400972634823585, 0.461538448340101, 0.441781965399061,     0.346706409630608, 0.565791093082641, 0.317926044878619,     0.340501965593701, 0.307599340692402, 0.362396208030722,     0.384631703677729, 0.475696861981871, 0.400830877509795,     0.338313067634463, 0.320491191137008, 0.322510103879218,     0.385328613282998, 0.380407911579883, 0.471639165674467,     0.574316481242451, 0.547630310344146, 0.518886837870997,     0.489407952805885, 0.460940901707625, 0.435317631275311,     0.424058485505932, 0.403829372985636, 0.411123961993182,     0.269274361367625, 0.474063250868544, 0.463446662695161,     1, 0.363278564366825, 0.519248982630327, 0.516883079212771,     0.502373200402312, 0.411835544057413, 0.349643074875683,     0.490087572604226, 0.365546981778343, 0.400469087324412,     0.295357979400817, 0.674036844358188, 0.471430015233684,     0.468389847666759, 0.34025888902648, 0.606120093745207, 0.414556881384346,     0.422406210557242, 0.375821331637035, 0.287096639297258,     0.273718396504909, 0.471259982389482, 0.381397586986246,     0.416092140279557, 0.304445037002189, 0.350759772396658,     0.548832474979106, 0.385361081194036, 0.207946132071598,     0.355929206421163, 0.317742182947181, 0.33729166692978, 0.297689487082634,     0.442647992088478, 0.386248821720518, 0.232736529416598,     0.253341563388689, 0.3807612826046, 0.322226454025342, 0.262405575115025,     0.335616567272506, 0.36186565975458, 0.42085937467292, 0.293148450050276,     0.221161149668346, 0.358015111597039, 0.482158439403269,     0.269087791409431, 0.195691911539262, 0.475945544919275,     0.227307893923147, 0.267364885952544, 0.344256146634333,     0.447334049571328, 0.346218271324371, 0.413454323786196,     0.274912708670139, 0.232043506402833, 0.490178599021891,     0.327295774740354, 0.433420876923105, 0.226834047671264,     0.305202112958166, 0.279763333044582, 0.344948516119353,     0.315581616212105, 0.330387611269912, 0.37222388766326, 0.301464205151609,     0.288598089003904, 0.46904262878094, 0.425482868963477, 0.28608797662402,     0.418579191776278, 0.318800735724858, 0.247185006823347,     0.279125025746543, 0.262762420937984, 0.338426789308344,     0.390548658648419, 0.363278564366825, 1, 0.355473632642212,     0.392313304783829, 0.361939084753939, 0.297409219881062,     0.469921394384849, 0.405045509097441, 0.369099362848382,     0.349126058121376, 0.41378218775315, 0.327746788571337, 0.276225759681249,     0.520226095423541, 0.432299853594745, 0.353263444677808,     0.391222136285234, 0.349293704714464, 0.308010693271176,     0.43397214164055, 0.522119258004252, 0.490705564191068, 0.38240867687876,     0.543073912100211, 0.361569524748941, 0.243831326057958,     0.372792011773145, 0.455060108659449, 0.340534013640832,     0.24854673870225, 0.301396392649928, 0.464944020313762, 0.37534699240736,     0.373496499235913, 0.517359035536247, 0.408718935376094,     0.439852542503389, 0.323590615885758, 0.279280042239319,     0.406873546639325, 0.529624435057637, 0.415769707775553,     0.348469170422302, 0.308750688977003, 0.290877733713748,     0.426752454433996, 0.425278479777912, 0.316832541656433,     0.289186763835598, 0.523062318571775, 0.294283579229353,     0.36841323272411, 0.356526063371186, 0.378135352194846, 0.448042569006347,     0.322054146695993, 0.278219202581753, 0.305762837444941,     0.395140600374798, 0.360932017943044, 0.327669444235445,     0.314619898766486, 0.458301974351689, 0.321891788782045,     0.366762585584641, 0.504835880783483, 0.446765614421779,     0.449685466337617, 0.370728285549513, 0.394093937353884,     0.623397996263839, 0.422157013056165, 0.37595861454628, 0.48265297664819,     0.320107008737153, 0.336538420284327, 0.308967237051316,     0.248593786109264, 0.244520406338211, 0.277801461154522,     0.519248982630327, 0.355473632642212, 1, 0.510940358092698,     0.376931385428521, 0.372126499593104, 0.346980047203657,     0.468331246373376, 0.325847140259895, 0.332433586969455,     0.29193359139964, 0.474871288904317, 0.443305875851886, 0.509612093642766,     0.392613793825268, 0.375673938009569, 0.458723881307934,     0.331678225693806, 0.453674601810652, 0.40967588227666, 0.522371110891469,     0.477729525548367, 0.507669744124442, 0.367894829897913,     0.327393795957064, 0.355691498556481, 0.490638867641417,     0.561499249000616, 0.405006175433509, 0.356255376049337,     0.265485765113821, 0.373315421320309, 0.329816506365632,     0.465121344217777, 0.415817138789634, 0.372559769463346,     0.512712048890206, 0.42535880085296, 0.327461132811953, 0.394493530091563,     0.297563903321449, 0.487171013298583, 0.35888401720919, 0.274951739571245,     0.346221730973264, 0.382589472244963, 0.381432136447303,     0.37927744789942, 0.314488094669985, 0.392331858614733, 0.26892982367399,     0.397068502060574, 0.472523901463921, 0.331158645329332,     0.435034343660426, 0.323667862140289, 0.33181057197039, 0.331303744802705,     0.325642671354701, 0.393931462569191, 0.469657781965423,     0.25411258758316, 0.337021622668303, 0.460326888421684, 0.302071624477874,     0.441805123125176, 0.500272628840602, 0.420415172262529,     0.573742734151842, 0.518211613308776, 0.510945971243338,     0.5069812744987, 0.493358019822265, 0.624285299003589, 0.416458599143118,     0.398058399770637, 0.4457993515867, 0.265668966001044, 0.314588402881808,     0.449263292479408, 0.516883079212771, 0.392313304783829,     0.510940358092698, 1, 0.442514215715868, 0.360072408533785,     0.398431547129502, 0.556758832004389, 0.438773378237182,     0.298040985130004, 0.38636765617688, 0.541822594993069, 0.396985668777864,     0.482481388887287, 0.318409777473531, 0.405363502972021,     0.334814682478143, 0.356512046979431, 0.336286307476007,     0.368409025913358, 0.37156698352464, 0.599411928330124, 0.3976310401524,     0.360183787587976, 0.322771525787435, 0.369064419792001,     0.445146477321064, 0.412402297424514, 0.416753558710587,     0.351466242618472, 0.447395406506735, 0.335397252015276,     0.457898269830376, 0.385011170443617, 0.281262225648586,     0.331645365064306, 0.320673506139099, 0.485144499616285,     0.451036838803023, 0.332774619477434, 0.393129809113563,     0.503543465200614, 0.407707808317667, 0.418279472528856,     0.537198572400217, 0.319220569308758, 0.388724367391769,     0.362249656971336, 0.298896863268346, 0.420450654472018,     0.379488282721107, 0.40690396514658, 0.506045525361989, 0.294723340021442,     0.723218779968468, 0.315902220700467, 0.320591357305613,     0.313539444162286, 0.346448868283435, 0.309711211954988,     0.348984422350266, 0.388603659497802, 0.347906921103757,     0.390213444165374, 0.36291858234296, 0.404810038686405, 0.276235033342754,     0.295351948735662, 0.470325612424311, 0.39663206175101, 0.347428802893904,     0.329226947334976, 0.423677871171508, 0.393475922748403,     0.391984725926412, 0.409229172496446, 0.378683076136727,     0.367276494580753, 0.47580543725646, 0.485154180501501, 0.502373200402312,     0.361939084753939, 0.376931385428521, 0.442514215715868,     1, 0.454861919196884, 0.406779534466844, 0.516549389726084,     0.350220724216359, 0.30566808074813, 0.453841378598077, 0.514843252764453,     0.503211724362686, 0.37604080239756, 0.318377653921884, 0.557001042688566,     0.505131038186426, 0.543714185679139, 0.316844768967691,     0.384570337891502, 0.331122724570433, 0.490125455960313,     0.43675020823548, 0.352228855095833, 0.284364617314733, 0.397897316315452,     0.395333416266961, 0.370074775928341, 0.269595279112533,     0.304645730554281, 0.538786581727079, 0.357162281520941,     0.456750638548985, 0.410966282836474, 0.336845377981388,     0.448134803860578, 0.515698376972145, 0.401008314520858,     0.444821440964189, 0.392269699092219, 0.386223794962346,     0.456808363110946, 0.407230808686679, 0.455013688096847,     0.39596835069355, 0.318800686103051, 0.428834436617881, 0.329138334875495,     0.441963858047086, 0.311926595937479, 0.409393606997448,     0.292347581647605, 0.414458352774869, 0.252800887382447,     0.437452257084543, 0.352424707945331, 0.422638981565152,     0.310328731371348, 0.340479663214117, 0.374010916257369,     0.375096457370247, 0.46159474417816, 0.251716724317832, 0.388792182974706,     0.393168869153213, 0.432851045515491, 0.302999460944017,     0.288286412495548, 0.368865993548665, 0.422649651844757,     0.28425388359926, 0.322756113347939, 0.314735186234211, 0.323755775082105,     0.465545302412298, 0.484354607494615, 0.276569219549413,     0.392028552292757, 0.513925891068098, 0.485605129210873,     0.411835544057413, 0.297409219881062, 0.372126499593104,     0.360072408533785, 0.454861919196884, 1, 0.442809069001296,     0.421373551055773, 0.38240286039722, 0.32553555809671, 0.368706065839053,     0.311387718375542, 0.551495074945622, 0.40977543269785, 0.345254829203811,     0.407949270341741, 0.500480662165344, 0.489677694441249,     0.344413251925236, 0.461683868547648, 0.308354611891084,     0.415949322132616, 0.329619618167902, 0.472416509917507,     0.285223235838423, 0.507452069412368, 0.420636857737076,     0.511223872093953, 0.307666060600522, 0.392914650115831,     0.341652773634789, 0.320434499237941, 0.404686210845251,     0.487856140128761, 0.503912717510667, 0.372666128333993,     0.428964890023813, 0.406578269550377, 0.542365198882993,     0.444153694186929, 0.364474296589482, 0.334968470871797,     0.477665417088085, 0.45084980489482, 0.290051690553553, 0.244345152636456,     0.32797623997104, 0.287439627880696, 0.351630921287603, 0.371863497773399,     0.298600846086598, 0.316479353944582, 0.409990087647104,     0.314588782862783, 0.378652158661084, 0.431366422547768,     0.288762467065881, 0.409595545592931, 0.415208140571283,     0.282498485481804, 0.387190221982307, 0.362024824743135,     0.254681996528836, 0.425148843742545, 0.352493480835699,     0.518001738988487, 0.308011173162281, 0.364740450456035,     0.396222543278948, 0.372036830399564, 0.377719152541891,     0.380948971398897, 0.306851209128212, 0.38855809067697, 0.425202479910653,     0.446552579976039, 0.372308406952919, 0.361933409301154,     0.387009429387529, 0.389552849135953, 0.349643074875683,     0.469921394384849, 0.346980047203657, 0.398431547129502,     0.406779534466844, 0.442809069001296, 1, 0.587552445533858,     0.378942199272603, 0.300108522139625, 0.450084946042331,     0.318746525356099, 0.380897145061454, 0.436696865639824,     0.489240467678059, 0.334743598875958, 0.407648263814054,     0.415538588733298, 0.412311411052543, 0.465779320415054,     0.443269072609031, 0.527989063543064, 0.426600988465129,     0.575809644482948, 0.259292975563137, 0.481907670512669,     0.480185106308731, 0.44432380179208, 0.434441920622334, 0.364531320739357,     0.323229326648304, 0.362877926041869, 0.424946603139474,     0.417112105144014, 0.38997414312378, 0.355250637493777, 0.365703355499436,     0.574407800013092, 0.462197818677563, 0.37991496560769, 0.364343134327555,     0.424757721016413, 0.418428219529517, 0.349017823250773,     0.337339373572064, 0.311208999773779, 0.341748530171662,     0.305922011702419, 0.339622277177613, 0.428190113790896,     0.350970633309189, 0.328274671520486, 0.472546927220662,     0.318729420513242, 0.528148388465743, 0.455393135682156,     0.246442537669244, 0.293052402413911, 0.352877637214597,     0.331112081440587, 0.397673312454481, 0.379314715247523,     0.264831978858677, 0.364429826063787, 0.353868260854153,     0.482900040125417, 0.344125478795825, 0.371529169873655,     0.490002022514339, 0.52185029817225, 0.39240630196258, 0.355765151818476,     0.482051602297883, 0.493935530041098, 0.402264223589462,     0.466342645757901, 0.432220994667695, 0.377874072770153,     0.401670546617516, 0.547208586427984, 0.490087572604226,     0.405045509097441, 0.468331246373376, 0.556758832004389,     0.516549389726084, 0.421373551055773, 0.587552445533858,     1, 0.356760541491137, 0.345629006536557, 0.424522561997859,     0.437053537677631, 0.445839469573201, 0.493647444236693,     0.417929171457189, 0.466070225090975, 0.424656600397055,     0.527436001467185, 0.293501569271501, 0.327538007678787,     0.304497227437223, 0.339189129306935, 0.397390016665107,     0.316777753751225, 0.462010422103298, 0.41430915657529, 0.468151064759586,     0.398860978690252, 0.217769733682875, 0.310609402813388,     0.411995462357539, 0.292858481656402, 0.467729530999687,     0.403702445013413, 0.328696154244616, 0.389745288094219,     0.493991041344711, 0.401351723375527, 0.467376774738128,     0.284363474586875, 0.376122206823425, 0.317903007595317,     0.380213542298453, 0.568386957295595, 0.368836835366889,     0.298071960570303, 0.330815942615761, 0.329426227836434,     0.36565589010411, 0.405662378335587, 0.341833597341158, 0.38006198898253,     0.498605064142923, 0.289967067130109, 0.374821072235454,     0.408718523466625, 0.386555375226958, 0.350310649134884,     0.455636559371266, 0.413177672204451, 0.41264281794022, 0.324356625774601,     0.354491784406614, 0.441776040717646, 0.386352552732959,     0.285184583936072, 0.424994488339053, 0.272984428552404,     0.340661841051923, 0.406405599002374, 0.359204199427607,     0.439017119337574, 0.351552040477851, 0.366711925361666,     0.367091729818251, 0.42366712819284, 0.427267362733141, 0.379790225201508,     0.447751081257767, 0.391080804496549, 0.365546981778343,     0.369099362848382, 0.325847140259895, 0.438773378237182,     0.350220724216359, 0.38240286039722, 0.378942199272603, 0.356760541491137,     1, 0.375899285364733, 0.408112925345555, 0.351578663358295,     0.415044057380153, 0.503664130988666, 0.333231363395066,     0.513217119928322, 0.421953106191328, 0.455338499986089,     0.517003507199868, 0.35947489210124, 0.356186201408988, 0.361763505538409,     0.494259313794908, 0.442180042818918, 0.327058275675807,     0.437084003159565, 0.334636224924518, 0.27906000329211, 0.366867933496914,     0.380262719676913, 0.487348887436544, 0.322299939136056,     0.299945640389573, 0.340516247175485, 0.282933211457711,     0.296118159456233, 0.301080411326013, 0.31079230597412, 0.281316057731658,     0.418227339434345, 0.387629143433347, 0.337594501166315,     0.284632426786563, 0.374069113753686, 0.358976247135214,     0.367109324243953, 0.300449472934291, 0.282975704313727,     0.447460958668977, 0.472325293266349, 0.443601115368732,     0.362150035618415, 0.258713690458013, 0.286676824075961,     0.40845455756047, 0.39177710093722, 0.381897620407199, 0.340865425488356,     0.466161028157254, 0.464749631611486, 0.330234996391108,     0.515442661526045, 0.404150976346324, 0.26116759336719, 0.484020975626074,     0.324522263883232, 0.397259999157921, 0.407655584709217,     0.403907143173963, 0.46292578838991, 0.276438613381782, 0.340092496648983,     0.415252162368446, 0.35450258601269, 0.372937381150714, 0.292103743951875,     0.353284125715632, 0.503157693217617, 0.403105221041836,     0.311765132154952, 0.400469087324412, 0.349126058121376,     0.332433586969455, 0.298040985130004, 0.30566808074813, 0.32553555809671,     0.300108522139625, 0.345629006536557, 0.375899285364733,     1, 0.287670243944614, 0.284368843599626, 0.491931160085529,     0.367758771106528, 0.469367824797281, 0.380146770327809,     0.378073214883332, 0.298559975918946, 0.421754462006751,     0.314346006805577, 0.246672946807969, 0.402220246440125,     0.300237589591624, 0.37599183886368, 0.376360417974815, 0.349760567961165,     0.454724091668981, 0.437697129856891, 0.211119919516182,     0.371765804723494, 0.402815742535891, 0.314660943098001,     0.452583127180601, 0.392927914662599, 0.349802805049335,     0.370639120063192, 0.392793982504922, 0.537621413592766,     0.458607898589687, 0.258445944649903, 0.336728543900712,     0.306259197479766, 0.440488368394376, 0.416801235556405,     0.387042916170891, 0.362001679934319, 0.484063657530764,     0.46684616730405, 0.340252377015428, 0.354294641084603, 0.206837798534269,     0.325650657046067, 0.606676602520519, 0.3178852680402, 0.491143024998004,     0.450904933460031, 0.451300307828077, 0.370277131936644,     0.405278942384212, 0.387483459922322, 0.325489948684954,     0.29837669807433, 0.310380409513006, 0.53059923831817, 0.375756064751233,     0.419070391560853, 0.273094601785607, 0.291341880319474,     0.361767399183978, 0.348825759079753, 0.264192128274437,     0.480792240407483, 0.33160100896793, 0.43280189040076, 0.281757566056729,     0.359336260006501, 0.364494360895776, 0.425997888713638,     0.43165260542323, 0.468020867845689, 0.295357979400817, 0.41378218775315,     0.29193359139964, 0.38636765617688, 0.453841378598077, 0.368706065839053,     0.450084946042331, 0.424522561997859, 0.408112925345555,     0.287670243944614, 1, 0.280856072830802, 0.357839292419227,     0.405981176472356, 0.395874030365288, 0.34162033931162, 0.506202234888458,     0.44391925981778, 0.335330003151391, 0.298921789471833, 0.399374375303164,     0.375233923544586, 0.356065884413039, 0.3424120384053, 0.411067896230931,     0.276425603903831, 0.375708137864692, 0.401054600618665,     0.421728520156186, 0.407709103132866, 0.342009726018063,     0.631096562335086, 0.382031061589368, 0.414849000930016,     0.317789081807868, 0.439762440786622, 0.30256883946341, 0.445993050635602,     0.346926851328165, 0.308654988525683, 0.40874588387348, 0.513258016877658,     0.286305324346685, 0.290484579728891, 0.398766572522872,     0.578318445739251, 0.319771368866361, 0.35645631902549, 0.295646076046653,     0.420072877879042, 0.276708297639067, 0.462590044245622,     0.460084659775437, 0.383567700272989, 0.461311763686277,     0.312348596046705, 0.358677167313946, 0.312656924324374,     0.261390387274391, 0.276043595311922, 0.397872708350876,     0.357353456258006, 0.322133456887272, 0.399777697065959,     0.311037696931737, 0.318495577957439, 0.420489817658461,     0.478129240464907, 0.460263885729958, 0.44921710892717, 0.521649681011524,     0.37041467356109, 0.465183117087681, 0.403139766141682, 0.360226119377147,     0.34375985814244, 0.466262132838202, 0.253311563373566, 0.405793111651854,     0.43527785786378, 0.674036844358188, 0.327746788571337, 0.474871288904317,     0.541822594993069, 0.514843252764453, 0.311387718375542,     0.318746525356099, 0.437053537677631, 0.351578663358295,     0.284368843599626, 0.280856072830802, 1, 0.414232540533902,     0.447241235283795, 0.327814792743066, 0.575867422165965,     0.321640081152364, 0.458862842583173, 0.288319598596587,     0.343076229916464, 0.490563178979969, 0.467207624157275,     0.545300347008998, 0.406478598189997, 0.328852167279886,     0.343839552309318, 0.373230260428356, 0.391838715039263,     0.440342501591684, 0.284965429686989, 0.469007283080188,     0.382209647223779, 0.413596618054764, 0.365198155011926,     0.303254502281017, 0.387908863641307, 0.394513677121953,     0.458882325819146, 0.410065334266904, 0.403246049267876,     0.344883929631373, 0.341502317712684, 0.375701572958152,     0.375210514444906, 0.420326786538178, 0.325526850104331,     0.292696651373179, 0.312703737588985, 0.434182685296997,     0.349304055389168, 0.389442254032966, 0.411653273126764,     0.439846022121956, 0.269317017151863, 0.467946455527953,     0.396558955556992, 0.363091180094366, 0.300002190186198,     0.338799320990308, 0.384014307502855, 0.280958014928007,     0.490263296213725, 0.332419085155585, 0.391737752980706,     0.408669190084511, 0.429759152034647, 0.461927287784447,     0.290816477264851, 0.436616437690402, 0.591863348454335,     0.336257153813418, 0.310672816500737, 0.494060631131439,     0.437179314559915, 0.416154881348757, 0.435253616882338,     0.443596774180042, 0.402175282848238, 0.433398319014474,     0.431012967619929, 0.471430015233684, 0.276225759681249,     0.443305875851886, 0.396985668777864, 0.503211724362686,     0.551495074945622, 0.380897145061454, 0.445839469573201,     0.415044057380153, 0.491931160085529, 0.357839292419227,     0.414232540533902, 1, 0.466144642465644, 0.437990285701212,     0.501574035085727, 0.55810717501373, 0.516762154802028, 0.403742566823462,     0.391141919780731, 0.451499745317075, 0.468309643378041,     0.365916054905633, 0.469885696646875, 0.379114495838251,     0.311487083056878, 0.568889814735508, 0.499093972214454,     0.306782138937694, 0.325857139611013, 0.287370624707531,     0.479529220676269, 0.454531171626993, 0.42535419433912, 0.460606505731821,     0.275816612221235, 0.361423454119417, 0.456781590775322,     0.411192982281706, 0.3333242667896, 0.48259645086664, 0.341650089358094,     0.377100988915905, 0.341884931557001, 0.216657449883098,     0.363642303018088, 0.362718949524034, 0.260301888476073,     0.26184644308377, 0.451198319809126, 0.295546788111685, 0.386004030448883,     0.408151971954382, 0.35308356068218, 0.351659216792522, 0.42955312482474,     0.318050888651916, 0.2764988600953, 0.502170714962498, 0.380542506535834,     0.430045952358278, 0.299788444681539, 0.311659414366143,     0.354651949756366, 0.385478191827157, 0.359601746992979,     0.450664407964065, 0.423237938362848, 0.334458300733376,     0.414101480717357, 0.559975381969668, 0.508953330871345,     0.340406557112983, 0.482273761494824, 0.319247643647939,     0.369218788219223, 0.373535082231557, 0.30067242493133, 0.35897213989558,     0.350868030167918, 0.468389847666759, 0.520226095423541,     0.509612093642766, 0.482481388887287, 0.37604080239756, 0.40977543269785,     0.436696865639824, 0.493647444236693, 0.503664130988666,     0.367758771106528, 0.405981176472356, 0.447241235283795,     0.466144642465644, 1, 0.406127361383149, 0.458452247552096,     0.50779060658553, 0.423814039854371, 0.413555866526783, 0.374803585046327,     0.237142321479929, 0.359633347527966, 0.341797566356997,     0.719832088254153, 0.395504786748987, 0.356749943090539,     0.478442701085163, 0.27073353280402, 0.294494803569073, 0.498469282562314,     0.439186211996002, 0.370438515104438, 0.348614199814429,     0.29608931933966, 0.517250397613783, 0.358187522990495, 0.37371114186688,     0.316444825987685, 0.318464288685222, 0.348681474921086,     0.338758593722834, 0.289865256386731, 0.463676741495756,     0.352974854831113, 0.331049355051327, 0.406742080115683,     0.365452276149244, 0.242317364678002, 0.398250114224164,     0.39727926112526, 0.27961812654004, 0.226731602312079, 0.360718635943078,     0.494920484580272, 0.400826587182131, 0.505236814919861,     0.344458926966499, 0.348222374762998, 0.367879441171442,     0.239967166824039, 0.441182001813894, 0.344522190425964,     0.268944939824419, 0.273117923161054, 0.72102370488261, 0.413625580096817,     0.347351000614243, 0.616977088214167, 0.390036855467417,     0.324011182959597, 0.349830488922625, 0.278486446364263,     0.387431439914789, 0.408743864155756, 0.333842648967073,     0.317187827484521, 0.354017927874961, 0.42150760184913, 0.410912451560886,     0.375594169759581, 0.34025888902648, 0.432299853594745, 0.392613793825268,     0.318409777473531, 0.318377653921884, 0.345254829203811,     0.489240467678059, 0.417929171457189, 0.333231363395066,     0.469367824797281, 0.395874030365288, 0.327814792743066,     0.437990285701212, 0.406127361383149, 1, 0.265299277128174,     0.392716285630781, 0.327778062666115, 0.319936956374797,     0.270290182841048, 0.415168700740002, 0.402492537436455,     0.479812725399419, 0.302173184331479, 0.401204914330021,     0.374613742849185, 0.373660779319315, 0.373205038108014,     0.333181245883842, 0.276604986616108, 0.444338023417146,     0.467080253910584, 0.500903381243444, 0.39944698378205, 0.236355685323827,     0.391814234341949, 0.269206958423506, 0.574954402137309,     0.413374910746116, 0.28585038322744, 0.393289027421754, 0.504432039623461,     0.304402359649053, 0.456347980494187, 0.404207232653647,     0.383364936762245, 0.286484496717459, 0.324291532613502,     0.326850301128215, 0.412204062564375, 0.467506955026444,     0.514945445709361, 0.558357206348994, 0.317732453001183,     0.544198692551921, 0.277923393200223, 0.32551380969241, 0.285564397366163,     0.382985318865681, 0.371773056229135, 0.33007492601762, 0.435615967196189,     0.323832101028935, 0.352426051316158, 0.302788341045775,     0.311201298723664, 0.363951558118977, 0.276472902294866,     0.457402469321134, 0.498778193728995, 0.380232944719172,     0.369677508298573, 0.385168519640809, 0.356910379749274,     0.367859491583363, 0.425496194888438, 0.471565221726355,     0.285296388967803, 0.591090623723466, 0.481257479382895,     0.606120093745207, 0.353263444677808, 0.375673938009569,     0.405363502972021, 0.557001042688566, 0.407949270341741,     0.334743598875958, 0.466070225090975, 0.513217119928322,     0.380146770327809, 0.34162033931162, 0.575867422165965, 0.501574035085727,     0.458452247552096, 0.265299277128174, 1, 0.502776023419373,     0.656829939690451, 0.384094536906986, 0.354621175981284,     0.415948305269755, 0.540154481265163, 0.359642254760471,     0.404116226737222, 0.326599352729205, 0.277497767424736,     0.408886938895261, 0.37425169962849, 0.297721030985517, 0.224492303505596,     0.446120758146846, 0.381418187388309, 0.503349688079895,     0.359705869567544, 0.38535334553664, 0.397902676625745, 0.399242979914773,     0.478691003705465, 0.373835158991867, 0.34562088334762, 0.434483715140075,     0.378175818835999, 0.451859425868983, 0.455489679181567,     0.301042496340274, 0.319255274267178, 0.349888798063932,     0.361434824953902, 0.299910742109869, 0.458879429044831,     0.381751978500487, 0.461411343950465, 0.562717307764088,     0.340801124563392, 0.600154428307272, 0.418316284511061,     0.397882052991926, 0.316528875190272, 0.510475732295052,     0.307566088512616, 0.268515131824122, 0.39491068906324, 0.352648106370772,     0.322518014689259, 0.404321314995371, 0.376678302639141,     0.27442978776443, 0.304176279382059, 0.370025993483113, 0.406699139190972,     0.382615273844316, 0.407241365221599, 0.320021766478832,     0.438756173933672, 0.365084823403618, 0.51349286367334, 0.351779590142785,     0.311418930092857, 0.438561617562002, 0.361279455198554,     0.414556881384346, 0.391222136285234, 0.458723881307934,     0.334814682478143, 0.505131038186426, 0.500480662165344,     0.407648263814054, 0.424656600397055, 0.421953106191328,     0.378073214883332, 0.506202234888458, 0.321640081152364,     0.55810717501373, 0.50779060658553, 0.392716285630781, 0.502776023419373,     1, 0.541049139372968, 0.51692525241804, 0.272103890379817,     0.380362040942608, 0.375337907289887, 0.406262803348289,     0.304000497050391, 0.366110729410289, 0.378140590733028,     0.376182984090773, 0.346118990636923, 0.308907067900529,     0.314887463713355, 0.504918015455471, 0.381869416517046,     0.597974623669332, 0.325730336921877, 0.275382148833272,     0.499895295051224, 0.314807828440236, 0.544256358216308,     0.652546263021213, 0.269390984688969, 0.313466276205693,     0.405024344673838, 0.439438264316916, 0.404923338020336,     0.432860016145164, 0.296641239627067, 0.268435293454307,     0.389159799844752, 0.35585792016309, 0.333920069195826, 0.407003772312625,     0.462268188542265, 0.662957455273209, 0.372413377969753,     0.502134876232726, 0.392095266612569, 0.382628998044775,     0.338360721290052, 0.335746210300682, 0.347492607024536,     0.256849450445247, 0.439620764085705, 0.308176677770636,     0.463745775264974, 0.339227143823941, 0.377245463321891,     0.295831677043954, 0.263967108685925, 0.383865644077238,     0.451661285620459, 0.305476623618968, 0.305866255287778,     0.415136401888453, 0.349083936182512, 0.42608373081173, 0.53972288986545,     0.550234380201541, 0.362524803566314, 0.514985655328913,     0.575920176345907, 0.422406210557242, 0.349293704714464,     0.331678225693806, 0.356512046979431, 0.543714185679139,     0.489677694441249, 0.415538588733298, 0.527436001467185,     0.455338499986089, 0.298559975918946, 0.44391925981778, 0.458862842583173,     0.516762154802028, 0.423814039854371, 0.327778062666115,     0.656829939690451, 0.541049139372968, 1, 0.338440137657079,     0.411476903802006, 0.438256273553845, 0.374271517584741,     0.32496810466518, 0.330630087524404, 0.434973242247283, 0.376305931460566,     0.275732873058557, 0.467063542939379, 0.289032210411557,     0.225330109971752, 0.412771160259047, 0.313545487737938,     0.46380051442943, 0.368181812723143, 0.422426664626375, 0.449998826241076,     0.549321384797785, 0.297588431587813, 0.384670496719551,     0.51942513116355, 0.477880995794725, 0.385409814839382, 0.348355288068229,     0.626834038425505, 0.323741242523896, 0.284261727746614,     0.285123011009923, 0.425861535578255, 0.363322208109453,     0.523296504930014, 0.366502617388262, 0.554265795719571,     0.369916448902243, 0.249521286376131, 0.376938527459852,     0.342354339954813, 0.413068112441104, 0.609738425614886,     0.518041197442099, 0.453188854797928, 0.268865297540725,     0.399307749430619, 0.566905562252979, 0.441958272192485,     0.36315681925593, 0.429239790451219, 0.348861096298628, 0.366674203518327,     0.316578293653816, 0.32814633720731, 0.418170331080252, 0.50309841233193,     0.341596952262116, 0.446500501695625, 0.395661797548186,     0.457488853104554, 0.459625794907831, 0.348200605926668,     0.369452099366406, 0.221377661156412, 0.375821331637035,     0.308010693271176, 0.453674601810652, 0.336286307476007,     0.316844768967691, 0.344413251925236, 0.412311411052543,     0.293501569271501, 0.517003507199868, 0.421754462006751,     0.335330003151391, 0.288319598596587, 0.403742566823462,     0.413555866526783, 0.319936956374797, 0.384094536906986,     0.51692525241804, 0.338440137657079, 1), dim = c(80L, 80L    ))), method = "kernelpls", validation = "CV")
#> 
#> $kernDKpls2DR_mod
#> Gaussian Radial Basis kernel function. 
#>  Hyperparameter : sigma =  0.0122566708271971 
#> 
(cox_DKpls2DR_fit=coxDKpls2DR(~X_train_micro,Y_train_micro,C_train_micro,ncomp=6,
validation="CV",allres=TRUE))
#> Error in model.matrix(mt0, mf0, , contrasts.arg = contrasts.arg): argument "contrasts.arg" is missing, with no default
(cox_DKpls2DR_fit=coxDKpls2DR(~.,Y_train_micro,C_train_micro,ncomp=6,validation="CV",
allres=TRUE,dataXplan=X_train_micro_df))
#> Error in model.matrix(mt0, mf0, , contrasts.arg = contrasts.arg): argument "contrasts.arg" is missing, with no default


rm(X_train_micro,Y_train_micro,C_train_micro,cox_DKpls2DR_fit)